chore: resolved merge conflicts
This commit is contained in:
+23
-58
@@ -15,7 +15,6 @@ from frappe.integrations.frappe_providers.frappecloud_billing import (
|
||||
current_site_info,
|
||||
is_fc_site,
|
||||
)
|
||||
from frappe.query_builder import DocType
|
||||
from frappe.translate import get_all_translations
|
||||
from frappe.utils import (
|
||||
add_days,
|
||||
@@ -287,53 +286,17 @@ def get_evaluator_details(evaluator):
|
||||
|
||||
@frappe.whitelist(allow_guest=True)
|
||||
def get_certified_participants(filters=None, start=0, page_length=100):
|
||||
filters, or_filters, open_to_opportunities, hiring = update_certification_filters(filters)
|
||||
|
||||
participants = frappe.db.get_all(
|
||||
"LMS Certificate",
|
||||
filters=filters,
|
||||
or_filters=or_filters,
|
||||
fields=["member", "issue_date", "batch_name", "course", "name"],
|
||||
group_by="member",
|
||||
order_by="issue_date desc",
|
||||
start=start,
|
||||
page_length=page_length,
|
||||
)
|
||||
query = get_certification_query(filters)
|
||||
query = query.orderby("issue_date", order=frappe.qb.desc).offset(start).limit(page_length)
|
||||
participants = query.run(as_dict=True)
|
||||
|
||||
for participant in participants:
|
||||
details = get_certified_participant_details(participant.member)
|
||||
participant.update(details)
|
||||
|
||||
participants = filter_by_open_to_criteria(participants, open_to_opportunities, hiring)
|
||||
|
||||
return participants
|
||||
|
||||
|
||||
def update_certification_filters(filters):
|
||||
open_to_opportunities = False
|
||||
hiring = False
|
||||
or_filters = {}
|
||||
if not filters:
|
||||
filters = {}
|
||||
filters.update({"published": 1})
|
||||
|
||||
category = filters.get("category")
|
||||
if category:
|
||||
del filters["category"]
|
||||
or_filters["course_title"] = ["like", f"%{category}%"]
|
||||
or_filters["batch_title"] = ["like", f"%{category}%"]
|
||||
|
||||
if filters.get("open_to_opportunities"):
|
||||
del filters["open_to_opportunities"]
|
||||
open_to_opportunities = True
|
||||
|
||||
if filters.get("hiring"):
|
||||
del filters["hiring"]
|
||||
hiring = True
|
||||
|
||||
return filters, or_filters, open_to_opportunities, hiring
|
||||
|
||||
|
||||
def get_certified_participant_details(member):
|
||||
count = frappe.db.count("LMS Certificate", {"member": member})
|
||||
details = frappe.db.get_value(
|
||||
@@ -346,25 +309,18 @@ def get_certified_participant_details(member):
|
||||
return details
|
||||
|
||||
|
||||
def filter_by_open_to_criteria(participants, open_to_opportunities, hiring):
|
||||
if not open_to_opportunities and not hiring:
|
||||
return participants
|
||||
|
||||
if open_to_opportunities:
|
||||
participants = [participant for participant in participants if participant.open_to == "Opportunities"]
|
||||
|
||||
if hiring:
|
||||
participants = [participant for participant in participants if participant.open_to == "Hiring"]
|
||||
|
||||
return participants
|
||||
|
||||
|
||||
@frappe.whitelist(allow_guest=True)
|
||||
def get_count_of_certified_members(filters=None):
|
||||
Certificate = DocType("LMS Certificate")
|
||||
def get_certification_query(filters):
|
||||
Certificate = frappe.qb.DocType("LMS Certificate")
|
||||
User = frappe.qb.DocType("User")
|
||||
|
||||
query = (
|
||||
frappe.qb.from_(Certificate).select(Certificate.member).distinct().where(Certificate.published == 1)
|
||||
frappe.qb.from_(Certificate)
|
||||
.select(Certificate.member)
|
||||
.distinct()
|
||||
.join(User)
|
||||
.on(Certificate.member == User.name)
|
||||
.where(Certificate.published == 1)
|
||||
.where(User.enabled == 1)
|
||||
)
|
||||
|
||||
if filters:
|
||||
@@ -373,9 +329,18 @@ def get_count_of_certified_members(filters=None):
|
||||
query = query.where(
|
||||
Certificate.course_title.like(f"%{value}%") | Certificate.batch_title.like(f"%{value}%")
|
||||
)
|
||||
elif field == "member_name":
|
||||
if field == "member_name":
|
||||
query = query.where(Certificate.member_name.like(value[1]))
|
||||
if field == "open_to_opportunities":
|
||||
query = query.where(User.open_to == "Opportunities")
|
||||
if field == "hiring":
|
||||
query = query.where(User.open_to == "Hiring")
|
||||
return query
|
||||
|
||||
|
||||
@frappe.whitelist(allow_guest=True)
|
||||
def get_count_of_certified_members(filters=None):
|
||||
query = get_certification_query(filters)
|
||||
result = query.run(as_dict=True)
|
||||
return len(result) or 0
|
||||
|
||||
|
||||
@@ -39,8 +39,8 @@ class LMSEnrollment(Document):
|
||||
payment = frappe.db.exists(
|
||||
"LMS Payment",
|
||||
{
|
||||
"reference_doctype": "LMS Course",
|
||||
"reference_docname": self.course,
|
||||
"payment_for_document_type": "LMS Course",
|
||||
"payment_for_document": self.course,
|
||||
"member": self.member,
|
||||
"payment_received": True,
|
||||
},
|
||||
|
||||
+3
-3
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: frappe\n"
|
||||
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
||||
"POT-Creation-Date: 2025-12-19 16:05+0000\n"
|
||||
"PO-Revision-Date: 2025-12-29 11:09\n"
|
||||
"PO-Revision-Date: 2026-01-05 13:42\n"
|
||||
"Last-Translator: jannat@frappe.io\n"
|
||||
"Language-Team: Persian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -1206,7 +1206,7 @@ msgstr "اینجا کلیک کنید"
|
||||
#: lms/lms/doctype/lms_zoom_settings/lms_zoom_settings.json
|
||||
#: lms/lms/doctype/zoom_settings/zoom_settings.json
|
||||
msgid "Client ID"
|
||||
msgstr "شناسه مشتری"
|
||||
msgstr "شناسه کلاینت"
|
||||
|
||||
#. Label of the client_secret (Password) field in DocType 'LMS Zoom Settings'
|
||||
#. Label of the client_secret (Password) field in DocType 'Zoom Settings'
|
||||
@@ -1214,7 +1214,7 @@ msgstr "شناسه مشتری"
|
||||
#: lms/lms/doctype/lms_zoom_settings/lms_zoom_settings.json
|
||||
#: lms/lms/doctype/zoom_settings/zoom_settings.json
|
||||
msgid "Client Secret"
|
||||
msgstr "راز مشتری"
|
||||
msgstr "سیکرت کلاینت"
|
||||
|
||||
#: frontend/src/components/Settings/Categories.vue:27
|
||||
msgid "Close"
|
||||
|
||||
+7
-7
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: frappe\n"
|
||||
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
||||
"POT-Creation-Date: 2025-12-19 16:05+0000\n"
|
||||
"PO-Revision-Date: 2025-12-23 23:25\n"
|
||||
"PO-Revision-Date: 2026-01-07 14:33\n"
|
||||
"Last-Translator: jannat@frappe.io\n"
|
||||
"Language-Team: Hungarian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -357,7 +357,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_payment/lms_payment.json
|
||||
msgid "Amount"
|
||||
msgstr ""
|
||||
msgstr "Összeg"
|
||||
|
||||
#. Label of the amount_usd (Currency) field in DocType 'LMS Batch'
|
||||
#. Label of the amount_usd (Currency) field in DocType 'LMS Course'
|
||||
@@ -3157,7 +3157,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/industry/industry.json
|
||||
#: lms/lms/doctype/preferred_industry/preferred_industry.json
|
||||
msgid "Industry"
|
||||
msgstr ""
|
||||
msgstr "Ipar"
|
||||
|
||||
#. Label of the input (Data) field in DocType 'LMS Test Case'
|
||||
#. Label of the input (Data) field in DocType 'LMS Test Case Submission'
|
||||
@@ -4565,7 +4565,7 @@ msgstr "Jegyzet"
|
||||
#: frontend/src/pages/Lesson.vue:405 frontend/src/pages/Lesson.vue:886
|
||||
#: frontend/src/pages/Lesson.vue:897
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
msgstr "Jegyzetek"
|
||||
|
||||
#: frontend/src/pages/Notifications.vue:53
|
||||
msgid "Nothing to see here."
|
||||
@@ -4711,7 +4711,7 @@ msgstr ""
|
||||
#. Label of the organization (Data) field in DocType 'Certification'
|
||||
#: lms/lms/doctype/certification/certification.json
|
||||
msgid "Organization"
|
||||
msgstr ""
|
||||
msgstr "Szervezet"
|
||||
|
||||
#. Label of the original_amount (Currency) field in DocType 'LMS Payment'
|
||||
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:92
|
||||
@@ -4741,7 +4741,7 @@ msgstr "Kimenet"
|
||||
#: frontend/src/components/Settings/BadgeForm.vue:216
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.js:37
|
||||
msgid "Owner"
|
||||
msgstr ""
|
||||
msgstr "Tulajdonos"
|
||||
|
||||
#. Label of the pan (Data) field in DocType 'LMS Payment'
|
||||
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:108
|
||||
@@ -5969,7 +5969,7 @@ msgstr ""
|
||||
|
||||
#: frontend/src/components/Controls/ColorSwatches.vue:13
|
||||
msgid "Set Color"
|
||||
msgstr ""
|
||||
msgstr "Szín Beállítása"
|
||||
|
||||
#: lms/templates/emails/community_course_membership.html:1
|
||||
msgid "Set your Password"
|
||||
|
||||
+213
-167
File diff suppressed because it is too large
Load Diff
+64
-64
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: frappe\n"
|
||||
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
||||
"POT-Creation-Date: 2025-12-19 16:05+0000\n"
|
||||
"PO-Revision-Date: 2025-12-23 23:25\n"
|
||||
"PO-Revision-Date: 2026-01-05 13:42\n"
|
||||
"Last-Translator: jannat@frappe.io\n"
|
||||
"Language-Team: Dutch\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -116,7 +116,7 @@ msgstr ""
|
||||
#: frontend/src/components/Settings/ZoomSettings.vue:192
|
||||
#: lms/lms/doctype/lms_zoom_settings/lms_zoom_settings.json
|
||||
msgid "Account Name"
|
||||
msgstr ""
|
||||
msgstr "Accountnaam"
|
||||
|
||||
#: frontend/src/pages/ProfileAbout.vue:34
|
||||
msgid "Achievements"
|
||||
@@ -296,7 +296,7 @@ msgstr "Beheerder"
|
||||
#. Name of a role
|
||||
#: frontend/src/pages/Batches.vue:319 lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
msgstr "Allemaal"
|
||||
|
||||
#: frontend/src/pages/Batches.vue:68
|
||||
msgid "All Batches"
|
||||
@@ -357,7 +357,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_payment/lms_payment.json
|
||||
msgid "Amount"
|
||||
msgstr ""
|
||||
msgstr "Bedrag"
|
||||
|
||||
#. Label of the amount_usd (Currency) field in DocType 'LMS Batch'
|
||||
#. Label of the amount_usd (Currency) field in DocType 'LMS Course'
|
||||
@@ -936,7 +936,7 @@ msgstr ""
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:62
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:184
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
msgstr "Annuleren"
|
||||
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:178
|
||||
msgid "Cancel this evaluation?"
|
||||
@@ -968,7 +968,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_category/lms_category.json
|
||||
#: lms/lms/doctype/lms_course/lms_course.json lms/templates/signup-form.html:22
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
msgstr "Categorie"
|
||||
|
||||
#: frontend/src/components/Settings/Categories.vue:39
|
||||
msgid "Category Name"
|
||||
@@ -1076,7 +1076,7 @@ msgstr ""
|
||||
|
||||
#: lms/templates/assignment.html:13
|
||||
msgid "Change"
|
||||
msgstr ""
|
||||
msgstr "Verandering"
|
||||
|
||||
#: frontend/src/components/Assignment.vue:351
|
||||
msgid "Changes saved successfully"
|
||||
@@ -1218,7 +1218,7 @@ msgstr ""
|
||||
|
||||
#: frontend/src/components/Settings/Categories.vue:27
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
msgstr "Dichtbij"
|
||||
|
||||
#. Option for the 'Status' (Select) field in DocType 'Job Opportunity'
|
||||
#. Option in a Select field in the job-opportunity Web Form
|
||||
@@ -1249,7 +1249,7 @@ msgstr ""
|
||||
|
||||
#: frontend/src/components/Sidebar/AppSidebar.vue:155
|
||||
msgid "Collapse"
|
||||
msgstr ""
|
||||
msgstr "Ineenstorting"
|
||||
|
||||
#. Label of the college (Data) field in DocType 'User'
|
||||
#: lms/fixtures/custom_field.json
|
||||
@@ -1264,7 +1264,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
|
||||
#: lms/lms/doctype/lms_timetable_legend/lms_timetable_legend.json
|
||||
msgid "Color"
|
||||
msgstr ""
|
||||
msgstr "Kleur"
|
||||
|
||||
#: frontend/src/pages/BatchForm.vue:306 frontend/src/pages/CourseForm.vue:312
|
||||
msgid "Comma separated keywords for SEO"
|
||||
@@ -1277,7 +1277,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
|
||||
msgid "Comments"
|
||||
msgstr ""
|
||||
msgstr "Reacties"
|
||||
|
||||
#: frontend/src/components/Assignment.vue:148
|
||||
msgid "Comments by Evaluator"
|
||||
@@ -1373,7 +1373,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
#: lms/lms/widgets/CourseCard.html:78
|
||||
msgid "Completed"
|
||||
msgstr ""
|
||||
msgstr "Voltooid"
|
||||
|
||||
#. Label of the enable_certification (Check) field in DocType 'LMS Course'
|
||||
#: frontend/src/pages/CourseForm.vue:249
|
||||
@@ -1778,7 +1778,7 @@ msgstr ""
|
||||
#: frontend/src/pages/ProgrammingExercises/ProgrammingExercises.vue:32
|
||||
#: frontend/src/pages/Quizzes.vue:10
|
||||
msgid "Create"
|
||||
msgstr ""
|
||||
msgstr "Creëren"
|
||||
|
||||
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7
|
||||
msgid "Create Certificate"
|
||||
@@ -1791,7 +1791,7 @@ msgstr ""
|
||||
#: frontend/src/components/Controls/Link.vue:38
|
||||
#: frontend/src/components/Controls/MultiSelect.vue:68
|
||||
msgid "Create New"
|
||||
msgstr ""
|
||||
msgstr "Maak nieuw"
|
||||
|
||||
#: frontend/src/pages/Programs/ProgramForm.vue:12
|
||||
msgid "Create Program"
|
||||
@@ -1866,7 +1866,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_payment/lms_payment.json
|
||||
msgid "Currency"
|
||||
msgstr ""
|
||||
msgstr "Valuta"
|
||||
|
||||
#. Label of the current_lesson (Link) field in DocType 'LMS Enrollment'
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
@@ -1929,7 +1929,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/scheduled_flow/scheduled_flow.json
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
msgstr "Datum"
|
||||
|
||||
#: frontend/src/pages/BatchForm.vue:76
|
||||
msgid "Date and Time"
|
||||
@@ -1986,7 +1986,7 @@ msgstr ""
|
||||
#: frontend/src/pages/Programs/ProgramForm.vue:230
|
||||
#: frontend/src/pages/Programs/ProgramForm.vue:567
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
msgstr "Verwijder"
|
||||
|
||||
#: frontend/src/components/CourseOutline.vue:67
|
||||
msgid "Delete Chapter"
|
||||
@@ -2048,7 +2048,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/work_experience/work_experience.json
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
msgstr "Beschrijving"
|
||||
|
||||
#: frontend/src/components/Sidebar/Apps.vue:50
|
||||
msgid "Desk"
|
||||
@@ -2084,7 +2084,7 @@ msgstr ""
|
||||
#: frontend/src/components/Settings/PaymentGateways.vue:55
|
||||
#: frontend/src/components/Settings/ZoomSettings.vue:66
|
||||
msgid "Disabled"
|
||||
msgstr ""
|
||||
msgstr "Uitgeschakeld"
|
||||
|
||||
#: frontend/src/components/DiscussionReplies.vue:57
|
||||
#: lms/lms/widgets/NoPreviewModal.html:25
|
||||
@@ -2134,7 +2134,7 @@ msgstr ""
|
||||
|
||||
#: frontend/src/components/Settings/Coupons/CouponItems.vue:8
|
||||
msgid "Document Type"
|
||||
msgstr ""
|
||||
msgstr "Soort document"
|
||||
|
||||
#: lms/templates/emails/payment_reminder.html:11
|
||||
msgid "Don’t miss this opportunity to enhance your skills. Click below to complete your enrollment"
|
||||
@@ -2157,7 +2157,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/lms_live_class_participant/lms_live_class_participant.json
|
||||
msgid "Duration"
|
||||
msgstr ""
|
||||
msgstr "Looptijd"
|
||||
|
||||
#. Label of the duration (Data) field in DocType 'LMS Quiz'
|
||||
#: frontend/src/pages/QuizForm.vue:67 lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
@@ -2176,7 +2176,7 @@ msgstr ""
|
||||
#: frontend/src/pages/JobDetail.vue:45 frontend/src/pages/Lesson.vue:42
|
||||
#: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:44
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
msgstr "Bewerk"
|
||||
|
||||
#: frontend/src/components/Modals/AssignmentForm.vue:14
|
||||
msgid "Edit Assignment"
|
||||
@@ -2246,7 +2246,7 @@ msgstr ""
|
||||
#: frontend/src/components/Settings/Members.vue:103
|
||||
#: frontend/src/pages/JobApplications.vue:305 lms/templates/signup-form.html:10
|
||||
msgid "Email"
|
||||
msgstr ""
|
||||
msgstr "E-mail"
|
||||
|
||||
#: frontend/src/components/Modals/Event.vue:16
|
||||
msgid "Email ID"
|
||||
@@ -2327,7 +2327,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_coupon/lms_coupon.json
|
||||
#: lms/lms/doctype/lms_zoom_settings/lms_zoom_settings.json
|
||||
msgid "Enabled"
|
||||
msgstr ""
|
||||
msgstr "Ingeschakeld"
|
||||
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:53
|
||||
msgid "Enabling this will publish the certificate on the certified participants page."
|
||||
@@ -2336,7 +2336,7 @@ msgstr ""
|
||||
#. Label of the end_date (Date) field in DocType 'LMS Batch'
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
msgid "End Date"
|
||||
msgstr ""
|
||||
msgstr "Einddatum"
|
||||
|
||||
#. Label of the end_date (Date) field in DocType 'Education Detail'
|
||||
#: lms/lms/doctype/education_detail/education_detail.json
|
||||
@@ -2585,7 +2585,7 @@ msgstr ""
|
||||
|
||||
#: frontend/src/components/Sidebar/AppSidebar.vue:155
|
||||
msgid "Expand"
|
||||
msgstr ""
|
||||
msgstr "Uitbreiden"
|
||||
|
||||
#. Label of the expected_output (Data) field in DocType 'LMS Test Case'
|
||||
#. Label of the expected_output (Data) field in DocType 'LMS Test Case
|
||||
@@ -2654,7 +2654,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_programming_exercise_submission/lms_programming_exercise_submission.json
|
||||
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
|
||||
msgid "Failed"
|
||||
msgstr ""
|
||||
msgstr "Gefaald"
|
||||
|
||||
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:136
|
||||
msgid "Failed to create badge assignment: "
|
||||
@@ -2738,7 +2738,7 @@ msgstr ""
|
||||
#: frontend/src/components/Modals/EditProfile.vue:72
|
||||
#: frontend/src/components/Settings/Members.vue:110
|
||||
msgid "First Name"
|
||||
msgstr ""
|
||||
msgstr "Voornaam"
|
||||
|
||||
#. Option for the 'Time Preference' (Select) field in DocType 'User'
|
||||
#: lms/fixtures/custom_field.json
|
||||
@@ -2798,12 +2798,12 @@ msgstr ""
|
||||
#: frontend/src/pages/ProfileEvaluator.vue:106
|
||||
#: lms/lms/doctype/course_evaluator/course_evaluator.json
|
||||
msgid "From"
|
||||
msgstr ""
|
||||
msgstr "Van"
|
||||
|
||||
#. Label of the from_date (Date) field in DocType 'Work Experience'
|
||||
#: lms/lms/doctype/work_experience/work_experience.json
|
||||
msgid "From Date"
|
||||
msgstr ""
|
||||
msgstr "Van Datum"
|
||||
|
||||
#. Label of the full_name (Data) field in DocType 'Course Evaluator'
|
||||
#. Label of the full_name (Data) field in DocType 'LMS Program Member'
|
||||
@@ -2812,7 +2812,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
#: lms/templates/signup-form.html:5
|
||||
msgid "Full Name"
|
||||
msgstr ""
|
||||
msgstr "Volledige naam"
|
||||
|
||||
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
|
||||
#. Option in a Select field in the job-opportunity Web Form
|
||||
@@ -3047,7 +3047,7 @@ msgstr ""
|
||||
#: frontend/src/components/Modals/PageModal.vue:28
|
||||
#: lms/lms/doctype/lms_sidebar_item/lms_sidebar_item.json
|
||||
msgid "Icon"
|
||||
msgstr ""
|
||||
msgstr "Icoon"
|
||||
|
||||
#. Label of the user_category (Check) field in DocType 'LMS Settings'
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
@@ -3130,7 +3130,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
msgid "In Progress"
|
||||
msgstr ""
|
||||
msgstr "Bezig"
|
||||
|
||||
#. Label of the include_in_preview (Check) field in DocType 'Course Lesson'
|
||||
#: lms/lms/doctype/course_lesson/course_lesson.json
|
||||
@@ -3690,7 +3690,7 @@ msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/EditProfile.vue:76
|
||||
msgid "Last Name"
|
||||
msgstr ""
|
||||
msgstr "Achternaam"
|
||||
|
||||
#. Label of the launch_file (Code) field in DocType 'Course Chapter'
|
||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||
@@ -3834,7 +3834,7 @@ msgstr ""
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:39
|
||||
#: frontend/src/pages/Quizzes.vue:94
|
||||
msgid "Load More"
|
||||
msgstr ""
|
||||
msgstr "Meer laden"
|
||||
|
||||
#. Option for the 'Auto Recording' (Select) field in DocType 'LMS Live Class'
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
@@ -4184,7 +4184,7 @@ msgstr ""
|
||||
#: frontend/src/components/ContactUsEmail.vue:19
|
||||
#: frontend/src/pages/JobApplications.vue:137
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
msgstr "Bericht"
|
||||
|
||||
#: frontend/src/pages/JobApplications.vue:261
|
||||
msgid "Message is required"
|
||||
@@ -4317,7 +4317,7 @@ msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/EmailTemplateModal.vue:24
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
msgstr "Naam"
|
||||
|
||||
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
||||
#: frontend/src/components/Settings/BadgeAssignments.vue:21
|
||||
@@ -4333,7 +4333,7 @@ msgstr ""
|
||||
#: frontend/src/pages/Programs/Programs.vue:10
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "New"
|
||||
msgstr ""
|
||||
msgstr "Nieuw"
|
||||
|
||||
#: frontend/src/pages/Batches.vue:10 lms/www/lms.py:150
|
||||
msgid "New Batch"
|
||||
@@ -4499,7 +4499,7 @@ msgstr ""
|
||||
#: frontend/src/components/Controls/MultiSelect.vue:59
|
||||
#: frontend/src/pages/Search/Search.vue:47
|
||||
msgid "No results found"
|
||||
msgstr ""
|
||||
msgstr "No results found"
|
||||
|
||||
#: frontend/src/components/Modals/EvaluationModal.vue:59
|
||||
msgid "No slots available for the selected course."
|
||||
@@ -4523,7 +4523,7 @@ msgstr ""
|
||||
|
||||
#: lms/lms/user.py:29
|
||||
msgid "Not Allowed"
|
||||
msgstr ""
|
||||
msgstr "Niet Toegestaan"
|
||||
|
||||
#. Option for the 'Status' (Select) field in DocType 'LMS Assignment
|
||||
#. Submission'
|
||||
@@ -4555,17 +4555,17 @@ msgstr ""
|
||||
#: frontend/src/pages/Programs/ProgramForm.vue:16
|
||||
#: frontend/src/pages/QuizForm.vue:8 frontend/src/pages/QuizSubmission.vue:9
|
||||
msgid "Not Saved"
|
||||
msgstr ""
|
||||
msgstr "Niet opgeslagen"
|
||||
|
||||
#. Label of the note (Text Editor) field in DocType 'LMS Lesson Note'
|
||||
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
|
||||
msgid "Note"
|
||||
msgstr ""
|
||||
msgstr "Opmerking"
|
||||
|
||||
#: frontend/src/pages/Lesson.vue:405 frontend/src/pages/Lesson.vue:886
|
||||
#: frontend/src/pages/Lesson.vue:897
|
||||
msgid "Notes"
|
||||
msgstr ""
|
||||
msgstr "Opmerkingen"
|
||||
|
||||
#: frontend/src/pages/Notifications.vue:53
|
||||
msgid "Nothing to see here."
|
||||
@@ -4939,7 +4939,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
|
||||
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
|
||||
msgid "Pending"
|
||||
msgstr ""
|
||||
msgstr "In afwachting van"
|
||||
|
||||
#. Option for the 'Discount Type' (Select) field in DocType 'LMS Coupon'
|
||||
#. Label of the percentage (Int) field in DocType 'LMS Quiz Submission'
|
||||
@@ -5608,13 +5608,13 @@ msgstr ""
|
||||
#. Label of the reference_doctype (Link) field in DocType 'LMS Badge'
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "Reference Document Type"
|
||||
msgstr ""
|
||||
msgstr "Referentie Document Type"
|
||||
|
||||
#. Label of the reference_name (Dynamic Link) field in DocType 'LMS Coupon
|
||||
#. Item'
|
||||
#: lms/lms/doctype/lms_coupon_item/lms_coupon_item.json
|
||||
msgid "Reference Name"
|
||||
msgstr ""
|
||||
msgstr "Referentienaam"
|
||||
|
||||
#: lms/templates/emails/community_course_membership.html:17
|
||||
msgid "Regards"
|
||||
@@ -5707,7 +5707,7 @@ msgstr ""
|
||||
#. Label of the role (Select) field in DocType 'LMS Enrollment'
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
msgstr "Rol"
|
||||
|
||||
#. Label of the role (Select) field in DocType 'User'
|
||||
#: lms/fixtures/custom_field.json
|
||||
@@ -5815,7 +5815,7 @@ msgstr ""
|
||||
#: frontend/src/pages/Quizzes.vue:105
|
||||
#: lms/job/web_form/job_opportunity/job_opportunity.json
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
msgstr "bewaren"
|
||||
|
||||
#. Label of the schedule (Table) field in DocType 'Course Evaluator'
|
||||
#: lms/lms/doctype/course_evaluator/course_evaluator.json
|
||||
@@ -5856,7 +5856,7 @@ msgstr ""
|
||||
#: frontend/src/pages/Jobs.vue:44 frontend/src/pages/Search/Search.vue:5
|
||||
#: frontend/src/pages/Search/Search.vue:228
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
msgstr "Zoek"
|
||||
|
||||
#: frontend/src/components/Modals/CourseProgressSummary.vue:17
|
||||
#: frontend/src/components/Modals/VideoStatistics.vue:20
|
||||
@@ -5939,7 +5939,7 @@ msgstr ""
|
||||
#: frontend/src/components/ContactUsEmail.vue:33
|
||||
#: frontend/src/pages/JobApplications.vue:115
|
||||
msgid "Send"
|
||||
msgstr ""
|
||||
msgstr "Verstuur"
|
||||
|
||||
#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.js:7
|
||||
msgid "Send Confirmation Email"
|
||||
@@ -5990,7 +5990,7 @@ msgstr ""
|
||||
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:19
|
||||
#: frontend/src/pages/QuizForm.vue:86
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
msgstr "instellingen"
|
||||
|
||||
#: frontend/src/pages/ProfileAbout.vue:81
|
||||
msgid "Share on"
|
||||
@@ -6135,7 +6135,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_source/lms_source.json
|
||||
#: lms/lms/doctype/lms_video_watch_duration/lms_video_watch_duration.json
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
msgstr "Bron"
|
||||
|
||||
#. Option for the 'Member Type' (Select) field in DocType 'LMS Enrollment'
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
@@ -6153,7 +6153,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/education_detail/education_detail.json
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
msgid "Start Date"
|
||||
msgstr ""
|
||||
msgstr "Startdatum"
|
||||
|
||||
#: lms/templates/emails/batch_start_reminder.html:13
|
||||
msgid "Start Date:"
|
||||
@@ -6280,7 +6280,7 @@ msgstr ""
|
||||
#: frontend/src/components/Modals/EmailTemplateModal.vue:31
|
||||
#: frontend/src/pages/JobApplications.vue:126
|
||||
msgid "Subject"
|
||||
msgstr ""
|
||||
msgstr "Onderwerp"
|
||||
|
||||
#: frontend/src/components/Modals/AnnouncementModal.vue:94
|
||||
#: frontend/src/pages/JobApplications.vue:258
|
||||
@@ -6660,7 +6660,7 @@ msgstr ""
|
||||
#: frontend/src/components/Quiz.vue:58
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
msgid "Time"
|
||||
msgstr ""
|
||||
msgstr "Tijd"
|
||||
|
||||
#. Label of the time (Select) field in DocType 'User'
|
||||
#: lms/fixtures/custom_field.json
|
||||
@@ -6768,7 +6768,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_timetable_template/lms_timetable_template.json
|
||||
#: lms/lms/doctype/work_experience/work_experience.json
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
msgstr "Titel"
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:172
|
||||
msgid "Title is required"
|
||||
@@ -6778,12 +6778,12 @@ msgstr ""
|
||||
#: frontend/src/pages/ProfileEvaluator.vue:120
|
||||
#: lms/lms/doctype/course_evaluator/course_evaluator.json
|
||||
msgid "To"
|
||||
msgstr ""
|
||||
msgstr "Naar"
|
||||
|
||||
#. Label of the to_date (Date) field in DocType 'Work Experience'
|
||||
#: lms/lms/doctype/work_experience/work_experience.json
|
||||
msgid "To Date"
|
||||
msgstr ""
|
||||
msgstr "Tot Datum"
|
||||
|
||||
#: lms/lms/utils.py:1553
|
||||
msgid "To join this batch, please contact the Administrator."
|
||||
@@ -6795,7 +6795,7 @@ msgstr ""
|
||||
|
||||
#: frontend/src/pages/Billing.vue:54
|
||||
msgid "Total"
|
||||
msgstr ""
|
||||
msgstr "Totaal"
|
||||
|
||||
#. Label of the total_marks (Int) field in DocType 'LMS Quiz'
|
||||
#: frontend/src/pages/QuizForm.vue:73 frontend/src/pages/Quizzes.vue:245
|
||||
@@ -6952,7 +6952,7 @@ msgstr ""
|
||||
#: frontend/src/components/Settings/BrandSettings.vue:24
|
||||
#: frontend/src/components/Settings/SettingDetails.vue:23
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
msgstr "Bijwerken"
|
||||
|
||||
#: lms/templates/emails/community_course_membership.html:11
|
||||
msgid "Update Password"
|
||||
@@ -6961,7 +6961,7 @@ msgstr ""
|
||||
#: frontend/src/components/Controls/Uploader.vue:20
|
||||
#: frontend/src/pages/BatchForm.vue:227 frontend/src/pages/CourseForm.vue:100
|
||||
msgid "Upload"
|
||||
msgstr ""
|
||||
msgstr "Uploaden"
|
||||
|
||||
#: frontend/src/components/Assignment.vue:84
|
||||
msgid "Upload File"
|
||||
@@ -6992,7 +6992,7 @@ msgstr ""
|
||||
#: lms/job/doctype/lms_job_application/lms_job_application.json
|
||||
#: lms/lms/doctype/lms_course_interest/lms_course_interest.json
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
msgstr "Gebruiker"
|
||||
|
||||
#. Label of the user_category (Select) field in DocType 'User'
|
||||
#: lms/fixtures/custom_field.json lms/templates/signup-form.html:17
|
||||
@@ -7033,7 +7033,7 @@ msgstr ""
|
||||
#. Label of a shortcut in the LMS Workspace
|
||||
#: lms/lms/workspace/lms/lms.json
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
msgstr "Gebruikers"
|
||||
|
||||
#. Label of the answer (Small Text) field in DocType 'LMS Quiz Result'
|
||||
#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json
|
||||
@@ -7047,7 +7047,7 @@ msgstr ""
|
||||
#. Label of the value (Rating) field in DocType 'LMS Batch Feedback'
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "Value"
|
||||
msgstr ""
|
||||
msgstr "Waarde"
|
||||
|
||||
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
|
||||
+17
-17
@@ -3,7 +3,7 @@ msgstr ""
|
||||
"Project-Id-Version: frappe\n"
|
||||
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
||||
"POT-Creation-Date: 2025-12-19 16:05+0000\n"
|
||||
"PO-Revision-Date: 2025-12-24 23:25\n"
|
||||
"PO-Revision-Date: 2026-01-04 12:55\n"
|
||||
"Last-Translator: jannat@frappe.io\n"
|
||||
"Language-Team: Russian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -664,7 +664,7 @@ msgstr "Доступность успешно обновлена"
|
||||
|
||||
#: frontend/src/components/Modals/EvaluationModal.vue:26
|
||||
msgid "Available Slots"
|
||||
msgstr ""
|
||||
msgstr "Доступные слоты"
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:43
|
||||
msgid "Average Feedback Received"
|
||||
@@ -2063,7 +2063,7 @@ msgstr "Детали"
|
||||
#. Label of the disable_pwa (Check) field in DocType 'LMS Settings'
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Disable PWA"
|
||||
msgstr ""
|
||||
msgstr "Отключить PWA"
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:174
|
||||
msgid "Disable Self Enrollment"
|
||||
@@ -2887,7 +2887,7 @@ msgstr "Установите приложение на ваш iPhone для уд
|
||||
|
||||
#: frontend/src/components/Modals/EditProfile.vue:84
|
||||
msgid "GitHub ID"
|
||||
msgstr ""
|
||||
msgstr "Github ID"
|
||||
|
||||
#. Label of the github (Data) field in DocType 'User'
|
||||
#: lms/fixtures/custom_field.json
|
||||
@@ -3387,7 +3387,7 @@ msgstr "Присоединился в"
|
||||
#: frontend/src/components/CommandPalette/CommandPalette.vue:132
|
||||
#: frontend/src/components/CommandPalette/CommandPalette.vue:229
|
||||
msgid "Jump to"
|
||||
msgstr ""
|
||||
msgstr "Перейти к"
|
||||
|
||||
#: frontend/src/pages/Home/Streak.vue:18
|
||||
msgid "Keep going,"
|
||||
@@ -4503,7 +4503,7 @@ msgstr "Результаты не найдены"
|
||||
|
||||
#: frontend/src/components/Modals/EvaluationModal.vue:59
|
||||
msgid "No slots available for the selected course."
|
||||
msgstr ""
|
||||
msgstr "На выбранный курс нет свободных мест."
|
||||
|
||||
#: frontend/src/components/Modals/VideoStatistics.vue:86
|
||||
msgid "No statistics available for this video."
|
||||
@@ -4665,7 +4665,7 @@ msgstr "Откройте "
|
||||
#: frontend/src/components/UserAvatar.vue:11 frontend/src/pages/Profile.vue:61
|
||||
#: lms/fixtures/custom_field.json
|
||||
msgid "Open to Opportunities"
|
||||
msgstr ""
|
||||
msgstr "Открыт для новых возможностей"
|
||||
|
||||
#. Label of the option (Data) field in DocType 'LMS Option'
|
||||
#: frontend/src/components/Modals/Question.vue:70
|
||||
@@ -5077,7 +5077,7 @@ msgstr "Пожалуйста, войдите в систему, чтобы за
|
||||
|
||||
#: frontend/src/pages/Batch.vue:158
|
||||
msgid "Please make sure to schedule your evaluation before this date."
|
||||
msgstr ""
|
||||
msgstr "Пожалуйста, запишитесь на обследование до указанной даты."
|
||||
|
||||
#: lms/lms/notification/certificate_request_reminder/certificate_request_reminder.html:7
|
||||
#: lms/templates/emails/certificate_request_notification.html:7
|
||||
@@ -5114,7 +5114,7 @@ msgstr "Пожалуйста, выберите тест"
|
||||
|
||||
#: frontend/src/components/Modals/EvaluationModal.vue:109
|
||||
msgid "Please select a slot for your evaluation."
|
||||
msgstr ""
|
||||
msgstr "Пожалуйста, выберите время для прохождения оценки."
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:192
|
||||
msgid "Please select a time."
|
||||
@@ -5214,7 +5214,7 @@ msgstr "Предпочитаемое местоположение"
|
||||
|
||||
#: frontend/src/pages/Search/Search.vue:41
|
||||
msgid "Press enter to search"
|
||||
msgstr ""
|
||||
msgstr "Нажмите enter для поиска"
|
||||
|
||||
#. Label of the prevent_skipping_videos (Check) field in DocType 'LMS Settings'
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
@@ -5832,7 +5832,7 @@ msgstr "Запланируйте оценку, чтобы получить се
|
||||
|
||||
#: frontend/src/components/Modals/EvaluationModal.vue:5
|
||||
msgid "Schedule your evaluation"
|
||||
msgstr ""
|
||||
msgstr "Запланируйте свою оценку"
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/scheduled_flow/scheduled_flow.json
|
||||
@@ -6048,7 +6048,7 @@ msgstr "Показать онлайн урок"
|
||||
|
||||
#: frontend/src/components/Modals/EditProfile.vue:61
|
||||
msgid "Show recruiters and others that you are open to work."
|
||||
msgstr ""
|
||||
msgstr "Покажите рекрутерам и другим заинтересованным сторонам, что вы открыты для работы."
|
||||
|
||||
#. Label of the shuffle_questions (Check) field in DocType 'LMS Quiz'
|
||||
#: frontend/src/pages/QuizForm.vue:105 lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
@@ -6501,7 +6501,7 @@ msgstr "Оценщик этого курса недоступен от {0} до
|
||||
|
||||
#: frontend/src/pages/Batch.vue:151
|
||||
msgid "The last day to schedule your evaluations is "
|
||||
msgstr ""
|
||||
msgstr "Последний день, когда можно назначить оценки "
|
||||
|
||||
#: lms/lms/utils.py:2083
|
||||
msgid "The lesson does not exist."
|
||||
@@ -6840,7 +6840,7 @@ msgstr "Twitter"
|
||||
#: frontend/src/components/Modals/EditProfile.vue:87
|
||||
#: lms/fixtures/custom_field.json
|
||||
msgid "Twitter ID"
|
||||
msgstr ""
|
||||
msgstr "Twitter ID"
|
||||
|
||||
#. Label of the type (Select) field in DocType 'Job Opportunity'
|
||||
#. Label of a field in the job-opportunity Web Form
|
||||
@@ -7394,7 +7394,7 @@ msgstr "Чтобы назначать значки пользователям,
|
||||
|
||||
#: lms/lms/doctype/lms_course_review/lms_course_review.py:18
|
||||
msgid "You must be enrolled in the course to submit a review"
|
||||
msgstr ""
|
||||
msgstr "Для того чтобы оставить отзыв, вы должны быть зачислены на курс"
|
||||
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.py:47
|
||||
msgid "You need to complete the payment for this course before enrolling."
|
||||
@@ -7620,11 +7620,11 @@ msgstr "Интерактивное обучение"
|
||||
|
||||
#: frontend/src/pages/Search/Search.vue:38
|
||||
msgid "match"
|
||||
msgstr ""
|
||||
msgstr "матч"
|
||||
|
||||
#: frontend/src/pages/Search/Search.vue:38
|
||||
msgid "matches"
|
||||
msgstr ""
|
||||
msgstr "матчи"
|
||||
|
||||
#: frontend/src/pages/Programs/Programs.vue:42
|
||||
#: frontend/src/pages/Programs/StudentPrograms.vue:36
|
||||
|
||||
Reference in New Issue
Block a user