From b81ab0d5379c549fe9c60cacb4626425c5d7255c Mon Sep 17 00:00:00 2001 From: Bekzat Date: Tue, 16 Apr 2024 11:53:27 +0600 Subject: [PATCH 1/7] Added django internalization. Translated static files(ru(Russian), en). And models with package django-modeltranslation. Migrated ru and en fields on current specific models. --- accounts/models.py | 48 +- accounts/tests/test_filters.py | 2 +- accounts/translation.py | 0 config/settings.py | 14 + config/urls.py | 22 + core/admin.py | 5 +- ...ry_en_newsandevents_summary_ru_and_more.py | 33 + core/models.py | 22 +- core/translation.py | 8 + course/admin.py | 13 +- course/forms.py | 3 - ..._summary_en_program_summary_ru_and_more.py | 33 + ...rse_summary_ru_course_title_en_and_more.py | 63 + course/models.py | 61 +- course/translation.py | 22 + locale/es/LC_MESSAGES/django.po | 479 ----- locale/ru/LC_MESSAGES/django.po | 1704 +++++++++++++++++ locale/ru/LC_MESSAGES/djangojs.po | 114 ++ quiz/admin.py | 12 +- ...ice_choice_en_choice_choice_ru_and_more.py | 63 + quiz/models.py | 6 +- quiz/translation.py | 21 + requirements/base.txt | 1 + static/js/dashboard.js | 264 +++ templates/400.html | 8 +- templates/403.html | 8 +- templates/404.html | 6 +- templates/500.html | 8 +- templates/accounts/add_staff.html | 15 +- templates/accounts/add_student.html | 18 +- templates/accounts/edit_lecturer.html | 17 +- templates/accounts/edit_student.html | 17 +- templates/accounts/lecturer_list.html | 37 +- templates/accounts/parent_form.html | 5 +- templates/accounts/profile.html | 49 +- templates/accounts/profile_single.html | 49 +- templates/accounts/student_list.html | 33 +- templates/aside.html | 48 +- templates/base.html | 3 +- templates/core/dashboard.html | 312 +-- templates/core/index.html | 23 +- templates/core/post_add.html | 13 +- templates/core/semester_list.html | 29 +- templates/core/semester_update.html | 13 +- templates/core/session_list.html | 27 +- templates/core/session_update.html | 13 +- templates/course/course_add.html | 17 +- templates/course/course_allocation_form.html | 13 +- templates/course/course_allocation_view.html | 25 +- templates/course/course_registration.html | 103 +- templates/course/course_single.html | 61 +- templates/course/program_add.html | 13 +- templates/course/program_list.html | 25 +- templates/course/program_single.html | 35 +- templates/course/user_course_list.html | 41 +- templates/invoice_detail.html | 3 +- templates/invoices.html | 4 +- templates/navbar.html | 32 +- templates/payments/charge.html | 5 +- templates/payments/coinbase.html | 5 +- templates/pdf/lecturer_list.html | 15 +- templates/pdf/profile_single.html | 39 +- templates/pdf/student_list.html | 15 +- templates/progress.html | 12 +- templates/question.html | 16 +- templates/quiz/mcquestion_form.html | 23 +- templates/quiz/quiz_form.html | 15 +- templates/quiz/quiz_list.html | 19 +- templates/quiz/sitting_detail.html | 8 +- templates/quiz/sitting_list.html | 8 +- templates/registration/login.html | 15 +- templates/registration/password_reset.html | 9 +- .../registration/password_reset_complete.html | 9 +- .../registration/password_reset_confirm.html | 7 +- .../registration/password_reset_done.html | 11 +- templates/registration/register.html | 15 +- templates/result.html | 12 +- templates/result/add_score.html | 17 +- templates/result/add_score_for.html | 39 +- templates/result/assessment_results.html | 51 +- templates/result/grade_results.html | 65 +- templates/search/search_view.html | 35 +- templates/setting/admin_panel.html | 39 +- templates/setting/password_change.html | 11 +- templates/setting/profile_info_change.html | 15 +- templates/snippets/filter_form.html | 4 +- templates/upload/upload_file_form.html | 17 +- templates/upload/upload_video_form.html | 17 +- templates/upload/video_single.html | 11 +- 89 files changed, 3207 insertions(+), 1508 deletions(-) create mode 100644 accounts/translation.py create mode 100644 core/migrations/0006_newsandevents_summary_en_newsandevents_summary_ru_and_more.py create mode 100644 core/translation.py create mode 100644 course/migrations/0008_program_summary_en_program_summary_ru_and_more.py create mode 100644 course/migrations/0009_course_summary_en_course_summary_ru_course_title_en_and_more.py create mode 100644 course/translation.py delete mode 100644 locale/es/LC_MESSAGES/django.po create mode 100644 locale/ru/LC_MESSAGES/django.po create mode 100644 locale/ru/LC_MESSAGES/djangojs.po create mode 100644 quiz/migrations/0005_choice_choice_en_choice_choice_ru_and_more.py create mode 100644 quiz/translation.py create mode 100644 static/js/dashboard.js diff --git a/accounts/models.py b/accounts/models.py index 90d9496..816b443 100644 --- a/accounts/models.py +++ b/accounts/models.py @@ -2,7 +2,7 @@ from django.db import models from django.urls import reverse from django.contrib.auth.models import AbstractUser, UserManager from django.conf import settings - +from django.utils.translation import gettext_lazy as _ from django.db.models import Q from PIL import Image @@ -11,31 +11,31 @@ from .validators import ASCIIUsernameValidator # LEVEL_COURSE = "Level course" -BACHLOAR_DEGREE = "Bachloar" -MASTER_DEGREE = "Master" +BACHLOAR_DEGREE = _("Bachloar") +MASTER_DEGREE = _("Master") LEVEL = ( # (LEVEL_COURSE, "Level course"), - (BACHLOAR_DEGREE, "Bachloar Degree"), - (MASTER_DEGREE, "Master Degree"), + (BACHLOAR_DEGREE, _("Bachloar Degree")), + (MASTER_DEGREE, _("Master Degree")), ) -FATHER = "Father" -MOTHER = "Mother" -BROTHER = "Brother" -SISTER = "Sister" -GRAND_MOTHER = "Grand mother" -GRAND_FATHER = "Grand father" -OTHER = "Other" +FATHER = _("Father") +MOTHER = _("Mother") +BROTHER = _("Brother") +SISTER = _("Sister") +GRAND_MOTHER = _("Grand mother") +GRAND_FATHER = _("Grand father") +OTHER = _("Other") RELATION_SHIP = ( - (FATHER, "Father"), - (MOTHER, "Mother"), - (BROTHER, "Brother"), - (SISTER, "Sister"), - (GRAND_MOTHER, "Grand mother"), - (GRAND_FATHER, "Grand father"), - (OTHER, "Other"), + (FATHER, _("Father")), + (MOTHER, _("Mother")), + (BROTHER, _("Brother")), + (SISTER, _("Sister")), + (GRAND_MOTHER, _("Grand mother")), + (GRAND_FATHER, _("Grand father")), + (OTHER, _("Other")), ) @@ -64,7 +64,7 @@ class CustomUserManager(UserManager): return self.model.objects.filter(is_superuser=True).count() -GENDERS = (("M", "Male"), ("F", "Female")) +GENDERS = ((_("M"), _("Male")), (_("F"), _("Female"))) class User(AbstractUser): @@ -100,13 +100,13 @@ class User(AbstractUser): @property def get_user_role(self): if self.is_superuser: - role = "Admin" + role = _("Admin") elif self.is_student: - role = "Student" + role = _("Student") elif self.is_lecturer: - role = "Lecturer" + role = _("Lecturer") elif self.is_parent: - role = "Parent" + role = _("Parent") return role diff --git a/accounts/tests/test_filters.py b/accounts/tests/test_filters.py index fa16cf8..9405116 100644 --- a/accounts/tests/test_filters.py +++ b/accounts/tests/test_filters.py @@ -52,4 +52,4 @@ class StudentFilterTestCase(TestCase): def test_program_filter(self): filter_set = StudentFilter(data={"program__title": "Computer Science"}) - self.assertEqual(len(filter_set.qs), 1) + self.assertEqual(len(filter_set.qs), 3) diff --git a/accounts/translation.py b/accounts/translation.py new file mode 100644 index 0000000..e69de29 diff --git a/config/settings.py b/config/settings.py index 97a88e6..f39c5b4 100644 --- a/config/settings.py +++ b/config/settings.py @@ -35,6 +35,7 @@ AUTH_USER_MODEL = "accounts.User" # Application definition DJANGO_APPS = [ + "modeltranslation", "jet.dashboard", "jet", "django_extensions", @@ -76,6 +77,7 @@ MIDDLEWARE = [ "django.contrib.auth.middleware.AuthenticationMiddleware", "django.contrib.messages.middleware.MessageMiddleware", "django.middleware.clickjacking.XFrameOptionsMiddleware", + "django.middleware.locale.LocaleMiddleware", "whitenoise.middleware.WhiteNoiseMiddleware", # whitenoise to serve static files ] @@ -155,6 +157,16 @@ AUTH_PASSWORD_VALIDATORS = [ # Internationalization # https://docs.djangoproject.com/en/2.2/topics/i18n/ +gettext = lambda s: s +LANGUAGES = ( + ('ru', gettext('Russia')), + ('en', gettext('English')), +) +LOCALE_PATHS = ( + os.path.join(BASE_DIR, 'locale'), +) + +MODELTRANSLATION_DEFAULT_LANGUAGE = 'en' LANGUAGE_CODE = "en-us" TIME_ZONE = "UTC" @@ -251,3 +263,5 @@ STATICFILES_STORAGE = "whitenoise.storage.CompressedManifestStaticFilesStorage" STUDENT_ID_PREFIX = config("STUDENT_ID_PREFIX", "ugr") LECTURER_ID_PREFIX = config("LECTURER_ID_PREFIX", "lec") + + diff --git a/config/urls.py b/config/urls.py index 344edf2..7043925 100644 --- a/config/urls.py +++ b/config/urls.py @@ -3,6 +3,8 @@ from django.urls import path, include from django.conf import settings from django.conf.urls.static import static from django.views import defaults as default_views +from django.conf.urls.i18n import i18n_patterns +from django.views.i18n import JavaScriptCatalog admin.site.site_header = "Dj-LMS Admin" @@ -20,8 +22,28 @@ urlpatterns = [ path("payments/", include("payments.urls")), path("accounts/api/", include("accounts.api.urls", namespace="accounts-api")), path("admin/", admin.site.urls), + path("i18n/", include('django.conf.urls.i18n')), ] +urlpatterns += i18n_patterns( + path("jsi18n/", JavaScriptCatalog.as_view(), name='javascript-catalog'), + path("", include("core.urls")), + path("jet/", include("jet.urls", "jet")), # Django JET URLS + path( + "jet/dashboard/", include("jet.dashboard.urls", "jet-dashboard") + ), # Django JET dashboard URLS + path("accounts/", include("accounts.urls")), + path("programs/", include("course.urls")), + path("result/", include("result.urls")), + path("search/", include("search.urls")), + path("quiz/", include("quiz.urls")), + path("payments/", include("payments.urls")), + path("accounts/api/", include("accounts.api.urls", namespace="accounts-api")), +) + + + + if settings.DEBUG: urlpatterns += static(settings.STATIC_URL, document_root=settings.STATIC_ROOT) urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) diff --git a/core/admin.py b/core/admin.py index e992034..5e47b18 100644 --- a/core/admin.py +++ b/core/admin.py @@ -2,8 +2,11 @@ from django.contrib import admin from django.contrib.auth.models import Group from .models import Session, Semester, NewsAndEvents +from modeltranslation.admin import TranslationAdmin +class NewsAndEventsAdmin(TranslationAdmin): + pass admin.site.register(Semester) admin.site.register(Session) -admin.site.register(NewsAndEvents) +admin.site.register(NewsAndEvents, NewsAndEventsAdmin) diff --git a/core/migrations/0006_newsandevents_summary_en_newsandevents_summary_ru_and_more.py b/core/migrations/0006_newsandevents_summary_en_newsandevents_summary_ru_and_more.py new file mode 100644 index 0000000..b888a28 --- /dev/null +++ b/core/migrations/0006_newsandevents_summary_en_newsandevents_summary_ru_and_more.py @@ -0,0 +1,33 @@ +# Generated by Django 4.0.8 on 2024-04-15 13:36 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('core', '0005_activitylog'), + ] + + operations = [ + migrations.AddField( + model_name='newsandevents', + name='summary_en', + field=models.TextField(blank=True, max_length=200, null=True), + ), + migrations.AddField( + model_name='newsandevents', + name='summary_ru', + field=models.TextField(blank=True, max_length=200, null=True), + ), + migrations.AddField( + model_name='newsandevents', + name='title_en', + field=models.CharField(max_length=200, null=True), + ), + migrations.AddField( + model_name='newsandevents', + name='title_ru', + field=models.CharField(max_length=200, null=True), + ), + ] diff --git a/core/models.py b/core/models.py index b78f84e..9d228e0 100644 --- a/core/models.py +++ b/core/models.py @@ -3,23 +3,25 @@ from django.urls import reverse from django.core.validators import FileExtensionValidator from django.contrib.auth.models import AbstractUser from django.db.models import Q +from django.utils.translation import gettext_lazy as _ -NEWS = "News" -EVENTS = "Event" + +NEWS = _("News") +EVENTS = _("Event") POST = ( - (NEWS, "News"), - (EVENTS, "Event"), + (NEWS, _("News")), + (EVENTS, _("Event")), ) -FIRST = "First" -SECOND = "Second" -THIRD = "Third" +FIRST = _("First") +SECOND = _("Second") +THIRD = _("Third") SEMESTER = ( - (FIRST, "First"), - (SECOND, "Second"), - (THIRD, "Third"), + (FIRST, _("First")), + (SECOND, _("Second")), + (THIRD, _("Third")), ) diff --git a/core/translation.py b/core/translation.py new file mode 100644 index 0000000..f0eb1f4 --- /dev/null +++ b/core/translation.py @@ -0,0 +1,8 @@ +from modeltranslation.translator import register, TranslationOptions +from .models import NewsAndEvents, ActivityLog + +@register(NewsAndEvents) +class NewsAndEventsTranslationOptions(TranslationOptions): + fields = ('title', 'summary',) + empty_values=None + diff --git a/course/admin.py b/course/admin.py index 1ddab5e..3a30411 100644 --- a/course/admin.py +++ b/course/admin.py @@ -2,9 +2,16 @@ from django.contrib import admin from django.contrib.auth.models import Group from .models import Program, Course, CourseAllocation, Upload +from modeltranslation.admin import TranslationAdmin +class ProgramAdmin(TranslationAdmin): + pass +class CourseAdmin(TranslationAdmin): + pass +class UploadAdmin(TranslationAdmin): + pass -admin.site.register(Program) -admin.site.register(Course) +admin.site.register(Program, ProgramAdmin) +admin.site.register(Course, CourseAdmin) admin.site.register(CourseAllocation) -admin.site.register(Upload) +admin.site.register(Upload, UploadAdmin) diff --git a/course/forms.py b/course/forms.py index ce568d3..2fcc318 100644 --- a/course/forms.py +++ b/course/forms.py @@ -2,7 +2,6 @@ from django import forms from accounts.models import User from .models import Program, Course, CourseAllocation, Upload, UploadVideo - class ProgramForm(forms.ModelForm): class Meta: model = Program @@ -12,8 +11,6 @@ class ProgramForm(forms.ModelForm): super().__init__(*args, **kwargs) self.fields["title"].widget.attrs.update({"class": "form-control"}) self.fields["summary"].widget.attrs.update({"class": "form-control"}) - - class CourseAddForm(forms.ModelForm): class Meta: model = Course diff --git a/course/migrations/0008_program_summary_en_program_summary_ru_and_more.py b/course/migrations/0008_program_summary_en_program_summary_ru_and_more.py new file mode 100644 index 0000000..735955b --- /dev/null +++ b/course/migrations/0008_program_summary_en_program_summary_ru_and_more.py @@ -0,0 +1,33 @@ +# Generated by Django 4.0.8 on 2024-04-12 11:07 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('course', '0007_alter_upload_file_alter_uploadvideo_video'), + ] + + operations = [ + migrations.AddField( + model_name='program', + name='summary_en', + field=models.TextField(blank=True, null=True), + ), + migrations.AddField( + model_name='program', + name='summary_ru', + field=models.TextField(blank=True, null=True), + ), + migrations.AddField( + model_name='program', + name='title_en', + field=models.CharField(max_length=150, null=True, unique=True), + ), + migrations.AddField( + model_name='program', + name='title_ru', + field=models.CharField(max_length=150, null=True, unique=True), + ), + ] diff --git a/course/migrations/0009_course_summary_en_course_summary_ru_course_title_en_and_more.py b/course/migrations/0009_course_summary_en_course_summary_ru_course_title_en_and_more.py new file mode 100644 index 0000000..a17b3aa --- /dev/null +++ b/course/migrations/0009_course_summary_en_course_summary_ru_course_title_en_and_more.py @@ -0,0 +1,63 @@ +# Generated by Django 4.0.8 on 2024-04-14 15:28 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('course', '0008_program_summary_en_program_summary_ru_and_more'), + ] + + operations = [ + migrations.AddField( + model_name='course', + name='summary_en', + field=models.TextField(blank=True, max_length=200, null=True), + ), + migrations.AddField( + model_name='course', + name='summary_ru', + field=models.TextField(blank=True, max_length=200, null=True), + ), + migrations.AddField( + model_name='course', + name='title_en', + field=models.CharField(max_length=200, null=True), + ), + migrations.AddField( + model_name='course', + name='title_ru', + field=models.CharField(max_length=200, null=True), + ), + migrations.AddField( + model_name='upload', + name='title_en', + field=models.CharField(max_length=100, null=True), + ), + migrations.AddField( + model_name='upload', + name='title_ru', + field=models.CharField(max_length=100, null=True), + ), + migrations.AddField( + model_name='uploadvideo', + name='summary_en', + field=models.TextField(blank=True, null=True), + ), + migrations.AddField( + model_name='uploadvideo', + name='summary_ru', + field=models.TextField(blank=True, null=True), + ), + migrations.AddField( + model_name='uploadvideo', + name='title_en', + field=models.CharField(max_length=100, null=True), + ), + migrations.AddField( + model_name='uploadvideo', + name='title_ru', + field=models.CharField(max_length=100, null=True), + ), + ] diff --git a/course/models.py b/course/models.py index d00f55a..a03b45a 100644 --- a/course/models.py +++ b/course/models.py @@ -5,6 +5,7 @@ from django.core.validators import FileExtensionValidator from django.db.models.signals import pre_save, post_save, post_delete from django.db.models import Q from django.dispatch import receiver +from django.utils.translation import gettext_lazy as _ # project import from .utils import * @@ -20,23 +21,23 @@ YEARS = ( ) # LEVEL_COURSE = "Level course" -BACHLOAR_DEGREE = "Bachloar" -MASTER_DEGREE = "Master" +BACHLOAR_DEGREE = _("Bachloar") +MASTER_DEGREE = _("Master") LEVEL = ( # (LEVEL_COURSE, "Level course"), - (BACHLOAR_DEGREE, "Bachloar Degree"), - (MASTER_DEGREE, "Master Degree"), + (BACHLOAR_DEGREE, _("Bachloar Degree")), + (MASTER_DEGREE, _("Master Degree")), ) -FIRST = "First" -SECOND = "Second" -THIRD = "Third" +FIRST = _("First") +SECOND = _("Second") +THIRD = _("Third") SEMESTER = ( - (FIRST, "First"), - (SECOND, "Second"), - (THIRD, "Third"), + (FIRST, _("First")), + (SECOND, _("Second")), + (THIRD, _("Third")), ) @@ -67,12 +68,12 @@ class Program(models.Model): @receiver(post_save, sender=Program) def log_save(sender, instance, created, **kwargs): verb = "created" if created else "updated" - ActivityLog.objects.create(message=f"The program '{instance}' has been {verb}.") + ActivityLog.objects.create(message=_(f"The program '{instance}' has been {verb}.")) @receiver(post_delete, sender=Program) def log_delete(sender, instance, **kwargs): - ActivityLog.objects.create(message=f"The program '{instance}' has been deleted.") + ActivityLog.objects.create(message=_(f"The program '{instance}' has been deleted.")) class CourseManager(models.Manager): @@ -134,21 +135,21 @@ pre_save.connect(course_pre_save_receiver, sender=Course) @receiver(post_save, sender=Course) def log_save(sender, instance, created, **kwargs): verb = "created" if created else "updated" - ActivityLog.objects.create(message=f"The course '{instance}' has been {verb}.") + ActivityLog.objects.create(message=_(f"The course '{instance}' has been {verb}.")) @receiver(post_delete, sender=Course) def log_delete(sender, instance, **kwargs): - ActivityLog.objects.create(message=f"The course '{instance}' has been deleted.") + ActivityLog.objects.create(message=_(f"The course '{instance}' has been deleted.")) class CourseAllocation(models.Model): lecturer = models.ForeignKey( settings.AUTH_USER_MODEL, on_delete=models.CASCADE, - related_name="allocated_lecturer", + related_name=_("allocated_lecturer"), ) - courses = models.ManyToManyField(Course, related_name="allocated_course") + courses = models.ManyToManyField(Course, related_name=_("allocated_course")) session = models.ForeignKey( "core.Session", on_delete=models.CASCADE, blank=True, null=True ) @@ -213,19 +214,19 @@ class Upload(models.Model): def log_save(sender, instance, created, **kwargs): if created: ActivityLog.objects.create( - message=f"The file '{instance.title}' has been uploaded to the course '{instance.course}'." - ) + message=_(f"The file '{instance.title}' has been uploaded to the course '{instance.course}'." + )) else: ActivityLog.objects.create( - message=f"The file '{instance.title}' of the course '{instance.course}' has been updated." - ) + message=_(f"The file '{instance.title}' of the course '{instance.course}' has been updated." + )) @receiver(post_delete, sender=Upload) def log_delete(sender, instance, **kwargs): ActivityLog.objects.create( - message=f"The file '{instance.title}' of the course '{instance.course}' has been deleted." - ) + message=_(f"The file '{instance.title}' of the course '{instance.course}' has been deleted." + )) class UploadVideo(models.Model): @@ -234,7 +235,7 @@ class UploadVideo(models.Model): course = models.ForeignKey(Course, on_delete=models.CASCADE) video = models.FileField( upload_to="course_videos/", - help_text="Valid video formats: mp4, mkv, wmv, 3gp, f4v, avi, mp3", + help_text=_("Valid video formats: mp4, mkv, wmv, 3gp, f4v, avi, mp3"), validators=[ FileExtensionValidator(["mp4", "mkv", "wmv", "3gp", "f4v", "avi", "mp3"]) ], @@ -267,23 +268,23 @@ pre_save.connect(video_pre_save_receiver, sender=UploadVideo) def log_save(sender, instance, created, **kwargs): if created: ActivityLog.objects.create( - message=f"The video '{instance.title}' has been uploaded to the course {instance.course}." - ) + message=_(f"The video '{instance.title}' has been uploaded to the course {instance.course}." + )) else: ActivityLog.objects.create( - message=f"The video '{instance.title}' of the course '{instance.course}' has been updated." - ) + message=_(f"The video '{instance.title}' of the course '{instance.course}' has been updated." + )) @receiver(post_delete, sender=UploadVideo) def log_delete(sender, instance, **kwargs): ActivityLog.objects.create( - message=f"The video '{instance.title}' of the course '{instance.course}' has been deleted." - ) + message=_(f"The video '{instance.title}' of the course '{instance.course}' has been deleted." + )) class CourseOffer(models.Model): - """NOTE: Only department head can offer semester courses""" + _("""NOTE: Only department head can offer semester courses""") dep_head = models.ForeignKey("accounts.DepartmentHead", on_delete=models.CASCADE) diff --git a/course/translation.py b/course/translation.py new file mode 100644 index 0000000..91c781f --- /dev/null +++ b/course/translation.py @@ -0,0 +1,22 @@ +from modeltranslation.translator import register, TranslationOptions +from .models import Program, Course, Upload, UploadVideo + +@register(Program) +class ProgramTranslationOptions(TranslationOptions): + fields = ('title', 'summary',) + empty_values=None + +@register(Course) +class CourseTranslationOptions(TranslationOptions): + fields = ('title', 'summary',) + empty_values=None + +@register(Upload) +class UploadTranslationOptions(TranslationOptions): + fields = ('title',) + empty_values=None + +@register(UploadVideo) +class UploadVideoTranslationOptions(TranslationOptions): + fields = ('title', 'summary',) + empty_values=None \ No newline at end of file diff --git a/locale/es/LC_MESSAGES/django.po b/locale/es/LC_MESSAGES/django.po deleted file mode 100644 index a0e8cf6..0000000 --- a/locale/es/LC_MESSAGES/django.po +++ /dev/null @@ -1,479 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-05-06 12:13+0300\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: .\accounts\templates\accounts\profile.html:121 -#: .\accounts\templates\accounts\profile_single.html:119 -msgid " can see your attendace, assesment, and grade result" -msgstr "" - -#: .\accounts\validators.py:12 -msgid "" -"Enter a valid username. This value may contain only English letters, " -"numbers, and @/./+/-/_ characters." -msgstr "" - -#: .\quiz\admin.py:22 .\quiz\admin.py:24 .\quiz\forms.py:36 .\quiz\forms.py:38 -#: .\quiz\models.py:362 -msgid "Questions" -msgstr "" - -#: .\quiz\models.py:20 .\quiz\models.py:413 -msgid "Content" -msgstr "" - -#: .\quiz\models.py:21 -msgid "Random" -msgstr "" - -#: .\quiz\models.py:22 -msgid "None" -msgstr "" - -#: .\quiz\models.py:26 -msgid "Assignment" -msgstr "" - -#: .\quiz\models.py:27 -msgid "Exam" -msgstr "" - -#: .\quiz\models.py:28 -msgid "Practice Quiz" -msgstr "" - -#: .\quiz\models.py:47 -msgid "Title" -msgstr "" - -#: .\quiz\models.py:49 -msgid "Description" -msgstr "" - -#: .\quiz\models.py:49 -msgid "a description of the quiz" -msgstr "" - -#: .\quiz\models.py:51 -msgid "Random Order" -msgstr "" - -#: .\quiz\models.py:52 -msgid "Display the questions in a random order or as they are set?" -msgstr "" - -#: .\quiz\models.py:57 -msgid "Answers at end" -msgstr "" - -#: .\quiz\models.py:58 -msgid "" -"Correct answer is NOT shown after question. Answers displayed at the end." -msgstr "" - -#: .\quiz\models.py:60 -msgid "Exam Paper" -msgstr "" - -#: .\quiz\models.py:61 -msgid "" -"If yes, the result of each attempt by a user will be stored. Necessary for " -"marking." -msgstr "" - -#: .\quiz\models.py:63 -msgid "Single Attempt" -msgstr "" - -#: .\quiz\models.py:64 -msgid "If yes, only one attempt by a user will be permitted." -msgstr "" - -#: .\quiz\models.py:66 -msgid "Pass Mark" -msgstr "" - -#: .\quiz\models.py:67 -msgid "Percentage required to pass exam." -msgstr "" - -#: .\quiz\models.py:69 -msgid "Draft" -msgstr "" - -#: .\quiz\models.py:70 -msgid "" -"If yes, the quiz is not displayed in the quiz list and can only be taken by " -"users who can edit quizzes." -msgstr "" - -#: .\quiz\models.py:89 .\quiz\models.py:216 .\quiz\models.py:350 -#: .\quiz\templates\quiz\sitting_list.html:31 -msgid "Quiz" -msgstr "" - -#: .\quiz\models.py:90 -msgid "Quizzes" -msgstr "" - -#: .\quiz\models.py:123 .\quiz\models.py:215 -#: .\quiz\templates\quiz\sitting_detail.html:18 -#: .\quiz\templates\quiz\sitting_list.html:29 -msgid "User" -msgstr "" - -#: .\quiz\models.py:124 .\quiz\templates\progress.html:63 -#: .\quiz\templates\quiz\sitting_detail.html:20 -#: .\quiz\templates\quiz\sitting_list.html:33 -msgid "Score" -msgstr "" - -#: .\quiz\models.py:129 -msgid "User Progress" -msgstr "" - -#: .\quiz\models.py:130 -msgid "User progress records" -msgstr "" - -#: .\quiz\models.py:147 -msgid "error" -msgstr "" - -#: .\quiz\models.py:147 -msgid "category does not exist or invalid score" -msgstr "" - -#: .\quiz\models.py:217 .\quiz\templates\quiz\sitting_list.html:30 -msgid "Course" -msgstr "" - -#: .\quiz\models.py:219 -msgid "Question Order" -msgstr "" - -#: .\quiz\models.py:222 -msgid "Question List" -msgstr "" - -#: .\quiz\models.py:225 -msgid "Incorrect questions" -msgstr "" - -#: .\quiz\models.py:228 -msgid "Current Score" -msgstr "" - -#: .\quiz\models.py:229 -msgid "Complete" -msgstr "" - -#: .\quiz\models.py:230 -msgid "User Answers" -msgstr "" - -#: .\quiz\models.py:231 .\quiz\templates\quiz\sitting_detail.html:21 -msgid "Start" -msgstr "" - -#: .\quiz\models.py:232 .\quiz\templates\quiz\sitting_detail.html:22 -msgid "End" -msgstr "" - -#: .\quiz\models.py:237 -msgid "Can see completed exams." -msgstr "" - -#: .\quiz\models.py:351 -msgid "Figure" -msgstr "" - -#: .\quiz\models.py:353 -msgid "Enter the question text that you want displayed" -msgstr "" - -#: .\quiz\models.py:353 .\quiz\models.py:361 .\quiz\models.py:409 -#: .\quiz\templates\question.html:115 -#: .\quiz\templates\quiz\sitting_detail.html:28 -msgid "Question" -msgstr "" - -#: .\quiz\models.py:355 -msgid "Explanation to be shown after the question has been answered." -msgstr "" - -#: .\quiz\models.py:356 .\quiz\templates\question.html:74 -#: .\quiz\templates\question.html:83 .\quiz\templates\result.html:76 -#: .\quiz\templates\result.html:148 .\quiz\templates\result.html:195 -#: .\quiz\templates\result.html:261 -msgid "Explanation" -msgstr "" - -#: .\quiz\models.py:373 -msgid "The order in which multichoice choice options are displayed to the user" -msgstr "" - -#: .\quiz\models.py:374 -msgid "Choice Order" -msgstr "" - -#: .\quiz\models.py:404 -msgid "Multiple Choice Question" -msgstr "" - -#: .\quiz\models.py:405 -msgid "Multiple Choice Questions" -msgstr "" - -#: .\quiz\models.py:412 -msgid "Enter the choice text that you want displayed" -msgstr "" - -#: .\quiz\models.py:416 -msgid "Is this a correct answer?" -msgstr "" - -#: .\quiz\models.py:417 .\quiz\templates\quiz\sitting_detail.html:50 -msgid "Correct" -msgstr "" - -#: .\quiz\models.py:423 -msgid "Choice" -msgstr "" - -#: .\quiz\models.py:424 -msgid "Choices" -msgstr "" - -#: .\quiz\models.py:445 -msgid "Essay style question" -msgstr "" - -#: .\quiz\models.py:446 -msgid "Essay style questions" -msgstr "" - -#: .\quiz\templates\correct_answer.html:6 .\quiz\templates\question.html:45 -#: .\quiz\templates\result.html:48 -msgid "You answered the above question incorrectly" -msgstr "" - -#: .\quiz\templates\correct_answer.html:16 .\quiz\templates\question.html:55 -#: .\quiz\templates\result.html:58 -msgid "This is the correct answer" -msgstr "" - -#: .\quiz\templates\correct_answer.html:23 .\quiz\templates\question.html:62 -#: .\quiz\templates\result.html:65 -msgid "This was your answer." -msgstr "" - -#: .\quiz\templates\progress.html:4 -msgid "Progress Page" -msgstr "" - -#: .\quiz\templates\progress.html:5 -msgid "User Progress Page" -msgstr "" - -#: .\quiz\templates\progress.html:13 -msgid "Question Category Scores" -msgstr "" - -#: .\quiz\templates\progress.html:20 .\quiz\templates\quiz\quiz_list.html:71 -#: .\quiz\templates\quiz\sitting_detail.html:13 -msgid "Category" -msgstr "" - -#: .\quiz\templates\progress.html:21 -msgid "Correctly answererd" -msgstr "" - -#: .\quiz\templates\progress.html:22 -msgid "Incorrect" -msgstr "" - -#: .\quiz\templates\progress.html:51 -msgid "Previous exam papers" -msgstr "" - -#: .\quiz\templates\progress.html:53 -msgid "Below are the results of exams that you have sat." -msgstr "" - -#: .\quiz\templates\progress.html:62 -msgid "Quiz Title" -msgstr "" - -#: .\quiz\templates\progress.html:64 -msgid "Possible Score" -msgstr "" - -#: .\quiz\templates\question.html:23 .\quiz\templates\result.html:35 -#: .\quiz\templates\result.html:187 -msgid "The previous question" -msgstr "" - -#: .\quiz\templates\question.html:32 -msgid "Your answer was" -msgstr "" - -#: .\quiz\templates\question.html:79 .\quiz\templates\result.html:81 -msgid "No explanation set to this question." -msgstr "" - -#: .\quiz\templates\question.html:115 -msgid "of" -msgstr "" - -#: .\quiz\templates\question.html:120 -msgid "Quiz category" -msgstr "" - -#: .\quiz\templates\question.html:145 -msgid "Check" -msgstr "" - -#: .\quiz\templates\question.html:146 -msgid "Previous" -msgstr "" - -#: .\quiz\templates\quiz\quiz_list.html:66 -msgid "You will only get one attempt at this quiz" -msgstr "" - -#: .\quiz\templates\quiz\quiz_list.html:74 -msgid "Start quiz" -msgstr "" - -#: .\quiz\templates\quiz\sitting_detail.html:4 -msgid "Result of" -msgstr "" - -#: .\quiz\templates\quiz\sitting_detail.html:4 -msgid "for" -msgstr "" - -#: .\quiz\templates\quiz\sitting_detail.html:12 -msgid "Quiz title" -msgstr "" - -#: .\quiz\templates\quiz\sitting_detail.html:19 -#: .\quiz\templates\quiz\sitting_list.html:32 -msgid "Completed" -msgstr "" - -#: .\quiz\templates\quiz\sitting_detail.html:29 -msgid "User answer" -msgstr "" - -#: .\quiz\templates\quiz\sitting_detail.html:48 -msgid "incorrect" -msgstr "" - -#: .\quiz\templates\quiz\sitting_detail.html:56 -msgid "Toggle whether correct" -msgstr "" - -#: .\quiz\templates\quiz\sitting_list.html:3 -msgid "All Quizzes" -msgstr "" - -#: .\quiz\templates\quiz\sitting_list.html:9 -msgid "List of complete exams" -msgstr "" - -#: .\quiz\templates\quiz\sitting_list.html:18 -msgid "Filter" -msgstr "" - -#: .\quiz\templates\quiz\sitting_list.html:48 -msgid "View details" -msgstr "" - -#: .\quiz\templates\quiz\sitting_list.html:56 -msgid "There are no matching results for your search..." -msgstr "" - -#: .\quiz\templates\result.html:8 -msgid "Exam Results for" -msgstr "" - -#: .\quiz\templates\result.html:92 .\quiz\templates\result.html:206 -msgid "Exam results" -msgstr "" - -#: .\quiz\templates\result.html:95 .\quiz\templates\result.html:208 -msgid "Exam title" -msgstr "" - -#: .\quiz\templates\result.html:99 .\quiz\templates\result.html:212 -msgid "You answered" -msgstr "" - -#: .\quiz\templates\result.html:99 .\quiz\templates\result.html:212 -msgid "questions correctly out of" -msgstr "" - -#: .\quiz\templates\result.html:99 .\quiz\templates\result.html:212 -msgid "giving you" -msgstr "" - -#: .\quiz\templates\result.html:99 -#, python-format -msgid "%% correct" -msgstr "" - -#: .\quiz\templates\result.html:112 .\quiz\templates\result.html:222 -msgid "Review the questions below and try the exam again in the future" -msgstr "" - -#: .\quiz\templates\result.html:116 -msgid "The result of this exam will be stored in your progress section" -msgstr "" - -#: .\quiz\templates\result.html:118 -msgid "so you can review and monitor your progression" -msgstr "" - -#: .\quiz\templates\result.html:132 .\quiz\templates\result.html:240 -msgid "Your session score is" -msgstr "" - -#: .\quiz\templates\result.html:132 .\quiz\templates\result.html:240 -msgid "out of a possible" -msgstr "" - -#: .\quiz\templates\result.html:153 -msgid "No explanation set for this question." -msgstr "" - -#: .\quiz\templates\result.html:160 .\quiz\templates\result.html:258 -msgid "Your answer" -msgstr "" - -#: .\quiz\templates\result.html:212 -msgid "percent correct" -msgstr "" - -#: .\quiz\templates\result.html:226 -msgid "" -"The result of this exam will be stored in your progress section so you can " -"review and monitor your progression" -msgstr "" diff --git a/locale/ru/LC_MESSAGES/django.po b/locale/ru/LC_MESSAGES/django.po new file mode 100644 index 0000000..a7db439 --- /dev/null +++ b/locale/ru/LC_MESSAGES/django.po @@ -0,0 +1,1704 @@ + +msgid "" +msgstr "" +"Project-Id-Version:PACKAGE VERSION" +"Report-Msgid-Bugs-To:" +"POT-Creation-Date:2024-04-15 19:36+0600" +"PO-Revision-Date:YEAR-MO-DA HO:MI+ZONE" +"Last-Translator:FULL NAME " +"Language-Team:LANGUAGE " +"Language:" +"MIME-Version:1.0" +"Content-Type:text/plain; charset=UTF-8" +"Content-Transfer-Encoding:8bit" +"Plural-Forms:nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);" + +#: accounts/models.py:14 course/models.py:24 +msgid "Bachloar" +msgstr "Бакалавр" +#: accounts/models.py:15 course/models.py:25 +msgid "Master" +msgstr "Магистр" +#: accounts/models.py:19 course/models.py:29 +msgid "Bachloar Degree" +msgstr "Степень бакалавра" +#: accounts/models.py:20 course/models.py:30 +msgid "Master Degree" +msgstr "Степень магистра" +#: accounts/models.py:23 accounts/models.py:32 +msgid "Father" +msgstr "Отец" +#: accounts/models.py:24 accounts/models.py:33 +msgid "Mother" +msgstr "Мать" +#: accounts/models.py:25 accounts/models.py:34 +msgid "Brother" +msgstr "Брат" +#: accounts/models.py:26 accounts/models.py:35 +msgid "Sister" +msgstr "Сестра" +#: accounts/models.py:27 accounts/models.py:36 +msgid "Grand mother" +msgstr "Бабушка" +#: accounts/models.py:28 accounts/models.py:37 +msgid "Grand father" +msgstr "Дед" +#: accounts/models.py:29 accounts/models.py:38 +msgid "Other" +msgstr "Другой" +#: accounts/models.py:67 +msgid "M" +msgstr "М" +#: accounts/models.py:67 +msgid "Male" +msgstr "Мужской" +#: accounts/models.py:67 +msgid "F" +msgstr "Ж" +#: accounts/models.py:67 +msgid "Female" +msgstr "Женский" +#: accounts/models.py:103 +msgid "Admin" +msgstr "Админ" +#: accounts/models.py:105 templates/result/add_score_for.html:52 +msgid "Student" +msgstr "Студент" +#: accounts/models.py:107 templates/course/course_allocation_view.html:32 +msgid "Lecturer" +msgstr "Преподаватель" +#: accounts/models.py:109 +msgid "Parent" +msgstr "Родитель" +#: accounts/validators.py:12 +msgid "" +"Enter a valid username. This value may contain only English letters, " +"numbers, and @/./+/-/_ characters." +msgstr "" +"Введите действительное имя пользователя. Это значение может содержать только" +" английские буквы, цифры и символы @/./+/-/_." +#: config/settings.py:163 +msgid "Russia" +msgstr "Россия" +#: config/settings.py:164 +msgid "English" +msgstr "Английский" +#: core/models.py:9 core/models.py:13 templates/core/index.html:59 +#: templates/core/index.html:64 templates/setting/admin_panel.html:80 +#: templates/setting/admin_panel.html:81 +msgid "News" +msgstr "Новости" +#: core/models.py:10 core/models.py:14 +msgid "Event" +msgstr "Событие" +#: core/models.py:17 core/models.py:22 course/models.py:33 course/models.py:38 +msgid "First" +msgstr "Первый" +#: core/models.py:18 core/models.py:23 course/models.py:34 course/models.py:39 +msgid "Second" +msgstr "Второй" +#: core/models.py:19 core/models.py:24 course/models.py:35 course/models.py:40 +msgid "Third" +msgstr "Третий" +#: course/models.py:71 +#, python-brace-format +msgid "The program '{instance}' has been {verb}." +msgstr "Программа '{instance}' была {verb}." +#: course/models.py:76 +#, python-brace-format +msgid "The program '{instance}' has been deleted." +msgstr "Программа '{instance}' удалена." +#: course/models.py:138 +#, python-brace-format +msgid "The course '{instance}' has been {verb}." +msgstr "Курс '{instance}' был {verb}." +#: course/models.py:143 +#, python-brace-format +msgid "The course '{instance}' has been deleted." +msgstr "Курс '{instance}' был удален." +#: course/models.py:150 +msgid "allocated_lecturer" +msgstr "выделенный_лектор" +#: course/models.py:152 +msgid "allocated_course" +msgstr "выделенный_курс" +#: course/models.py:217 +#, python-brace-format +msgid "" +"The file '{instance.title}' has been uploaded to the course " +"'{instance.course}'." +msgstr "Файл '{instance.title}' загружен в курс '{instance.course}'." +#: course/models.py:221 +#, python-brace-format +msgid "" +"The file '{instance.title}' of the course '{instance.course}' has been " +"updated." +msgstr "Файл '{instance.title}' курса '{instance.course}' обновлен." +#: course/models.py:228 +#, python-brace-format +msgid "" +"The file '{instance.title}' of the course '{instance.course}' has been " +"deleted." +msgstr "Файл '{instance.title}' курса '{instance.course}' был удален." +#: course/models.py:238 +msgid "Valid video formats: mp4, mkv, wmv, 3gp, f4v, avi, mp3" +msgstr "Допустимые форматы видео: mp4, mkv, wmv, 3gp, f4v, avi, mp3." +#: course/models.py:271 +#, python-brace-format +msgid "" +"The video '{instance.title}' has been uploaded to the course " +"{instance.course}." +msgstr "Видео '{instance.title}' было загружено в курс {instance.course}." +#: course/models.py:275 +#, python-brace-format +msgid "" +"The video '{instance.title}' of the course '{instance.course}' has been " +"updated." +msgstr "Видео '{instance.title}' курса '{instance.course}' обновлено." +#: course/models.py:282 +#, python-brace-format +msgid "" +"The video '{instance.title}' of the course '{instance.course}' has been " +"deleted." +msgstr "Видео '{instance.title}' курса '{instance.course}' было удалено." +#: course/models.py:287 +msgid "NOTE: Only department head can offer semester courses" +msgstr "" +"ПРИМЕЧАНИЕ: Только руководитель отдела может предлагать семестровые курсы." +#: quiz/admin.py:31 quiz/admin.py:32 quiz/forms.py:38 quiz/forms.py:39 +#: quiz/models.py:468 templates/quiz/quiz_list.html:41 +msgid "Questions" +msgstr "Вопросы" +#: quiz/models.py:23 quiz/models.py:529 +msgid "Content" +msgstr "Содержание" +#: quiz/models.py:24 +msgid "Random" +msgstr "Случайный" +#: quiz/models.py:25 +msgid "None" +msgstr "Никто" +#: quiz/models.py:29 templates/result/add_score_for.html:53 +#: templates/result/assessment_results.html:40 +#: templates/result/assessment_results.html:82 +msgid "Assignment" +msgstr "Назначение" +#: quiz/models.py:30 +msgid "Exam" +msgstr "Экзамен" +#: quiz/models.py:31 +msgid "Practice Quiz" +msgstr "Практический тест" +#: quiz/models.py:53 +msgid "Title" +msgstr "Заголовок" +#: quiz/models.py:56 +msgid "Description" +msgstr "Описание" +#: quiz/models.py:58 +msgid "A detailed description of the quiz" +msgstr "Подробное описание викторины" +#: quiz/models.py:64 +msgid "Random Order" +msgstr "Случайный порядок" +#: quiz/models.py:65 +msgid "Display the questions in a random order or as they are set?" +msgstr "Отображать вопросы в случайном порядке или по мере их установки?" +#: quiz/models.py:74 +msgid "Answers at end" +msgstr "Ответы в конце" +#: quiz/models.py:76 +msgid "" +"Correct answer is NOT shown after question. Answers displayed at the end." +msgstr "" +"Правильный ответ НЕ отображается после вопроса. Ответы отображаются в конце." +#: quiz/models.py:83 +msgid "Exam Paper" +msgstr "Экзаменационная бумага" +#: quiz/models.py:85 +msgid "" +"If yes, the result of each attempt by a user will be stored. Necessary for " +"marking." +msgstr "" +"Если да, результат каждой попытки пользователя будет сохранен. Необходимо " +"для маркировки." +#: quiz/models.py:92 +msgid "Single Attempt" +msgstr "Одиночная попытка" +#: quiz/models.py:93 +msgid "If yes, only one attempt by a user will be permitted." +msgstr "Если да, пользователю будет разрешена только одна попытка." +#: quiz/models.py:99 +msgid "Pass Mark" +msgstr "Проходной балл" +#: quiz/models.py:101 +msgid "Percentage required to pass exam." +msgstr "Процент, необходимый для сдачи экзамена." +#: quiz/models.py:107 +msgid "Draft" +msgstr "Черновик" +#: quiz/models.py:109 +msgid "" +"If yes, the quiz is not displayed in the quiz list and can only be taken by " +"users who can edit quizzes." +msgstr "" +"Если да, тест не отображается в списке тестов, и его могут пройти только " +"пользователи, имеющие право редактировать тесты." +#: quiz/models.py:129 quiz/models.py:290 quiz/models.py:443 +#: templates/quiz/quiz_list.html:39 templates/quiz/sitting_list.html:37 +#: templates/result/add_score_for.html:55 +#: templates/result/assessment_results.html:42 +#: templates/result/assessment_results.html:84 +#: templates/search/search_view.html:79 templates/search/search_view.html:127 +msgid "Quiz" +msgstr "Контрольный опрос" +#: quiz/models.py:130 templates/question.html:16 +#: templates/quiz/mcquestion_form.html:13 templates/quiz/quiz_form.html:13 +#: templates/quiz/quiz_list.html:16 templates/quiz/quiz_list.html:26 +#: templates/result.html:18 +msgid "Quizzes" +msgstr "Викторины" +#: quiz/models.py:164 quiz/models.py:288 templates/quiz/sitting_detail.html:24 +#: templates/quiz/sitting_list.html:35 +msgid "User" +msgstr "Пользователь" +#: quiz/models.py:168 templates/progress.html:68 +#: templates/quiz/sitting_detail.html:26 templates/quiz/sitting_list.html:39 +msgid "Score" +msgstr "Счет" +#: quiz/models.py:175 +msgid "User Progress" +msgstr "Прогресс пользователя" +#: quiz/models.py:176 +msgid "User progress records" +msgstr "Записи прогресса пользователя" +#: quiz/models.py:203 +msgid "error" +msgstr "ошибка" +#: quiz/models.py:203 +msgid "category does not exist or invalid score" +msgstr "категория не существует или неверный балл" +#: quiz/models.py:248 +msgid "Question set of the quiz is empty. Please configure questions properly" +msgstr "" +"Набор вопросов викторины пуст. Пожалуйста, правильно сформулируйте вопросы" +#: quiz/models.py:292 templates/quiz/sitting_list.html:36 +#: templates/search/search_view.html:59 templates/search/search_view.html:125 +msgid "Course" +msgstr "Курс" +#: quiz/models.py:297 +msgid "Question Order" +msgstr "Порядок вопросов" +#: quiz/models.py:303 +msgid "Question List" +msgstr "Список вопросов" +#: quiz/models.py:310 +msgid "Incorrect questions" +msgstr "Неправильные вопросы" +#: quiz/models.py:314 +msgid "Current Score" +msgstr "Текущий счет" +#: quiz/models.py:316 +msgid "Complete" +msgstr "Полный" +#: quiz/models.py:319 +msgid "User Answers" +msgstr "Ответы пользователей" +#: quiz/models.py:321 templates/quiz/sitting_detail.html:27 +msgid "Start" +msgstr "Начинать" +#: quiz/models.py:322 templates/quiz/sitting_detail.html:28 +msgid "End" +msgstr "Конец" +#: quiz/models.py:327 +msgid "Can see completed exams." +msgstr "Можно увидеть сданные экзамены." +#: quiz/models.py:404 +msgid "You have passed this quiz, congratulation" +msgstr "Вы прошли этот тест, поздравляем" +#: quiz/models.py:406 +msgid "You failed this quiz, give it one chance again." +msgstr "Вы провалили этот тест, дайте ему еще один шанс." +#: quiz/models.py:448 +msgid "Figure" +msgstr "Фигура" +#: quiz/models.py:449 +msgid "Add an image for the question if it's necessary." +msgstr "Если необходимо, добавьте изображение к вопросу." +#: quiz/models.py:454 +msgid "Enter the question text that you want displayed" +msgstr "Введите текст вопроса, который вы хотите отобразить" +#: quiz/models.py:455 quiz/models.py:467 quiz/models.py:522 +#: templates/question.html:125 templates/quiz/sitting_detail.html:34 +msgid "Question" +msgstr "Вопрос" +#: quiz/models.py:460 +msgid "Explanation to be shown after the question has been answered." +msgstr "Пояснения отображаются после ответа на вопрос." +#: quiz/models.py:461 templates/question.html:80 templates/question.html:89 +#: templates/result.html:80 templates/result.html:150 +msgid "Explanation" +msgstr "Объяснение" +#: quiz/models.py:481 +msgid "" +"The order in which multichoice choice options are displayed to the user" +msgstr "" +"Порядок, в котором пользователю отображаются варианты выбора из нескольких " +"вариантов." +#: quiz/models.py:483 +msgid "Choice Order" +msgstr "Порядок выбора" +#: quiz/models.py:516 +msgid "Multiple Choice Question" +msgstr "Вопрос с множественным выбором" +#: quiz/models.py:517 +msgid "Multiple Choice Questions" +msgstr "Вопросы с множественным выбором" +#: quiz/models.py:528 +msgid "Enter the choice text that you want displayed" +msgstr "Введите текст выбора, который вы хотите отобразить" +#: quiz/models.py:535 +msgid "Is this a correct answer?" +msgstr "Это правильный ответ?" +#: quiz/models.py:536 templates/quiz/mcquestion_form.html:44 +#: templates/quiz/sitting_detail.html:56 +msgid "Correct" +msgstr "Правильный" +#: quiz/models.py:543 +msgid "Choice" +msgstr "Выбор" +#: quiz/models.py:544 templates/quiz/mcquestion_form.html:38 +msgid "Choices" +msgstr "Выбор" +#: quiz/models.py:564 +msgid "Essay style question" +msgstr "Вопрос в стиле эссе" +#: quiz/models.py:565 +msgid "Essay style questions" +msgstr "Вопросы в стиле эссе" +#: templates/400.html:5 +msgid "Bad request" +msgstr "Неверный запрос" +#: templates/400.html:6 +msgid "Please make sure the form is correctly filled." +msgstr "Пожалуйста, убедитесь, что форма заполнена правильно." +#: templates/400.html:7 templates/403.html:7 templates/404.html:7 +#: templates/500.html:7 +msgid "Return to the app" +msgstr "Вернуться в приложение" +#: templates/403.html:5 +msgid "forbidden" +msgstr "запрещенный" +#: templates/403.html:6 +msgid "You need the proper permission to make that request." +msgstr "Вам нужно соответствующее разрешение, чтобы сделать этот запрос." +#: templates/404.html:6 +msgid "Looks like the page you" +msgstr "Похоже на страницу, которую вы" +#: templates/500.html:6 +msgid "Please try again later." +msgstr "Пожалуйста, повторите попытку позже." +#: templates/accounts/add_staff.html:3 templates/accounts/add_student.html:3 +#: templates/accounts/edit_lecturer.html:3 +#: templates/accounts/edit_student.html:3 +#: templates/accounts/lecturer_list.html:3 +#: templates/accounts/parent_form.html:3 templates/accounts/profile.html:3 +#: templates/accounts/profile_single.html:3 +#: templates/accounts/student_list.html:3 templates/core/dashboard.html:3 +#: templates/core/index.html:3 templates/core/post_add.html:3 +#: templates/core/semester_list.html:3 templates/core/semester_update.html:3 +#: templates/core/session_list.html:3 templates/core/session_update.html:3 +#: templates/course/course_add.html:3 +#: templates/course/course_allocation_form.html:3 +#: templates/course/course_allocation_view.html:3 +#: templates/course/course_registration.html:3 +#: templates/course/course_single.html:3 templates/course/program_add.html:3 +#: templates/course/program_list.html:3 templates/course/program_single.html:3 +#: templates/course/user_course_list.html:3 templates/progress.html:4 +#: templates/question.html:5 templates/quiz/sitting_detail.html:4 +#: templates/quiz/sitting_list.html:3 templates/result.html:7 +#: templates/result/add_score.html:3 templates/result/add_score_for.html:3 +#: templates/result/assessment_results.html:3 +#: templates/result/grade_results.html:3 templates/search/search_view.html:3 +#: templates/setting/admin_panel.html:3 +#: templates/setting/password_change.html:3 +#: templates/setting/profile_info_change.html:3 +#: templates/upload/upload_file_form.html:3 +#: templates/upload/upload_video_form.html:3 +#: templates/upload/video_single.html:3 +msgid "Learning management system" +msgstr "Система управления обучением" +#: templates/accounts/add_staff.html:11 templates/accounts/add_student.html:12 +#: templates/accounts/edit_lecturer.html:11 +#: templates/accounts/edit_student.html:11 +#: templates/accounts/lecturer_list.html:9 templates/accounts/profile.html:14 +#: templates/accounts/profile_single.html:14 +#: templates/accounts/student_list.html:10 templates/aside.html:60 +#: templates/core/dashboard.html:13 templates/core/index.html:34 +#: templates/core/post_add.html:11 templates/core/semester_list.html:9 +#: templates/core/semester_update.html:11 templates/core/session_list.html:9 +#: templates/core/session_update.html:11 templates/course/course_add.html:11 +#: templates/course/course_allocation_form.html:11 +#: templates/course/course_allocation_view.html:9 +#: templates/course/course_registration.html:12 +#: templates/course/course_single.html:10 templates/course/program_add.html:11 +#: templates/course/program_list.html:9 +#: templates/course/program_single.html:10 +#: templates/course/user_course_list.html:10 templates/progress.html:11 +#: templates/question.html:12 templates/quiz/mcquestion_form.html:9 +#: templates/quiz/quiz_form.html:9 templates/quiz/quiz_list.html:12 +#: templates/quiz/sitting_detail.html:11 templates/quiz/sitting_list.html:9 +#: templates/result.html:14 templates/result/add_score.html:10 +#: templates/result/add_score_for.html:10 +#: templates/result/assessment_results.html:9 +#: templates/result/grade_results.html:9 templates/search/search_view.html:11 +#: templates/setting/admin_panel.html:11 +#: templates/setting/password_change.html:11 +#: templates/setting/profile_info_change.html:11 +#: templates/upload/upload_file_form.html:10 +#: templates/upload/upload_video_form.html:10 +#: templates/upload/video_single.html:10 +msgid "Home" +msgstr "Дом" +#: templates/accounts/add_staff.html:12 +#: templates/accounts/edit_lecturer.html:12 +#: templates/accounts/lecturer_list.html:10 +#: templates/accounts/lecturer_list.html:21 templates/aside.html:71 +#: templates/core/dashboard.html:190 templates/pdf/lecturer_list.html:35 +#: templates/setting/admin_panel.html:37 +msgid "Lecturers" +msgstr "Преподаватели" +#: templates/accounts/add_staff.html:13 templates/accounts/add_student.html:14 +#: templates/aside.html:126 +msgid "Add" +msgstr "Добавлять" +#: templates/accounts/add_staff.html:17 +msgid "Lecturer Add Form" +msgstr "Лектор Добавить форму" +#: templates/accounts/add_staff.html:26 templates/accounts/add_student.html:27 +#: templates/accounts/edit_lecturer.html:27 +#: templates/accounts/edit_student.html:25 templates/accounts/profile.html:75 +#: templates/accounts/profile_single.html:85 +#: templates/pdf/profile_single.html:65 +#: templates/registration/register.html:40 +#: templates/setting/profile_info_change.html:24 +msgid "Personal Info" +msgstr "Личная информация" +#: templates/accounts/add_staff.html:37 templates/accounts/add_student.html:49 +#: templates/accounts/edit_lecturer.html:46 +#: templates/accounts/edit_student.html:46 +#: templates/accounts/parent_form.html:11 +msgid "submit" +msgstr "представлять на рассмотрение" +#: templates/accounts/add_student.html:18 +msgid "Student Add Form" +msgstr "Форма добавления студента" +#: templates/accounts/add_student.html:40 +#: templates/accounts/edit_lecturer.html:39 +#: templates/accounts/edit_student.html:39 templates/core/dashboard.html:244 +#: templates/setting/profile_info_change.html:37 +msgid "Others" +msgstr "Другие" +#: templates/accounts/edit_lecturer.html:13 +#: templates/accounts/edit_student.html:13 +#: templates/accounts/lecturer_list.html:59 +#: templates/accounts/student_list.html:61 +#: templates/course/program_list.html:56 +msgid "Update" +msgstr "Обновлять" +#: templates/accounts/edit_lecturer.html:17 +msgid "Lecturer Update Form" +msgstr "Форма обновления преподавателя" +#: templates/accounts/edit_lecturer.html:27 +#: templates/accounts/edit_student.html:25 +#: templates/accounts/lecturer_list.html:33 +#: templates/accounts/student_list.html:38 templates/pdf/lecturer_list.html:44 +#: templates/pdf/student_list.html:43 +#: templates/registration/password_reset.html:13 +#: templates/setting/profile_info_change.html:24 +msgid "Email" +msgstr "Электронная почта" +#: templates/accounts/edit_student.html:12 +#: templates/accounts/student_list.html:11 +#: templates/accounts/student_list.html:24 templates/aside.html:74 +#: templates/core/dashboard.html:181 templates/pdf/student_list.html:35 +#: templates/setting/admin_panel.html:42 +msgid "Students" +msgstr "Студенты" +#: templates/accounts/edit_student.html:17 +msgid "Student Update Form" +msgstr "Форма обновления студента" +#: templates/accounts/lecturer_list.html:16 +msgid "Add Lecturer" +msgstr "Добавить лектора" +#: templates/accounts/lecturer_list.html:17 +#: templates/accounts/student_list.html:20 +msgid "Download pdf" +msgstr "Скачать PDF" +#: templates/accounts/lecturer_list.html:31 +#: templates/accounts/student_list.html:36 templates/pdf/lecturer_list.html:42 +#: templates/pdf/student_list.html:41 +msgid "ID No." +msgstr "Идентификационный номер" +#: templates/accounts/lecturer_list.html:32 +#: templates/accounts/student_list.html:37 templates/pdf/lecturer_list.html:43 +#: templates/pdf/student_list.html:42 +msgid "Full Name" +msgstr "Полное имя" +#: templates/accounts/lecturer_list.html:34 +#: templates/pdf/lecturer_list.html:45 templates/pdf/student_list.html:44 +msgid "Mob No." +msgstr "Моб №" +#: templates/accounts/lecturer_list.html:35 +msgid "Address/city" +msgstr "Адрес Город" +#: templates/accounts/lecturer_list.html:36 +msgid "Last login" +msgstr "Последний Войти" +#: templates/accounts/lecturer_list.html:38 +#: templates/accounts/student_list.html:41 +#: templates/course/course_allocation_view.html:35 +#: templates/course/program_list.html:35 +#: templates/course/program_single.html:48 +msgid "Action" +msgstr "Действие" +#: templates/accounts/lecturer_list.html:60 +#: templates/accounts/student_list.html:62 +msgid "Download PDF" +msgstr "Скачать PDF" +#: templates/accounts/lecturer_list.html:61 +#: templates/accounts/student_list.html:63 templates/core/index.html:90 +#: templates/core/semester_list.html:71 templates/core/session_list.html:66 +#: templates/course/course_single.html:91 +#: templates/course/course_single.html:168 +#: templates/course/program_list.html:57 +#: templates/course/program_single.html:82 +#: templates/quiz/mcquestion_form.html:48 templates/quiz/quiz_list.html:68 +msgid "Delete" +msgstr "Удалить" +#: templates/accounts/lecturer_list.html:71 +#: templates/pdf/lecturer_list.html:63 templates/pdf/student_list.html:61 +msgid "No Lecturer(s)." +msgstr "Нет лектора(ов)." +#: templates/accounts/lecturer_list.html:75 +msgid "Add Lecturer Now." +msgstr "Добавьте лектора сейчас." +#: templates/accounts/profile.html:29 templates/accounts/profile.html:101 +#: templates/accounts/profile_single.html:29 +#: templates/accounts/profile_single.html:111 templates/navbar.html:29 +#: templates/pdf/profile_single.html:41 templates/pdf/profile_single.html:92 +msgid "Last login:" +msgstr "Последний Войти:" +#: templates/accounts/profile.html:30 +#: templates/accounts/profile_single.html:30 +#: templates/pdf/profile_single.html:42 +msgid "Role:" +msgstr "Роль:" +#: templates/accounts/profile.html:37 +#: templates/accounts/profile_single.html:40 +#: templates/accounts/profile_single.html:45 +msgid "Edit Profile" +msgstr "Редактировать профиль" +#: templates/accounts/profile.html:39 +msgid "Change password" +msgstr "Изменить пароль" +#: templates/accounts/profile.html:62 +#: templates/accounts/profile_single.html:72 templates/aside.html:80 +#: templates/course/user_course_list.html:3 +#: templates/course/user_course_list.html:11 +#: templates/course/user_course_list.html:23 templates/navbar.html:34 +#: templates/pdf/profile_single.html:52 +msgid "My Courses" +msgstr "Мои курсы" +#: templates/accounts/profile.html:70 +#: templates/accounts/profile_single.html:80 +#: templates/pdf/profile_single.html:60 +msgid "No courses assigned!" +msgstr "Курсы не назначены!" +#: templates/accounts/profile.html:77 +#: templates/accounts/profile_single.html:87 +#: templates/pdf/profile_single.html:67 +msgid "First Name:" +msgstr "Имя:" +#: templates/accounts/profile.html:78 +#: templates/accounts/profile_single.html:88 +#: templates/pdf/profile_single.html:68 +msgid "Last Name:" +msgstr "Фамилия:" +#: templates/accounts/profile.html:79 +#: templates/accounts/profile_single.html:89 +#: templates/pdf/profile_single.html:69 +msgid "ID No.:" +msgstr "Идентификационный номер:" +#: templates/accounts/profile.html:83 +#: templates/accounts/profile_single.html:93 +#: templates/pdf/profile_single.html:74 +msgid "Applicant Info" +msgstr "Информация о заявителе" +#: templates/accounts/profile.html:85 +#: templates/accounts/profile_single.html:95 +#: templates/pdf/profile_single.html:76 +msgid "School:" +msgstr "Школа:" +#: templates/accounts/profile.html:85 +#: templates/accounts/profile_single.html:95 +#: templates/pdf/profile_single.html:76 +msgid "Hawas Preparatory School" +msgstr "Подготовительная школа Хавас" +#: templates/accounts/profile.html:86 +#: templates/accounts/profile_single.html:96 +#: templates/pdf/profile_single.html:77 +msgid "Level:" +msgstr "Уровень:" +#: templates/accounts/profile.html:91 +#: templates/accounts/profile_single.html:101 +#: templates/pdf/profile_single.html:82 +msgid "Contact Info" +msgstr "Контактная информация" +#: templates/accounts/profile.html:93 +#: templates/accounts/profile_single.html:103 +#: templates/pdf/profile_single.html:84 +msgid "Email:" +msgstr "Электронная почта:" +#: templates/accounts/profile.html:94 +#: templates/accounts/profile_single.html:104 +#: templates/pdf/profile_single.html:85 +msgid "Tel No.:" +msgstr "Номер телефона.:" +#: templates/accounts/profile.html:95 +#: templates/accounts/profile_single.html:105 +#: templates/pdf/profile_single.html:86 +msgid "Address/city:" +msgstr "Адрес Город:" +#: templates/accounts/profile.html:99 +#: templates/accounts/profile_single.html:109 +#: templates/pdf/profile_single.html:90 +msgid "Important Dates" +msgstr "Важные даты" +#: templates/accounts/profile.html:103 +#: templates/accounts/profile_single.html:113 +#: templates/pdf/profile_single.html:94 +msgid "Academic Year:" +msgstr "Академический год:" +#: templates/accounts/profile.html:103 +#: templates/accounts/profile_single.html:113 +#: templates/core/semester_list.html:41 +#: templates/course/program_single.html:45 +#: templates/course/user_course_list.html:52 +#: templates/course/user_course_list.html:96 +#: templates/pdf/profile_single.html:94 templates/result/add_score.html:24 +#: templates/result/add_score_for.html:46 +#: templates/setting/admin_panel.html:52 +msgid "Semester" +msgstr "Семестр" +#: templates/accounts/profile.html:105 +#: templates/accounts/profile_single.html:115 +#: templates/pdf/profile_single.html:96 +msgid "Registered Date:" +msgstr "Дата регистрации:" +#: templates/accounts/student_list.html:19 +msgid "Add Student" +msgstr "Добавить студента" +#: templates/accounts/student_list.html:39 templates/pdf/student_list.html:45 +#: templates/search/search_view.html:49 templates/search/search_view.html:89 +#: templates/search/search_view.html:124 +msgid "Program" +msgstr "Программа" +#: templates/accounts/student_list.html:73 +#: templates/result/add_score_for.html:105 +msgid "No Student." +msgstr "Нет Студента." +#: templates/accounts/student_list.html:77 +msgid "Add Student Now." +msgstr "Добавьте студента сейчас." +#: templates/aside.html:56 templates/core/dashboard.html:3 +#: templates/core/dashboard.html:14 templates/core/dashboard.html:160 +msgid "Dashboard" +msgstr "Панель приборов" +#: templates/aside.html:63 templates/navbar.html:41 +msgid "Profile" +msgstr "Профиль" +#: templates/aside.html:68 templates/navbar.html:38 +#: templates/setting/admin_panel.html:12 templates/setting/admin_panel.html:16 +msgid "Admin Panel" +msgstr "Панель администратора" +#: templates/aside.html:85 +msgid "Programs & Courses" +msgstr "Программы и курсы" +#: templates/aside.html:90 templates/quiz/sitting_list.html:10 +msgid "Complete Exams" +msgstr "Завершить экзамены" +#: templates/aside.html:96 templates/aside.html:117 +msgid "Quiz Progress Rec" +msgstr "Запись прогресса викторины" +#: templates/aside.html:99 +msgid "Course Allocation" +msgstr "Распределение курсов" +#: templates/aside.html:102 +msgid "Manage Session" +msgstr "Управление сеансом" +#: templates/aside.html:105 +msgid "Manage Semester" +msgstr "Управление семестром" +#: templates/aside.html:111 templates/result/add_score.html:11 +#: templates/result/add_score.html:17 templates/result/add_score_for.html:12 +msgid "Manage Score" +msgstr "Управление счетом" +#: templates/aside.html:120 templates/result/grade_results.html:10 +#: templates/result/grade_results.html:28 +msgid "Grade Results" +msgstr "Результаты оценок" +#: templates/aside.html:123 templates/result/assessment_results.html:10 +#: templates/result/assessment_results.html:28 +msgid "Assesment Results" +msgstr "Результаты оценки" +#: templates/aside.html:126 +msgid "Drop Course" +msgstr "Бросить курс" +#: templates/aside.html:132 +msgid "Account Setting" +msgstr "Настройки аккаунта" +#: templates/aside.html:135 templates/setting/password_change.html:21 +#: templates/setting/password_change.html:25 +msgid "Change Password" +msgstr "Изменить пароль" +#: templates/aside.html:143 +msgid "Read our" +msgstr "Прочтите наш" +#: templates/aside.html:143 +msgid "Privacy" +msgstr "Конфиденциальность" +#: templates/aside.html:143 +msgid "and" +msgstr "и" +#: templates/aside.html:143 +msgid "Terms of use." +msgstr "Условия эксплуатации." +#: templates/aside.html:148 +msgid "⭐️ Star This Project" +msgstr "⭐️ Отметьте звездой этот проект" +#: templates/core/dashboard.html:167 +msgid "Dashboard settings" +msgstr "Настройки панели управления" +#: templates/core/dashboard.html:168 +msgid "Display grid" +msgstr "Сетка отображения" +#: templates/core/dashboard.html:169 +msgid "Display table" +msgstr "Таблица отображения" +#: templates/core/dashboard.html:171 +msgid "Manage dashboard" +msgstr "Управление панелью управления" +#: templates/core/dashboard.html:199 +msgid "Administrators" +msgstr "Администраторы" +#: templates/core/dashboard.html:208 +msgid "Lab Assistance" +msgstr "Лабораторная помощь" +#: templates/core/dashboard.html:217 +msgid "Librarians" +msgstr "Библиотекари" +#: templates/core/dashboard.html:226 +msgid "Supervisors" +msgstr "Руководители" +#: templates/core/dashboard.html:235 +msgid "Office Assistance" +msgstr "Офисная помощь" +#: templates/core/dashboard.html:272 +msgid "Latest activities" +msgstr "Последние мероприятия" +#: templates/core/dashboard.html:277 +msgid "No recent activity" +msgstr "Нет недавней активности" +#: templates/core/dashboard.html:285 +msgid "School Demographics" +msgstr "Школьная демография" +#: templates/core/index.html:40 +msgid "Add New Post" +msgstr "Добавить новое сообщение" +#: templates/core/index.html:59 templates/core/index.html:67 +#: templates/setting/admin_panel.html:80 templates/setting/admin_panel.html:81 +msgid "Events" +msgstr "События" +#: templates/core/index.html:77 +msgid "news" +msgstr "Новости" +#: templates/core/index.html:77 +msgid "events" +msgstr "события" +#: templates/core/index.html:88 templates/core/semester_list.html:69 +#: templates/core/session_list.html:65 templates/course/course_single.html:87 +#: templates/course/course_single.html:164 +#: templates/course/program_single.html:79 templates/quiz/quiz_list.html:65 +msgid "Edit" +msgstr "Редактировать" +#: templates/core/index.html:100 templates/upload/video_single.html:31 +msgid "ago" +msgstr "назад" +#: templates/core/index.html:110 +msgid "School news and events will appear here." +msgstr "Здесь будут появляться новости и события школы." +#: templates/core/post_add.html:12 +msgid "Post form" +msgstr "Форма публикации" +#: templates/core/post_add.html:21 +msgid "Post Form" +msgstr "Форма сообщения" +#: templates/core/post_add.html:25 templates/core/semester_update.html:38 +#: templates/core/session_update.html:38 templates/course/course_add.html:49 +#: templates/course/course_allocation_form.html:49 +#: templates/course/program_add.html:26 templates/quiz/mcquestion_form.html:58 +#: templates/quiz/quiz_form.html:66 templates/result/add_score_for.html:38 +msgid "Save" +msgstr "Сохранять" +#: templates/core/post_add.html:26 templates/upload/upload_file_form.html:34 +#: templates/upload/upload_video_form.html:33 +msgid "Cancel" +msgstr "Отмена" +#: templates/core/semester_list.html:10 +msgid "Semester list" +msgstr "Список семестров" +#: templates/core/semester_list.html:16 +msgid "Add New Semester" +msgstr "Добавить новый семестр" +#: templates/core/semester_list.html:20 templates/core/semester_update.html:12 +msgid "Semester List" +msgstr "Список семестров" +#: templates/core/semester_list.html:42 +msgid "Is Current semester" +msgstr "Текущий семестр" +#: templates/core/semester_list.html:43 templates/core/session_list.html:41 +#: templates/setting/admin_panel.html:47 +msgid "Session" +msgstr "Сессия" +#: templates/core/semester_list.html:44 +msgid "Next Semester Begins" +msgstr "Следующий семестр начинается" +#: templates/core/semester_list.html:46 templates/core/session_list.html:45 +#: templates/course/course_single.html:61 +#: templates/course/course_single.html:138 +msgid "Actions" +msgstr "Действия" +#: templates/core/semester_list.html:83 +msgid "No Semester." +msgstr "Никакого семестра." +#: templates/core/semester_list.html:87 +msgid "Add Semester Now." +msgstr "Добавьте семестр сейчас." +#: templates/core/semester_update.html:13 +msgid "Semester Form" +msgstr "Семестровая форма" +#: templates/core/semester_update.html:34 +msgid "Semester Add & update Form" +msgstr "Форма добавления и обновления семестра" +#: templates/core/session_list.html:10 templates/core/session_list.html:20 +#: templates/core/session_update.html:12 +msgid "Session List" +msgstr "Список сеансов" +#: templates/core/session_list.html:16 +msgid "Add New Session" +msgstr "Добавить новый сеанс" +#: templates/core/session_list.html:42 +msgid "Is Current Session" +msgstr "Текущая сессия" +#: templates/core/session_list.html:43 +msgid "Next Session Begins" +msgstr "Начинается следующая сессия" +#: templates/core/session_list.html:77 +msgid "No Session." +msgstr "Нет сеанса." +#: templates/core/session_list.html:81 +msgid "Add Session Now." +msgstr "Добавить сеанс сейчас." +#: templates/core/session_update.html:13 +msgid "Session Form" +msgstr "Форма сессии" +#: templates/core/session_update.html:34 +msgid "Session Add & update Form" +msgstr "Форма добавления и обновления сеанса" +#: templates/correct_answer.html:6 templates/question.html:50 +#: templates/result.html:51 +msgid "You answered the above question incorrectly" +msgstr "Вы неправильно ответили на вопрос выше" +#: templates/correct_answer.html:16 templates/question.html:60 +#: templates/result.html:61 +msgid "This is the correct answer" +msgstr "Это правильный ответ" +#: templates/correct_answer.html:24 templates/question.html:68 +#: templates/result.html:69 +msgid "This was your answer." +msgstr "Это был ваш ответ." +#: templates/course/course_add.html:12 templates/course/course_single.html:11 +#: templates/course/program_add.html:12 templates/course/program_list.html:10 +#: templates/course/program_single.html:11 +#: templates/quiz/mcquestion_form.html:10 templates/quiz/quiz_form.html:10 +#: templates/quiz/quiz_list.html:13 templates/result.html:15 +#: templates/setting/admin_panel.html:70 +#: templates/upload/upload_file_form.html:11 +#: templates/upload/upload_video_form.html:11 +#: templates/upload/video_single.html:11 +msgid "Programs" +msgstr "Программы" +#: templates/course/course_add.html:13 templates/course/course_add.html:17 +msgid "Course Form" +msgstr "Форма курса" +#: templates/course/course_add.html:27 +msgid "Course Detail" +msgstr "Детали курса" +#: templates/course/course_add.html:37 +msgid "Other Info" +msgstr "Дополнительная информация" +#: templates/course/course_allocation_form.html:12 +#: templates/course/course_allocation_view.html:20 +#: templates/setting/admin_panel.html:75 +msgid "Course Allocations" +msgstr "Распределение курсов" +#: templates/course/course_allocation_form.html:13 +msgid "Allocation Form" +msgstr "Форма распределения" +#: templates/course/course_allocation_form.html:34 +msgid "Course Allocation Form" +msgstr "Форма распределения курсов" +#: templates/course/course_allocation_view.html:10 +msgid "Allocation list" +msgstr "Список распределения" +#: templates/course/course_allocation_view.html:16 +msgid "Allocate Now" +msgstr "Выделить сейчас" +#: templates/course/course_allocation_view.html:33 +#: templates/setting/admin_panel.html:70 +msgid "Courses" +msgstr "Курсы" +#: templates/course/course_allocation_view.html:50 +msgid "Edit or Update" +msgstr "Редактировать или обновить" +#: templates/course/course_allocation_view.html:53 +msgid "Deallocate" +msgstr "Освободить" +#: templates/course/course_allocation_view.html:65 +msgid "No Course Allocated." +msgstr "Курс не назначен." +#: templates/course/course_allocation_view.html:69 +msgid "Allocate now" +msgstr "Выделить сейчас" +#: templates/course/course_registration.html:13 +msgid "Course Registration" +msgstr "Регистрация на курс" +#: templates/course/course_registration.html:17 +#: templates/course/course_registration.html:35 +#: templates/setting/admin_panel.html:58 +msgid "Course Add" +msgstr "Курс Добавить" +#: templates/course/course_registration.html:17 +#: templates/setting/admin_panel.html:58 +msgid "Drop" +msgstr "Уронить" +#: templates/course/course_registration.html:25 +msgid "Calender is off" +msgstr "Календарь выключен" +#: templates/course/course_registration.html:26 +msgid "Check the university calender" +msgstr "Проверьте календарь университета" +#: templates/course/course_registration.html:38 +#: templates/course/course_registration.html:200 +msgid "Save Score" +msgstr "Сохранить счет" +#: templates/course/course_registration.html:43 +#: templates/result/assessment_results.html:32 +#: templates/result/grade_results.html:32 +msgid "First Semester:" +msgstr "Первый семестр:" +#: templates/course/course_registration.html:48 +#: templates/course/course_registration.html:111 +#: templates/course/course_registration.html:216 +msgid "Mark" +msgstr "Отметка" +#: templates/course/course_registration.html:49 +#: templates/course/course_registration.html:112 +#: templates/course/course_registration.html:217 +#: templates/course/program_single.html:41 +#: templates/course/user_course_list.html:49 +#: templates/course/user_course_list.html:93 +#: templates/result/assessment_results.html:38 +#: templates/result/grade_results.html:38 +#: templates/result/grade_results.html:103 +msgid "Course Code" +msgstr "Код курса" +#: templates/course/course_registration.html:50 +#: templates/course/course_registration.html:113 +#: templates/course/course_registration.html:218 +#: templates/result/assessment_results.html:37 +#: templates/result/assessment_results.html:79 +#: templates/result/grade_results.html:37 +#: templates/result/grade_results.html:102 +msgid "Course Title" +msgstr "Название курса" +#: templates/course/course_registration.html:51 +#: templates/course/course_registration.html:114 +#: templates/course/course_registration.html:219 +#: templates/result/assessment_results.html:39 +#: templates/result/assessment_results.html:81 +msgid "Cr.Hr(s)" +msgstr "Кредитный час" +#: templates/course/course_registration.html:52 +#: templates/course/course_registration.html:115 +#: templates/course/course_registration.html:220 +#: templates/course/program_single.html:44 +#: templates/course/user_course_list.html:51 +#: templates/course/user_course_list.html:95 +msgid "Year" +msgstr "Год" +#: templates/course/course_registration.html:53 +#: templates/course/course_registration.html:116 +#: templates/course/course_registration.html:221 +msgid "Classification" +msgstr "Классификация" +#: templates/course/course_registration.html:54 +#: templates/course/course_registration.html:117 +#: templates/course/course_registration.html:222 +msgid "Elective Group" +msgstr "Выборная группа" +#: templates/course/course_registration.html:69 +#: templates/course/course_registration.html:132 +#: templates/course/course_registration.html:236 +msgid "Elective" +msgstr "Факультативный" +#: templates/course/course_registration.html:71 +#: templates/course/course_registration.html:134 +#: templates/course/course_registration.html:238 +msgid "Core" +msgstr "Основной" +#: templates/course/course_registration.html:83 +#: templates/course/course_registration.html:146 +#: templates/course/course_registration.html:249 +msgid "No Course." +msgstr "Нет курса." +#: templates/course/course_registration.html:97 +msgid "First semester Credit(s):" +msgstr "Кредит(ы) за первый семестр:" +#: templates/course/course_registration.html:106 +#: templates/result/assessment_results.html:74 +#: templates/result/grade_results.html:97 +msgid "Second Semester:" +msgstr "Второй семестр:" +#: templates/course/course_registration.html:160 +msgid "Second semester credit(s):" +msgstr "Кредит(ы) за второй семестр:" +#: templates/course/course_registration.html:165 +msgid "Registerd course credit(s):" +msgstr "Зарегистрированные кредиты курса):" +#: templates/course/course_registration.html:170 +#: templates/course/course_registration.html:263 +msgid "Total credit(s):" +msgstr "Общий кредит(ы):" +#: templates/course/course_registration.html:186 +msgid "Print Registration Form" +msgstr "Распечатать регистрационную форму" +#: templates/course/course_registration.html:187 +msgid "Print Registerd Courses" +msgstr "Распечатать зарегистрированные курсы" +#: templates/course/course_registration.html:191 +msgid "Course Drop" +msgstr "Сброс курса" +#: templates/course/course_registration.html:201 +msgid "Drop Selected" +msgstr "Удалить выбранное" +#: templates/course/course_single.html:22 +msgid "Edit course" +msgstr "Изменить курс" +#: templates/course/course_single.html:27 +msgid "Upload new file" +msgstr "Загрузить новый файл" +#: templates/course/course_single.html:30 +msgid "Upload new video" +msgstr "Загрузить новое видео" +#: templates/course/course_single.html:36 +msgid "Take a Quiz" +msgstr "Пройти тест" +#: templates/course/course_single.html:51 +msgid "Video Tutorials" +msgstr "Видеоуроки" +#: templates/course/course_single.html:57 +msgid "Video Title" +msgstr "Название видео" +#: templates/course/course_single.html:58 +#: templates/course/course_single.html:134 +msgid "Uploaded Date" +msgstr "Дата загрузки" +#: templates/course/course_single.html:59 +msgid "Get Started" +msgstr "Начать" +#: templates/course/course_single.html:79 +msgid "Play now" +msgstr "Играть сейчас" +#: templates/course/course_single.html:104 +msgid "No video Uploaded." +msgstr "Видео не загружено." +#: templates/course/course_single.html:108 +#: templates/course/course_single.html:185 +msgid "Upload now." +msgstr "Загрузите сейчас." +#: templates/course/course_single.html:127 +msgid "Documentations" +msgstr "Документация" +#: templates/course/course_single.html:133 +msgid "File name" +msgstr "Имя файла" +#: templates/course/course_single.html:135 +msgid "Updated Date" +msgstr "Дата обновления" +#: templates/course/course_single.html:136 +msgid "Downloads" +msgstr "Загрузки" +#: templates/course/course_single.html:156 +msgid "Download" +msgstr "Скачать" +#: templates/course/course_single.html:181 +msgid "No File Uploaded." +msgstr "Файл не загружен." +#: templates/course/course_single.html:205 +msgid "Lecturer(s)" +msgstr "Лектор(ы)" +#: templates/course/course_single.html:232 +msgid "No lecturer assigned for this course" +msgstr "Для этого курса не назначен лектор" +#: templates/course/program_add.html:13 +msgid "Program Form" +msgstr "Форма программы" +#: templates/course/program_add.html:22 +msgid "Program Add Form" +msgstr "Форма добавления программы" +#: templates/course/program_list.html:16 +msgid "Add Program" +msgstr "Добавить программу" +#: templates/course/program_list.html:20 +msgid "Program List" +msgstr "Список программ" +#: templates/course/program_list.html:32 +msgid "Program Name" +msgstr "Название программы" +#: templates/course/program_list.html:33 +msgid "Summary" +msgstr "Краткое содержание" +#: templates/course/program_list.html:69 +msgid "No program." +msgstr "Никакой программы." +#: templates/course/program_list.html:73 +msgid "Add program now." +msgstr "Добавьте программу сейчас." +#: templates/course/program_single.html:40 +#: templates/course/user_course_list.html:48 +#: templates/course/user_course_list.html:92 +msgid "Course Name" +msgstr "Название курса" +#: templates/course/program_single.html:42 +#: templates/course/user_course_list.html:50 +#: templates/course/user_course_list.html:94 +#: templates/result/grade_results.html:39 +#: templates/result/grade_results.html:104 +msgid "Cr.Hr" +msgstr "Кредитный час" +#: templates/course/program_single.html:43 +msgid "Level" +msgstr "Уровень" +#: templates/course/program_single.html:46 +#: templates/course/user_course_list.html:53 +#: templates/course/user_course_list.html:97 +msgid "Current Semester" +msgstr "Текущий семестр" +#: templates/course/program_single.html:93 +msgid "No course for this progrm." +msgstr "Нет курса по этой программе." +#: templates/course/program_single.html:97 +msgid "Add one now." +msgstr "Добавьте один сейчас." +#: templates/course/user_course_list.html:42 +msgid "Taken Courses:" +msgstr "Пройденные курсы:" +#: templates/course/user_course_list.html:54 +#: templates/course/user_course_list.html:75 +msgid "Taken" +msgstr "Взятый" +#: templates/course/user_course_list.html:86 +msgid "All Courses:" +msgstr "Все курсы:" +#: templates/invoice_detail.html:2 templates/invoices.html:1 +msgid "Invoices" +msgstr "Счета-фактуры" +#: templates/invoices.html:5 +msgid "Pay now" +msgstr "Заплатить сейчас" +#: templates/navbar.html:12 +msgid "Search All... #course, #program, #Quiz, #News, #Events" +msgstr "" +"Искать по всем... #курс, #программа, #Викторина, #Новости, #Мероприятия" +#: templates/navbar.html:42 +msgid "Setting" +msgstr "Параметр" +#: templates/navbar.html:46 +msgid "Signout" +msgstr "Выход" +#: templates/payments/charge.html:24 +msgid "Payment Succeed, You has been make payment successfuly." +msgstr "Оплата прошла успешно. Вы успешно произвели оплату." +#: templates/payments/charge.html:25 +msgid "Redirect to your dashboard in" +msgstr "Перенаправление на вашу панель управления в" +#: templates/payments/coinbase.html:3 templates/payments/coinbase.html:8 +msgid "Coinbase" +msgstr "Кинбейс" +#: templates/pdf/lecturer_list.html:46 +msgid "Address/City" +msgstr "Адрес Город" +#: templates/progress.html:4 templates/progress.html:12 +msgid "Progress Page" +msgstr "Страница прогресса" +#: templates/progress.html:5 +msgid "User Progress Page" +msgstr "Страница прогресса пользователя" +#: templates/progress.html:18 +msgid "Question Category Scores" +msgstr "Баллы по категориям вопросов" +#: templates/progress.html:25 templates/quiz/sitting_detail.html:19 +msgid "Category" +msgstr "Категория" +#: templates/progress.html:26 +msgid "Correctly answererd" +msgstr "Правильно ответил" +#: templates/progress.html:27 +msgid "Incorrect" +msgstr "Неправильный" +#: templates/progress.html:56 +msgid "Previous exam papers" +msgstr "Предыдущие экзаменационные работы" +#: templates/progress.html:58 +msgid "Below are the results of exams that you have sat." +msgstr "Ниже приведены результаты сданных вами экзаменов." +#: templates/progress.html:60 templates/quiz/sitting_list.html:29 +msgid "Total complete exams:" +msgstr "Всего полных экзаменов:" +#: templates/progress.html:67 +msgid "Quiz Title" +msgstr "Название викторины" +#: templates/progress.html:69 +msgid "Possible Score" +msgstr "Возможная оценка" +#: templates/progress.html:70 +#, python-format +msgid "Out of 100%%" +msgstr "Из 100%%" +#: templates/progress.html:94 +msgid "No recordes yet. Try to do some quizzes in your course." +msgstr "" +"Записей пока нет. Попробуйте выполнить несколько тестов в рамках вашего " +"курса." +#: templates/question.html:28 templates/result.html:38 +msgid "The previous question" +msgstr "Предыдущий вопрос" +#: templates/question.html:37 +msgid "Your answer was" +msgstr "Ваш ответ был" +#: templates/question.html:85 templates/result.html:85 +msgid "No explanation set to this question." +msgstr "Никакого объяснения этому вопросу не задано." +#: templates/question.html:108 +msgid "Quiz instractions" +msgstr "Инструкция по викторине" +#: templates/question.html:116 +msgid "Understood" +msgstr "Понял" +#: templates/question.html:125 +msgid "of" +msgstr "из" +#: templates/question.html:130 +msgid "Quiz category" +msgstr "Категория викторины" +#: templates/question.html:157 +msgid "Previous" +msgstr "Предыдущий" +#: templates/quiz/mcquestion_form.html:14 +msgid "MC Question Form" +msgstr "Форма вопроса MC" +#: templates/quiz/mcquestion_form.html:18 +msgid "Add questions" +msgstr "Добавить вопросы" +#: templates/quiz/mcquestion_form.html:22 +msgid "question added" +msgstr "вопрос добавлен" +#: templates/quiz/mcquestion_form.html:25 +msgid "Correct the error(s) below." +msgstr "Исправьте ошибки ниже." +#: templates/quiz/quiz_form.html:14 +msgid "Quiz Form" +msgstr "Форма викторины" +#: templates/quiz/quiz_form.html:18 +msgid "Quiz form for" +msgstr "Форма викторины для" +#: templates/quiz/quiz_form.html:55 +msgid "Hold down" +msgstr "Удерживайте" +#: templates/quiz/quiz_form.html:55 +msgid "or" +msgstr "или" +#: templates/quiz/quiz_form.html:55 +msgid "on a Mac, to select more than one." +msgstr "на Mac, чтобы выбрать более одного." +#: templates/quiz/quiz_form.html:66 +msgid "Continue" +msgstr "Продолжать" +#: templates/quiz/quiz_list.html:22 +msgid "Add Quiz" +msgstr "Добавить тест" +#: templates/quiz/quiz_list.html:54 +msgid "You will only get one attempt at this quiz" +msgstr "У вас будет только одна попытка пройти этот тест" +#: templates/quiz/quiz_list.html:58 +msgid "Start quiz" +msgstr "Начать тест" +#: templates/quiz/sitting_detail.html:4 +msgid "Result of" +msgstr "Результат" +#: templates/quiz/sitting_detail.html:4 templates/search/search_view.html:43 +msgid "for" +msgstr "для" +#: templates/quiz/sitting_detail.html:12 +msgid "Completed Exams" +msgstr "Завершенные экзамены" +#: templates/quiz/sitting_detail.html:13 +msgid "Marking" +msgstr "Маркировка" +#: templates/quiz/sitting_detail.html:18 templates/result.html:99 +msgid "Quiz title" +msgstr "Название викторины" +#: templates/quiz/sitting_detail.html:25 templates/quiz/sitting_list.html:38 +msgid "Completed" +msgstr "Завершенный" +#: templates/quiz/sitting_detail.html:35 +msgid "User answer" +msgstr "Ответ пользователя" +#: templates/quiz/sitting_detail.html:54 +msgid "incorrect" +msgstr "неправильный" +#: templates/quiz/sitting_detail.html:62 +msgid "Toggle whether correct" +msgstr "Переключить, правильно ли" +#: templates/quiz/sitting_list.html:3 +msgid "All Quizzes" +msgstr "Все викторины" +#: templates/quiz/sitting_list.html:16 +msgid "List of complete exams" +msgstr "Список полных экзаменов" +#: templates/quiz/sitting_list.html:24 templates/snippets/filter_form.html:12 +msgid "Filter" +msgstr "Фильтр" +#: templates/quiz/sitting_list.html:54 +msgid "View details" +msgstr "Посмотреть детали" +#: templates/quiz/sitting_list.html:63 +msgid "No completed exams for you" +msgstr "Никаких сданных экзаменов для вас" +#: templates/registration/login.html:3 +msgid "Dj Learning Management System - Login" +msgstr "Система управления обучением диджеев - Войти" +#: templates/registration/login.html:11 +msgid "Sign in" +msgstr "Войти" +#: templates/registration/login.html:16 +msgid "ID Number" +msgstr "Идентификационный номер" +#: templates/registration/login.html:21 +msgid "Password" +msgstr "Пароль" +#: templates/registration/login.html:25 +#: templates/registration/register.html:73 +msgid "Invalid ID & Password." +msgstr "Неверный идентификатор и пароль." +#: templates/registration/login.html:28 +msgid "SIGN IN" +msgstr "ВОЙТИ" +#: templates/registration/login.html:32 +msgid "Forgot password ?" +msgstr "Забыли пароль ?" +#: templates/registration/password_reset.html:3 +msgid "Password Reset | Learning management system" +msgstr "Сброс пароля | Система управления обучением" +#: templates/registration/password_reset.html:7 +msgid "Password Reset" +msgstr "Восстановление пароля" +#: templates/registration/password_reset.html:17 +msgid "Request Password Reset" +msgstr "Запросить сброс пароля" +#: templates/registration/password_reset_complete.html:3 +msgid "Password Reset Complete | Learning management system" +msgstr "Сброс пароля завершен | Система управления обучением" +#: templates/registration/password_reset_complete.html:8 +msgid "Password Reset Complete" +msgstr "Сброс пароля завершен" +#: templates/registration/password_reset_complete.html:11 +msgid "Your password has been set, you are now able to Log In!" +msgstr "Ваш пароль установлен, теперь вы можете войти в систему!" +#: templates/registration/password_reset_complete.html:13 +msgid "Sign In Here" +msgstr "Войдите здесь" +#: templates/registration/password_reset_confirm.html:22 +msgid "Confirm New Password" +msgstr "Подтвердите новый пароль" +#: templates/registration/password_reset_confirm.html:31 +msgid "Reset Password" +msgstr "Сброс пароля" +#: templates/registration/password_reset_done.html:3 +msgid "Email Sent | Learning management system" +msgstr "Письмо отправлено | Система управления обучением" +#: templates/registration/password_reset_done.html:8 +msgid "Email sent" +msgstr "Письмо отправлено" +#: templates/registration/password_reset_done.html:14 +msgid "Back To Login" +msgstr "Вернуться на страницу авторизации" +#: templates/registration/register.html:3 +msgid "Register | Learning management system" +msgstr "Зарегистрироваться | Система управления обучением" +#: templates/registration/register.html:12 +msgid "Create Your Account" +msgstr "Создать аккаунт" +#: templates/registration/register.html:20 +msgid "Login Form" +msgstr "Форма входа" +#: templates/registration/register.html:76 +msgid "SIGN UP" +msgstr "ЗАРЕГИСТРИРОВАТЬСЯ" +#: templates/registration/register.html:79 +msgid "Already Registered ?" +msgstr "Уже зарегистрирован ?" +#: templates/registration/register.html:79 +msgid "Login" +msgstr "Авторизоваться" +#: templates/result.html:8 +msgid "Quiz Results for" +msgstr "Результаты викторины для" +#: templates/result.html:20 templates/result/assessment_results.html:29 +#: templates/result/grade_results.html:29 +msgid "Result" +msgstr "Результат" +#: templates/result.html:26 +msgid "Calculating your result..." +msgstr "Подсчитаем результат..." +#: templates/result.html:96 +msgid "Quiz result" +msgstr "Результат викторины" +#: templates/result.html:103 +msgid "You answered" +msgstr "Ты ответил" +#: templates/result.html:103 +msgid "questions correctly out of" +msgstr "вопросы правильно из" +#: templates/result.html:103 +msgid "giving you" +msgstr "давая тебе" +#: templates/result.html:103 +#, python-format +msgid "%% correct" +msgstr "%% правильный" +#: templates/result.html:117 +msgid "Review the questions below and try the quiz again in the future" +msgstr "" +"Просмотрите приведенные ниже вопросы и попробуйте пройти тест еще раз в " +"будущем." +#: templates/result.html:119 +msgid "The result of this quiz will be stored in your progress section" +msgstr "Результат этого теста будет сохранен в разделе вашего прогресса." +#: templates/result.html:121 +msgid "so you can review and monitor your progression" +msgstr "чтобы вы могли просматривать и отслеживать свой прогресс" +#: templates/result.html:134 +msgid "Your session score is" +msgstr "Ваш балл за сессию" +#: templates/result.html:134 +msgid "out of a possible" +msgstr "из возможного" +#: templates/result.html:157 +msgid "No explanation set for this question." +msgstr "Для этого вопроса не установлено никаких объяснений." +#: templates/result.html:164 +msgid "Your answer" +msgstr "Ваш ответ" +#: templates/result/add_score.html:29 +msgid "Select Your Course Here" +msgstr "Выберите свой курс здесь" +#: templates/result/add_score.html:35 templates/result/add_score_for.html:24 +msgid "No course." +msgstr "Нет курса." +#: templates/result/add_score.html:39 +msgid "To manage scores, please select the course using the button above." +msgstr "Чтобы управлять баллами, выберите курс, используя кнопку выше." +#: templates/result/add_score_for.html:30 +msgid "Students result form" +msgstr "Форма результатов учащихся" +#: templates/result/add_score_for.html:41 +msgid "Grade report" +msgstr "Отчет об оценках" +#: templates/result/add_score_for.html:54 +#: templates/result/assessment_results.html:41 +#: templates/result/assessment_results.html:83 +msgid "Mid exam" +msgstr "Середина экзамена" +#: templates/result/add_score_for.html:56 +#: templates/result/assessment_results.html:43 +#: templates/result/assessment_results.html:85 +msgid "Attendance" +msgstr "Посещаемость" +#: templates/result/add_score_for.html:57 +#: templates/result/assessment_results.html:44 +#: templates/result/assessment_results.html:86 +msgid "Final exam" +msgstr "Итоговый экзамен" +#: templates/result/add_score_for.html:58 +#: templates/result/assessment_results.html:45 +#: templates/result/assessment_results.html:87 +msgid "Total" +msgstr "Общий" +#: templates/result/add_score_for.html:59 +msgid "Point" +msgstr "Точка" +#: templates/result/add_score_for.html:60 +#: templates/result/grade_results.html:40 +msgid "Grade" +msgstr "Оценка" +#: templates/result/add_score_for.html:61 +#: templates/result/grade_results.html:42 +#: templates/result/grade_results.html:107 +msgid "Comment" +msgstr "Комментарий" +#: templates/result/grade_results.html:41 +#: templates/result/grade_results.html:106 +msgid "Points" +msgstr "Точки" +#: templates/result/grade_results.html:58 +#: templates/result/grade_results.html:123 +msgid "PASS" +msgstr "ПРОХОДИТЬ" +#: templates/result/grade_results.html:60 +#: templates/result/grade_results.html:125 +msgid "FAIL" +msgstr "НЕУДАЧА" +#: templates/result/grade_results.html:79 +msgid "Total first semester credit:" +msgstr "Общий кредит за первый семестр:" +#: templates/result/grade_results.html:88 +#: templates/result/grade_results.html:177 +msgid "First Semester GPA:" +msgstr "Средний балл за первый семестр:" +#: templates/result/grade_results.html:105 +msgid "GRADE" +msgstr "ОЦЕНКА" +#: templates/result/grade_results.html:139 +msgid "Total second semester credit:" +msgstr "Общий кредит за второй семестр:" +#: templates/result/grade_results.html:144 +msgid "Total Credit:" +msgstr "Общий кредит:" +#: templates/result/grade_results.html:153 +#: templates/result/grade_results.html:184 +msgid "Second Semester GPA:" +msgstr "Средний балл за второй семестр:" +#: templates/result/grade_results.html:162 +#: templates/result/grade_results.html:192 +msgid "Previous CGPA:" +msgstr "Предыдущий CGPA:" +#: templates/search/search_view.html:3 +msgid "Search result for" +msgstr "Результат поиска для" +#: templates/search/search_view.html:12 +msgid "Search" +msgstr "Поиск" +#: templates/search/search_view.html:43 +msgid "result" +msgstr "результат" +#: templates/search/search_view.html:62 +msgid "Program of" +msgstr "Программа" +#: templates/search/search_view.html:69 templates/search/search_view.html:126 +msgid "News And Events" +msgstr "Новости и события" +#: templates/search/search_view.html:72 +msgid "Date:" +msgstr "Дата:" +#: templates/search/search_view.html:82 +msgid "quiz" +msgstr "контрольный опрос" +#: templates/search/search_view.html:82 +msgid "Course:" +msgstr "Курс:" +#: templates/search/search_view.html:122 +msgid "Search by:" +msgstr "Искать по:" +#: templates/search/search_view.html:124 +msgid "Title or Description" +msgstr "Название или описание" +#: templates/search/search_view.html:125 +msgid "Title, Code or Description" +msgstr "Название, код или описание" +#: templates/search/search_view.html:127 +msgid "Title, Description or Category(practice, assignment and exam)" +msgstr "Должность, описание или категория (практика, задание и экзамен)" +#: templates/setting/admin_panel.html:37 templates/setting/admin_panel.html:42 +#: templates/setting/admin_panel.html:47 templates/setting/admin_panel.html:52 +#: templates/setting/admin_panel.html:70 templates/setting/admin_panel.html:75 +#: templates/setting/admin_panel.html:80 +msgid "Manage" +msgstr "Управлять" +#: templates/setting/admin_panel.html:43 +msgid "students" +msgstr "студенты" +#: templates/setting/admin_panel.html:48 +msgid "sessions" +msgstr "сессии" +#: templates/setting/admin_panel.html:53 +msgid "semesters" +msgstr "семестры" +#: templates/setting/admin_panel.html:64 +msgid "Switch" +msgstr "Выключатель" +#: templates/setting/admin_panel.html:71 +msgid "programs" +msgstr "программы" +#: templates/setting/admin_panel.html:76 +msgid "course allocations" +msgstr "распределение курсов" +#: templates/setting/password_change.html:12 +msgid "Password Change" +msgstr "Изменение пароля" +#: templates/setting/profile_info_change.html:12 +msgid "Account setting" +msgstr "Настройки аккаунта" +#: templates/setting/profile_info_change.html:16 +msgid "Account Settings" +msgstr "Настройки учетной записи" +#: templates/setting/profile_info_change.html:44 +msgid "Update Profile" +msgstr "Обновить профиль" +#: templates/upload/upload_file_form.html:14 +msgid "File upload" +msgstr "Файл загружен" +#: templates/upload/upload_file_form.html:18 +msgid "File upload for" +msgstr "Загрузка файла для" +#: templates/upload/upload_file_form.html:26 +msgid "File Upload Form" +msgstr "Форма загрузки файла" +#: templates/upload/upload_file_form.html:33 +#: templates/upload/upload_video_form.html:32 +msgid "Upload" +msgstr "Загрузить" +#: templates/upload/upload_video_form.html:14 +msgid "Video upload" +msgstr "Загрузка видео" +#: templates/upload/upload_video_form.html:18 +msgid "Video upload for" +msgstr "Загрузка видео для" +#: templates/upload/upload_video_form.html:26 +msgid "Video Upload Form" +msgstr "Форма загрузки видео" +#: templates/upload/video_single.html:35 +msgid "No video description set." +msgstr "Описание видео не задано." diff --git a/locale/ru/LC_MESSAGES/djangojs.po b/locale/ru/LC_MESSAGES/djangojs.po new file mode 100644 index 0000000..0db5980 --- /dev/null +++ b/locale/ru/LC_MESSAGES/djangojs.po @@ -0,0 +1,114 @@ + +msgid "" +msgstr "" +"Project-Id-Version:PACKAGE VERSION" +"Report-Msgid-Bugs-To:" +"POT-Creation-Date:2024-04-15 19:36+0600" +"PO-Revision-Date:YEAR-MO-DA HO:MI+ZONE" +"Last-Translator:FULL NAME " +"Language-Team:LANGUAGE " +"Language:" +"MIME-Version:1.0" +"Content-Type:text/plain; charset=UTF-8" +"Content-Transfer-Encoding:8bit" +"Plural-Forms:nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);" + +#: static/js/dashboard.js:8 +msgid "January" +msgstr "Январь" +#: static/js/dashboard.js:9 +msgid "February" +msgstr "Февраль" +#: static/js/dashboard.js:10 +msgid "March" +msgstr "Март" +#: static/js/dashboard.js:11 +msgid "April" +msgstr "Апрель" +#: static/js/dashboard.js:12 +msgid "May" +msgstr "Май" +#: static/js/dashboard.js:13 +msgid "June" +msgstr "Июнь" +#: static/js/dashboard.js:18 +msgid "Students" +msgstr "Студенты" +#: static/js/dashboard.js:24 +msgid "Teachers" +msgstr "Учителя" +#: static/js/dashboard.js:30 +msgid "Admins" +msgstr "Админы" +#: static/js/dashboard.js:36 +msgid "Stuffs" +msgstr "Вещи" +#: static/js/dashboard.js:52 +msgid "Website Traffic" +msgstr "Трафик веб-сайта" +#: static/js/dashboard.js:71 +msgid "Comp.S" +msgstr "Информатика" +#: static/js/dashboard.js:77 +msgid "Architecture" +msgstr "Архитектура" +#: static/js/dashboard.js:83 +msgid "Civil Eng" +msgstr "Гражданское инженерство" +#: static/js/dashboard.js:89 +msgid "Accounting" +msgstr "Бухгалтерский учет" +#: static/js/dashboard.js:95 +msgid "Business M." +msgstr "Бизнес М." +#: static/js/dashboard.js:111 +msgid "Enrollment per course" +msgstr "Запись на курс" +#: static/js/dashboard.js:129 +msgid "Comp sci." +msgstr "Компьютерная наука." +#: static/js/dashboard.js:135 +msgid "Civil eng." +msgstr "Гражданский инженерство." +#: static/js/dashboard.js:141 +msgid "Architect." +msgstr "Архитектор." +#: static/js/dashboard.js:147 +msgid "Economics" +msgstr "Экономика" +#: static/js/dashboard.js:163 +msgid "Students average grade (performance)" +msgstr "Средняя оценка учащихся (успеваемость)" +#: static/js/dashboard.js:172 +msgid "Man" +msgstr "Мужчина" +#: static/js/dashboard.js:173 +msgid "Women" +msgstr "Женщины" +#: static/js/dashboard.js:176 +msgid "Students Gender Dataset" +msgstr "Набор гендерных данных студентов" +#: static/js/dashboard.js:194 +msgid "Students Gender" +msgstr "Пол студентов" +#: static/js/dashboard.js:203 static/js/dashboard.js:235 +msgid "PHD" +msgstr "КАНДИДАТ НАУК" +#: static/js/dashboard.js:204 static/js/dashboard.js:236 +msgid "Masters" +msgstr "Магистр" +#: static/js/dashboard.js:205 static/js/dashboard.js:237 +msgid "BSc degree" +msgstr "Степень бакалавра" +#: static/js/dashboard.js:208 +msgid "Lecturer Qualifications Dataset" +msgstr "Набор данных о квалификациях преподавателей" +#: static/js/dashboard.js:226 +msgid "Lecturer qualifications" +msgstr "Квалификация преподавателя" +#: static/js/dashboard.js:240 +msgid "Students level" +msgstr "Уровень студентов" +#: static/js/dashboard.js:258 +msgid "Student levels" +msgstr "Уровни студентов" diff --git a/quiz/admin.py b/quiz/admin.py index 15f62ba..9243702 100644 --- a/quiz/admin.py +++ b/quiz/admin.py @@ -2,6 +2,8 @@ from django import forms from django.contrib import admin from django.contrib.admin.widgets import FilteredSelectMultiple from django.utils.translation import gettext_lazy as _ +from modeltranslation.admin import TranslationAdmin +from modeltranslation.forms import TranslationModelForm from .models import ( Quiz, @@ -18,7 +20,7 @@ class ChoiceInline(admin.TabularInline): model = Choice -class QuizAdminForm(forms.ModelForm): +class QuizAdminForm(TranslationModelForm): class Meta: model = Quiz exclude = [] @@ -45,9 +47,9 @@ class QuizAdminForm(forms.ModelForm): return quiz -class QuizAdmin(admin.ModelAdmin): +class QuizAdmin(TranslationAdmin): form = QuizAdminForm - + fields = ('title', 'description',) list_display = ("title",) # list_filter = ('category',) search_fields = ( @@ -56,10 +58,10 @@ class QuizAdmin(admin.ModelAdmin): ) -class MCQuestionAdmin(admin.ModelAdmin): +class MCQuestionAdmin(TranslationAdmin): list_display = ("content",) # list_filter = ('category',) - fields = ("content", "figure", "quiz", "explanation", "choice_order") + fieldsets = [(u'figure' 'quiz' 'choice_order', {'fields': ("content","explanation")})] search_fields = ("content", "explanation") filter_horizontal = ("quiz",) diff --git a/quiz/migrations/0005_choice_choice_en_choice_choice_ru_and_more.py b/quiz/migrations/0005_choice_choice_en_choice_choice_ru_and_more.py new file mode 100644 index 0000000..366b9d7 --- /dev/null +++ b/quiz/migrations/0005_choice_choice_en_choice_choice_ru_and_more.py @@ -0,0 +1,63 @@ +# Generated by Django 4.0.8 on 2024-04-15 13:36 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('quiz', '0004_alter_question_figure_alter_quiz_description'), + ] + + operations = [ + migrations.AddField( + model_name='choice', + name='choice_en', + field=models.CharField(help_text='Enter the choice text that you want displayed', max_length=1000, null=True, verbose_name='Content'), + ), + migrations.AddField( + model_name='choice', + name='choice_ru', + field=models.CharField(help_text='Enter the choice text that you want displayed', max_length=1000, null=True, verbose_name='Content'), + ), + migrations.AddField( + model_name='question', + name='content_en', + field=models.CharField(help_text='Enter the question text that you want displayed', max_length=1000, null=True, verbose_name='Question'), + ), + migrations.AddField( + model_name='question', + name='content_ru', + field=models.CharField(help_text='Enter the question text that you want displayed', max_length=1000, null=True, verbose_name='Question'), + ), + migrations.AddField( + model_name='question', + name='explanation_en', + field=models.TextField(blank=True, help_text='Explanation to be shown after the question has been answered.', max_length=2000, null=True, verbose_name='Explanation'), + ), + migrations.AddField( + model_name='question', + name='explanation_ru', + field=models.TextField(blank=True, help_text='Explanation to be shown after the question has been answered.', max_length=2000, null=True, verbose_name='Explanation'), + ), + migrations.AddField( + model_name='quiz', + name='description_en', + field=models.TextField(blank=True, help_text='A detailed description of the quiz', null=True, verbose_name='Description'), + ), + migrations.AddField( + model_name='quiz', + name='description_ru', + field=models.TextField(blank=True, help_text='A detailed description of the quiz', null=True, verbose_name='Description'), + ), + migrations.AddField( + model_name='quiz', + name='title_en', + field=models.CharField(max_length=60, null=True, verbose_name='Title'), + ), + migrations.AddField( + model_name='quiz', + name='title_ru', + field=models.CharField(max_length=60, null=True, verbose_name='Title'), + ), + ] diff --git a/quiz/models.py b/quiz/models.py index 5f00ea4..0423d17 100644 --- a/quiz/models.py +++ b/quiz/models.py @@ -245,7 +245,7 @@ class SittingManager(models.Manager): if len(question_set) == 0: raise ImproperlyConfigured( - "Question set of the quiz is empty. Please configure questions properly" + _("Question set of the quiz is empty. Please configure questions properly") ) # if quiz.max_questions and quiz.max_questions < len(question_set): @@ -401,9 +401,9 @@ class Sitting(models.Model): @property def result_message(self): if self.check_if_passed: - return f"You have passed this quiz, congratulation" + return _(f"You have passed this quiz, congratulation") else: - return f"You failed this quiz, give it one chance again." + return _(f"You failed this quiz, give it one chance again.") def add_user_answer(self, question, guess): current = json.loads(self.user_answers) diff --git a/quiz/translation.py b/quiz/translation.py new file mode 100644 index 0000000..de6a8e4 --- /dev/null +++ b/quiz/translation.py @@ -0,0 +1,21 @@ +from modeltranslation.translator import register, TranslationOptions +from .models import Quiz, Question, Choice, MCQuestion + +@register(Quiz) +class QuizTranslationOptions(TranslationOptions): + fields = ('title', 'description',) + empty_values=None + +@register(Question) +class QuestionTranslationOptions(TranslationOptions): + fields = ('content', 'explanation',) + empty_values=None + +@register(Choice) +class ChoiceTranslationOptions(TranslationOptions): + fields = ('choice',) + empty_values=None + +@register(MCQuestion) +class MCQuestionTranslationOptions(TranslationOptions): + pass \ No newline at end of file diff --git a/requirements/base.txt b/requirements/base.txt index 4aec2f0..f854a37 100644 --- a/requirements/base.txt +++ b/requirements/base.txt @@ -9,6 +9,7 @@ django-model-utils==4.3.1 # https://github.com/jazzband/django-model-utils django-crispy-forms==1.14.0 # https://github.com/django-crispy-forms/django-crispy-forms crispy-bootstrap5==0.7 # https://github.com/django-crispy-forms/crispy-bootstrap5 django-filter==23.5 # https://github.com/carltongibson/django-filter +django-modeltranslation==0.18.11 # https://github.com/Buren/django-modeltranslation # Django REST Framework djangorestframework==3.14.0 # https://github.com/encode/django-rest-framework diff --git a/static/js/dashboard.js b/static/js/dashboard.js new file mode 100644 index 0000000..bc0dafb --- /dev/null +++ b/static/js/dashboard.js @@ -0,0 +1,264 @@ +const malesCount = {{ males_count }} +const femalesCount = {{ females_count }} + +$(document).ready(function () { + + // Setup + const labels = [ + gettext('January'), + gettext('February'), + gettext('March'), + gettext('April'), + gettext('May'), + gettext('June'), + ]; + const data = { + labels: labels, + datasets: [{ + label: gettext('Students'), + backgroundColor: 'rgba(86, 224, 224, 0.5)', + borderColor: 'rgb(86, 224, 224)', + hoverBorderWidth: 3, + data: [0, 10, 5, 2, 20, 30, 45] + }, { + label: gettext('Teachers'), + backgroundColor: 'rgba(253, 174, 28, 0.5)', + borderColor: 'rgb(253, 174, 28)', + hoverBorderWidth: 3, + data: [20, 0, 15, 4, 6, 4, 60], + }, { + label: gettext('Admins'), + backgroundColor: 'rgba(203, 31, 255, 0.5)', + borderColor: 'rgb(203, 31, 255)', + hoverBorderWidth: 3, + data: [85, 30, 34, 20, 20, 55, 45], + }, { + label: gettext('Stuffs'), + backgroundColor: 'rgba(255, 19, 157, 0.5)', + borderColor: 'rgb(255, 19, 157)', + hoverBorderWidth: 3, + data: [45, 75, 70, 80, 20, 30, 90], + }] + }; + + var traffic = document.getElementById('traffic'); + var chart = new Chart(traffic, { + type: 'line', + data: data, + options: { + plugins: { + title: { + display: true, + text: gettext('Website Traffic'), + padding: 15 + } + } + } + }); + + // Setup + const labelsEnrollment = [ + '2016', + '2017', + '2018', + '2019', + '2020', + '2021', + ]; + const dataEnrollment = { + labels: labelsEnrollment, + datasets: [{ + label: gettext('Comp.S'), + backgroundColor: 'rgba(86, 224, 224, 0.5)', + borderColor: 'rgb(86, 224, 224)', + hoverBorderWidth: 3, + data: [0, 10, 5, 2, 20, 30, 45] + }, { + label: gettext('Architecture'), + backgroundColor: 'rgba(253, 174, 28, 0.5)', + borderColor: 'rgb(253, 174, 28)', + hoverBorderWidth: 3, + data: [20, 0, 15, 4, 6, 4, 60], + }, { + label: gettext('Civil Eng'), + backgroundColor: 'rgba(203, 31, 255, 0.5)', + borderColor: 'rgb(203, 31, 255)', + hoverBorderWidth: 3, + data: [85, 30, 34, 20, 20, 55, 45], + }, { + label: gettext('Accounting'), + backgroundColor: 'rgba(255, 19, 157, 0.5)', + borderColor: 'rgb(255, 19, 157)', + hoverBorderWidth: 3, + data: [45, 75, 70, 80, 20, 30, 90], + }, { + label: gettext('Business M.'), + backgroundColor: 'rgba(0, 0, 0, 0.5)', + borderColor: 'rgb(0, 0, 0)', + hoverBorderWidth: 3, + data: [15, 75, 45, 90, 60, 30, 90], + }] + }; + + var enrollement = document.getElementById('enrollement'); + var chart = new Chart(enrollement, { + type: 'bar', + data: dataEnrollment, + options: { + plugins: { + title: { + display: true, + text: gettext('Enrollment per course'), + padding: 20 + } + } + } + }); + + // Average grade setup + const labelsGrade = [ + '2017', + '2018', + '2019', + '2020', + '2022', + ]; + const dataGrade = { + labels: labelsGrade, + datasets: [{ + label: gettext("Comp sci."), + backgroundColor: 'rgba(86, 224, 224, 0.5)', + borderColor: 'rgb(86, 224, 224)', + hoverBorderWidth: 3, + data: [0, 10, 5, 2, 20, 30, 45] + }, { + label: gettext("Civil eng."), + backgroundColor: 'rgba(253, 174, 28, 0.5)', + borderColor: 'rgb(253, 174, 28)', + hoverBorderWidth: 3, + data: [20, 0, 15, 4, 6, 4, 60], + }, { + label: gettext("Architect."), + backgroundColor: 'rgba(203, 31, 255, 0.5)', + borderColor: 'rgb(203, 31, 255)', + hoverBorderWidth: 3, + data: [85, 30, 34, 20, 20, 55, 45], + }, { + label: gettext("Economics"), + backgroundColor: 'rgba(255, 19, 157, 0.5)', + borderColor: 'rgb(255, 19, 157)', + hoverBorderWidth: 3, + data: [45, 75, 70, 80, 20, 30, 90], + }] + }; + + var students_grade = document.getElementById('students_grade'); + var chart = new Chart(students_grade, { + type: 'bar', + data: dataGrade, + options: { + plugins: { + title: { + display: true, + text: gettext('Students average grade (performance)'), + padding: 20 + } + } + } + }); + + const dataGender = { + labels: [ + gettext('Man'), + gettext('Women') + ], + datasets: [{ + label: gettext("Students Gender Dataset"), + data: [malesCount, femalesCount], + backgroundColor: [ + 'rgb(255, 99, 132)', + 'rgb(54, 162, 235)' + ], + hoverOffset: 4 + }] + }; + + var gender = document.getElementById('gender'); + var chart = new Chart(gender, { + type: 'pie', + data: dataGender, + options: { + plugins: { + title: { + display: true, + text: gettext('Students Gender'), + padding: 20 + } + } + } + }); + + const dataQualification = { + labels: [ + gettext('PHD'), + gettext('Masters'), + gettext('BSc degree') + ], + datasets: [{ + label: gettext("Lecturer Qualifications Dataset"), + data: [24, 30, 26], + backgroundColor: [ + 'rgb(255, 99, 132)', + 'rgb(255, 193, 7)', + 'rgb(54, 162, 235)' + ], + hoverOffset: 4 + }] + }; + var ethnicity = document.getElementById('ethnicity'); + var chart = new Chart(ethnicity, { + type: 'pie', + data: dataQualification, + options: { + plugins: { + title: { + display: true, + text: gettext('Lecturer qualifications'), + padding: 20 + } + } + } + }); + + const dataLevels = { + labels: [ + gettext('PHD'), + gettext('Masters'), + gettext('BSc degree') + ], + datasets: [{ + label: gettext("Students level"), + data: [14, 30, 56], + backgroundColor: [ + 'rgb(255, 99, 132)', + 'rgb(255, 193, 7)', + 'rgb(54, 162, 235)' + ], + hoverOffset: 4 + }] + }; + var language = document.getElementById('language'); + var chart = new Chart(language, { + type: 'pie', + data: dataLevels, + options: { + plugins: { + title: { + display: true, + text: gettext('Student levels'), + padding: 20 + } + } + } + }); +}) diff --git a/templates/400.html b/templates/400.html index dfcb0be..da32268 100644 --- a/templates/400.html +++ b/templates/400.html @@ -1,9 +1,9 @@ {% extends 'error_handler_base.html' %} - +{% load i18n %} {% block content %}
-

Bad request

-

Please make sure the form is correctly filled.

- ← Return to the app +

{% trans 'Bad request' %}

+

{% trans 'Please make sure the form is correctly filled.' %}

+ ← {% trans 'Return to the app' %}
{% endblock %} diff --git a/templates/403.html b/templates/403.html index e7087c7..24989f2 100644 --- a/templates/403.html +++ b/templates/403.html @@ -1,9 +1,9 @@ {% extends 'error_handler_base.html' %} - +{% load i18n %} {% block content %}
-

403, forbidden

-

You need the proper permission to make that request.

- ← Return to the app +

403, {% trans 'forbidden' %}

+

{% trans 'You need the proper permission to make that request.' %}

+ ← {% trans 'Return to the app' %}
{% endblock %} diff --git a/templates/404.html b/templates/404.html index f724f19..4d18a93 100644 --- a/templates/404.html +++ b/templates/404.html @@ -1,9 +1,9 @@ {% extends 'error_handler_base.html' %} - +{% load i18n %} {% block content %}

404

-

Looks like the page you're looking for is does not exist.

- ← Return to the app +

{% trans 'Looks like the page you're looking for is does not exist.' %}

+ ← {% trans 'Return to the app' %}
{% endblock %} diff --git a/templates/500.html b/templates/500.html index f7d2b28..87244e8 100644 --- a/templates/500.html +++ b/templates/500.html @@ -1,9 +1,9 @@ {% extends 'error_handler_base.html' %} - +{% load i18n %} {% block content %}
-

Server error

-

Please try again later.

- ← Return to the app +

{% trans 'Server error' }%

+

{% trans 'Please try again later.' %}

+ ← {% trans 'Return to the app' %}
{% endblock %} diff --git a/templates/accounts/add_staff.html b/templates/accounts/add_staff.html index 57d26cf..3b0f670 100644 --- a/templates/accounts/add_staff.html +++ b/templates/accounts/add_staff.html @@ -1,5 +1,6 @@ {% extends 'base.html' %} -{% block title %}{{ title }} | Learning management system{% endblock title %} +{% load i18n %} +{% block title %}{{ title }} | {% trans 'Learning management system' %}{% endblock title %} {% load crispy_forms_tags %} {% load static %} @@ -7,13 +8,13 @@ -

Lecturer Add Form

+

{% trans 'Lecturer Add Form' %}

{% include 'snippets/messages.html' %} @@ -22,7 +23,7 @@
-

Personal Info

+

{% trans 'Personal Info' %}

{{ form.first_name|as_crispy_field }} {{ form.last_name|as_crispy_field }} @@ -33,7 +34,7 @@
- + {% endblock content %} diff --git a/templates/accounts/add_student.html b/templates/accounts/add_student.html index d39ea12..e430b2b 100644 --- a/templates/accounts/add_student.html +++ b/templates/accounts/add_student.html @@ -1,19 +1,21 @@ {% extends 'base.html' %} -{% block title %}{{ title }} | Learning management system{% endblock title %} +{% load i18n %} +{% block title %}{{ title }} | {% trans 'Learning management system' %}{% endblock title %} {% load crispy_forms_tags %} {% load static %} + {% block content %} -

Student Add Form

+

{% trans 'Student Add Form' %}

{% include 'snippets/messages.html' %} @@ -22,7 +24,7 @@
-

Personal Info

+

{% trans 'Personal Info' %}

{{ form.first_name|as_crispy_field }} {{ form.last_name|as_crispy_field }} @@ -35,7 +37,7 @@
-

Others

+

{% trans 'Others' %}

{{ form.program|as_crispy_field }} {{ form.level|as_crispy_field }} @@ -44,7 +46,7 @@
- + {% endblock content %} diff --git a/templates/accounts/edit_lecturer.html b/templates/accounts/edit_lecturer.html index ed22828..3f232a7 100644 --- a/templates/accounts/edit_lecturer.html +++ b/templates/accounts/edit_lecturer.html @@ -1,5 +1,6 @@ {% extends 'base.html' %} -{% block title %}{{ title }} | Learning management system{% endblock title %} +{% load i18n %} +{% block title %}{{ title }} | {% trans 'Learning management system' %}{% endblock title %} {% load crispy_forms_tags %} {% load static %} @@ -7,13 +8,13 @@ -
Lecturer Update Form
+
{% trans 'Lecturer Update Form' %}


@@ -23,7 +24,7 @@
-

Email & Personal Info

+

{% trans 'Email' %} & {% trans 'Personal Info' %}

{{ form.email|as_crispy_field }} {{ form.first_name|as_crispy_field }} @@ -35,13 +36,13 @@
-

Others

+

{% trans 'Others' %}

{{ form.picture|as_crispy_field }}
- + {% endblock content %} diff --git a/templates/accounts/edit_student.html b/templates/accounts/edit_student.html index 8a56495..f39c2b8 100644 --- a/templates/accounts/edit_student.html +++ b/templates/accounts/edit_student.html @@ -1,5 +1,6 @@ {% extends 'base.html' %} -{% block title %}{{ title }} | Learning management system{% endblock title %} +{% load i18n %} +{% block title %}{{ title }} | {% trans 'Learning management system' %}{% endblock title %} {% load crispy_forms_tags %} {% load static %} @@ -7,13 +8,13 @@ -

Student Update Form

+

{% trans 'Student Update Form' %}

{% include 'snippets/messages.html' %} @@ -21,7 +22,7 @@
-

Email & Personal Info

+

{% trans 'Email' %} & {% trans 'Personal Info' %}

{{ form.email|as_crispy_field }} @@ -35,13 +36,13 @@
-

Others

+

{% trans 'Others' %}

{{ form.picture|as_crispy_field }}
- + {% endblock content %} diff --git a/templates/accounts/lecturer_list.html b/templates/accounts/lecturer_list.html index c4a73b2..8f862c8 100644 --- a/templates/accounts/lecturer_list.html +++ b/templates/accounts/lecturer_list.html @@ -1,23 +1,24 @@ {% extends 'base.html' %} -{% block title %}{{ title }} | Learning management system{% endblock title %} +{% load i18n %} +{% block title %}{{ title }} | {% trans 'Learning management system' %}{% endblock title %} {% block content %} {% if request.user.is_superuser %} {% endif %} -

Lecturers

+

{% trans 'Lecturers' %}

{% include 'snippets/messages.html' %} {% include 'snippets/filter_form.html' %} @@ -27,14 +28,14 @@ # - ID No. - Full Name - Email - Mob No. - Address/city - Last login + {% trans 'ID No.' %}' + {% trans 'Full Name' %} + {% trans 'Email' %} + {% trans 'Mob No.' %} + {% trans 'Address/city' %} + {% trans 'Last login' %} {% if request.user.is_superuser %} - Action + {% trans 'Action' %} {% endif %} @@ -55,9 +56,9 @@
@@ -67,11 +68,11 @@ - No Lecturer(s). + {% trans 'No Lecturer(s).' %} {% if request.user.is_superuser %} - Add Lecturer Now. + {% trans 'Add Lecturer Now.' %} {% endif %} diff --git a/templates/accounts/parent_form.html b/templates/accounts/parent_form.html index bcc7adb..64ac64e 100644 --- a/templates/accounts/parent_form.html +++ b/templates/accounts/parent_form.html @@ -1,5 +1,6 @@ {% extends 'base.html' %} -{% block title %}{{ title }} | Learning management system{% endblock title %} +{% load i18n %} + {% block title %}{{ title }} | {% trans 'Learning management system' %}{% endblock title %} {% load crispy_forms_tags %} {% load static %} @@ -7,7 +8,7 @@
{% csrf_token %} {{ form.as_p }} - +
{% endblock %} diff --git a/templates/accounts/profile.html b/templates/accounts/profile.html index 55532f4..ccbd5e0 100644 --- a/templates/accounts/profile.html +++ b/templates/accounts/profile.html @@ -1,8 +1,9 @@ {% extends 'base.html' %} -{% block title %} {{ title }} | Learning management system{% endblock title %} +{% load i18n %} +{% block title %} {{ title }} | {% trans 'Learning management system' %}{% endblock title %} {% load static %} -{% load i18n %} + {% block content %} @@ -10,7 +11,7 @@ @@ -25,17 +26,17 @@
  • {{ user.get_full_name|title }}
  • -
  • Last login: {{ user.last_login|date }}
  • -
  • Role: +
  • {% trans 'Last login:' %} {{ user.last_login|date }}
  • +
  • {% trans 'Role:' %}' {{ user.get_user_role }}

- Edit Profile + {% trans 'Edit Profile' %} - Change password + {% trans 'Change password' %}
@@ -58,7 +59,7 @@ {% endif %} --> {% if user.is_lecturer %} -

My Courses

+

{% trans 'My Courses' %}

{% if courses %}
    {% for course in courses %} @@ -66,42 +67,42 @@ {% endfor %}
{% else %} -
No courses assigned!
+
{% trans 'No courses assigned!' %}
{% endif %}
{% endif %} -

Personal Info

+

{% trans 'Personal Info' %}

-

First Name: {{ user.first_name|title }}

-

Last Name: {{ user.last_name|title }}

-

ID No.: {{ user.username }}

+

{% trans 'First Name:' %} {{ user.first_name|title }}

+

{% trans 'Last Name:' %} {{ user.last_name|title }}

+

{% trans 'ID No.:' %} {{ user.username }}

{% if user.is_student %}
-

Applicant Info

+

{% trans 'Applicant Info' %}

-

School: Hawas Preparatory School

-

Level: {{ level.level }}

+

{% trans 'School:' %} {% trans 'Hawas Preparatory School' %}

+

{% trans 'Level:' %} {{ level.level }}

{% endif %}
-

Contact Info

+

{% trans 'Contact Info' %}

-

Email: {{ user.email }}

-

Tel No.: {{ user.phone }}

-

Address/city: {{ user.address }}

+

{% trans 'Email:' %} {{ user.email }}

+

{% trans 'Tel No.:' %} {{ user.phone }}

+

{% trans 'Address/city:' %} {{ user.address }}


-

Important Dates

+

{% trans 'Important Dates' %}

-

Last login: {{ user.last_login }}

+

{% trans 'Last login:' %} {{ user.last_login }}

{% if current_semester and current_session %} -

Academic Year: {{ current_semester }} Semester {{ current_session }}

+

{% trans 'Academic Year:' %} {{ current_semester }} {% trans 'Semester' %} {{ current_session }}

{% endif %} -

Registered Date: {{ user.date_joined|date }}

+

{% trans 'Registered Date:' %} {{ user.date_joined|date }}

diff --git a/templates/accounts/profile_single.html b/templates/accounts/profile_single.html index f3030b8..3cd7e79 100644 --- a/templates/accounts/profile_single.html +++ b/templates/accounts/profile_single.html @@ -1,8 +1,9 @@ {% extends 'base.html' %} -{% block title %} {{ title }} | Learning management system{% endblock title %} +{% load i18n %} +{% block title %} {{ title }} | {% trans 'Learning management system' %}{% endblock title %} {% load static %} -{% load i18n %} + {% block content %} @@ -10,7 +11,7 @@ @@ -25,8 +26,8 @@
  • {{ user.get_full_name|title }}
  • -
  • Last login: {{ user.last_login|date }}
  • -
  • Role: +
  • {% trans 'Last login:' %} {{ user.last_login|date }}
  • +
  • {% trans 'Role:' %} {{ user.get_user_role }}
@@ -36,12 +37,12 @@
{% if user.is_student %} - Edit Profile + {% trans 'Edit Profile' %} {% endif %} {% if user.is_lecturer %} - Edit Profile + {% trans 'Edit Profile' %} {% endif %}
@@ -68,7 +69,7 @@ {% endif %} --> {% if user.is_lecturer %} -

My Courses

+

{% trans 'My Courses' %}

{% if courses %}
    {% for course in courses %} @@ -76,42 +77,42 @@ {% endfor %}
{% else %} -
No courses assigned!
+
{% trans 'No courses assigned!' %}
{% endif %}
{% endif %} -

Personal Info

+

{% trans 'Personal Info' %}

-

First Name: {{ user.first_name|title }}

-

Last Name: {{ user.last_name|title }}

-

ID No.: {{ user.username }}

+

{% trans 'First Name:' %} {{ user.first_name|title }}

+

{% trans 'Last Name:' %} {{ user.last_name|title }}

+

{% trans 'ID No.:' %} {{ user.username }}

{% if user.is_student %}
-

Applicant Info

+

{% trans 'Applicant Info' %}

-

School: Hawas Preparatory School

-

Level: {{ level.level }}

+

{% trans 'School:' %}' {% trans 'Hawas Preparatory School' %}

+

{% trans 'Level:' %}' {{ level.level }}

{% endif %}
-

Contact Info

+

{% trans 'Contact Info' %}

-

Email: {{ user.email }}

-

Tel No.: {{ user.phone }}

-

Address/city: {{ user.address }}

+

{% trans 'Email:' %} {{ user.email }}

+

{% trans 'Tel No.:' %} {{ user.phone }}

+

{% trans 'Address/city:' %} {{ user.address }}


-

Important Dates

+

{% trans 'Important Dates' %}

-

Last login: {{ user.last_login }}

+

{% trans 'Last login:' %} {{ user.last_login }}

{% if current_semester and current_session %} -

Academic Year: {{ current_semester }} Semester {{ current_session }}

+

{% trans 'Academic Year:' %} {{ current_semester }} {% trans 'Semester' %} {{ current_session }}

{% endif %} -

Registered Date: {{ user.date_joined|date }}

+

{% trans 'Registered Date:' %} {{ user.date_joined|date }}

diff --git a/templates/accounts/student_list.html b/templates/accounts/student_list.html index c46dc7d..72f04ef 100644 --- a/templates/accounts/student_list.html +++ b/templates/accounts/student_list.html @@ -1,13 +1,14 @@ {% extends 'base.html' %} -{% block title %}{{ title }} | Learning management system{% endblock title %} +{% load i18n %} +{% block title %}{{ title }} | {% trans 'Learning management system' %}{% endblock title %} {% block content %} @@ -15,12 +16,12 @@ {% if request.user.is_superuser %} {% endif %} -
Students
+
{% trans 'Students' %}


@@ -32,12 +33,12 @@ # - ID No. - Full Name - Email - Program + {% trans 'ID No.' %} + {% trans 'Full Name' %} + {% trans 'Email' %} + {% trans 'Program' %} {% if request.user.is_superuser %} - Action + {% trans 'Action' %} {% endif %} @@ -57,9 +58,9 @@ @@ -69,11 +70,11 @@ - No Student. + {% trans 'No Student.' %} {% if request.user.is_superuser %} - Add Student Now. + {% trans 'Add Student Now.' %} {% endif %} diff --git a/templates/aside.html b/templates/aside.html index 86df7df..e72bf62 100644 --- a/templates/aside.html +++ b/templates/aside.html @@ -1,4 +1,5 @@ {% load static %} +{% load i18n %}
-

Dashboard

+

{% trans 'Dashboard' %}

@@ -177,7 +178,7 @@

- Students + {% trans 'Students' %}

{{ student_count }}

@@ -186,7 +187,7 @@

- Lecturers + {% trans 'Lecturers' %}

{{ lecturer_count }}

@@ -195,7 +196,7 @@

- Administrators + {% trans 'Administrators' %}

{{ superuser_count }}

@@ -204,7 +205,7 @@

- Lab Assistance + {% trans 'Lab Assistance' %}

500

@@ -213,7 +214,7 @@

- Librarians + {% trans 'Librarians' %}

300

@@ -222,7 +223,7 @@

- Supervisors + {% trans 'Supervisors' %}

660

@@ -231,7 +232,7 @@

- Office Assistance + {% trans 'Office Assistance' %}

1,700

@@ -240,7 +241,7 @@

- Others + {% trans 'Others' %}

1,250

@@ -268,12 +269,12 @@
-
Latest activities
+
{% trans 'Latest activities' %}
    {% for log in logs %}
  • {{ log.message }} - {{ log.created_at }}
  • {% empty %} -
  • No recent activity
  • +
  • {% trans 'No recent activity' %}
  • {% endfor %}
@@ -281,7 +282,7 @@

-
School Demographics
+
{% trans 'School Demographics' %}
@@ -302,276 +303,9 @@ {% block js %} + - - - + + {% endblock %} \ No newline at end of file diff --git a/templates/course/program_single.html b/templates/course/program_single.html index 0a32c6a..8b1eee1 100644 --- a/templates/course/program_single.html +++ b/templates/course/program_single.html @@ -15,8 +15,7 @@ {% if request.user.is_superuser %} {% endif %} From 2c291d6390a2d2d50f7ec30e8be9878b60f0ee56 Mon Sep 17 00:00:00 2001 From: Adil Mohak Date: Sun, 29 Sep 2024 15:38:52 +0300 Subject: [PATCH 3/7] Add langs and resolve conflicts --- config/settings.py | 18 +- ...y_en_newsandevents_summary_ru_and_more.py} | 20 +- ...rse_summary_ru_course_title_en_and_more.py | 83 + ..._summary_en_program_summary_ru_and_more.py | 33 - ...rse_summary_ru_course_title_en_and_more.py | 63 - locale/es/LC_MESSAGES/django.po | 3665 +++++++++++++++++ locale/fr/LC_MESSAGES/django.po | 3665 +++++++++++++++++ locale/ru/LC_MESSAGES/django.po | 3225 ++++++++++++--- locale/ru/LC_MESSAGES/djangojs.po | 114 - ...ice_choice_en_choice_choice_ru_and_more.py | 105 + ...ice_choice_en_choice_choice_ru_and_more.py | 63 - 11 files changed, 10127 insertions(+), 927 deletions(-) rename core/migrations/{0006_newsandevents_summary_en_newsandevents_summary_ru_and_more.py => 0002_newsandevents_summary_en_newsandevents_summary_ru_and_more.py} (61%) create mode 100644 course/migrations/0002_course_summary_en_course_summary_ru_course_title_en_and_more.py delete mode 100644 course/migrations/0008_program_summary_en_program_summary_ru_and_more.py delete mode 100644 course/migrations/0009_course_summary_en_course_summary_ru_course_title_en_and_more.py create mode 100644 locale/es/LC_MESSAGES/django.po create mode 100644 locale/fr/LC_MESSAGES/django.po delete mode 100644 locale/ru/LC_MESSAGES/djangojs.po create mode 100644 quiz/migrations/0002_choice_choice_en_choice_choice_ru_and_more.py delete mode 100644 quiz/migrations/0005_choice_choice_en_choice_choice_ru_and_more.py diff --git a/config/settings.py b/config/settings.py index 74b0325..8d85727 100644 --- a/config/settings.py +++ b/config/settings.py @@ -35,7 +35,7 @@ AUTH_USER_MODEL = "accounts.User" # Application definition DJANGO_APPS = [ - "modeltranslation", + "modeltranslation", # Translation "jet.dashboard", "jet", "django.contrib.admin", @@ -143,15 +143,17 @@ AUTH_PASSWORD_VALIDATORS = [ # https://docs.djangoproject.com/en/2.2/topics/i18n/ gettext = lambda s: s + LANGUAGES = ( - ('en', gettext('English')), - ('ru', gettext('Russia')), -) -LOCALE_PATHS = ( - os.path.join(BASE_DIR, 'locale'), + ("en", gettext("English")), + ("fr", gettext("French")), + ("es", gettext("Spanish")), + ("ru", gettext("Russia")), ) -MODELTRANSLATION_DEFAULT_LANGUAGE = 'en' +LOCALE_PATHS = (os.path.join(BASE_DIR, "locale"),) + +MODELTRANSLATION_DEFAULT_LANGUAGE = "en" LANGUAGE_CODE = "en-us" TIME_ZONE = "UTC" @@ -249,5 +251,3 @@ STATICFILES_STORAGE = "whitenoise.storage.CompressedManifestStaticFilesStorage" STUDENT_ID_PREFIX = config("STUDENT_ID_PREFIX", "ugr") LECTURER_ID_PREFIX = config("LECTURER_ID_PREFIX", "lec") - - diff --git a/core/migrations/0006_newsandevents_summary_en_newsandevents_summary_ru_and_more.py b/core/migrations/0002_newsandevents_summary_en_newsandevents_summary_ru_and_more.py similarity index 61% rename from core/migrations/0006_newsandevents_summary_en_newsandevents_summary_ru_and_more.py rename to core/migrations/0002_newsandevents_summary_en_newsandevents_summary_ru_and_more.py index b888a28..6a504ec 100644 --- a/core/migrations/0006_newsandevents_summary_en_newsandevents_summary_ru_and_more.py +++ b/core/migrations/0002_newsandevents_summary_en_newsandevents_summary_ru_and_more.py @@ -1,4 +1,4 @@ -# Generated by Django 4.0.8 on 2024-04-15 13:36 +# Generated by Django 4.2.16 on 2024-09-29 07:44 from django.db import migrations, models @@ -6,28 +6,28 @@ from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ - ('core', '0005_activitylog'), + ("core", "0001_initial"), ] operations = [ migrations.AddField( - model_name='newsandevents', - name='summary_en', + model_name="newsandevents", + name="summary_en", field=models.TextField(blank=True, max_length=200, null=True), ), migrations.AddField( - model_name='newsandevents', - name='summary_ru', + model_name="newsandevents", + name="summary_ru", field=models.TextField(blank=True, max_length=200, null=True), ), migrations.AddField( - model_name='newsandevents', - name='title_en', + model_name="newsandevents", + name="title_en", field=models.CharField(max_length=200, null=True), ), migrations.AddField( - model_name='newsandevents', - name='title_ru', + model_name="newsandevents", + name="title_ru", field=models.CharField(max_length=200, null=True), ), ] diff --git a/course/migrations/0002_course_summary_en_course_summary_ru_course_title_en_and_more.py b/course/migrations/0002_course_summary_en_course_summary_ru_course_title_en_and_more.py new file mode 100644 index 0000000..9282f04 --- /dev/null +++ b/course/migrations/0002_course_summary_en_course_summary_ru_course_title_en_and_more.py @@ -0,0 +1,83 @@ +# Generated by Django 4.2.16 on 2024-09-29 07:44 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ("course", "0001_initial"), + ] + + operations = [ + migrations.AddField( + model_name="course", + name="summary_en", + field=models.TextField(blank=True, max_length=200, null=True), + ), + migrations.AddField( + model_name="course", + name="summary_ru", + field=models.TextField(blank=True, max_length=200, null=True), + ), + migrations.AddField( + model_name="course", + name="title_en", + field=models.CharField(max_length=200, null=True), + ), + migrations.AddField( + model_name="course", + name="title_ru", + field=models.CharField(max_length=200, null=True), + ), + migrations.AddField( + model_name="program", + name="summary_en", + field=models.TextField(blank=True, null=True), + ), + migrations.AddField( + model_name="program", + name="summary_ru", + field=models.TextField(blank=True, null=True), + ), + migrations.AddField( + model_name="program", + name="title_en", + field=models.CharField(max_length=150, null=True, unique=True), + ), + migrations.AddField( + model_name="program", + name="title_ru", + field=models.CharField(max_length=150, null=True, unique=True), + ), + migrations.AddField( + model_name="upload", + name="title_en", + field=models.CharField(max_length=100, null=True), + ), + migrations.AddField( + model_name="upload", + name="title_ru", + field=models.CharField(max_length=100, null=True), + ), + migrations.AddField( + model_name="uploadvideo", + name="summary_en", + field=models.TextField(blank=True, null=True), + ), + migrations.AddField( + model_name="uploadvideo", + name="summary_ru", + field=models.TextField(blank=True, null=True), + ), + migrations.AddField( + model_name="uploadvideo", + name="title_en", + field=models.CharField(max_length=100, null=True), + ), + migrations.AddField( + model_name="uploadvideo", + name="title_ru", + field=models.CharField(max_length=100, null=True), + ), + ] diff --git a/course/migrations/0008_program_summary_en_program_summary_ru_and_more.py b/course/migrations/0008_program_summary_en_program_summary_ru_and_more.py deleted file mode 100644 index 735955b..0000000 --- a/course/migrations/0008_program_summary_en_program_summary_ru_and_more.py +++ /dev/null @@ -1,33 +0,0 @@ -# Generated by Django 4.0.8 on 2024-04-12 11:07 - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ('course', '0007_alter_upload_file_alter_uploadvideo_video'), - ] - - operations = [ - migrations.AddField( - model_name='program', - name='summary_en', - field=models.TextField(blank=True, null=True), - ), - migrations.AddField( - model_name='program', - name='summary_ru', - field=models.TextField(blank=True, null=True), - ), - migrations.AddField( - model_name='program', - name='title_en', - field=models.CharField(max_length=150, null=True, unique=True), - ), - migrations.AddField( - model_name='program', - name='title_ru', - field=models.CharField(max_length=150, null=True, unique=True), - ), - ] diff --git a/course/migrations/0009_course_summary_en_course_summary_ru_course_title_en_and_more.py b/course/migrations/0009_course_summary_en_course_summary_ru_course_title_en_and_more.py deleted file mode 100644 index a17b3aa..0000000 --- a/course/migrations/0009_course_summary_en_course_summary_ru_course_title_en_and_more.py +++ /dev/null @@ -1,63 +0,0 @@ -# Generated by Django 4.0.8 on 2024-04-14 15:28 - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ('course', '0008_program_summary_en_program_summary_ru_and_more'), - ] - - operations = [ - migrations.AddField( - model_name='course', - name='summary_en', - field=models.TextField(blank=True, max_length=200, null=True), - ), - migrations.AddField( - model_name='course', - name='summary_ru', - field=models.TextField(blank=True, max_length=200, null=True), - ), - migrations.AddField( - model_name='course', - name='title_en', - field=models.CharField(max_length=200, null=True), - ), - migrations.AddField( - model_name='course', - name='title_ru', - field=models.CharField(max_length=200, null=True), - ), - migrations.AddField( - model_name='upload', - name='title_en', - field=models.CharField(max_length=100, null=True), - ), - migrations.AddField( - model_name='upload', - name='title_ru', - field=models.CharField(max_length=100, null=True), - ), - migrations.AddField( - model_name='uploadvideo', - name='summary_en', - field=models.TextField(blank=True, null=True), - ), - migrations.AddField( - model_name='uploadvideo', - name='summary_ru', - field=models.TextField(blank=True, null=True), - ), - migrations.AddField( - model_name='uploadvideo', - name='title_en', - field=models.CharField(max_length=100, null=True), - ), - migrations.AddField( - model_name='uploadvideo', - name='title_ru', - field=models.CharField(max_length=100, null=True), - ), - ] diff --git a/locale/es/LC_MESSAGES/django.po b/locale/es/LC_MESSAGES/django.po new file mode 100644 index 0000000..66fe8d5 --- /dev/null +++ b/locale/es/LC_MESSAGES/django.po @@ -0,0 +1,3665 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-29 15:37+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: accounts/models.py:14 course/models.py:24 +msgid "Bachelor" +msgstr "" + +#: accounts/models.py:15 course/models.py:25 +msgid "Master" +msgstr "" + +#: accounts/models.py:19 course/models.py:29 +msgid "Bachelor Degree" +msgstr "" + +#: accounts/models.py:20 course/models.py:30 +msgid "Master Degree" +msgstr "" + +#: accounts/models.py:23 accounts/models.py:32 +msgid "Father" +msgstr "" + +#: accounts/models.py:24 accounts/models.py:33 +msgid "Mother" +msgstr "" + +#: accounts/models.py:25 accounts/models.py:34 +msgid "Brother" +msgstr "" + +#: accounts/models.py:26 accounts/models.py:35 +msgid "Sister" +msgstr "" + +#: accounts/models.py:27 accounts/models.py:36 +msgid "Grand mother" +msgstr "" + +#: accounts/models.py:28 accounts/models.py:37 +msgid "Grand father" +msgstr "" + +#: accounts/models.py:29 accounts/models.py:38 +msgid "Other" +msgstr "" + +#: accounts/models.py:67 +msgid "M" +msgstr "" + +#: accounts/models.py:67 +msgid "Male" +msgstr "" + +#: accounts/models.py:67 +msgid "F" +msgstr "" + +#: accounts/models.py:67 +msgid "Female" +msgstr "" + +#: accounts/models.py:103 +msgid "Admin" +msgstr "" + +#: accounts/models.py:105 templates/result/add_score_for.html:52 +msgid "Student" +msgstr "" + +#: accounts/models.py:107 templates/course/course_allocation_view.html:32 +msgid "Lecturer" +msgstr "" + +#: accounts/models.py:109 +msgid "Parent" +msgstr "" + +#: accounts/validators.py:12 +msgid "" +"Enter a valid username. This value may contain only English letters, " +"numbers, and @/./+/-/_ characters." +msgstr "" + +#: config/settings.py:148 +msgid "English" +msgstr "" + +#: config/settings.py:149 +msgid "French" +msgstr "" + +#: config/settings.py:150 +msgid "Spanish" +msgstr "" + +#: config/settings.py:151 +msgid "Russia" +msgstr "" + +#: core/models.py:9 core/models.py:13 templates/core/index.html:47 +#: templates/core/index.html:52 templates/setting/admin_panel.html:80 +#: templates/setting/admin_panel.html:81 +msgid "News" +msgstr "" + +#: core/models.py:10 core/models.py:14 +msgid "Event" +msgstr "" + +#: core/models.py:17 core/models.py:22 course/models.py:33 course/models.py:38 +msgid "First" +msgstr "" + +#: core/models.py:18 core/models.py:23 course/models.py:34 course/models.py:39 +msgid "Second" +msgstr "" + +#: core/models.py:19 core/models.py:24 course/models.py:35 course/models.py:40 +msgid "Third" +msgstr "" + +#: course/models.py:71 +#, python-brace-format +msgid "The program '{instance}' has been {verb}." +msgstr "" + +#: course/models.py:76 +#, python-brace-format +msgid "The program '{instance}' has been deleted." +msgstr "" + +#: course/models.py:138 +#, python-brace-format +msgid "The course '{instance}' has been {verb}." +msgstr "" + +#: course/models.py:143 +#, python-brace-format +msgid "The course '{instance}' has been deleted." +msgstr "" + +#: course/models.py:150 +msgid "allocated_lecturer" +msgstr "" + +#: course/models.py:152 +msgid "allocated_course" +msgstr "" + +#: course/models.py:218 +#, python-brace-format +msgid "" +"The file '{instance.title}' has been uploaded to the course '{instance." +"course}'." +msgstr "" + +#: course/models.py:224 +#, python-brace-format +msgid "" +"The file '{instance.title}' of the course '{instance.course}' has been " +"updated." +msgstr "" + +#: course/models.py:233 +#, python-brace-format +msgid "" +"The file '{instance.title}' of the course '{instance.course}' has been " +"deleted." +msgstr "" + +#: course/models.py:244 +msgid "Valid video formats: mp4, mkv, wmv, 3gp, f4v, avi, mp3" +msgstr "" + +#: course/models.py:278 +#, python-brace-format +msgid "" +"The video '{instance.title}' has been uploaded to the course {instance." +"course}." +msgstr "" + +#: course/models.py:284 +#, python-brace-format +msgid "" +"The video '{instance.title}' of the course '{instance.course}' has been " +"updated." +msgstr "" + +#: course/models.py:293 +#, python-brace-format +msgid "" +"The video '{instance.title}' of the course '{instance.course}' has been " +"deleted." +msgstr "" + +#: course/models.py:299 +msgid "NOTE: Only department head can offer semester courses" +msgstr "" + +#: quiz/admin.py:31 quiz/admin.py:32 quiz/forms.py:38 quiz/forms.py:39 +#: quiz/models.py:468 templates/quiz/quiz_list.html:41 +msgid "Questions" +msgstr "" + +#: quiz/models.py:23 quiz/models.py:529 +msgid "Content" +msgstr "" + +#: quiz/models.py:24 +msgid "Random" +msgstr "" + +#: quiz/models.py:25 +#: venv/lib/python3.9/site-packages/modeltranslation/widgets.py:32 +msgid "None" +msgstr "" + +#: quiz/models.py:29 templates/result/add_score_for.html:53 +#: templates/result/assessment_results.html:40 +#: templates/result/assessment_results.html:82 +msgid "Assignment" +msgstr "" + +#: quiz/models.py:30 +msgid "Exam" +msgstr "" + +#: quiz/models.py:31 +msgid "Practice Quiz" +msgstr "" + +#: quiz/models.py:53 +msgid "Title" +msgstr "" + +#: quiz/models.py:56 +msgid "Description" +msgstr "" + +#: quiz/models.py:58 +msgid "A detailed description of the quiz" +msgstr "" + +#: quiz/models.py:64 +msgid "Random Order" +msgstr "" + +#: quiz/models.py:65 +msgid "Display the questions in a random order or as they are set?" +msgstr "" + +#: quiz/models.py:74 +msgid "Answers at end" +msgstr "" + +#: quiz/models.py:76 +msgid "" +"Correct answer is NOT shown after question. Answers displayed at the end." +msgstr "" + +#: quiz/models.py:83 +msgid "Exam Paper" +msgstr "" + +#: quiz/models.py:85 +msgid "" +"If yes, the result of each attempt by a user will be stored. Necessary for " +"marking." +msgstr "" + +#: quiz/models.py:92 +msgid "Single Attempt" +msgstr "" + +#: quiz/models.py:93 +msgid "If yes, only one attempt by a user will be permitted." +msgstr "" + +#: quiz/models.py:99 +msgid "Pass Mark" +msgstr "" + +#: quiz/models.py:101 +msgid "Percentage required to pass exam." +msgstr "" + +#: quiz/models.py:107 +msgid "Draft" +msgstr "" + +#: quiz/models.py:109 +msgid "" +"If yes, the quiz is not displayed in the quiz list and can only be taken by " +"users who can edit quizzes." +msgstr "" + +#: quiz/models.py:129 quiz/models.py:290 quiz/models.py:443 +#: templates/quiz/quiz_list.html:39 templates/quiz/sitting_list.html:37 +#: templates/result/add_score_for.html:55 +#: templates/result/assessment_results.html:42 +#: templates/result/assessment_results.html:84 +#: templates/search/search_view.html:79 templates/search/search_view.html:127 +msgid "Quiz" +msgstr "" + +#: quiz/models.py:130 templates/question.html:16 +#: templates/quiz/mcquestion_form.html:13 templates/quiz/quiz_form.html:13 +#: templates/quiz/quiz_list.html:16 templates/quiz/quiz_list.html:26 +#: templates/result.html:18 +msgid "Quizzes" +msgstr "" + +#: quiz/models.py:164 quiz/models.py:288 templates/quiz/sitting_detail.html:24 +#: templates/quiz/sitting_list.html:35 +msgid "User" +msgstr "" + +#: quiz/models.py:168 templates/progress.html:68 +#: templates/quiz/sitting_detail.html:26 templates/quiz/sitting_list.html:39 +msgid "Score" +msgstr "" + +#: quiz/models.py:175 +msgid "User Progress" +msgstr "" + +#: quiz/models.py:176 +msgid "User progress records" +msgstr "" + +#: quiz/models.py:203 +msgid "error" +msgstr "" + +#: quiz/models.py:203 +msgid "category does not exist or invalid score" +msgstr "" + +#: quiz/models.py:248 +msgid "Question set of the quiz is empty. Please configure questions properly" +msgstr "" + +#: quiz/models.py:292 templates/quiz/sitting_list.html:36 +#: templates/search/search_view.html:59 templates/search/search_view.html:125 +msgid "Course" +msgstr "" + +#: quiz/models.py:297 +msgid "Question Order" +msgstr "" + +#: quiz/models.py:303 +msgid "Question List" +msgstr "" + +#: quiz/models.py:310 +msgid "Incorrect questions" +msgstr "" + +#: quiz/models.py:314 +msgid "Current Score" +msgstr "" + +#: quiz/models.py:316 +msgid "Complete" +msgstr "" + +#: quiz/models.py:319 +msgid "User Answers" +msgstr "" + +#: quiz/models.py:321 templates/quiz/sitting_detail.html:27 +msgid "Start" +msgstr "" + +#: quiz/models.py:322 templates/quiz/sitting_detail.html:28 +msgid "End" +msgstr "" + +#: quiz/models.py:327 +msgid "Can see completed exams." +msgstr "" + +#: quiz/models.py:404 +msgid "You have passed this quiz, congratulation" +msgstr "" + +#: quiz/models.py:406 +msgid "You failed this quiz, give it one chance again." +msgstr "" + +#: quiz/models.py:448 +msgid "Figure" +msgstr "" + +#: quiz/models.py:449 +msgid "Add an image for the question if it's necessary." +msgstr "" + +#: quiz/models.py:454 +msgid "Enter the question text that you want displayed" +msgstr "" + +#: quiz/models.py:455 quiz/models.py:467 quiz/models.py:522 +#: templates/question.html:125 templates/quiz/sitting_detail.html:34 +msgid "Question" +msgstr "" + +#: quiz/models.py:460 +msgid "Explanation to be shown after the question has been answered." +msgstr "" + +#: quiz/models.py:461 templates/question.html:80 templates/question.html:89 +#: templates/result.html:80 templates/result.html:150 +msgid "Explanation" +msgstr "" + +#: quiz/models.py:481 +msgid "The order in which multichoice choice options are displayed to the user" +msgstr "" + +#: quiz/models.py:483 +msgid "Choice Order" +msgstr "" + +#: quiz/models.py:516 +msgid "Multiple Choice Question" +msgstr "" + +#: quiz/models.py:517 +msgid "Multiple Choice Questions" +msgstr "" + +#: quiz/models.py:528 +msgid "Enter the choice text that you want displayed" +msgstr "" + +#: quiz/models.py:535 +msgid "Is this a correct answer?" +msgstr "" + +#: quiz/models.py:536 templates/quiz/mcquestion_form.html:53 +#: templates/quiz/sitting_detail.html:56 +msgid "Correct" +msgstr "" + +#: quiz/models.py:543 +msgid "Choice" +msgstr "" + +#: quiz/models.py:544 templates/quiz/mcquestion_form.html:47 +msgid "Choices" +msgstr "" + +#: quiz/models.py:564 +msgid "Essay style question" +msgstr "" + +#: quiz/models.py:565 +msgid "Essay style questions" +msgstr "" + +#: templates/400.html:5 +msgid "Bad request" +msgstr "" + +#: templates/400.html:6 +msgid "Please make sure the form is correctly filled." +msgstr "" + +#: templates/400.html:7 templates/403.html:7 templates/404.html:7 +#: templates/500.html:7 +msgid "Return to the app" +msgstr "" + +#: templates/403.html:5 +msgid "forbidden" +msgstr "" + +#: templates/403.html:6 +msgid "You need the proper permission to make that request." +msgstr "" + +#: templates/404.html:6 +msgid "Looks like the page you" +msgstr "" + +#: templates/500.html:5 +msgid "Server error" +msgstr "" + +#: templates/500.html:6 +msgid "Please try again later." +msgstr "" + +#: templates/accounts/add_staff.html:3 templates/accounts/add_student.html:3 +#: templates/accounts/edit_lecturer.html:3 +#: templates/accounts/edit_student.html:3 +#: templates/accounts/lecturer_list.html:3 +#: templates/accounts/parent_form.html:3 templates/accounts/profile.html:3 +#: templates/accounts/profile_single.html:3 +#: templates/accounts/student_list.html:3 templates/core/dashboard.html:3 +#: templates/core/index.html:3 templates/core/post_add.html:3 +#: templates/core/semester_list.html:3 templates/core/semester_update.html:3 +#: templates/core/session_list.html:3 templates/core/session_update.html:3 +#: templates/course/course_add.html:3 +#: templates/course/course_allocation_form.html:3 +#: templates/course/course_allocation_view.html:3 +#: templates/course/course_registration.html:3 +#: templates/course/course_single.html:3 templates/course/program_add.html:3 +#: templates/course/program_list.html:3 templates/course/program_single.html:3 +#: templates/course/user_course_list.html:3 templates/progress.html:4 +#: templates/question.html:5 templates/quiz/sitting_detail.html:4 +#: templates/quiz/sitting_list.html:3 templates/result.html:7 +#: templates/result/add_score.html:3 templates/result/add_score_for.html:3 +#: templates/result/assessment_results.html:3 +#: templates/result/grade_results.html:3 templates/search/search_view.html:3 +#: templates/setting/admin_panel.html:3 +#: templates/setting/password_change.html:3 +#: templates/setting/profile_info_change.html:3 +#: templates/upload/upload_file_form.html:3 +#: templates/upload/upload_video_form.html:3 +#: templates/upload/video_single.html:3 +msgid "Learning management system" +msgstr "" + +#: templates/accounts/add_staff.html:11 templates/accounts/add_student.html:12 +#: templates/accounts/edit_lecturer.html:11 +#: templates/accounts/edit_student.html:11 +#: templates/accounts/lecturer_list.html:9 templates/accounts/profile.html:14 +#: templates/accounts/profile_single.html:14 +#: templates/accounts/student_list.html:10 templates/aside.html:47 +#: templates/core/dashboard.html:13 templates/core/index.html:34 +#: templates/core/post_add.html:11 templates/core/semester_list.html:9 +#: templates/core/semester_update.html:11 templates/core/session_list.html:9 +#: templates/core/session_update.html:11 templates/course/course_add.html:11 +#: templates/course/course_allocation_form.html:11 +#: templates/course/course_allocation_view.html:9 +#: templates/course/course_registration.html:12 +#: templates/course/course_single.html:10 templates/course/program_add.html:11 +#: templates/course/program_list.html:9 templates/course/program_single.html:10 +#: templates/course/user_course_list.html:10 templates/progress.html:11 +#: templates/question.html:12 templates/quiz/mcquestion_form.html:9 +#: templates/quiz/quiz_form.html:9 templates/quiz/quiz_list.html:12 +#: templates/quiz/sitting_detail.html:11 templates/quiz/sitting_list.html:9 +#: templates/result.html:14 templates/result/add_score.html:10 +#: templates/result/add_score_for.html:10 +#: templates/result/assessment_results.html:9 +#: templates/result/grade_results.html:9 templates/search/search_view.html:11 +#: templates/setting/admin_panel.html:11 +#: templates/setting/password_change.html:11 +#: templates/setting/profile_info_change.html:11 +#: templates/upload/upload_file_form.html:10 +#: templates/upload/upload_video_form.html:10 +#: templates/upload/video_single.html:10 +msgid "Home" +msgstr "" + +#: templates/accounts/add_staff.html:12 +#: templates/accounts/edit_lecturer.html:12 +#: templates/accounts/lecturer_list.html:10 +#: templates/accounts/lecturer_list.html:21 templates/aside.html:58 +#: templates/core/dashboard.html:63 templates/pdf/lecturer_list.html:35 +#: templates/setting/admin_panel.html:37 +msgid "Lecturers" +msgstr "" + +#: templates/accounts/add_staff.html:13 templates/accounts/add_student.html:14 +#: templates/aside.html:113 +msgid "Add" +msgstr "" + +#: templates/accounts/add_staff.html:17 +msgid "Lecturer Add Form" +msgstr "" + +#: templates/accounts/add_staff.html:26 templates/accounts/add_student.html:27 +#: templates/accounts/edit_lecturer.html:27 +#: templates/accounts/edit_student.html:25 templates/accounts/profile.html:75 +#: templates/accounts/profile_single.html:88 +#: templates/pdf/profile_single.html:65 templates/registration/register.html:40 +#: templates/setting/profile_info_change.html:24 +msgid "Personal Info" +msgstr "" + +#: templates/accounts/add_staff.html:37 templates/accounts/add_student.html:49 +#: templates/accounts/edit_lecturer.html:46 +#: templates/accounts/edit_student.html:46 +#: templates/accounts/parent_form.html:11 templates/core/post_add.html:25 +#: templates/core/semester_update.html:38 templates/core/session_update.html:38 +#: templates/course/course_add.html:49 +#: templates/course/course_allocation_form.html:49 +#: templates/course/program_add.html:26 templates/quiz/mcquestion_form.html:67 +#: templates/quiz/quiz_form.html:66 templates/result/add_score_for.html:38 +msgid "Save" +msgstr "" + +#: templates/accounts/add_student.html:13 +#: templates/accounts/edit_student.html:12 +#: templates/accounts/student_list.html:11 +#: templates/accounts/student_list.html:24 templates/aside.html:61 +#: templates/core/dashboard.html:54 templates/pdf/student_list.html:35 +#: templates/setting/admin_panel.html:42 +msgid "Students" +msgstr "" + +#: templates/accounts/add_student.html:18 +msgid "Student Add Form" +msgstr "" + +#: templates/accounts/add_student.html:40 +#: templates/accounts/edit_lecturer.html:39 +#: templates/accounts/edit_student.html:39 templates/core/dashboard.html:117 +#: templates/setting/profile_info_change.html:37 +msgid "Others" +msgstr "" + +#: templates/accounts/edit_lecturer.html:13 +#: templates/accounts/edit_student.html:13 +#: templates/accounts/lecturer_list.html:59 +#: templates/accounts/student_list.html:61 +#: templates/course/program_list.html:56 +msgid "Update" +msgstr "" + +#: templates/accounts/edit_lecturer.html:17 +msgid "Lecturer Update Form" +msgstr "" + +#: templates/accounts/edit_lecturer.html:27 +#: templates/accounts/edit_student.html:25 +#: templates/accounts/lecturer_list.html:33 +#: templates/accounts/profile_single.html:107 +#: templates/accounts/student_list.html:38 templates/pdf/lecturer_list.html:44 +#: templates/pdf/student_list.html:43 +#: templates/registration/password_reset.html:13 +#: templates/setting/profile_info_change.html:24 +msgid "Email" +msgstr "" + +#: templates/accounts/edit_student.html:17 +msgid "Student Update Form" +msgstr "" + +#: templates/accounts/lecturer_list.html:16 +msgid "Add Lecturer" +msgstr "" + +#: templates/accounts/lecturer_list.html:17 +#: templates/accounts/student_list.html:20 +msgid "Download pdf" +msgstr "" + +#: templates/accounts/lecturer_list.html:31 +#: templates/accounts/profile_single.html:92 +#: templates/accounts/student_list.html:36 templates/pdf/lecturer_list.html:42 +#: templates/pdf/student_list.html:41 +msgid "ID No." +msgstr "" + +#: templates/accounts/lecturer_list.html:32 +#: templates/accounts/student_list.html:37 templates/pdf/lecturer_list.html:43 +#: templates/pdf/student_list.html:42 +msgid "Full Name" +msgstr "" + +#: templates/accounts/lecturer_list.html:34 templates/pdf/lecturer_list.html:45 +#: templates/pdf/student_list.html:44 +msgid "Mob No." +msgstr "" + +#: templates/accounts/lecturer_list.html:35 +#: templates/accounts/profile_single.html:109 +msgid "Address/city" +msgstr "" + +#: templates/accounts/lecturer_list.html:36 +#: templates/accounts/profile_single.html:29 +#: templates/accounts/profile_single.html:115 +msgid "Last login" +msgstr "" + +#: templates/accounts/lecturer_list.html:38 +#: templates/accounts/student_list.html:41 +#: templates/course/course_allocation_view.html:35 +#: templates/course/program_list.html:35 +#: templates/course/program_single.html:47 +msgid "Action" +msgstr "" + +#: templates/accounts/lecturer_list.html:60 +#: templates/accounts/student_list.html:62 +msgid "Download PDF" +msgstr "" + +#: templates/accounts/lecturer_list.html:61 +#: templates/accounts/student_list.html:63 templates/core/index.html:78 +#: templates/core/semester_list.html:71 templates/core/session_list.html:66 +#: templates/course/course_single.html:91 +#: templates/course/course_single.html:168 +#: templates/course/program_list.html:57 +#: templates/course/program_single.html:81 +#: templates/quiz/mcquestion_form.html:57 templates/quiz/quiz_list.html:68 +#: venv/lib/python3.9/site-packages/django/forms/formsets.py:499 +msgid "Delete" +msgstr "" + +#: templates/accounts/lecturer_list.html:71 templates/pdf/lecturer_list.html:63 +#: templates/pdf/student_list.html:61 +msgid "No Lecturer(s)." +msgstr "" + +#: templates/accounts/lecturer_list.html:75 +msgid "Add Lecturer Now." +msgstr "" + +#: templates/accounts/profile.html:29 templates/accounts/profile.html:101 +#: templates/navbar.html:29 templates/pdf/profile_single.html:41 +#: templates/pdf/profile_single.html:92 +msgid "Last login:" +msgstr "" + +#: templates/accounts/profile.html:30 templates/pdf/profile_single.html:42 +msgid "Role:" +msgstr "" + +#: templates/accounts/profile.html:37 templates/accounts/profile_single.html:40 +#: templates/accounts/profile_single.html:48 +msgid "Edit Profile" +msgstr "" + +#: templates/accounts/profile.html:39 +msgid "Change password" +msgstr "" + +#: templates/accounts/profile.html:62 templates/accounts/profile_single.html:75 +#: templates/aside.html:67 templates/course/user_course_list.html:3 +#: templates/course/user_course_list.html:11 +#: templates/course/user_course_list.html:23 templates/navbar.html:34 +#: templates/pdf/profile_single.html:52 +msgid "My Courses" +msgstr "" + +#: templates/accounts/profile.html:70 templates/accounts/profile_single.html:83 +#: templates/pdf/profile_single.html:60 +msgid "No courses assigned!" +msgstr "" + +#: templates/accounts/profile.html:77 templates/pdf/profile_single.html:67 +msgid "First Name:" +msgstr "" + +#: templates/accounts/profile.html:78 templates/pdf/profile_single.html:68 +msgid "Last Name:" +msgstr "" + +#: templates/accounts/profile.html:79 templates/pdf/profile_single.html:69 +msgid "ID No.:" +msgstr "" + +#: templates/accounts/profile.html:83 templates/accounts/profile_single.html:96 +#: templates/pdf/profile_single.html:74 +msgid "Applicant Info" +msgstr "" + +#: templates/accounts/profile.html:85 templates/pdf/profile_single.html:76 +msgid "School:" +msgstr "" + +#: templates/accounts/profile.html:85 templates/pdf/profile_single.html:76 +msgid "Hawas Preparatory School" +msgstr "" + +#: templates/accounts/profile.html:86 templates/pdf/profile_single.html:77 +msgid "Level:" +msgstr "" + +#: templates/accounts/profile.html:91 +#: templates/accounts/profile_single.html:105 +#: templates/pdf/profile_single.html:82 +msgid "Contact Info" +msgstr "" + +#: templates/accounts/profile.html:93 templates/pdf/profile_single.html:84 +msgid "Email:" +msgstr "" + +#: templates/accounts/profile.html:94 templates/pdf/profile_single.html:85 +msgid "Tel No.:" +msgstr "" + +#: templates/accounts/profile.html:95 templates/pdf/profile_single.html:86 +msgid "Address/city:" +msgstr "" + +#: templates/accounts/profile.html:99 +#: templates/accounts/profile_single.html:113 +#: templates/pdf/profile_single.html:90 +msgid "Important Dates" +msgstr "" + +#: templates/accounts/profile.html:103 templates/pdf/profile_single.html:94 +msgid "Academic Year:" +msgstr "" + +#: templates/accounts/profile.html:103 +#: templates/accounts/profile_single.html:117 +#: templates/core/semester_list.html:41 templates/course/program_single.html:44 +#: templates/course/user_course_list.html:52 +#: templates/course/user_course_list.html:96 +#: templates/pdf/profile_single.html:94 templates/result/add_score.html:24 +#: templates/result/add_score_for.html:46 templates/setting/admin_panel.html:52 +msgid "Semester" +msgstr "" + +#: templates/accounts/profile.html:105 templates/pdf/profile_single.html:96 +msgid "Registered Date:" +msgstr "" + +#: templates/accounts/profile_single.html:30 +msgid "Role" +msgstr "" + +#: templates/accounts/profile_single.html:43 +msgid "Change Program" +msgstr "" + +#: templates/accounts/profile_single.html:90 +msgid "First Name" +msgstr "" + +#: templates/accounts/profile_single.html:91 +msgid "Last Name" +msgstr "" + +#: templates/accounts/profile_single.html:98 +msgid "School" +msgstr "" + +#: templates/accounts/profile_single.html:99 +#: templates/course/program_single.html:42 +msgid "Level" +msgstr "" + +#: templates/accounts/profile_single.html:100 +#: templates/accounts/student_list.html:39 templates/pdf/student_list.html:45 +#: templates/search/search_view.html:49 templates/search/search_view.html:89 +#: templates/search/search_view.html:124 +msgid "Program" +msgstr "" + +#: templates/accounts/profile_single.html:108 +msgid "Tel No." +msgstr "" + +#: templates/accounts/profile_single.html:117 +msgid "Academic Year" +msgstr "" + +#: templates/accounts/profile_single.html:119 +msgid "Registered Date" +msgstr "" + +#: templates/accounts/student_list.html:19 +msgid "Add Student" +msgstr "" + +#: templates/accounts/student_list.html:73 +#: templates/result/add_score_for.html:105 +msgid "No Student." +msgstr "" + +#: templates/accounts/student_list.html:77 +msgid "Add Student Now." +msgstr "" + +#: templates/aside.html:43 templates/core/dashboard.html:3 +#: templates/core/dashboard.html:14 templates/core/dashboard.html:33 +msgid "Dashboard" +msgstr "" + +#: templates/aside.html:50 templates/navbar.html:41 +msgid "Profile" +msgstr "" + +#: templates/aside.html:55 templates/navbar.html:38 +#: templates/setting/admin_panel.html:12 templates/setting/admin_panel.html:16 +msgid "Admin Panel" +msgstr "" + +#: templates/aside.html:72 +msgid "Programs & Courses" +msgstr "" + +#: templates/aside.html:77 templates/quiz/sitting_list.html:10 +msgid "Complete Exams" +msgstr "" + +#: templates/aside.html:83 templates/aside.html:104 +msgid "Quiz Progress Rec" +msgstr "" + +#: templates/aside.html:86 +msgid "Course Allocation" +msgstr "" + +#: templates/aside.html:89 +msgid "Manage Session" +msgstr "" + +#: templates/aside.html:92 +msgid "Manage Semester" +msgstr "" + +#: templates/aside.html:98 templates/result/add_score.html:11 +#: templates/result/add_score.html:17 templates/result/add_score_for.html:12 +msgid "Manage Score" +msgstr "" + +#: templates/aside.html:107 templates/result/grade_results.html:10 +#: templates/result/grade_results.html:28 +msgid "Grade Results" +msgstr "" + +#: templates/aside.html:110 templates/result/assessment_results.html:10 +#: templates/result/assessment_results.html:28 +msgid "Assesment Results" +msgstr "" + +#: templates/aside.html:113 +msgid "Drop Course" +msgstr "" + +#: templates/aside.html:119 +msgid "Account Setting" +msgstr "" + +#: templates/aside.html:122 templates/setting/password_change.html:21 +#: templates/setting/password_change.html:25 +msgid "Change Password" +msgstr "" + +#: templates/aside.html:130 +msgid "Read our" +msgstr "" + +#: templates/aside.html:130 +msgid "Privacy" +msgstr "" + +#: templates/aside.html:130 +#: venv/lib/python3.9/site-packages/django/db/models/base.py:1423 +#: venv/lib/python3.9/site-packages/django/forms/models.py:893 +msgid "and" +msgstr "" + +#: templates/aside.html:130 +msgid "Terms of use." +msgstr "" + +#: templates/aside.html:135 +msgid "⭐️ Star This Project" +msgstr "" + +#: templates/core/dashboard.html:40 +msgid "Dashboard settings" +msgstr "" + +#: templates/core/dashboard.html:41 +msgid "Display grid" +msgstr "" + +#: templates/core/dashboard.html:42 +msgid "Display table" +msgstr "" + +#: templates/core/dashboard.html:44 +msgid "Manage dashboard" +msgstr "" + +#: templates/core/dashboard.html:72 +msgid "Administrators" +msgstr "" + +#: templates/core/dashboard.html:81 +msgid "Lab Assistance" +msgstr "" + +#: templates/core/dashboard.html:90 +msgid "Librarians" +msgstr "" + +#: templates/core/dashboard.html:99 +msgid "Supervisors" +msgstr "" + +#: templates/core/dashboard.html:108 +msgid "Office Assistance" +msgstr "" + +#: templates/core/dashboard.html:145 +msgid "Latest activities" +msgstr "" + +#: templates/core/dashboard.html:150 +msgid "No recent activity" +msgstr "" + +#: templates/core/dashboard.html:158 +msgid "School Demographics" +msgstr "" + +#: templates/core/index.html:40 +msgid "Add New Post" +msgstr "" + +#: templates/core/index.html:47 templates/core/index.html:55 +#: templates/setting/admin_panel.html:80 templates/setting/admin_panel.html:81 +msgid "Events" +msgstr "" + +#: templates/core/index.html:65 +msgid "news" +msgstr "" + +#: templates/core/index.html:65 +msgid "events" +msgstr "" + +#: templates/core/index.html:76 templates/core/semester_list.html:69 +#: templates/core/session_list.html:65 templates/course/course_single.html:87 +#: templates/course/course_single.html:164 +#: templates/course/program_single.html:78 templates/quiz/quiz_list.html:65 +msgid "Edit" +msgstr "" + +#: templates/core/index.html:88 templates/upload/video_single.html:31 +msgid "ago" +msgstr "" + +#: templates/core/index.html:98 +msgid "School news and events will appear here." +msgstr "" + +#: templates/core/post_add.html:12 +msgid "Post form" +msgstr "" + +#: templates/core/post_add.html:21 +msgid "Post Form" +msgstr "" + +#: templates/core/post_add.html:26 templates/upload/upload_file_form.html:34 +#: templates/upload/upload_video_form.html:33 +msgid "Cancel" +msgstr "" + +#: templates/core/semester_list.html:10 +msgid "Semester list" +msgstr "" + +#: templates/core/semester_list.html:16 +msgid "Add New Semester" +msgstr "" + +#: templates/core/semester_list.html:20 templates/core/semester_update.html:12 +msgid "Semester List" +msgstr "" + +#: templates/core/semester_list.html:42 +msgid "Is Current semester" +msgstr "" + +#: templates/core/semester_list.html:43 templates/core/session_list.html:41 +#: templates/setting/admin_panel.html:47 +msgid "Session" +msgstr "" + +#: templates/core/semester_list.html:44 +msgid "Next Semester Begins" +msgstr "" + +#: templates/core/semester_list.html:46 templates/core/session_list.html:45 +#: templates/course/course_single.html:61 +#: templates/course/course_single.html:138 +msgid "Actions" +msgstr "" + +#: templates/core/semester_list.html:83 +msgid "No Semester." +msgstr "" + +#: templates/core/semester_list.html:87 +msgid "Add Semester Now." +msgstr "" + +#: templates/core/semester_update.html:13 +msgid "Semester Form" +msgstr "" + +#: templates/core/semester_update.html:34 +msgid "Semester Add & update Form" +msgstr "" + +#: templates/core/session_list.html:10 templates/core/session_list.html:20 +#: templates/core/session_update.html:12 +msgid "Session List" +msgstr "" + +#: templates/core/session_list.html:16 +msgid "Add New Session" +msgstr "" + +#: templates/core/session_list.html:42 +msgid "Is Current Session" +msgstr "" + +#: templates/core/session_list.html:43 +msgid "Next Session Begins" +msgstr "" + +#: templates/core/session_list.html:77 +msgid "No Session." +msgstr "" + +#: templates/core/session_list.html:81 +msgid "Add Session Now." +msgstr "" + +#: templates/core/session_update.html:13 +msgid "Session Form" +msgstr "" + +#: templates/core/session_update.html:34 +msgid "Session Add & update Form" +msgstr "" + +#: templates/correct_answer.html:6 templates/question.html:50 +#: templates/result.html:51 +msgid "You answered the above question incorrectly" +msgstr "" + +#: templates/correct_answer.html:16 templates/question.html:60 +#: templates/result.html:61 +msgid "This is the correct answer" +msgstr "" + +#: templates/correct_answer.html:24 templates/question.html:68 +#: templates/result.html:69 +msgid "This was your answer." +msgstr "" + +#: templates/course/course_add.html:12 templates/course/course_single.html:11 +#: templates/course/program_add.html:12 templates/course/program_list.html:10 +#: templates/course/program_single.html:11 +#: templates/quiz/mcquestion_form.html:10 templates/quiz/quiz_form.html:10 +#: templates/quiz/quiz_list.html:13 templates/result.html:15 +#: templates/setting/admin_panel.html:70 +#: templates/upload/upload_file_form.html:11 +#: templates/upload/upload_video_form.html:11 +#: templates/upload/video_single.html:11 +msgid "Programs" +msgstr "" + +#: templates/course/course_add.html:13 templates/course/course_add.html:17 +msgid "Course Form" +msgstr "" + +#: templates/course/course_add.html:27 +msgid "Course Detail" +msgstr "" + +#: templates/course/course_add.html:37 +msgid "Other Info" +msgstr "" + +#: templates/course/course_allocation_form.html:12 +#: templates/course/course_allocation_view.html:20 +#: templates/setting/admin_panel.html:75 +msgid "Course Allocations" +msgstr "" + +#: templates/course/course_allocation_form.html:13 +msgid "Allocation Form" +msgstr "" + +#: templates/course/course_allocation_form.html:34 +msgid "Course Allocation Form" +msgstr "" + +#: templates/course/course_allocation_view.html:10 +msgid "Allocation list" +msgstr "" + +#: templates/course/course_allocation_view.html:16 +msgid "Allocate Now" +msgstr "" + +#: templates/course/course_allocation_view.html:33 +#: templates/setting/admin_panel.html:70 +msgid "Courses" +msgstr "" + +#: templates/course/course_allocation_view.html:50 +msgid "Edit or Update" +msgstr "" + +#: templates/course/course_allocation_view.html:53 +msgid "Deallocate" +msgstr "" + +#: templates/course/course_allocation_view.html:65 +msgid "No Course Allocated." +msgstr "" + +#: templates/course/course_allocation_view.html:69 +msgid "Allocate now" +msgstr "" + +#: templates/course/course_registration.html:13 +msgid "Course Registration" +msgstr "" + +#: templates/course/course_registration.html:17 +#: templates/course/course_registration.html:35 +#: templates/setting/admin_panel.html:58 +msgid "Course Add" +msgstr "" + +#: templates/course/course_registration.html:17 +#: templates/setting/admin_panel.html:58 +msgid "Drop" +msgstr "" + +#: templates/course/course_registration.html:25 +msgid "Calender is off" +msgstr "" + +#: templates/course/course_registration.html:26 +msgid "Check the university calender" +msgstr "" + +#: templates/course/course_registration.html:38 +#: templates/course/course_registration.html:200 +msgid "Save Score" +msgstr "" + +#: templates/course/course_registration.html:43 +#: templates/result/assessment_results.html:32 +#: templates/result/grade_results.html:32 +msgid "First Semester:" +msgstr "" + +#: templates/course/course_registration.html:48 +#: templates/course/course_registration.html:111 +#: templates/course/course_registration.html:216 +msgid "Mark" +msgstr "" + +#: templates/course/course_registration.html:49 +#: templates/course/course_registration.html:112 +#: templates/course/course_registration.html:217 +#: templates/course/program_single.html:40 +#: templates/course/user_course_list.html:49 +#: templates/course/user_course_list.html:93 +#: templates/result/assessment_results.html:38 +#: templates/result/grade_results.html:38 +#: templates/result/grade_results.html:103 +msgid "Course Code" +msgstr "" + +#: templates/course/course_registration.html:50 +#: templates/course/course_registration.html:113 +#: templates/course/course_registration.html:218 +#: templates/result/assessment_results.html:37 +#: templates/result/assessment_results.html:79 +#: templates/result/grade_results.html:37 +#: templates/result/grade_results.html:102 +msgid "Course Title" +msgstr "" + +#: templates/course/course_registration.html:51 +#: templates/course/course_registration.html:114 +#: templates/course/course_registration.html:219 +#: templates/result/assessment_results.html:39 +#: templates/result/assessment_results.html:81 +msgid "Cr.Hr(s)" +msgstr "" + +#: templates/course/course_registration.html:52 +#: templates/course/course_registration.html:115 +#: templates/course/course_registration.html:220 +#: templates/course/program_single.html:43 +#: templates/course/user_course_list.html:51 +#: templates/course/user_course_list.html:95 +msgid "Year" +msgstr "" + +#: templates/course/course_registration.html:53 +#: templates/course/course_registration.html:116 +#: templates/course/course_registration.html:221 +msgid "Classification" +msgstr "" + +#: templates/course/course_registration.html:54 +#: templates/course/course_registration.html:117 +#: templates/course/course_registration.html:222 +msgid "Elective Group" +msgstr "" + +#: templates/course/course_registration.html:69 +#: templates/course/course_registration.html:132 +#: templates/course/course_registration.html:236 +msgid "Elective" +msgstr "" + +#: templates/course/course_registration.html:71 +#: templates/course/course_registration.html:134 +#: templates/course/course_registration.html:238 +msgid "Core" +msgstr "" + +#: templates/course/course_registration.html:83 +#: templates/course/course_registration.html:146 +#: templates/course/course_registration.html:249 +msgid "No Course." +msgstr "" + +#: templates/course/course_registration.html:97 +msgid "First semester Credit(s):" +msgstr "" + +#: templates/course/course_registration.html:106 +#: templates/result/assessment_results.html:74 +#: templates/result/grade_results.html:97 +msgid "Second Semester:" +msgstr "" + +#: templates/course/course_registration.html:160 +msgid "Second semester credit(s):" +msgstr "" + +#: templates/course/course_registration.html:165 +msgid "Registerd course credit(s):" +msgstr "" + +#: templates/course/course_registration.html:170 +#: templates/course/course_registration.html:263 +msgid "Total credit(s):" +msgstr "" + +#: templates/course/course_registration.html:186 +msgid "Print Registration Form" +msgstr "" + +#: templates/course/course_registration.html:187 +msgid "Print Registerd Courses" +msgstr "" + +#: templates/course/course_registration.html:191 +msgid "Course Drop" +msgstr "" + +#: templates/course/course_registration.html:201 +msgid "Drop Selected" +msgstr "" + +#: templates/course/course_single.html:22 +msgid "Edit course" +msgstr "" + +#: templates/course/course_single.html:27 +msgid "Upload new file" +msgstr "" + +#: templates/course/course_single.html:30 +msgid "Upload new video" +msgstr "" + +#: templates/course/course_single.html:36 +msgid "Take a Quiz" +msgstr "" + +#: templates/course/course_single.html:51 +msgid "Video Tutorials" +msgstr "" + +#: templates/course/course_single.html:57 +msgid "Video Title" +msgstr "" + +#: templates/course/course_single.html:58 +#: templates/course/course_single.html:134 +msgid "Uploaded Date" +msgstr "" + +#: templates/course/course_single.html:59 +msgid "Get Started" +msgstr "" + +#: templates/course/course_single.html:79 +msgid "Play now" +msgstr "" + +#: templates/course/course_single.html:104 +msgid "No video Uploaded." +msgstr "" + +#: templates/course/course_single.html:108 +#: templates/course/course_single.html:185 +msgid "Upload now." +msgstr "" + +#: templates/course/course_single.html:127 +msgid "Documentations" +msgstr "" + +#: templates/course/course_single.html:133 +msgid "File name" +msgstr "" + +#: templates/course/course_single.html:135 +msgid "Updated Date" +msgstr "" + +#: templates/course/course_single.html:136 +msgid "Downloads" +msgstr "" + +#: templates/course/course_single.html:156 +msgid "Download" +msgstr "" + +#: templates/course/course_single.html:181 +msgid "No File Uploaded." +msgstr "" + +#: templates/course/course_single.html:205 +msgid "Lecturer(s)" +msgstr "" + +#: templates/course/course_single.html:232 +msgid "No lecturer assigned for this course" +msgstr "" + +#: templates/course/program_add.html:13 +msgid "Program Form" +msgstr "" + +#: templates/course/program_add.html:22 +msgid "Program Add Form" +msgstr "" + +#: templates/course/program_list.html:16 +msgid "Add Program" +msgstr "" + +#: templates/course/program_list.html:20 +msgid "Program List" +msgstr "" + +#: templates/course/program_list.html:32 +msgid "Program Name" +msgstr "" + +#: templates/course/program_list.html:33 +msgid "Summary" +msgstr "" + +#: templates/course/program_list.html:69 +msgid "No program." +msgstr "" + +#: templates/course/program_list.html:73 +msgid "Add program now." +msgstr "" + +#: templates/course/program_single.html:18 +msgid "Add Course" +msgstr "" + +#: templates/course/program_single.html:39 +#: templates/course/user_course_list.html:48 +#: templates/course/user_course_list.html:92 +msgid "Course Name" +msgstr "" + +#: templates/course/program_single.html:41 +#: templates/course/user_course_list.html:50 +#: templates/course/user_course_list.html:94 +#: templates/result/grade_results.html:39 +#: templates/result/grade_results.html:104 +msgid "Cr.Hr" +msgstr "" + +#: templates/course/program_single.html:45 +#: templates/course/user_course_list.html:53 +#: templates/course/user_course_list.html:97 +msgid "Current Semester" +msgstr "" + +#: templates/course/program_single.html:92 +msgid "No course for this progrm." +msgstr "" + +#: templates/course/program_single.html:96 +msgid "Add one now." +msgstr "" + +#: templates/course/user_course_list.html:42 +msgid "Taken Courses:" +msgstr "" + +#: templates/course/user_course_list.html:54 +#: templates/course/user_course_list.html:75 +msgid "Taken" +msgstr "" + +#: templates/course/user_course_list.html:86 +msgid "All Courses:" +msgstr "" + +#: templates/invoice_detail.html:2 templates/invoices.html:1 +msgid "Invoices" +msgstr "" + +#: templates/invoices.html:5 +msgid "Pay now" +msgstr "" + +#: templates/navbar.html:12 +msgid "Search All... #course, #program, #Quiz, #News, #Events" +msgstr "" + +#: templates/navbar.html:42 +msgid "Setting" +msgstr "" + +#: templates/navbar.html:46 +msgid "Signout" +msgstr "" + +#: templates/payments/charge.html:24 +msgid "Payment Succeed, You has been make payment successfuly." +msgstr "" + +#: templates/payments/charge.html:25 +msgid "Redirect to your dashboard in" +msgstr "" + +#: templates/payments/coinbase.html:3 templates/payments/coinbase.html:8 +msgid "Coinbase" +msgstr "" + +#: templates/pdf/lecturer_list.html:46 +msgid "Address/City" +msgstr "" + +#: templates/progress.html:4 templates/progress.html:12 +msgid "Progress Page" +msgstr "" + +#: templates/progress.html:5 +msgid "User Progress Page" +msgstr "" + +#: templates/progress.html:18 +msgid "Question Category Scores" +msgstr "" + +#: templates/progress.html:25 templates/quiz/sitting_detail.html:19 +msgid "Category" +msgstr "" + +#: templates/progress.html:26 +msgid "Correctly answererd" +msgstr "" + +#: templates/progress.html:27 +msgid "Incorrect" +msgstr "" + +#: templates/progress.html:56 +msgid "Previous exam papers" +msgstr "" + +#: templates/progress.html:58 +msgid "Below are the results of exams that you have sat." +msgstr "" + +#: templates/progress.html:60 templates/quiz/sitting_list.html:29 +msgid "Total complete exams:" +msgstr "" + +#: templates/progress.html:67 +msgid "Quiz Title" +msgstr "" + +#: templates/progress.html:69 +msgid "Possible Score" +msgstr "" + +#: templates/progress.html:70 +#, python-format +msgid "Out of 100%%" +msgstr "" + +#: templates/progress.html:94 +msgid "No recordes yet. Try to do some quizzes in your course." +msgstr "" + +#: templates/question.html:28 templates/result.html:38 +msgid "The previous question" +msgstr "" + +#: templates/question.html:37 +msgid "Your answer was" +msgstr "" + +#: templates/question.html:85 templates/result.html:85 +msgid "No explanation set to this question." +msgstr "" + +#: templates/question.html:108 +msgid "Quiz instractions" +msgstr "" + +#: templates/question.html:116 +msgid "Understood" +msgstr "" + +#: templates/question.html:125 +msgid "of" +msgstr "" + +#: templates/question.html:130 +msgid "Quiz category" +msgstr "" + +#: templates/question.html:157 +msgid "Previous" +msgstr "" + +#: templates/quiz/mcquestion_form.html:14 +msgid "MC Question Form" +msgstr "" + +#: templates/quiz/mcquestion_form.html:18 +msgid "Add questions" +msgstr "" + +#: templates/quiz/mcquestion_form.html:31 +msgid "question added" +msgstr "" + +#: templates/quiz/mcquestion_form.html:34 +msgid "Correct the error(s) below." +msgstr "" + +#: templates/quiz/quiz_form.html:14 +msgid "Quiz Form" +msgstr "" + +#: templates/quiz/quiz_form.html:18 +msgid "Quiz form for" +msgstr "" + +#: templates/quiz/quiz_form.html:55 +msgid "Hold down" +msgstr "" + +#: templates/quiz/quiz_form.html:55 +#: venv/lib/python3.9/site-packages/django/utils/text.py:322 +msgid "or" +msgstr "" + +#: templates/quiz/quiz_form.html:55 +msgid "on a Mac, to select more than one." +msgstr "" + +#: templates/quiz/quiz_form.html:66 +msgid "Continue" +msgstr "" + +#: templates/quiz/quiz_list.html:22 +msgid "Add Quiz" +msgstr "" + +#: templates/quiz/quiz_list.html:54 +msgid "You will only get one attempt at this quiz" +msgstr "" + +#: templates/quiz/quiz_list.html:58 +msgid "Start quiz" +msgstr "" + +#: templates/quiz/sitting_detail.html:4 +msgid "Result of" +msgstr "" + +#: templates/quiz/sitting_detail.html:4 templates/search/search_view.html:43 +msgid "for" +msgstr "" + +#: templates/quiz/sitting_detail.html:12 +msgid "Completed Exams" +msgstr "" + +#: templates/quiz/sitting_detail.html:13 +msgid "Marking" +msgstr "" + +#: templates/quiz/sitting_detail.html:18 templates/result.html:99 +msgid "Quiz title" +msgstr "" + +#: templates/quiz/sitting_detail.html:25 templates/quiz/sitting_list.html:38 +msgid "Completed" +msgstr "" + +#: templates/quiz/sitting_detail.html:35 +msgid "User answer" +msgstr "" + +#: templates/quiz/sitting_detail.html:54 +msgid "incorrect" +msgstr "" + +#: templates/quiz/sitting_detail.html:62 +msgid "Toggle whether correct" +msgstr "" + +#: templates/quiz/sitting_list.html:3 +msgid "All Quizzes" +msgstr "" + +#: templates/quiz/sitting_list.html:16 +msgid "List of complete exams" +msgstr "" + +#: templates/quiz/sitting_list.html:24 templates/snippets/filter_form.html:12 +msgid "Filter" +msgstr "" + +#: templates/quiz/sitting_list.html:54 +msgid "View details" +msgstr "" + +#: templates/quiz/sitting_list.html:63 +msgid "No completed exams for you" +msgstr "" + +#: templates/registration/login.html:3 +msgid "Dj Learning Management System - Login" +msgstr "" + +#: templates/registration/login.html:11 +msgid "Sign in" +msgstr "" + +#: templates/registration/login.html:16 +msgid "ID Number" +msgstr "" + +#: templates/registration/login.html:21 +msgid "Password" +msgstr "" + +#: templates/registration/login.html:25 templates/registration/register.html:73 +msgid "Invalid ID & Password." +msgstr "" + +#: templates/registration/login.html:28 +msgid "SIGN IN" +msgstr "" + +#: templates/registration/login.html:32 +msgid "Forgot password ?" +msgstr "" + +#: templates/registration/password_reset.html:3 +msgid "Password Reset | Learning management system" +msgstr "" + +#: templates/registration/password_reset.html:7 +msgid "Password Reset" +msgstr "" + +#: templates/registration/password_reset.html:17 +msgid "Request Password Reset" +msgstr "" + +#: templates/registration/password_reset_complete.html:3 +msgid "Password Reset Complete | Learning management system" +msgstr "" + +#: templates/registration/password_reset_complete.html:8 +msgid "Password Reset Complete" +msgstr "" + +#: templates/registration/password_reset_complete.html:11 +msgid "Your password has been set, you are now able to Log In!" +msgstr "" + +#: templates/registration/password_reset_complete.html:13 +msgid "Sign In Here" +msgstr "" + +#: templates/registration/password_reset_confirm.html:22 +msgid "Confirm New Password" +msgstr "" + +#: templates/registration/password_reset_confirm.html:31 +msgid "Reset Password" +msgstr "" + +#: templates/registration/password_reset_done.html:3 +msgid "Email Sent | Learning management system" +msgstr "" + +#: templates/registration/password_reset_done.html:8 +msgid "Email sent" +msgstr "" + +#: templates/registration/password_reset_done.html:14 +msgid "Back To Login" +msgstr "" + +#: templates/registration/register.html:3 +msgid "Register | Learning management system" +msgstr "" + +#: templates/registration/register.html:12 +msgid "Create Your Account" +msgstr "" + +#: templates/registration/register.html:20 +msgid "Login Form" +msgstr "" + +#: templates/registration/register.html:76 +msgid "SIGN UP" +msgstr "" + +#: templates/registration/register.html:79 +msgid "Already Registered ?" +msgstr "" + +#: templates/registration/register.html:79 +msgid "Login" +msgstr "" + +#: templates/result.html:8 +msgid "Quiz Results for" +msgstr "" + +#: templates/result.html:20 templates/result/assessment_results.html:29 +#: templates/result/grade_results.html:29 +msgid "Result" +msgstr "" + +#: templates/result.html:26 +msgid "Calculating your result..." +msgstr "" + +#: templates/result.html:96 +msgid "Quiz result" +msgstr "" + +#: templates/result.html:103 +msgid "You answered" +msgstr "" + +#: templates/result.html:103 +msgid "questions correctly out of" +msgstr "" + +#: templates/result.html:103 +msgid "giving you" +msgstr "" + +#: templates/result.html:103 +#, python-format +msgid "%% correct" +msgstr "" + +#: templates/result.html:117 +msgid "Review the questions below and try the quiz again in the future" +msgstr "" + +#: templates/result.html:119 +msgid "The result of this quiz will be stored in your progress section" +msgstr "" + +#: templates/result.html:121 +msgid "so you can review and monitor your progression" +msgstr "" + +#: templates/result.html:134 +msgid "Your session score is" +msgstr "" + +#: templates/result.html:134 +msgid "out of a possible" +msgstr "" + +#: templates/result.html:157 +msgid "No explanation set for this question." +msgstr "" + +#: templates/result.html:164 +msgid "Your answer" +msgstr "" + +#: templates/result/add_score.html:29 +msgid "Select Your Course Here" +msgstr "" + +#: templates/result/add_score.html:35 templates/result/add_score_for.html:24 +msgid "No course." +msgstr "" + +#: templates/result/add_score.html:39 +msgid "To manage scores, please select the course using the button above." +msgstr "" + +#: templates/result/add_score_for.html:30 +msgid "Students result form" +msgstr "" + +#: templates/result/add_score_for.html:41 +msgid "Grade report" +msgstr "" + +#: templates/result/add_score_for.html:54 +#: templates/result/assessment_results.html:41 +#: templates/result/assessment_results.html:83 +msgid "Mid exam" +msgstr "" + +#: templates/result/add_score_for.html:56 +#: templates/result/assessment_results.html:43 +#: templates/result/assessment_results.html:85 +msgid "Attendance" +msgstr "" + +#: templates/result/add_score_for.html:57 +#: templates/result/assessment_results.html:44 +#: templates/result/assessment_results.html:86 +msgid "Final exam" +msgstr "" + +#: templates/result/add_score_for.html:58 +#: templates/result/assessment_results.html:45 +#: templates/result/assessment_results.html:87 +msgid "Total" +msgstr "" + +#: templates/result/add_score_for.html:59 +msgid "Point" +msgstr "" + +#: templates/result/add_score_for.html:60 +#: templates/result/grade_results.html:40 +msgid "Grade" +msgstr "" + +#: templates/result/add_score_for.html:61 +#: templates/result/grade_results.html:42 +#: templates/result/grade_results.html:107 +msgid "Comment" +msgstr "" + +#: templates/result/grade_results.html:41 +#: templates/result/grade_results.html:106 +msgid "Points" +msgstr "" + +#: templates/result/grade_results.html:58 +#: templates/result/grade_results.html:123 +msgid "PASS" +msgstr "" + +#: templates/result/grade_results.html:60 +#: templates/result/grade_results.html:125 +msgid "FAIL" +msgstr "" + +#: templates/result/grade_results.html:79 +msgid "Total first semester credit:" +msgstr "" + +#: templates/result/grade_results.html:88 +#: templates/result/grade_results.html:177 +msgid "First Semester GPA:" +msgstr "" + +#: templates/result/grade_results.html:105 +msgid "GRADE" +msgstr "" + +#: templates/result/grade_results.html:139 +msgid "Total second semester credit:" +msgstr "" + +#: templates/result/grade_results.html:144 +msgid "Total Credit:" +msgstr "" + +#: templates/result/grade_results.html:153 +#: templates/result/grade_results.html:184 +msgid "Second Semester GPA:" +msgstr "" + +#: templates/result/grade_results.html:162 +#: templates/result/grade_results.html:192 +msgid "Previous CGPA:" +msgstr "" + +#: templates/search/search_view.html:3 +msgid "Search result for" +msgstr "" + +#: templates/search/search_view.html:12 +msgid "Search" +msgstr "" + +#: templates/search/search_view.html:43 +msgid "result" +msgstr "" + +#: templates/search/search_view.html:62 +msgid "Program of" +msgstr "" + +#: templates/search/search_view.html:69 templates/search/search_view.html:126 +msgid "News And Events" +msgstr "" + +#: templates/search/search_view.html:72 +msgid "Date:" +msgstr "" + +#: templates/search/search_view.html:82 +msgid "quiz" +msgstr "" + +#: templates/search/search_view.html:82 +msgid "Course:" +msgstr "" + +#: templates/search/search_view.html:122 +msgid "Search by:" +msgstr "" + +#: templates/search/search_view.html:124 +msgid "Title or Description" +msgstr "" + +#: templates/search/search_view.html:125 +msgid "Title, Code or Description" +msgstr "" + +#: templates/search/search_view.html:127 +msgid "Title, Description or Category(practice, assignment and exam)" +msgstr "" + +#: templates/setting/admin_panel.html:37 templates/setting/admin_panel.html:42 +#: templates/setting/admin_panel.html:47 templates/setting/admin_panel.html:52 +#: templates/setting/admin_panel.html:70 templates/setting/admin_panel.html:75 +#: templates/setting/admin_panel.html:80 +msgid "Manage" +msgstr "" + +#: templates/setting/admin_panel.html:43 +msgid "students" +msgstr "" + +#: templates/setting/admin_panel.html:48 +msgid "sessions" +msgstr "" + +#: templates/setting/admin_panel.html:53 +msgid "semesters" +msgstr "" + +#: templates/setting/admin_panel.html:64 +msgid "Switch" +msgstr "" + +#: templates/setting/admin_panel.html:71 +msgid "programs" +msgstr "" + +#: templates/setting/admin_panel.html:76 +msgid "course allocations" +msgstr "" + +#: templates/setting/password_change.html:12 +msgid "Password Change" +msgstr "" + +#: templates/setting/profile_info_change.html:12 +msgid "Account setting" +msgstr "" + +#: templates/setting/profile_info_change.html:16 +msgid "Account Settings" +msgstr "" + +#: templates/setting/profile_info_change.html:44 +msgid "Update Profile" +msgstr "" + +#: templates/upload/upload_file_form.html:14 +msgid "File upload" +msgstr "" + +#: templates/upload/upload_file_form.html:18 +msgid "File upload for" +msgstr "" + +#: templates/upload/upload_file_form.html:26 +msgid "File Upload Form" +msgstr "" + +#: templates/upload/upload_file_form.html:33 +#: templates/upload/upload_video_form.html:32 +msgid "Upload" +msgstr "" + +#: templates/upload/upload_video_form.html:14 +msgid "Video upload" +msgstr "" + +#: templates/upload/upload_video_form.html:18 +msgid "Video upload for" +msgstr "" + +#: templates/upload/upload_video_form.html:26 +msgid "Video Upload Form" +msgstr "" + +#: templates/upload/video_single.html:35 +msgid "No video description set." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/_termui_impl.py:518 +#, python-brace-format +msgid "{editor}: Editing failed" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/_termui_impl.py:522 +#, python-brace-format +msgid "{editor}: Editing failed: {e}" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/core.py:1120 +msgid "Aborted!" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/core.py:1309 +#: venv/lib/python3.9/site-packages/click/decorators.py:559 +msgid "Show this message and exit." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/core.py:1340 +#: venv/lib/python3.9/site-packages/click/core.py:1370 +#, python-brace-format +msgid "(Deprecated) {text}" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/core.py:1387 +msgid "Options" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/core.py:1413 +#, python-brace-format +msgid "Got unexpected extra argument ({args})" +msgid_plural "Got unexpected extra arguments ({args})" +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/click/core.py:1429 +msgid "DeprecationWarning: The command {name!r} is deprecated." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/core.py:1636 +msgid "Commands" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/core.py:1668 +msgid "Missing command." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/core.py:1746 +msgid "No such command {name!r}." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/core.py:2310 +msgid "Value must be an iterable." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/core.py:2331 +#, python-brace-format +msgid "Takes {nargs} values but 1 was given." +msgid_plural "Takes {nargs} values but {len} were given." +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/click/core.py:2778 +#, python-brace-format +msgid "env var: {var}" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/core.py:2808 +msgid "(dynamic)" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/core.py:2821 +#, python-brace-format +msgid "default: {default}" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/core.py:2834 +msgid "required" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/decorators.py:465 +#, python-format +msgid "%(prog)s, version %(version)s" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/decorators.py:528 +msgid "Show the version and exit." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/exceptions.py:44 +#: venv/lib/python3.9/site-packages/click/exceptions.py:80 +#, python-brace-format +msgid "Error: {message}" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/exceptions.py:72 +#, python-brace-format +msgid "Try '{command} {option}' for help." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/exceptions.py:121 +#, python-brace-format +msgid "Invalid value: {message}" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/exceptions.py:123 +#, python-brace-format +msgid "Invalid value for {param_hint}: {message}" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/exceptions.py:179 +msgid "Missing argument" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/exceptions.py:181 +msgid "Missing option" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/exceptions.py:183 +msgid "Missing parameter" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/exceptions.py:185 +#, python-brace-format +msgid "Missing {param_type}" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/exceptions.py:192 +#, python-brace-format +msgid "Missing parameter: {param_name}" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/exceptions.py:212 +#, python-brace-format +msgid "No such option: {name}" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/exceptions.py:224 +#, python-brace-format +msgid "Did you mean {possibility}?" +msgid_plural "(Possible options: {possibilities})" +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/click/exceptions.py:262 +msgid "unknown error" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/exceptions.py:269 +msgid "Could not open file {filename!r}: {message}" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/parser.py:231 +msgid "Argument {name!r} takes {nargs} values." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/parser.py:413 +msgid "Option {name!r} does not take a value." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/parser.py:474 +msgid "Option {name!r} requires an argument." +msgid_plural "Option {name!r} requires {nargs} arguments." +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/click/shell_completion.py:319 +msgid "Shell completion is not supported for Bash versions older than 4.4." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/shell_completion.py:326 +msgid "Couldn't detect Bash version, shell completion is not supported." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/termui.py:158 +msgid "Repeat for confirmation" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/termui.py:174 +msgid "Error: The value you entered was invalid." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/termui.py:176 +#, python-brace-format +msgid "Error: {e.message}" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/termui.py:187 +msgid "Error: The two entered values do not match." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/termui.py:243 +msgid "Error: invalid input" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/termui.py:773 +msgid "Press any key to continue..." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/types.py:266 +#, python-brace-format +msgid "" +"Choose from:\n" +"\t{choices}" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/types.py:298 +msgid "{value!r} is not {choice}." +msgid_plural "{value!r} is not one of {choices}." +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/click/types.py:392 +msgid "{value!r} does not match the format {format}." +msgid_plural "{value!r} does not match the formats {formats}." +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/click/types.py:414 +msgid "{value!r} is not a valid {number_type}." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/types.py:470 +#, python-brace-format +msgid "{value} is not in the range {range}." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/types.py:611 +msgid "{value!r} is not a valid boolean." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/types.py:635 +msgid "{value!r} is not a valid UUID." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/types.py:822 +msgid "file" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/types.py:824 +msgid "directory" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/types.py:826 +msgid "path" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/types.py:877 +msgid "{name} {filename!r} does not exist." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/types.py:886 +msgid "{name} {filename!r} is a file." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/types.py:894 +#, python-brace-format +msgid "{name} '{filename}' is a directory." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/types.py:903 +msgid "{name} {filename!r} is not readable." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/types.py:912 +msgid "{name} {filename!r} is not writable." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/types.py:921 +msgid "{name} {filename!r} is not executable." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/types.py:988 +#, python-brace-format +msgid "{len_type} values are required, but {len_value} was given." +msgid_plural "{len_type} values are required, but {len_value} were given." +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/crispy_forms/tests/test_form_helper.py:130 +#: venv/lib/python3.9/site-packages/crispy_forms/tests/test_form_helper.py:140 +#: venv/lib/python3.9/site-packages/django/forms/fields.py:91 +msgid "This field is required." +msgstr "" + +#: venv/lib/python3.9/site-packages/crispy_forms/tests/test_layout.py:392 +msgid "i18n text" +msgstr "" + +#: venv/lib/python3.9/site-packages/crispy_forms/tests/test_layout.py:394 +msgid "i18n legend" +msgstr "" + +#: venv/lib/python3.9/site-packages/crispy_forms/tests/test_layout_objects.py:143 +#: venv/lib/python3.9/site-packages/django/core/validators.py:22 +msgid "Enter a valid value." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/contrib/messages/apps.py:15 +msgid "Messages" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/contrib/sitemaps/apps.py:8 +msgid "Site Maps" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/contrib/staticfiles/apps.py:9 +msgid "Static Files" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/contrib/syndication/apps.py:7 +msgid "Syndication" +msgstr "" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +#: venv/lib/python3.9/site-packages/django/core/paginator.py:30 +msgid "…" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/core/paginator.py:50 +msgid "That page number is not an integer" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/core/paginator.py:52 +msgid "That page number is less than 1" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/core/paginator.py:54 +msgid "That page contains no results" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:104 +#: venv/lib/python3.9/site-packages/django/forms/fields.py:752 +msgid "Enter a valid URL." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:165 +msgid "Enter a valid integer." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:176 +msgid "Enter a valid email address." +msgstr "" + +#. Translators: "letters" means latin letters: a-z and A-Z. +#: venv/lib/python3.9/site-packages/django/core/validators.py:259 +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:267 +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:279 +#: venv/lib/python3.9/site-packages/django/core/validators.py:287 +#: venv/lib/python3.9/site-packages/django/core/validators.py:316 +msgid "Enter a valid IPv4 address." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:296 +#: venv/lib/python3.9/site-packages/django/core/validators.py:317 +msgid "Enter a valid IPv6 address." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:308 +#: venv/lib/python3.9/site-packages/django/core/validators.py:315 +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:351 +msgid "Enter only digits separated by commas." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:357 +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:392 +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:401 +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:410 +#, python-format +msgid "Ensure this value is a multiple of step size %(limit_value)s." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:420 +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:438 +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:461 +#: venv/lib/python3.9/site-packages/django/forms/fields.py:347 +#: venv/lib/python3.9/site-packages/django/forms/fields.py:386 +msgid "Enter a number." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:463 +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:468 +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:473 +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:544 +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:605 +msgid "Null characters are not allowed." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/base.py:1425 +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/constraints.py:17 +#, python-format +msgid "Constraint “%(name)s” is violated." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:128 +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:129 +msgid "This field cannot be null." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:130 +msgid "This field cannot be blank." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:131 +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "" + +#. Translators: The 'lookup_type' is one of 'date', 'year' or +#. 'month'. Eg: "Title must be unique for pub_date year" +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:135 +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:173 +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1094 +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1095 +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1097 +msgid "Boolean (Either True or False)" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1147 +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1149 +msgid "String (unlimited)" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1253 +msgid "Comma-separated integers" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1354 +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1358 +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1493 +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1362 +msgid "Date (without time)" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1489 +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1497 +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1502 +msgid "Date (with time)" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1626 +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1628 +msgid "Decimal number" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1789 +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1793 +msgid "Duration" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1845 +msgid "Email address" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1870 +msgid "File path" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1948 +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1950 +msgid "Floating point number" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1990 +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1992 +msgid "Integer" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2088 +msgid "Big (8 byte) integer" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2105 +msgid "Small integer" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2113 +msgid "IPv4 address" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2144 +msgid "IP address" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2237 +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2238 +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2240 +msgid "Boolean (Either True, False or None)" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2291 +msgid "Positive big integer" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2306 +msgid "Positive integer" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2321 +msgid "Positive small integer" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2337 +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2373 +msgid "Text" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2448 +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2452 +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2456 +msgid "Time" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2564 +msgid "URL" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2588 +msgid "Raw binary data" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2653 +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2655 +msgid "Universally unique identifier" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/files.py:232 +msgid "File" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/files.py:393 +msgid "Image" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/json.py:26 +msgid "A JSON object" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/json.py:28 +msgid "Value must be valid JSON." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/related.py:919 +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/related.py:921 +msgid "Foreign Key (type determined by related field)" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/related.py:1212 +msgid "One-to-one relationship" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/related.py:1269 +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/related.py:1271 +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/related.py:1319 +msgid "Many-to-many relationship" +msgstr "" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the label +#: venv/lib/python3.9/site-packages/django/forms/boundfield.py:184 +msgid ":?.!" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/fields.py:298 +msgid "Enter a whole number." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/fields.py:467 +#: venv/lib/python3.9/site-packages/django/forms/fields.py:1241 +msgid "Enter a valid date." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/fields.py:490 +#: venv/lib/python3.9/site-packages/django/forms/fields.py:1242 +msgid "Enter a valid time." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/fields.py:517 +msgid "Enter a valid date/time." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/fields.py:551 +msgid "Enter a valid duration." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/fields.py:552 +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/fields.py:621 +msgid "No file was submitted. Check the encoding type on the form." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/fields.py:622 +msgid "No file was submitted." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/fields.py:623 +msgid "The submitted file is empty." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/fields.py:625 +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/django/forms/fields.py:630 +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/fields.py:694 +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/fields.py:857 +#: venv/lib/python3.9/site-packages/django/forms/fields.py:949 +#: venv/lib/python3.9/site-packages/django/forms/models.py:1566 +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/fields.py:951 +#: venv/lib/python3.9/site-packages/django/forms/fields.py:1070 +#: venv/lib/python3.9/site-packages/django/forms/models.py:1564 +msgid "Enter a list of values." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/fields.py:1071 +msgid "Enter a complete value." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/fields.py:1310 +msgid "Enter a valid UUID." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/fields.py:1340 +msgid "Enter a valid JSON." +msgstr "" + +#. Translators: This is the default suffix added to form field labels +#: venv/lib/python3.9/site-packages/django/forms/forms.py:98 +msgid ":" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/forms.py:244 +#: venv/lib/python3.9/site-packages/django/forms/forms.py:328 +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/formsets.py:63 +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/formsets.py:67 +#, python-format +msgid "Please submit at most %(num)d form." +msgid_plural "Please submit at most %(num)d forms." +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/django/forms/formsets.py:72 +#, python-format +msgid "Please submit at least %(num)d form." +msgid_plural "Please submit at least %(num)d forms." +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/django/forms/formsets.py:484 +#: venv/lib/python3.9/site-packages/django/forms/formsets.py:491 +msgid "Order" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/models.py:886 +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/models.py:891 +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/models.py:898 +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/models.py:907 +msgid "Please correct the duplicate values below." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/models.py:1338 +msgid "The inline value did not match the parent instance." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/models.py:1429 +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/models.py:1568 +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/utils.py:226 +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/widgets.py:463 +msgid "Clear" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/widgets.py:464 +msgid "Currently" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/widgets.py:465 +msgid "Change" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/widgets.py:794 +msgid "Unknown" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/widgets.py:795 +msgid "Yes" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/widgets.py:796 +msgid "No" +msgstr "" + +#. Translators: Please do not add spaces around commas. +#: venv/lib/python3.9/site-packages/django/template/defaultfilters.py:874 +msgid "yes,no,maybe" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/template/defaultfilters.py:904 +#: venv/lib/python3.9/site-packages/django/template/defaultfilters.py:921 +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/django/template/defaultfilters.py:923 +#, python-format +msgid "%s KB" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/template/defaultfilters.py:925 +#, python-format +msgid "%s MB" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/template/defaultfilters.py:927 +#, python-format +msgid "%s GB" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/template/defaultfilters.py:929 +#, python-format +msgid "%s TB" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/template/defaultfilters.py:931 +#, python-format +msgid "%s PB" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dateformat.py:73 +msgid "p.m." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dateformat.py:74 +msgid "a.m." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dateformat.py:79 +msgid "PM" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dateformat.py:80 +msgid "AM" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dateformat.py:152 +msgid "midnight" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dateformat.py:154 +msgid "noon" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:7 +msgid "Monday" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:8 +msgid "Tuesday" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:9 +msgid "Wednesday" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:10 +msgid "Thursday" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:11 +msgid "Friday" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:12 +msgid "Saturday" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:13 +msgid "Sunday" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:16 +msgid "Mon" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:17 +msgid "Tue" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:18 +msgid "Wed" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:19 +msgid "Thu" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:20 +msgid "Fri" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:21 +msgid "Sat" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:22 +msgid "Sun" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:25 +msgid "January" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:26 +msgid "February" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:27 +msgid "March" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:28 +msgid "April" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:29 +msgid "May" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:30 +msgid "June" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:31 +msgid "July" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:32 +msgid "August" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:33 +msgid "September" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:34 +msgid "October" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:35 +msgid "November" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:36 +msgid "December" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:39 +msgid "jan" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:40 +msgid "feb" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:41 +msgid "mar" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:42 +msgid "apr" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:43 +msgid "may" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:44 +msgid "jun" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:45 +msgid "jul" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:46 +msgid "aug" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:47 +msgid "sep" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:48 +msgid "oct" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:49 +msgid "nov" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:50 +msgid "dec" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:53 +msgctxt "abbrev. month" +msgid "Jan." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:54 +msgctxt "abbrev. month" +msgid "Feb." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:55 +msgctxt "abbrev. month" +msgid "March" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:56 +msgctxt "abbrev. month" +msgid "April" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:57 +msgctxt "abbrev. month" +msgid "May" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:58 +msgctxt "abbrev. month" +msgid "June" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:59 +msgctxt "abbrev. month" +msgid "July" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:60 +msgctxt "abbrev. month" +msgid "Aug." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:61 +msgctxt "abbrev. month" +msgid "Sept." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:62 +msgctxt "abbrev. month" +msgid "Oct." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:63 +msgctxt "abbrev. month" +msgid "Nov." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:64 +msgctxt "abbrev. month" +msgid "Dec." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:67 +msgctxt "alt. month" +msgid "January" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:68 +msgctxt "alt. month" +msgid "February" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:69 +msgctxt "alt. month" +msgid "March" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:70 +msgctxt "alt. month" +msgid "April" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:71 +msgctxt "alt. month" +msgid "May" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:72 +msgctxt "alt. month" +msgid "June" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:73 +msgctxt "alt. month" +msgid "July" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:74 +msgctxt "alt. month" +msgid "August" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:75 +msgctxt "alt. month" +msgid "September" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:76 +msgctxt "alt. month" +msgid "October" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:77 +msgctxt "alt. month" +msgid "November" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:78 +msgctxt "alt. month" +msgid "December" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/ipv6.py:8 +msgid "This is not a valid IPv6 address." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/text.py:137 +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "" + +#. Translators: This string is used as a separator between list elements +#: venv/lib/python3.9/site-packages/django/utils/text.py:341 +#: venv/lib/python3.9/site-packages/django/utils/timesince.py:135 +msgid ", " +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/timesince.py:8 +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/django/utils/timesince.py:9 +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/django/utils/timesince.py:10 +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/django/utils/timesince.py:11 +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/django/utils/timesince.py:12 +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/django/utils/timesince.py:13 +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/django/views/csrf.py:111 +msgid "Forbidden" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/csrf.py:112 +msgid "CSRF verification failed. Request aborted." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/csrf.py:116 +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/csrf.py:122 +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/csrf.py:127 +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/csrf.py:136 +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/csrf.py:142 +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/csrf.py:148 +msgid "More information is available with DEBUG=True." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/generic/dates.py:44 +msgid "No year specified" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/generic/dates.py:64 +#: venv/lib/python3.9/site-packages/django/views/generic/dates.py:115 +#: venv/lib/python3.9/site-packages/django/views/generic/dates.py:214 +msgid "Date out of range" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/generic/dates.py:94 +msgid "No month specified" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/generic/dates.py:147 +msgid "No day specified" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/generic/dates.py:194 +msgid "No week specified" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/generic/dates.py:349 +#: venv/lib/python3.9/site-packages/django/views/generic/dates.py:380 +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/generic/dates.py:652 +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/generic/dates.py:692 +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/generic/detail.py:56 +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/generic/list.py:70 +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/generic/list.py:77 +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/generic/list.py:169 +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/static.py:38 +msgid "Directory indexes are not allowed here." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/static.py:40 +#, python-format +msgid "“%(path)s” does not exist" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/static.py:79 +#, python-format +msgid "Index of %(directory)s" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/templates/default_urlconf.html:7 +#: venv/lib/python3.9/site-packages/django/views/templates/default_urlconf.html:220 +msgid "The install worked successfully! Congratulations!" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/templates/default_urlconf.html:206 +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/templates/default_urlconf.html:221 +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not " +"configured any URLs." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/templates/default_urlconf.html:229 +msgid "Django Documentation" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/templates/default_urlconf.html:230 +msgid "Topics, references, & how-to’s" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/templates/default_urlconf.html:238 +msgid "Tutorial: A Polling App" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/templates/default_urlconf.html:239 +msgid "Get started with Django" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/templates/default_urlconf.html:247 +msgid "Django Community" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/templates/default_urlconf.html:248 +msgid "Connect, get help, or contribute" +msgstr "" + +#: venv/lib/python3.9/site-packages/kombu/transport/qpid.py:1311 +#, python-format +msgid "Attempting to connect to qpid with SASL mechanism %s" +msgstr "" + +#: venv/lib/python3.9/site-packages/kombu/transport/qpid.py:1316 +#, python-format +msgid "Connected to qpid with SASL mechanism %s" +msgstr "" + +#: venv/lib/python3.9/site-packages/kombu/transport/qpid.py:1334 +#, python-format +msgid "Unable to connect to qpid with SASL mechanism %s" +msgstr "" diff --git a/locale/fr/LC_MESSAGES/django.po b/locale/fr/LC_MESSAGES/django.po new file mode 100644 index 0000000..1433c22 --- /dev/null +++ b/locale/fr/LC_MESSAGES/django.po @@ -0,0 +1,3665 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-29 15:37+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: accounts/models.py:14 course/models.py:24 +msgid "Bachelor" +msgstr "" + +#: accounts/models.py:15 course/models.py:25 +msgid "Master" +msgstr "" + +#: accounts/models.py:19 course/models.py:29 +msgid "Bachelor Degree" +msgstr "" + +#: accounts/models.py:20 course/models.py:30 +msgid "Master Degree" +msgstr "" + +#: accounts/models.py:23 accounts/models.py:32 +msgid "Father" +msgstr "" + +#: accounts/models.py:24 accounts/models.py:33 +msgid "Mother" +msgstr "" + +#: accounts/models.py:25 accounts/models.py:34 +msgid "Brother" +msgstr "" + +#: accounts/models.py:26 accounts/models.py:35 +msgid "Sister" +msgstr "" + +#: accounts/models.py:27 accounts/models.py:36 +msgid "Grand mother" +msgstr "" + +#: accounts/models.py:28 accounts/models.py:37 +msgid "Grand father" +msgstr "" + +#: accounts/models.py:29 accounts/models.py:38 +msgid "Other" +msgstr "" + +#: accounts/models.py:67 +msgid "M" +msgstr "" + +#: accounts/models.py:67 +msgid "Male" +msgstr "" + +#: accounts/models.py:67 +msgid "F" +msgstr "" + +#: accounts/models.py:67 +msgid "Female" +msgstr "" + +#: accounts/models.py:103 +msgid "Admin" +msgstr "" + +#: accounts/models.py:105 templates/result/add_score_for.html:52 +msgid "Student" +msgstr "" + +#: accounts/models.py:107 templates/course/course_allocation_view.html:32 +msgid "Lecturer" +msgstr "" + +#: accounts/models.py:109 +msgid "Parent" +msgstr "" + +#: accounts/validators.py:12 +msgid "" +"Enter a valid username. This value may contain only English letters, " +"numbers, and @/./+/-/_ characters." +msgstr "" + +#: config/settings.py:148 +msgid "English" +msgstr "" + +#: config/settings.py:149 +msgid "French" +msgstr "" + +#: config/settings.py:150 +msgid "Spanish" +msgstr "" + +#: config/settings.py:151 +msgid "Russia" +msgstr "" + +#: core/models.py:9 core/models.py:13 templates/core/index.html:47 +#: templates/core/index.html:52 templates/setting/admin_panel.html:80 +#: templates/setting/admin_panel.html:81 +msgid "News" +msgstr "" + +#: core/models.py:10 core/models.py:14 +msgid "Event" +msgstr "" + +#: core/models.py:17 core/models.py:22 course/models.py:33 course/models.py:38 +msgid "First" +msgstr "" + +#: core/models.py:18 core/models.py:23 course/models.py:34 course/models.py:39 +msgid "Second" +msgstr "" + +#: core/models.py:19 core/models.py:24 course/models.py:35 course/models.py:40 +msgid "Third" +msgstr "" + +#: course/models.py:71 +#, python-brace-format +msgid "The program '{instance}' has been {verb}." +msgstr "" + +#: course/models.py:76 +#, python-brace-format +msgid "The program '{instance}' has been deleted." +msgstr "" + +#: course/models.py:138 +#, python-brace-format +msgid "The course '{instance}' has been {verb}." +msgstr "" + +#: course/models.py:143 +#, python-brace-format +msgid "The course '{instance}' has been deleted." +msgstr "" + +#: course/models.py:150 +msgid "allocated_lecturer" +msgstr "" + +#: course/models.py:152 +msgid "allocated_course" +msgstr "" + +#: course/models.py:218 +#, python-brace-format +msgid "" +"The file '{instance.title}' has been uploaded to the course '{instance." +"course}'." +msgstr "" + +#: course/models.py:224 +#, python-brace-format +msgid "" +"The file '{instance.title}' of the course '{instance.course}' has been " +"updated." +msgstr "" + +#: course/models.py:233 +#, python-brace-format +msgid "" +"The file '{instance.title}' of the course '{instance.course}' has been " +"deleted." +msgstr "" + +#: course/models.py:244 +msgid "Valid video formats: mp4, mkv, wmv, 3gp, f4v, avi, mp3" +msgstr "" + +#: course/models.py:278 +#, python-brace-format +msgid "" +"The video '{instance.title}' has been uploaded to the course {instance." +"course}." +msgstr "" + +#: course/models.py:284 +#, python-brace-format +msgid "" +"The video '{instance.title}' of the course '{instance.course}' has been " +"updated." +msgstr "" + +#: course/models.py:293 +#, python-brace-format +msgid "" +"The video '{instance.title}' of the course '{instance.course}' has been " +"deleted." +msgstr "" + +#: course/models.py:299 +msgid "NOTE: Only department head can offer semester courses" +msgstr "" + +#: quiz/admin.py:31 quiz/admin.py:32 quiz/forms.py:38 quiz/forms.py:39 +#: quiz/models.py:468 templates/quiz/quiz_list.html:41 +msgid "Questions" +msgstr "" + +#: quiz/models.py:23 quiz/models.py:529 +msgid "Content" +msgstr "" + +#: quiz/models.py:24 +msgid "Random" +msgstr "" + +#: quiz/models.py:25 +#: venv/lib/python3.9/site-packages/modeltranslation/widgets.py:32 +msgid "None" +msgstr "" + +#: quiz/models.py:29 templates/result/add_score_for.html:53 +#: templates/result/assessment_results.html:40 +#: templates/result/assessment_results.html:82 +msgid "Assignment" +msgstr "" + +#: quiz/models.py:30 +msgid "Exam" +msgstr "" + +#: quiz/models.py:31 +msgid "Practice Quiz" +msgstr "" + +#: quiz/models.py:53 +msgid "Title" +msgstr "" + +#: quiz/models.py:56 +msgid "Description" +msgstr "" + +#: quiz/models.py:58 +msgid "A detailed description of the quiz" +msgstr "" + +#: quiz/models.py:64 +msgid "Random Order" +msgstr "" + +#: quiz/models.py:65 +msgid "Display the questions in a random order or as they are set?" +msgstr "" + +#: quiz/models.py:74 +msgid "Answers at end" +msgstr "" + +#: quiz/models.py:76 +msgid "" +"Correct answer is NOT shown after question. Answers displayed at the end." +msgstr "" + +#: quiz/models.py:83 +msgid "Exam Paper" +msgstr "" + +#: quiz/models.py:85 +msgid "" +"If yes, the result of each attempt by a user will be stored. Necessary for " +"marking." +msgstr "" + +#: quiz/models.py:92 +msgid "Single Attempt" +msgstr "" + +#: quiz/models.py:93 +msgid "If yes, only one attempt by a user will be permitted." +msgstr "" + +#: quiz/models.py:99 +msgid "Pass Mark" +msgstr "" + +#: quiz/models.py:101 +msgid "Percentage required to pass exam." +msgstr "" + +#: quiz/models.py:107 +msgid "Draft" +msgstr "" + +#: quiz/models.py:109 +msgid "" +"If yes, the quiz is not displayed in the quiz list and can only be taken by " +"users who can edit quizzes." +msgstr "" + +#: quiz/models.py:129 quiz/models.py:290 quiz/models.py:443 +#: templates/quiz/quiz_list.html:39 templates/quiz/sitting_list.html:37 +#: templates/result/add_score_for.html:55 +#: templates/result/assessment_results.html:42 +#: templates/result/assessment_results.html:84 +#: templates/search/search_view.html:79 templates/search/search_view.html:127 +msgid "Quiz" +msgstr "" + +#: quiz/models.py:130 templates/question.html:16 +#: templates/quiz/mcquestion_form.html:13 templates/quiz/quiz_form.html:13 +#: templates/quiz/quiz_list.html:16 templates/quiz/quiz_list.html:26 +#: templates/result.html:18 +msgid "Quizzes" +msgstr "" + +#: quiz/models.py:164 quiz/models.py:288 templates/quiz/sitting_detail.html:24 +#: templates/quiz/sitting_list.html:35 +msgid "User" +msgstr "" + +#: quiz/models.py:168 templates/progress.html:68 +#: templates/quiz/sitting_detail.html:26 templates/quiz/sitting_list.html:39 +msgid "Score" +msgstr "" + +#: quiz/models.py:175 +msgid "User Progress" +msgstr "" + +#: quiz/models.py:176 +msgid "User progress records" +msgstr "" + +#: quiz/models.py:203 +msgid "error" +msgstr "" + +#: quiz/models.py:203 +msgid "category does not exist or invalid score" +msgstr "" + +#: quiz/models.py:248 +msgid "Question set of the quiz is empty. Please configure questions properly" +msgstr "" + +#: quiz/models.py:292 templates/quiz/sitting_list.html:36 +#: templates/search/search_view.html:59 templates/search/search_view.html:125 +msgid "Course" +msgstr "" + +#: quiz/models.py:297 +msgid "Question Order" +msgstr "" + +#: quiz/models.py:303 +msgid "Question List" +msgstr "" + +#: quiz/models.py:310 +msgid "Incorrect questions" +msgstr "" + +#: quiz/models.py:314 +msgid "Current Score" +msgstr "" + +#: quiz/models.py:316 +msgid "Complete" +msgstr "" + +#: quiz/models.py:319 +msgid "User Answers" +msgstr "" + +#: quiz/models.py:321 templates/quiz/sitting_detail.html:27 +msgid "Start" +msgstr "" + +#: quiz/models.py:322 templates/quiz/sitting_detail.html:28 +msgid "End" +msgstr "" + +#: quiz/models.py:327 +msgid "Can see completed exams." +msgstr "" + +#: quiz/models.py:404 +msgid "You have passed this quiz, congratulation" +msgstr "" + +#: quiz/models.py:406 +msgid "You failed this quiz, give it one chance again." +msgstr "" + +#: quiz/models.py:448 +msgid "Figure" +msgstr "" + +#: quiz/models.py:449 +msgid "Add an image for the question if it's necessary." +msgstr "" + +#: quiz/models.py:454 +msgid "Enter the question text that you want displayed" +msgstr "" + +#: quiz/models.py:455 quiz/models.py:467 quiz/models.py:522 +#: templates/question.html:125 templates/quiz/sitting_detail.html:34 +msgid "Question" +msgstr "" + +#: quiz/models.py:460 +msgid "Explanation to be shown after the question has been answered." +msgstr "" + +#: quiz/models.py:461 templates/question.html:80 templates/question.html:89 +#: templates/result.html:80 templates/result.html:150 +msgid "Explanation" +msgstr "" + +#: quiz/models.py:481 +msgid "The order in which multichoice choice options are displayed to the user" +msgstr "" + +#: quiz/models.py:483 +msgid "Choice Order" +msgstr "" + +#: quiz/models.py:516 +msgid "Multiple Choice Question" +msgstr "" + +#: quiz/models.py:517 +msgid "Multiple Choice Questions" +msgstr "" + +#: quiz/models.py:528 +msgid "Enter the choice text that you want displayed" +msgstr "" + +#: quiz/models.py:535 +msgid "Is this a correct answer?" +msgstr "" + +#: quiz/models.py:536 templates/quiz/mcquestion_form.html:53 +#: templates/quiz/sitting_detail.html:56 +msgid "Correct" +msgstr "" + +#: quiz/models.py:543 +msgid "Choice" +msgstr "" + +#: quiz/models.py:544 templates/quiz/mcquestion_form.html:47 +msgid "Choices" +msgstr "" + +#: quiz/models.py:564 +msgid "Essay style question" +msgstr "" + +#: quiz/models.py:565 +msgid "Essay style questions" +msgstr "" + +#: templates/400.html:5 +msgid "Bad request" +msgstr "" + +#: templates/400.html:6 +msgid "Please make sure the form is correctly filled." +msgstr "" + +#: templates/400.html:7 templates/403.html:7 templates/404.html:7 +#: templates/500.html:7 +msgid "Return to the app" +msgstr "" + +#: templates/403.html:5 +msgid "forbidden" +msgstr "" + +#: templates/403.html:6 +msgid "You need the proper permission to make that request." +msgstr "" + +#: templates/404.html:6 +msgid "Looks like the page you" +msgstr "" + +#: templates/500.html:5 +msgid "Server error" +msgstr "" + +#: templates/500.html:6 +msgid "Please try again later." +msgstr "" + +#: templates/accounts/add_staff.html:3 templates/accounts/add_student.html:3 +#: templates/accounts/edit_lecturer.html:3 +#: templates/accounts/edit_student.html:3 +#: templates/accounts/lecturer_list.html:3 +#: templates/accounts/parent_form.html:3 templates/accounts/profile.html:3 +#: templates/accounts/profile_single.html:3 +#: templates/accounts/student_list.html:3 templates/core/dashboard.html:3 +#: templates/core/index.html:3 templates/core/post_add.html:3 +#: templates/core/semester_list.html:3 templates/core/semester_update.html:3 +#: templates/core/session_list.html:3 templates/core/session_update.html:3 +#: templates/course/course_add.html:3 +#: templates/course/course_allocation_form.html:3 +#: templates/course/course_allocation_view.html:3 +#: templates/course/course_registration.html:3 +#: templates/course/course_single.html:3 templates/course/program_add.html:3 +#: templates/course/program_list.html:3 templates/course/program_single.html:3 +#: templates/course/user_course_list.html:3 templates/progress.html:4 +#: templates/question.html:5 templates/quiz/sitting_detail.html:4 +#: templates/quiz/sitting_list.html:3 templates/result.html:7 +#: templates/result/add_score.html:3 templates/result/add_score_for.html:3 +#: templates/result/assessment_results.html:3 +#: templates/result/grade_results.html:3 templates/search/search_view.html:3 +#: templates/setting/admin_panel.html:3 +#: templates/setting/password_change.html:3 +#: templates/setting/profile_info_change.html:3 +#: templates/upload/upload_file_form.html:3 +#: templates/upload/upload_video_form.html:3 +#: templates/upload/video_single.html:3 +msgid "Learning management system" +msgstr "" + +#: templates/accounts/add_staff.html:11 templates/accounts/add_student.html:12 +#: templates/accounts/edit_lecturer.html:11 +#: templates/accounts/edit_student.html:11 +#: templates/accounts/lecturer_list.html:9 templates/accounts/profile.html:14 +#: templates/accounts/profile_single.html:14 +#: templates/accounts/student_list.html:10 templates/aside.html:47 +#: templates/core/dashboard.html:13 templates/core/index.html:34 +#: templates/core/post_add.html:11 templates/core/semester_list.html:9 +#: templates/core/semester_update.html:11 templates/core/session_list.html:9 +#: templates/core/session_update.html:11 templates/course/course_add.html:11 +#: templates/course/course_allocation_form.html:11 +#: templates/course/course_allocation_view.html:9 +#: templates/course/course_registration.html:12 +#: templates/course/course_single.html:10 templates/course/program_add.html:11 +#: templates/course/program_list.html:9 templates/course/program_single.html:10 +#: templates/course/user_course_list.html:10 templates/progress.html:11 +#: templates/question.html:12 templates/quiz/mcquestion_form.html:9 +#: templates/quiz/quiz_form.html:9 templates/quiz/quiz_list.html:12 +#: templates/quiz/sitting_detail.html:11 templates/quiz/sitting_list.html:9 +#: templates/result.html:14 templates/result/add_score.html:10 +#: templates/result/add_score_for.html:10 +#: templates/result/assessment_results.html:9 +#: templates/result/grade_results.html:9 templates/search/search_view.html:11 +#: templates/setting/admin_panel.html:11 +#: templates/setting/password_change.html:11 +#: templates/setting/profile_info_change.html:11 +#: templates/upload/upload_file_form.html:10 +#: templates/upload/upload_video_form.html:10 +#: templates/upload/video_single.html:10 +msgid "Home" +msgstr "" + +#: templates/accounts/add_staff.html:12 +#: templates/accounts/edit_lecturer.html:12 +#: templates/accounts/lecturer_list.html:10 +#: templates/accounts/lecturer_list.html:21 templates/aside.html:58 +#: templates/core/dashboard.html:63 templates/pdf/lecturer_list.html:35 +#: templates/setting/admin_panel.html:37 +msgid "Lecturers" +msgstr "" + +#: templates/accounts/add_staff.html:13 templates/accounts/add_student.html:14 +#: templates/aside.html:113 +msgid "Add" +msgstr "" + +#: templates/accounts/add_staff.html:17 +msgid "Lecturer Add Form" +msgstr "" + +#: templates/accounts/add_staff.html:26 templates/accounts/add_student.html:27 +#: templates/accounts/edit_lecturer.html:27 +#: templates/accounts/edit_student.html:25 templates/accounts/profile.html:75 +#: templates/accounts/profile_single.html:88 +#: templates/pdf/profile_single.html:65 templates/registration/register.html:40 +#: templates/setting/profile_info_change.html:24 +msgid "Personal Info" +msgstr "" + +#: templates/accounts/add_staff.html:37 templates/accounts/add_student.html:49 +#: templates/accounts/edit_lecturer.html:46 +#: templates/accounts/edit_student.html:46 +#: templates/accounts/parent_form.html:11 templates/core/post_add.html:25 +#: templates/core/semester_update.html:38 templates/core/session_update.html:38 +#: templates/course/course_add.html:49 +#: templates/course/course_allocation_form.html:49 +#: templates/course/program_add.html:26 templates/quiz/mcquestion_form.html:67 +#: templates/quiz/quiz_form.html:66 templates/result/add_score_for.html:38 +msgid "Save" +msgstr "" + +#: templates/accounts/add_student.html:13 +#: templates/accounts/edit_student.html:12 +#: templates/accounts/student_list.html:11 +#: templates/accounts/student_list.html:24 templates/aside.html:61 +#: templates/core/dashboard.html:54 templates/pdf/student_list.html:35 +#: templates/setting/admin_panel.html:42 +msgid "Students" +msgstr "" + +#: templates/accounts/add_student.html:18 +msgid "Student Add Form" +msgstr "" + +#: templates/accounts/add_student.html:40 +#: templates/accounts/edit_lecturer.html:39 +#: templates/accounts/edit_student.html:39 templates/core/dashboard.html:117 +#: templates/setting/profile_info_change.html:37 +msgid "Others" +msgstr "" + +#: templates/accounts/edit_lecturer.html:13 +#: templates/accounts/edit_student.html:13 +#: templates/accounts/lecturer_list.html:59 +#: templates/accounts/student_list.html:61 +#: templates/course/program_list.html:56 +msgid "Update" +msgstr "" + +#: templates/accounts/edit_lecturer.html:17 +msgid "Lecturer Update Form" +msgstr "" + +#: templates/accounts/edit_lecturer.html:27 +#: templates/accounts/edit_student.html:25 +#: templates/accounts/lecturer_list.html:33 +#: templates/accounts/profile_single.html:107 +#: templates/accounts/student_list.html:38 templates/pdf/lecturer_list.html:44 +#: templates/pdf/student_list.html:43 +#: templates/registration/password_reset.html:13 +#: templates/setting/profile_info_change.html:24 +msgid "Email" +msgstr "" + +#: templates/accounts/edit_student.html:17 +msgid "Student Update Form" +msgstr "" + +#: templates/accounts/lecturer_list.html:16 +msgid "Add Lecturer" +msgstr "" + +#: templates/accounts/lecturer_list.html:17 +#: templates/accounts/student_list.html:20 +msgid "Download pdf" +msgstr "" + +#: templates/accounts/lecturer_list.html:31 +#: templates/accounts/profile_single.html:92 +#: templates/accounts/student_list.html:36 templates/pdf/lecturer_list.html:42 +#: templates/pdf/student_list.html:41 +msgid "ID No." +msgstr "" + +#: templates/accounts/lecturer_list.html:32 +#: templates/accounts/student_list.html:37 templates/pdf/lecturer_list.html:43 +#: templates/pdf/student_list.html:42 +msgid "Full Name" +msgstr "" + +#: templates/accounts/lecturer_list.html:34 templates/pdf/lecturer_list.html:45 +#: templates/pdf/student_list.html:44 +msgid "Mob No." +msgstr "" + +#: templates/accounts/lecturer_list.html:35 +#: templates/accounts/profile_single.html:109 +msgid "Address/city" +msgstr "" + +#: templates/accounts/lecturer_list.html:36 +#: templates/accounts/profile_single.html:29 +#: templates/accounts/profile_single.html:115 +msgid "Last login" +msgstr "" + +#: templates/accounts/lecturer_list.html:38 +#: templates/accounts/student_list.html:41 +#: templates/course/course_allocation_view.html:35 +#: templates/course/program_list.html:35 +#: templates/course/program_single.html:47 +msgid "Action" +msgstr "" + +#: templates/accounts/lecturer_list.html:60 +#: templates/accounts/student_list.html:62 +msgid "Download PDF" +msgstr "" + +#: templates/accounts/lecturer_list.html:61 +#: templates/accounts/student_list.html:63 templates/core/index.html:78 +#: templates/core/semester_list.html:71 templates/core/session_list.html:66 +#: templates/course/course_single.html:91 +#: templates/course/course_single.html:168 +#: templates/course/program_list.html:57 +#: templates/course/program_single.html:81 +#: templates/quiz/mcquestion_form.html:57 templates/quiz/quiz_list.html:68 +#: venv/lib/python3.9/site-packages/django/forms/formsets.py:499 +msgid "Delete" +msgstr "" + +#: templates/accounts/lecturer_list.html:71 templates/pdf/lecturer_list.html:63 +#: templates/pdf/student_list.html:61 +msgid "No Lecturer(s)." +msgstr "" + +#: templates/accounts/lecturer_list.html:75 +msgid "Add Lecturer Now." +msgstr "" + +#: templates/accounts/profile.html:29 templates/accounts/profile.html:101 +#: templates/navbar.html:29 templates/pdf/profile_single.html:41 +#: templates/pdf/profile_single.html:92 +msgid "Last login:" +msgstr "" + +#: templates/accounts/profile.html:30 templates/pdf/profile_single.html:42 +msgid "Role:" +msgstr "" + +#: templates/accounts/profile.html:37 templates/accounts/profile_single.html:40 +#: templates/accounts/profile_single.html:48 +msgid "Edit Profile" +msgstr "" + +#: templates/accounts/profile.html:39 +msgid "Change password" +msgstr "" + +#: templates/accounts/profile.html:62 templates/accounts/profile_single.html:75 +#: templates/aside.html:67 templates/course/user_course_list.html:3 +#: templates/course/user_course_list.html:11 +#: templates/course/user_course_list.html:23 templates/navbar.html:34 +#: templates/pdf/profile_single.html:52 +msgid "My Courses" +msgstr "" + +#: templates/accounts/profile.html:70 templates/accounts/profile_single.html:83 +#: templates/pdf/profile_single.html:60 +msgid "No courses assigned!" +msgstr "" + +#: templates/accounts/profile.html:77 templates/pdf/profile_single.html:67 +msgid "First Name:" +msgstr "" + +#: templates/accounts/profile.html:78 templates/pdf/profile_single.html:68 +msgid "Last Name:" +msgstr "" + +#: templates/accounts/profile.html:79 templates/pdf/profile_single.html:69 +msgid "ID No.:" +msgstr "" + +#: templates/accounts/profile.html:83 templates/accounts/profile_single.html:96 +#: templates/pdf/profile_single.html:74 +msgid "Applicant Info" +msgstr "" + +#: templates/accounts/profile.html:85 templates/pdf/profile_single.html:76 +msgid "School:" +msgstr "" + +#: templates/accounts/profile.html:85 templates/pdf/profile_single.html:76 +msgid "Hawas Preparatory School" +msgstr "" + +#: templates/accounts/profile.html:86 templates/pdf/profile_single.html:77 +msgid "Level:" +msgstr "" + +#: templates/accounts/profile.html:91 +#: templates/accounts/profile_single.html:105 +#: templates/pdf/profile_single.html:82 +msgid "Contact Info" +msgstr "" + +#: templates/accounts/profile.html:93 templates/pdf/profile_single.html:84 +msgid "Email:" +msgstr "" + +#: templates/accounts/profile.html:94 templates/pdf/profile_single.html:85 +msgid "Tel No.:" +msgstr "" + +#: templates/accounts/profile.html:95 templates/pdf/profile_single.html:86 +msgid "Address/city:" +msgstr "" + +#: templates/accounts/profile.html:99 +#: templates/accounts/profile_single.html:113 +#: templates/pdf/profile_single.html:90 +msgid "Important Dates" +msgstr "" + +#: templates/accounts/profile.html:103 templates/pdf/profile_single.html:94 +msgid "Academic Year:" +msgstr "" + +#: templates/accounts/profile.html:103 +#: templates/accounts/profile_single.html:117 +#: templates/core/semester_list.html:41 templates/course/program_single.html:44 +#: templates/course/user_course_list.html:52 +#: templates/course/user_course_list.html:96 +#: templates/pdf/profile_single.html:94 templates/result/add_score.html:24 +#: templates/result/add_score_for.html:46 templates/setting/admin_panel.html:52 +msgid "Semester" +msgstr "" + +#: templates/accounts/profile.html:105 templates/pdf/profile_single.html:96 +msgid "Registered Date:" +msgstr "" + +#: templates/accounts/profile_single.html:30 +msgid "Role" +msgstr "" + +#: templates/accounts/profile_single.html:43 +msgid "Change Program" +msgstr "" + +#: templates/accounts/profile_single.html:90 +msgid "First Name" +msgstr "" + +#: templates/accounts/profile_single.html:91 +msgid "Last Name" +msgstr "" + +#: templates/accounts/profile_single.html:98 +msgid "School" +msgstr "" + +#: templates/accounts/profile_single.html:99 +#: templates/course/program_single.html:42 +msgid "Level" +msgstr "" + +#: templates/accounts/profile_single.html:100 +#: templates/accounts/student_list.html:39 templates/pdf/student_list.html:45 +#: templates/search/search_view.html:49 templates/search/search_view.html:89 +#: templates/search/search_view.html:124 +msgid "Program" +msgstr "" + +#: templates/accounts/profile_single.html:108 +msgid "Tel No." +msgstr "" + +#: templates/accounts/profile_single.html:117 +msgid "Academic Year" +msgstr "" + +#: templates/accounts/profile_single.html:119 +msgid "Registered Date" +msgstr "" + +#: templates/accounts/student_list.html:19 +msgid "Add Student" +msgstr "" + +#: templates/accounts/student_list.html:73 +#: templates/result/add_score_for.html:105 +msgid "No Student." +msgstr "" + +#: templates/accounts/student_list.html:77 +msgid "Add Student Now." +msgstr "" + +#: templates/aside.html:43 templates/core/dashboard.html:3 +#: templates/core/dashboard.html:14 templates/core/dashboard.html:33 +msgid "Dashboard" +msgstr "" + +#: templates/aside.html:50 templates/navbar.html:41 +msgid "Profile" +msgstr "" + +#: templates/aside.html:55 templates/navbar.html:38 +#: templates/setting/admin_panel.html:12 templates/setting/admin_panel.html:16 +msgid "Admin Panel" +msgstr "" + +#: templates/aside.html:72 +msgid "Programs & Courses" +msgstr "" + +#: templates/aside.html:77 templates/quiz/sitting_list.html:10 +msgid "Complete Exams" +msgstr "" + +#: templates/aside.html:83 templates/aside.html:104 +msgid "Quiz Progress Rec" +msgstr "" + +#: templates/aside.html:86 +msgid "Course Allocation" +msgstr "" + +#: templates/aside.html:89 +msgid "Manage Session" +msgstr "" + +#: templates/aside.html:92 +msgid "Manage Semester" +msgstr "" + +#: templates/aside.html:98 templates/result/add_score.html:11 +#: templates/result/add_score.html:17 templates/result/add_score_for.html:12 +msgid "Manage Score" +msgstr "" + +#: templates/aside.html:107 templates/result/grade_results.html:10 +#: templates/result/grade_results.html:28 +msgid "Grade Results" +msgstr "" + +#: templates/aside.html:110 templates/result/assessment_results.html:10 +#: templates/result/assessment_results.html:28 +msgid "Assesment Results" +msgstr "" + +#: templates/aside.html:113 +msgid "Drop Course" +msgstr "" + +#: templates/aside.html:119 +msgid "Account Setting" +msgstr "" + +#: templates/aside.html:122 templates/setting/password_change.html:21 +#: templates/setting/password_change.html:25 +msgid "Change Password" +msgstr "" + +#: templates/aside.html:130 +msgid "Read our" +msgstr "" + +#: templates/aside.html:130 +msgid "Privacy" +msgstr "" + +#: templates/aside.html:130 +#: venv/lib/python3.9/site-packages/django/db/models/base.py:1423 +#: venv/lib/python3.9/site-packages/django/forms/models.py:893 +msgid "and" +msgstr "" + +#: templates/aside.html:130 +msgid "Terms of use." +msgstr "" + +#: templates/aside.html:135 +msgid "⭐️ Star This Project" +msgstr "" + +#: templates/core/dashboard.html:40 +msgid "Dashboard settings" +msgstr "" + +#: templates/core/dashboard.html:41 +msgid "Display grid" +msgstr "" + +#: templates/core/dashboard.html:42 +msgid "Display table" +msgstr "" + +#: templates/core/dashboard.html:44 +msgid "Manage dashboard" +msgstr "" + +#: templates/core/dashboard.html:72 +msgid "Administrators" +msgstr "" + +#: templates/core/dashboard.html:81 +msgid "Lab Assistance" +msgstr "" + +#: templates/core/dashboard.html:90 +msgid "Librarians" +msgstr "" + +#: templates/core/dashboard.html:99 +msgid "Supervisors" +msgstr "" + +#: templates/core/dashboard.html:108 +msgid "Office Assistance" +msgstr "" + +#: templates/core/dashboard.html:145 +msgid "Latest activities" +msgstr "" + +#: templates/core/dashboard.html:150 +msgid "No recent activity" +msgstr "" + +#: templates/core/dashboard.html:158 +msgid "School Demographics" +msgstr "" + +#: templates/core/index.html:40 +msgid "Add New Post" +msgstr "" + +#: templates/core/index.html:47 templates/core/index.html:55 +#: templates/setting/admin_panel.html:80 templates/setting/admin_panel.html:81 +msgid "Events" +msgstr "" + +#: templates/core/index.html:65 +msgid "news" +msgstr "" + +#: templates/core/index.html:65 +msgid "events" +msgstr "" + +#: templates/core/index.html:76 templates/core/semester_list.html:69 +#: templates/core/session_list.html:65 templates/course/course_single.html:87 +#: templates/course/course_single.html:164 +#: templates/course/program_single.html:78 templates/quiz/quiz_list.html:65 +msgid "Edit" +msgstr "" + +#: templates/core/index.html:88 templates/upload/video_single.html:31 +msgid "ago" +msgstr "" + +#: templates/core/index.html:98 +msgid "School news and events will appear here." +msgstr "" + +#: templates/core/post_add.html:12 +msgid "Post form" +msgstr "" + +#: templates/core/post_add.html:21 +msgid "Post Form" +msgstr "" + +#: templates/core/post_add.html:26 templates/upload/upload_file_form.html:34 +#: templates/upload/upload_video_form.html:33 +msgid "Cancel" +msgstr "" + +#: templates/core/semester_list.html:10 +msgid "Semester list" +msgstr "" + +#: templates/core/semester_list.html:16 +msgid "Add New Semester" +msgstr "" + +#: templates/core/semester_list.html:20 templates/core/semester_update.html:12 +msgid "Semester List" +msgstr "" + +#: templates/core/semester_list.html:42 +msgid "Is Current semester" +msgstr "" + +#: templates/core/semester_list.html:43 templates/core/session_list.html:41 +#: templates/setting/admin_panel.html:47 +msgid "Session" +msgstr "" + +#: templates/core/semester_list.html:44 +msgid "Next Semester Begins" +msgstr "" + +#: templates/core/semester_list.html:46 templates/core/session_list.html:45 +#: templates/course/course_single.html:61 +#: templates/course/course_single.html:138 +msgid "Actions" +msgstr "" + +#: templates/core/semester_list.html:83 +msgid "No Semester." +msgstr "" + +#: templates/core/semester_list.html:87 +msgid "Add Semester Now." +msgstr "" + +#: templates/core/semester_update.html:13 +msgid "Semester Form" +msgstr "" + +#: templates/core/semester_update.html:34 +msgid "Semester Add & update Form" +msgstr "" + +#: templates/core/session_list.html:10 templates/core/session_list.html:20 +#: templates/core/session_update.html:12 +msgid "Session List" +msgstr "" + +#: templates/core/session_list.html:16 +msgid "Add New Session" +msgstr "" + +#: templates/core/session_list.html:42 +msgid "Is Current Session" +msgstr "" + +#: templates/core/session_list.html:43 +msgid "Next Session Begins" +msgstr "" + +#: templates/core/session_list.html:77 +msgid "No Session." +msgstr "" + +#: templates/core/session_list.html:81 +msgid "Add Session Now." +msgstr "" + +#: templates/core/session_update.html:13 +msgid "Session Form" +msgstr "" + +#: templates/core/session_update.html:34 +msgid "Session Add & update Form" +msgstr "" + +#: templates/correct_answer.html:6 templates/question.html:50 +#: templates/result.html:51 +msgid "You answered the above question incorrectly" +msgstr "" + +#: templates/correct_answer.html:16 templates/question.html:60 +#: templates/result.html:61 +msgid "This is the correct answer" +msgstr "" + +#: templates/correct_answer.html:24 templates/question.html:68 +#: templates/result.html:69 +msgid "This was your answer." +msgstr "" + +#: templates/course/course_add.html:12 templates/course/course_single.html:11 +#: templates/course/program_add.html:12 templates/course/program_list.html:10 +#: templates/course/program_single.html:11 +#: templates/quiz/mcquestion_form.html:10 templates/quiz/quiz_form.html:10 +#: templates/quiz/quiz_list.html:13 templates/result.html:15 +#: templates/setting/admin_panel.html:70 +#: templates/upload/upload_file_form.html:11 +#: templates/upload/upload_video_form.html:11 +#: templates/upload/video_single.html:11 +msgid "Programs" +msgstr "" + +#: templates/course/course_add.html:13 templates/course/course_add.html:17 +msgid "Course Form" +msgstr "" + +#: templates/course/course_add.html:27 +msgid "Course Detail" +msgstr "" + +#: templates/course/course_add.html:37 +msgid "Other Info" +msgstr "" + +#: templates/course/course_allocation_form.html:12 +#: templates/course/course_allocation_view.html:20 +#: templates/setting/admin_panel.html:75 +msgid "Course Allocations" +msgstr "" + +#: templates/course/course_allocation_form.html:13 +msgid "Allocation Form" +msgstr "" + +#: templates/course/course_allocation_form.html:34 +msgid "Course Allocation Form" +msgstr "" + +#: templates/course/course_allocation_view.html:10 +msgid "Allocation list" +msgstr "" + +#: templates/course/course_allocation_view.html:16 +msgid "Allocate Now" +msgstr "" + +#: templates/course/course_allocation_view.html:33 +#: templates/setting/admin_panel.html:70 +msgid "Courses" +msgstr "" + +#: templates/course/course_allocation_view.html:50 +msgid "Edit or Update" +msgstr "" + +#: templates/course/course_allocation_view.html:53 +msgid "Deallocate" +msgstr "" + +#: templates/course/course_allocation_view.html:65 +msgid "No Course Allocated." +msgstr "" + +#: templates/course/course_allocation_view.html:69 +msgid "Allocate now" +msgstr "" + +#: templates/course/course_registration.html:13 +msgid "Course Registration" +msgstr "" + +#: templates/course/course_registration.html:17 +#: templates/course/course_registration.html:35 +#: templates/setting/admin_panel.html:58 +msgid "Course Add" +msgstr "" + +#: templates/course/course_registration.html:17 +#: templates/setting/admin_panel.html:58 +msgid "Drop" +msgstr "" + +#: templates/course/course_registration.html:25 +msgid "Calender is off" +msgstr "" + +#: templates/course/course_registration.html:26 +msgid "Check the university calender" +msgstr "" + +#: templates/course/course_registration.html:38 +#: templates/course/course_registration.html:200 +msgid "Save Score" +msgstr "" + +#: templates/course/course_registration.html:43 +#: templates/result/assessment_results.html:32 +#: templates/result/grade_results.html:32 +msgid "First Semester:" +msgstr "" + +#: templates/course/course_registration.html:48 +#: templates/course/course_registration.html:111 +#: templates/course/course_registration.html:216 +msgid "Mark" +msgstr "" + +#: templates/course/course_registration.html:49 +#: templates/course/course_registration.html:112 +#: templates/course/course_registration.html:217 +#: templates/course/program_single.html:40 +#: templates/course/user_course_list.html:49 +#: templates/course/user_course_list.html:93 +#: templates/result/assessment_results.html:38 +#: templates/result/grade_results.html:38 +#: templates/result/grade_results.html:103 +msgid "Course Code" +msgstr "" + +#: templates/course/course_registration.html:50 +#: templates/course/course_registration.html:113 +#: templates/course/course_registration.html:218 +#: templates/result/assessment_results.html:37 +#: templates/result/assessment_results.html:79 +#: templates/result/grade_results.html:37 +#: templates/result/grade_results.html:102 +msgid "Course Title" +msgstr "" + +#: templates/course/course_registration.html:51 +#: templates/course/course_registration.html:114 +#: templates/course/course_registration.html:219 +#: templates/result/assessment_results.html:39 +#: templates/result/assessment_results.html:81 +msgid "Cr.Hr(s)" +msgstr "" + +#: templates/course/course_registration.html:52 +#: templates/course/course_registration.html:115 +#: templates/course/course_registration.html:220 +#: templates/course/program_single.html:43 +#: templates/course/user_course_list.html:51 +#: templates/course/user_course_list.html:95 +msgid "Year" +msgstr "" + +#: templates/course/course_registration.html:53 +#: templates/course/course_registration.html:116 +#: templates/course/course_registration.html:221 +msgid "Classification" +msgstr "" + +#: templates/course/course_registration.html:54 +#: templates/course/course_registration.html:117 +#: templates/course/course_registration.html:222 +msgid "Elective Group" +msgstr "" + +#: templates/course/course_registration.html:69 +#: templates/course/course_registration.html:132 +#: templates/course/course_registration.html:236 +msgid "Elective" +msgstr "" + +#: templates/course/course_registration.html:71 +#: templates/course/course_registration.html:134 +#: templates/course/course_registration.html:238 +msgid "Core" +msgstr "" + +#: templates/course/course_registration.html:83 +#: templates/course/course_registration.html:146 +#: templates/course/course_registration.html:249 +msgid "No Course." +msgstr "" + +#: templates/course/course_registration.html:97 +msgid "First semester Credit(s):" +msgstr "" + +#: templates/course/course_registration.html:106 +#: templates/result/assessment_results.html:74 +#: templates/result/grade_results.html:97 +msgid "Second Semester:" +msgstr "" + +#: templates/course/course_registration.html:160 +msgid "Second semester credit(s):" +msgstr "" + +#: templates/course/course_registration.html:165 +msgid "Registerd course credit(s):" +msgstr "" + +#: templates/course/course_registration.html:170 +#: templates/course/course_registration.html:263 +msgid "Total credit(s):" +msgstr "" + +#: templates/course/course_registration.html:186 +msgid "Print Registration Form" +msgstr "" + +#: templates/course/course_registration.html:187 +msgid "Print Registerd Courses" +msgstr "" + +#: templates/course/course_registration.html:191 +msgid "Course Drop" +msgstr "" + +#: templates/course/course_registration.html:201 +msgid "Drop Selected" +msgstr "" + +#: templates/course/course_single.html:22 +msgid "Edit course" +msgstr "" + +#: templates/course/course_single.html:27 +msgid "Upload new file" +msgstr "" + +#: templates/course/course_single.html:30 +msgid "Upload new video" +msgstr "" + +#: templates/course/course_single.html:36 +msgid "Take a Quiz" +msgstr "" + +#: templates/course/course_single.html:51 +msgid "Video Tutorials" +msgstr "" + +#: templates/course/course_single.html:57 +msgid "Video Title" +msgstr "" + +#: templates/course/course_single.html:58 +#: templates/course/course_single.html:134 +msgid "Uploaded Date" +msgstr "" + +#: templates/course/course_single.html:59 +msgid "Get Started" +msgstr "" + +#: templates/course/course_single.html:79 +msgid "Play now" +msgstr "" + +#: templates/course/course_single.html:104 +msgid "No video Uploaded." +msgstr "" + +#: templates/course/course_single.html:108 +#: templates/course/course_single.html:185 +msgid "Upload now." +msgstr "" + +#: templates/course/course_single.html:127 +msgid "Documentations" +msgstr "" + +#: templates/course/course_single.html:133 +msgid "File name" +msgstr "" + +#: templates/course/course_single.html:135 +msgid "Updated Date" +msgstr "" + +#: templates/course/course_single.html:136 +msgid "Downloads" +msgstr "" + +#: templates/course/course_single.html:156 +msgid "Download" +msgstr "" + +#: templates/course/course_single.html:181 +msgid "No File Uploaded." +msgstr "" + +#: templates/course/course_single.html:205 +msgid "Lecturer(s)" +msgstr "" + +#: templates/course/course_single.html:232 +msgid "No lecturer assigned for this course" +msgstr "" + +#: templates/course/program_add.html:13 +msgid "Program Form" +msgstr "" + +#: templates/course/program_add.html:22 +msgid "Program Add Form" +msgstr "" + +#: templates/course/program_list.html:16 +msgid "Add Program" +msgstr "" + +#: templates/course/program_list.html:20 +msgid "Program List" +msgstr "" + +#: templates/course/program_list.html:32 +msgid "Program Name" +msgstr "" + +#: templates/course/program_list.html:33 +msgid "Summary" +msgstr "" + +#: templates/course/program_list.html:69 +msgid "No program." +msgstr "" + +#: templates/course/program_list.html:73 +msgid "Add program now." +msgstr "" + +#: templates/course/program_single.html:18 +msgid "Add Course" +msgstr "" + +#: templates/course/program_single.html:39 +#: templates/course/user_course_list.html:48 +#: templates/course/user_course_list.html:92 +msgid "Course Name" +msgstr "" + +#: templates/course/program_single.html:41 +#: templates/course/user_course_list.html:50 +#: templates/course/user_course_list.html:94 +#: templates/result/grade_results.html:39 +#: templates/result/grade_results.html:104 +msgid "Cr.Hr" +msgstr "" + +#: templates/course/program_single.html:45 +#: templates/course/user_course_list.html:53 +#: templates/course/user_course_list.html:97 +msgid "Current Semester" +msgstr "" + +#: templates/course/program_single.html:92 +msgid "No course for this progrm." +msgstr "" + +#: templates/course/program_single.html:96 +msgid "Add one now." +msgstr "" + +#: templates/course/user_course_list.html:42 +msgid "Taken Courses:" +msgstr "" + +#: templates/course/user_course_list.html:54 +#: templates/course/user_course_list.html:75 +msgid "Taken" +msgstr "" + +#: templates/course/user_course_list.html:86 +msgid "All Courses:" +msgstr "" + +#: templates/invoice_detail.html:2 templates/invoices.html:1 +msgid "Invoices" +msgstr "" + +#: templates/invoices.html:5 +msgid "Pay now" +msgstr "" + +#: templates/navbar.html:12 +msgid "Search All... #course, #program, #Quiz, #News, #Events" +msgstr "" + +#: templates/navbar.html:42 +msgid "Setting" +msgstr "" + +#: templates/navbar.html:46 +msgid "Signout" +msgstr "" + +#: templates/payments/charge.html:24 +msgid "Payment Succeed, You has been make payment successfuly." +msgstr "" + +#: templates/payments/charge.html:25 +msgid "Redirect to your dashboard in" +msgstr "" + +#: templates/payments/coinbase.html:3 templates/payments/coinbase.html:8 +msgid "Coinbase" +msgstr "" + +#: templates/pdf/lecturer_list.html:46 +msgid "Address/City" +msgstr "" + +#: templates/progress.html:4 templates/progress.html:12 +msgid "Progress Page" +msgstr "" + +#: templates/progress.html:5 +msgid "User Progress Page" +msgstr "" + +#: templates/progress.html:18 +msgid "Question Category Scores" +msgstr "" + +#: templates/progress.html:25 templates/quiz/sitting_detail.html:19 +msgid "Category" +msgstr "" + +#: templates/progress.html:26 +msgid "Correctly answererd" +msgstr "" + +#: templates/progress.html:27 +msgid "Incorrect" +msgstr "" + +#: templates/progress.html:56 +msgid "Previous exam papers" +msgstr "" + +#: templates/progress.html:58 +msgid "Below are the results of exams that you have sat." +msgstr "" + +#: templates/progress.html:60 templates/quiz/sitting_list.html:29 +msgid "Total complete exams:" +msgstr "" + +#: templates/progress.html:67 +msgid "Quiz Title" +msgstr "" + +#: templates/progress.html:69 +msgid "Possible Score" +msgstr "" + +#: templates/progress.html:70 +#, python-format +msgid "Out of 100%%" +msgstr "" + +#: templates/progress.html:94 +msgid "No recordes yet. Try to do some quizzes in your course." +msgstr "" + +#: templates/question.html:28 templates/result.html:38 +msgid "The previous question" +msgstr "" + +#: templates/question.html:37 +msgid "Your answer was" +msgstr "" + +#: templates/question.html:85 templates/result.html:85 +msgid "No explanation set to this question." +msgstr "" + +#: templates/question.html:108 +msgid "Quiz instractions" +msgstr "" + +#: templates/question.html:116 +msgid "Understood" +msgstr "" + +#: templates/question.html:125 +msgid "of" +msgstr "" + +#: templates/question.html:130 +msgid "Quiz category" +msgstr "" + +#: templates/question.html:157 +msgid "Previous" +msgstr "" + +#: templates/quiz/mcquestion_form.html:14 +msgid "MC Question Form" +msgstr "" + +#: templates/quiz/mcquestion_form.html:18 +msgid "Add questions" +msgstr "" + +#: templates/quiz/mcquestion_form.html:31 +msgid "question added" +msgstr "" + +#: templates/quiz/mcquestion_form.html:34 +msgid "Correct the error(s) below." +msgstr "" + +#: templates/quiz/quiz_form.html:14 +msgid "Quiz Form" +msgstr "" + +#: templates/quiz/quiz_form.html:18 +msgid "Quiz form for" +msgstr "" + +#: templates/quiz/quiz_form.html:55 +msgid "Hold down" +msgstr "" + +#: templates/quiz/quiz_form.html:55 +#: venv/lib/python3.9/site-packages/django/utils/text.py:322 +msgid "or" +msgstr "" + +#: templates/quiz/quiz_form.html:55 +msgid "on a Mac, to select more than one." +msgstr "" + +#: templates/quiz/quiz_form.html:66 +msgid "Continue" +msgstr "" + +#: templates/quiz/quiz_list.html:22 +msgid "Add Quiz" +msgstr "" + +#: templates/quiz/quiz_list.html:54 +msgid "You will only get one attempt at this quiz" +msgstr "" + +#: templates/quiz/quiz_list.html:58 +msgid "Start quiz" +msgstr "" + +#: templates/quiz/sitting_detail.html:4 +msgid "Result of" +msgstr "" + +#: templates/quiz/sitting_detail.html:4 templates/search/search_view.html:43 +msgid "for" +msgstr "" + +#: templates/quiz/sitting_detail.html:12 +msgid "Completed Exams" +msgstr "" + +#: templates/quiz/sitting_detail.html:13 +msgid "Marking" +msgstr "" + +#: templates/quiz/sitting_detail.html:18 templates/result.html:99 +msgid "Quiz title" +msgstr "" + +#: templates/quiz/sitting_detail.html:25 templates/quiz/sitting_list.html:38 +msgid "Completed" +msgstr "" + +#: templates/quiz/sitting_detail.html:35 +msgid "User answer" +msgstr "" + +#: templates/quiz/sitting_detail.html:54 +msgid "incorrect" +msgstr "" + +#: templates/quiz/sitting_detail.html:62 +msgid "Toggle whether correct" +msgstr "" + +#: templates/quiz/sitting_list.html:3 +msgid "All Quizzes" +msgstr "" + +#: templates/quiz/sitting_list.html:16 +msgid "List of complete exams" +msgstr "" + +#: templates/quiz/sitting_list.html:24 templates/snippets/filter_form.html:12 +msgid "Filter" +msgstr "" + +#: templates/quiz/sitting_list.html:54 +msgid "View details" +msgstr "" + +#: templates/quiz/sitting_list.html:63 +msgid "No completed exams for you" +msgstr "" + +#: templates/registration/login.html:3 +msgid "Dj Learning Management System - Login" +msgstr "" + +#: templates/registration/login.html:11 +msgid "Sign in" +msgstr "" + +#: templates/registration/login.html:16 +msgid "ID Number" +msgstr "" + +#: templates/registration/login.html:21 +msgid "Password" +msgstr "" + +#: templates/registration/login.html:25 templates/registration/register.html:73 +msgid "Invalid ID & Password." +msgstr "" + +#: templates/registration/login.html:28 +msgid "SIGN IN" +msgstr "" + +#: templates/registration/login.html:32 +msgid "Forgot password ?" +msgstr "" + +#: templates/registration/password_reset.html:3 +msgid "Password Reset | Learning management system" +msgstr "" + +#: templates/registration/password_reset.html:7 +msgid "Password Reset" +msgstr "" + +#: templates/registration/password_reset.html:17 +msgid "Request Password Reset" +msgstr "" + +#: templates/registration/password_reset_complete.html:3 +msgid "Password Reset Complete | Learning management system" +msgstr "" + +#: templates/registration/password_reset_complete.html:8 +msgid "Password Reset Complete" +msgstr "" + +#: templates/registration/password_reset_complete.html:11 +msgid "Your password has been set, you are now able to Log In!" +msgstr "" + +#: templates/registration/password_reset_complete.html:13 +msgid "Sign In Here" +msgstr "" + +#: templates/registration/password_reset_confirm.html:22 +msgid "Confirm New Password" +msgstr "" + +#: templates/registration/password_reset_confirm.html:31 +msgid "Reset Password" +msgstr "" + +#: templates/registration/password_reset_done.html:3 +msgid "Email Sent | Learning management system" +msgstr "" + +#: templates/registration/password_reset_done.html:8 +msgid "Email sent" +msgstr "" + +#: templates/registration/password_reset_done.html:14 +msgid "Back To Login" +msgstr "" + +#: templates/registration/register.html:3 +msgid "Register | Learning management system" +msgstr "" + +#: templates/registration/register.html:12 +msgid "Create Your Account" +msgstr "" + +#: templates/registration/register.html:20 +msgid "Login Form" +msgstr "" + +#: templates/registration/register.html:76 +msgid "SIGN UP" +msgstr "" + +#: templates/registration/register.html:79 +msgid "Already Registered ?" +msgstr "" + +#: templates/registration/register.html:79 +msgid "Login" +msgstr "" + +#: templates/result.html:8 +msgid "Quiz Results for" +msgstr "" + +#: templates/result.html:20 templates/result/assessment_results.html:29 +#: templates/result/grade_results.html:29 +msgid "Result" +msgstr "" + +#: templates/result.html:26 +msgid "Calculating your result..." +msgstr "" + +#: templates/result.html:96 +msgid "Quiz result" +msgstr "" + +#: templates/result.html:103 +msgid "You answered" +msgstr "" + +#: templates/result.html:103 +msgid "questions correctly out of" +msgstr "" + +#: templates/result.html:103 +msgid "giving you" +msgstr "" + +#: templates/result.html:103 +#, python-format +msgid "%% correct" +msgstr "" + +#: templates/result.html:117 +msgid "Review the questions below and try the quiz again in the future" +msgstr "" + +#: templates/result.html:119 +msgid "The result of this quiz will be stored in your progress section" +msgstr "" + +#: templates/result.html:121 +msgid "so you can review and monitor your progression" +msgstr "" + +#: templates/result.html:134 +msgid "Your session score is" +msgstr "" + +#: templates/result.html:134 +msgid "out of a possible" +msgstr "" + +#: templates/result.html:157 +msgid "No explanation set for this question." +msgstr "" + +#: templates/result.html:164 +msgid "Your answer" +msgstr "" + +#: templates/result/add_score.html:29 +msgid "Select Your Course Here" +msgstr "" + +#: templates/result/add_score.html:35 templates/result/add_score_for.html:24 +msgid "No course." +msgstr "" + +#: templates/result/add_score.html:39 +msgid "To manage scores, please select the course using the button above." +msgstr "" + +#: templates/result/add_score_for.html:30 +msgid "Students result form" +msgstr "" + +#: templates/result/add_score_for.html:41 +msgid "Grade report" +msgstr "" + +#: templates/result/add_score_for.html:54 +#: templates/result/assessment_results.html:41 +#: templates/result/assessment_results.html:83 +msgid "Mid exam" +msgstr "" + +#: templates/result/add_score_for.html:56 +#: templates/result/assessment_results.html:43 +#: templates/result/assessment_results.html:85 +msgid "Attendance" +msgstr "" + +#: templates/result/add_score_for.html:57 +#: templates/result/assessment_results.html:44 +#: templates/result/assessment_results.html:86 +msgid "Final exam" +msgstr "" + +#: templates/result/add_score_for.html:58 +#: templates/result/assessment_results.html:45 +#: templates/result/assessment_results.html:87 +msgid "Total" +msgstr "" + +#: templates/result/add_score_for.html:59 +msgid "Point" +msgstr "" + +#: templates/result/add_score_for.html:60 +#: templates/result/grade_results.html:40 +msgid "Grade" +msgstr "" + +#: templates/result/add_score_for.html:61 +#: templates/result/grade_results.html:42 +#: templates/result/grade_results.html:107 +msgid "Comment" +msgstr "" + +#: templates/result/grade_results.html:41 +#: templates/result/grade_results.html:106 +msgid "Points" +msgstr "" + +#: templates/result/grade_results.html:58 +#: templates/result/grade_results.html:123 +msgid "PASS" +msgstr "" + +#: templates/result/grade_results.html:60 +#: templates/result/grade_results.html:125 +msgid "FAIL" +msgstr "" + +#: templates/result/grade_results.html:79 +msgid "Total first semester credit:" +msgstr "" + +#: templates/result/grade_results.html:88 +#: templates/result/grade_results.html:177 +msgid "First Semester GPA:" +msgstr "" + +#: templates/result/grade_results.html:105 +msgid "GRADE" +msgstr "" + +#: templates/result/grade_results.html:139 +msgid "Total second semester credit:" +msgstr "" + +#: templates/result/grade_results.html:144 +msgid "Total Credit:" +msgstr "" + +#: templates/result/grade_results.html:153 +#: templates/result/grade_results.html:184 +msgid "Second Semester GPA:" +msgstr "" + +#: templates/result/grade_results.html:162 +#: templates/result/grade_results.html:192 +msgid "Previous CGPA:" +msgstr "" + +#: templates/search/search_view.html:3 +msgid "Search result for" +msgstr "" + +#: templates/search/search_view.html:12 +msgid "Search" +msgstr "" + +#: templates/search/search_view.html:43 +msgid "result" +msgstr "" + +#: templates/search/search_view.html:62 +msgid "Program of" +msgstr "" + +#: templates/search/search_view.html:69 templates/search/search_view.html:126 +msgid "News And Events" +msgstr "" + +#: templates/search/search_view.html:72 +msgid "Date:" +msgstr "" + +#: templates/search/search_view.html:82 +msgid "quiz" +msgstr "" + +#: templates/search/search_view.html:82 +msgid "Course:" +msgstr "" + +#: templates/search/search_view.html:122 +msgid "Search by:" +msgstr "" + +#: templates/search/search_view.html:124 +msgid "Title or Description" +msgstr "" + +#: templates/search/search_view.html:125 +msgid "Title, Code or Description" +msgstr "" + +#: templates/search/search_view.html:127 +msgid "Title, Description or Category(practice, assignment and exam)" +msgstr "" + +#: templates/setting/admin_panel.html:37 templates/setting/admin_panel.html:42 +#: templates/setting/admin_panel.html:47 templates/setting/admin_panel.html:52 +#: templates/setting/admin_panel.html:70 templates/setting/admin_panel.html:75 +#: templates/setting/admin_panel.html:80 +msgid "Manage" +msgstr "" + +#: templates/setting/admin_panel.html:43 +msgid "students" +msgstr "" + +#: templates/setting/admin_panel.html:48 +msgid "sessions" +msgstr "" + +#: templates/setting/admin_panel.html:53 +msgid "semesters" +msgstr "" + +#: templates/setting/admin_panel.html:64 +msgid "Switch" +msgstr "" + +#: templates/setting/admin_panel.html:71 +msgid "programs" +msgstr "" + +#: templates/setting/admin_panel.html:76 +msgid "course allocations" +msgstr "" + +#: templates/setting/password_change.html:12 +msgid "Password Change" +msgstr "" + +#: templates/setting/profile_info_change.html:12 +msgid "Account setting" +msgstr "" + +#: templates/setting/profile_info_change.html:16 +msgid "Account Settings" +msgstr "" + +#: templates/setting/profile_info_change.html:44 +msgid "Update Profile" +msgstr "" + +#: templates/upload/upload_file_form.html:14 +msgid "File upload" +msgstr "" + +#: templates/upload/upload_file_form.html:18 +msgid "File upload for" +msgstr "" + +#: templates/upload/upload_file_form.html:26 +msgid "File Upload Form" +msgstr "" + +#: templates/upload/upload_file_form.html:33 +#: templates/upload/upload_video_form.html:32 +msgid "Upload" +msgstr "" + +#: templates/upload/upload_video_form.html:14 +msgid "Video upload" +msgstr "" + +#: templates/upload/upload_video_form.html:18 +msgid "Video upload for" +msgstr "" + +#: templates/upload/upload_video_form.html:26 +msgid "Video Upload Form" +msgstr "" + +#: templates/upload/video_single.html:35 +msgid "No video description set." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/_termui_impl.py:518 +#, python-brace-format +msgid "{editor}: Editing failed" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/_termui_impl.py:522 +#, python-brace-format +msgid "{editor}: Editing failed: {e}" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/core.py:1120 +msgid "Aborted!" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/core.py:1309 +#: venv/lib/python3.9/site-packages/click/decorators.py:559 +msgid "Show this message and exit." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/core.py:1340 +#: venv/lib/python3.9/site-packages/click/core.py:1370 +#, python-brace-format +msgid "(Deprecated) {text}" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/core.py:1387 +msgid "Options" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/core.py:1413 +#, python-brace-format +msgid "Got unexpected extra argument ({args})" +msgid_plural "Got unexpected extra arguments ({args})" +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/click/core.py:1429 +msgid "DeprecationWarning: The command {name!r} is deprecated." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/core.py:1636 +msgid "Commands" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/core.py:1668 +msgid "Missing command." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/core.py:1746 +msgid "No such command {name!r}." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/core.py:2310 +msgid "Value must be an iterable." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/core.py:2331 +#, python-brace-format +msgid "Takes {nargs} values but 1 was given." +msgid_plural "Takes {nargs} values but {len} were given." +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/click/core.py:2778 +#, python-brace-format +msgid "env var: {var}" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/core.py:2808 +msgid "(dynamic)" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/core.py:2821 +#, python-brace-format +msgid "default: {default}" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/core.py:2834 +msgid "required" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/decorators.py:465 +#, python-format +msgid "%(prog)s, version %(version)s" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/decorators.py:528 +msgid "Show the version and exit." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/exceptions.py:44 +#: venv/lib/python3.9/site-packages/click/exceptions.py:80 +#, python-brace-format +msgid "Error: {message}" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/exceptions.py:72 +#, python-brace-format +msgid "Try '{command} {option}' for help." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/exceptions.py:121 +#, python-brace-format +msgid "Invalid value: {message}" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/exceptions.py:123 +#, python-brace-format +msgid "Invalid value for {param_hint}: {message}" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/exceptions.py:179 +msgid "Missing argument" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/exceptions.py:181 +msgid "Missing option" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/exceptions.py:183 +msgid "Missing parameter" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/exceptions.py:185 +#, python-brace-format +msgid "Missing {param_type}" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/exceptions.py:192 +#, python-brace-format +msgid "Missing parameter: {param_name}" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/exceptions.py:212 +#, python-brace-format +msgid "No such option: {name}" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/exceptions.py:224 +#, python-brace-format +msgid "Did you mean {possibility}?" +msgid_plural "(Possible options: {possibilities})" +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/click/exceptions.py:262 +msgid "unknown error" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/exceptions.py:269 +msgid "Could not open file {filename!r}: {message}" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/parser.py:231 +msgid "Argument {name!r} takes {nargs} values." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/parser.py:413 +msgid "Option {name!r} does not take a value." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/parser.py:474 +msgid "Option {name!r} requires an argument." +msgid_plural "Option {name!r} requires {nargs} arguments." +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/click/shell_completion.py:319 +msgid "Shell completion is not supported for Bash versions older than 4.4." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/shell_completion.py:326 +msgid "Couldn't detect Bash version, shell completion is not supported." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/termui.py:158 +msgid "Repeat for confirmation" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/termui.py:174 +msgid "Error: The value you entered was invalid." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/termui.py:176 +#, python-brace-format +msgid "Error: {e.message}" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/termui.py:187 +msgid "Error: The two entered values do not match." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/termui.py:243 +msgid "Error: invalid input" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/termui.py:773 +msgid "Press any key to continue..." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/types.py:266 +#, python-brace-format +msgid "" +"Choose from:\n" +"\t{choices}" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/types.py:298 +msgid "{value!r} is not {choice}." +msgid_plural "{value!r} is not one of {choices}." +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/click/types.py:392 +msgid "{value!r} does not match the format {format}." +msgid_plural "{value!r} does not match the formats {formats}." +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/click/types.py:414 +msgid "{value!r} is not a valid {number_type}." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/types.py:470 +#, python-brace-format +msgid "{value} is not in the range {range}." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/types.py:611 +msgid "{value!r} is not a valid boolean." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/types.py:635 +msgid "{value!r} is not a valid UUID." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/types.py:822 +msgid "file" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/types.py:824 +msgid "directory" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/types.py:826 +msgid "path" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/types.py:877 +msgid "{name} {filename!r} does not exist." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/types.py:886 +msgid "{name} {filename!r} is a file." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/types.py:894 +#, python-brace-format +msgid "{name} '{filename}' is a directory." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/types.py:903 +msgid "{name} {filename!r} is not readable." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/types.py:912 +msgid "{name} {filename!r} is not writable." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/types.py:921 +msgid "{name} {filename!r} is not executable." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/types.py:988 +#, python-brace-format +msgid "{len_type} values are required, but {len_value} was given." +msgid_plural "{len_type} values are required, but {len_value} were given." +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/crispy_forms/tests/test_form_helper.py:130 +#: venv/lib/python3.9/site-packages/crispy_forms/tests/test_form_helper.py:140 +#: venv/lib/python3.9/site-packages/django/forms/fields.py:91 +msgid "This field is required." +msgstr "" + +#: venv/lib/python3.9/site-packages/crispy_forms/tests/test_layout.py:392 +msgid "i18n text" +msgstr "" + +#: venv/lib/python3.9/site-packages/crispy_forms/tests/test_layout.py:394 +msgid "i18n legend" +msgstr "" + +#: venv/lib/python3.9/site-packages/crispy_forms/tests/test_layout_objects.py:143 +#: venv/lib/python3.9/site-packages/django/core/validators.py:22 +msgid "Enter a valid value." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/contrib/messages/apps.py:15 +msgid "Messages" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/contrib/sitemaps/apps.py:8 +msgid "Site Maps" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/contrib/staticfiles/apps.py:9 +msgid "Static Files" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/contrib/syndication/apps.py:7 +msgid "Syndication" +msgstr "" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +#: venv/lib/python3.9/site-packages/django/core/paginator.py:30 +msgid "…" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/core/paginator.py:50 +msgid "That page number is not an integer" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/core/paginator.py:52 +msgid "That page number is less than 1" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/core/paginator.py:54 +msgid "That page contains no results" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:104 +#: venv/lib/python3.9/site-packages/django/forms/fields.py:752 +msgid "Enter a valid URL." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:165 +msgid "Enter a valid integer." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:176 +msgid "Enter a valid email address." +msgstr "" + +#. Translators: "letters" means latin letters: a-z and A-Z. +#: venv/lib/python3.9/site-packages/django/core/validators.py:259 +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:267 +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:279 +#: venv/lib/python3.9/site-packages/django/core/validators.py:287 +#: venv/lib/python3.9/site-packages/django/core/validators.py:316 +msgid "Enter a valid IPv4 address." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:296 +#: venv/lib/python3.9/site-packages/django/core/validators.py:317 +msgid "Enter a valid IPv6 address." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:308 +#: venv/lib/python3.9/site-packages/django/core/validators.py:315 +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:351 +msgid "Enter only digits separated by commas." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:357 +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:392 +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:401 +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:410 +#, python-format +msgid "Ensure this value is a multiple of step size %(limit_value)s." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:420 +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:438 +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:461 +#: venv/lib/python3.9/site-packages/django/forms/fields.py:347 +#: venv/lib/python3.9/site-packages/django/forms/fields.py:386 +msgid "Enter a number." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:463 +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:468 +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:473 +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:544 +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:605 +msgid "Null characters are not allowed." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/base.py:1425 +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/constraints.py:17 +#, python-format +msgid "Constraint “%(name)s” is violated." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:128 +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:129 +msgid "This field cannot be null." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:130 +msgid "This field cannot be blank." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:131 +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "" + +#. Translators: The 'lookup_type' is one of 'date', 'year' or +#. 'month'. Eg: "Title must be unique for pub_date year" +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:135 +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:173 +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1094 +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1095 +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1097 +msgid "Boolean (Either True or False)" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1147 +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1149 +msgid "String (unlimited)" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1253 +msgid "Comma-separated integers" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1354 +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1358 +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1493 +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1362 +msgid "Date (without time)" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1489 +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1497 +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1502 +msgid "Date (with time)" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1626 +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1628 +msgid "Decimal number" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1789 +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1793 +msgid "Duration" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1845 +msgid "Email address" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1870 +msgid "File path" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1948 +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1950 +msgid "Floating point number" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1990 +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1992 +msgid "Integer" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2088 +msgid "Big (8 byte) integer" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2105 +msgid "Small integer" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2113 +msgid "IPv4 address" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2144 +msgid "IP address" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2237 +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2238 +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2240 +msgid "Boolean (Either True, False or None)" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2291 +msgid "Positive big integer" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2306 +msgid "Positive integer" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2321 +msgid "Positive small integer" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2337 +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2373 +msgid "Text" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2448 +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2452 +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2456 +msgid "Time" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2564 +msgid "URL" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2588 +msgid "Raw binary data" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2653 +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2655 +msgid "Universally unique identifier" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/files.py:232 +msgid "File" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/files.py:393 +msgid "Image" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/json.py:26 +msgid "A JSON object" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/json.py:28 +msgid "Value must be valid JSON." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/related.py:919 +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/related.py:921 +msgid "Foreign Key (type determined by related field)" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/related.py:1212 +msgid "One-to-one relationship" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/related.py:1269 +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/related.py:1271 +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/related.py:1319 +msgid "Many-to-many relationship" +msgstr "" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the label +#: venv/lib/python3.9/site-packages/django/forms/boundfield.py:184 +msgid ":?.!" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/fields.py:298 +msgid "Enter a whole number." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/fields.py:467 +#: venv/lib/python3.9/site-packages/django/forms/fields.py:1241 +msgid "Enter a valid date." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/fields.py:490 +#: venv/lib/python3.9/site-packages/django/forms/fields.py:1242 +msgid "Enter a valid time." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/fields.py:517 +msgid "Enter a valid date/time." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/fields.py:551 +msgid "Enter a valid duration." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/fields.py:552 +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/fields.py:621 +msgid "No file was submitted. Check the encoding type on the form." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/fields.py:622 +msgid "No file was submitted." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/fields.py:623 +msgid "The submitted file is empty." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/fields.py:625 +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/django/forms/fields.py:630 +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/fields.py:694 +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/fields.py:857 +#: venv/lib/python3.9/site-packages/django/forms/fields.py:949 +#: venv/lib/python3.9/site-packages/django/forms/models.py:1566 +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/fields.py:951 +#: venv/lib/python3.9/site-packages/django/forms/fields.py:1070 +#: venv/lib/python3.9/site-packages/django/forms/models.py:1564 +msgid "Enter a list of values." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/fields.py:1071 +msgid "Enter a complete value." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/fields.py:1310 +msgid "Enter a valid UUID." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/fields.py:1340 +msgid "Enter a valid JSON." +msgstr "" + +#. Translators: This is the default suffix added to form field labels +#: venv/lib/python3.9/site-packages/django/forms/forms.py:98 +msgid ":" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/forms.py:244 +#: venv/lib/python3.9/site-packages/django/forms/forms.py:328 +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/formsets.py:63 +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/formsets.py:67 +#, python-format +msgid "Please submit at most %(num)d form." +msgid_plural "Please submit at most %(num)d forms." +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/django/forms/formsets.py:72 +#, python-format +msgid "Please submit at least %(num)d form." +msgid_plural "Please submit at least %(num)d forms." +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/django/forms/formsets.py:484 +#: venv/lib/python3.9/site-packages/django/forms/formsets.py:491 +msgid "Order" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/models.py:886 +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/models.py:891 +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/models.py:898 +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/models.py:907 +msgid "Please correct the duplicate values below." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/models.py:1338 +msgid "The inline value did not match the parent instance." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/models.py:1429 +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/models.py:1568 +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/utils.py:226 +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/widgets.py:463 +msgid "Clear" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/widgets.py:464 +msgid "Currently" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/widgets.py:465 +msgid "Change" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/widgets.py:794 +msgid "Unknown" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/widgets.py:795 +msgid "Yes" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/widgets.py:796 +msgid "No" +msgstr "" + +#. Translators: Please do not add spaces around commas. +#: venv/lib/python3.9/site-packages/django/template/defaultfilters.py:874 +msgid "yes,no,maybe" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/template/defaultfilters.py:904 +#: venv/lib/python3.9/site-packages/django/template/defaultfilters.py:921 +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/django/template/defaultfilters.py:923 +#, python-format +msgid "%s KB" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/template/defaultfilters.py:925 +#, python-format +msgid "%s MB" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/template/defaultfilters.py:927 +#, python-format +msgid "%s GB" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/template/defaultfilters.py:929 +#, python-format +msgid "%s TB" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/template/defaultfilters.py:931 +#, python-format +msgid "%s PB" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dateformat.py:73 +msgid "p.m." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dateformat.py:74 +msgid "a.m." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dateformat.py:79 +msgid "PM" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dateformat.py:80 +msgid "AM" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dateformat.py:152 +msgid "midnight" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dateformat.py:154 +msgid "noon" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:7 +msgid "Monday" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:8 +msgid "Tuesday" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:9 +msgid "Wednesday" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:10 +msgid "Thursday" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:11 +msgid "Friday" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:12 +msgid "Saturday" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:13 +msgid "Sunday" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:16 +msgid "Mon" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:17 +msgid "Tue" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:18 +msgid "Wed" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:19 +msgid "Thu" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:20 +msgid "Fri" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:21 +msgid "Sat" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:22 +msgid "Sun" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:25 +msgid "January" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:26 +msgid "February" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:27 +msgid "March" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:28 +msgid "April" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:29 +msgid "May" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:30 +msgid "June" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:31 +msgid "July" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:32 +msgid "August" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:33 +msgid "September" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:34 +msgid "October" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:35 +msgid "November" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:36 +msgid "December" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:39 +msgid "jan" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:40 +msgid "feb" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:41 +msgid "mar" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:42 +msgid "apr" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:43 +msgid "may" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:44 +msgid "jun" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:45 +msgid "jul" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:46 +msgid "aug" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:47 +msgid "sep" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:48 +msgid "oct" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:49 +msgid "nov" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:50 +msgid "dec" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:53 +msgctxt "abbrev. month" +msgid "Jan." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:54 +msgctxt "abbrev. month" +msgid "Feb." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:55 +msgctxt "abbrev. month" +msgid "March" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:56 +msgctxt "abbrev. month" +msgid "April" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:57 +msgctxt "abbrev. month" +msgid "May" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:58 +msgctxt "abbrev. month" +msgid "June" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:59 +msgctxt "abbrev. month" +msgid "July" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:60 +msgctxt "abbrev. month" +msgid "Aug." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:61 +msgctxt "abbrev. month" +msgid "Sept." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:62 +msgctxt "abbrev. month" +msgid "Oct." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:63 +msgctxt "abbrev. month" +msgid "Nov." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:64 +msgctxt "abbrev. month" +msgid "Dec." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:67 +msgctxt "alt. month" +msgid "January" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:68 +msgctxt "alt. month" +msgid "February" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:69 +msgctxt "alt. month" +msgid "March" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:70 +msgctxt "alt. month" +msgid "April" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:71 +msgctxt "alt. month" +msgid "May" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:72 +msgctxt "alt. month" +msgid "June" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:73 +msgctxt "alt. month" +msgid "July" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:74 +msgctxt "alt. month" +msgid "August" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:75 +msgctxt "alt. month" +msgid "September" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:76 +msgctxt "alt. month" +msgid "October" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:77 +msgctxt "alt. month" +msgid "November" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:78 +msgctxt "alt. month" +msgid "December" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/ipv6.py:8 +msgid "This is not a valid IPv6 address." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/text.py:137 +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "" + +#. Translators: This string is used as a separator between list elements +#: venv/lib/python3.9/site-packages/django/utils/text.py:341 +#: venv/lib/python3.9/site-packages/django/utils/timesince.py:135 +msgid ", " +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/timesince.py:8 +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/django/utils/timesince.py:9 +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/django/utils/timesince.py:10 +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/django/utils/timesince.py:11 +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/django/utils/timesince.py:12 +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/django/utils/timesince.py:13 +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/django/views/csrf.py:111 +msgid "Forbidden" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/csrf.py:112 +msgid "CSRF verification failed. Request aborted." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/csrf.py:116 +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/csrf.py:122 +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/csrf.py:127 +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/csrf.py:136 +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/csrf.py:142 +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/csrf.py:148 +msgid "More information is available with DEBUG=True." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/generic/dates.py:44 +msgid "No year specified" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/generic/dates.py:64 +#: venv/lib/python3.9/site-packages/django/views/generic/dates.py:115 +#: venv/lib/python3.9/site-packages/django/views/generic/dates.py:214 +msgid "Date out of range" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/generic/dates.py:94 +msgid "No month specified" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/generic/dates.py:147 +msgid "No day specified" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/generic/dates.py:194 +msgid "No week specified" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/generic/dates.py:349 +#: venv/lib/python3.9/site-packages/django/views/generic/dates.py:380 +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/generic/dates.py:652 +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/generic/dates.py:692 +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/generic/detail.py:56 +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/generic/list.py:70 +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/generic/list.py:77 +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/generic/list.py:169 +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/static.py:38 +msgid "Directory indexes are not allowed here." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/static.py:40 +#, python-format +msgid "“%(path)s” does not exist" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/static.py:79 +#, python-format +msgid "Index of %(directory)s" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/templates/default_urlconf.html:7 +#: venv/lib/python3.9/site-packages/django/views/templates/default_urlconf.html:220 +msgid "The install worked successfully! Congratulations!" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/templates/default_urlconf.html:206 +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/templates/default_urlconf.html:221 +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not " +"configured any URLs." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/templates/default_urlconf.html:229 +msgid "Django Documentation" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/templates/default_urlconf.html:230 +msgid "Topics, references, & how-to’s" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/templates/default_urlconf.html:238 +msgid "Tutorial: A Polling App" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/templates/default_urlconf.html:239 +msgid "Get started with Django" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/templates/default_urlconf.html:247 +msgid "Django Community" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/templates/default_urlconf.html:248 +msgid "Connect, get help, or contribute" +msgstr "" + +#: venv/lib/python3.9/site-packages/kombu/transport/qpid.py:1311 +#, python-format +msgid "Attempting to connect to qpid with SASL mechanism %s" +msgstr "" + +#: venv/lib/python3.9/site-packages/kombu/transport/qpid.py:1316 +#, python-format +msgid "Connected to qpid with SASL mechanism %s" +msgstr "" + +#: venv/lib/python3.9/site-packages/kombu/transport/qpid.py:1334 +#, python-format +msgid "Unable to connect to qpid with SASL mechanism %s" +msgstr "" diff --git a/locale/ru/LC_MESSAGES/django.po b/locale/ru/LC_MESSAGES/django.po index a7db439..0e7e1d8 100644 --- a/locale/ru/LC_MESSAGES/django.po +++ b/locale/ru/LC_MESSAGES/django.po @@ -1,249 +1,312 @@ - +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy msgid "" msgstr "" -"Project-Id-Version:PACKAGE VERSION" -"Report-Msgid-Bugs-To:" -"POT-Creation-Date:2024-04-15 19:36+0600" -"PO-Revision-Date:YEAR-MO-DA HO:MI+ZONE" -"Last-Translator:FULL NAME " -"Language-Team:LANGUAGE " -"Language:" -"MIME-Version:1.0" -"Content-Type:text/plain; charset=UTF-8" -"Content-Transfer-Encoding:8bit" -"Plural-Forms:nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-09-29 13:25+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || " +"(n%100>=11 && n%100<=14)? 2 : 3);\n" #: accounts/models.py:14 course/models.py:24 -msgid "Bachloar" -msgstr "Бакалавр" +msgid "Bachelor" +msgstr "" + #: accounts/models.py:15 course/models.py:25 msgid "Master" -msgstr "Магистр" +msgstr "" + #: accounts/models.py:19 course/models.py:29 -msgid "Bachloar Degree" -msgstr "Степень бакалавра" +msgid "Bachelor Degree" +msgstr "" + #: accounts/models.py:20 course/models.py:30 msgid "Master Degree" -msgstr "Степень магистра" +msgstr "" + #: accounts/models.py:23 accounts/models.py:32 msgid "Father" -msgstr "Отец" +msgstr "" + #: accounts/models.py:24 accounts/models.py:33 msgid "Mother" -msgstr "Мать" +msgstr "" + #: accounts/models.py:25 accounts/models.py:34 msgid "Brother" -msgstr "Брат" +msgstr "" + #: accounts/models.py:26 accounts/models.py:35 msgid "Sister" -msgstr "Сестра" +msgstr "" + #: accounts/models.py:27 accounts/models.py:36 msgid "Grand mother" -msgstr "Бабушка" +msgstr "" + #: accounts/models.py:28 accounts/models.py:37 msgid "Grand father" -msgstr "Дед" +msgstr "" + #: accounts/models.py:29 accounts/models.py:38 msgid "Other" -msgstr "Другой" +msgstr "" + #: accounts/models.py:67 msgid "M" -msgstr "М" +msgstr "" + #: accounts/models.py:67 msgid "Male" -msgstr "Мужской" +msgstr "" + #: accounts/models.py:67 msgid "F" -msgstr "Ж" +msgstr "" + #: accounts/models.py:67 msgid "Female" -msgstr "Женский" +msgstr "" + #: accounts/models.py:103 msgid "Admin" -msgstr "Админ" +msgstr "" + #: accounts/models.py:105 templates/result/add_score_for.html:52 msgid "Student" -msgstr "Студент" +msgstr "" + #: accounts/models.py:107 templates/course/course_allocation_view.html:32 msgid "Lecturer" -msgstr "Преподаватель" +msgstr "" + #: accounts/models.py:109 msgid "Parent" -msgstr "Родитель" +msgstr "" + #: accounts/validators.py:12 msgid "" "Enter a valid username. This value may contain only English letters, " "numbers, and @/./+/-/_ characters." msgstr "" -"Введите действительное имя пользователя. Это значение может содержать только" -" английские буквы, цифры и символы @/./+/-/_." -#: config/settings.py:163 -msgid "Russia" -msgstr "Россия" -#: config/settings.py:164 + +#: config/settings.py:147 msgid "English" -msgstr "Английский" -#: core/models.py:9 core/models.py:13 templates/core/index.html:59 -#: templates/core/index.html:64 templates/setting/admin_panel.html:80 +msgstr "" + +#: config/settings.py:148 +msgid "Russia" +msgstr "" + +#: core/models.py:9 core/models.py:13 templates/core/index.html:47 +#: templates/core/index.html:52 templates/setting/admin_panel.html:80 #: templates/setting/admin_panel.html:81 msgid "News" -msgstr "Новости" +msgstr "" + #: core/models.py:10 core/models.py:14 msgid "Event" -msgstr "Событие" +msgstr "" + #: core/models.py:17 core/models.py:22 course/models.py:33 course/models.py:38 msgid "First" -msgstr "Первый" +msgstr "" + #: core/models.py:18 core/models.py:23 course/models.py:34 course/models.py:39 msgid "Second" -msgstr "Второй" +msgstr "" + #: core/models.py:19 core/models.py:24 course/models.py:35 course/models.py:40 msgid "Third" -msgstr "Третий" +msgstr "" + #: course/models.py:71 #, python-brace-format msgid "The program '{instance}' has been {verb}." -msgstr "Программа '{instance}' была {verb}." +msgstr "" + #: course/models.py:76 #, python-brace-format msgid "The program '{instance}' has been deleted." -msgstr "Программа '{instance}' удалена." +msgstr "" + #: course/models.py:138 #, python-brace-format msgid "The course '{instance}' has been {verb}." -msgstr "Курс '{instance}' был {verb}." +msgstr "" + #: course/models.py:143 #, python-brace-format msgid "The course '{instance}' has been deleted." -msgstr "Курс '{instance}' был удален." +msgstr "" + #: course/models.py:150 msgid "allocated_lecturer" -msgstr "выделенный_лектор" +msgstr "" + #: course/models.py:152 msgid "allocated_course" -msgstr "выделенный_курс" -#: course/models.py:217 +msgstr "" + +#: course/models.py:218 #, python-brace-format msgid "" -"The file '{instance.title}' has been uploaded to the course " -"'{instance.course}'." -msgstr "Файл '{instance.title}' загружен в курс '{instance.course}'." -#: course/models.py:221 +"The file '{instance.title}' has been uploaded to the course '{instance." +"course}'." +msgstr "" + +#: course/models.py:224 #, python-brace-format msgid "" "The file '{instance.title}' of the course '{instance.course}' has been " "updated." -msgstr "Файл '{instance.title}' курса '{instance.course}' обновлен." -#: course/models.py:228 +msgstr "" + +#: course/models.py:233 #, python-brace-format msgid "" "The file '{instance.title}' of the course '{instance.course}' has been " "deleted." -msgstr "Файл '{instance.title}' курса '{instance.course}' был удален." -#: course/models.py:238 +msgstr "" + +#: course/models.py:244 msgid "Valid video formats: mp4, mkv, wmv, 3gp, f4v, avi, mp3" -msgstr "Допустимые форматы видео: mp4, mkv, wmv, 3gp, f4v, avi, mp3." -#: course/models.py:271 +msgstr "" + +#: course/models.py:278 #, python-brace-format msgid "" -"The video '{instance.title}' has been uploaded to the course " -"{instance.course}." -msgstr "Видео '{instance.title}' было загружено в курс {instance.course}." -#: course/models.py:275 +"The video '{instance.title}' has been uploaded to the course {instance." +"course}." +msgstr "" + +#: course/models.py:284 #, python-brace-format msgid "" "The video '{instance.title}' of the course '{instance.course}' has been " "updated." -msgstr "Видео '{instance.title}' курса '{instance.course}' обновлено." -#: course/models.py:282 +msgstr "" + +#: course/models.py:293 #, python-brace-format msgid "" "The video '{instance.title}' of the course '{instance.course}' has been " "deleted." -msgstr "Видео '{instance.title}' курса '{instance.course}' было удалено." -#: course/models.py:287 +msgstr "" + +#: course/models.py:299 msgid "NOTE: Only department head can offer semester courses" msgstr "" -"ПРИМЕЧАНИЕ: Только руководитель отдела может предлагать семестровые курсы." + #: quiz/admin.py:31 quiz/admin.py:32 quiz/forms.py:38 quiz/forms.py:39 #: quiz/models.py:468 templates/quiz/quiz_list.html:41 msgid "Questions" -msgstr "Вопросы" +msgstr "" + #: quiz/models.py:23 quiz/models.py:529 msgid "Content" -msgstr "Содержание" +msgstr "" + #: quiz/models.py:24 msgid "Random" -msgstr "Случайный" +msgstr "" + #: quiz/models.py:25 +#: venv/lib/python3.9/site-packages/modeltranslation/widgets.py:32 msgid "None" -msgstr "Никто" +msgstr "" + #: quiz/models.py:29 templates/result/add_score_for.html:53 #: templates/result/assessment_results.html:40 #: templates/result/assessment_results.html:82 msgid "Assignment" -msgstr "Назначение" +msgstr "" + #: quiz/models.py:30 msgid "Exam" -msgstr "Экзамен" +msgstr "" + #: quiz/models.py:31 msgid "Practice Quiz" -msgstr "Практический тест" +msgstr "" + #: quiz/models.py:53 msgid "Title" -msgstr "Заголовок" +msgstr "" + #: quiz/models.py:56 msgid "Description" -msgstr "Описание" +msgstr "" + #: quiz/models.py:58 msgid "A detailed description of the quiz" -msgstr "Подробное описание викторины" +msgstr "" + #: quiz/models.py:64 msgid "Random Order" -msgstr "Случайный порядок" +msgstr "" + #: quiz/models.py:65 msgid "Display the questions in a random order or as they are set?" -msgstr "Отображать вопросы в случайном порядке или по мере их установки?" +msgstr "" + #: quiz/models.py:74 msgid "Answers at end" -msgstr "Ответы в конце" +msgstr "" + #: quiz/models.py:76 msgid "" "Correct answer is NOT shown after question. Answers displayed at the end." msgstr "" -"Правильный ответ НЕ отображается после вопроса. Ответы отображаются в конце." + #: quiz/models.py:83 msgid "Exam Paper" -msgstr "Экзаменационная бумага" +msgstr "" + #: quiz/models.py:85 msgid "" "If yes, the result of each attempt by a user will be stored. Necessary for " "marking." msgstr "" -"Если да, результат каждой попытки пользователя будет сохранен. Необходимо " -"для маркировки." + #: quiz/models.py:92 msgid "Single Attempt" -msgstr "Одиночная попытка" +msgstr "" + #: quiz/models.py:93 msgid "If yes, only one attempt by a user will be permitted." -msgstr "Если да, пользователю будет разрешена только одна попытка." +msgstr "" + #: quiz/models.py:99 msgid "Pass Mark" -msgstr "Проходной балл" +msgstr "" + #: quiz/models.py:101 msgid "Percentage required to pass exam." -msgstr "Процент, необходимый для сдачи экзамена." +msgstr "" + #: quiz/models.py:107 msgid "Draft" -msgstr "Черновик" +msgstr "" + #: quiz/models.py:109 msgid "" "If yes, the quiz is not displayed in the quiz list and can only be taken by " "users who can edit quizzes." msgstr "" -"Если да, тест не отображается в списке тестов, и его могут пройти только " -"пользователи, имеющие право редактировать тесты." + #: quiz/models.py:129 quiz/models.py:290 quiz/models.py:443 #: templates/quiz/quiz_list.html:39 templates/quiz/sitting_list.html:37 #: templates/result/add_score_for.html:55 @@ -251,153 +314,198 @@ msgstr "" #: templates/result/assessment_results.html:84 #: templates/search/search_view.html:79 templates/search/search_view.html:127 msgid "Quiz" -msgstr "Контрольный опрос" +msgstr "" + #: quiz/models.py:130 templates/question.html:16 #: templates/quiz/mcquestion_form.html:13 templates/quiz/quiz_form.html:13 #: templates/quiz/quiz_list.html:16 templates/quiz/quiz_list.html:26 #: templates/result.html:18 msgid "Quizzes" -msgstr "Викторины" +msgstr "" + #: quiz/models.py:164 quiz/models.py:288 templates/quiz/sitting_detail.html:24 #: templates/quiz/sitting_list.html:35 msgid "User" -msgstr "Пользователь" +msgstr "" + #: quiz/models.py:168 templates/progress.html:68 #: templates/quiz/sitting_detail.html:26 templates/quiz/sitting_list.html:39 msgid "Score" -msgstr "Счет" +msgstr "" + #: quiz/models.py:175 msgid "User Progress" -msgstr "Прогресс пользователя" +msgstr "" + #: quiz/models.py:176 msgid "User progress records" -msgstr "Записи прогресса пользователя" +msgstr "" + #: quiz/models.py:203 msgid "error" -msgstr "ошибка" +msgstr "" + #: quiz/models.py:203 msgid "category does not exist or invalid score" -msgstr "категория не существует или неверный балл" +msgstr "" + #: quiz/models.py:248 msgid "Question set of the quiz is empty. Please configure questions properly" msgstr "" -"Набор вопросов викторины пуст. Пожалуйста, правильно сформулируйте вопросы" + #: quiz/models.py:292 templates/quiz/sitting_list.html:36 #: templates/search/search_view.html:59 templates/search/search_view.html:125 msgid "Course" -msgstr "Курс" +msgstr "" + #: quiz/models.py:297 msgid "Question Order" -msgstr "Порядок вопросов" +msgstr "" + #: quiz/models.py:303 msgid "Question List" -msgstr "Список вопросов" +msgstr "" + #: quiz/models.py:310 msgid "Incorrect questions" -msgstr "Неправильные вопросы" +msgstr "" + #: quiz/models.py:314 msgid "Current Score" -msgstr "Текущий счет" +msgstr "" + #: quiz/models.py:316 msgid "Complete" -msgstr "Полный" +msgstr "" + #: quiz/models.py:319 msgid "User Answers" -msgstr "Ответы пользователей" +msgstr "" + #: quiz/models.py:321 templates/quiz/sitting_detail.html:27 msgid "Start" -msgstr "Начинать" +msgstr "" + #: quiz/models.py:322 templates/quiz/sitting_detail.html:28 msgid "End" -msgstr "Конец" +msgstr "" + #: quiz/models.py:327 msgid "Can see completed exams." -msgstr "Можно увидеть сданные экзамены." +msgstr "" + #: quiz/models.py:404 msgid "You have passed this quiz, congratulation" -msgstr "Вы прошли этот тест, поздравляем" +msgstr "" + #: quiz/models.py:406 msgid "You failed this quiz, give it one chance again." -msgstr "Вы провалили этот тест, дайте ему еще один шанс." +msgstr "" + #: quiz/models.py:448 msgid "Figure" -msgstr "Фигура" +msgstr "" + #: quiz/models.py:449 msgid "Add an image for the question if it's necessary." -msgstr "Если необходимо, добавьте изображение к вопросу." +msgstr "" + #: quiz/models.py:454 msgid "Enter the question text that you want displayed" -msgstr "Введите текст вопроса, который вы хотите отобразить" +msgstr "" + #: quiz/models.py:455 quiz/models.py:467 quiz/models.py:522 #: templates/question.html:125 templates/quiz/sitting_detail.html:34 msgid "Question" -msgstr "Вопрос" +msgstr "" + #: quiz/models.py:460 msgid "Explanation to be shown after the question has been answered." -msgstr "Пояснения отображаются после ответа на вопрос." +msgstr "" + #: quiz/models.py:461 templates/question.html:80 templates/question.html:89 #: templates/result.html:80 templates/result.html:150 msgid "Explanation" -msgstr "Объяснение" -#: quiz/models.py:481 -msgid "" -"The order in which multichoice choice options are displayed to the user" msgstr "" -"Порядок, в котором пользователю отображаются варианты выбора из нескольких " -"вариантов." + +#: quiz/models.py:481 +msgid "The order in which multichoice choice options are displayed to the user" +msgstr "" + #: quiz/models.py:483 msgid "Choice Order" -msgstr "Порядок выбора" +msgstr "" + #: quiz/models.py:516 msgid "Multiple Choice Question" -msgstr "Вопрос с множественным выбором" +msgstr "" + #: quiz/models.py:517 msgid "Multiple Choice Questions" -msgstr "Вопросы с множественным выбором" +msgstr "" + #: quiz/models.py:528 msgid "Enter the choice text that you want displayed" -msgstr "Введите текст выбора, который вы хотите отобразить" +msgstr "" + #: quiz/models.py:535 msgid "Is this a correct answer?" -msgstr "Это правильный ответ?" -#: quiz/models.py:536 templates/quiz/mcquestion_form.html:44 +msgstr "" + +#: quiz/models.py:536 templates/quiz/mcquestion_form.html:53 #: templates/quiz/sitting_detail.html:56 msgid "Correct" -msgstr "Правильный" +msgstr "" + #: quiz/models.py:543 msgid "Choice" -msgstr "Выбор" -#: quiz/models.py:544 templates/quiz/mcquestion_form.html:38 +msgstr "" + +#: quiz/models.py:544 templates/quiz/mcquestion_form.html:47 msgid "Choices" -msgstr "Выбор" +msgstr "" + #: quiz/models.py:564 msgid "Essay style question" -msgstr "Вопрос в стиле эссе" +msgstr "" + #: quiz/models.py:565 msgid "Essay style questions" -msgstr "Вопросы в стиле эссе" +msgstr "" + #: templates/400.html:5 msgid "Bad request" -msgstr "Неверный запрос" +msgstr "" + #: templates/400.html:6 msgid "Please make sure the form is correctly filled." -msgstr "Пожалуйста, убедитесь, что форма заполнена правильно." +msgstr "" + #: templates/400.html:7 templates/403.html:7 templates/404.html:7 #: templates/500.html:7 msgid "Return to the app" -msgstr "Вернуться в приложение" +msgstr "" + #: templates/403.html:5 msgid "forbidden" -msgstr "запрещенный" +msgstr "" + #: templates/403.html:6 msgid "You need the proper permission to make that request." -msgstr "Вам нужно соответствующее разрешение, чтобы сделать этот запрос." +msgstr "" + #: templates/404.html:6 msgid "Looks like the page you" -msgstr "Похоже на страницу, которую вы" +msgstr "" + +#: templates/500.html:5 +msgid "Server error" +msgstr "" + #: templates/500.html:6 msgid "Please try again later." -msgstr "Пожалуйста, повторите попытку позже." +msgstr "" + #: templates/accounts/add_staff.html:3 templates/accounts/add_student.html:3 #: templates/accounts/edit_lecturer.html:3 #: templates/accounts/edit_student.html:3 @@ -427,13 +535,14 @@ msgstr "Пожалуйста, повторите попытку позже." #: templates/upload/upload_video_form.html:3 #: templates/upload/video_single.html:3 msgid "Learning management system" -msgstr "Система управления обучением" +msgstr "" + #: templates/accounts/add_staff.html:11 templates/accounts/add_student.html:12 #: templates/accounts/edit_lecturer.html:11 #: templates/accounts/edit_student.html:11 #: templates/accounts/lecturer_list.html:9 templates/accounts/profile.html:14 #: templates/accounts/profile_single.html:14 -#: templates/accounts/student_list.html:10 templates/aside.html:60 +#: templates/accounts/student_list.html:10 templates/aside.html:47 #: templates/core/dashboard.html:13 templates/core/index.html:34 #: templates/core/post_add.html:11 templates/core/semester_list.html:9 #: templates/core/semester_update.html:11 templates/core/session_list.html:9 @@ -442,8 +551,7 @@ msgstr "Система управления обучением" #: templates/course/course_allocation_view.html:9 #: templates/course/course_registration.html:12 #: templates/course/course_single.html:10 templates/course/program_add.html:11 -#: templates/course/program_list.html:9 -#: templates/course/program_single.html:10 +#: templates/course/program_list.html:9 templates/course/program_single.html:10 #: templates/course/user_course_list.html:10 templates/progress.html:11 #: templates/question.html:12 templates/quiz/mcquestion_form.html:9 #: templates/quiz/quiz_form.html:9 templates/quiz/quiz_list.html:12 @@ -459,475 +567,602 @@ msgstr "Система управления обучением" #: templates/upload/upload_video_form.html:10 #: templates/upload/video_single.html:10 msgid "Home" -msgstr "Дом" +msgstr "" + #: templates/accounts/add_staff.html:12 #: templates/accounts/edit_lecturer.html:12 #: templates/accounts/lecturer_list.html:10 -#: templates/accounts/lecturer_list.html:21 templates/aside.html:71 -#: templates/core/dashboard.html:190 templates/pdf/lecturer_list.html:35 +#: templates/accounts/lecturer_list.html:21 templates/aside.html:58 +#: templates/core/dashboard.html:63 templates/pdf/lecturer_list.html:35 #: templates/setting/admin_panel.html:37 msgid "Lecturers" -msgstr "Преподаватели" +msgstr "" + #: templates/accounts/add_staff.html:13 templates/accounts/add_student.html:14 -#: templates/aside.html:126 +#: templates/aside.html:113 msgid "Add" -msgstr "Добавлять" +msgstr "" + #: templates/accounts/add_staff.html:17 msgid "Lecturer Add Form" -msgstr "Лектор Добавить форму" +msgstr "" + #: templates/accounts/add_staff.html:26 templates/accounts/add_student.html:27 #: templates/accounts/edit_lecturer.html:27 #: templates/accounts/edit_student.html:25 templates/accounts/profile.html:75 -#: templates/accounts/profile_single.html:85 -#: templates/pdf/profile_single.html:65 -#: templates/registration/register.html:40 +#: templates/accounts/profile_single.html:88 +#: templates/pdf/profile_single.html:65 templates/registration/register.html:40 #: templates/setting/profile_info_change.html:24 msgid "Personal Info" -msgstr "Личная информация" +msgstr "" + #: templates/accounts/add_staff.html:37 templates/accounts/add_student.html:49 #: templates/accounts/edit_lecturer.html:46 #: templates/accounts/edit_student.html:46 -#: templates/accounts/parent_form.html:11 -msgid "submit" -msgstr "представлять на рассмотрение" +#: templates/accounts/parent_form.html:11 templates/core/post_add.html:25 +#: templates/core/semester_update.html:38 templates/core/session_update.html:38 +#: templates/course/course_add.html:49 +#: templates/course/course_allocation_form.html:49 +#: templates/course/program_add.html:26 templates/quiz/mcquestion_form.html:67 +#: templates/quiz/quiz_form.html:66 templates/result/add_score_for.html:38 +msgid "Save" +msgstr "" + +#: templates/accounts/add_student.html:13 +#: templates/accounts/edit_student.html:12 +#: templates/accounts/student_list.html:11 +#: templates/accounts/student_list.html:24 templates/aside.html:61 +#: templates/core/dashboard.html:54 templates/pdf/student_list.html:35 +#: templates/setting/admin_panel.html:42 +msgid "Students" +msgstr "" + #: templates/accounts/add_student.html:18 msgid "Student Add Form" -msgstr "Форма добавления студента" +msgstr "" + #: templates/accounts/add_student.html:40 #: templates/accounts/edit_lecturer.html:39 -#: templates/accounts/edit_student.html:39 templates/core/dashboard.html:244 +#: templates/accounts/edit_student.html:39 templates/core/dashboard.html:117 #: templates/setting/profile_info_change.html:37 msgid "Others" -msgstr "Другие" +msgstr "" + #: templates/accounts/edit_lecturer.html:13 #: templates/accounts/edit_student.html:13 #: templates/accounts/lecturer_list.html:59 #: templates/accounts/student_list.html:61 #: templates/course/program_list.html:56 msgid "Update" -msgstr "Обновлять" +msgstr "" + #: templates/accounts/edit_lecturer.html:17 msgid "Lecturer Update Form" -msgstr "Форма обновления преподавателя" +msgstr "" + #: templates/accounts/edit_lecturer.html:27 #: templates/accounts/edit_student.html:25 #: templates/accounts/lecturer_list.html:33 +#: templates/accounts/profile_single.html:107 #: templates/accounts/student_list.html:38 templates/pdf/lecturer_list.html:44 #: templates/pdf/student_list.html:43 #: templates/registration/password_reset.html:13 #: templates/setting/profile_info_change.html:24 msgid "Email" -msgstr "Электронная почта" -#: templates/accounts/edit_student.html:12 -#: templates/accounts/student_list.html:11 -#: templates/accounts/student_list.html:24 templates/aside.html:74 -#: templates/core/dashboard.html:181 templates/pdf/student_list.html:35 -#: templates/setting/admin_panel.html:42 -msgid "Students" -msgstr "Студенты" +msgstr "" + #: templates/accounts/edit_student.html:17 msgid "Student Update Form" -msgstr "Форма обновления студента" +msgstr "" + #: templates/accounts/lecturer_list.html:16 msgid "Add Lecturer" -msgstr "Добавить лектора" +msgstr "" + #: templates/accounts/lecturer_list.html:17 #: templates/accounts/student_list.html:20 msgid "Download pdf" -msgstr "Скачать PDF" +msgstr "" + #: templates/accounts/lecturer_list.html:31 +#: templates/accounts/profile_single.html:92 #: templates/accounts/student_list.html:36 templates/pdf/lecturer_list.html:42 #: templates/pdf/student_list.html:41 msgid "ID No." -msgstr "Идентификационный номер" +msgstr "" + #: templates/accounts/lecturer_list.html:32 #: templates/accounts/student_list.html:37 templates/pdf/lecturer_list.html:43 #: templates/pdf/student_list.html:42 msgid "Full Name" -msgstr "Полное имя" -#: templates/accounts/lecturer_list.html:34 -#: templates/pdf/lecturer_list.html:45 templates/pdf/student_list.html:44 +msgstr "" + +#: templates/accounts/lecturer_list.html:34 templates/pdf/lecturer_list.html:45 +#: templates/pdf/student_list.html:44 msgid "Mob No." -msgstr "Моб №" +msgstr "" + #: templates/accounts/lecturer_list.html:35 +#: templates/accounts/profile_single.html:109 msgid "Address/city" -msgstr "Адрес Город" +msgstr "" + #: templates/accounts/lecturer_list.html:36 +#: templates/accounts/profile_single.html:29 +#: templates/accounts/profile_single.html:115 msgid "Last login" -msgstr "Последний Войти" +msgstr "" + #: templates/accounts/lecturer_list.html:38 #: templates/accounts/student_list.html:41 #: templates/course/course_allocation_view.html:35 #: templates/course/program_list.html:35 -#: templates/course/program_single.html:48 +#: templates/course/program_single.html:47 msgid "Action" -msgstr "Действие" +msgstr "" + #: templates/accounts/lecturer_list.html:60 #: templates/accounts/student_list.html:62 msgid "Download PDF" -msgstr "Скачать PDF" +msgstr "" + #: templates/accounts/lecturer_list.html:61 -#: templates/accounts/student_list.html:63 templates/core/index.html:90 +#: templates/accounts/student_list.html:63 templates/core/index.html:78 #: templates/core/semester_list.html:71 templates/core/session_list.html:66 #: templates/course/course_single.html:91 #: templates/course/course_single.html:168 #: templates/course/program_list.html:57 -#: templates/course/program_single.html:82 -#: templates/quiz/mcquestion_form.html:48 templates/quiz/quiz_list.html:68 +#: templates/course/program_single.html:81 +#: templates/quiz/mcquestion_form.html:57 templates/quiz/quiz_list.html:68 +#: venv/lib/python3.9/site-packages/django/forms/formsets.py:499 msgid "Delete" -msgstr "Удалить" -#: templates/accounts/lecturer_list.html:71 -#: templates/pdf/lecturer_list.html:63 templates/pdf/student_list.html:61 +msgstr "" + +#: templates/accounts/lecturer_list.html:71 templates/pdf/lecturer_list.html:63 +#: templates/pdf/student_list.html:61 msgid "No Lecturer(s)." -msgstr "Нет лектора(ов)." +msgstr "" + #: templates/accounts/lecturer_list.html:75 msgid "Add Lecturer Now." -msgstr "Добавьте лектора сейчас." +msgstr "" + #: templates/accounts/profile.html:29 templates/accounts/profile.html:101 -#: templates/accounts/profile_single.html:29 -#: templates/accounts/profile_single.html:111 templates/navbar.html:29 -#: templates/pdf/profile_single.html:41 templates/pdf/profile_single.html:92 +#: templates/navbar.html:29 templates/pdf/profile_single.html:41 +#: templates/pdf/profile_single.html:92 msgid "Last login:" -msgstr "Последний Войти:" -#: templates/accounts/profile.html:30 -#: templates/accounts/profile_single.html:30 -#: templates/pdf/profile_single.html:42 +msgstr "" + +#: templates/accounts/profile.html:30 templates/pdf/profile_single.html:42 msgid "Role:" -msgstr "Роль:" -#: templates/accounts/profile.html:37 -#: templates/accounts/profile_single.html:40 -#: templates/accounts/profile_single.html:45 +msgstr "" + +#: templates/accounts/profile.html:37 templates/accounts/profile_single.html:40 +#: templates/accounts/profile_single.html:48 msgid "Edit Profile" -msgstr "Редактировать профиль" +msgstr "" + #: templates/accounts/profile.html:39 msgid "Change password" -msgstr "Изменить пароль" -#: templates/accounts/profile.html:62 -#: templates/accounts/profile_single.html:72 templates/aside.html:80 -#: templates/course/user_course_list.html:3 +msgstr "" + +#: templates/accounts/profile.html:62 templates/accounts/profile_single.html:75 +#: templates/aside.html:67 templates/course/user_course_list.html:3 #: templates/course/user_course_list.html:11 #: templates/course/user_course_list.html:23 templates/navbar.html:34 #: templates/pdf/profile_single.html:52 msgid "My Courses" -msgstr "Мои курсы" -#: templates/accounts/profile.html:70 -#: templates/accounts/profile_single.html:80 +msgstr "" + +#: templates/accounts/profile.html:70 templates/accounts/profile_single.html:83 #: templates/pdf/profile_single.html:60 msgid "No courses assigned!" -msgstr "Курсы не назначены!" -#: templates/accounts/profile.html:77 -#: templates/accounts/profile_single.html:87 -#: templates/pdf/profile_single.html:67 +msgstr "" + +#: templates/accounts/profile.html:77 templates/pdf/profile_single.html:67 msgid "First Name:" -msgstr "Имя:" -#: templates/accounts/profile.html:78 -#: templates/accounts/profile_single.html:88 -#: templates/pdf/profile_single.html:68 +msgstr "" + +#: templates/accounts/profile.html:78 templates/pdf/profile_single.html:68 msgid "Last Name:" -msgstr "Фамилия:" -#: templates/accounts/profile.html:79 -#: templates/accounts/profile_single.html:89 -#: templates/pdf/profile_single.html:69 +msgstr "" + +#: templates/accounts/profile.html:79 templates/pdf/profile_single.html:69 msgid "ID No.:" -msgstr "Идентификационный номер:" -#: templates/accounts/profile.html:83 -#: templates/accounts/profile_single.html:93 +msgstr "" + +#: templates/accounts/profile.html:83 templates/accounts/profile_single.html:96 #: templates/pdf/profile_single.html:74 msgid "Applicant Info" -msgstr "Информация о заявителе" -#: templates/accounts/profile.html:85 -#: templates/accounts/profile_single.html:95 -#: templates/pdf/profile_single.html:76 +msgstr "" + +#: templates/accounts/profile.html:85 templates/pdf/profile_single.html:76 msgid "School:" -msgstr "Школа:" -#: templates/accounts/profile.html:85 -#: templates/accounts/profile_single.html:95 -#: templates/pdf/profile_single.html:76 +msgstr "" + +#: templates/accounts/profile.html:85 templates/pdf/profile_single.html:76 msgid "Hawas Preparatory School" -msgstr "Подготовительная школа Хавас" -#: templates/accounts/profile.html:86 -#: templates/accounts/profile_single.html:96 -#: templates/pdf/profile_single.html:77 +msgstr "" + +#: templates/accounts/profile.html:86 templates/pdf/profile_single.html:77 msgid "Level:" -msgstr "Уровень:" +msgstr "" + #: templates/accounts/profile.html:91 -#: templates/accounts/profile_single.html:101 +#: templates/accounts/profile_single.html:105 #: templates/pdf/profile_single.html:82 msgid "Contact Info" -msgstr "Контактная информация" -#: templates/accounts/profile.html:93 -#: templates/accounts/profile_single.html:103 -#: templates/pdf/profile_single.html:84 +msgstr "" + +#: templates/accounts/profile.html:93 templates/pdf/profile_single.html:84 msgid "Email:" -msgstr "Электронная почта:" -#: templates/accounts/profile.html:94 -#: templates/accounts/profile_single.html:104 -#: templates/pdf/profile_single.html:85 +msgstr "" + +#: templates/accounts/profile.html:94 templates/pdf/profile_single.html:85 msgid "Tel No.:" -msgstr "Номер телефона.:" -#: templates/accounts/profile.html:95 -#: templates/accounts/profile_single.html:105 -#: templates/pdf/profile_single.html:86 +msgstr "" + +#: templates/accounts/profile.html:95 templates/pdf/profile_single.html:86 msgid "Address/city:" -msgstr "Адрес Город:" +msgstr "" + #: templates/accounts/profile.html:99 -#: templates/accounts/profile_single.html:109 +#: templates/accounts/profile_single.html:113 #: templates/pdf/profile_single.html:90 msgid "Important Dates" -msgstr "Важные даты" -#: templates/accounts/profile.html:103 -#: templates/accounts/profile_single.html:113 -#: templates/pdf/profile_single.html:94 +msgstr "" + +#: templates/accounts/profile.html:103 templates/pdf/profile_single.html:94 msgid "Academic Year:" -msgstr "Академический год:" +msgstr "" + #: templates/accounts/profile.html:103 -#: templates/accounts/profile_single.html:113 -#: templates/core/semester_list.html:41 -#: templates/course/program_single.html:45 +#: templates/accounts/profile_single.html:117 +#: templates/core/semester_list.html:41 templates/course/program_single.html:44 #: templates/course/user_course_list.html:52 #: templates/course/user_course_list.html:96 #: templates/pdf/profile_single.html:94 templates/result/add_score.html:24 -#: templates/result/add_score_for.html:46 -#: templates/setting/admin_panel.html:52 +#: templates/result/add_score_for.html:46 templates/setting/admin_panel.html:52 msgid "Semester" -msgstr "Семестр" -#: templates/accounts/profile.html:105 -#: templates/accounts/profile_single.html:115 -#: templates/pdf/profile_single.html:96 +msgstr "" + +#: templates/accounts/profile.html:105 templates/pdf/profile_single.html:96 msgid "Registered Date:" -msgstr "Дата регистрации:" -#: templates/accounts/student_list.html:19 -msgid "Add Student" -msgstr "Добавить студента" +msgstr "" + +#: templates/accounts/profile_single.html:30 +msgid "Role" +msgstr "" + +#: templates/accounts/profile_single.html:43 +msgid "Change Program" +msgstr "" + +#: templates/accounts/profile_single.html:90 +msgid "First Name" +msgstr "" + +#: templates/accounts/profile_single.html:91 +msgid "Last Name" +msgstr "" + +#: templates/accounts/profile_single.html:98 +msgid "School" +msgstr "" + +#: templates/accounts/profile_single.html:99 +#: templates/course/program_single.html:42 +msgid "Level" +msgstr "" + +#: templates/accounts/profile_single.html:100 #: templates/accounts/student_list.html:39 templates/pdf/student_list.html:45 #: templates/search/search_view.html:49 templates/search/search_view.html:89 #: templates/search/search_view.html:124 msgid "Program" -msgstr "Программа" +msgstr "" + +#: templates/accounts/profile_single.html:108 +msgid "Tel No." +msgstr "" + +#: templates/accounts/profile_single.html:117 +msgid "Academic Year" +msgstr "" + +#: templates/accounts/profile_single.html:119 +msgid "Registered Date" +msgstr "" + +#: templates/accounts/student_list.html:19 +msgid "Add Student" +msgstr "" + #: templates/accounts/student_list.html:73 #: templates/result/add_score_for.html:105 msgid "No Student." -msgstr "Нет Студента." +msgstr "" + #: templates/accounts/student_list.html:77 msgid "Add Student Now." -msgstr "Добавьте студента сейчас." -#: templates/aside.html:56 templates/core/dashboard.html:3 -#: templates/core/dashboard.html:14 templates/core/dashboard.html:160 +msgstr "" + +#: templates/aside.html:43 templates/core/dashboard.html:3 +#: templates/core/dashboard.html:14 templates/core/dashboard.html:33 msgid "Dashboard" -msgstr "Панель приборов" -#: templates/aside.html:63 templates/navbar.html:41 +msgstr "" + +#: templates/aside.html:50 templates/navbar.html:41 msgid "Profile" -msgstr "Профиль" -#: templates/aside.html:68 templates/navbar.html:38 +msgstr "" + +#: templates/aside.html:55 templates/navbar.html:38 #: templates/setting/admin_panel.html:12 templates/setting/admin_panel.html:16 msgid "Admin Panel" -msgstr "Панель администратора" -#: templates/aside.html:85 +msgstr "" + +#: templates/aside.html:72 msgid "Programs & Courses" -msgstr "Программы и курсы" -#: templates/aside.html:90 templates/quiz/sitting_list.html:10 +msgstr "" + +#: templates/aside.html:77 templates/quiz/sitting_list.html:10 msgid "Complete Exams" -msgstr "Завершить экзамены" -#: templates/aside.html:96 templates/aside.html:117 +msgstr "" + +#: templates/aside.html:83 templates/aside.html:104 msgid "Quiz Progress Rec" -msgstr "Запись прогресса викторины" -#: templates/aside.html:99 +msgstr "" + +#: templates/aside.html:86 msgid "Course Allocation" -msgstr "Распределение курсов" -#: templates/aside.html:102 +msgstr "" + +#: templates/aside.html:89 msgid "Manage Session" -msgstr "Управление сеансом" -#: templates/aside.html:105 +msgstr "" + +#: templates/aside.html:92 msgid "Manage Semester" -msgstr "Управление семестром" -#: templates/aside.html:111 templates/result/add_score.html:11 +msgstr "" + +#: templates/aside.html:98 templates/result/add_score.html:11 #: templates/result/add_score.html:17 templates/result/add_score_for.html:12 msgid "Manage Score" -msgstr "Управление счетом" -#: templates/aside.html:120 templates/result/grade_results.html:10 +msgstr "" + +#: templates/aside.html:107 templates/result/grade_results.html:10 #: templates/result/grade_results.html:28 msgid "Grade Results" -msgstr "Результаты оценок" -#: templates/aside.html:123 templates/result/assessment_results.html:10 +msgstr "" + +#: templates/aside.html:110 templates/result/assessment_results.html:10 #: templates/result/assessment_results.html:28 msgid "Assesment Results" -msgstr "Результаты оценки" -#: templates/aside.html:126 +msgstr "" + +#: templates/aside.html:113 msgid "Drop Course" -msgstr "Бросить курс" -#: templates/aside.html:132 +msgstr "" + +#: templates/aside.html:119 msgid "Account Setting" -msgstr "Настройки аккаунта" -#: templates/aside.html:135 templates/setting/password_change.html:21 +msgstr "" + +#: templates/aside.html:122 templates/setting/password_change.html:21 #: templates/setting/password_change.html:25 msgid "Change Password" -msgstr "Изменить пароль" -#: templates/aside.html:143 +msgstr "" + +#: templates/aside.html:130 msgid "Read our" -msgstr "Прочтите наш" -#: templates/aside.html:143 +msgstr "" + +#: templates/aside.html:130 msgid "Privacy" -msgstr "Конфиденциальность" -#: templates/aside.html:143 +msgstr "" + +#: templates/aside.html:130 +#: venv/lib/python3.9/site-packages/django/db/models/base.py:1423 +#: venv/lib/python3.9/site-packages/django/forms/models.py:893 msgid "and" -msgstr "и" -#: templates/aside.html:143 +msgstr "" + +#: templates/aside.html:130 msgid "Terms of use." -msgstr "Условия эксплуатации." -#: templates/aside.html:148 +msgstr "" + +#: templates/aside.html:135 msgid "⭐️ Star This Project" -msgstr "⭐️ Отметьте звездой этот проект" -#: templates/core/dashboard.html:167 +msgstr "" + +#: templates/core/dashboard.html:40 msgid "Dashboard settings" -msgstr "Настройки панели управления" -#: templates/core/dashboard.html:168 +msgstr "" + +#: templates/core/dashboard.html:41 msgid "Display grid" -msgstr "Сетка отображения" -#: templates/core/dashboard.html:169 +msgstr "" + +#: templates/core/dashboard.html:42 msgid "Display table" -msgstr "Таблица отображения" -#: templates/core/dashboard.html:171 +msgstr "" + +#: templates/core/dashboard.html:44 msgid "Manage dashboard" -msgstr "Управление панелью управления" -#: templates/core/dashboard.html:199 +msgstr "" + +#: templates/core/dashboard.html:72 msgid "Administrators" -msgstr "Администраторы" -#: templates/core/dashboard.html:208 +msgstr "" + +#: templates/core/dashboard.html:81 msgid "Lab Assistance" -msgstr "Лабораторная помощь" -#: templates/core/dashboard.html:217 +msgstr "" + +#: templates/core/dashboard.html:90 msgid "Librarians" -msgstr "Библиотекари" -#: templates/core/dashboard.html:226 +msgstr "" + +#: templates/core/dashboard.html:99 msgid "Supervisors" -msgstr "Руководители" -#: templates/core/dashboard.html:235 +msgstr "" + +#: templates/core/dashboard.html:108 msgid "Office Assistance" -msgstr "Офисная помощь" -#: templates/core/dashboard.html:272 +msgstr "" + +#: templates/core/dashboard.html:145 msgid "Latest activities" -msgstr "Последние мероприятия" -#: templates/core/dashboard.html:277 +msgstr "" + +#: templates/core/dashboard.html:150 msgid "No recent activity" -msgstr "Нет недавней активности" -#: templates/core/dashboard.html:285 +msgstr "" + +#: templates/core/dashboard.html:158 msgid "School Demographics" -msgstr "Школьная демография" +msgstr "" + #: templates/core/index.html:40 msgid "Add New Post" -msgstr "Добавить новое сообщение" -#: templates/core/index.html:59 templates/core/index.html:67 +msgstr "" + +#: templates/core/index.html:47 templates/core/index.html:55 #: templates/setting/admin_panel.html:80 templates/setting/admin_panel.html:81 msgid "Events" -msgstr "События" -#: templates/core/index.html:77 +msgstr "" + +#: templates/core/index.html:65 msgid "news" -msgstr "Новости" -#: templates/core/index.html:77 +msgstr "" + +#: templates/core/index.html:65 msgid "events" -msgstr "события" -#: templates/core/index.html:88 templates/core/semester_list.html:69 +msgstr "" + +#: templates/core/index.html:76 templates/core/semester_list.html:69 #: templates/core/session_list.html:65 templates/course/course_single.html:87 #: templates/course/course_single.html:164 -#: templates/course/program_single.html:79 templates/quiz/quiz_list.html:65 +#: templates/course/program_single.html:78 templates/quiz/quiz_list.html:65 msgid "Edit" -msgstr "Редактировать" -#: templates/core/index.html:100 templates/upload/video_single.html:31 +msgstr "" + +#: templates/core/index.html:88 templates/upload/video_single.html:31 msgid "ago" -msgstr "назад" -#: templates/core/index.html:110 +msgstr "" + +#: templates/core/index.html:98 msgid "School news and events will appear here." -msgstr "Здесь будут появляться новости и события школы." +msgstr "" + #: templates/core/post_add.html:12 msgid "Post form" -msgstr "Форма публикации" +msgstr "" + #: templates/core/post_add.html:21 msgid "Post Form" -msgstr "Форма сообщения" -#: templates/core/post_add.html:25 templates/core/semester_update.html:38 -#: templates/core/session_update.html:38 templates/course/course_add.html:49 -#: templates/course/course_allocation_form.html:49 -#: templates/course/program_add.html:26 templates/quiz/mcquestion_form.html:58 -#: templates/quiz/quiz_form.html:66 templates/result/add_score_for.html:38 -msgid "Save" -msgstr "Сохранять" +msgstr "" + #: templates/core/post_add.html:26 templates/upload/upload_file_form.html:34 #: templates/upload/upload_video_form.html:33 msgid "Cancel" -msgstr "Отмена" +msgstr "" + #: templates/core/semester_list.html:10 msgid "Semester list" -msgstr "Список семестров" +msgstr "" + #: templates/core/semester_list.html:16 msgid "Add New Semester" -msgstr "Добавить новый семестр" +msgstr "" + #: templates/core/semester_list.html:20 templates/core/semester_update.html:12 msgid "Semester List" -msgstr "Список семестров" +msgstr "" + #: templates/core/semester_list.html:42 msgid "Is Current semester" -msgstr "Текущий семестр" +msgstr "" + #: templates/core/semester_list.html:43 templates/core/session_list.html:41 #: templates/setting/admin_panel.html:47 msgid "Session" -msgstr "Сессия" +msgstr "" + #: templates/core/semester_list.html:44 msgid "Next Semester Begins" -msgstr "Следующий семестр начинается" +msgstr "" + #: templates/core/semester_list.html:46 templates/core/session_list.html:45 #: templates/course/course_single.html:61 #: templates/course/course_single.html:138 msgid "Actions" -msgstr "Действия" +msgstr "" + #: templates/core/semester_list.html:83 msgid "No Semester." -msgstr "Никакого семестра." +msgstr "" + #: templates/core/semester_list.html:87 msgid "Add Semester Now." -msgstr "Добавьте семестр сейчас." +msgstr "" + #: templates/core/semester_update.html:13 msgid "Semester Form" -msgstr "Семестровая форма" +msgstr "" + #: templates/core/semester_update.html:34 msgid "Semester Add & update Form" -msgstr "Форма добавления и обновления семестра" +msgstr "" + #: templates/core/session_list.html:10 templates/core/session_list.html:20 #: templates/core/session_update.html:12 msgid "Session List" -msgstr "Список сеансов" +msgstr "" + #: templates/core/session_list.html:16 msgid "Add New Session" -msgstr "Добавить новый сеанс" +msgstr "" + #: templates/core/session_list.html:42 msgid "Is Current Session" -msgstr "Текущая сессия" +msgstr "" + #: templates/core/session_list.html:43 msgid "Next Session Begins" -msgstr "Начинается следующая сессия" +msgstr "" + #: templates/core/session_list.html:77 msgid "No Session." -msgstr "Нет сеанса." +msgstr "" + #: templates/core/session_list.html:81 msgid "Add Session Now." -msgstr "Добавить сеанс сейчас." +msgstr "" + #: templates/core/session_update.html:13 msgid "Session Form" -msgstr "Форма сессии" +msgstr "" + #: templates/core/session_update.html:34 msgid "Session Add & update Form" -msgstr "Форма добавления и обновления сеанса" +msgstr "" + #: templates/correct_answer.html:6 templates/question.html:50 #: templates/result.html:51 msgid "You answered the above question incorrectly" -msgstr "Вы неправильно ответили на вопрос выше" +msgstr "" + #: templates/correct_answer.html:16 templates/question.html:60 #: templates/result.html:61 msgid "This is the correct answer" -msgstr "Это правильный ответ" +msgstr "" + #: templates/correct_answer.html:24 templates/question.html:68 #: templates/result.html:69 msgid "This was your answer." -msgstr "Это был ваш ответ." +msgstr "" + #: templates/course/course_add.html:12 templates/course/course_single.html:11 #: templates/course/program_add.html:12 templates/course/program_list.html:10 #: templates/course/program_single.html:11 @@ -938,92 +1173,115 @@ msgstr "Это был ваш ответ." #: templates/upload/upload_video_form.html:11 #: templates/upload/video_single.html:11 msgid "Programs" -msgstr "Программы" +msgstr "" + #: templates/course/course_add.html:13 templates/course/course_add.html:17 msgid "Course Form" -msgstr "Форма курса" +msgstr "" + #: templates/course/course_add.html:27 msgid "Course Detail" -msgstr "Детали курса" +msgstr "" + #: templates/course/course_add.html:37 msgid "Other Info" -msgstr "Дополнительная информация" +msgstr "" + #: templates/course/course_allocation_form.html:12 #: templates/course/course_allocation_view.html:20 #: templates/setting/admin_panel.html:75 msgid "Course Allocations" -msgstr "Распределение курсов" +msgstr "" + #: templates/course/course_allocation_form.html:13 msgid "Allocation Form" -msgstr "Форма распределения" +msgstr "" + #: templates/course/course_allocation_form.html:34 msgid "Course Allocation Form" -msgstr "Форма распределения курсов" +msgstr "" + #: templates/course/course_allocation_view.html:10 msgid "Allocation list" -msgstr "Список распределения" +msgstr "" + #: templates/course/course_allocation_view.html:16 msgid "Allocate Now" -msgstr "Выделить сейчас" +msgstr "" + #: templates/course/course_allocation_view.html:33 #: templates/setting/admin_panel.html:70 msgid "Courses" -msgstr "Курсы" +msgstr "" + #: templates/course/course_allocation_view.html:50 msgid "Edit or Update" -msgstr "Редактировать или обновить" +msgstr "" + #: templates/course/course_allocation_view.html:53 msgid "Deallocate" -msgstr "Освободить" +msgstr "" + #: templates/course/course_allocation_view.html:65 msgid "No Course Allocated." -msgstr "Курс не назначен." +msgstr "" + #: templates/course/course_allocation_view.html:69 msgid "Allocate now" -msgstr "Выделить сейчас" +msgstr "" + #: templates/course/course_registration.html:13 msgid "Course Registration" -msgstr "Регистрация на курс" +msgstr "" + #: templates/course/course_registration.html:17 #: templates/course/course_registration.html:35 #: templates/setting/admin_panel.html:58 msgid "Course Add" -msgstr "Курс Добавить" +msgstr "" + #: templates/course/course_registration.html:17 #: templates/setting/admin_panel.html:58 msgid "Drop" -msgstr "Уронить" +msgstr "" + #: templates/course/course_registration.html:25 msgid "Calender is off" -msgstr "Календарь выключен" +msgstr "" + #: templates/course/course_registration.html:26 msgid "Check the university calender" -msgstr "Проверьте календарь университета" +msgstr "" + #: templates/course/course_registration.html:38 #: templates/course/course_registration.html:200 msgid "Save Score" -msgstr "Сохранить счет" +msgstr "" + #: templates/course/course_registration.html:43 #: templates/result/assessment_results.html:32 #: templates/result/grade_results.html:32 msgid "First Semester:" -msgstr "Первый семестр:" +msgstr "" + #: templates/course/course_registration.html:48 #: templates/course/course_registration.html:111 #: templates/course/course_registration.html:216 msgid "Mark" -msgstr "Отметка" +msgstr "" + #: templates/course/course_registration.html:49 #: templates/course/course_registration.html:112 #: templates/course/course_registration.html:217 -#: templates/course/program_single.html:41 +#: templates/course/program_single.html:40 #: templates/course/user_course_list.html:49 #: templates/course/user_course_list.html:93 #: templates/result/assessment_results.html:38 #: templates/result/grade_results.html:38 #: templates/result/grade_results.html:103 msgid "Course Code" -msgstr "Код курса" +msgstr "" + #: templates/course/course_registration.html:50 #: templates/course/course_registration.html:113 #: templates/course/course_registration.html:218 @@ -1032,673 +1290,2370 @@ msgstr "Код курса" #: templates/result/grade_results.html:37 #: templates/result/grade_results.html:102 msgid "Course Title" -msgstr "Название курса" +msgstr "" + #: templates/course/course_registration.html:51 #: templates/course/course_registration.html:114 #: templates/course/course_registration.html:219 #: templates/result/assessment_results.html:39 #: templates/result/assessment_results.html:81 msgid "Cr.Hr(s)" -msgstr "Кредитный час" +msgstr "" + #: templates/course/course_registration.html:52 #: templates/course/course_registration.html:115 #: templates/course/course_registration.html:220 -#: templates/course/program_single.html:44 +#: templates/course/program_single.html:43 #: templates/course/user_course_list.html:51 #: templates/course/user_course_list.html:95 msgid "Year" -msgstr "Год" +msgstr "" + #: templates/course/course_registration.html:53 #: templates/course/course_registration.html:116 #: templates/course/course_registration.html:221 msgid "Classification" -msgstr "Классификация" +msgstr "" + #: templates/course/course_registration.html:54 #: templates/course/course_registration.html:117 #: templates/course/course_registration.html:222 msgid "Elective Group" -msgstr "Выборная группа" +msgstr "" + #: templates/course/course_registration.html:69 #: templates/course/course_registration.html:132 #: templates/course/course_registration.html:236 msgid "Elective" -msgstr "Факультативный" +msgstr "" + #: templates/course/course_registration.html:71 #: templates/course/course_registration.html:134 #: templates/course/course_registration.html:238 msgid "Core" -msgstr "Основной" +msgstr "" + #: templates/course/course_registration.html:83 #: templates/course/course_registration.html:146 #: templates/course/course_registration.html:249 msgid "No Course." -msgstr "Нет курса." +msgstr "" + #: templates/course/course_registration.html:97 msgid "First semester Credit(s):" -msgstr "Кредит(ы) за первый семестр:" +msgstr "" + #: templates/course/course_registration.html:106 #: templates/result/assessment_results.html:74 #: templates/result/grade_results.html:97 msgid "Second Semester:" -msgstr "Второй семестр:" +msgstr "" + #: templates/course/course_registration.html:160 msgid "Second semester credit(s):" -msgstr "Кредит(ы) за второй семестр:" +msgstr "" + #: templates/course/course_registration.html:165 msgid "Registerd course credit(s):" -msgstr "Зарегистрированные кредиты курса):" +msgstr "" + #: templates/course/course_registration.html:170 #: templates/course/course_registration.html:263 msgid "Total credit(s):" -msgstr "Общий кредит(ы):" +msgstr "" + #: templates/course/course_registration.html:186 msgid "Print Registration Form" -msgstr "Распечатать регистрационную форму" +msgstr "" + #: templates/course/course_registration.html:187 msgid "Print Registerd Courses" -msgstr "Распечатать зарегистрированные курсы" +msgstr "" + #: templates/course/course_registration.html:191 msgid "Course Drop" -msgstr "Сброс курса" +msgstr "" + #: templates/course/course_registration.html:201 msgid "Drop Selected" -msgstr "Удалить выбранное" +msgstr "" + #: templates/course/course_single.html:22 msgid "Edit course" -msgstr "Изменить курс" +msgstr "" + #: templates/course/course_single.html:27 msgid "Upload new file" -msgstr "Загрузить новый файл" +msgstr "" + #: templates/course/course_single.html:30 msgid "Upload new video" -msgstr "Загрузить новое видео" +msgstr "" + #: templates/course/course_single.html:36 msgid "Take a Quiz" -msgstr "Пройти тест" +msgstr "" + #: templates/course/course_single.html:51 msgid "Video Tutorials" -msgstr "Видеоуроки" +msgstr "" + #: templates/course/course_single.html:57 msgid "Video Title" -msgstr "Название видео" +msgstr "" + #: templates/course/course_single.html:58 #: templates/course/course_single.html:134 msgid "Uploaded Date" -msgstr "Дата загрузки" +msgstr "" + #: templates/course/course_single.html:59 msgid "Get Started" -msgstr "Начать" +msgstr "" + #: templates/course/course_single.html:79 msgid "Play now" -msgstr "Играть сейчас" +msgstr "" + #: templates/course/course_single.html:104 msgid "No video Uploaded." -msgstr "Видео не загружено." +msgstr "" + #: templates/course/course_single.html:108 #: templates/course/course_single.html:185 msgid "Upload now." -msgstr "Загрузите сейчас." +msgstr "" + #: templates/course/course_single.html:127 msgid "Documentations" -msgstr "Документация" +msgstr "" + #: templates/course/course_single.html:133 msgid "File name" -msgstr "Имя файла" +msgstr "" + #: templates/course/course_single.html:135 msgid "Updated Date" -msgstr "Дата обновления" +msgstr "" + #: templates/course/course_single.html:136 msgid "Downloads" -msgstr "Загрузки" +msgstr "" + #: templates/course/course_single.html:156 msgid "Download" -msgstr "Скачать" +msgstr "" + #: templates/course/course_single.html:181 msgid "No File Uploaded." -msgstr "Файл не загружен." +msgstr "" + #: templates/course/course_single.html:205 msgid "Lecturer(s)" -msgstr "Лектор(ы)" +msgstr "" + #: templates/course/course_single.html:232 msgid "No lecturer assigned for this course" -msgstr "Для этого курса не назначен лектор" +msgstr "" + #: templates/course/program_add.html:13 msgid "Program Form" -msgstr "Форма программы" +msgstr "" + #: templates/course/program_add.html:22 msgid "Program Add Form" -msgstr "Форма добавления программы" +msgstr "" + #: templates/course/program_list.html:16 msgid "Add Program" -msgstr "Добавить программу" +msgstr "" + #: templates/course/program_list.html:20 msgid "Program List" -msgstr "Список программ" +msgstr "" + #: templates/course/program_list.html:32 msgid "Program Name" -msgstr "Название программы" +msgstr "" + #: templates/course/program_list.html:33 msgid "Summary" -msgstr "Краткое содержание" +msgstr "" + #: templates/course/program_list.html:69 msgid "No program." -msgstr "Никакой программы." +msgstr "" + #: templates/course/program_list.html:73 msgid "Add program now." -msgstr "Добавьте программу сейчас." -#: templates/course/program_single.html:40 +msgstr "" + +#: templates/course/program_single.html:18 +msgid "Add Course" +msgstr "" + +#: templates/course/program_single.html:39 #: templates/course/user_course_list.html:48 #: templates/course/user_course_list.html:92 msgid "Course Name" -msgstr "Название курса" -#: templates/course/program_single.html:42 +msgstr "" + +#: templates/course/program_single.html:41 #: templates/course/user_course_list.html:50 #: templates/course/user_course_list.html:94 #: templates/result/grade_results.html:39 #: templates/result/grade_results.html:104 msgid "Cr.Hr" -msgstr "Кредитный час" -#: templates/course/program_single.html:43 -msgid "Level" -msgstr "Уровень" -#: templates/course/program_single.html:46 +msgstr "" + +#: templates/course/program_single.html:45 #: templates/course/user_course_list.html:53 #: templates/course/user_course_list.html:97 msgid "Current Semester" -msgstr "Текущий семестр" -#: templates/course/program_single.html:93 +msgstr "" + +#: templates/course/program_single.html:92 msgid "No course for this progrm." -msgstr "Нет курса по этой программе." -#: templates/course/program_single.html:97 +msgstr "" + +#: templates/course/program_single.html:96 msgid "Add one now." -msgstr "Добавьте один сейчас." +msgstr "" + #: templates/course/user_course_list.html:42 msgid "Taken Courses:" -msgstr "Пройденные курсы:" +msgstr "" + #: templates/course/user_course_list.html:54 #: templates/course/user_course_list.html:75 msgid "Taken" -msgstr "Взятый" +msgstr "" + #: templates/course/user_course_list.html:86 msgid "All Courses:" -msgstr "Все курсы:" +msgstr "" + #: templates/invoice_detail.html:2 templates/invoices.html:1 msgid "Invoices" -msgstr "Счета-фактуры" +msgstr "" + #: templates/invoices.html:5 msgid "Pay now" -msgstr "Заплатить сейчас" +msgstr "" + #: templates/navbar.html:12 msgid "Search All... #course, #program, #Quiz, #News, #Events" msgstr "" -"Искать по всем... #курс, #программа, #Викторина, #Новости, #Мероприятия" + #: templates/navbar.html:42 msgid "Setting" -msgstr "Параметр" +msgstr "" + #: templates/navbar.html:46 msgid "Signout" -msgstr "Выход" +msgstr "" + #: templates/payments/charge.html:24 msgid "Payment Succeed, You has been make payment successfuly." -msgstr "Оплата прошла успешно. Вы успешно произвели оплату." +msgstr "" + #: templates/payments/charge.html:25 msgid "Redirect to your dashboard in" -msgstr "Перенаправление на вашу панель управления в" +msgstr "" + #: templates/payments/coinbase.html:3 templates/payments/coinbase.html:8 msgid "Coinbase" -msgstr "Кинбейс" +msgstr "" + #: templates/pdf/lecturer_list.html:46 msgid "Address/City" -msgstr "Адрес Город" +msgstr "" + #: templates/progress.html:4 templates/progress.html:12 msgid "Progress Page" -msgstr "Страница прогресса" +msgstr "" + #: templates/progress.html:5 msgid "User Progress Page" -msgstr "Страница прогресса пользователя" +msgstr "" + #: templates/progress.html:18 msgid "Question Category Scores" -msgstr "Баллы по категориям вопросов" +msgstr "" + #: templates/progress.html:25 templates/quiz/sitting_detail.html:19 msgid "Category" -msgstr "Категория" +msgstr "" + #: templates/progress.html:26 msgid "Correctly answererd" -msgstr "Правильно ответил" +msgstr "" + #: templates/progress.html:27 msgid "Incorrect" -msgstr "Неправильный" +msgstr "" + #: templates/progress.html:56 msgid "Previous exam papers" -msgstr "Предыдущие экзаменационные работы" +msgstr "" + #: templates/progress.html:58 msgid "Below are the results of exams that you have sat." -msgstr "Ниже приведены результаты сданных вами экзаменов." +msgstr "" + #: templates/progress.html:60 templates/quiz/sitting_list.html:29 msgid "Total complete exams:" -msgstr "Всего полных экзаменов:" +msgstr "" + #: templates/progress.html:67 msgid "Quiz Title" -msgstr "Название викторины" +msgstr "" + #: templates/progress.html:69 msgid "Possible Score" -msgstr "Возможная оценка" +msgstr "" + #: templates/progress.html:70 #, python-format msgid "Out of 100%%" -msgstr "Из 100%%" +msgstr "" + #: templates/progress.html:94 msgid "No recordes yet. Try to do some quizzes in your course." msgstr "" -"Записей пока нет. Попробуйте выполнить несколько тестов в рамках вашего " -"курса." + #: templates/question.html:28 templates/result.html:38 msgid "The previous question" -msgstr "Предыдущий вопрос" +msgstr "" + #: templates/question.html:37 msgid "Your answer was" -msgstr "Ваш ответ был" +msgstr "" + #: templates/question.html:85 templates/result.html:85 msgid "No explanation set to this question." -msgstr "Никакого объяснения этому вопросу не задано." +msgstr "" + #: templates/question.html:108 msgid "Quiz instractions" -msgstr "Инструкция по викторине" +msgstr "" + #: templates/question.html:116 msgid "Understood" -msgstr "Понял" +msgstr "" + #: templates/question.html:125 msgid "of" -msgstr "из" +msgstr "" + #: templates/question.html:130 msgid "Quiz category" -msgstr "Категория викторины" +msgstr "" + #: templates/question.html:157 msgid "Previous" -msgstr "Предыдущий" +msgstr "" + #: templates/quiz/mcquestion_form.html:14 msgid "MC Question Form" -msgstr "Форма вопроса MC" +msgstr "" + #: templates/quiz/mcquestion_form.html:18 msgid "Add questions" -msgstr "Добавить вопросы" -#: templates/quiz/mcquestion_form.html:22 +msgstr "" + +#: templates/quiz/mcquestion_form.html:31 msgid "question added" -msgstr "вопрос добавлен" -#: templates/quiz/mcquestion_form.html:25 +msgstr "" + +#: templates/quiz/mcquestion_form.html:34 msgid "Correct the error(s) below." -msgstr "Исправьте ошибки ниже." +msgstr "" + #: templates/quiz/quiz_form.html:14 msgid "Quiz Form" -msgstr "Форма викторины" +msgstr "" + #: templates/quiz/quiz_form.html:18 msgid "Quiz form for" -msgstr "Форма викторины для" +msgstr "" + #: templates/quiz/quiz_form.html:55 msgid "Hold down" -msgstr "Удерживайте" +msgstr "" + #: templates/quiz/quiz_form.html:55 +#: venv/lib/python3.9/site-packages/django/utils/text.py:322 msgid "or" -msgstr "или" +msgstr "" + #: templates/quiz/quiz_form.html:55 msgid "on a Mac, to select more than one." -msgstr "на Mac, чтобы выбрать более одного." +msgstr "" + #: templates/quiz/quiz_form.html:66 msgid "Continue" -msgstr "Продолжать" +msgstr "" + #: templates/quiz/quiz_list.html:22 msgid "Add Quiz" -msgstr "Добавить тест" +msgstr "" + #: templates/quiz/quiz_list.html:54 msgid "You will only get one attempt at this quiz" -msgstr "У вас будет только одна попытка пройти этот тест" +msgstr "" + #: templates/quiz/quiz_list.html:58 msgid "Start quiz" -msgstr "Начать тест" +msgstr "" + #: templates/quiz/sitting_detail.html:4 msgid "Result of" -msgstr "Результат" +msgstr "" + #: templates/quiz/sitting_detail.html:4 templates/search/search_view.html:43 msgid "for" -msgstr "для" +msgstr "" + #: templates/quiz/sitting_detail.html:12 msgid "Completed Exams" -msgstr "Завершенные экзамены" +msgstr "" + #: templates/quiz/sitting_detail.html:13 msgid "Marking" -msgstr "Маркировка" +msgstr "" + #: templates/quiz/sitting_detail.html:18 templates/result.html:99 msgid "Quiz title" -msgstr "Название викторины" +msgstr "" + #: templates/quiz/sitting_detail.html:25 templates/quiz/sitting_list.html:38 msgid "Completed" -msgstr "Завершенный" +msgstr "" + #: templates/quiz/sitting_detail.html:35 msgid "User answer" -msgstr "Ответ пользователя" +msgstr "" + #: templates/quiz/sitting_detail.html:54 msgid "incorrect" -msgstr "неправильный" +msgstr "" + #: templates/quiz/sitting_detail.html:62 msgid "Toggle whether correct" -msgstr "Переключить, правильно ли" +msgstr "" + #: templates/quiz/sitting_list.html:3 msgid "All Quizzes" -msgstr "Все викторины" +msgstr "" + #: templates/quiz/sitting_list.html:16 msgid "List of complete exams" -msgstr "Список полных экзаменов" +msgstr "" + #: templates/quiz/sitting_list.html:24 templates/snippets/filter_form.html:12 msgid "Filter" -msgstr "Фильтр" +msgstr "" + #: templates/quiz/sitting_list.html:54 msgid "View details" -msgstr "Посмотреть детали" +msgstr "" + #: templates/quiz/sitting_list.html:63 msgid "No completed exams for you" -msgstr "Никаких сданных экзаменов для вас" +msgstr "" + #: templates/registration/login.html:3 msgid "Dj Learning Management System - Login" -msgstr "Система управления обучением диджеев - Войти" +msgstr "" + #: templates/registration/login.html:11 msgid "Sign in" -msgstr "Войти" +msgstr "" + #: templates/registration/login.html:16 msgid "ID Number" -msgstr "Идентификационный номер" +msgstr "" + #: templates/registration/login.html:21 msgid "Password" -msgstr "Пароль" -#: templates/registration/login.html:25 -#: templates/registration/register.html:73 +msgstr "" + +#: templates/registration/login.html:25 templates/registration/register.html:73 msgid "Invalid ID & Password." -msgstr "Неверный идентификатор и пароль." +msgstr "" + #: templates/registration/login.html:28 msgid "SIGN IN" -msgstr "ВОЙТИ" +msgstr "" + #: templates/registration/login.html:32 msgid "Forgot password ?" -msgstr "Забыли пароль ?" +msgstr "" + #: templates/registration/password_reset.html:3 msgid "Password Reset | Learning management system" -msgstr "Сброс пароля | Система управления обучением" +msgstr "" + #: templates/registration/password_reset.html:7 msgid "Password Reset" -msgstr "Восстановление пароля" +msgstr "" + #: templates/registration/password_reset.html:17 msgid "Request Password Reset" -msgstr "Запросить сброс пароля" +msgstr "" + #: templates/registration/password_reset_complete.html:3 msgid "Password Reset Complete | Learning management system" -msgstr "Сброс пароля завершен | Система управления обучением" +msgstr "" + #: templates/registration/password_reset_complete.html:8 msgid "Password Reset Complete" -msgstr "Сброс пароля завершен" +msgstr "" + #: templates/registration/password_reset_complete.html:11 msgid "Your password has been set, you are now able to Log In!" -msgstr "Ваш пароль установлен, теперь вы можете войти в систему!" +msgstr "" + #: templates/registration/password_reset_complete.html:13 msgid "Sign In Here" -msgstr "Войдите здесь" +msgstr "" + #: templates/registration/password_reset_confirm.html:22 msgid "Confirm New Password" -msgstr "Подтвердите новый пароль" +msgstr "" + #: templates/registration/password_reset_confirm.html:31 msgid "Reset Password" -msgstr "Сброс пароля" +msgstr "" + #: templates/registration/password_reset_done.html:3 msgid "Email Sent | Learning management system" -msgstr "Письмо отправлено | Система управления обучением" +msgstr "" + #: templates/registration/password_reset_done.html:8 msgid "Email sent" -msgstr "Письмо отправлено" +msgstr "" + #: templates/registration/password_reset_done.html:14 msgid "Back To Login" -msgstr "Вернуться на страницу авторизации" +msgstr "" + #: templates/registration/register.html:3 msgid "Register | Learning management system" -msgstr "Зарегистрироваться | Система управления обучением" +msgstr "" + #: templates/registration/register.html:12 msgid "Create Your Account" -msgstr "Создать аккаунт" +msgstr "" + #: templates/registration/register.html:20 msgid "Login Form" -msgstr "Форма входа" +msgstr "" + #: templates/registration/register.html:76 msgid "SIGN UP" -msgstr "ЗАРЕГИСТРИРОВАТЬСЯ" +msgstr "" + #: templates/registration/register.html:79 msgid "Already Registered ?" -msgstr "Уже зарегистрирован ?" +msgstr "" + #: templates/registration/register.html:79 msgid "Login" -msgstr "Авторизоваться" +msgstr "" + #: templates/result.html:8 msgid "Quiz Results for" -msgstr "Результаты викторины для" +msgstr "" + #: templates/result.html:20 templates/result/assessment_results.html:29 #: templates/result/grade_results.html:29 msgid "Result" -msgstr "Результат" +msgstr "" + #: templates/result.html:26 msgid "Calculating your result..." -msgstr "Подсчитаем результат..." +msgstr "" + #: templates/result.html:96 msgid "Quiz result" -msgstr "Результат викторины" +msgstr "" + #: templates/result.html:103 msgid "You answered" -msgstr "Ты ответил" +msgstr "" + #: templates/result.html:103 msgid "questions correctly out of" -msgstr "вопросы правильно из" +msgstr "" + #: templates/result.html:103 msgid "giving you" -msgstr "давая тебе" +msgstr "" + #: templates/result.html:103 #, python-format msgid "%% correct" -msgstr "%% правильный" +msgstr "" + #: templates/result.html:117 msgid "Review the questions below and try the quiz again in the future" msgstr "" -"Просмотрите приведенные ниже вопросы и попробуйте пройти тест еще раз в " -"будущем." + #: templates/result.html:119 msgid "The result of this quiz will be stored in your progress section" -msgstr "Результат этого теста будет сохранен в разделе вашего прогресса." +msgstr "" + #: templates/result.html:121 msgid "so you can review and monitor your progression" -msgstr "чтобы вы могли просматривать и отслеживать свой прогресс" +msgstr "" + #: templates/result.html:134 msgid "Your session score is" -msgstr "Ваш балл за сессию" +msgstr "" + #: templates/result.html:134 msgid "out of a possible" -msgstr "из возможного" +msgstr "" + #: templates/result.html:157 msgid "No explanation set for this question." -msgstr "Для этого вопроса не установлено никаких объяснений." +msgstr "" + #: templates/result.html:164 msgid "Your answer" -msgstr "Ваш ответ" +msgstr "" + #: templates/result/add_score.html:29 msgid "Select Your Course Here" -msgstr "Выберите свой курс здесь" +msgstr "" + #: templates/result/add_score.html:35 templates/result/add_score_for.html:24 msgid "No course." -msgstr "Нет курса." +msgstr "" + #: templates/result/add_score.html:39 msgid "To manage scores, please select the course using the button above." -msgstr "Чтобы управлять баллами, выберите курс, используя кнопку выше." +msgstr "" + #: templates/result/add_score_for.html:30 msgid "Students result form" -msgstr "Форма результатов учащихся" +msgstr "" + #: templates/result/add_score_for.html:41 msgid "Grade report" -msgstr "Отчет об оценках" +msgstr "" + #: templates/result/add_score_for.html:54 #: templates/result/assessment_results.html:41 #: templates/result/assessment_results.html:83 msgid "Mid exam" -msgstr "Середина экзамена" +msgstr "" + #: templates/result/add_score_for.html:56 #: templates/result/assessment_results.html:43 #: templates/result/assessment_results.html:85 msgid "Attendance" -msgstr "Посещаемость" +msgstr "" + #: templates/result/add_score_for.html:57 #: templates/result/assessment_results.html:44 #: templates/result/assessment_results.html:86 msgid "Final exam" -msgstr "Итоговый экзамен" +msgstr "" + #: templates/result/add_score_for.html:58 #: templates/result/assessment_results.html:45 #: templates/result/assessment_results.html:87 msgid "Total" -msgstr "Общий" +msgstr "" + #: templates/result/add_score_for.html:59 msgid "Point" -msgstr "Точка" +msgstr "" + #: templates/result/add_score_for.html:60 #: templates/result/grade_results.html:40 msgid "Grade" -msgstr "Оценка" +msgstr "" + #: templates/result/add_score_for.html:61 #: templates/result/grade_results.html:42 #: templates/result/grade_results.html:107 msgid "Comment" -msgstr "Комментарий" +msgstr "" + #: templates/result/grade_results.html:41 #: templates/result/grade_results.html:106 msgid "Points" -msgstr "Точки" +msgstr "" + #: templates/result/grade_results.html:58 #: templates/result/grade_results.html:123 msgid "PASS" -msgstr "ПРОХОДИТЬ" +msgstr "" + #: templates/result/grade_results.html:60 #: templates/result/grade_results.html:125 msgid "FAIL" -msgstr "НЕУДАЧА" +msgstr "" + #: templates/result/grade_results.html:79 msgid "Total first semester credit:" -msgstr "Общий кредит за первый семестр:" +msgstr "" + #: templates/result/grade_results.html:88 #: templates/result/grade_results.html:177 msgid "First Semester GPA:" -msgstr "Средний балл за первый семестр:" +msgstr "" + #: templates/result/grade_results.html:105 msgid "GRADE" -msgstr "ОЦЕНКА" +msgstr "" + #: templates/result/grade_results.html:139 msgid "Total second semester credit:" -msgstr "Общий кредит за второй семестр:" +msgstr "" + #: templates/result/grade_results.html:144 msgid "Total Credit:" -msgstr "Общий кредит:" +msgstr "" + #: templates/result/grade_results.html:153 #: templates/result/grade_results.html:184 msgid "Second Semester GPA:" -msgstr "Средний балл за второй семестр:" +msgstr "" + #: templates/result/grade_results.html:162 #: templates/result/grade_results.html:192 msgid "Previous CGPA:" -msgstr "Предыдущий CGPA:" +msgstr "" + #: templates/search/search_view.html:3 msgid "Search result for" -msgstr "Результат поиска для" +msgstr "" + #: templates/search/search_view.html:12 msgid "Search" -msgstr "Поиск" +msgstr "" + #: templates/search/search_view.html:43 msgid "result" -msgstr "результат" +msgstr "" + #: templates/search/search_view.html:62 msgid "Program of" -msgstr "Программа" +msgstr "" + #: templates/search/search_view.html:69 templates/search/search_view.html:126 msgid "News And Events" -msgstr "Новости и события" +msgstr "" + #: templates/search/search_view.html:72 msgid "Date:" -msgstr "Дата:" +msgstr "" + #: templates/search/search_view.html:82 msgid "quiz" -msgstr "контрольный опрос" +msgstr "" + #: templates/search/search_view.html:82 msgid "Course:" -msgstr "Курс:" +msgstr "" + #: templates/search/search_view.html:122 msgid "Search by:" -msgstr "Искать по:" +msgstr "" + #: templates/search/search_view.html:124 msgid "Title or Description" -msgstr "Название или описание" +msgstr "" + #: templates/search/search_view.html:125 msgid "Title, Code or Description" -msgstr "Название, код или описание" +msgstr "" + #: templates/search/search_view.html:127 msgid "Title, Description or Category(practice, assignment and exam)" -msgstr "Должность, описание или категория (практика, задание и экзамен)" +msgstr "" + #: templates/setting/admin_panel.html:37 templates/setting/admin_panel.html:42 #: templates/setting/admin_panel.html:47 templates/setting/admin_panel.html:52 #: templates/setting/admin_panel.html:70 templates/setting/admin_panel.html:75 #: templates/setting/admin_panel.html:80 msgid "Manage" -msgstr "Управлять" +msgstr "" + #: templates/setting/admin_panel.html:43 msgid "students" -msgstr "студенты" +msgstr "" + #: templates/setting/admin_panel.html:48 msgid "sessions" -msgstr "сессии" +msgstr "" + #: templates/setting/admin_panel.html:53 msgid "semesters" -msgstr "семестры" +msgstr "" + #: templates/setting/admin_panel.html:64 msgid "Switch" -msgstr "Выключатель" +msgstr "" + #: templates/setting/admin_panel.html:71 msgid "programs" -msgstr "программы" +msgstr "" + #: templates/setting/admin_panel.html:76 msgid "course allocations" -msgstr "распределение курсов" +msgstr "" + #: templates/setting/password_change.html:12 msgid "Password Change" -msgstr "Изменение пароля" +msgstr "" + #: templates/setting/profile_info_change.html:12 msgid "Account setting" -msgstr "Настройки аккаунта" +msgstr "" + #: templates/setting/profile_info_change.html:16 msgid "Account Settings" -msgstr "Настройки учетной записи" +msgstr "" + #: templates/setting/profile_info_change.html:44 msgid "Update Profile" -msgstr "Обновить профиль" +msgstr "" + #: templates/upload/upload_file_form.html:14 msgid "File upload" -msgstr "Файл загружен" +msgstr "" + #: templates/upload/upload_file_form.html:18 msgid "File upload for" -msgstr "Загрузка файла для" +msgstr "" + #: templates/upload/upload_file_form.html:26 msgid "File Upload Form" -msgstr "Форма загрузки файла" +msgstr "" + #: templates/upload/upload_file_form.html:33 #: templates/upload/upload_video_form.html:32 msgid "Upload" -msgstr "Загрузить" +msgstr "" + #: templates/upload/upload_video_form.html:14 msgid "Video upload" -msgstr "Загрузка видео" +msgstr "" + #: templates/upload/upload_video_form.html:18 msgid "Video upload for" -msgstr "Загрузка видео для" +msgstr "" + #: templates/upload/upload_video_form.html:26 msgid "Video Upload Form" -msgstr "Форма загрузки видео" +msgstr "" + #: templates/upload/video_single.html:35 msgid "No video description set." -msgstr "Описание видео не задано." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/_termui_impl.py:518 +#, python-brace-format +msgid "{editor}: Editing failed" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/_termui_impl.py:522 +#, python-brace-format +msgid "{editor}: Editing failed: {e}" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/core.py:1120 +msgid "Aborted!" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/core.py:1309 +#: venv/lib/python3.9/site-packages/click/decorators.py:559 +msgid "Show this message and exit." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/core.py:1340 +#: venv/lib/python3.9/site-packages/click/core.py:1370 +#, python-brace-format +msgid "(Deprecated) {text}" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/core.py:1387 +msgid "Options" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/core.py:1413 +#, python-brace-format +msgid "Got unexpected extra argument ({args})" +msgid_plural "Got unexpected extra arguments ({args})" +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/click/core.py:1429 +msgid "DeprecationWarning: The command {name!r} is deprecated." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/core.py:1636 +msgid "Commands" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/core.py:1668 +msgid "Missing command." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/core.py:1746 +msgid "No such command {name!r}." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/core.py:2310 +msgid "Value must be an iterable." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/core.py:2331 +#, python-brace-format +msgid "Takes {nargs} values but 1 was given." +msgid_plural "Takes {nargs} values but {len} were given." +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/click/core.py:2778 +#, python-brace-format +msgid "env var: {var}" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/core.py:2808 +msgid "(dynamic)" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/core.py:2821 +#, python-brace-format +msgid "default: {default}" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/core.py:2834 +msgid "required" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/decorators.py:465 +#, python-format +msgid "%(prog)s, version %(version)s" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/decorators.py:528 +msgid "Show the version and exit." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/exceptions.py:44 +#: venv/lib/python3.9/site-packages/click/exceptions.py:80 +#, python-brace-format +msgid "Error: {message}" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/exceptions.py:72 +#, python-brace-format +msgid "Try '{command} {option}' for help." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/exceptions.py:121 +#, python-brace-format +msgid "Invalid value: {message}" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/exceptions.py:123 +#, python-brace-format +msgid "Invalid value for {param_hint}: {message}" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/exceptions.py:179 +msgid "Missing argument" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/exceptions.py:181 +msgid "Missing option" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/exceptions.py:183 +msgid "Missing parameter" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/exceptions.py:185 +#, python-brace-format +msgid "Missing {param_type}" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/exceptions.py:192 +#, python-brace-format +msgid "Missing parameter: {param_name}" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/exceptions.py:212 +#, python-brace-format +msgid "No such option: {name}" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/exceptions.py:224 +#, python-brace-format +msgid "Did you mean {possibility}?" +msgid_plural "(Possible options: {possibilities})" +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/click/exceptions.py:262 +msgid "unknown error" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/exceptions.py:269 +msgid "Could not open file {filename!r}: {message}" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/parser.py:231 +msgid "Argument {name!r} takes {nargs} values." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/parser.py:413 +msgid "Option {name!r} does not take a value." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/parser.py:474 +msgid "Option {name!r} requires an argument." +msgid_plural "Option {name!r} requires {nargs} arguments." +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/click/shell_completion.py:319 +msgid "Shell completion is not supported for Bash versions older than 4.4." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/shell_completion.py:326 +msgid "Couldn't detect Bash version, shell completion is not supported." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/termui.py:158 +msgid "Repeat for confirmation" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/termui.py:174 +msgid "Error: The value you entered was invalid." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/termui.py:176 +#, python-brace-format +msgid "Error: {e.message}" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/termui.py:187 +msgid "Error: The two entered values do not match." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/termui.py:243 +msgid "Error: invalid input" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/termui.py:773 +msgid "Press any key to continue..." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/types.py:266 +#, python-brace-format +msgid "" +"Choose from:\n" +"\t{choices}" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/types.py:298 +msgid "{value!r} is not {choice}." +msgid_plural "{value!r} is not one of {choices}." +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/click/types.py:392 +msgid "{value!r} does not match the format {format}." +msgid_plural "{value!r} does not match the formats {formats}." +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/click/types.py:414 +msgid "{value!r} is not a valid {number_type}." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/types.py:470 +#, python-brace-format +msgid "{value} is not in the range {range}." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/types.py:611 +msgid "{value!r} is not a valid boolean." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/types.py:635 +msgid "{value!r} is not a valid UUID." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/types.py:822 +msgid "file" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/types.py:824 +msgid "directory" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/types.py:826 +msgid "path" +msgstr "" + +#: venv/lib/python3.9/site-packages/click/types.py:877 +msgid "{name} {filename!r} does not exist." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/types.py:886 +msgid "{name} {filename!r} is a file." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/types.py:894 +#, python-brace-format +msgid "{name} '{filename}' is a directory." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/types.py:903 +msgid "{name} {filename!r} is not readable." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/types.py:912 +msgid "{name} {filename!r} is not writable." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/types.py:921 +msgid "{name} {filename!r} is not executable." +msgstr "" + +#: venv/lib/python3.9/site-packages/click/types.py:988 +#, python-brace-format +msgid "{len_type} values are required, but {len_value} was given." +msgid_plural "{len_type} values are required, but {len_value} were given." +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/crispy_forms/tests/test_form_helper.py:130 +#: venv/lib/python3.9/site-packages/crispy_forms/tests/test_form_helper.py:140 +#: venv/lib/python3.9/site-packages/django/forms/fields.py:91 +msgid "This field is required." +msgstr "" + +#: venv/lib/python3.9/site-packages/crispy_forms/tests/test_layout.py:392 +msgid "i18n text" +msgstr "" + +#: venv/lib/python3.9/site-packages/crispy_forms/tests/test_layout.py:394 +msgid "i18n legend" +msgstr "" + +#: venv/lib/python3.9/site-packages/crispy_forms/tests/test_layout_objects.py:143 +#: venv/lib/python3.9/site-packages/django/core/validators.py:22 +msgid "Enter a valid value." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/contrib/messages/apps.py:15 +msgid "Messages" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/contrib/sitemaps/apps.py:8 +msgid "Site Maps" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/contrib/staticfiles/apps.py:9 +msgid "Static Files" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/contrib/syndication/apps.py:7 +msgid "Syndication" +msgstr "" + +#. Translators: String used to replace omitted page numbers in elided page +#. range generated by paginators, e.g. [1, 2, '…', 5, 6, 7, '…', 9, 10]. +#: venv/lib/python3.9/site-packages/django/core/paginator.py:30 +msgid "…" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/core/paginator.py:50 +msgid "That page number is not an integer" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/core/paginator.py:52 +msgid "That page number is less than 1" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/core/paginator.py:54 +msgid "That page contains no results" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:104 +#: venv/lib/python3.9/site-packages/django/forms/fields.py:752 +msgid "Enter a valid URL." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:165 +msgid "Enter a valid integer." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:176 +msgid "Enter a valid email address." +msgstr "" + +#. Translators: "letters" means latin letters: a-z and A-Z. +#: venv/lib/python3.9/site-packages/django/core/validators.py:259 +msgid "" +"Enter a valid “slug” consisting of letters, numbers, underscores or hyphens." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:267 +msgid "" +"Enter a valid “slug” consisting of Unicode letters, numbers, underscores, or " +"hyphens." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:279 +#: venv/lib/python3.9/site-packages/django/core/validators.py:287 +#: venv/lib/python3.9/site-packages/django/core/validators.py:316 +msgid "Enter a valid IPv4 address." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:296 +#: venv/lib/python3.9/site-packages/django/core/validators.py:317 +msgid "Enter a valid IPv6 address." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:308 +#: venv/lib/python3.9/site-packages/django/core/validators.py:315 +msgid "Enter a valid IPv4 or IPv6 address." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:351 +msgid "Enter only digits separated by commas." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:357 +#, python-format +msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:392 +#, python-format +msgid "Ensure this value is less than or equal to %(limit_value)s." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:401 +#, python-format +msgid "Ensure this value is greater than or equal to %(limit_value)s." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:410 +#, python-format +msgid "Ensure this value is a multiple of step size %(limit_value)s." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:420 +#, python-format +msgid "" +"Ensure this value has at least %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at least %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:438 +#, python-format +msgid "" +"Ensure this value has at most %(limit_value)d character (it has " +"%(show_value)d)." +msgid_plural "" +"Ensure this value has at most %(limit_value)d characters (it has " +"%(show_value)d)." +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:461 +#: venv/lib/python3.9/site-packages/django/forms/fields.py:347 +#: venv/lib/python3.9/site-packages/django/forms/fields.py:386 +msgid "Enter a number." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:463 +#, python-format +msgid "Ensure that there are no more than %(max)s digit in total." +msgid_plural "Ensure that there are no more than %(max)s digits in total." +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:468 +#, python-format +msgid "Ensure that there are no more than %(max)s decimal place." +msgid_plural "Ensure that there are no more than %(max)s decimal places." +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:473 +#, python-format +msgid "" +"Ensure that there are no more than %(max)s digit before the decimal point." +msgid_plural "" +"Ensure that there are no more than %(max)s digits before the decimal point." +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:544 +#, python-format +msgid "" +"File extension “%(extension)s” is not allowed. Allowed extensions are: " +"%(allowed_extensions)s." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/core/validators.py:605 +msgid "Null characters are not allowed." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/base.py:1425 +#, python-format +msgid "%(model_name)s with this %(field_labels)s already exists." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/constraints.py:17 +#, python-format +msgid "Constraint “%(name)s” is violated." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:128 +#, python-format +msgid "Value %(value)r is not a valid choice." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:129 +msgid "This field cannot be null." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:130 +msgid "This field cannot be blank." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:131 +#, python-format +msgid "%(model_name)s with this %(field_label)s already exists." +msgstr "" + +#. Translators: The 'lookup_type' is one of 'date', 'year' or +#. 'month'. Eg: "Title must be unique for pub_date year" +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:135 +#, python-format +msgid "" +"%(field_label)s must be unique for %(date_field_label)s %(lookup_type)s." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:173 +#, python-format +msgid "Field of type: %(field_type)s" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1094 +#, python-format +msgid "“%(value)s” value must be either True or False." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1095 +#, python-format +msgid "“%(value)s” value must be either True, False, or None." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1097 +msgid "Boolean (Either True or False)" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1147 +#, python-format +msgid "String (up to %(max_length)s)" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1149 +msgid "String (unlimited)" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1253 +msgid "Comma-separated integers" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1354 +#, python-format +msgid "" +"“%(value)s” value has an invalid date format. It must be in YYYY-MM-DD " +"format." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1358 +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1493 +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD) but it is an invalid " +"date." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1362 +msgid "Date (without time)" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1489 +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in YYYY-MM-DD HH:MM[:ss[." +"uuuuuu]][TZ] format." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1497 +#, python-format +msgid "" +"“%(value)s” value has the correct format (YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" +"[TZ]) but it is an invalid date/time." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1502 +msgid "Date (with time)" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1626 +#, python-format +msgid "“%(value)s” value must be a decimal number." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1628 +msgid "Decimal number" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1789 +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in [DD] [[HH:]MM:]ss[." +"uuuuuu] format." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1793 +msgid "Duration" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1845 +msgid "Email address" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1870 +msgid "File path" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1948 +#, python-format +msgid "“%(value)s” value must be a float." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1950 +msgid "Floating point number" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1990 +#, python-format +msgid "“%(value)s” value must be an integer." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:1992 +msgid "Integer" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2088 +msgid "Big (8 byte) integer" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2105 +msgid "Small integer" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2113 +msgid "IPv4 address" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2144 +msgid "IP address" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2237 +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2238 +#, python-format +msgid "“%(value)s” value must be either None, True or False." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2240 +msgid "Boolean (Either True, False or None)" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2291 +msgid "Positive big integer" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2306 +msgid "Positive integer" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2321 +msgid "Positive small integer" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2337 +#, python-format +msgid "Slug (up to %(max_length)s)" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2373 +msgid "Text" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2448 +#, python-format +msgid "" +"“%(value)s” value has an invalid format. It must be in HH:MM[:ss[.uuuuuu]] " +"format." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2452 +#, python-format +msgid "" +"“%(value)s” value has the correct format (HH:MM[:ss[.uuuuuu]]) but it is an " +"invalid time." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2456 +msgid "Time" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2564 +msgid "URL" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2588 +msgid "Raw binary data" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2653 +#, python-format +msgid "“%(value)s” is not a valid UUID." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/__init__.py:2655 +msgid "Universally unique identifier" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/files.py:232 +msgid "File" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/files.py:393 +msgid "Image" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/json.py:26 +msgid "A JSON object" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/json.py:28 +msgid "Value must be valid JSON." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/related.py:919 +#, python-format +msgid "%(model)s instance with %(field)s %(value)r does not exist." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/related.py:921 +msgid "Foreign Key (type determined by related field)" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/related.py:1212 +msgid "One-to-one relationship" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/related.py:1269 +#, python-format +msgid "%(from)s-%(to)s relationship" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/related.py:1271 +#, python-format +msgid "%(from)s-%(to)s relationships" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/db/models/fields/related.py:1319 +msgid "Many-to-many relationship" +msgstr "" + +#. Translators: If found as last label character, these punctuation +#. characters will prevent the default label_suffix to be appended to the label +#: venv/lib/python3.9/site-packages/django/forms/boundfield.py:184 +msgid ":?.!" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/fields.py:298 +msgid "Enter a whole number." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/fields.py:467 +#: venv/lib/python3.9/site-packages/django/forms/fields.py:1241 +msgid "Enter a valid date." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/fields.py:490 +#: venv/lib/python3.9/site-packages/django/forms/fields.py:1242 +msgid "Enter a valid time." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/fields.py:517 +msgid "Enter a valid date/time." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/fields.py:551 +msgid "Enter a valid duration." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/fields.py:552 +#, python-brace-format +msgid "The number of days must be between {min_days} and {max_days}." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/fields.py:621 +msgid "No file was submitted. Check the encoding type on the form." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/fields.py:622 +msgid "No file was submitted." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/fields.py:623 +msgid "The submitted file is empty." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/fields.py:625 +#, python-format +msgid "Ensure this filename has at most %(max)d character (it has %(length)d)." +msgid_plural "" +"Ensure this filename has at most %(max)d characters (it has %(length)d)." +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/django/forms/fields.py:630 +msgid "Please either submit a file or check the clear checkbox, not both." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/fields.py:694 +msgid "" +"Upload a valid image. The file you uploaded was either not an image or a " +"corrupted image." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/fields.py:857 +#: venv/lib/python3.9/site-packages/django/forms/fields.py:949 +#: venv/lib/python3.9/site-packages/django/forms/models.py:1566 +#, python-format +msgid "Select a valid choice. %(value)s is not one of the available choices." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/fields.py:951 +#: venv/lib/python3.9/site-packages/django/forms/fields.py:1070 +#: venv/lib/python3.9/site-packages/django/forms/models.py:1564 +msgid "Enter a list of values." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/fields.py:1071 +msgid "Enter a complete value." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/fields.py:1310 +msgid "Enter a valid UUID." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/fields.py:1340 +msgid "Enter a valid JSON." +msgstr "" + +#. Translators: This is the default suffix added to form field labels +#: venv/lib/python3.9/site-packages/django/forms/forms.py:98 +msgid ":" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/forms.py:244 +#: venv/lib/python3.9/site-packages/django/forms/forms.py:328 +#, python-format +msgid "(Hidden field %(name)s) %(error)s" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/formsets.py:63 +#, python-format +msgid "" +"ManagementForm data is missing or has been tampered with. Missing fields: " +"%(field_names)s. You may need to file a bug report if the issue persists." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/formsets.py:67 +#, python-format +msgid "Please submit at most %(num)d form." +msgid_plural "Please submit at most %(num)d forms." +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/django/forms/formsets.py:72 +#, python-format +msgid "Please submit at least %(num)d form." +msgid_plural "Please submit at least %(num)d forms." +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/django/forms/formsets.py:484 +#: venv/lib/python3.9/site-packages/django/forms/formsets.py:491 +msgid "Order" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/models.py:886 +#, python-format +msgid "Please correct the duplicate data for %(field)s." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/models.py:891 +#, python-format +msgid "Please correct the duplicate data for %(field)s, which must be unique." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/models.py:898 +#, python-format +msgid "" +"Please correct the duplicate data for %(field_name)s which must be unique " +"for the %(lookup)s in %(date_field)s." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/models.py:907 +msgid "Please correct the duplicate values below." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/models.py:1338 +msgid "The inline value did not match the parent instance." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/models.py:1429 +msgid "Select a valid choice. That choice is not one of the available choices." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/models.py:1568 +#, python-format +msgid "“%(pk)s” is not a valid value." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/utils.py:226 +#, python-format +msgid "" +"%(datetime)s couldn’t be interpreted in time zone %(current_timezone)s; it " +"may be ambiguous or it may not exist." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/widgets.py:463 +msgid "Clear" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/widgets.py:464 +msgid "Currently" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/widgets.py:465 +msgid "Change" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/widgets.py:794 +msgid "Unknown" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/widgets.py:795 +msgid "Yes" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/forms/widgets.py:796 +msgid "No" +msgstr "" + +#. Translators: Please do not add spaces around commas. +#: venv/lib/python3.9/site-packages/django/template/defaultfilters.py:874 +msgid "yes,no,maybe" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/template/defaultfilters.py:904 +#: venv/lib/python3.9/site-packages/django/template/defaultfilters.py:921 +#, python-format +msgid "%(size)d byte" +msgid_plural "%(size)d bytes" +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/django/template/defaultfilters.py:923 +#, python-format +msgid "%s KB" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/template/defaultfilters.py:925 +#, python-format +msgid "%s MB" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/template/defaultfilters.py:927 +#, python-format +msgid "%s GB" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/template/defaultfilters.py:929 +#, python-format +msgid "%s TB" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/template/defaultfilters.py:931 +#, python-format +msgid "%s PB" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dateformat.py:73 +msgid "p.m." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dateformat.py:74 +msgid "a.m." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dateformat.py:79 +msgid "PM" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dateformat.py:80 +msgid "AM" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dateformat.py:152 +msgid "midnight" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dateformat.py:154 +msgid "noon" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:7 +msgid "Monday" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:8 +msgid "Tuesday" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:9 +msgid "Wednesday" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:10 +msgid "Thursday" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:11 +msgid "Friday" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:12 +msgid "Saturday" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:13 +msgid "Sunday" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:16 +msgid "Mon" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:17 +msgid "Tue" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:18 +msgid "Wed" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:19 +msgid "Thu" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:20 +msgid "Fri" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:21 +msgid "Sat" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:22 +msgid "Sun" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:25 +msgid "January" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:26 +msgid "February" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:27 +msgid "March" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:28 +msgid "April" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:29 +msgid "May" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:30 +msgid "June" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:31 +msgid "July" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:32 +msgid "August" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:33 +msgid "September" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:34 +msgid "October" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:35 +msgid "November" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:36 +msgid "December" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:39 +msgid "jan" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:40 +msgid "feb" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:41 +msgid "mar" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:42 +msgid "apr" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:43 +msgid "may" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:44 +msgid "jun" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:45 +msgid "jul" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:46 +msgid "aug" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:47 +msgid "sep" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:48 +msgid "oct" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:49 +msgid "nov" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:50 +msgid "dec" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:53 +msgctxt "abbrev. month" +msgid "Jan." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:54 +msgctxt "abbrev. month" +msgid "Feb." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:55 +msgctxt "abbrev. month" +msgid "March" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:56 +msgctxt "abbrev. month" +msgid "April" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:57 +msgctxt "abbrev. month" +msgid "May" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:58 +msgctxt "abbrev. month" +msgid "June" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:59 +msgctxt "abbrev. month" +msgid "July" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:60 +msgctxt "abbrev. month" +msgid "Aug." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:61 +msgctxt "abbrev. month" +msgid "Sept." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:62 +msgctxt "abbrev. month" +msgid "Oct." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:63 +msgctxt "abbrev. month" +msgid "Nov." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:64 +msgctxt "abbrev. month" +msgid "Dec." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:67 +msgctxt "alt. month" +msgid "January" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:68 +msgctxt "alt. month" +msgid "February" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:69 +msgctxt "alt. month" +msgid "March" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:70 +msgctxt "alt. month" +msgid "April" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:71 +msgctxt "alt. month" +msgid "May" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:72 +msgctxt "alt. month" +msgid "June" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:73 +msgctxt "alt. month" +msgid "July" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:74 +msgctxt "alt. month" +msgid "August" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:75 +msgctxt "alt. month" +msgid "September" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:76 +msgctxt "alt. month" +msgid "October" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:77 +msgctxt "alt. month" +msgid "November" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/dates.py:78 +msgctxt "alt. month" +msgid "December" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/ipv6.py:8 +msgid "This is not a valid IPv6 address." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/text.py:137 +#, python-format +msgctxt "String to return when truncating text" +msgid "%(truncated_text)s…" +msgstr "" + +#. Translators: This string is used as a separator between list elements +#: venv/lib/python3.9/site-packages/django/utils/text.py:341 +#: venv/lib/python3.9/site-packages/django/utils/timesince.py:135 +msgid ", " +msgstr "" + +#: venv/lib/python3.9/site-packages/django/utils/timesince.py:8 +#, python-format +msgid "%(num)d year" +msgid_plural "%(num)d years" +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/django/utils/timesince.py:9 +#, python-format +msgid "%(num)d month" +msgid_plural "%(num)d months" +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/django/utils/timesince.py:10 +#, python-format +msgid "%(num)d week" +msgid_plural "%(num)d weeks" +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/django/utils/timesince.py:11 +#, python-format +msgid "%(num)d day" +msgid_plural "%(num)d days" +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/django/utils/timesince.py:12 +#, python-format +msgid "%(num)d hour" +msgid_plural "%(num)d hours" +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/django/utils/timesince.py:13 +#, python-format +msgid "%(num)d minute" +msgid_plural "%(num)d minutes" +msgstr[0] "" +msgstr[1] "" + +#: venv/lib/python3.9/site-packages/django/views/csrf.py:111 +msgid "Forbidden" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/csrf.py:112 +msgid "CSRF verification failed. Request aborted." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/csrf.py:116 +msgid "" +"You are seeing this message because this HTTPS site requires a “Referer " +"header” to be sent by your web browser, but none was sent. This header is " +"required for security reasons, to ensure that your browser is not being " +"hijacked by third parties." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/csrf.py:122 +msgid "" +"If you have configured your browser to disable “Referer” headers, please re-" +"enable them, at least for this site, or for HTTPS connections, or for “same-" +"origin” requests." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/csrf.py:127 +msgid "" +"If you are using the tag or " +"including the “Referrer-Policy: no-referrer” header, please remove them. The " +"CSRF protection requires the “Referer” header to do strict referer checking. " +"If you’re concerned about privacy, use alternatives like for links to third-party sites." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/csrf.py:136 +msgid "" +"You are seeing this message because this site requires a CSRF cookie when " +"submitting forms. This cookie is required for security reasons, to ensure " +"that your browser is not being hijacked by third parties." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/csrf.py:142 +msgid "" +"If you have configured your browser to disable cookies, please re-enable " +"them, at least for this site, or for “same-origin” requests." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/csrf.py:148 +msgid "More information is available with DEBUG=True." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/generic/dates.py:44 +msgid "No year specified" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/generic/dates.py:64 +#: venv/lib/python3.9/site-packages/django/views/generic/dates.py:115 +#: venv/lib/python3.9/site-packages/django/views/generic/dates.py:214 +msgid "Date out of range" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/generic/dates.py:94 +msgid "No month specified" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/generic/dates.py:147 +msgid "No day specified" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/generic/dates.py:194 +msgid "No week specified" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/generic/dates.py:349 +#: venv/lib/python3.9/site-packages/django/views/generic/dates.py:380 +#, python-format +msgid "No %(verbose_name_plural)s available" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/generic/dates.py:652 +#, python-format +msgid "" +"Future %(verbose_name_plural)s not available because %(class_name)s." +"allow_future is False." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/generic/dates.py:692 +#, python-format +msgid "Invalid date string “%(datestr)s” given format “%(format)s”" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/generic/detail.py:56 +#, python-format +msgid "No %(verbose_name)s found matching the query" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/generic/list.py:70 +msgid "Page is not “last”, nor can it be converted to an int." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/generic/list.py:77 +#, python-format +msgid "Invalid page (%(page_number)s): %(message)s" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/generic/list.py:169 +#, python-format +msgid "Empty list and “%(class_name)s.allow_empty” is False." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/static.py:38 +msgid "Directory indexes are not allowed here." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/static.py:40 +#, python-format +msgid "“%(path)s” does not exist" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/static.py:79 +#, python-format +msgid "Index of %(directory)s" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/templates/default_urlconf.html:7 +#: venv/lib/python3.9/site-packages/django/views/templates/default_urlconf.html:220 +msgid "The install worked successfully! Congratulations!" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/templates/default_urlconf.html:206 +#, python-format +msgid "" +"View release notes for Django %(version)s" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/templates/default_urlconf.html:221 +#, python-format +msgid "" +"You are seeing this page because DEBUG=True is in your settings file and you have not " +"configured any URLs." +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/templates/default_urlconf.html:229 +msgid "Django Documentation" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/templates/default_urlconf.html:230 +msgid "Topics, references, & how-to’s" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/templates/default_urlconf.html:238 +msgid "Tutorial: A Polling App" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/templates/default_urlconf.html:239 +msgid "Get started with Django" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/templates/default_urlconf.html:247 +msgid "Django Community" +msgstr "" + +#: venv/lib/python3.9/site-packages/django/views/templates/default_urlconf.html:248 +msgid "Connect, get help, or contribute" +msgstr "" + +#: venv/lib/python3.9/site-packages/kombu/transport/qpid.py:1311 +#, python-format +msgid "Attempting to connect to qpid with SASL mechanism %s" +msgstr "" + +#: venv/lib/python3.9/site-packages/kombu/transport/qpid.py:1316 +#, python-format +msgid "Connected to qpid with SASL mechanism %s" +msgstr "" + +#: venv/lib/python3.9/site-packages/kombu/transport/qpid.py:1334 +#, python-format +msgid "Unable to connect to qpid with SASL mechanism %s" +msgstr "" diff --git a/locale/ru/LC_MESSAGES/djangojs.po b/locale/ru/LC_MESSAGES/djangojs.po deleted file mode 100644 index 0db5980..0000000 --- a/locale/ru/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,114 +0,0 @@ - -msgid "" -msgstr "" -"Project-Id-Version:PACKAGE VERSION" -"Report-Msgid-Bugs-To:" -"POT-Creation-Date:2024-04-15 19:36+0600" -"PO-Revision-Date:YEAR-MO-DA HO:MI+ZONE" -"Last-Translator:FULL NAME " -"Language-Team:LANGUAGE " -"Language:" -"MIME-Version:1.0" -"Content-Type:text/plain; charset=UTF-8" -"Content-Transfer-Encoding:8bit" -"Plural-Forms:nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);" - -#: static/js/dashboard.js:8 -msgid "January" -msgstr "Январь" -#: static/js/dashboard.js:9 -msgid "February" -msgstr "Февраль" -#: static/js/dashboard.js:10 -msgid "March" -msgstr "Март" -#: static/js/dashboard.js:11 -msgid "April" -msgstr "Апрель" -#: static/js/dashboard.js:12 -msgid "May" -msgstr "Май" -#: static/js/dashboard.js:13 -msgid "June" -msgstr "Июнь" -#: static/js/dashboard.js:18 -msgid "Students" -msgstr "Студенты" -#: static/js/dashboard.js:24 -msgid "Teachers" -msgstr "Учителя" -#: static/js/dashboard.js:30 -msgid "Admins" -msgstr "Админы" -#: static/js/dashboard.js:36 -msgid "Stuffs" -msgstr "Вещи" -#: static/js/dashboard.js:52 -msgid "Website Traffic" -msgstr "Трафик веб-сайта" -#: static/js/dashboard.js:71 -msgid "Comp.S" -msgstr "Информатика" -#: static/js/dashboard.js:77 -msgid "Architecture" -msgstr "Архитектура" -#: static/js/dashboard.js:83 -msgid "Civil Eng" -msgstr "Гражданское инженерство" -#: static/js/dashboard.js:89 -msgid "Accounting" -msgstr "Бухгалтерский учет" -#: static/js/dashboard.js:95 -msgid "Business M." -msgstr "Бизнес М." -#: static/js/dashboard.js:111 -msgid "Enrollment per course" -msgstr "Запись на курс" -#: static/js/dashboard.js:129 -msgid "Comp sci." -msgstr "Компьютерная наука." -#: static/js/dashboard.js:135 -msgid "Civil eng." -msgstr "Гражданский инженерство." -#: static/js/dashboard.js:141 -msgid "Architect." -msgstr "Архитектор." -#: static/js/dashboard.js:147 -msgid "Economics" -msgstr "Экономика" -#: static/js/dashboard.js:163 -msgid "Students average grade (performance)" -msgstr "Средняя оценка учащихся (успеваемость)" -#: static/js/dashboard.js:172 -msgid "Man" -msgstr "Мужчина" -#: static/js/dashboard.js:173 -msgid "Women" -msgstr "Женщины" -#: static/js/dashboard.js:176 -msgid "Students Gender Dataset" -msgstr "Набор гендерных данных студентов" -#: static/js/dashboard.js:194 -msgid "Students Gender" -msgstr "Пол студентов" -#: static/js/dashboard.js:203 static/js/dashboard.js:235 -msgid "PHD" -msgstr "КАНДИДАТ НАУК" -#: static/js/dashboard.js:204 static/js/dashboard.js:236 -msgid "Masters" -msgstr "Магистр" -#: static/js/dashboard.js:205 static/js/dashboard.js:237 -msgid "BSc degree" -msgstr "Степень бакалавра" -#: static/js/dashboard.js:208 -msgid "Lecturer Qualifications Dataset" -msgstr "Набор данных о квалификациях преподавателей" -#: static/js/dashboard.js:226 -msgid "Lecturer qualifications" -msgstr "Квалификация преподавателя" -#: static/js/dashboard.js:240 -msgid "Students level" -msgstr "Уровень студентов" -#: static/js/dashboard.js:258 -msgid "Student levels" -msgstr "Уровни студентов" diff --git a/quiz/migrations/0002_choice_choice_en_choice_choice_ru_and_more.py b/quiz/migrations/0002_choice_choice_en_choice_choice_ru_and_more.py new file mode 100644 index 0000000..c84314b --- /dev/null +++ b/quiz/migrations/0002_choice_choice_en_choice_choice_ru_and_more.py @@ -0,0 +1,105 @@ +# Generated by Django 4.2.16 on 2024-09-29 07:44 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ("quiz", "0001_initial"), + ] + + operations = [ + migrations.AddField( + model_name="choice", + name="choice_en", + field=models.CharField( + help_text="Enter the choice text that you want displayed", + max_length=1000, + null=True, + verbose_name="Content", + ), + ), + migrations.AddField( + model_name="choice", + name="choice_ru", + field=models.CharField( + help_text="Enter the choice text that you want displayed", + max_length=1000, + null=True, + verbose_name="Content", + ), + ), + migrations.AddField( + model_name="question", + name="content_en", + field=models.CharField( + help_text="Enter the question text that you want displayed", + max_length=1000, + null=True, + verbose_name="Question", + ), + ), + migrations.AddField( + model_name="question", + name="content_ru", + field=models.CharField( + help_text="Enter the question text that you want displayed", + max_length=1000, + null=True, + verbose_name="Question", + ), + ), + migrations.AddField( + model_name="question", + name="explanation_en", + field=models.TextField( + blank=True, + help_text="Explanation to be shown after the question has been answered.", + max_length=2000, + null=True, + verbose_name="Explanation", + ), + ), + migrations.AddField( + model_name="question", + name="explanation_ru", + field=models.TextField( + blank=True, + help_text="Explanation to be shown after the question has been answered.", + max_length=2000, + null=True, + verbose_name="Explanation", + ), + ), + migrations.AddField( + model_name="quiz", + name="description_en", + field=models.TextField( + blank=True, + help_text="A detailed description of the quiz", + null=True, + verbose_name="Description", + ), + ), + migrations.AddField( + model_name="quiz", + name="description_ru", + field=models.TextField( + blank=True, + help_text="A detailed description of the quiz", + null=True, + verbose_name="Description", + ), + ), + migrations.AddField( + model_name="quiz", + name="title_en", + field=models.CharField(max_length=60, null=True, verbose_name="Title"), + ), + migrations.AddField( + model_name="quiz", + name="title_ru", + field=models.CharField(max_length=60, null=True, verbose_name="Title"), + ), + ] diff --git a/quiz/migrations/0005_choice_choice_en_choice_choice_ru_and_more.py b/quiz/migrations/0005_choice_choice_en_choice_choice_ru_and_more.py deleted file mode 100644 index 366b9d7..0000000 --- a/quiz/migrations/0005_choice_choice_en_choice_choice_ru_and_more.py +++ /dev/null @@ -1,63 +0,0 @@ -# Generated by Django 4.0.8 on 2024-04-15 13:36 - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ('quiz', '0004_alter_question_figure_alter_quiz_description'), - ] - - operations = [ - migrations.AddField( - model_name='choice', - name='choice_en', - field=models.CharField(help_text='Enter the choice text that you want displayed', max_length=1000, null=True, verbose_name='Content'), - ), - migrations.AddField( - model_name='choice', - name='choice_ru', - field=models.CharField(help_text='Enter the choice text that you want displayed', max_length=1000, null=True, verbose_name='Content'), - ), - migrations.AddField( - model_name='question', - name='content_en', - field=models.CharField(help_text='Enter the question text that you want displayed', max_length=1000, null=True, verbose_name='Question'), - ), - migrations.AddField( - model_name='question', - name='content_ru', - field=models.CharField(help_text='Enter the question text that you want displayed', max_length=1000, null=True, verbose_name='Question'), - ), - migrations.AddField( - model_name='question', - name='explanation_en', - field=models.TextField(blank=True, help_text='Explanation to be shown after the question has been answered.', max_length=2000, null=True, verbose_name='Explanation'), - ), - migrations.AddField( - model_name='question', - name='explanation_ru', - field=models.TextField(blank=True, help_text='Explanation to be shown after the question has been answered.', max_length=2000, null=True, verbose_name='Explanation'), - ), - migrations.AddField( - model_name='quiz', - name='description_en', - field=models.TextField(blank=True, help_text='A detailed description of the quiz', null=True, verbose_name='Description'), - ), - migrations.AddField( - model_name='quiz', - name='description_ru', - field=models.TextField(blank=True, help_text='A detailed description of the quiz', null=True, verbose_name='Description'), - ), - migrations.AddField( - model_name='quiz', - name='title_en', - field=models.CharField(max_length=60, null=True, verbose_name='Title'), - ), - migrations.AddField( - model_name='quiz', - name='title_ru', - field=models.CharField(max_length=60, null=True, verbose_name='Title'), - ), - ] From ca933f5bf1307b8b2ffaa375c1f98c009fda16d9 Mon Sep 17 00:00:00 2001 From: Adil Mohak Date: Sun, 29 Sep 2024 16:28:19 +0300 Subject: [PATCH 4/7] Move lang select form to the side bar --- ...ry_es_newsandevents_summary_fr_and_more.py | 33 ++++++ ...rse_summary_fr_course_title_es_and_more.py | 83 ++++++++++++++ ...ice_choice_es_choice_choice_fr_and_more.py | 105 ++++++++++++++++++ templates/aside.html | 24 ++++ templates/navbar.html | 14 --- 5 files changed, 245 insertions(+), 14 deletions(-) create mode 100644 core/migrations/0003_newsandevents_summary_es_newsandevents_summary_fr_and_more.py create mode 100644 course/migrations/0003_course_summary_es_course_summary_fr_course_title_es_and_more.py create mode 100644 quiz/migrations/0003_choice_choice_es_choice_choice_fr_and_more.py diff --git a/core/migrations/0003_newsandevents_summary_es_newsandevents_summary_fr_and_more.py b/core/migrations/0003_newsandevents_summary_es_newsandevents_summary_fr_and_more.py new file mode 100644 index 0000000..357c1a1 --- /dev/null +++ b/core/migrations/0003_newsandevents_summary_es_newsandevents_summary_fr_and_more.py @@ -0,0 +1,33 @@ +# Generated by Django 4.2.16 on 2024-09-29 13:17 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ("core", "0002_newsandevents_summary_en_newsandevents_summary_ru_and_more"), + ] + + operations = [ + migrations.AddField( + model_name="newsandevents", + name="summary_es", + field=models.TextField(blank=True, max_length=200, null=True), + ), + migrations.AddField( + model_name="newsandevents", + name="summary_fr", + field=models.TextField(blank=True, max_length=200, null=True), + ), + migrations.AddField( + model_name="newsandevents", + name="title_es", + field=models.CharField(max_length=200, null=True), + ), + migrations.AddField( + model_name="newsandevents", + name="title_fr", + field=models.CharField(max_length=200, null=True), + ), + ] diff --git a/course/migrations/0003_course_summary_es_course_summary_fr_course_title_es_and_more.py b/course/migrations/0003_course_summary_es_course_summary_fr_course_title_es_and_more.py new file mode 100644 index 0000000..f6cba62 --- /dev/null +++ b/course/migrations/0003_course_summary_es_course_summary_fr_course_title_es_and_more.py @@ -0,0 +1,83 @@ +# Generated by Django 4.2.16 on 2024-09-29 13:17 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ("course", "0002_course_summary_en_course_summary_ru_course_title_en_and_more"), + ] + + operations = [ + migrations.AddField( + model_name="course", + name="summary_es", + field=models.TextField(blank=True, max_length=200, null=True), + ), + migrations.AddField( + model_name="course", + name="summary_fr", + field=models.TextField(blank=True, max_length=200, null=True), + ), + migrations.AddField( + model_name="course", + name="title_es", + field=models.CharField(max_length=200, null=True), + ), + migrations.AddField( + model_name="course", + name="title_fr", + field=models.CharField(max_length=200, null=True), + ), + migrations.AddField( + model_name="program", + name="summary_es", + field=models.TextField(blank=True, null=True), + ), + migrations.AddField( + model_name="program", + name="summary_fr", + field=models.TextField(blank=True, null=True), + ), + migrations.AddField( + model_name="program", + name="title_es", + field=models.CharField(max_length=150, null=True, unique=True), + ), + migrations.AddField( + model_name="program", + name="title_fr", + field=models.CharField(max_length=150, null=True, unique=True), + ), + migrations.AddField( + model_name="upload", + name="title_es", + field=models.CharField(max_length=100, null=True), + ), + migrations.AddField( + model_name="upload", + name="title_fr", + field=models.CharField(max_length=100, null=True), + ), + migrations.AddField( + model_name="uploadvideo", + name="summary_es", + field=models.TextField(blank=True, null=True), + ), + migrations.AddField( + model_name="uploadvideo", + name="summary_fr", + field=models.TextField(blank=True, null=True), + ), + migrations.AddField( + model_name="uploadvideo", + name="title_es", + field=models.CharField(max_length=100, null=True), + ), + migrations.AddField( + model_name="uploadvideo", + name="title_fr", + field=models.CharField(max_length=100, null=True), + ), + ] diff --git a/quiz/migrations/0003_choice_choice_es_choice_choice_fr_and_more.py b/quiz/migrations/0003_choice_choice_es_choice_choice_fr_and_more.py new file mode 100644 index 0000000..8cb5572 --- /dev/null +++ b/quiz/migrations/0003_choice_choice_es_choice_choice_fr_and_more.py @@ -0,0 +1,105 @@ +# Generated by Django 4.2.16 on 2024-09-29 13:17 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ("quiz", "0002_choice_choice_en_choice_choice_ru_and_more"), + ] + + operations = [ + migrations.AddField( + model_name="choice", + name="choice_es", + field=models.CharField( + help_text="Enter the choice text that you want displayed", + max_length=1000, + null=True, + verbose_name="Content", + ), + ), + migrations.AddField( + model_name="choice", + name="choice_fr", + field=models.CharField( + help_text="Enter the choice text that you want displayed", + max_length=1000, + null=True, + verbose_name="Content", + ), + ), + migrations.AddField( + model_name="question", + name="content_es", + field=models.CharField( + help_text="Enter the question text that you want displayed", + max_length=1000, + null=True, + verbose_name="Question", + ), + ), + migrations.AddField( + model_name="question", + name="content_fr", + field=models.CharField( + help_text="Enter the question text that you want displayed", + max_length=1000, + null=True, + verbose_name="Question", + ), + ), + migrations.AddField( + model_name="question", + name="explanation_es", + field=models.TextField( + blank=True, + help_text="Explanation to be shown after the question has been answered.", + max_length=2000, + null=True, + verbose_name="Explanation", + ), + ), + migrations.AddField( + model_name="question", + name="explanation_fr", + field=models.TextField( + blank=True, + help_text="Explanation to be shown after the question has been answered.", + max_length=2000, + null=True, + verbose_name="Explanation", + ), + ), + migrations.AddField( + model_name="quiz", + name="description_es", + field=models.TextField( + blank=True, + help_text="A detailed description of the quiz", + null=True, + verbose_name="Description", + ), + ), + migrations.AddField( + model_name="quiz", + name="description_fr", + field=models.TextField( + blank=True, + help_text="A detailed description of the quiz", + null=True, + verbose_name="Description", + ), + ), + migrations.AddField( + model_name="quiz", + name="title_es", + field=models.CharField(max_length=60, null=True, verbose_name="Title"), + ), + migrations.AddField( + model_name="quiz", + name="title_fr", + field=models.CharField(max_length=60, null=True, verbose_name="Title"), + ), + ] diff --git a/templates/aside.html b/templates/aside.html index e72bf62..12ba2bb 100644 --- a/templates/aside.html +++ b/templates/aside.html @@ -126,6 +126,21 @@
+ +
{% csrf_token %} + + +
+

{% trans 'Read our' %} {% trans 'Privacy' %} {% trans 'and' %} {% trans 'Terms of use.' %}'
Django LMS © @@ -137,3 +152,12 @@

+ +{% block js %} + +{% endblock js %} \ No newline at end of file diff --git a/templates/navbar.html b/templates/navbar.html index f3b5057..dece5ec 100644 --- a/templates/navbar.html +++ b/templates/navbar.html @@ -48,20 +48,6 @@
-
{% csrf_token %} - - - -
\ No newline at end of file From 5c7703de8b49243daae76e2a17142e8211b73542 Mon Sep 17 00:00:00 2001 From: Adil Mohak Date: Sun, 29 Sep 2024 16:40:00 +0300 Subject: [PATCH 5/7] Remove duplicate urls --- config/urls.py | 18 ++---------------- 1 file changed, 2 insertions(+), 16 deletions(-) diff --git a/config/urls.py b/config/urls.py index 7043925..dfb564b 100644 --- a/config/urls.py +++ b/config/urls.py @@ -9,24 +9,12 @@ from django.views.i18n import JavaScriptCatalog admin.site.site_header = "Dj-LMS Admin" urlpatterns = [ - path("jet/", include("jet.urls", "jet")), # Django JET URLS - path( - "jet/dashboard/", include("jet.dashboard.urls", "jet-dashboard") - ), # Django JET dashboard URLS - path("", include("core.urls")), - path("accounts/", include("accounts.urls")), - path("programs/", include("course.urls")), - path("result/", include("result.urls")), - path("search/", include("search.urls")), - path("quiz/", include("quiz.urls")), - path("payments/", include("payments.urls")), - path("accounts/api/", include("accounts.api.urls", namespace="accounts-api")), path("admin/", admin.site.urls), - path("i18n/", include('django.conf.urls.i18n')), + path("i18n/", include("django.conf.urls.i18n")), ] urlpatterns += i18n_patterns( - path("jsi18n/", JavaScriptCatalog.as_view(), name='javascript-catalog'), + path("jsi18n/", JavaScriptCatalog.as_view(), name="javascript-catalog"), path("", include("core.urls")), path("jet/", include("jet.urls", "jet")), # Django JET URLS path( @@ -42,8 +30,6 @@ urlpatterns += i18n_patterns( ) - - if settings.DEBUG: urlpatterns += static(settings.STATIC_URL, document_root=settings.STATIC_ROOT) urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) From 04dce7d406749d485863b0f9651de758307f8f41 Mon Sep 17 00:00:00 2001 From: Adil Mohak Date: Sun, 29 Sep 2024 16:43:28 +0300 Subject: [PATCH 6/7] Update TODO --- TODO.md | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/TODO.md b/TODO.md index cd696de..664744a 100644 --- a/TODO.md +++ b/TODO.md @@ -3,15 +3,13 @@ - **Add and Drop**: - The add and drop page should only include courses offered by the department head. - Add and drop date should be restricted by the school calendar. -- **Auto generate username and password when adding students and lecturers** - - Instead of filling the username and password for the student/lecturer, the system should automatically generate them and send to the student's/lecturer's email. - **Payment integration**: - Integrating PayPal and Stripe for students to pay their fees. - **Integrate the dashboard with dynamic/live data**: - Overall attendance - School demographics - - Lecturer qualification - - Students' level + - Lecturer qualification + - Students' level - Students average grade per course: This helps to keep track of students' performance - Overall Course Resources @@ -21,8 +19,6 @@ - Enrollments per course - How many students enroll in each course - Website traffic over a specific user type (Admin, Student, Lecturer, etc.) -- **Apply Filtering for all tables**: - - This can be done using `django-filter` and other jQuery libraries - **Apply data exporting for all tables**: - This can be done using jQuery libraries like `DataTables` - **Using a template to PDF converter to generate reports**: From aacff04acd928af0b44d8c9b30d8de95a05efb07 Mon Sep 17 00:00:00 2001 From: Adil Mohak Date: Sun, 29 Sep 2024 18:10:58 +0300 Subject: [PATCH 7/7] Multilingual support --- course/forms.py | 3 +++ templates/course/program_add.html | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/course/forms.py b/course/forms.py index 2fcc318..ce568d3 100644 --- a/course/forms.py +++ b/course/forms.py @@ -2,6 +2,7 @@ from django import forms from accounts.models import User from .models import Program, Course, CourseAllocation, Upload, UploadVideo + class ProgramForm(forms.ModelForm): class Meta: model = Program @@ -11,6 +12,8 @@ class ProgramForm(forms.ModelForm): super().__init__(*args, **kwargs) self.fields["title"].widget.attrs.update({"class": "form-control"}) self.fields["summary"].widget.attrs.update({"class": "form-control"}) + + class CourseAddForm(forms.ModelForm): class Meta: model = Course diff --git a/templates/course/program_add.html b/templates/course/program_add.html index 14b4fe6..b9880e1 100644 --- a/templates/course/program_add.html +++ b/templates/course/program_add.html @@ -22,7 +22,8 @@

{% trans 'Program Add Form' %}


{% csrf_token %} - {{ form|crispy }} + {{ form.title|as_crispy_field }} + {{ form.summary|as_crispy_field }}