diff --git a/codecov.yml b/codecov.yml new file mode 100644 index 00000000..4f6dfa59 --- /dev/null +++ b/codecov.yml @@ -0,0 +1,2 @@ +ignore: + - "**/test_helper.py" \ No newline at end of file diff --git a/frappe-semgrep-rules b/frappe-semgrep-rules new file mode 160000 index 00000000..239029b7 --- /dev/null +++ b/frappe-semgrep-rules @@ -0,0 +1 @@ +Subproject commit 239029b7ebaf2ec0e83222ca8bc668c8c76668f9 diff --git a/frontend/src/components/Controls/Autocomplete.vue b/frontend/src/components/Controls/Autocomplete.vue index 4da8274e..dee1268f 100644 --- a/frontend/src/components/Controls/Autocomplete.vue +++ b/frontend/src/components/Controls/Autocomplete.vue @@ -99,18 +99,17 @@ name="item-label" v-bind="{ active, selected, option }" > -
-
- {{ option.label }} +
+
+ {{ + option.value == option.label + ? option.description + : option.label + }} +
+
+ {{ option.value }}
-
diff --git a/frontend/src/components/CourseOutline.vue b/frontend/src/components/CourseOutline.vue index ce4a07dc..ba295734 100644 --- a/frontend/src/components/CourseOutline.vue +++ b/frontend/src/components/CourseOutline.vue @@ -112,6 +112,14 @@ v-else-if="lesson.icon === 'icon-quiz'" class="h-4 w-4 stroke-1 mr-2" /> + + + diff --git a/frontend/src/components/NumberChartGraph.vue b/frontend/src/components/NumberChartGraph.vue index 51c771c3..67fdd508 100644 --- a/frontend/src/components/NumberChartGraph.vue +++ b/frontend/src/components/NumberChartGraph.vue @@ -5,7 +5,7 @@
-
+
{{ value }}
diff --git a/frontend/src/components/Settings/SettingFields.vue b/frontend/src/components/Settings/SettingFields.vue index efb9c071..eb622e36 100644 --- a/frontend/src/components/Settings/SettingFields.vue +++ b/frontend/src/components/Settings/SettingFields.vue @@ -65,7 +65,7 @@
diff --git a/frontend/src/pages/Batches.vue b/frontend/src/pages/Batches.vue index b9821622..43cc71de 100644 --- a/frontend/src/pages/Batches.vue +++ b/frontend/src/pages/Batches.vue @@ -155,7 +155,7 @@ const title = ref('') const certification = ref(false) const filters = ref({}) const is_student = computed(() => user.data?.is_student) -const currentTab = ref(is_student.value ? 'All' : 'Upcoming') +const currentTab = ref(is_student.value ? 'all' : 'upcoming') const orderBy = ref('start_date') const readOnlyMode = window.read_only_mode const router = useRouter() @@ -245,7 +245,7 @@ const updateTabFilter = () => { if (!user.data) { return } - if (currentTab.value == 'Enrolled' && is_student.value) { + if (currentTab.value == 'enrolled' && is_student.value) { filters.value['enrolled'] = 1 delete filters.value['start_date'] delete filters.value['published'] @@ -256,20 +256,20 @@ const updateTabFilter = () => { delete filters.value['start_date'] delete filters.value['published'] orderBy.value = 'start_date desc' - if (currentTab.value == 'Upcoming') { + if (currentTab.value == 'upcoming') { filters.value['start_date'] = ['>=', dayjs().format('YYYY-MM-DD')] filters.value['published'] = 1 orderBy.value = 'start_date' - } else if (currentTab.value == 'Archived') { + } else if (currentTab.value == 'archived') { filters.value['start_date'] = ['<=', dayjs().format('YYYY-MM-DD')] - } else if (currentTab.value == 'Unpublished') { + } else if (currentTab.value == 'unpublished') { filters.value['published'] = 0 } } } const updateStudentFilter = () => { - if (!user.data || (is_student.value && currentTab.value != 'Enrolled')) { + if (!user.data || (is_student.value && currentTab.value != 'enrolled')) { filters.value['start_date'] = ['>=', dayjs().format('YYYY-MM-DD')] filters.value['published'] = 1 } @@ -319,6 +319,7 @@ const batchTabs = computed(() => { let tabs = [ { label: __('All'), + value: 'all', }, ] @@ -327,11 +328,11 @@ const batchTabs = computed(() => { user.data?.is_instructor || user.data?.is_evaluator ) { - tabs.push({ label: __('Upcoming') }) - tabs.push({ label: __('Archived') }) - tabs.push({ label: __('Unpublished') }) + tabs.push({ label: __('Upcoming'), value: 'upcoming' }) + tabs.push({ label: __('Archived'), value: 'archived' }) + tabs.push({ label: __('Unpublished'), value: 'unpublished' }) } else if (user.data) { - tabs.push({ label: __('Enrolled') }) + tabs.push({ label: __('Enrolled'), value: 'enrolled' }) } return tabs }) diff --git a/frontend/src/pages/Courses/CourseDashboard.vue b/frontend/src/pages/Courses/CourseDashboard.vue index febc059b..186c29f1 100644 --- a/frontend/src/pages/Courses/CourseDashboard.vue +++ b/frontend/src/pages/Courses/CourseDashboard.vue @@ -22,7 +22,7 @@
-
+
{{ __('Students') }}
@@ -63,50 +63,52 @@ - - - +
+ {{ dayjs(row[column.key]).format('DD MMM YYYY') }} +
+
+ {{ Math.ceil(row[column.key]) }}% +
+
+ {{ row[column.key].toString() }} +
+ + +
-
- {{ - Math.round((row.value / course.data?.enrollments) * 100) - }}% -
+ +
+ {{ + Math.round((row.value / course.data?.enrollments) * 100) + }}% +
+
-
+
+ diff --git a/frontend/src/pages/Home/StudentHome.vue b/frontend/src/pages/Home/StudentHome.vue index 40f66849..1c45e331 100644 --- a/frontend/src/pages/Home/StudentHome.vue +++ b/frontend/src/pages/Home/StudentHome.vue @@ -72,7 +72,7 @@
-
+
{{ diff --git a/frontend/src/utils/index.js b/frontend/src/utils/index.js index e0a69d55..2261349c 100644 --- a/frontend/src/utils/index.js +++ b/frontend/src/utils/index.js @@ -513,7 +513,8 @@ const getSidebarItems = () => { : settings.data?.contact_us_email, condition: () => { return ( - settings?.data?.contact_us_email || + (settings?.data?.contact_us_email && + userResource?.data) || settings?.data?.contact_us_url ) }, diff --git a/lms/hooks.py b/lms/hooks.py index 26f1ce31..2a289ce1 100644 --- a/lms/hooks.py +++ b/lms/hooks.py @@ -3,7 +3,7 @@ import frappe from . import __version__ as app_version app_name = "frappe_lms" -app_title = "Frappe LMS" +app_title = "Learning" app_publisher = "Frappe" app_description = "Frappe LMS App" app_icon_url = "/assets/lms/images/lms-logo.png" diff --git a/lms/lms/api.py b/lms/lms/api.py index d7ac8173..931b23b7 100644 --- a/lms/lms/api.py +++ b/lms/lms/api.py @@ -1654,8 +1654,12 @@ def get_progress_distribution(progressList): "value": len([p for p in progressList if 30 <= p < 60]), }, { - "name": "Advanced (60-100%)", - "value": len([p for p in progressList if 60 <= p <= 100]), + "name": "Advanced (60-99%)", + "value": len([p for p in progressList if 60 <= p < 100]), + }, + { + "name": "Completed (100%)", + "value": len([p for p in progressList if p == 100]), }, ] @@ -2037,7 +2041,7 @@ def delete_programming_exercise(exercise): @frappe.whitelist() -def get_lesson_completion_stats(course): +def get_lesson_completion_stats(course: str): roles = frappe.get_roles() if "Course Creator" not in roles and "Moderator" not in roles: frappe.throw(_("You do not have permission to access lesson completion stats.")) @@ -2048,13 +2052,17 @@ def get_lesson_completion_stats(course): Lesson = frappe.qb.DocType("Course Lesson") rows = ( - frappe.qb.from_(CourseProgress) - .join(LessonReference) - .on(CourseProgress.lesson == LessonReference.lesson) + frappe.qb.from_(LessonReference) .join(ChapterReference) .on(LessonReference.parent == ChapterReference.chapter) .join(Lesson) - .on(CourseProgress.lesson == Lesson.name) + .on(LessonReference.lesson == Lesson.name) + .left_join(CourseProgress) + .on( + (CourseProgress.lesson == LessonReference.lesson) + & (CourseProgress.course == course) + & (CourseProgress.status == "Complete") + ) .select( LessonReference.idx, ChapterReference.idx.as_("chapter_idx"), @@ -2063,10 +2071,132 @@ def get_lesson_completion_stats(course): Lesson.name.as_("lesson_name"), fn.Count(CourseProgress.name).as_("completion_count"), ) - .where((CourseProgress.course == course) & (CourseProgress.status == "Complete")) - .groupby(CourseProgress.lesson) + .where(ChapterReference.parent == course) + .groupby(LessonReference.lesson) .orderby(ChapterReference.idx, LessonReference.idx) .run(as_dict=True) ) return rows + + +@frappe.whitelist() +def get_course_assessment_progress(course: str, member: str): + if not can_modify_course(course): + frappe.throw( + _("You do not have permission to access this course's assessment data."), frappe.PermissionError + ) + + quizzes = get_course_quiz_progress(course, member) + assignments = get_course_assignment_progress(course, member) + programming_exercises = get_course_programming_exercise_progress(course, member) + + return { + "quizzes": quizzes, + "assignments": assignments, + "exercises": programming_exercises, + } + + +def get_course_quiz_progress(course: str, member: str): + quizzes = get_assessment_from_lesson(course, "quiz") + attempts = [] + + for quiz in quizzes: + submissions = frappe.get_all( + "LMS Quiz Submission", + { + "quiz": quiz, + "member": member, + }, + ["name", "score", "percentage", "quiz", "quiz_title"], + order_by="creation desc", + limit=1, + ) + if len(submissions): + attempts.append(submissions[0]) + else: + attempts.append( + { + "quiz": quiz, + "quiz_title": frappe.db.get_value("LMS Quiz", quiz, "title"), + "score": 0, + "percentage": 0, + } + ) + + return attempts + + +def get_course_assignment_progress(course: str, member: str): + assignments = get_assessment_from_lesson(course, "assignment") + submissions = [] + + for assignment in assignments: + assignment_subs = frappe.get_all( + "LMS Assignment Submission", + { + "assignment": assignment, + "member": member, + }, + ["name", "status", "assignment", "assignment_title"], + order_by="creation desc", + limit=1, + ) + if len(assignment_subs): + submissions.append(assignment_subs[0]) + else: + submissions.append( + { + "assignment": assignment, + "assignment_title": frappe.db.get_value("LMS Assignment", assignment, "title"), + "status": "Not Submitted", + } + ) + + return submissions + + +def get_course_programming_exercise_progress(course: str, member: str): + exercises = get_assessment_from_lesson(course, "program") + submissions = [] + + for exercise in exercises: + exercise_subs = frappe.get_all( + "LMS Programming Exercise Submission", + { + "exercise": exercise, + "member": member, + }, + ["name", "status", "exercise", "exercise_title"], + order_by="creation desc", + limit=1, + ) + if len(exercise_subs): + submissions.append(exercise_subs[0]) + else: + submissions.append( + { + "exercise": exercise, + "exercise_title": frappe.db.get_value("LMS Programming Exercise", exercise, "title"), + "status": "Not Attempted", + } + ) + + return submissions + + +def get_assessment_from_lesson(course: str, assessmentType: str): + assessments = [] + lessons = frappe.get_all("Course Lesson", {"course": course}, ["name", "title", "content"]) + + for lesson in lessons: + if lesson.content: + content = json.loads(lesson.content) + for block in content.get("blocks", []): + if block.get("type") == assessmentType: + data_field = "exercise" if assessmentType == "program" else assessmentType + quiz_name = block.get("data", {}).get(data_field) + assessments.append(quiz_name) + + return assessments diff --git a/lms/lms/doctype/course_chapter/test_course_chapter.py b/lms/lms/doctype/course_chapter/test_course_chapter.py index ebeda074..a4c9942a 100644 --- a/lms/lms/doctype/course_chapter/test_course_chapter.py +++ b/lms/lms/doctype/course_chapter/test_course_chapter.py @@ -1,9 +1,39 @@ # Copyright (c) 2021, FOSS United and Contributors # See license.txt -# import frappe -import unittest +import frappe + +from lms.lms.api import delete_chapter +from lms.lms.test_helpers import BaseTestUtils -class TestCourseChapter(unittest.TestCase): - pass +class TestCourseChapter(BaseTestUtils): + def setUp(self): + super().setUp() + self.instructor = self._create_user( + "frappe@example.com", "Frappe", "Admin", ["Moderator", "Course Creator"] + ) + + def tearDown(self): + return super().tearDown() + + def test_chapter_deletion_and_renumbering(self): + course = self._create_course(f"Test Renumbering Course {frappe.generate_hash()[:8]}") + chapters = [] + + for i in range(1, 4): + chapter = self._create_chapter(f"Chapter {i}", course.name) + chapters.append(chapter) + self._create_chapter_reference(course.name, chapter.name, i) + self.assertEqual(self._get_chapter_index(course.name, chapter.name), i) + + delete_chapter(chapters[1].name) + + idx_ch1 = self._get_chapter_index(course.name, chapters[0].name) + idx_ch3 = self._get_chapter_index(course.name, chapters[2].name) + + self.assertEqual(idx_ch1, 1, "Chapter 1 index should remain 1") + self.assertEqual(idx_ch3, 2, "Chapter 3 index should be renumbered to 2 after deleting Chapter 2") + + def _get_chapter_index(self, course, chapter): + return frappe.db.get_value("Chapter Reference", {"parent": course, "chapter": chapter}, "idx") diff --git a/lms/lms/doctype/lms_assignment/lms_assignment.json b/lms/lms/doctype/lms_assignment/lms_assignment.json index 6dfabd71..f9abc409 100644 --- a/lms/lms/doctype/lms_assignment/lms_assignment.json +++ b/lms/lms/doctype/lms_assignment/lms_assignment.json @@ -1,5 +1,6 @@ { "actions": [], + "allow_import": 1, "allow_rename": 1, "autoname": "format: ASG-{#####}", "creation": "2023-05-26 19:41:26.025081", @@ -79,8 +80,13 @@ ], "grid_page_length": 50, "index_web_pages_for_search": 1, - "links": [], - "modified": "2025-12-19 16:30:58.531722", + "links": [ + { + "link_doctype": "LMS Assignment Submission", + "link_fieldname": "assignment" + } + ], + "modified": "2026-02-05 11:37:36.492016", "modified_by": "sayali@frappe.io", "module": "LMS", "name": "LMS Assignment", @@ -104,6 +110,7 @@ "delete": 1, "email": 1, "export": 1, + "import": 1, "print": 1, "read": 1, "report": 1, @@ -124,6 +131,7 @@ "create": 1, "email": 1, "export": 1, + "import": 1, "print": 1, "read": 1, "report": 1, @@ -135,6 +143,7 @@ "create": 1, "email": 1, "export": 1, + "import": 1, "print": 1, "read": 1, "report": 1, diff --git a/lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json b/lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json index c03bbd5c..485cef55 100644 --- a/lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json +++ b/lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json @@ -42,7 +42,8 @@ "fieldname": "assignment", "fieldtype": "Link", "label": "Assignment", - "options": "LMS Assignment" + "options": "LMS Assignment", + "reqd": 1 }, { "fieldname": "member", @@ -150,7 +151,7 @@ "index_web_pages_for_search": 1, "links": [], "make_attachments_public": 1, - "modified": "2025-12-17 14:47:22.944223", + "modified": "2026-02-05 11:38:03.792865", "modified_by": "sayali@frappe.io", "module": "LMS", "name": "LMS Assignment Submission", diff --git a/lms/lms/doctype/lms_badge/lms_badge.json b/lms/lms/doctype/lms_badge/lms_badge.json index 2482804c..633106a0 100644 --- a/lms/lms/doctype/lms_badge/lms_badge.json +++ b/lms/lms/doctype/lms_badge/lms_badge.json @@ -1,5 +1,6 @@ { "actions": [], + "allow_import": 1, "allow_rename": 1, "autoname": "field:title", "creation": "2024-04-30 11:29:53.548647", @@ -99,8 +100,8 @@ "link_fieldname": "badge" } ], - "modified": "2025-07-04 13:02:19.048994", - "modified_by": "Administrator", + "modified": "2026-02-03 10:52:37.122370", + "modified_by": "sayali@frappe.io", "module": "LMS", "name": "LMS Badge", "naming_rule": "By fieldname", @@ -118,13 +119,26 @@ "share": 1, "write": 1 }, + { + "create": 1, + "delete": 1, + "email": 1, + "export": 1, + "import": 1, + "print": 1, + "read": 1, + "report": 1, + "role": "Moderator", + "share": 1, + "write": 1 + }, { "email": 1, "export": 1, "print": 1, "read": 1, "report": 1, - "role": "All", + "role": "LMS Student", "share": 1 } ], diff --git a/lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json b/lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json index a2f05643..179867fb 100644 --- a/lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json +++ b/lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json @@ -1,5 +1,6 @@ { "actions": [], + "allow_import": 1, "allow_rename": 1, "creation": "2025-02-10 11:17:12.462368", "doctype": "DocType", @@ -73,7 +74,7 @@ ], "index_web_pages_for_search": 1, "links": [], - "modified": "2026-01-14 08:53:16.672825", + "modified": "2026-02-03 10:51:28.475356", "modified_by": "sayali@frappe.io", "module": "LMS", "name": "LMS Batch Enrollment", @@ -96,6 +97,7 @@ "delete": 1, "email": 1, "export": 1, + "import": 1, "print": 1, "read": 1, "report": 1, @@ -114,6 +116,7 @@ "delete": 1, "email": 1, "export": 1, + "import": 1, "print": 1, "read": 1, "report": 1, diff --git a/lms/lms/doctype/lms_coupon/lms_coupon.json b/lms/lms/doctype/lms_coupon/lms_coupon.json index 26dcb5a9..5927a6c4 100644 --- a/lms/lms/doctype/lms_coupon/lms_coupon.json +++ b/lms/lms/doctype/lms_coupon/lms_coupon.json @@ -1,5 +1,6 @@ { "actions": [], + "allow_import": 1, "allow_rename": 1, "autoname": "hash", "creation": "2025-10-11 21:39:11.456420", @@ -113,7 +114,7 @@ "grid_page_length": 50, "index_web_pages_for_search": 1, "links": [], - "modified": "2025-10-27 19:52:11.835042", + "modified": "2026-02-03 10:50:23.387175", "modified_by": "sayali@frappe.io", "module": "LMS", "name": "LMS Coupon", @@ -149,6 +150,7 @@ "delete": 1, "email": 1, "export": 1, + "import": 1, "print": 1, "read": 1, "report": 1, @@ -161,6 +163,7 @@ "delete": 1, "email": 1, "export": 1, + "import": 1, "print": 1, "read": 1, "report": 1, @@ -173,6 +176,7 @@ "delete": 1, "email": 1, "export": 1, + "import": 1, "print": 1, "read": 1, "report": 1, diff --git a/lms/lms/doctype/lms_live_class/lms_live_class.json b/lms/lms/doctype/lms_live_class/lms_live_class.json index d71727ed..0aaab5ac 100644 --- a/lms/lms/doctype/lms_live_class/lms_live_class.json +++ b/lms/lms/doctype/lms_live_class/lms_live_class.json @@ -1,5 +1,6 @@ { "actions": [], + "allow_import": 1, "allow_rename": 1, "creation": "2023-03-02 10:59:01.741349", "default_view": "List", @@ -177,7 +178,7 @@ "link_fieldname": "live_class" } ], - "modified": "2026-01-14 08:54:07.684781", + "modified": "2026-02-03 10:54:39.198916", "modified_by": "sayali@frappe.io", "module": "LMS", "name": "LMS Live Class", @@ -200,6 +201,7 @@ "delete": 1, "email": 1, "export": 1, + "import": 1, "print": 1, "read": 1, "report": 1, @@ -221,6 +223,7 @@ "delete": 1, "email": 1, "export": 1, + "import": 1, "print": 1, "read": 1, "report": 1, diff --git a/lms/lms/doctype/lms_payment/lms_payment.json b/lms/lms/doctype/lms_payment/lms_payment.json index 9688c3d4..fc62daa4 100644 --- a/lms/lms/doctype/lms_payment/lms_payment.json +++ b/lms/lms/doctype/lms_payment/lms_payment.json @@ -1,5 +1,6 @@ { "actions": [], + "allow_import": 1, "allow_rename": 1, "creation": "2023-08-24 17:46:52.065763", "default_view": "List", @@ -201,7 +202,7 @@ "link_fieldname": "payment" } ], - "modified": "2025-12-19 17:55:25.968384", + "modified": "2026-02-03 10:54:12.361407", "modified_by": "sayali@frappe.io", "module": "LMS", "name": "LMS Payment", @@ -218,6 +219,19 @@ "role": "System Manager", "share": 1, "write": 1 + }, + { + "create": 1, + "delete": 1, + "email": 1, + "export": 1, + "import": 1, + "print": 1, + "read": 1, + "report": 1, + "role": "Moderator", + "share": 1, + "write": 1 } ], "row_format": "Dynamic", diff --git a/lms/lms/doctype/lms_program/lms_program.json b/lms/lms/doctype/lms_program/lms_program.json index 29ad1551..b3213894 100644 --- a/lms/lms/doctype/lms_program/lms_program.json +++ b/lms/lms/doctype/lms_program/lms_program.json @@ -1,5 +1,6 @@ { "actions": [], + "allow_import": 1, "allow_rename": 1, "autoname": "field:title", "creation": "2024-11-18 12:27:13.283169", @@ -92,7 +93,7 @@ "grid_page_length": 50, "index_web_pages_for_search": 1, "links": [], - "modified": "2025-12-04 12:56:14.249363", + "modified": "2026-02-03 10:51:50.616781", "modified_by": "sayali@frappe.io", "module": "LMS", "name": "LMS Program", @@ -116,6 +117,7 @@ "delete": 1, "email": 1, "export": 1, + "import": 1, "print": 1, "read": 1, "report": 1, @@ -128,6 +130,7 @@ "delete": 1, "email": 1, "export": 1, + "import": 1, "print": 1, "read": 1, "report": 1, diff --git a/lms/lms/doctype/lms_programming_exercise/lms_programming_exercise.json b/lms/lms/doctype/lms_programming_exercise/lms_programming_exercise.json index c2fa9b8d..5a80c1d5 100644 --- a/lms/lms/doctype/lms_programming_exercise/lms_programming_exercise.json +++ b/lms/lms/doctype/lms_programming_exercise/lms_programming_exercise.json @@ -1,5 +1,6 @@ { "actions": [], + "allow_import": 1, "allow_rename": 1, "creation": "2025-06-18 15:02:36.198855", "doctype": "DocType", @@ -33,7 +34,7 @@ "fieldname": "language", "fieldtype": "Select", "label": "Language", - "options": "Python\nJavaScript", + "options": "Python\nJavaScript\nRust\nGo", "reqd": 1 }, { @@ -63,7 +64,7 @@ "link_fieldname": "exercise" } ], - "modified": "2025-06-24 14:42:27.463492", + "modified": "2026-02-03 10:45:23.687185", "modified_by": "sayali@frappe.io", "module": "LMS", "name": "LMS Programming Exercise", @@ -74,6 +75,7 @@ "delete": 1, "email": 1, "export": 1, + "import": 1, "print": 1, "read": 1, "report": 1, @@ -86,6 +88,7 @@ "delete": 1, "email": 1, "export": 1, + "import": 1, "print": 1, "read": 1, "report": 1, @@ -98,6 +101,7 @@ "delete": 1, "email": 1, "export": 1, + "import": 1, "print": 1, "read": 1, "report": 1, @@ -110,6 +114,7 @@ "delete": 1, "email": 1, "export": 1, + "import": 1, "print": 1, "read": 1, "report": 1, diff --git a/lms/lms/doctype/lms_source/lms_source.json b/lms/lms/doctype/lms_source/lms_source.json index ea75d118..f77be20e 100644 --- a/lms/lms/doctype/lms_source/lms_source.json +++ b/lms/lms/doctype/lms_source/lms_source.json @@ -1,5 +1,6 @@ { "actions": [], + "allow_import": 1, "allow_rename": 1, "autoname": "field:source", "creation": "2023-10-26 16:28:53.932278", @@ -21,7 +22,7 @@ "grid_page_length": 50, "index_web_pages_for_search": 1, "links": [], - "modified": "2025-11-10 11:39:57.251861", + "modified": "2026-02-03 10:53:42.654881", "modified_by": "sayali@frappe.io", "module": "LMS", "name": "LMS Source", @@ -45,6 +46,7 @@ "delete": 1, "email": 1, "export": 1, + "import": 1, "print": 1, "read": 1, "report": 1, diff --git a/lms/lms/doctype/lms_zoom_settings/lms_zoom_settings.json b/lms/lms/doctype/lms_zoom_settings/lms_zoom_settings.json index 53dbf8eb..26ca9b0e 100644 --- a/lms/lms/doctype/lms_zoom_settings/lms_zoom_settings.json +++ b/lms/lms/doctype/lms_zoom_settings/lms_zoom_settings.json @@ -1,5 +1,6 @@ { "actions": [], + "allow_import": 1, "allow_rename": 1, "autoname": "field:account_name", "creation": "2025-05-26 13:04:18.285735", @@ -83,7 +84,7 @@ "grid_page_length": 50, "index_web_pages_for_search": 1, "links": [], - "modified": "2025-11-10 11:39:13.146961", + "modified": "2026-02-03 10:50:59.906919", "modified_by": "sayali@frappe.io", "module": "LMS", "name": "LMS Zoom Settings", @@ -107,6 +108,7 @@ "delete": 1, "email": 1, "export": 1, + "import": 1, "print": 1, "read": 1, "report": 1, @@ -120,6 +122,7 @@ "email": 1, "export": 1, "if_owner": 1, + "import": 1, "print": 1, "read": 1, "report": 1, diff --git a/lms/lms/test_api.py b/lms/lms/test_api.py new file mode 100644 index 00000000..28700217 --- /dev/null +++ b/lms/lms/test_api.py @@ -0,0 +1,63 @@ +import frappe + +from lms.lms.api import get_certified_participants, get_course_assessment_progress +from lms.lms.test_helpers import BaseTestUtils + + +class TestLMSAPI(BaseTestUtils): + def setUp(self): + super().setUp() + self._setup_course_flow() + + def test_certified_participants_with_category(self): + filters = {"category": "Utility Course"} + certified_participants = get_certified_participants(filters=filters) + self.assertEqual(len(certified_participants), 1) + self.assertEqual(certified_participants[0].member, self.student1.email) + + filters = {"category": "Nonexistent Category"} + certified_participants_no_match = get_certified_participants(filters=filters) + self.assertEqual(len(certified_participants_no_match), 0) + + def test_certified_participants_with_open_to_work(self): + filters = {"open_to_work": 1} + certified_participants_open_to_work = get_certified_participants(filters=filters) + self.assertEqual(len(certified_participants_open_to_work), 0) + + frappe.db.set_value("User", self.student1.email, "open_to", "Work") + certified_participants_open_to_work = get_certified_participants(filters=filters) + self.assertEqual(len(certified_participants_open_to_work), 1) + frappe.db.set_value("User", self.student1.email, "open_to", "") + + def test_certified_participants_with_open_to_hiring(self): + filters = {"hiring": 1} + certified_participants_hiring = get_certified_participants(filters=filters) + self.assertEqual(len(certified_participants_hiring), 0) + + frappe.db.set_value("User", self.student1.email, "open_to", "Hiring") + certified_participants_hiring = get_certified_participants(filters=filters) + self.assertEqual(len(certified_participants_hiring), 1) + frappe.db.set_value("User", self.student1.email, "open_to", "") + + def test_course_assessment_progress(self): + progress = get_course_assessment_progress(self.course.name, self.student1.name) + progress = frappe._dict(progress) + + self.assertEqual(len(progress.quizzes), 1) + for quiz in progress.quizzes: + self.assertEqual(quiz.quiz, self.quiz.name) + self.assertEqual(quiz.quiz_title, self.quiz.title) + self.assertEqual(quiz.score, 12) + self.assertEqual(quiz.percentage, 80) + + self.assertEqual(len(progress.assignments), 1) + for assignment in progress.assignments: + self.assertEqual(assignment.assignment, self.assignment.name) + self.assertEqual(assignment.assignment_title, self.assignment.title) + self.assertEqual(assignment.status, "Pass") + + self.assertEqual(len(progress.exercises), 1) + for exercise in progress.exercises: + self.assertEqual(exercise.exercise, self.programming_exercise.name) + self.assertEqual(exercise.exercise_title, self.programming_exercise.title) + self.assertEqual(exercise.status, "Passed") diff --git a/lms/lms/test_helpers.py b/lms/lms/test_helpers.py index 6d6e2008..e6a2362a 100644 --- a/lms/lms/test_helpers.py +++ b/lms/lms/test_helpers.py @@ -19,8 +19,8 @@ class BaseTestUtils(UnitTestCase): if frappe.db.exists(item_type, item_name): try: frappe.delete_doc(item_type, item_name, force=True) - except Exception: - pass + except Exception as e: + print(f"Error deleting {item_type} {item_name}: {e}") def _create_user(self, email, first_name, last_name, roles, user_type="Website User"): if frappe.db.exists("User", email): @@ -82,18 +82,21 @@ class BaseTestUtils(UnitTestCase): self.cleanup_items.append(("Course Chapter", chapter.name)) return chapter - def _create_lesson(self, title, chapter, course): + def _create_lesson(self, title, chapter, course, content=None): existing = frappe.db.exists("Course Lesson", {"course": course, "title": title}) if existing: return frappe.get_doc("Course Lesson", existing) + if not content: + content = '{"time":1765194986690,"blocks":[{"id":"dkLzbW14ds","type":"markdown","data":{"text":"This is a simple content for the current lesson."}},{"id":"KBwuWPc8rV","type":"markdown","data":{"text":""}}],"version":"2.29.0"}' + lesson = frappe.new_doc("Course Lesson") lesson.update( { "course": course, "chapter": chapter, "title": title, - "content": '{"time":1765194986690,"blocks":[{"id":"dkLzbW14ds","type":"markdown","data":{"text":"This is a simple content for the current lesson."}},{"id":"KBwuWPc8rV","type":"markdown","data":{"text":""}}],"version":"2.29.0"}', + "content": content, } ) lesson.save() @@ -248,3 +251,289 @@ class BaseTestUtils(UnitTestCase): certificate.save() self.cleanup_items.append(("LMS Certificate", certificate.name)) return certificate + + def _create_quiz_questions(self): + questions = [] + for index in range(1, 4): + question = frappe.new_doc("LMS Question") + question.update( + { + "question": f"Utility Question {index}?", + "type": "Choices", + "option_1": "Option 1", + "is_correct_1": 1, + "option_2": "Option 2", + "is_correct_2": 0, + } + ) + question.save() + self.cleanup_items.append(("LMS Quiz Question", question.name)) + questions.append(question) + return questions + + def _create_quiz(self, title="Utility Quiz"): + existing = frappe.db.exists("LMS Quiz", {"title": title}) + if existing: + return frappe.get_doc("LMS Quiz", existing) + + quiz = frappe.new_doc("LMS Quiz") + quiz.update( + { + "title": title, + "passing_percentage": 70, + "total_marks": 15, + } + ) + + for question in self.questions: + quiz.append( + "questions", + { + "question": question.name, + "marks": 5, + }, + ) + quiz.save() + self.cleanup_items.append(("LMS Quiz", quiz.name)) + return quiz + + def _create_assignment(self, title="Utility Assignment"): + existing = frappe.db.exists("LMS Assignment", {"title": title}) + if existing: + return frappe.get_doc("LMS Assignment", existing) + + assignment = frappe.new_doc("LMS Assignment") + assignment.update( + { + "title": title, + "question": "This is a utility assignment to test the assignment creation helper method.", + "type": "Text", + "grade_assignment": 1, + } + ) + assignment.save() + self.cleanup_items.append(("LMS Assignment", assignment.name)) + return assignment + + def _setup_course_flow(self): + self.student1 = self._create_user("student1@example.com", "Ashley", "Smith", ["LMS Student"]) + self.student2 = self._create_user("student2@example.com", "John", "Doe", ["LMS Student"]) + self.admin = self._create_user( + "frappe@example.com", "Frappe", "Admin", ["Moderator", "Course Creator", "Batch Evaluator"] + ) + self.course = self._create_course() + self._setup_quiz() + self._setup_assignment() + self._setup_programming_exercise() + self._setup_chapters() + + self._create_enrollment(self.student1.email, self.course.name) + self._add_student_progress(self.student1.email, self.course.name) + self._create_enrollment(self.student2.email, self.course.name) + self._add_student_progress(self.student2.email, self.course.name) + + self._add_rating(self.course.name, self.student1.email, 0.8, "Good course") + self._add_rating(self.course.name, self.student2.email, 1, "Excellent course") + + self._create_certificate(self.course.name, self.student1.email) + + def _setup_quiz(self): + self.questions = self._create_quiz_questions() + self.quiz = self._create_quiz() + + def _setup_assignment(self): + self.assignment = self._create_assignment() + + def _setup_programming_exercise(self): + self.programming_exercise = self._create_programming_exercise() + + def _setup_chapters(self): + chapters = [] + for i in range(1, 4): + chapter = self._create_chapter(f"Chapter {i}", self.course.name) + chapters.append(chapter) + self.course.reload() + for chapter in chapters: + if not any(c.chapter == chapter.name for c in self.course.chapters): + self.course.append("chapters", {"chapter": chapter.name}) + self.course.save() + self._setup_lessons() + + def _setup_lessons(self): + for index, chapter_ref in enumerate(self.course.chapters): + chapter_doc = frappe.get_doc("Course Chapter", chapter_ref.chapter) + for j in range(1, 5): + content = None + if j == 2 and index == 2: + content = self._get_quiz_lesson_content() + if j == 3 and index == 2: + content = self._get_assignment_lesson_content() + if j == 4 and index == 2: + content = self._get_exercise_lesson_content() + lesson_title = f"Lesson {j} of {chapter_ref.chapter}" + lesson = self._create_lesson(lesson_title, chapter_ref.chapter, self.course.name, content) + + if not any(l.lesson == lesson.name for l in chapter_doc.lessons): + chapter_doc.append("lessons", {"lesson": lesson.name}) + + chapter_doc.save() + + def _get_quiz_lesson_content(self): + return f"""{{ + "time": 1765194986690, + "blocks": [ + {{ + "id": "dkLzbW14ds", + "type": "quiz", + "data": {{ "quiz": "{self.quiz.name}" }} + }} + ], + "version": "2.29.0" + }}""" + + def _get_assignment_lesson_content(self): + return f"""{{ + "time": 1765194986690, + "blocks": [ + {{ + "id": "dkLzbW14ds", + "type": "assignment", + "data": {{ "assignment": "{self.assignment.name}" }} + }} + ], + "version": "2.29.0" + }}""" + + def _get_exercise_lesson_content(self): + return f"""{{ + "time": 1765194986690, + "blocks": [ + {{ + "id": "dkLzbW14ds", + "type": "program", + "data": {{ "exercise": "{self.programming_exercise.name}" }} + }} + ], + "version": "2.29.0" + }}""" + + def _setup_batch_flow(self): + self.evaluator = self._create_evaluator() + self.batch = self._create_batch(self.course.name) + self._create_batch_enrollment(self.student1.email, self.batch.name) + self._create_batch_enrollment(self.student2.email, self.batch.name) + + def _add_student_progress(self, member, course): + self._create_quiz_submission(member) + self._create_assignment_submission(member) + self._create_programming_exercise_submission(member) + lessons = frappe.db.get_all( + "Course Lesson", {"course": course}, pluck="name", limit=2, order_by="creation desc" + ) + for lesson in lessons: + self._create_lesson_progress(member, course, lesson) + + def _create_lesson_progress(self, member, course, lesson): + existing = frappe.db.exists( + "LMS Course Progress", {"member": member, "course": course, "lesson": lesson} + ) + if existing: + return frappe.get_doc("LMS Course Progress", existing) + + progress = frappe.new_doc("LMS Course Progress") + progress.update({"member": member, "course": course, "lesson": lesson, "status": "Complete"}) + progress.insert() + self.cleanup_items.append(("LMS Course Progress", progress.name)) + return progress + + def _create_quiz_submission(self, member): + existing = frappe.db.exists("LMS Quiz Submission", {"quiz": self.quiz.name, "member": member}) + if existing: + return frappe.get_doc("LMS Quiz Submission", existing) + submission = frappe.new_doc("LMS Quiz Submission") + submission.update( + { + "quiz": self.quiz.name, + "member": member, + "score_out_of": self.quiz.total_marks, + "passing_percentage": self.quiz.passing_percentage, + } + ) + + for question in self.questions: + submission.append( + "result", + { + "question": question.name, + "marks": 4, + "marks_out_of": 5, + }, + ) + + submission.insert() + self.cleanup_items.append(("LMS Quiz Submission", submission.name)) + return submission + + def _create_assignment_submission(self, member): + existing = frappe.db.exists( + "LMS Assignment Submission", {"assignment": self.assignment.name, "member": member} + ) + if existing: + return frappe.get_doc("LMS Assignment Submission", existing) + + submission = frappe.new_doc("LMS Assignment Submission") + submission.update( + { + "assignment": self.assignment.name, + "member": member, + "answer": "This is the submission content for the utility assignment.", + "status": "Pass", + } + ) + + submission.insert() + self.cleanup_items.append(("LMS Assignment Submission", submission.name)) + return submission + + def _create_programming_exercise(self, title="Utility Programming Exercise"): + existing = frappe.db.exists("LMS Programming Exercise", {"title": title}) + if existing: + return frappe.get_doc("LMS Programming Exercise", existing) + + programming_exercise = frappe.new_doc("LMS Programming Exercise") + programming_exercise.update( + { + "title": title, + "language": "Python", + "problem_statement": "Write a function to return the sum of two numbers.", + "test_cases": [ + {"input": "2", "expected_output": "3"}, + {"input": "11", "expected_output": "12"}, + ], + } + ) + programming_exercise.save() + self.cleanup_items.append(("LMS Programming Exercise", programming_exercise.name)) + return programming_exercise + + def _create_programming_exercise_submission(self, member): + existing = frappe.db.exists( + "LMS Programming Exercise Submission", + {"exercise": self.programming_exercise.name, "member": member}, + ) + if existing: + return frappe.get_doc("LMS Programming Exercise Submission", existing) + + submission = frappe.new_doc("LMS Programming Exercise Submission") + submission.update( + { + "exercise": self.programming_exercise.name, + "member": member, + "code": "print(inputs[0] + 1)", + "status": "Passed", + } + ) + + submission.insert() + self.cleanup_items.append(("LMS Programming Exercise Submission", submission.name)) + return submission diff --git a/lms/lms/test_utils.py b/lms/lms/test_utils.py index 0f59e454..827a7216 100644 --- a/lms/lms/test_utils.py +++ b/lms/lms/test_utils.py @@ -2,9 +2,8 @@ # See license.txt import frappe -from frappe.utils import get_time, getdate, to_timedelta +from frappe.utils import getdate, to_timedelta -from lms.lms.api import get_certified_participants from lms.lms.doctype.lms_certificate.lms_certificate import is_certified from lms.lms.test_helpers import BaseTestUtils from lms.lms.utils import ( @@ -33,48 +32,8 @@ class TestLMSUtils(BaseTestUtils): def setUp(self): super().setUp() - self.student1 = self._create_user("student1@example.com", "Ashley", "Smith", ["LMS Student"]) - self.student2 = self._create_user("student2@example.com", "John", "Doe", ["LMS Student"]) - self.admin = self._create_user( - "frappe@example.com", "Frappe", "Admin", ["Moderator", "Course Creator", "Batch Evaluator"] - ) - self.course = self._create_course() - self._setup_chapters_and_lessons() - - self._create_enrollment(self.student1.email, self.course.name) - self._create_enrollment(self.student2.email, self.course.name) - - self._add_rating(self.course.name, self.student1.email, 0.8, "Good course") - self._add_rating(self.course.name, self.student2.email, 1, "Excellent course") - - self._create_certificate(self.course.name, self.student1.email) - - self.evaluator = self._create_evaluator() - self.batch = self._create_batch(self.course.name) - self._create_batch_enrollment(self.student1.email, self.batch.name) - self._create_batch_enrollment(self.student2.email, self.batch.name) - - def _setup_chapters_and_lessons(self): - chapters = [] - for i in range(1, 4): - chapter = self._create_chapter(f"Chapter {i}", self.course.name) - chapters.append(chapter) - - self.course.reload() - for chapter in chapters: - if not any(c.chapter == chapter.name for c in self.course.chapters): - self.course.append("chapters", {"chapter": chapter.name}) - self.course.save() - - for chapter_ref in self.course.chapters: - chapter_doc = frappe.get_doc("Course Chapter", chapter_ref.chapter) - for j in range(1, 3): - lesson_title = f"Lesson {j} of {chapter_ref.chapter}" - lesson = self._create_lesson(lesson_title, chapter_ref.chapter, self.course.name) - - if not any(l.lesson == lesson.name for l in chapter_doc.lessons): - chapter_doc.append("lessons", {"lesson": lesson.name}) - chapter_doc.save() + self._setup_course_flow() + self._setup_batch_flow() def test_simple_slugs(self): self.assertEqual(slugify("hello-world"), "hello-world") @@ -156,36 +115,6 @@ class TestLMSUtils(BaseTestUtils): self.assertIsNone(is_certified(self.course.name)) frappe.session.user = "Administrator" - def test_certified_participants_with_category(self): - filters = {"category": "Utility Course"} - certified_participants = get_certified_participants(filters=filters) - self.assertEqual(len(certified_participants), 1) - self.assertEqual(certified_participants[0].member, self.student1.email) - - filters = {"category": "Nonexistent Category"} - certified_participants_no_match = get_certified_participants(filters=filters) - self.assertEqual(len(certified_participants_no_match), 0) - - def test_certified_participants_with_open_to_work(self): - filters = {"open_to_work": 1} - certified_participants_open_to_work = get_certified_participants(filters=filters) - self.assertEqual(len(certified_participants_open_to_work), 0) - - frappe.db.set_value("User", self.student1.email, "open_to", "Work") - certified_participants_open_to_work = get_certified_participants(filters=filters) - self.assertEqual(len(certified_participants_open_to_work), 1) - frappe.db.set_value("User", self.student1.email, "open_to", "") - - def test_certified_participants_with_open_to_hiring(self): - filters = {"hiring": 1} - certified_participants_hiring = get_certified_participants(filters=filters) - self.assertEqual(len(certified_participants_hiring), 0) - - frappe.db.set_value("User", self.student1.email, "open_to", "Hiring") - certified_participants_hiring = get_certified_participants(filters=filters) - self.assertEqual(len(certified_participants_hiring), 1) - frappe.db.set_value("User", self.student1.email, "open_to", "") - def test_rating_validation(self): student3 = self._create_user("student3@example.com", "Emily", "Cooper", ["LMS Student"]) with self.assertRaises(frappe.exceptions.ValidationError): diff --git a/lms/lms/utils.py b/lms/lms/utils.py index 052efbdc..f9c127c1 100644 --- a/lms/lms/utils.py +++ b/lms/lms/utils.py @@ -205,6 +205,10 @@ def get_lesson_icon(body, content): if block.get("type") == "quiz": return "icon-quiz" + if block.get("type") == "assignment": + return "icon-assignment" + if block.get("type") == "program": + return "icon-code" return "icon-list" @@ -1242,6 +1246,7 @@ def get_assessments(batch): "LMS Assessment", {"parent": batch}, ["name", "assessment_type", "assessment_name"], + order_by="idx", ) for assessment in assessments: diff --git a/lms/locale/ar.po b/lms/locale/ar.po index 0f6e69d1..eec37f0b 100644 --- a/lms/locale/ar.po +++ b/lms/locale/ar.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n" -"POT-Creation-Date: 2026-01-16 16:04+0000\n" -"PO-Revision-Date: 2026-01-21 20:16\n" +"POT-Creation-Date: 2026-01-23 16:05+0000\n" +"PO-Revision-Date: 2026-02-05 06:43\n" "Last-Translator: jannat@frappe.io\n" "Language-Team: Arabic\n" "MIME-Version: 1.0\n" @@ -319,7 +319,7 @@ msgid "Administrator" msgstr "مدير" #. Name of a role -#: frontend/src/pages/Batches.vue:319 lms/lms/doctype/lms_badge/lms_badge.json +#: frontend/src/pages/Batches.vue:321 lms/lms/doctype/lms_badge/lms_badge.json msgid "All" msgstr "الكل" @@ -486,7 +486,7 @@ msgstr "" msgid "Apps" msgstr "التطبيقات" -#: frontend/src/pages/Batches.vue:329 +#: frontend/src/pages/Batches.vue:331 msgid "Archived" msgstr "أرشفة" @@ -753,7 +753,7 @@ msgstr "" #. Label of the batch_name (Link) field in DocType 'LMS Certificate' #. Label of the batch_name (Link) field in DocType 'LMS Certificate Request' #. Label of the batch_name (Link) field in DocType 'LMS Live Class' -#: frontend/src/components/Modals/Event.vue:32 +#: frontend/src/components/Modals/Event.vue:35 #: frontend/src/components/Settings/BadgeForm.vue:195 #: frontend/src/components/Settings/Badges.vue:200 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125 @@ -878,7 +878,7 @@ msgid "Batch:" msgstr "الدفعات:" #. Label of the batches (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/Batches.vue:350 frontend/src/pages/Batches.vue:357 +#: frontend/src/pages/Batches.vue:352 frontend/src/pages/Batches.vue:359 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121 msgid "Batches" msgstr "" @@ -1023,7 +1023,7 @@ msgstr "" msgid "Certificate of Completion" msgstr "" -#: frontend/src/components/Modals/Event.vue:347 +#: frontend/src/components/Modals/Event.vue:353 msgid "Certificate saved successfully" msgstr "" @@ -1043,7 +1043,7 @@ msgstr "" #. Label of a chart in the LMS Workspace #. Label of a Card Break in the LMS Workspace #. Label of a Link in the LMS Workspace -#: frontend/src/components/Modals/Event.vue:411 +#: frontend/src/components/Modals/Event.vue:427 #: frontend/src/components/Sidebar/AppSidebar.vue:550 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100 #: frontend/src/pages/CourseCertification.vue:10 @@ -1195,7 +1195,7 @@ msgstr "" #: frontend/src/components/Controls/IconPicker.vue:27 msgid "Choose an icon" -msgstr "" +msgstr "اختر رمزًا" #: frontend/src/components/Quiz.vue:655 msgid "Choose one answer" @@ -1771,7 +1771,7 @@ msgstr "" #: frontend/src/components/Modals/BatchStudentProgress.vue:95 #: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/CourseCertification.vue:127 -#: frontend/src/pages/Courses.vue:365 frontend/src/pages/Courses.vue:372 +#: frontend/src/pages/Courses.vue:364 frontend/src/pages/Courses.vue:371 #: frontend/src/pages/Programs/ProgramForm.vue:49 #: frontend/src/pages/Programs/Programs.vue:35 #: lms/lms/doctype/lms_batch/lms_batch.json @@ -1878,7 +1878,7 @@ msgstr "" msgid "Create your first quiz" msgstr "" -#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:355 +#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:354 msgid "Created" msgstr "أنشأ" @@ -1954,7 +1954,7 @@ msgstr "استيراد البيانات" #. Label of the date (Date) field in DocType 'LMS Certificate Request' #. Label of the date (Date) field in DocType 'LMS Live Class' #. Label of the date (Date) field in DocType 'Scheduled Flow' -#: frontend/src/components/Modals/Event.vue:40 +#: frontend/src/components/Modals/Event.vue:46 #: frontend/src/components/Modals/LiveClassModal.vue:29 #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json @@ -2241,7 +2241,7 @@ msgstr "" msgid "Edit Email Template" msgstr "" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:13 msgid "Edit Payment Gateway" msgstr "" @@ -2424,7 +2424,7 @@ msgstr "" msgid "Enroll Now" msgstr "" -#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:358 +#: frontend/src/pages/Batches.vue:334 frontend/src/pages/Courses.vue:357 #: frontend/src/pages/Programs/StudentPrograms.vue:96 msgid "Enrolled" msgstr "" @@ -2526,7 +2526,7 @@ msgstr "" #. Label of a Link in the LMS Workspace #. Label of a shortcut in the LMS Workspace -#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json +#: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json msgid "Evaluation" msgstr "تقييم" @@ -2551,7 +2551,7 @@ msgstr "" msgid "Evaluation end date cannot be less than the batch end date." msgstr "" -#: frontend/src/components/Modals/Event.vue:286 +#: frontend/src/components/Modals/Event.vue:292 msgid "Evaluation saved successfully" msgstr "" @@ -2660,11 +2660,11 @@ msgstr "" #: frontend/src/components/Settings/Coupons/CouponList.vue:176 #: lms/lms/doctype/lms_coupon/lms_coupon.json msgid "Expires On" -msgstr "" +msgstr "تاريخ الانتهاء" #. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:33 -#: frontend/src/components/Modals/Event.vue:144 +#: frontend/src/components/Modals/Event.vue:150 #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Expiry Date" msgstr "تاريخ انتهاء الصلاحية" @@ -2695,7 +2695,7 @@ msgstr "" #. Submission' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:396 +#: frontend/src/components/Modals/Event.vue:412 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Fail" @@ -2960,7 +2960,7 @@ msgstr "" #. Request' #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json msgid "Google Meet Link" -msgstr "" +msgstr "رابط جوجل ميت" #. Label of the grade (Data) field in DocType 'Education Detail' #: frontend/src/components/Assignment.vue:164 @@ -2995,7 +2995,7 @@ msgstr "" #. Option for the 'Color' (Select) field in DocType 'LMS Course' #: lms/lms/doctype/lms_course/lms_course.json msgid "Gray" -msgstr "" +msgstr "رمادي" #. Option for the 'Color' (Select) field in DocType 'LMS Course' #. Option for the 'Color' (Select) field in DocType 'LMS Lesson Note' @@ -3067,7 +3067,7 @@ msgstr "أهلا{0}," #: lms/templates/emails/lms_invite_request_approved.html:3 msgid "Hi," -msgstr "" +msgstr "أهلاً،" #. Label of the hide_private (Check) field in DocType 'User' #: lms/fixtures/custom_field.json @@ -3076,7 +3076,7 @@ msgstr "" #: frontend/src/components/Notes/InlineLessonMenu.vue:12 msgid "Highlight" -msgstr "" +msgstr "أبرز النقاط" #. Label of the highlighted_text (Small Text) field in DocType 'LMS Lesson #. Note' @@ -3192,7 +3192,7 @@ msgstr "" #: lms/lms/doctype/lms_quiz/lms_quiz.py:231 msgid "Image: Corrupted Data Stream" -msgstr "" +msgstr "صورة: تدفق بيانات تالف" #: frontend/src/components/Sidebar/Configuration.vue:17 msgid "Import" @@ -3209,7 +3209,7 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' #. Option for the 'Status' (Select) field in DocType 'LMS Course' -#: frontend/src/components/Modals/Event.vue:388 +#: frontend/src/components/Modals/Event.vue:404 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_course/lms_course.json msgid "In Progress" @@ -3353,7 +3353,7 @@ msgstr "" #. Label of the issue_date (Date) field in DocType 'Certification' #. Label of the issue_date (Date) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:28 -#: frontend/src/components/Modals/Event.vue:138 +#: frontend/src/components/Modals/Event.vue:144 #: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Issue Date" @@ -3385,7 +3385,7 @@ msgstr "" #: lms/templates/signup-form.html:6 msgid "Jane Doe" -msgstr "" +msgstr "جين دو" #. Option for the 'Language' (Select) field in DocType 'LMS Programming #. Exercise' @@ -3456,7 +3456,7 @@ msgstr "انضم" msgid "Join Call" msgstr "" -#: frontend/src/components/Modals/Event.vue:78 +#: frontend/src/components/Modals/Event.vue:84 msgid "Join Meeting" msgstr "" @@ -3896,7 +3896,7 @@ msgstr "" msgid "LinkedIn ID" msgstr "" -#: frontend/src/pages/Courses.vue:341 +#: frontend/src/pages/Courses.vue:340 msgid "Live" msgstr "" @@ -4242,7 +4242,7 @@ msgstr "" #: frontend/src/pages/Programs/ProgramForm.vue:110 msgid "Members" -msgstr "" +msgstr "أعضاء" #. Label of the mentor (Link) field in DocType 'LMS Course Mentor Mapping' #. Option for the 'Member Type' (Select) field in DocType 'LMS Enrollment' @@ -4429,7 +4429,7 @@ msgstr "اسم" #: frontend/src/components/Settings/Members.vue:17 #: frontend/src/components/Settings/PaymentGateways.vue:16 #: frontend/src/components/Settings/ZoomSettings.vue:17 -#: frontend/src/pages/Courses.vue:344 +#: frontend/src/pages/Courses.vue:343 #: frontend/src/pages/Programs/Programs.vue:10 #: lms/lms/doctype/lms_badge/lms_badge.json msgid "New" @@ -4461,7 +4461,7 @@ msgstr "" msgid "New Job Applicant" msgstr "" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:12 msgid "New Payment Gateway" msgstr "" @@ -4616,7 +4616,7 @@ msgstr "" #: frontend/src/components/EmptyState.vue:5 lms/templates/course_list.html:13 msgid "No {0}" -msgstr "" +msgstr "لا {0}" #: lms/lms/user.py:29 msgid "Not Allowed" @@ -4778,14 +4778,9 @@ msgstr "" #: frontend/src/components/UserAvatar.vue:11 #: frontend/src/pages/CertifiedParticipants.vue:46 #: frontend/src/pages/Profile.vue:69 -msgid "Open to Opportunities" +msgid "Open to Work" msgstr "" -#. Option for the 'Open to' (Select) field in DocType 'User' -#: lms/fixtures/custom_field.json -msgid "Opportunities" -msgstr "الفرص" - #. Label of the option (Data) field in DocType 'LMS Option' #: frontend/src/components/Modals/Question.vue:70 #: lms/lms/doctype/lms_option/lms_option.json @@ -4819,7 +4814,7 @@ msgstr "خيارات" #. Option for the 'Color' (Select) field in DocType 'LMS Course' #: lms/lms/doctype/lms_course/lms_course.json msgid "Orange" -msgstr "" +msgstr "البرتقالي" #. Label of the order_id (Data) field in DocType 'LMS Payment' #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:114 @@ -4924,7 +4919,7 @@ msgstr "" #. Submission' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:392 +#: frontend/src/components/Modals/Event.vue:408 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Pass" @@ -5054,7 +5049,7 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' #. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' -#: frontend/src/components/Modals/Event.vue:384 +#: frontend/src/components/Modals/Event.vue:400 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json msgid "Pending" @@ -5194,7 +5189,7 @@ msgstr "" msgid "Please login to continue with payment." msgstr "" -#: lms/lms/utils.py:2081 +#: lms/lms/utils.py:2082 msgid "Please login to enroll in the program." msgstr "" @@ -5496,7 +5491,7 @@ msgstr "تقدم" #: frontend/src/pages/Programs/ProgramProgressSummary.vue:131 #: lms/lms/report/course_progress_summary/course_progress_summary.py:77 msgid "Progress (%)" -msgstr "" +msgstr "تقدم (٪)" #: frontend/src/components/Modals/CourseProgressSummary.vue:113 #: frontend/src/pages/Programs/ProgramProgressSummary.vue:30 @@ -5525,7 +5520,7 @@ msgstr "" #. Label of the published (Check) field in DocType 'LMS Course' #. Label of the published (Check) field in DocType 'LMS Program' #: frontend/src/components/Modals/BulkCertificates.vue:51 -#: frontend/src/components/Modals/Event.vue:122 +#: frontend/src/components/Modals/Event.vue:128 #: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105 #: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/StudentPrograms.vue:100 @@ -5557,13 +5552,13 @@ msgstr "" #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json msgid "Purple" -msgstr "" +msgstr "أرجواني" #. Option for the 'Language' (Select) field in DocType 'LMS Programming #. Exercise' #: lms/lms/doctype/lms_programming_exercise/lms_programming_exercise.json msgid "Python" -msgstr "" +msgstr "بايثون" #. Label of the question (Small Text) field in DocType 'Course Lesson' #. Label of the question (Text Editor) field in DocType 'LMS Assignment' @@ -5693,7 +5688,7 @@ msgstr "" #. Label of the rating (Data) field in DocType 'LMS Course' #. Label of the rating (Rating) field in DocType 'LMS Course Review' #: frontend/src/components/CourseCardOverlay.vue:147 -#: frontend/src/components/Modals/Event.vue:92 +#: frontend/src/components/Modals/Event.vue:98 #: frontend/src/components/Modals/ReviewModal.vue:18 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_course/lms_course.json @@ -5929,14 +5924,14 @@ msgstr "السبت" #: frontend/src/components/Modals/AssignmentForm.vue:65 #: frontend/src/components/Modals/EditProfile.vue:121 #: frontend/src/components/Modals/EmailTemplateModal.vue:12 -#: frontend/src/components/Modals/Event.vue:115 -#: frontend/src/components/Modals/Event.vue:151 +#: frontend/src/components/Modals/Event.vue:121 +#: frontend/src/components/Modals/Event.vue:157 #: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeForm.vue:78 #: frontend/src/components/Settings/Coupons/CouponDetails.vue:78 -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:41 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:129 #: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17 #: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14 @@ -6048,7 +6043,7 @@ msgstr "" msgid "Select Date" msgstr "" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:26 msgid "Select Payment Gateway" msgstr "" @@ -6351,7 +6346,7 @@ msgstr "الولاية / المقاطعة" #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:203 msgid "Statistics" -msgstr "" +msgstr "إحصائيات" #. Label of the status (Select) field in DocType 'Job Opportunity' #. Label of a field in the job-opportunity Web Form @@ -6364,7 +6359,7 @@ msgstr "" #. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Submission' #. Label of the status (Select) field in DocType 'LMS Test Case Submission' -#: frontend/src/components/Modals/Event.vue:99 +#: frontend/src/components/Modals/Event.vue:105 #: frontend/src/components/Settings/Badges.vue:228 #: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/pages/AssignmentSubmissionList.vue:19 @@ -6475,7 +6470,7 @@ msgstr "" #. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:106 +#: frontend/src/components/Modals/Event.vue:112 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Summary" msgstr "ملخص" @@ -6571,7 +6566,7 @@ msgstr "" #. Label of the template (Link) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:43 -#: frontend/src/components/Modals/Event.vue:127 +#: frontend/src/components/Modals/Event.vue:133 #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Template" msgstr "قالب" @@ -6620,7 +6615,7 @@ msgstr "" msgid "Thanks and Regards" msgstr "" -#: lms/lms/utils.py:2247 +#: lms/lms/utils.py:2248 msgid "The batch does not exist." msgstr "" @@ -6628,7 +6623,7 @@ msgstr "" msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session." msgstr "" -#: lms/lms/utils.py:1747 +#: lms/lms/utils.py:1748 msgid "The coupon code '{0}' is invalid." msgstr "" @@ -6652,7 +6647,7 @@ msgstr "" msgid "The last day to schedule your evaluations is " msgstr "" -#: lms/lms/utils.py:2231 +#: lms/lms/utils.py:2232 msgid "The lesson does not exist." msgstr "" @@ -6660,7 +6655,7 @@ msgstr "" msgid "The slot is already booked by another participant." msgstr "" -#: lms/lms/utils.py:1361 lms/lms/utils.py:1477 lms/lms/utils.py:1944 +#: lms/lms/utils.py:1362 lms/lms/utils.py:1478 lms/lms/utils.py:1945 msgid "The specified batch does not exist." msgstr "" @@ -6726,15 +6721,15 @@ msgstr "" msgid "This class has ended" msgstr "" -#: lms/lms/utils.py:1776 +#: lms/lms/utils.py:1777 msgid "This coupon has expired." msgstr "" -#: lms/lms/utils.py:1779 +#: lms/lms/utils.py:1780 msgid "This coupon has reached its maximum usage limit." msgstr "" -#: lms/lms/utils.py:1788 +#: lms/lms/utils.py:1789 msgid "This coupon is not applicable to this {0}." msgstr "" @@ -6742,7 +6737,7 @@ msgstr "" msgid "This course has:" msgstr "" -#: lms/lms/utils.py:1707 +#: lms/lms/utils.py:1708 msgid "This course is free." msgstr "" @@ -6799,7 +6794,7 @@ msgid "Thursday" msgstr "الخميس" #. Label of the time (Time) field in DocType 'LMS Live Class' -#: frontend/src/components/Modals/Event.vue:48 +#: frontend/src/components/Modals/Event.vue:54 #: frontend/src/components/Modals/LiveClassModal.vue:52 #: frontend/src/components/Quiz.vue:58 #: lms/lms/doctype/lms_live_class/lms_live_class.json @@ -6934,7 +6929,7 @@ msgstr "إلى" msgid "To Date" msgstr "إلى تاريخ" -#: lms/lms/utils.py:1721 +#: lms/lms/utils.py:1722 msgid "To join this batch, please contact the Administrator." msgstr "" @@ -7035,7 +7030,7 @@ msgstr "رابط الانترنت" #. Label of the uuid (Data) field in DocType 'LMS Live Class' #: lms/lms/doctype/lms_live_class/lms_live_class.json msgid "UUID" -msgstr "" +msgstr "UUID" #. Label of the unavailability_section (Section Break) field in DocType 'Course #. Evaluator' @@ -7056,7 +7051,7 @@ msgstr "" msgid "Under Review" msgstr "" -#: frontend/src/pages/Batches.vue:330 frontend/src/pages/Courses.vue:356 +#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:355 msgid "Unpublished" msgstr "" @@ -7077,8 +7072,8 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Label of the upcoming (Check) field in DocType 'LMS Course' -#: frontend/src/pages/Batches.vue:328 frontend/src/pages/CourseForm.vue:117 -#: frontend/src/pages/Courses.vue:347 +#: frontend/src/pages/Batches.vue:330 frontend/src/pages/CourseForm.vue:117 +#: frontend/src/pages/Courses.vue:346 #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_course/lms_course.json msgid "Upcoming" @@ -7105,7 +7100,7 @@ msgstr "تحديث" #: lms/templates/emails/community_course_membership.html:11 msgid "Update Password" -msgstr "" +msgstr "تحديث كلمة المرور" #: frontend/src/pages/ProgrammingExercises/ProgrammingExercises.vue:281 msgid "Updated On" @@ -7136,7 +7131,7 @@ msgstr "" #: frontend/src/components/Modals/EmailTemplateModal.vue:38 msgid "Use HTML" -msgstr "" +msgstr "استخدم لغة HTML" #. Label of the user (Link) field in DocType 'LMS Job Application' #. Label of the user (Link) field in DocType 'LMS Course Interest' @@ -7194,7 +7189,7 @@ msgstr "" #: lms/templates/signup-form.html:83 msgid "Valid email and name required" -msgstr "" +msgstr "يلزم تقديم بريد إلكتروني واسم صحيحين" #. Label of the value (Rating) field in DocType 'LMS Batch Feedback' #: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json @@ -7220,7 +7215,7 @@ msgid "View Applications" msgstr "" #: frontend/src/components/CertificationLinks.vue:10 -#: frontend/src/components/Modals/Event.vue:67 +#: frontend/src/components/Modals/Event.vue:73 msgid "View Certificate" msgstr "" @@ -7327,6 +7322,11 @@ msgstr "" msgid "Withdrawn" msgstr "" +#. Option for the 'Open to' (Select) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Work" +msgstr "" + #. Label of the work_environment (Section Break) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Work Environment" @@ -7364,7 +7364,7 @@ msgstr "" #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json msgid "Yellow" -msgstr "" +msgstr "أصفر" #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:97 msgid "You already have an evaluation on {0} at {1} for the course {2}." @@ -7401,7 +7401,7 @@ msgstr "لا يسمح لك بالوصول إلى هذه الصفحة." #: lms/templates/emails/lms_course_interest.html:13 #: lms/templates/emails/lms_invite_request_approved.html:11 msgid "You can also copy-paste following link in your browser" -msgstr "" +msgstr "يمكنك أيضًا نسخ الرابط التالي ولصقه في متصفحك" #: frontend/src/components/Quiz.vue:37 msgid "You can attempt this quiz {0}." @@ -7427,7 +7427,7 @@ msgstr "" msgid "You cannot enroll in an unpublished course." msgstr "" -#: lms/lms/utils.py:2085 +#: lms/lms/utils.py:2086 msgid "You cannot enroll in an unpublished program." msgstr "" @@ -7443,11 +7443,11 @@ msgstr "" msgid "You cannot schedule evaluations for past slots." msgstr "" -#: lms/lms/utils.py:2259 +#: lms/lms/utils.py:2260 msgid "You do not have access to this batch." msgstr "" -#: lms/lms/utils.py:2242 +#: lms/lms/utils.py:2243 msgid "You do not have access to this course." msgstr "" @@ -7752,7 +7752,7 @@ msgstr "" #: lms/templates/signup-form.html:12 msgid "jane@example.com" -msgstr "" +msgstr "jane@example.com" #: frontend/src/pages/Programs/ProgramEnrollment.vue:65 msgid "lessons" @@ -7815,15 +7815,15 @@ msgstr "" #: frontend/src/components/CommandPalette/CommandPalette.vue:59 msgid "to close" -msgstr "" +msgstr "للإغلاق" #: frontend/src/components/CommandPalette/CommandPalette.vue:45 msgid "to navigate" -msgstr "" +msgstr "للتنقل" #: frontend/src/components/CommandPalette/CommandPalette.vue:53 msgid "to select" -msgstr "" +msgstr "للاختيار" #: frontend/src/components/BatchFeedback.vue:12 msgid "to view your feedback." diff --git a/lms/locale/bs.po b/lms/locale/bs.po index 024ae20b..65360310 100644 --- a/lms/locale/bs.po +++ b/lms/locale/bs.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n" -"POT-Creation-Date: 2026-01-16 16:04+0000\n" -"PO-Revision-Date: 2026-01-21 20:16\n" +"POT-Creation-Date: 2026-01-23 16:05+0000\n" +"PO-Revision-Date: 2026-02-05 06:43\n" "Last-Translator: jannat@frappe.io\n" "Language-Team: Bosnian\n" "MIME-Version: 1.0\n" @@ -190,7 +190,7 @@ msgstr "Dodaj kviz u video" #: frontend/src/components/Controls/ChildTable.vue:77 #: frontend/src/components/Settings/Coupons/CouponItems.vue:55 msgid "Add Row" -msgstr "Dodaj Red" +msgstr "Dodaj red" #: frontend/src/pages/ProfileEvaluator.vue:96 msgid "Add Slot" @@ -319,7 +319,7 @@ msgid "Administrator" msgstr "Administrator" #. Name of a role -#: frontend/src/pages/Batches.vue:319 lms/lms/doctype/lms_badge/lms_badge.json +#: frontend/src/pages/Batches.vue:321 lms/lms/doctype/lms_badge/lms_badge.json msgid "All" msgstr "Svi" @@ -486,7 +486,7 @@ msgstr "Odobreno" msgid "Apps" msgstr "Aplikacije" -#: frontend/src/pages/Batches.vue:329 +#: frontend/src/pages/Batches.vue:331 msgid "Archived" msgstr "Arhivirano" @@ -753,7 +753,7 @@ msgstr "Značka {0} je već dodijeljena ovom {1}." #. Label of the batch_name (Link) field in DocType 'LMS Certificate' #. Label of the batch_name (Link) field in DocType 'LMS Certificate Request' #. Label of the batch_name (Link) field in DocType 'LMS Live Class' -#: frontend/src/components/Modals/Event.vue:32 +#: frontend/src/components/Modals/Event.vue:35 #: frontend/src/components/Settings/BadgeForm.vue:195 #: frontend/src/components/Settings/Badges.vue:200 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125 @@ -878,7 +878,7 @@ msgid "Batch:" msgstr "Grupa:" #. Label of the batches (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/Batches.vue:350 frontend/src/pages/Batches.vue:357 +#: frontend/src/pages/Batches.vue:352 frontend/src/pages/Batches.vue:359 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121 msgid "Batches" msgstr "Grupe" @@ -1023,7 +1023,7 @@ msgstr "Veza Certifikata" msgid "Certificate of Completion" msgstr "Certifikat o Završetku" -#: frontend/src/components/Modals/Event.vue:347 +#: frontend/src/components/Modals/Event.vue:353 msgid "Certificate saved successfully" msgstr "Certifikat je uspješno spremljen" @@ -1043,7 +1043,7 @@ msgstr "Certifikati su uspješno generirani" #. Label of a chart in the LMS Workspace #. Label of a Card Break in the LMS Workspace #. Label of a Link in the LMS Workspace -#: frontend/src/components/Modals/Event.vue:411 +#: frontend/src/components/Modals/Event.vue:427 #: frontend/src/components/Sidebar/AppSidebar.vue:550 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100 #: frontend/src/pages/CourseCertification.vue:10 @@ -1771,7 +1771,7 @@ msgstr "Kurs {0} je već dodan u ovaj program." #: frontend/src/components/Modals/BatchStudentProgress.vue:95 #: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/CourseCertification.vue:127 -#: frontend/src/pages/Courses.vue:365 frontend/src/pages/Courses.vue:372 +#: frontend/src/pages/Courses.vue:364 frontend/src/pages/Courses.vue:371 #: frontend/src/pages/Programs/ProgramForm.vue:49 #: frontend/src/pages/Programs/Programs.vue:35 #: lms/lms/doctype/lms_batch/lms_batch.json @@ -1878,7 +1878,7 @@ msgstr "Kreiraj vaš prvi kurs" msgid "Create your first quiz" msgstr "Kreiraj vašj prvi kviz" -#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:355 +#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:354 msgid "Created" msgstr "Kreirano" @@ -1954,7 +1954,7 @@ msgstr "Uvoz Podataka" #. Label of the date (Date) field in DocType 'LMS Certificate Request' #. Label of the date (Date) field in DocType 'LMS Live Class' #. Label of the date (Date) field in DocType 'Scheduled Flow' -#: frontend/src/components/Modals/Event.vue:40 +#: frontend/src/components/Modals/Event.vue:46 #: frontend/src/components/Modals/LiveClassModal.vue:29 #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json @@ -2241,7 +2241,7 @@ msgstr "Uredi Kupon" msgid "Edit Email Template" msgstr "Uredi šablon e-pošte" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:13 msgid "Edit Payment Gateway" msgstr "Uredi Platni Portal" @@ -2424,7 +2424,7 @@ msgstr "Upis Člana u Program" msgid "Enroll Now" msgstr "Upišite se sada" -#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:358 +#: frontend/src/pages/Batches.vue:334 frontend/src/pages/Courses.vue:357 #: frontend/src/pages/Programs/StudentPrograms.vue:96 msgid "Enrolled" msgstr "Upisan" @@ -2526,7 +2526,7 @@ msgstr "Greška pri ažuriranju šablona e-pošte" #. Label of a Link in the LMS Workspace #. Label of a shortcut in the LMS Workspace -#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json +#: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json msgid "Evaluation" msgstr "Evaluacija" @@ -2551,7 +2551,7 @@ msgstr "Zahtjev za Ocjenu" msgid "Evaluation end date cannot be less than the batch end date." msgstr "Datum završetka ocjenjivanja ne može biti prije od datuma završetka grupe." -#: frontend/src/components/Modals/Event.vue:286 +#: frontend/src/components/Modals/Event.vue:292 msgid "Evaluation saved successfully" msgstr "Evaluacija je uspješno sačuvana" @@ -2664,7 +2664,7 @@ msgstr "Ističe" #. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:33 -#: frontend/src/components/Modals/Event.vue:144 +#: frontend/src/components/Modals/Event.vue:150 #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Expiry Date" msgstr "Datum Isteka Roka" @@ -2695,7 +2695,7 @@ msgstr "Istraži Više" #. Submission' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:396 +#: frontend/src/components/Modals/Event.vue:412 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Fail" @@ -3209,7 +3209,7 @@ msgstr "Uvezi Kurs" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' #. Option for the 'Status' (Select) field in DocType 'LMS Course' -#: frontend/src/components/Modals/Event.vue:388 +#: frontend/src/components/Modals/Event.vue:404 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_course/lms_course.json msgid "In Progress" @@ -3353,7 +3353,7 @@ msgstr "SCORM Paket" #. Label of the issue_date (Date) field in DocType 'Certification' #. Label of the issue_date (Date) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:28 -#: frontend/src/components/Modals/Event.vue:138 +#: frontend/src/components/Modals/Event.vue:144 #: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Issue Date" @@ -3456,7 +3456,7 @@ msgstr "Pridružite se" msgid "Join Call" msgstr "Pridružite se Pozivu" -#: frontend/src/components/Modals/Event.vue:78 +#: frontend/src/components/Modals/Event.vue:84 msgid "Join Meeting" msgstr "Pridružite se Sastanku" @@ -3896,7 +3896,7 @@ msgstr "LinkedIn" msgid "LinkedIn ID" msgstr "LinkedIn ID" -#: frontend/src/pages/Courses.vue:341 +#: frontend/src/pages/Courses.vue:340 msgid "Live" msgstr "Uživo" @@ -4429,7 +4429,7 @@ msgstr "Naziv" #: frontend/src/components/Settings/Members.vue:17 #: frontend/src/components/Settings/PaymentGateways.vue:16 #: frontend/src/components/Settings/ZoomSettings.vue:17 -#: frontend/src/pages/Courses.vue:344 +#: frontend/src/pages/Courses.vue:343 #: frontend/src/pages/Programs/Programs.vue:10 #: lms/lms/doctype/lms_badge/lms_badge.json msgid "New" @@ -4461,7 +4461,7 @@ msgstr "Novi Posao" msgid "New Job Applicant" msgstr "Novi Kandidat za Posao" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:12 msgid "New Payment Gateway" msgstr "Novi Sistem Plaćanja" @@ -4778,13 +4778,8 @@ msgstr "Otvoren(a) za" #: frontend/src/components/UserAvatar.vue:11 #: frontend/src/pages/CertifiedParticipants.vue:46 #: frontend/src/pages/Profile.vue:69 -msgid "Open to Opportunities" -msgstr "Otvoren(a) za prilike" - -#. Option for the 'Open to' (Select) field in DocType 'User' -#: lms/fixtures/custom_field.json -msgid "Opportunities" -msgstr "Prilika" +msgid "Open to Work" +msgstr "" #. Label of the option (Data) field in DocType 'LMS Option' #: frontend/src/components/Modals/Question.vue:70 @@ -4924,7 +4919,7 @@ msgstr "Djelomično Završeno" #. Submission' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:392 +#: frontend/src/components/Modals/Event.vue:408 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Pass" @@ -5054,7 +5049,7 @@ msgstr "Aplikacija plaćanja nije instalirana" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' #. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' -#: frontend/src/components/Modals/Event.vue:384 +#: frontend/src/components/Modals/Event.vue:400 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json msgid "Pending" @@ -5194,7 +5189,7 @@ msgstr "Prijavi se da pristupiš ovoj stranici." msgid "Please login to continue with payment." msgstr "Prijavi se da nastaviš s plaćanjem." -#: lms/lms/utils.py:2081 +#: lms/lms/utils.py:2082 msgid "Please login to enroll in the program." msgstr "Molimo vas da se prijavite da biste se prijavili u program." @@ -5525,7 +5520,7 @@ msgstr "Objavi na Stranici Učesnika" #. Label of the published (Check) field in DocType 'LMS Course' #. Label of the published (Check) field in DocType 'LMS Program' #: frontend/src/components/Modals/BulkCertificates.vue:51 -#: frontend/src/components/Modals/Event.vue:122 +#: frontend/src/components/Modals/Event.vue:128 #: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105 #: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/StudentPrograms.vue:100 @@ -5693,7 +5688,7 @@ msgstr "Kvizovi u ovom videu" #. Label of the rating (Data) field in DocType 'LMS Course' #. Label of the rating (Rating) field in DocType 'LMS Course Review' #: frontend/src/components/CourseCardOverlay.vue:147 -#: frontend/src/components/Modals/Event.vue:92 +#: frontend/src/components/Modals/Event.vue:98 #: frontend/src/components/Modals/ReviewModal.vue:18 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_course/lms_course.json @@ -5929,14 +5924,14 @@ msgstr "Subota" #: frontend/src/components/Modals/AssignmentForm.vue:65 #: frontend/src/components/Modals/EditProfile.vue:121 #: frontend/src/components/Modals/EmailTemplateModal.vue:12 -#: frontend/src/components/Modals/Event.vue:115 -#: frontend/src/components/Modals/Event.vue:151 +#: frontend/src/components/Modals/Event.vue:121 +#: frontend/src/components/Modals/Event.vue:157 #: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeForm.vue:78 #: frontend/src/components/Settings/Coupons/CouponDetails.vue:78 -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:41 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:129 #: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17 #: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14 @@ -6048,7 +6043,7 @@ msgstr "Prikaži sve" msgid "Select Date" msgstr "Odaberi Datum" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:26 msgid "Select Payment Gateway" msgstr "Odaberi Platni Portal" @@ -6364,7 +6359,7 @@ msgstr "Statistika" #. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Submission' #. Label of the status (Select) field in DocType 'LMS Test Case Submission' -#: frontend/src/components/Modals/Event.vue:99 +#: frontend/src/components/Modals/Event.vue:105 #: frontend/src/components/Settings/Badges.vue:228 #: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/pages/AssignmentSubmissionList.vue:19 @@ -6475,7 +6470,7 @@ msgstr "Uspješno upisan/a u program" #. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:106 +#: frontend/src/components/Modals/Event.vue:112 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Summary" msgstr "Sažetak" @@ -6571,7 +6566,7 @@ msgstr "Timski Rad" #. Label of the template (Link) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:43 -#: frontend/src/components/Modals/Event.vue:127 +#: frontend/src/components/Modals/Event.vue:133 #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Template" msgstr "Šablon" @@ -6620,7 +6615,7 @@ msgstr "Hvala vam na povratnim informacijama." msgid "Thanks and Regards" msgstr "Hvala i Pozdrav" -#: lms/lms/utils.py:2247 +#: lms/lms/utils.py:2248 msgid "The batch does not exist." msgstr "Grupa ne postoji." @@ -6628,7 +6623,7 @@ msgstr "Grupa ne postoji." msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session." msgstr "Grupa za koju ste se prijavili počinje sutra. Pripremite se i dođete na vrijeme." -#: lms/lms/utils.py:1747 +#: lms/lms/utils.py:1748 msgid "The coupon code '{0}' is invalid." msgstr "Kod kupona '{0}' nije važeći." @@ -6652,7 +6647,7 @@ msgstr "Instruktor je ostavio komentar na vaš zadatak {0}" msgid "The last day to schedule your evaluations is " msgstr "Posljednji dan za zakazivanje ocjenjivanja je " -#: lms/lms/utils.py:2231 +#: lms/lms/utils.py:2232 msgid "The lesson does not exist." msgstr "Lekcija ne postoji." @@ -6660,7 +6655,7 @@ msgstr "Lekcija ne postoji." msgid "The slot is already booked by another participant." msgstr "Termin je već rezervirao drugi učesnik." -#: lms/lms/utils.py:1361 lms/lms/utils.py:1477 lms/lms/utils.py:1944 +#: lms/lms/utils.py:1362 lms/lms/utils.py:1478 lms/lms/utils.py:1945 msgid "The specified batch does not exist." msgstr "Navedena grupa ne postoji." @@ -6726,15 +6721,15 @@ msgstr "Ovaj certifikat ne ističe" msgid "This class has ended" msgstr "Ovaj čas je završen" -#: lms/lms/utils.py:1776 +#: lms/lms/utils.py:1777 msgid "This coupon has expired." msgstr "Ovaj kupon je istekao." -#: lms/lms/utils.py:1779 +#: lms/lms/utils.py:1780 msgid "This coupon has reached its maximum usage limit." msgstr "Ovaj kupon je dosegao maksimalni broj iskorištenja." -#: lms/lms/utils.py:1788 +#: lms/lms/utils.py:1789 msgid "This coupon is not applicable to this {0}." msgstr "Ovaj kupon se ne odnosi na {0}." @@ -6742,7 +6737,7 @@ msgstr "Ovaj kupon se ne odnosi na {0}." msgid "This course has:" msgstr "Ovaj kurs ima:" -#: lms/lms/utils.py:1707 +#: lms/lms/utils.py:1708 msgid "This course is free." msgstr "Ovaj kurs je besplatan." @@ -6799,7 +6794,7 @@ msgid "Thursday" msgstr "Četvrtak" #. Label of the time (Time) field in DocType 'LMS Live Class' -#: frontend/src/components/Modals/Event.vue:48 +#: frontend/src/components/Modals/Event.vue:54 #: frontend/src/components/Modals/LiveClassModal.vue:52 #: frontend/src/components/Quiz.vue:58 #: lms/lms/doctype/lms_live_class/lms_live_class.json @@ -6934,7 +6929,7 @@ msgstr "Za" msgid "To Date" msgstr "Do Datuma" -#: lms/lms/utils.py:1721 +#: lms/lms/utils.py:1722 msgid "To join this batch, please contact the Administrator." msgstr "Da biste se pridružili ovoj grupi, kontaktirajte administratora." @@ -7056,7 +7051,7 @@ msgstr "Nedostupno Od Datuma ne može biti kasnije od Nedostupno Do Datuma" msgid "Under Review" msgstr "Pod Recenzijom" -#: frontend/src/pages/Batches.vue:330 frontend/src/pages/Courses.vue:356 +#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:355 msgid "Unpublished" msgstr "Neobjavljeno" @@ -7077,8 +7072,8 @@ msgstr "Nestrukturirana Uloga" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Label of the upcoming (Check) field in DocType 'LMS Course' -#: frontend/src/pages/Batches.vue:328 frontend/src/pages/CourseForm.vue:117 -#: frontend/src/pages/Courses.vue:347 +#: frontend/src/pages/Batches.vue:330 frontend/src/pages/CourseForm.vue:117 +#: frontend/src/pages/Courses.vue:346 #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_course/lms_course.json msgid "Upcoming" @@ -7220,7 +7215,7 @@ msgid "View Applications" msgstr "Prikaži prijave" #: frontend/src/components/CertificationLinks.vue:10 -#: frontend/src/components/Modals/Event.vue:67 +#: frontend/src/components/Modals/Event.vue:73 msgid "View Certificate" msgstr "Prikaži Certifikat" @@ -7327,6 +7322,11 @@ msgstr "Uz ovaj certifikat, sada možete pokazati svoje ažurirane vještine i p msgid "Withdrawn" msgstr "Povučen" +#. Option for the 'Open to' (Select) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Work" +msgstr "" + #. Label of the work_environment (Section Break) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Work Environment" @@ -7427,7 +7427,7 @@ msgstr "Ne možete mijenjati uloge u načinu rada samo za čitanje." msgid "You cannot enroll in an unpublished course." msgstr "Ne možete se upisati na neobjavljeni kurs." -#: lms/lms/utils.py:2085 +#: lms/lms/utils.py:2086 msgid "You cannot enroll in an unpublished program." msgstr "Ne možete se upisati u neobjavljeni program." @@ -7443,11 +7443,11 @@ msgstr "Ne možete zakazati ocjenjivanje nakon {0}." msgid "You cannot schedule evaluations for past slots." msgstr "Ne možete zakazati ocjenjivanje za prošle termine." -#: lms/lms/utils.py:2259 +#: lms/lms/utils.py:2260 msgid "You do not have access to this batch." msgstr "Nemate pristup ovoj grupi." -#: lms/lms/utils.py:2242 +#: lms/lms/utils.py:2243 msgid "You do not have access to this course." msgstr "Nemate pristup ovom kursu." diff --git a/lms/locale/cs.po b/lms/locale/cs.po index 8dbaa755..3d60e529 100644 --- a/lms/locale/cs.po +++ b/lms/locale/cs.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n" -"POT-Creation-Date: 2026-01-16 16:04+0000\n" -"PO-Revision-Date: 2026-01-19 20:13\n" +"POT-Creation-Date: 2026-01-23 16:05+0000\n" +"PO-Revision-Date: 2026-02-05 06:43\n" "Last-Translator: jannat@frappe.io\n" "Language-Team: Czech\n" "MIME-Version: 1.0\n" @@ -319,7 +319,7 @@ msgid "Administrator" msgstr "" #. Name of a role -#: frontend/src/pages/Batches.vue:319 lms/lms/doctype/lms_badge/lms_badge.json +#: frontend/src/pages/Batches.vue:321 lms/lms/doctype/lms_badge/lms_badge.json msgid "All" msgstr "" @@ -486,7 +486,7 @@ msgstr "" msgid "Apps" msgstr "" -#: frontend/src/pages/Batches.vue:329 +#: frontend/src/pages/Batches.vue:331 msgid "Archived" msgstr "" @@ -753,7 +753,7 @@ msgstr "" #. Label of the batch_name (Link) field in DocType 'LMS Certificate' #. Label of the batch_name (Link) field in DocType 'LMS Certificate Request' #. Label of the batch_name (Link) field in DocType 'LMS Live Class' -#: frontend/src/components/Modals/Event.vue:32 +#: frontend/src/components/Modals/Event.vue:35 #: frontend/src/components/Settings/BadgeForm.vue:195 #: frontend/src/components/Settings/Badges.vue:200 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125 @@ -878,7 +878,7 @@ msgid "Batch:" msgstr "" #. Label of the batches (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/Batches.vue:350 frontend/src/pages/Batches.vue:357 +#: frontend/src/pages/Batches.vue:352 frontend/src/pages/Batches.vue:359 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121 msgid "Batches" msgstr "" @@ -1023,7 +1023,7 @@ msgstr "" msgid "Certificate of Completion" msgstr "" -#: frontend/src/components/Modals/Event.vue:347 +#: frontend/src/components/Modals/Event.vue:353 msgid "Certificate saved successfully" msgstr "" @@ -1043,7 +1043,7 @@ msgstr "" #. Label of a chart in the LMS Workspace #. Label of a Card Break in the LMS Workspace #. Label of a Link in the LMS Workspace -#: frontend/src/components/Modals/Event.vue:411 +#: frontend/src/components/Modals/Event.vue:427 #: frontend/src/components/Sidebar/AppSidebar.vue:550 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100 #: frontend/src/pages/CourseCertification.vue:10 @@ -1771,7 +1771,7 @@ msgstr "" #: frontend/src/components/Modals/BatchStudentProgress.vue:95 #: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/CourseCertification.vue:127 -#: frontend/src/pages/Courses.vue:365 frontend/src/pages/Courses.vue:372 +#: frontend/src/pages/Courses.vue:364 frontend/src/pages/Courses.vue:371 #: frontend/src/pages/Programs/ProgramForm.vue:49 #: frontend/src/pages/Programs/Programs.vue:35 #: lms/lms/doctype/lms_batch/lms_batch.json @@ -1878,7 +1878,7 @@ msgstr "" msgid "Create your first quiz" msgstr "" -#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:355 +#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:354 msgid "Created" msgstr "" @@ -1954,7 +1954,7 @@ msgstr "" #. Label of the date (Date) field in DocType 'LMS Certificate Request' #. Label of the date (Date) field in DocType 'LMS Live Class' #. Label of the date (Date) field in DocType 'Scheduled Flow' -#: frontend/src/components/Modals/Event.vue:40 +#: frontend/src/components/Modals/Event.vue:46 #: frontend/src/components/Modals/LiveClassModal.vue:29 #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json @@ -2241,7 +2241,7 @@ msgstr "" msgid "Edit Email Template" msgstr "" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:13 msgid "Edit Payment Gateway" msgstr "" @@ -2424,7 +2424,7 @@ msgstr "" msgid "Enroll Now" msgstr "" -#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:358 +#: frontend/src/pages/Batches.vue:334 frontend/src/pages/Courses.vue:357 #: frontend/src/pages/Programs/StudentPrograms.vue:96 msgid "Enrolled" msgstr "" @@ -2526,7 +2526,7 @@ msgstr "" #. Label of a Link in the LMS Workspace #. Label of a shortcut in the LMS Workspace -#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json +#: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json msgid "Evaluation" msgstr "" @@ -2551,7 +2551,7 @@ msgstr "" msgid "Evaluation end date cannot be less than the batch end date." msgstr "" -#: frontend/src/components/Modals/Event.vue:286 +#: frontend/src/components/Modals/Event.vue:292 msgid "Evaluation saved successfully" msgstr "" @@ -2664,7 +2664,7 @@ msgstr "" #. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:33 -#: frontend/src/components/Modals/Event.vue:144 +#: frontend/src/components/Modals/Event.vue:150 #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Expiry Date" msgstr "" @@ -2695,7 +2695,7 @@ msgstr "" #. Submission' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:396 +#: frontend/src/components/Modals/Event.vue:412 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Fail" @@ -3209,7 +3209,7 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' #. Option for the 'Status' (Select) field in DocType 'LMS Course' -#: frontend/src/components/Modals/Event.vue:388 +#: frontend/src/components/Modals/Event.vue:404 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_course/lms_course.json msgid "In Progress" @@ -3353,7 +3353,7 @@ msgstr "" #. Label of the issue_date (Date) field in DocType 'Certification' #. Label of the issue_date (Date) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:28 -#: frontend/src/components/Modals/Event.vue:138 +#: frontend/src/components/Modals/Event.vue:144 #: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Issue Date" @@ -3456,7 +3456,7 @@ msgstr "" msgid "Join Call" msgstr "" -#: frontend/src/components/Modals/Event.vue:78 +#: frontend/src/components/Modals/Event.vue:84 msgid "Join Meeting" msgstr "" @@ -3896,7 +3896,7 @@ msgstr "" msgid "LinkedIn ID" msgstr "" -#: frontend/src/pages/Courses.vue:341 +#: frontend/src/pages/Courses.vue:340 msgid "Live" msgstr "" @@ -4429,7 +4429,7 @@ msgstr "" #: frontend/src/components/Settings/Members.vue:17 #: frontend/src/components/Settings/PaymentGateways.vue:16 #: frontend/src/components/Settings/ZoomSettings.vue:17 -#: frontend/src/pages/Courses.vue:344 +#: frontend/src/pages/Courses.vue:343 #: frontend/src/pages/Programs/Programs.vue:10 #: lms/lms/doctype/lms_badge/lms_badge.json msgid "New" @@ -4461,7 +4461,7 @@ msgstr "" msgid "New Job Applicant" msgstr "" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:12 msgid "New Payment Gateway" msgstr "" @@ -4778,12 +4778,7 @@ msgstr "" #: frontend/src/components/UserAvatar.vue:11 #: frontend/src/pages/CertifiedParticipants.vue:46 #: frontend/src/pages/Profile.vue:69 -msgid "Open to Opportunities" -msgstr "" - -#. Option for the 'Open to' (Select) field in DocType 'User' -#: lms/fixtures/custom_field.json -msgid "Opportunities" +msgid "Open to Work" msgstr "" #. Label of the option (Data) field in DocType 'LMS Option' @@ -4924,7 +4919,7 @@ msgstr "" #. Submission' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:392 +#: frontend/src/components/Modals/Event.vue:408 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Pass" @@ -5054,7 +5049,7 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' #. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' -#: frontend/src/components/Modals/Event.vue:384 +#: frontend/src/components/Modals/Event.vue:400 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json msgid "Pending" @@ -5194,7 +5189,7 @@ msgstr "" msgid "Please login to continue with payment." msgstr "" -#: lms/lms/utils.py:2081 +#: lms/lms/utils.py:2082 msgid "Please login to enroll in the program." msgstr "" @@ -5525,7 +5520,7 @@ msgstr "" #. Label of the published (Check) field in DocType 'LMS Course' #. Label of the published (Check) field in DocType 'LMS Program' #: frontend/src/components/Modals/BulkCertificates.vue:51 -#: frontend/src/components/Modals/Event.vue:122 +#: frontend/src/components/Modals/Event.vue:128 #: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105 #: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/StudentPrograms.vue:100 @@ -5693,7 +5688,7 @@ msgstr "" #. Label of the rating (Data) field in DocType 'LMS Course' #. Label of the rating (Rating) field in DocType 'LMS Course Review' #: frontend/src/components/CourseCardOverlay.vue:147 -#: frontend/src/components/Modals/Event.vue:92 +#: frontend/src/components/Modals/Event.vue:98 #: frontend/src/components/Modals/ReviewModal.vue:18 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_course/lms_course.json @@ -5929,14 +5924,14 @@ msgstr "" #: frontend/src/components/Modals/AssignmentForm.vue:65 #: frontend/src/components/Modals/EditProfile.vue:121 #: frontend/src/components/Modals/EmailTemplateModal.vue:12 -#: frontend/src/components/Modals/Event.vue:115 -#: frontend/src/components/Modals/Event.vue:151 +#: frontend/src/components/Modals/Event.vue:121 +#: frontend/src/components/Modals/Event.vue:157 #: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeForm.vue:78 #: frontend/src/components/Settings/Coupons/CouponDetails.vue:78 -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:41 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:129 #: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17 #: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14 @@ -6048,7 +6043,7 @@ msgstr "" msgid "Select Date" msgstr "" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:26 msgid "Select Payment Gateway" msgstr "" @@ -6364,7 +6359,7 @@ msgstr "" #. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Submission' #. Label of the status (Select) field in DocType 'LMS Test Case Submission' -#: frontend/src/components/Modals/Event.vue:99 +#: frontend/src/components/Modals/Event.vue:105 #: frontend/src/components/Settings/Badges.vue:228 #: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/pages/AssignmentSubmissionList.vue:19 @@ -6475,7 +6470,7 @@ msgstr "" #. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:106 +#: frontend/src/components/Modals/Event.vue:112 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Summary" msgstr "" @@ -6571,7 +6566,7 @@ msgstr "" #. Label of the template (Link) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:43 -#: frontend/src/components/Modals/Event.vue:127 +#: frontend/src/components/Modals/Event.vue:133 #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Template" msgstr "" @@ -6620,7 +6615,7 @@ msgstr "" msgid "Thanks and Regards" msgstr "" -#: lms/lms/utils.py:2247 +#: lms/lms/utils.py:2248 msgid "The batch does not exist." msgstr "" @@ -6628,7 +6623,7 @@ msgstr "" msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session." msgstr "" -#: lms/lms/utils.py:1747 +#: lms/lms/utils.py:1748 msgid "The coupon code '{0}' is invalid." msgstr "" @@ -6652,7 +6647,7 @@ msgstr "" msgid "The last day to schedule your evaluations is " msgstr "" -#: lms/lms/utils.py:2231 +#: lms/lms/utils.py:2232 msgid "The lesson does not exist." msgstr "" @@ -6660,7 +6655,7 @@ msgstr "" msgid "The slot is already booked by another participant." msgstr "" -#: lms/lms/utils.py:1361 lms/lms/utils.py:1477 lms/lms/utils.py:1944 +#: lms/lms/utils.py:1362 lms/lms/utils.py:1478 lms/lms/utils.py:1945 msgid "The specified batch does not exist." msgstr "" @@ -6726,15 +6721,15 @@ msgstr "" msgid "This class has ended" msgstr "" -#: lms/lms/utils.py:1776 +#: lms/lms/utils.py:1777 msgid "This coupon has expired." msgstr "" -#: lms/lms/utils.py:1779 +#: lms/lms/utils.py:1780 msgid "This coupon has reached its maximum usage limit." msgstr "" -#: lms/lms/utils.py:1788 +#: lms/lms/utils.py:1789 msgid "This coupon is not applicable to this {0}." msgstr "" @@ -6742,7 +6737,7 @@ msgstr "" msgid "This course has:" msgstr "" -#: lms/lms/utils.py:1707 +#: lms/lms/utils.py:1708 msgid "This course is free." msgstr "" @@ -6799,7 +6794,7 @@ msgid "Thursday" msgstr "" #. Label of the time (Time) field in DocType 'LMS Live Class' -#: frontend/src/components/Modals/Event.vue:48 +#: frontend/src/components/Modals/Event.vue:54 #: frontend/src/components/Modals/LiveClassModal.vue:52 #: frontend/src/components/Quiz.vue:58 #: lms/lms/doctype/lms_live_class/lms_live_class.json @@ -6934,7 +6929,7 @@ msgstr "" msgid "To Date" msgstr "" -#: lms/lms/utils.py:1721 +#: lms/lms/utils.py:1722 msgid "To join this batch, please contact the Administrator." msgstr "" @@ -7056,7 +7051,7 @@ msgstr "" msgid "Under Review" msgstr "" -#: frontend/src/pages/Batches.vue:330 frontend/src/pages/Courses.vue:356 +#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:355 msgid "Unpublished" msgstr "" @@ -7077,8 +7072,8 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Label of the upcoming (Check) field in DocType 'LMS Course' -#: frontend/src/pages/Batches.vue:328 frontend/src/pages/CourseForm.vue:117 -#: frontend/src/pages/Courses.vue:347 +#: frontend/src/pages/Batches.vue:330 frontend/src/pages/CourseForm.vue:117 +#: frontend/src/pages/Courses.vue:346 #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_course/lms_course.json msgid "Upcoming" @@ -7220,7 +7215,7 @@ msgid "View Applications" msgstr "" #: frontend/src/components/CertificationLinks.vue:10 -#: frontend/src/components/Modals/Event.vue:67 +#: frontend/src/components/Modals/Event.vue:73 msgid "View Certificate" msgstr "" @@ -7327,6 +7322,11 @@ msgstr "" msgid "Withdrawn" msgstr "" +#. Option for the 'Open to' (Select) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Work" +msgstr "" + #. Label of the work_environment (Section Break) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Work Environment" @@ -7427,7 +7427,7 @@ msgstr "" msgid "You cannot enroll in an unpublished course." msgstr "" -#: lms/lms/utils.py:2085 +#: lms/lms/utils.py:2086 msgid "You cannot enroll in an unpublished program." msgstr "" @@ -7443,11 +7443,11 @@ msgstr "" msgid "You cannot schedule evaluations for past slots." msgstr "" -#: lms/lms/utils.py:2259 +#: lms/lms/utils.py:2260 msgid "You do not have access to this batch." msgstr "" -#: lms/lms/utils.py:2242 +#: lms/lms/utils.py:2243 msgid "You do not have access to this course." msgstr "" diff --git a/lms/locale/da.po b/lms/locale/da.po index 35f7cac7..e8da2d94 100644 --- a/lms/locale/da.po +++ b/lms/locale/da.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n" -"POT-Creation-Date: 2026-01-16 16:04+0000\n" -"PO-Revision-Date: 2026-01-19 20:13\n" +"POT-Creation-Date: 2026-01-23 16:05+0000\n" +"PO-Revision-Date: 2026-02-05 06:43\n" "Last-Translator: jannat@frappe.io\n" "Language-Team: Danish\n" "MIME-Version: 1.0\n" @@ -319,7 +319,7 @@ msgid "Administrator" msgstr "Administrator" #. Name of a role -#: frontend/src/pages/Batches.vue:319 lms/lms/doctype/lms_badge/lms_badge.json +#: frontend/src/pages/Batches.vue:321 lms/lms/doctype/lms_badge/lms_badge.json msgid "All" msgstr "Alle" @@ -486,7 +486,7 @@ msgstr "Godkendt" msgid "Apps" msgstr "Apps" -#: frontend/src/pages/Batches.vue:329 +#: frontend/src/pages/Batches.vue:331 msgid "Archived" msgstr "Arkiveret" @@ -753,7 +753,7 @@ msgstr "" #. Label of the batch_name (Link) field in DocType 'LMS Certificate' #. Label of the batch_name (Link) field in DocType 'LMS Certificate Request' #. Label of the batch_name (Link) field in DocType 'LMS Live Class' -#: frontend/src/components/Modals/Event.vue:32 +#: frontend/src/components/Modals/Event.vue:35 #: frontend/src/components/Settings/BadgeForm.vue:195 #: frontend/src/components/Settings/Badges.vue:200 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125 @@ -878,7 +878,7 @@ msgid "Batch:" msgstr "" #. Label of the batches (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/Batches.vue:350 frontend/src/pages/Batches.vue:357 +#: frontend/src/pages/Batches.vue:352 frontend/src/pages/Batches.vue:359 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121 msgid "Batches" msgstr "" @@ -1023,7 +1023,7 @@ msgstr "" msgid "Certificate of Completion" msgstr "" -#: frontend/src/components/Modals/Event.vue:347 +#: frontend/src/components/Modals/Event.vue:353 msgid "Certificate saved successfully" msgstr "" @@ -1043,7 +1043,7 @@ msgstr "" #. Label of a chart in the LMS Workspace #. Label of a Card Break in the LMS Workspace #. Label of a Link in the LMS Workspace -#: frontend/src/components/Modals/Event.vue:411 +#: frontend/src/components/Modals/Event.vue:427 #: frontend/src/components/Sidebar/AppSidebar.vue:550 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100 #: frontend/src/pages/CourseCertification.vue:10 @@ -1771,7 +1771,7 @@ msgstr "" #: frontend/src/components/Modals/BatchStudentProgress.vue:95 #: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/CourseCertification.vue:127 -#: frontend/src/pages/Courses.vue:365 frontend/src/pages/Courses.vue:372 +#: frontend/src/pages/Courses.vue:364 frontend/src/pages/Courses.vue:371 #: frontend/src/pages/Programs/ProgramForm.vue:49 #: frontend/src/pages/Programs/Programs.vue:35 #: lms/lms/doctype/lms_batch/lms_batch.json @@ -1878,7 +1878,7 @@ msgstr "" msgid "Create your first quiz" msgstr "" -#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:355 +#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:354 msgid "Created" msgstr "" @@ -1954,7 +1954,7 @@ msgstr "" #. Label of the date (Date) field in DocType 'LMS Certificate Request' #. Label of the date (Date) field in DocType 'LMS Live Class' #. Label of the date (Date) field in DocType 'Scheduled Flow' -#: frontend/src/components/Modals/Event.vue:40 +#: frontend/src/components/Modals/Event.vue:46 #: frontend/src/components/Modals/LiveClassModal.vue:29 #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json @@ -2241,7 +2241,7 @@ msgstr "" msgid "Edit Email Template" msgstr "" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:13 msgid "Edit Payment Gateway" msgstr "" @@ -2424,7 +2424,7 @@ msgstr "" msgid "Enroll Now" msgstr "" -#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:358 +#: frontend/src/pages/Batches.vue:334 frontend/src/pages/Courses.vue:357 #: frontend/src/pages/Programs/StudentPrograms.vue:96 msgid "Enrolled" msgstr "" @@ -2526,7 +2526,7 @@ msgstr "" #. Label of a Link in the LMS Workspace #. Label of a shortcut in the LMS Workspace -#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json +#: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json msgid "Evaluation" msgstr "" @@ -2551,7 +2551,7 @@ msgstr "" msgid "Evaluation end date cannot be less than the batch end date." msgstr "" -#: frontend/src/components/Modals/Event.vue:286 +#: frontend/src/components/Modals/Event.vue:292 msgid "Evaluation saved successfully" msgstr "" @@ -2664,7 +2664,7 @@ msgstr "" #. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:33 -#: frontend/src/components/Modals/Event.vue:144 +#: frontend/src/components/Modals/Event.vue:150 #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Expiry Date" msgstr "" @@ -2695,7 +2695,7 @@ msgstr "" #. Submission' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:396 +#: frontend/src/components/Modals/Event.vue:412 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Fail" @@ -3209,7 +3209,7 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' #. Option for the 'Status' (Select) field in DocType 'LMS Course' -#: frontend/src/components/Modals/Event.vue:388 +#: frontend/src/components/Modals/Event.vue:404 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_course/lms_course.json msgid "In Progress" @@ -3353,7 +3353,7 @@ msgstr "" #. Label of the issue_date (Date) field in DocType 'Certification' #. Label of the issue_date (Date) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:28 -#: frontend/src/components/Modals/Event.vue:138 +#: frontend/src/components/Modals/Event.vue:144 #: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Issue Date" @@ -3456,7 +3456,7 @@ msgstr "" msgid "Join Call" msgstr "" -#: frontend/src/components/Modals/Event.vue:78 +#: frontend/src/components/Modals/Event.vue:84 msgid "Join Meeting" msgstr "" @@ -3896,7 +3896,7 @@ msgstr "" msgid "LinkedIn ID" msgstr "" -#: frontend/src/pages/Courses.vue:341 +#: frontend/src/pages/Courses.vue:340 msgid "Live" msgstr "" @@ -4429,7 +4429,7 @@ msgstr "" #: frontend/src/components/Settings/Members.vue:17 #: frontend/src/components/Settings/PaymentGateways.vue:16 #: frontend/src/components/Settings/ZoomSettings.vue:17 -#: frontend/src/pages/Courses.vue:344 +#: frontend/src/pages/Courses.vue:343 #: frontend/src/pages/Programs/Programs.vue:10 #: lms/lms/doctype/lms_badge/lms_badge.json msgid "New" @@ -4461,7 +4461,7 @@ msgstr "" msgid "New Job Applicant" msgstr "" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:12 msgid "New Payment Gateway" msgstr "" @@ -4778,12 +4778,7 @@ msgstr "" #: frontend/src/components/UserAvatar.vue:11 #: frontend/src/pages/CertifiedParticipants.vue:46 #: frontend/src/pages/Profile.vue:69 -msgid "Open to Opportunities" -msgstr "" - -#. Option for the 'Open to' (Select) field in DocType 'User' -#: lms/fixtures/custom_field.json -msgid "Opportunities" +msgid "Open to Work" msgstr "" #. Label of the option (Data) field in DocType 'LMS Option' @@ -4924,7 +4919,7 @@ msgstr "" #. Submission' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:392 +#: frontend/src/components/Modals/Event.vue:408 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Pass" @@ -5054,7 +5049,7 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' #. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' -#: frontend/src/components/Modals/Event.vue:384 +#: frontend/src/components/Modals/Event.vue:400 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json msgid "Pending" @@ -5194,7 +5189,7 @@ msgstr "" msgid "Please login to continue with payment." msgstr "" -#: lms/lms/utils.py:2081 +#: lms/lms/utils.py:2082 msgid "Please login to enroll in the program." msgstr "" @@ -5525,7 +5520,7 @@ msgstr "" #. Label of the published (Check) field in DocType 'LMS Course' #. Label of the published (Check) field in DocType 'LMS Program' #: frontend/src/components/Modals/BulkCertificates.vue:51 -#: frontend/src/components/Modals/Event.vue:122 +#: frontend/src/components/Modals/Event.vue:128 #: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105 #: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/StudentPrograms.vue:100 @@ -5693,7 +5688,7 @@ msgstr "" #. Label of the rating (Data) field in DocType 'LMS Course' #. Label of the rating (Rating) field in DocType 'LMS Course Review' #: frontend/src/components/CourseCardOverlay.vue:147 -#: frontend/src/components/Modals/Event.vue:92 +#: frontend/src/components/Modals/Event.vue:98 #: frontend/src/components/Modals/ReviewModal.vue:18 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_course/lms_course.json @@ -5929,14 +5924,14 @@ msgstr "" #: frontend/src/components/Modals/AssignmentForm.vue:65 #: frontend/src/components/Modals/EditProfile.vue:121 #: frontend/src/components/Modals/EmailTemplateModal.vue:12 -#: frontend/src/components/Modals/Event.vue:115 -#: frontend/src/components/Modals/Event.vue:151 +#: frontend/src/components/Modals/Event.vue:121 +#: frontend/src/components/Modals/Event.vue:157 #: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeForm.vue:78 #: frontend/src/components/Settings/Coupons/CouponDetails.vue:78 -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:41 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:129 #: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17 #: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14 @@ -6048,7 +6043,7 @@ msgstr "" msgid "Select Date" msgstr "" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:26 msgid "Select Payment Gateway" msgstr "" @@ -6364,7 +6359,7 @@ msgstr "" #. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Submission' #. Label of the status (Select) field in DocType 'LMS Test Case Submission' -#: frontend/src/components/Modals/Event.vue:99 +#: frontend/src/components/Modals/Event.vue:105 #: frontend/src/components/Settings/Badges.vue:228 #: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/pages/AssignmentSubmissionList.vue:19 @@ -6475,7 +6470,7 @@ msgstr "" #. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:106 +#: frontend/src/components/Modals/Event.vue:112 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Summary" msgstr "" @@ -6571,7 +6566,7 @@ msgstr "" #. Label of the template (Link) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:43 -#: frontend/src/components/Modals/Event.vue:127 +#: frontend/src/components/Modals/Event.vue:133 #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Template" msgstr "" @@ -6620,7 +6615,7 @@ msgstr "" msgid "Thanks and Regards" msgstr "" -#: lms/lms/utils.py:2247 +#: lms/lms/utils.py:2248 msgid "The batch does not exist." msgstr "" @@ -6628,7 +6623,7 @@ msgstr "" msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session." msgstr "" -#: lms/lms/utils.py:1747 +#: lms/lms/utils.py:1748 msgid "The coupon code '{0}' is invalid." msgstr "" @@ -6652,7 +6647,7 @@ msgstr "" msgid "The last day to schedule your evaluations is " msgstr "" -#: lms/lms/utils.py:2231 +#: lms/lms/utils.py:2232 msgid "The lesson does not exist." msgstr "" @@ -6660,7 +6655,7 @@ msgstr "" msgid "The slot is already booked by another participant." msgstr "" -#: lms/lms/utils.py:1361 lms/lms/utils.py:1477 lms/lms/utils.py:1944 +#: lms/lms/utils.py:1362 lms/lms/utils.py:1478 lms/lms/utils.py:1945 msgid "The specified batch does not exist." msgstr "" @@ -6726,15 +6721,15 @@ msgstr "" msgid "This class has ended" msgstr "" -#: lms/lms/utils.py:1776 +#: lms/lms/utils.py:1777 msgid "This coupon has expired." msgstr "" -#: lms/lms/utils.py:1779 +#: lms/lms/utils.py:1780 msgid "This coupon has reached its maximum usage limit." msgstr "" -#: lms/lms/utils.py:1788 +#: lms/lms/utils.py:1789 msgid "This coupon is not applicable to this {0}." msgstr "" @@ -6742,7 +6737,7 @@ msgstr "" msgid "This course has:" msgstr "" -#: lms/lms/utils.py:1707 +#: lms/lms/utils.py:1708 msgid "This course is free." msgstr "" @@ -6799,7 +6794,7 @@ msgid "Thursday" msgstr "" #. Label of the time (Time) field in DocType 'LMS Live Class' -#: frontend/src/components/Modals/Event.vue:48 +#: frontend/src/components/Modals/Event.vue:54 #: frontend/src/components/Modals/LiveClassModal.vue:52 #: frontend/src/components/Quiz.vue:58 #: lms/lms/doctype/lms_live_class/lms_live_class.json @@ -6934,7 +6929,7 @@ msgstr "" msgid "To Date" msgstr "" -#: lms/lms/utils.py:1721 +#: lms/lms/utils.py:1722 msgid "To join this batch, please contact the Administrator." msgstr "" @@ -7056,7 +7051,7 @@ msgstr "" msgid "Under Review" msgstr "" -#: frontend/src/pages/Batches.vue:330 frontend/src/pages/Courses.vue:356 +#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:355 msgid "Unpublished" msgstr "" @@ -7077,8 +7072,8 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Label of the upcoming (Check) field in DocType 'LMS Course' -#: frontend/src/pages/Batches.vue:328 frontend/src/pages/CourseForm.vue:117 -#: frontend/src/pages/Courses.vue:347 +#: frontend/src/pages/Batches.vue:330 frontend/src/pages/CourseForm.vue:117 +#: frontend/src/pages/Courses.vue:346 #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_course/lms_course.json msgid "Upcoming" @@ -7220,7 +7215,7 @@ msgid "View Applications" msgstr "" #: frontend/src/components/CertificationLinks.vue:10 -#: frontend/src/components/Modals/Event.vue:67 +#: frontend/src/components/Modals/Event.vue:73 msgid "View Certificate" msgstr "" @@ -7327,6 +7322,11 @@ msgstr "" msgid "Withdrawn" msgstr "" +#. Option for the 'Open to' (Select) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Work" +msgstr "" + #. Label of the work_environment (Section Break) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Work Environment" @@ -7427,7 +7427,7 @@ msgstr "" msgid "You cannot enroll in an unpublished course." msgstr "" -#: lms/lms/utils.py:2085 +#: lms/lms/utils.py:2086 msgid "You cannot enroll in an unpublished program." msgstr "" @@ -7443,11 +7443,11 @@ msgstr "" msgid "You cannot schedule evaluations for past slots." msgstr "" -#: lms/lms/utils.py:2259 +#: lms/lms/utils.py:2260 msgid "You do not have access to this batch." msgstr "" -#: lms/lms/utils.py:2242 +#: lms/lms/utils.py:2243 msgid "You do not have access to this course." msgstr "" diff --git a/lms/locale/de.po b/lms/locale/de.po index ef943015..eb745b59 100644 --- a/lms/locale/de.po +++ b/lms/locale/de.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n" -"POT-Creation-Date: 2026-01-16 16:04+0000\n" -"PO-Revision-Date: 2026-01-21 20:16\n" +"POT-Creation-Date: 2026-01-23 16:05+0000\n" +"PO-Revision-Date: 2026-02-05 06:43\n" "Last-Translator: jannat@frappe.io\n" "Language-Team: German\n" "MIME-Version: 1.0\n" @@ -319,7 +319,7 @@ msgid "Administrator" msgstr "Administrator" #. Name of a role -#: frontend/src/pages/Batches.vue:319 lms/lms/doctype/lms_badge/lms_badge.json +#: frontend/src/pages/Batches.vue:321 lms/lms/doctype/lms_badge/lms_badge.json msgid "All" msgstr "Alle" @@ -486,7 +486,7 @@ msgstr "Genehmigt" msgid "Apps" msgstr "Apps" -#: frontend/src/pages/Batches.vue:329 +#: frontend/src/pages/Batches.vue:331 msgid "Archived" msgstr "Archiviert" @@ -753,7 +753,7 @@ msgstr "" #. Label of the batch_name (Link) field in DocType 'LMS Certificate' #. Label of the batch_name (Link) field in DocType 'LMS Certificate Request' #. Label of the batch_name (Link) field in DocType 'LMS Live Class' -#: frontend/src/components/Modals/Event.vue:32 +#: frontend/src/components/Modals/Event.vue:35 #: frontend/src/components/Settings/BadgeForm.vue:195 #: frontend/src/components/Settings/Badges.vue:200 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125 @@ -878,7 +878,7 @@ msgid "Batch:" msgstr "Charge:" #. Label of the batches (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/Batches.vue:350 frontend/src/pages/Batches.vue:357 +#: frontend/src/pages/Batches.vue:352 frontend/src/pages/Batches.vue:359 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121 msgid "Batches" msgstr "" @@ -1023,7 +1023,7 @@ msgstr "Zertifikatslink" msgid "Certificate of Completion" msgstr "" -#: frontend/src/components/Modals/Event.vue:347 +#: frontend/src/components/Modals/Event.vue:353 msgid "Certificate saved successfully" msgstr "" @@ -1043,7 +1043,7 @@ msgstr "" #. Label of a chart in the LMS Workspace #. Label of a Card Break in the LMS Workspace #. Label of a Link in the LMS Workspace -#: frontend/src/components/Modals/Event.vue:411 +#: frontend/src/components/Modals/Event.vue:427 #: frontend/src/components/Sidebar/AppSidebar.vue:550 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100 #: frontend/src/pages/CourseCertification.vue:10 @@ -1771,7 +1771,7 @@ msgstr "" #: frontend/src/components/Modals/BatchStudentProgress.vue:95 #: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/CourseCertification.vue:127 -#: frontend/src/pages/Courses.vue:365 frontend/src/pages/Courses.vue:372 +#: frontend/src/pages/Courses.vue:364 frontend/src/pages/Courses.vue:371 #: frontend/src/pages/Programs/ProgramForm.vue:49 #: frontend/src/pages/Programs/Programs.vue:35 #: lms/lms/doctype/lms_batch/lms_batch.json @@ -1878,7 +1878,7 @@ msgstr "" msgid "Create your first quiz" msgstr "" -#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:355 +#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:354 msgid "Created" msgstr "Erstellt" @@ -1954,7 +1954,7 @@ msgstr "Datenimport" #. Label of the date (Date) field in DocType 'LMS Certificate Request' #. Label of the date (Date) field in DocType 'LMS Live Class' #. Label of the date (Date) field in DocType 'Scheduled Flow' -#: frontend/src/components/Modals/Event.vue:40 +#: frontend/src/components/Modals/Event.vue:46 #: frontend/src/components/Modals/LiveClassModal.vue:29 #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json @@ -2241,7 +2241,7 @@ msgstr "" msgid "Edit Email Template" msgstr "" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:13 msgid "Edit Payment Gateway" msgstr "" @@ -2424,7 +2424,7 @@ msgstr "" msgid "Enroll Now" msgstr "" -#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:358 +#: frontend/src/pages/Batches.vue:334 frontend/src/pages/Courses.vue:357 #: frontend/src/pages/Programs/StudentPrograms.vue:96 msgid "Enrolled" msgstr "" @@ -2526,7 +2526,7 @@ msgstr "" #. Label of a Link in the LMS Workspace #. Label of a shortcut in the LMS Workspace -#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json +#: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json msgid "Evaluation" msgstr "Beurteilung" @@ -2551,7 +2551,7 @@ msgstr "" msgid "Evaluation end date cannot be less than the batch end date." msgstr "" -#: frontend/src/components/Modals/Event.vue:286 +#: frontend/src/components/Modals/Event.vue:292 msgid "Evaluation saved successfully" msgstr "" @@ -2664,7 +2664,7 @@ msgstr "Verfällt am" #. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:33 -#: frontend/src/components/Modals/Event.vue:144 +#: frontend/src/components/Modals/Event.vue:150 #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Expiry Date" msgstr "Verfallsdatum" @@ -2695,7 +2695,7 @@ msgstr "Mehr entdecken" #. Submission' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:396 +#: frontend/src/components/Modals/Event.vue:412 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Fail" @@ -3209,7 +3209,7 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' #. Option for the 'Status' (Select) field in DocType 'LMS Course' -#: frontend/src/components/Modals/Event.vue:388 +#: frontend/src/components/Modals/Event.vue:404 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_course/lms_course.json msgid "In Progress" @@ -3353,7 +3353,7 @@ msgstr "" #. Label of the issue_date (Date) field in DocType 'Certification' #. Label of the issue_date (Date) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:28 -#: frontend/src/components/Modals/Event.vue:138 +#: frontend/src/components/Modals/Event.vue:144 #: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Issue Date" @@ -3456,7 +3456,7 @@ msgstr "Beitreten" msgid "Join Call" msgstr "" -#: frontend/src/components/Modals/Event.vue:78 +#: frontend/src/components/Modals/Event.vue:84 msgid "Join Meeting" msgstr "" @@ -3896,7 +3896,7 @@ msgstr "LinkedIn" msgid "LinkedIn ID" msgstr "" -#: frontend/src/pages/Courses.vue:341 +#: frontend/src/pages/Courses.vue:340 msgid "Live" msgstr "" @@ -4429,7 +4429,7 @@ msgstr "Name" #: frontend/src/components/Settings/Members.vue:17 #: frontend/src/components/Settings/PaymentGateways.vue:16 #: frontend/src/components/Settings/ZoomSettings.vue:17 -#: frontend/src/pages/Courses.vue:344 +#: frontend/src/pages/Courses.vue:343 #: frontend/src/pages/Programs/Programs.vue:10 #: lms/lms/doctype/lms_badge/lms_badge.json msgid "New" @@ -4461,7 +4461,7 @@ msgstr "" msgid "New Job Applicant" msgstr "" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:12 msgid "New Payment Gateway" msgstr "" @@ -4778,14 +4778,9 @@ msgstr "" #: frontend/src/components/UserAvatar.vue:11 #: frontend/src/pages/CertifiedParticipants.vue:46 #: frontend/src/pages/Profile.vue:69 -msgid "Open to Opportunities" +msgid "Open to Work" msgstr "" -#. Option for the 'Open to' (Select) field in DocType 'User' -#: lms/fixtures/custom_field.json -msgid "Opportunities" -msgstr "Chancen" - #. Label of the option (Data) field in DocType 'LMS Option' #: frontend/src/components/Modals/Question.vue:70 #: lms/lms/doctype/lms_option/lms_option.json @@ -4924,7 +4919,7 @@ msgstr "Teilweise abgeschlossen" #. Submission' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:392 +#: frontend/src/components/Modals/Event.vue:408 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Pass" @@ -5054,7 +5049,7 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' #. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' -#: frontend/src/components/Modals/Event.vue:384 +#: frontend/src/components/Modals/Event.vue:400 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json msgid "Pending" @@ -5194,7 +5189,7 @@ msgstr "Bitte melden Sie sich an, um auf diese Seite zuzugreifen." msgid "Please login to continue with payment." msgstr "Bitte loggen Sie sich ein, um mit der Zahlung fortzufahren." -#: lms/lms/utils.py:2081 +#: lms/lms/utils.py:2082 msgid "Please login to enroll in the program." msgstr "" @@ -5525,7 +5520,7 @@ msgstr "Auf der Teilnehmerseite veröffentlichen" #. Label of the published (Check) field in DocType 'LMS Course' #. Label of the published (Check) field in DocType 'LMS Program' #: frontend/src/components/Modals/BulkCertificates.vue:51 -#: frontend/src/components/Modals/Event.vue:122 +#: frontend/src/components/Modals/Event.vue:128 #: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105 #: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/StudentPrograms.vue:100 @@ -5693,7 +5688,7 @@ msgstr "" #. Label of the rating (Data) field in DocType 'LMS Course' #. Label of the rating (Rating) field in DocType 'LMS Course Review' #: frontend/src/components/CourseCardOverlay.vue:147 -#: frontend/src/components/Modals/Event.vue:92 +#: frontend/src/components/Modals/Event.vue:98 #: frontend/src/components/Modals/ReviewModal.vue:18 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_course/lms_course.json @@ -5929,14 +5924,14 @@ msgstr "Samstag" #: frontend/src/components/Modals/AssignmentForm.vue:65 #: frontend/src/components/Modals/EditProfile.vue:121 #: frontend/src/components/Modals/EmailTemplateModal.vue:12 -#: frontend/src/components/Modals/Event.vue:115 -#: frontend/src/components/Modals/Event.vue:151 +#: frontend/src/components/Modals/Event.vue:121 +#: frontend/src/components/Modals/Event.vue:157 #: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeForm.vue:78 #: frontend/src/components/Settings/Coupons/CouponDetails.vue:78 -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:41 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:129 #: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17 #: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14 @@ -6048,7 +6043,7 @@ msgstr "" msgid "Select Date" msgstr "" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:26 msgid "Select Payment Gateway" msgstr "" @@ -6364,7 +6359,7 @@ msgstr "Statistiken" #. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Submission' #. Label of the status (Select) field in DocType 'LMS Test Case Submission' -#: frontend/src/components/Modals/Event.vue:99 +#: frontend/src/components/Modals/Event.vue:105 #: frontend/src/components/Settings/Badges.vue:228 #: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/pages/AssignmentSubmissionList.vue:19 @@ -6475,7 +6470,7 @@ msgstr "" #. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:106 +#: frontend/src/components/Modals/Event.vue:112 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Summary" msgstr "Zusammenfassung" @@ -6571,7 +6566,7 @@ msgstr "" #. Label of the template (Link) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:43 -#: frontend/src/components/Modals/Event.vue:127 +#: frontend/src/components/Modals/Event.vue:133 #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Template" msgstr "Vorlage" @@ -6620,7 +6615,7 @@ msgstr "" msgid "Thanks and Regards" msgstr "Danke und Grüße" -#: lms/lms/utils.py:2247 +#: lms/lms/utils.py:2248 msgid "The batch does not exist." msgstr "" @@ -6628,7 +6623,7 @@ msgstr "" msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session." msgstr "" -#: lms/lms/utils.py:1747 +#: lms/lms/utils.py:1748 msgid "The coupon code '{0}' is invalid." msgstr "" @@ -6652,7 +6647,7 @@ msgstr "" msgid "The last day to schedule your evaluations is " msgstr "" -#: lms/lms/utils.py:2231 +#: lms/lms/utils.py:2232 msgid "The lesson does not exist." msgstr "" @@ -6660,7 +6655,7 @@ msgstr "" msgid "The slot is already booked by another participant." msgstr "Der Platz ist bereits von einem anderen Teilnehmer gebucht." -#: lms/lms/utils.py:1361 lms/lms/utils.py:1477 lms/lms/utils.py:1944 +#: lms/lms/utils.py:1362 lms/lms/utils.py:1478 lms/lms/utils.py:1945 msgid "The specified batch does not exist." msgstr "" @@ -6726,15 +6721,15 @@ msgstr "Dieses Zertifikat läuft nicht ab" msgid "This class has ended" msgstr "" -#: lms/lms/utils.py:1776 +#: lms/lms/utils.py:1777 msgid "This coupon has expired." msgstr "" -#: lms/lms/utils.py:1779 +#: lms/lms/utils.py:1780 msgid "This coupon has reached its maximum usage limit." msgstr "" -#: lms/lms/utils.py:1788 +#: lms/lms/utils.py:1789 msgid "This coupon is not applicable to this {0}." msgstr "" @@ -6742,7 +6737,7 @@ msgstr "" msgid "This course has:" msgstr "" -#: lms/lms/utils.py:1707 +#: lms/lms/utils.py:1708 msgid "This course is free." msgstr "Dieser Kurs ist kostenlos." @@ -6799,7 +6794,7 @@ msgid "Thursday" msgstr "Donnerstag" #. Label of the time (Time) field in DocType 'LMS Live Class' -#: frontend/src/components/Modals/Event.vue:48 +#: frontend/src/components/Modals/Event.vue:54 #: frontend/src/components/Modals/LiveClassModal.vue:52 #: frontend/src/components/Quiz.vue:58 #: lms/lms/doctype/lms_live_class/lms_live_class.json @@ -6934,7 +6929,7 @@ msgstr "An" msgid "To Date" msgstr "Bis-Datum" -#: lms/lms/utils.py:1721 +#: lms/lms/utils.py:1722 msgid "To join this batch, please contact the Administrator." msgstr "Um dieser Gruppe beizutreten, wenden Sie sich bitte an den Administrator." @@ -7056,7 +7051,7 @@ msgstr "Das Datum „Nicht verfügbar ab“ kann nicht größer sein als das Dat msgid "Under Review" msgstr "Wird überprüft" -#: frontend/src/pages/Batches.vue:330 frontend/src/pages/Courses.vue:356 +#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:355 msgid "Unpublished" msgstr "" @@ -7077,8 +7072,8 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Label of the upcoming (Check) field in DocType 'LMS Course' -#: frontend/src/pages/Batches.vue:328 frontend/src/pages/CourseForm.vue:117 -#: frontend/src/pages/Courses.vue:347 +#: frontend/src/pages/Batches.vue:330 frontend/src/pages/CourseForm.vue:117 +#: frontend/src/pages/Courses.vue:346 #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_course/lms_course.json msgid "Upcoming" @@ -7220,7 +7215,7 @@ msgid "View Applications" msgstr "" #: frontend/src/components/CertificationLinks.vue:10 -#: frontend/src/components/Modals/Event.vue:67 +#: frontend/src/components/Modals/Event.vue:73 msgid "View Certificate" msgstr "" @@ -7327,6 +7322,11 @@ msgstr "" msgid "Withdrawn" msgstr "Zurückgezogen" +#. Option for the 'Open to' (Select) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Work" +msgstr "" + #. Label of the work_environment (Section Break) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Work Environment" @@ -7427,7 +7427,7 @@ msgstr "" msgid "You cannot enroll in an unpublished course." msgstr "" -#: lms/lms/utils.py:2085 +#: lms/lms/utils.py:2086 msgid "You cannot enroll in an unpublished program." msgstr "" @@ -7443,11 +7443,11 @@ msgstr "" msgid "You cannot schedule evaluations for past slots." msgstr "" -#: lms/lms/utils.py:2259 +#: lms/lms/utils.py:2260 msgid "You do not have access to this batch." msgstr "" -#: lms/lms/utils.py:2242 +#: lms/lms/utils.py:2243 msgid "You do not have access to this course." msgstr "" diff --git a/lms/locale/eo.po b/lms/locale/eo.po index c869c974..85b0911b 100644 --- a/lms/locale/eo.po +++ b/lms/locale/eo.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n" -"POT-Creation-Date: 2026-01-16 16:04+0000\n" -"PO-Revision-Date: 2026-01-19 20:13\n" +"POT-Creation-Date: 2026-01-23 16:05+0000\n" +"PO-Revision-Date: 2026-02-05 06:43\n" "Last-Translator: jannat@frappe.io\n" "Language-Team: Esperanto\n" "MIME-Version: 1.0\n" @@ -319,7 +319,7 @@ msgid "Administrator" msgstr "crwdns160952:0crwdne160952:0" #. Name of a role -#: frontend/src/pages/Batches.vue:319 lms/lms/doctype/lms_badge/lms_badge.json +#: frontend/src/pages/Batches.vue:321 lms/lms/doctype/lms_badge/lms_badge.json msgid "All" msgstr "crwdns149250:0crwdne149250:0" @@ -486,7 +486,7 @@ msgstr "crwdns149292:0crwdne149292:0" msgid "Apps" msgstr "crwdns149294:0crwdne149294:0" -#: frontend/src/pages/Batches.vue:329 +#: frontend/src/pages/Batches.vue:331 msgid "Archived" msgstr "crwdns152268:0crwdne152268:0" @@ -753,7 +753,7 @@ msgstr "crwdns162040:0{0}crwdnd162040:0{1}crwdne162040:0" #. Label of the batch_name (Link) field in DocType 'LMS Certificate' #. Label of the batch_name (Link) field in DocType 'LMS Certificate Request' #. Label of the batch_name (Link) field in DocType 'LMS Live Class' -#: frontend/src/components/Modals/Event.vue:32 +#: frontend/src/components/Modals/Event.vue:35 #: frontend/src/components/Settings/BadgeForm.vue:195 #: frontend/src/components/Settings/Badges.vue:200 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125 @@ -878,7 +878,7 @@ msgid "Batch:" msgstr "crwdns152469:0crwdne152469:0" #. Label of the batches (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/Batches.vue:350 frontend/src/pages/Batches.vue:357 +#: frontend/src/pages/Batches.vue:352 frontend/src/pages/Batches.vue:359 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121 msgid "Batches" msgstr "crwdns149380:0crwdne149380:0" @@ -1023,7 +1023,7 @@ msgstr "crwdns149424:0crwdne149424:0" msgid "Certificate of Completion" msgstr "crwdns152601:0crwdne152601:0" -#: frontend/src/components/Modals/Event.vue:347 +#: frontend/src/components/Modals/Event.vue:353 msgid "Certificate saved successfully" msgstr "crwdns149426:0crwdne149426:0" @@ -1043,7 +1043,7 @@ msgstr "crwdns151924:0crwdne151924:0" #. Label of a chart in the LMS Workspace #. Label of a Card Break in the LMS Workspace #. Label of a Link in the LMS Workspace -#: frontend/src/components/Modals/Event.vue:411 +#: frontend/src/components/Modals/Event.vue:427 #: frontend/src/components/Sidebar/AppSidebar.vue:550 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100 #: frontend/src/pages/CourseCertification.vue:10 @@ -1771,7 +1771,7 @@ msgstr "crwdns161520:0{0}crwdne161520:0" #: frontend/src/components/Modals/BatchStudentProgress.vue:95 #: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/CourseCertification.vue:127 -#: frontend/src/pages/Courses.vue:365 frontend/src/pages/Courses.vue:372 +#: frontend/src/pages/Courses.vue:364 frontend/src/pages/Courses.vue:371 #: frontend/src/pages/Programs/ProgramForm.vue:49 #: frontend/src/pages/Programs/Programs.vue:35 #: lms/lms/doctype/lms_batch/lms_batch.json @@ -1878,7 +1878,7 @@ msgstr "crwdns154451:0crwdne154451:0" msgid "Create your first quiz" msgstr "crwdns154453:0crwdne154453:0" -#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:355 +#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:354 msgid "Created" msgstr "crwdns152116:0crwdne152116:0" @@ -1954,7 +1954,7 @@ msgstr "crwdns161522:0crwdne161522:0" #. Label of the date (Date) field in DocType 'LMS Certificate Request' #. Label of the date (Date) field in DocType 'LMS Live Class' #. Label of the date (Date) field in DocType 'Scheduled Flow' -#: frontend/src/components/Modals/Event.vue:40 +#: frontend/src/components/Modals/Event.vue:46 #: frontend/src/components/Modals/LiveClassModal.vue:29 #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json @@ -2241,7 +2241,7 @@ msgstr "crwdns160986:0crwdne160986:0" msgid "Edit Email Template" msgstr "crwdns155182:0crwdne155182:0" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:13 msgid "Edit Payment Gateway" msgstr "crwdns159752:0crwdne159752:0" @@ -2424,7 +2424,7 @@ msgstr "crwdns158508:0crwdne158508:0" msgid "Enroll Now" msgstr "crwdns149722:0crwdne149722:0" -#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:358 +#: frontend/src/pages/Batches.vue:334 frontend/src/pages/Courses.vue:357 #: frontend/src/pages/Programs/StudentPrograms.vue:96 msgid "Enrolled" msgstr "crwdns152272:0crwdne152272:0" @@ -2526,7 +2526,7 @@ msgstr "crwdns155194:0crwdne155194:0" #. Label of a Link in the LMS Workspace #. Label of a shortcut in the LMS Workspace -#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json +#: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json msgid "Evaluation" msgstr "crwdns149746:0crwdne149746:0" @@ -2551,7 +2551,7 @@ msgstr "crwdns149752:0crwdne149752:0" msgid "Evaluation end date cannot be less than the batch end date." msgstr "crwdns149754:0crwdne149754:0" -#: frontend/src/components/Modals/Event.vue:286 +#: frontend/src/components/Modals/Event.vue:292 msgid "Evaluation saved successfully" msgstr "crwdns149756:0crwdne149756:0" @@ -2664,7 +2664,7 @@ msgstr "crwdns160990:0crwdne160990:0" #. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:33 -#: frontend/src/components/Modals/Event.vue:144 +#: frontend/src/components/Modals/Event.vue:150 #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Expiry Date" msgstr "crwdns149780:0crwdne149780:0" @@ -2695,7 +2695,7 @@ msgstr "crwdns149786:0crwdne149786:0" #. Submission' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:396 +#: frontend/src/components/Modals/Event.vue:412 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Fail" @@ -3209,7 +3209,7 @@ msgstr "crwdns161528:0crwdne161528:0" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' #. Option for the 'Status' (Select) field in DocType 'LMS Course' -#: frontend/src/components/Modals/Event.vue:388 +#: frontend/src/components/Modals/Event.vue:404 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_course/lms_course.json msgid "In Progress" @@ -3353,7 +3353,7 @@ msgstr "crwdns151636:0crwdne151636:0" #. Label of the issue_date (Date) field in DocType 'Certification' #. Label of the issue_date (Date) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:28 -#: frontend/src/components/Modals/Event.vue:138 +#: frontend/src/components/Modals/Event.vue:144 #: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Issue Date" @@ -3456,7 +3456,7 @@ msgstr "crwdns149996:0crwdne149996:0" msgid "Join Call" msgstr "crwdns152499:0crwdne152499:0" -#: frontend/src/components/Modals/Event.vue:78 +#: frontend/src/components/Modals/Event.vue:84 msgid "Join Meeting" msgstr "crwdns149998:0crwdne149998:0" @@ -3896,7 +3896,7 @@ msgstr "crwdns150098:0crwdne150098:0" msgid "LinkedIn ID" msgstr "crwdns150100:0crwdne150100:0" -#: frontend/src/pages/Courses.vue:341 +#: frontend/src/pages/Courses.vue:340 msgid "Live" msgstr "crwdns150106:0crwdne150106:0" @@ -4429,7 +4429,7 @@ msgstr "crwdns155198:0crwdne155198:0" #: frontend/src/components/Settings/Members.vue:17 #: frontend/src/components/Settings/PaymentGateways.vue:16 #: frontend/src/components/Settings/ZoomSettings.vue:17 -#: frontend/src/pages/Courses.vue:344 +#: frontend/src/pages/Courses.vue:343 #: frontend/src/pages/Programs/Programs.vue:10 #: lms/lms/doctype/lms_badge/lms_badge.json msgid "New" @@ -4461,7 +4461,7 @@ msgstr "crwdns150222:0crwdne150222:0" msgid "New Job Applicant" msgstr "crwdns150224:0crwdne150224:0" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:12 msgid "New Payment Gateway" msgstr "crwdns159762:0crwdne159762:0" @@ -4778,13 +4778,8 @@ msgstr "crwdns164070:0crwdne164070:0" #: frontend/src/components/UserAvatar.vue:11 #: frontend/src/pages/CertifiedParticipants.vue:46 #: frontend/src/pages/Profile.vue:69 -msgid "Open to Opportunities" -msgstr "crwdns163998:0crwdne163998:0" - -#. Option for the 'Open to' (Select) field in DocType 'User' -#: lms/fixtures/custom_field.json -msgid "Opportunities" -msgstr "crwdns164072:0crwdne164072:0" +msgid "Open to Work" +msgstr "crwdns194934:0crwdne194934:0" #. Label of the option (Data) field in DocType 'LMS Option' #: frontend/src/components/Modals/Question.vue:70 @@ -4924,7 +4919,7 @@ msgstr "crwdns150360:0crwdne150360:0" #. Submission' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:392 +#: frontend/src/components/Modals/Event.vue:408 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Pass" @@ -5054,7 +5049,7 @@ msgstr "crwdns150388:0crwdne150388:0" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' #. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' -#: frontend/src/components/Modals/Event.vue:384 +#: frontend/src/components/Modals/Event.vue:400 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json msgid "Pending" @@ -5194,7 +5189,7 @@ msgstr "crwdns150426:0crwdne150426:0" msgid "Please login to continue with payment." msgstr "crwdns150428:0crwdne150428:0" -#: lms/lms/utils.py:2081 +#: lms/lms/utils.py:2082 msgid "Please login to enroll in the program." msgstr "crwdns158528:0crwdne158528:0" @@ -5525,7 +5520,7 @@ msgstr "crwdns150494:0crwdne150494:0" #. Label of the published (Check) field in DocType 'LMS Course' #. Label of the published (Check) field in DocType 'LMS Program' #: frontend/src/components/Modals/BulkCertificates.vue:51 -#: frontend/src/components/Modals/Event.vue:122 +#: frontend/src/components/Modals/Event.vue:128 #: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105 #: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/StudentPrograms.vue:100 @@ -5693,7 +5688,7 @@ msgstr "crwdns155298:0crwdne155298:0" #. Label of the rating (Data) field in DocType 'LMS Course' #. Label of the rating (Rating) field in DocType 'LMS Course Review' #: frontend/src/components/CourseCardOverlay.vue:147 -#: frontend/src/components/Modals/Event.vue:92 +#: frontend/src/components/Modals/Event.vue:98 #: frontend/src/components/Modals/ReviewModal.vue:18 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_course/lms_course.json @@ -5929,14 +5924,14 @@ msgstr "crwdns150610:0crwdne150610:0" #: frontend/src/components/Modals/AssignmentForm.vue:65 #: frontend/src/components/Modals/EditProfile.vue:121 #: frontend/src/components/Modals/EmailTemplateModal.vue:12 -#: frontend/src/components/Modals/Event.vue:115 -#: frontend/src/components/Modals/Event.vue:151 +#: frontend/src/components/Modals/Event.vue:121 +#: frontend/src/components/Modals/Event.vue:157 #: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeForm.vue:78 #: frontend/src/components/Settings/Coupons/CouponDetails.vue:78 -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:41 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:129 #: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17 #: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14 @@ -6048,7 +6043,7 @@ msgstr "crwdns159374:0crwdne159374:0" msgid "Select Date" msgstr "crwdns155902:0crwdne155902:0" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:26 msgid "Select Payment Gateway" msgstr "crwdns159776:0crwdne159776:0" @@ -6364,7 +6359,7 @@ msgstr "crwdns150732:0crwdne150732:0" #. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Submission' #. Label of the status (Select) field in DocType 'LMS Test Case Submission' -#: frontend/src/components/Modals/Event.vue:99 +#: frontend/src/components/Modals/Event.vue:105 #: frontend/src/components/Settings/Badges.vue:228 #: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/pages/AssignmentSubmissionList.vue:19 @@ -6475,7 +6470,7 @@ msgstr "crwdns158542:0crwdne158542:0" #. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:106 +#: frontend/src/components/Modals/Event.vue:112 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Summary" msgstr "crwdns150770:0crwdne150770:0" @@ -6571,7 +6566,7 @@ msgstr "crwdns150780:0crwdne150780:0" #. Label of the template (Link) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:43 -#: frontend/src/components/Modals/Event.vue:127 +#: frontend/src/components/Modals/Event.vue:133 #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Template" msgstr "crwdns150782:0crwdne150782:0" @@ -6620,7 +6615,7 @@ msgstr "crwdns155204:0crwdne155204:0" msgid "Thanks and Regards" msgstr "crwdns150794:0crwdne150794:0" -#: lms/lms/utils.py:2247 +#: lms/lms/utils.py:2248 msgid "The batch does not exist." msgstr "crwdns162058:0crwdne162058:0" @@ -6628,7 +6623,7 @@ msgstr "crwdns162058:0crwdne162058:0" msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session." msgstr "crwdns152517:0crwdne152517:0" -#: lms/lms/utils.py:1747 +#: lms/lms/utils.py:1748 msgid "The coupon code '{0}' is invalid." msgstr "crwdns161020:0{0}crwdne161020:0" @@ -6652,7 +6647,7 @@ msgstr "crwdns164126:0{0}crwdne164126:0" msgid "The last day to schedule your evaluations is " msgstr "crwdns164012:0crwdne164012:0" -#: lms/lms/utils.py:2231 +#: lms/lms/utils.py:2232 msgid "The lesson does not exist." msgstr "crwdns162060:0crwdne162060:0" @@ -6660,7 +6655,7 @@ msgstr "crwdns162060:0crwdne162060:0" msgid "The slot is already booked by another participant." msgstr "crwdns150802:0crwdne150802:0" -#: lms/lms/utils.py:1361 lms/lms/utils.py:1477 lms/lms/utils.py:1944 +#: lms/lms/utils.py:1362 lms/lms/utils.py:1478 lms/lms/utils.py:1945 msgid "The specified batch does not exist." msgstr "crwdns162062:0crwdne162062:0" @@ -6726,15 +6721,15 @@ msgstr "crwdns150818:0crwdne150818:0" msgid "This class has ended" msgstr "crwdns152144:0crwdne152144:0" -#: lms/lms/utils.py:1776 +#: lms/lms/utils.py:1777 msgid "This coupon has expired." msgstr "crwdns161022:0crwdne161022:0" -#: lms/lms/utils.py:1779 +#: lms/lms/utils.py:1780 msgid "This coupon has reached its maximum usage limit." msgstr "crwdns161024:0crwdne161024:0" -#: lms/lms/utils.py:1788 +#: lms/lms/utils.py:1789 msgid "This coupon is not applicable to this {0}." msgstr "crwdns161026:0{0}crwdne161026:0" @@ -6742,7 +6737,7 @@ msgstr "crwdns161026:0{0}crwdne161026:0" msgid "This course has:" msgstr "crwdns150820:0crwdne150820:0" -#: lms/lms/utils.py:1707 +#: lms/lms/utils.py:1708 msgid "This course is free." msgstr "crwdns150822:0crwdne150822:0" @@ -6799,7 +6794,7 @@ msgid "Thursday" msgstr "crwdns150832:0crwdne150832:0" #. Label of the time (Time) field in DocType 'LMS Live Class' -#: frontend/src/components/Modals/Event.vue:48 +#: frontend/src/components/Modals/Event.vue:54 #: frontend/src/components/Modals/LiveClassModal.vue:52 #: frontend/src/components/Quiz.vue:58 #: lms/lms/doctype/lms_live_class/lms_live_class.json @@ -6934,7 +6929,7 @@ msgstr "crwdns150852:0crwdne150852:0" msgid "To Date" msgstr "crwdns150854:0crwdne150854:0" -#: lms/lms/utils.py:1721 +#: lms/lms/utils.py:1722 msgid "To join this batch, please contact the Administrator." msgstr "crwdns150858:0crwdne150858:0" @@ -7056,7 +7051,7 @@ msgstr "crwdns150888:0crwdne150888:0" msgid "Under Review" msgstr "crwdns150890:0crwdne150890:0" -#: frontend/src/pages/Batches.vue:330 frontend/src/pages/Courses.vue:356 +#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:355 msgid "Unpublished" msgstr "crwdns152296:0crwdne152296:0" @@ -7077,8 +7072,8 @@ msgstr "crwdns150898:0crwdne150898:0" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Label of the upcoming (Check) field in DocType 'LMS Course' -#: frontend/src/pages/Batches.vue:328 frontend/src/pages/CourseForm.vue:117 -#: frontend/src/pages/Courses.vue:347 +#: frontend/src/pages/Batches.vue:330 frontend/src/pages/CourseForm.vue:117 +#: frontend/src/pages/Courses.vue:346 #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_course/lms_course.json msgid "Upcoming" @@ -7220,7 +7215,7 @@ msgid "View Applications" msgstr "crwdns160738:0crwdne160738:0" #: frontend/src/components/CertificationLinks.vue:10 -#: frontend/src/components/Modals/Event.vue:67 +#: frontend/src/components/Modals/Event.vue:73 msgid "View Certificate" msgstr "crwdns150940:0crwdne150940:0" @@ -7327,6 +7322,11 @@ msgstr "crwdns150962:0crwdne150962:0" msgid "Withdrawn" msgstr "crwdns150964:0crwdne150964:0" +#. Option for the 'Open to' (Select) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Work" +msgstr "crwdns194936:0crwdne194936:0" + #. Label of the work_environment (Section Break) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Work Environment" @@ -7427,7 +7427,7 @@ msgstr "crwdns154792:0crwdne154792:0" msgid "You cannot enroll in an unpublished course." msgstr "crwdns162070:0crwdne162070:0" -#: lms/lms/utils.py:2085 +#: lms/lms/utils.py:2086 msgid "You cannot enroll in an unpublished program." msgstr "crwdns162072:0crwdne162072:0" @@ -7443,11 +7443,11 @@ msgstr "crwdns150996:0{0}crwdne150996:0" msgid "You cannot schedule evaluations for past slots." msgstr "crwdns150998:0crwdne150998:0" -#: lms/lms/utils.py:2259 +#: lms/lms/utils.py:2260 msgid "You do not have access to this batch." msgstr "crwdns162076:0crwdne162076:0" -#: lms/lms/utils.py:2242 +#: lms/lms/utils.py:2243 msgid "You do not have access to this course." msgstr "crwdns162078:0crwdne162078:0" diff --git a/lms/locale/es.po b/lms/locale/es.po index f6759dd5..391ea4e7 100644 --- a/lms/locale/es.po +++ b/lms/locale/es.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n" -"POT-Creation-Date: 2026-01-16 16:04+0000\n" -"PO-Revision-Date: 2026-01-21 20:16\n" +"POT-Creation-Date: 2026-01-23 16:05+0000\n" +"PO-Revision-Date: 2026-02-05 06:43\n" "Last-Translator: jannat@frappe.io\n" "Language-Team: Spanish\n" "MIME-Version: 1.0\n" @@ -319,7 +319,7 @@ msgid "Administrator" msgstr "Administrador" #. Name of a role -#: frontend/src/pages/Batches.vue:319 lms/lms/doctype/lms_badge/lms_badge.json +#: frontend/src/pages/Batches.vue:321 lms/lms/doctype/lms_badge/lms_badge.json msgid "All" msgstr "Todos" @@ -486,7 +486,7 @@ msgstr "Aprobado" msgid "Apps" msgstr "Apps" -#: frontend/src/pages/Batches.vue:329 +#: frontend/src/pages/Batches.vue:331 msgid "Archived" msgstr "Archivado" @@ -753,7 +753,7 @@ msgstr "" #. Label of the batch_name (Link) field in DocType 'LMS Certificate' #. Label of the batch_name (Link) field in DocType 'LMS Certificate Request' #. Label of the batch_name (Link) field in DocType 'LMS Live Class' -#: frontend/src/components/Modals/Event.vue:32 +#: frontend/src/components/Modals/Event.vue:35 #: frontend/src/components/Settings/BadgeForm.vue:195 #: frontend/src/components/Settings/Badges.vue:200 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125 @@ -878,7 +878,7 @@ msgid "Batch:" msgstr "Lote:" #. Label of the batches (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/Batches.vue:350 frontend/src/pages/Batches.vue:357 +#: frontend/src/pages/Batches.vue:352 frontend/src/pages/Batches.vue:359 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121 msgid "Batches" msgstr "Lotes" @@ -1023,7 +1023,7 @@ msgstr "Enlace de certificado" msgid "Certificate of Completion" msgstr "" -#: frontend/src/components/Modals/Event.vue:347 +#: frontend/src/components/Modals/Event.vue:353 msgid "Certificate saved successfully" msgstr "Certificado guardado correctamente" @@ -1043,7 +1043,7 @@ msgstr "" #. Label of a chart in the LMS Workspace #. Label of a Card Break in the LMS Workspace #. Label of a Link in the LMS Workspace -#: frontend/src/components/Modals/Event.vue:411 +#: frontend/src/components/Modals/Event.vue:427 #: frontend/src/components/Sidebar/AppSidebar.vue:550 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100 #: frontend/src/pages/CourseCertification.vue:10 @@ -1771,7 +1771,7 @@ msgstr "" #: frontend/src/components/Modals/BatchStudentProgress.vue:95 #: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/CourseCertification.vue:127 -#: frontend/src/pages/Courses.vue:365 frontend/src/pages/Courses.vue:372 +#: frontend/src/pages/Courses.vue:364 frontend/src/pages/Courses.vue:371 #: frontend/src/pages/Programs/ProgramForm.vue:49 #: frontend/src/pages/Programs/Programs.vue:35 #: lms/lms/doctype/lms_batch/lms_batch.json @@ -1878,7 +1878,7 @@ msgstr "" msgid "Create your first quiz" msgstr "" -#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:355 +#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:354 msgid "Created" msgstr "Creado" @@ -1899,7 +1899,7 @@ msgstr "" #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_payment/lms_payment.json msgid "Currency" -msgstr "Divisa / Moneda" +msgstr "Divisa" #. Label of the current_lesson (Link) field in DocType 'LMS Enrollment' #: lms/lms/doctype/lms_enrollment/lms_enrollment.json @@ -1954,7 +1954,7 @@ msgstr "Importación de Datos" #. Label of the date (Date) field in DocType 'LMS Certificate Request' #. Label of the date (Date) field in DocType 'LMS Live Class' #. Label of the date (Date) field in DocType 'Scheduled Flow' -#: frontend/src/components/Modals/Event.vue:40 +#: frontend/src/components/Modals/Event.vue:46 #: frontend/src/components/Modals/LiveClassModal.vue:29 #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json @@ -2086,7 +2086,7 @@ msgstr "" #: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/work_experience/work_experience.json msgid "Description" -msgstr "" +msgstr "Descripción" #: frontend/src/components/Sidebar/Apps.vue:50 msgid "Desk" @@ -2195,7 +2195,7 @@ msgstr "Se encontraron opciones duplicadas para esta pregunta." #: 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 "Duración" #. Label of the duration (Data) field in DocType 'LMS Quiz' #: frontend/src/pages/QuizForm.vue:67 lms/lms/doctype/lms_quiz/lms_quiz.json @@ -2241,7 +2241,7 @@ msgstr "" msgid "Edit Email Template" msgstr "" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:13 msgid "Edit Payment Gateway" msgstr "" @@ -2424,7 +2424,7 @@ msgstr "" msgid "Enroll Now" msgstr "Inscribirse ahora" -#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:358 +#: frontend/src/pages/Batches.vue:334 frontend/src/pages/Courses.vue:357 #: frontend/src/pages/Programs/StudentPrograms.vue:96 msgid "Enrolled" msgstr "" @@ -2526,7 +2526,7 @@ msgstr "" #. Label of a Link in the LMS Workspace #. Label of a shortcut in the LMS Workspace -#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json +#: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json msgid "Evaluation" msgstr "Evaluación" @@ -2551,7 +2551,7 @@ msgstr "Solicitud de evaluación" msgid "Evaluation end date cannot be less than the batch end date." msgstr "La fecha de finalización de la evaluación no puede ser inferior a la fecha de finalización" -#: frontend/src/components/Modals/Event.vue:286 +#: frontend/src/components/Modals/Event.vue:292 msgid "Evaluation saved successfully" msgstr "La evaluación se guardó correctamente" @@ -2664,7 +2664,7 @@ msgstr "" #. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:33 -#: frontend/src/components/Modals/Event.vue:144 +#: frontend/src/components/Modals/Event.vue:150 #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Expiry Date" msgstr "Fecha de caducidad" @@ -2695,7 +2695,7 @@ msgstr "Explorar más" #. Submission' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:396 +#: frontend/src/components/Modals/Event.vue:412 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Fail" @@ -3183,7 +3183,7 @@ msgstr "Si desea preguntas abiertas, asegúrese de que cada pregunta del cuestio #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_badge/lms_badge.json msgid "Image" -msgstr "" +msgstr "Imagen" #: frontend/src/components/Modals/EditCoverImage.vue:58 #: frontend/src/components/UnsplashImageBrowser.vue:52 @@ -3209,7 +3209,7 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' #. Option for the 'Status' (Select) field in DocType 'LMS Course' -#: frontend/src/components/Modals/Event.vue:388 +#: frontend/src/components/Modals/Event.vue:404 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_course/lms_course.json msgid "In Progress" @@ -3353,7 +3353,7 @@ msgstr "" #. Label of the issue_date (Date) field in DocType 'Certification' #. Label of the issue_date (Date) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:28 -#: frontend/src/components/Modals/Event.vue:138 +#: frontend/src/components/Modals/Event.vue:144 #: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Issue Date" @@ -3391,7 +3391,7 @@ msgstr "María Pérez" #. Exercise' #: lms/lms/doctype/lms_programming_exercise/lms_programming_exercise.json msgid "JavaScript" -msgstr "" +msgstr "JavaScript" #. Label of the job (Link) field in DocType 'LMS Job Application' #: frontend/src/pages/Search/Search.vue:237 @@ -3456,7 +3456,7 @@ msgstr "Unirse" msgid "Join Call" msgstr "" -#: frontend/src/components/Modals/Event.vue:78 +#: frontend/src/components/Modals/Event.vue:84 msgid "Join Meeting" msgstr "Unirse a la reunión" @@ -3896,7 +3896,7 @@ msgstr "Linkedin" msgid "LinkedIn ID" msgstr "ID de LinkedIn" -#: frontend/src/pages/Courses.vue:341 +#: frontend/src/pages/Courses.vue:340 msgid "Live" msgstr "En vivo" @@ -4417,7 +4417,7 @@ msgstr "Mi calendario" #: frontend/src/components/Modals/EmailTemplateModal.vue:24 msgid "Name" -msgstr "" +msgstr "Nombre" #. Option for the 'Event' (Select) field in DocType 'LMS Badge' #: frontend/src/components/Settings/BadgeAssignments.vue:21 @@ -4429,7 +4429,7 @@ msgstr "" #: frontend/src/components/Settings/Members.vue:17 #: frontend/src/components/Settings/PaymentGateways.vue:16 #: frontend/src/components/Settings/ZoomSettings.vue:17 -#: frontend/src/pages/Courses.vue:344 +#: frontend/src/pages/Courses.vue:343 #: frontend/src/pages/Programs/Programs.vue:10 #: lms/lms/doctype/lms_badge/lms_badge.json msgid "New" @@ -4461,7 +4461,7 @@ msgstr "Nuevo trabajo" msgid "New Job Applicant" msgstr "Nuevo solicitante de trabajo" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:12 msgid "New Payment Gateway" msgstr "" @@ -4778,14 +4778,9 @@ msgstr "" #: frontend/src/components/UserAvatar.vue:11 #: frontend/src/pages/CertifiedParticipants.vue:46 #: frontend/src/pages/Profile.vue:69 -msgid "Open to Opportunities" +msgid "Open to Work" msgstr "" -#. Option for the 'Open to' (Select) field in DocType 'User' -#: lms/fixtures/custom_field.json -msgid "Opportunities" -msgstr "Oportunidades" - #. Label of the option (Data) field in DocType 'LMS Option' #: frontend/src/components/Modals/Question.vue:70 #: lms/lms/doctype/lms_option/lms_option.json @@ -4924,7 +4919,7 @@ msgstr "Parcialmente completo" #. Submission' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:392 +#: frontend/src/components/Modals/Event.vue:408 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Pass" @@ -5054,7 +5049,7 @@ msgstr "La aplicación de pagos no está instalada" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' #. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' -#: frontend/src/components/Modals/Event.vue:384 +#: frontend/src/components/Modals/Event.vue:400 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json msgid "Pending" @@ -5194,7 +5189,7 @@ msgstr "Por favor inicie sesión para acceder a esta página." msgid "Please login to continue with payment." msgstr "Por favor inicie sesión para continuar con el pago." -#: lms/lms/utils.py:2081 +#: lms/lms/utils.py:2082 msgid "Please login to enroll in the program." msgstr "" @@ -5525,7 +5520,7 @@ msgstr "Publicar en la página del participante" #. Label of the published (Check) field in DocType 'LMS Course' #. Label of the published (Check) field in DocType 'LMS Program' #: frontend/src/components/Modals/BulkCertificates.vue:51 -#: frontend/src/components/Modals/Event.vue:122 +#: frontend/src/components/Modals/Event.vue:128 #: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105 #: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/StudentPrograms.vue:100 @@ -5563,7 +5558,7 @@ msgstr "Morado" #. Exercise' #: lms/lms/doctype/lms_programming_exercise/lms_programming_exercise.json msgid "Python" -msgstr "" +msgstr "Python" #. Label of the question (Small Text) field in DocType 'Course Lesson' #. Label of the question (Text Editor) field in DocType 'LMS Assignment' @@ -5693,13 +5688,13 @@ msgstr "" #. Label of the rating (Data) field in DocType 'LMS Course' #. Label of the rating (Rating) field in DocType 'LMS Course Review' #: frontend/src/components/CourseCardOverlay.vue:147 -#: frontend/src/components/Modals/Event.vue:92 +#: frontend/src/components/Modals/Event.vue:98 #: frontend/src/components/Modals/ReviewModal.vue:18 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course_review/lms_course_review.json msgid "Rating" -msgstr "" +msgstr "Clasificación" #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.py:18 msgid "Rating cannot be 0" @@ -5929,14 +5924,14 @@ msgstr "" #: frontend/src/components/Modals/AssignmentForm.vue:65 #: frontend/src/components/Modals/EditProfile.vue:121 #: frontend/src/components/Modals/EmailTemplateModal.vue:12 -#: frontend/src/components/Modals/Event.vue:115 -#: frontend/src/components/Modals/Event.vue:151 +#: frontend/src/components/Modals/Event.vue:121 +#: frontend/src/components/Modals/Event.vue:157 #: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeForm.vue:78 #: frontend/src/components/Settings/Coupons/CouponDetails.vue:78 -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:41 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:129 #: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17 #: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14 @@ -6048,7 +6043,7 @@ msgstr "" msgid "Select Date" msgstr "" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:26 msgid "Select Payment Gateway" msgstr "" @@ -6114,7 +6109,7 @@ msgstr "" #: frontend/src/components/Controls/ColorSwatches.vue:13 msgid "Set Color" -msgstr "" +msgstr "Establecer Color" #: lms/templates/emails/community_course_membership.html:1 msgid "Set your Password" @@ -6364,7 +6359,7 @@ msgstr "" #. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Submission' #. Label of the status (Select) field in DocType 'LMS Test Case Submission' -#: frontend/src/components/Modals/Event.vue:99 +#: frontend/src/components/Modals/Event.vue:105 #: frontend/src/components/Settings/Badges.vue:228 #: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/pages/AssignmentSubmissionList.vue:19 @@ -6475,7 +6470,7 @@ msgstr "" #. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:106 +#: frontend/src/components/Modals/Event.vue:112 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Summary" msgstr "Resumen" @@ -6571,7 +6566,7 @@ msgstr "Trabajo en equipo" #. Label of the template (Link) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:43 -#: frontend/src/components/Modals/Event.vue:127 +#: frontend/src/components/Modals/Event.vue:133 #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Template" msgstr "" @@ -6607,7 +6602,7 @@ msgstr "" #: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json msgid "Text" -msgstr "" +msgstr "Texto" #: frontend/src/components/BatchFeedback.vue:6 msgid "Thank you for providing your feedback." @@ -6620,7 +6615,7 @@ msgstr "" msgid "Thanks and Regards" msgstr "Gracias y saludos" -#: lms/lms/utils.py:2247 +#: lms/lms/utils.py:2248 msgid "The batch does not exist." msgstr "" @@ -6628,7 +6623,7 @@ msgstr "" msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session." msgstr "" -#: lms/lms/utils.py:1747 +#: lms/lms/utils.py:1748 msgid "The coupon code '{0}' is invalid." msgstr "" @@ -6652,7 +6647,7 @@ msgstr "" msgid "The last day to schedule your evaluations is " msgstr "" -#: lms/lms/utils.py:2231 +#: lms/lms/utils.py:2232 msgid "The lesson does not exist." msgstr "" @@ -6660,7 +6655,7 @@ msgstr "" msgid "The slot is already booked by another participant." msgstr "La plaza ya está reservada por otro participante." -#: lms/lms/utils.py:1361 lms/lms/utils.py:1477 lms/lms/utils.py:1944 +#: lms/lms/utils.py:1362 lms/lms/utils.py:1478 lms/lms/utils.py:1945 msgid "The specified batch does not exist." msgstr "" @@ -6726,15 +6721,15 @@ msgstr "Este certificado no caduca" msgid "This class has ended" msgstr "" -#: lms/lms/utils.py:1776 +#: lms/lms/utils.py:1777 msgid "This coupon has expired." msgstr "" -#: lms/lms/utils.py:1779 +#: lms/lms/utils.py:1780 msgid "This coupon has reached its maximum usage limit." msgstr "" -#: lms/lms/utils.py:1788 +#: lms/lms/utils.py:1789 msgid "This coupon is not applicable to this {0}." msgstr "" @@ -6742,7 +6737,7 @@ msgstr "" msgid "This course has:" msgstr "Este curso tiene:" -#: lms/lms/utils.py:1707 +#: lms/lms/utils.py:1708 msgid "This course is free." msgstr "Este curso es gratuito." @@ -6799,7 +6794,7 @@ msgid "Thursday" msgstr "" #. Label of the time (Time) field in DocType 'LMS Live Class' -#: frontend/src/components/Modals/Event.vue:48 +#: frontend/src/components/Modals/Event.vue:54 #: frontend/src/components/Modals/LiveClassModal.vue:52 #: frontend/src/components/Quiz.vue:58 #: lms/lms/doctype/lms_live_class/lms_live_class.json @@ -6934,7 +6929,7 @@ msgstr "" msgid "To Date" msgstr "" -#: lms/lms/utils.py:1721 +#: lms/lms/utils.py:1722 msgid "To join this batch, please contact the Administrator." msgstr "Para unirse a este lote, comuníquese con el Administrador." @@ -7010,7 +7005,7 @@ msgstr "" #: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json #: lms/templates/assessments.html:14 msgid "Type" -msgstr "" +msgstr "Tipo" #: frontend/src/utils/markdownParser.js:11 msgid "Type '/' for commands or select text to format" @@ -7030,7 +7025,7 @@ msgstr "Calificación de Reino Unido (ej., 1º, 2:2)" #: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json msgid "URL" -msgstr "" +msgstr "URL" #. Label of the uuid (Data) field in DocType 'LMS Live Class' #: lms/lms/doctype/lms_live_class/lms_live_class.json @@ -7056,7 +7051,7 @@ msgstr "No disponible Desde Fecha no puede ser mayor que No disponible Hasta Fec msgid "Under Review" msgstr "En Revisión" -#: frontend/src/pages/Batches.vue:330 frontend/src/pages/Courses.vue:356 +#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:355 msgid "Unpublished" msgstr "" @@ -7077,8 +7072,8 @@ msgstr "Rol no estructurado" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Label of the upcoming (Check) field in DocType 'LMS Course' -#: frontend/src/pages/Batches.vue:328 frontend/src/pages/CourseForm.vue:117 -#: frontend/src/pages/Courses.vue:347 +#: frontend/src/pages/Batches.vue:330 frontend/src/pages/CourseForm.vue:117 +#: frontend/src/pages/Courses.vue:346 #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_course/lms_course.json msgid "Upcoming" @@ -7220,7 +7215,7 @@ msgid "View Applications" msgstr "" #: frontend/src/components/CertificationLinks.vue:10 -#: frontend/src/components/Modals/Event.vue:67 +#: frontend/src/components/Modals/Event.vue:73 msgid "View Certificate" msgstr "Ver certificado" @@ -7327,6 +7322,11 @@ msgstr "Con esta certificación, ahora puede mostrar sus habilidades actualizada msgid "Withdrawn" msgstr "Retirado" +#. Option for the 'Open to' (Select) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Work" +msgstr "" + #. Label of the work_environment (Section Break) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Work Environment" @@ -7427,7 +7427,7 @@ msgstr "" msgid "You cannot enroll in an unpublished course." msgstr "" -#: lms/lms/utils.py:2085 +#: lms/lms/utils.py:2086 msgid "You cannot enroll in an unpublished program." msgstr "" @@ -7443,11 +7443,11 @@ msgstr "No puede programar evaluaciones después de {0}." msgid "You cannot schedule evaluations for past slots." msgstr "No puede programar evaluaciones para espacios anteriores." -#: lms/lms/utils.py:2259 +#: lms/lms/utils.py:2260 msgid "You do not have access to this batch." msgstr "" -#: lms/lms/utils.py:2242 +#: lms/lms/utils.py:2243 msgid "You do not have access to this course." msgstr "" @@ -7916,7 +7916,7 @@ msgstr "" #. Count format of shortcut in the LMS Workspace #: lms/lms/workspace/lms/lms.json msgid "{} Active" -msgstr "{} Activo" +msgstr "" #. Count format of shortcut in the LMS Workspace #: lms/lms/workspace/lms/lms.json diff --git a/lms/locale/fa.po b/lms/locale/fa.po index 64faf801..902d7606 100644 --- a/lms/locale/fa.po +++ b/lms/locale/fa.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n" -"POT-Creation-Date: 2026-01-16 16:04+0000\n" -"PO-Revision-Date: 2026-01-21 20:16\n" +"POT-Creation-Date: 2026-01-23 16:05+0000\n" +"PO-Revision-Date: 2026-02-05 06:43\n" "Last-Translator: jannat@frappe.io\n" "Language-Team: Persian\n" "MIME-Version: 1.0\n" @@ -319,7 +319,7 @@ msgid "Administrator" msgstr "ادمین" #. Name of a role -#: frontend/src/pages/Batches.vue:319 lms/lms/doctype/lms_badge/lms_badge.json +#: frontend/src/pages/Batches.vue:321 lms/lms/doctype/lms_badge/lms_badge.json msgid "All" msgstr "همه" @@ -486,7 +486,7 @@ msgstr "تأیید شده" msgid "Apps" msgstr "برنامه‌ها" -#: frontend/src/pages/Batches.vue:329 +#: frontend/src/pages/Batches.vue:331 msgid "Archived" msgstr "" @@ -753,7 +753,7 @@ msgstr "" #. Label of the batch_name (Link) field in DocType 'LMS Certificate' #. Label of the batch_name (Link) field in DocType 'LMS Certificate Request' #. Label of the batch_name (Link) field in DocType 'LMS Live Class' -#: frontend/src/components/Modals/Event.vue:32 +#: frontend/src/components/Modals/Event.vue:35 #: frontend/src/components/Settings/BadgeForm.vue:195 #: frontend/src/components/Settings/Badges.vue:200 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125 @@ -878,7 +878,7 @@ msgid "Batch:" msgstr "دسته:" #. Label of the batches (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/Batches.vue:350 frontend/src/pages/Batches.vue:357 +#: frontend/src/pages/Batches.vue:352 frontend/src/pages/Batches.vue:359 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121 msgid "Batches" msgstr "" @@ -1023,7 +1023,7 @@ msgstr "لینک گواهی" msgid "Certificate of Completion" msgstr "" -#: frontend/src/components/Modals/Event.vue:347 +#: frontend/src/components/Modals/Event.vue:353 msgid "Certificate saved successfully" msgstr "" @@ -1043,7 +1043,7 @@ msgstr "" #. Label of a chart in the LMS Workspace #. Label of a Card Break in the LMS Workspace #. Label of a Link in the LMS Workspace -#: frontend/src/components/Modals/Event.vue:411 +#: frontend/src/components/Modals/Event.vue:427 #: frontend/src/components/Sidebar/AppSidebar.vue:550 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100 #: frontend/src/pages/CourseCertification.vue:10 @@ -1454,7 +1454,7 @@ msgstr "" #. Label of the confirmation_email_template (Link) field in DocType 'LMS Batch' #: lms/lms/doctype/lms_batch/lms_batch.json msgid "Confirmation Email Template" -msgstr "" +msgstr "الگوی ایمیل تأیید" #: lms/lms/doctype/lms_certificate/lms_certificate.py:32 msgid "Congratulations on getting certified!" @@ -1771,7 +1771,7 @@ msgstr "" #: frontend/src/components/Modals/BatchStudentProgress.vue:95 #: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/CourseCertification.vue:127 -#: frontend/src/pages/Courses.vue:365 frontend/src/pages/Courses.vue:372 +#: frontend/src/pages/Courses.vue:364 frontend/src/pages/Courses.vue:371 #: frontend/src/pages/Programs/ProgramForm.vue:49 #: frontend/src/pages/Programs/Programs.vue:35 #: lms/lms/doctype/lms_batch/lms_batch.json @@ -1878,7 +1878,7 @@ msgstr "اولین دوره خود را ایجاد کنید" msgid "Create your first quiz" msgstr "" -#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:355 +#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:354 msgid "Created" msgstr "ایجاد شده" @@ -1954,7 +1954,7 @@ msgstr "درون‌بُرد داده" #. Label of the date (Date) field in DocType 'LMS Certificate Request' #. Label of the date (Date) field in DocType 'LMS Live Class' #. Label of the date (Date) field in DocType 'Scheduled Flow' -#: frontend/src/components/Modals/Event.vue:40 +#: frontend/src/components/Modals/Event.vue:46 #: frontend/src/components/Modals/LiveClassModal.vue:29 #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json @@ -2241,7 +2241,7 @@ msgstr "" msgid "Edit Email Template" msgstr "" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:13 msgid "Edit Payment Gateway" msgstr "ویرایش درگاه پرداخت" @@ -2424,7 +2424,7 @@ msgstr "" msgid "Enroll Now" msgstr "" -#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:358 +#: frontend/src/pages/Batches.vue:334 frontend/src/pages/Courses.vue:357 #: frontend/src/pages/Programs/StudentPrograms.vue:96 msgid "Enrolled" msgstr "" @@ -2526,7 +2526,7 @@ msgstr "" #. Label of a Link in the LMS Workspace #. Label of a shortcut in the LMS Workspace -#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json +#: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json msgid "Evaluation" msgstr "ارزیابی" @@ -2551,7 +2551,7 @@ msgstr "" msgid "Evaluation end date cannot be less than the batch end date." msgstr "" -#: frontend/src/components/Modals/Event.vue:286 +#: frontend/src/components/Modals/Event.vue:292 msgid "Evaluation saved successfully" msgstr "" @@ -2664,7 +2664,7 @@ msgstr "" #. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:33 -#: frontend/src/components/Modals/Event.vue:144 +#: frontend/src/components/Modals/Event.vue:150 #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Expiry Date" msgstr "تاریخ انقضا" @@ -2695,7 +2695,7 @@ msgstr "" #. Submission' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:396 +#: frontend/src/components/Modals/Event.vue:412 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Fail" @@ -3209,7 +3209,7 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' #. Option for the 'Status' (Select) field in DocType 'LMS Course' -#: frontend/src/components/Modals/Event.vue:388 +#: frontend/src/components/Modals/Event.vue:404 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_course/lms_course.json msgid "In Progress" @@ -3353,7 +3353,7 @@ msgstr "" #. Label of the issue_date (Date) field in DocType 'Certification' #. Label of the issue_date (Date) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:28 -#: frontend/src/components/Modals/Event.vue:138 +#: frontend/src/components/Modals/Event.vue:144 #: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Issue Date" @@ -3456,7 +3456,7 @@ msgstr "پیوستن" msgid "Join Call" msgstr "پیوستن به تماس" -#: frontend/src/components/Modals/Event.vue:78 +#: frontend/src/components/Modals/Event.vue:84 msgid "Join Meeting" msgstr "" @@ -3896,7 +3896,7 @@ msgstr "لینکدین" msgid "LinkedIn ID" msgstr "" -#: frontend/src/pages/Courses.vue:341 +#: frontend/src/pages/Courses.vue:340 msgid "Live" msgstr "فعال" @@ -4429,7 +4429,7 @@ msgstr "نام" #: frontend/src/components/Settings/Members.vue:17 #: frontend/src/components/Settings/PaymentGateways.vue:16 #: frontend/src/components/Settings/ZoomSettings.vue:17 -#: frontend/src/pages/Courses.vue:344 +#: frontend/src/pages/Courses.vue:343 #: frontend/src/pages/Programs/Programs.vue:10 #: lms/lms/doctype/lms_badge/lms_badge.json msgid "New" @@ -4461,7 +4461,7 @@ msgstr "شغل جدید" msgid "New Job Applicant" msgstr "" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:12 msgid "New Payment Gateway" msgstr "درگاه پرداخت جدید" @@ -4778,14 +4778,9 @@ msgstr "" #: frontend/src/components/UserAvatar.vue:11 #: frontend/src/pages/CertifiedParticipants.vue:46 #: frontend/src/pages/Profile.vue:69 -msgid "Open to Opportunities" +msgid "Open to Work" msgstr "" -#. Option for the 'Open to' (Select) field in DocType 'User' -#: lms/fixtures/custom_field.json -msgid "Opportunities" -msgstr "فرصت ها" - #. Label of the option (Data) field in DocType 'LMS Option' #: frontend/src/components/Modals/Question.vue:70 #: lms/lms/doctype/lms_option/lms_option.json @@ -4924,7 +4919,7 @@ msgstr "" #. Submission' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:392 +#: frontend/src/components/Modals/Event.vue:408 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Pass" @@ -5054,7 +5049,7 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' #. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' -#: frontend/src/components/Modals/Event.vue:384 +#: frontend/src/components/Modals/Event.vue:400 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json msgid "Pending" @@ -5194,7 +5189,7 @@ msgstr "" msgid "Please login to continue with payment." msgstr "" -#: lms/lms/utils.py:2081 +#: lms/lms/utils.py:2082 msgid "Please login to enroll in the program." msgstr "" @@ -5525,7 +5520,7 @@ msgstr "" #. Label of the published (Check) field in DocType 'LMS Course' #. Label of the published (Check) field in DocType 'LMS Program' #: frontend/src/components/Modals/BulkCertificates.vue:51 -#: frontend/src/components/Modals/Event.vue:122 +#: frontend/src/components/Modals/Event.vue:128 #: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105 #: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/StudentPrograms.vue:100 @@ -5693,7 +5688,7 @@ msgstr "" #. Label of the rating (Data) field in DocType 'LMS Course' #. Label of the rating (Rating) field in DocType 'LMS Course Review' #: frontend/src/components/CourseCardOverlay.vue:147 -#: frontend/src/components/Modals/Event.vue:92 +#: frontend/src/components/Modals/Event.vue:98 #: frontend/src/components/Modals/ReviewModal.vue:18 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_course/lms_course.json @@ -5929,14 +5924,14 @@ msgstr "شنبه" #: frontend/src/components/Modals/AssignmentForm.vue:65 #: frontend/src/components/Modals/EditProfile.vue:121 #: frontend/src/components/Modals/EmailTemplateModal.vue:12 -#: frontend/src/components/Modals/Event.vue:115 -#: frontend/src/components/Modals/Event.vue:151 +#: frontend/src/components/Modals/Event.vue:121 +#: frontend/src/components/Modals/Event.vue:157 #: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeForm.vue:78 #: frontend/src/components/Settings/Coupons/CouponDetails.vue:78 -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:41 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:129 #: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17 #: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14 @@ -6048,7 +6043,7 @@ msgstr "" msgid "Select Date" msgstr "" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:26 msgid "Select Payment Gateway" msgstr "انتخاب درگاه پرداخت" @@ -6364,7 +6359,7 @@ msgstr "" #. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Submission' #. Label of the status (Select) field in DocType 'LMS Test Case Submission' -#: frontend/src/components/Modals/Event.vue:99 +#: frontend/src/components/Modals/Event.vue:105 #: frontend/src/components/Settings/Badges.vue:228 #: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/pages/AssignmentSubmissionList.vue:19 @@ -6475,7 +6470,7 @@ msgstr "" #. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:106 +#: frontend/src/components/Modals/Event.vue:112 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Summary" msgstr "خلاصه" @@ -6571,7 +6566,7 @@ msgstr "" #. Label of the template (Link) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:43 -#: frontend/src/components/Modals/Event.vue:127 +#: frontend/src/components/Modals/Event.vue:133 #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Template" msgstr "الگو" @@ -6620,7 +6615,7 @@ msgstr "" msgid "Thanks and Regards" msgstr "" -#: lms/lms/utils.py:2247 +#: lms/lms/utils.py:2248 msgid "The batch does not exist." msgstr "" @@ -6628,7 +6623,7 @@ msgstr "" msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session." msgstr "" -#: lms/lms/utils.py:1747 +#: lms/lms/utils.py:1748 msgid "The coupon code '{0}' is invalid." msgstr "" @@ -6652,7 +6647,7 @@ msgstr "" msgid "The last day to schedule your evaluations is " msgstr "" -#: lms/lms/utils.py:2231 +#: lms/lms/utils.py:2232 msgid "The lesson does not exist." msgstr "" @@ -6660,7 +6655,7 @@ msgstr "" msgid "The slot is already booked by another participant." msgstr "" -#: lms/lms/utils.py:1361 lms/lms/utils.py:1477 lms/lms/utils.py:1944 +#: lms/lms/utils.py:1362 lms/lms/utils.py:1478 lms/lms/utils.py:1945 msgid "The specified batch does not exist." msgstr "" @@ -6726,15 +6721,15 @@ msgstr "" msgid "This class has ended" msgstr "این کلاس به پایان رسید" -#: lms/lms/utils.py:1776 +#: lms/lms/utils.py:1777 msgid "This coupon has expired." msgstr "" -#: lms/lms/utils.py:1779 +#: lms/lms/utils.py:1780 msgid "This coupon has reached its maximum usage limit." msgstr "" -#: lms/lms/utils.py:1788 +#: lms/lms/utils.py:1789 msgid "This coupon is not applicable to this {0}." msgstr "" @@ -6742,7 +6737,7 @@ msgstr "" msgid "This course has:" msgstr "" -#: lms/lms/utils.py:1707 +#: lms/lms/utils.py:1708 msgid "This course is free." msgstr "" @@ -6799,7 +6794,7 @@ msgid "Thursday" msgstr "پنج‌شنبه" #. Label of the time (Time) field in DocType 'LMS Live Class' -#: frontend/src/components/Modals/Event.vue:48 +#: frontend/src/components/Modals/Event.vue:54 #: frontend/src/components/Modals/LiveClassModal.vue:52 #: frontend/src/components/Quiz.vue:58 #: lms/lms/doctype/lms_live_class/lms_live_class.json @@ -6934,7 +6929,7 @@ msgstr "به" msgid "To Date" msgstr "تا تاریخ" -#: lms/lms/utils.py:1721 +#: lms/lms/utils.py:1722 msgid "To join this batch, please contact the Administrator." msgstr "" @@ -7056,7 +7051,7 @@ msgstr "" msgid "Under Review" msgstr "تحت بررسی" -#: frontend/src/pages/Batches.vue:330 frontend/src/pages/Courses.vue:356 +#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:355 msgid "Unpublished" msgstr "منتشر نشده" @@ -7077,8 +7072,8 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Label of the upcoming (Check) field in DocType 'LMS Course' -#: frontend/src/pages/Batches.vue:328 frontend/src/pages/CourseForm.vue:117 -#: frontend/src/pages/Courses.vue:347 +#: frontend/src/pages/Batches.vue:330 frontend/src/pages/CourseForm.vue:117 +#: frontend/src/pages/Courses.vue:346 #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_course/lms_course.json msgid "Upcoming" @@ -7220,7 +7215,7 @@ msgid "View Applications" msgstr "مشاهده درخواست‌ها" #: frontend/src/components/CertificationLinks.vue:10 -#: frontend/src/components/Modals/Event.vue:67 +#: frontend/src/components/Modals/Event.vue:73 msgid "View Certificate" msgstr "" @@ -7327,6 +7322,11 @@ msgstr "" msgid "Withdrawn" msgstr "" +#. Option for the 'Open to' (Select) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Work" +msgstr "" + #. Label of the work_environment (Section Break) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Work Environment" @@ -7427,7 +7427,7 @@ msgstr "شما نمی‌توانید نقش‌ها را در حالت فقط خ msgid "You cannot enroll in an unpublished course." msgstr "" -#: lms/lms/utils.py:2085 +#: lms/lms/utils.py:2086 msgid "You cannot enroll in an unpublished program." msgstr "" @@ -7443,11 +7443,11 @@ msgstr "" msgid "You cannot schedule evaluations for past slots." msgstr "" -#: lms/lms/utils.py:2259 +#: lms/lms/utils.py:2260 msgid "You do not have access to this batch." msgstr "" -#: lms/lms/utils.py:2242 +#: lms/lms/utils.py:2243 msgid "You do not have access to this course." msgstr "" diff --git a/lms/locale/fr.po b/lms/locale/fr.po index 07acfb11..9cdf4547 100644 --- a/lms/locale/fr.po +++ b/lms/locale/fr.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n" -"POT-Creation-Date: 2026-01-16 16:04+0000\n" -"PO-Revision-Date: 2026-01-21 20:16\n" +"POT-Creation-Date: 2026-01-23 16:05+0000\n" +"PO-Revision-Date: 2026-02-05 06:43\n" "Last-Translator: jannat@frappe.io\n" "Language-Team: French\n" "MIME-Version: 1.0\n" @@ -319,7 +319,7 @@ msgid "Administrator" msgstr "" #. Name of a role -#: frontend/src/pages/Batches.vue:319 lms/lms/doctype/lms_badge/lms_badge.json +#: frontend/src/pages/Batches.vue:321 lms/lms/doctype/lms_badge/lms_badge.json msgid "All" msgstr "Tous" @@ -486,7 +486,7 @@ msgstr "Approuvé" msgid "Apps" msgstr "" -#: frontend/src/pages/Batches.vue:329 +#: frontend/src/pages/Batches.vue:331 msgid "Archived" msgstr "" @@ -753,7 +753,7 @@ msgstr "" #. Label of the batch_name (Link) field in DocType 'LMS Certificate' #. Label of the batch_name (Link) field in DocType 'LMS Certificate Request' #. Label of the batch_name (Link) field in DocType 'LMS Live Class' -#: frontend/src/components/Modals/Event.vue:32 +#: frontend/src/components/Modals/Event.vue:35 #: frontend/src/components/Settings/BadgeForm.vue:195 #: frontend/src/components/Settings/Badges.vue:200 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125 @@ -878,7 +878,7 @@ msgid "Batch:" msgstr "Lot:" #. Label of the batches (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/Batches.vue:350 frontend/src/pages/Batches.vue:357 +#: frontend/src/pages/Batches.vue:352 frontend/src/pages/Batches.vue:359 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121 msgid "Batches" msgstr "Lots" @@ -1023,7 +1023,7 @@ msgstr "Lien de certificat" msgid "Certificate of Completion" msgstr "" -#: frontend/src/components/Modals/Event.vue:347 +#: frontend/src/components/Modals/Event.vue:353 msgid "Certificate saved successfully" msgstr "" @@ -1043,7 +1043,7 @@ msgstr "" #. Label of a chart in the LMS Workspace #. Label of a Card Break in the LMS Workspace #. Label of a Link in the LMS Workspace -#: frontend/src/components/Modals/Event.vue:411 +#: frontend/src/components/Modals/Event.vue:427 #: frontend/src/components/Sidebar/AppSidebar.vue:550 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100 #: frontend/src/pages/CourseCertification.vue:10 @@ -1771,7 +1771,7 @@ msgstr "" #: frontend/src/components/Modals/BatchStudentProgress.vue:95 #: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/CourseCertification.vue:127 -#: frontend/src/pages/Courses.vue:365 frontend/src/pages/Courses.vue:372 +#: frontend/src/pages/Courses.vue:364 frontend/src/pages/Courses.vue:371 #: frontend/src/pages/Programs/ProgramForm.vue:49 #: frontend/src/pages/Programs/Programs.vue:35 #: lms/lms/doctype/lms_batch/lms_batch.json @@ -1878,7 +1878,7 @@ msgstr "" msgid "Create your first quiz" msgstr "" -#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:355 +#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:354 msgid "Created" msgstr "Créé" @@ -1954,7 +1954,7 @@ msgstr "Importation de données" #. Label of the date (Date) field in DocType 'LMS Certificate Request' #. Label of the date (Date) field in DocType 'LMS Live Class' #. Label of the date (Date) field in DocType 'Scheduled Flow' -#: frontend/src/components/Modals/Event.vue:40 +#: frontend/src/components/Modals/Event.vue:46 #: frontend/src/components/Modals/LiveClassModal.vue:29 #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json @@ -2241,7 +2241,7 @@ msgstr "" msgid "Edit Email Template" msgstr "" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:13 msgid "Edit Payment Gateway" msgstr "" @@ -2424,7 +2424,7 @@ msgstr "" msgid "Enroll Now" msgstr "" -#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:358 +#: frontend/src/pages/Batches.vue:334 frontend/src/pages/Courses.vue:357 #: frontend/src/pages/Programs/StudentPrograms.vue:96 msgid "Enrolled" msgstr "" @@ -2526,7 +2526,7 @@ msgstr "" #. Label of a Link in the LMS Workspace #. Label of a shortcut in the LMS Workspace -#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json +#: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json msgid "Evaluation" msgstr "Évaluation" @@ -2551,7 +2551,7 @@ msgstr "" msgid "Evaluation end date cannot be less than the batch end date." msgstr "" -#: frontend/src/components/Modals/Event.vue:286 +#: frontend/src/components/Modals/Event.vue:292 msgid "Evaluation saved successfully" msgstr "" @@ -2664,7 +2664,7 @@ msgstr "" #. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:33 -#: frontend/src/components/Modals/Event.vue:144 +#: frontend/src/components/Modals/Event.vue:150 #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Expiry Date" msgstr "Date d'expiration" @@ -2695,7 +2695,7 @@ msgstr "" #. Submission' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:396 +#: frontend/src/components/Modals/Event.vue:412 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Fail" @@ -3209,7 +3209,7 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' #. Option for the 'Status' (Select) field in DocType 'LMS Course' -#: frontend/src/components/Modals/Event.vue:388 +#: frontend/src/components/Modals/Event.vue:404 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_course/lms_course.json msgid "In Progress" @@ -3353,7 +3353,7 @@ msgstr "" #. Label of the issue_date (Date) field in DocType 'Certification' #. Label of the issue_date (Date) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:28 -#: frontend/src/components/Modals/Event.vue:138 +#: frontend/src/components/Modals/Event.vue:144 #: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Issue Date" @@ -3456,7 +3456,7 @@ msgstr "Joindre" msgid "Join Call" msgstr "" -#: frontend/src/components/Modals/Event.vue:78 +#: frontend/src/components/Modals/Event.vue:84 msgid "Join Meeting" msgstr "" @@ -3896,7 +3896,7 @@ msgstr "" msgid "LinkedIn ID" msgstr "" -#: frontend/src/pages/Courses.vue:341 +#: frontend/src/pages/Courses.vue:340 msgid "Live" msgstr "" @@ -4429,7 +4429,7 @@ msgstr "" #: frontend/src/components/Settings/Members.vue:17 #: frontend/src/components/Settings/PaymentGateways.vue:16 #: frontend/src/components/Settings/ZoomSettings.vue:17 -#: frontend/src/pages/Courses.vue:344 +#: frontend/src/pages/Courses.vue:343 #: frontend/src/pages/Programs/Programs.vue:10 #: lms/lms/doctype/lms_badge/lms_badge.json msgid "New" @@ -4461,7 +4461,7 @@ msgstr "" msgid "New Job Applicant" msgstr "" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:12 msgid "New Payment Gateway" msgstr "" @@ -4778,14 +4778,9 @@ msgstr "" #: frontend/src/components/UserAvatar.vue:11 #: frontend/src/pages/CertifiedParticipants.vue:46 #: frontend/src/pages/Profile.vue:69 -msgid "Open to Opportunities" +msgid "Open to Work" msgstr "" -#. Option for the 'Open to' (Select) field in DocType 'User' -#: lms/fixtures/custom_field.json -msgid "Opportunities" -msgstr "Opportunités" - #. Label of the option (Data) field in DocType 'LMS Option' #: frontend/src/components/Modals/Question.vue:70 #: lms/lms/doctype/lms_option/lms_option.json @@ -4842,7 +4837,7 @@ msgstr "" #. Option for the 'User Category' (Select) field in DocType 'User' #: lms/fixtures/custom_field.json lms/templates/signup-form.html:28 msgid "Others" -msgstr "Autres" +msgstr "" #: frontend/src/pages/Home/StudentHome.vue:9 msgid "Our Popular Courses" @@ -4924,7 +4919,7 @@ msgstr "" #. Submission' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:392 +#: frontend/src/components/Modals/Event.vue:408 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Pass" @@ -5054,7 +5049,7 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' #. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' -#: frontend/src/components/Modals/Event.vue:384 +#: frontend/src/components/Modals/Event.vue:400 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json msgid "Pending" @@ -5194,7 +5189,7 @@ msgstr "" msgid "Please login to continue with payment." msgstr "" -#: lms/lms/utils.py:2081 +#: lms/lms/utils.py:2082 msgid "Please login to enroll in the program." msgstr "" @@ -5525,7 +5520,7 @@ msgstr "" #. Label of the published (Check) field in DocType 'LMS Course' #. Label of the published (Check) field in DocType 'LMS Program' #: frontend/src/components/Modals/BulkCertificates.vue:51 -#: frontend/src/components/Modals/Event.vue:122 +#: frontend/src/components/Modals/Event.vue:128 #: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105 #: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/StudentPrograms.vue:100 @@ -5693,7 +5688,7 @@ msgstr "" #. Label of the rating (Data) field in DocType 'LMS Course' #. Label of the rating (Rating) field in DocType 'LMS Course Review' #: frontend/src/components/CourseCardOverlay.vue:147 -#: frontend/src/components/Modals/Event.vue:92 +#: frontend/src/components/Modals/Event.vue:98 #: frontend/src/components/Modals/ReviewModal.vue:18 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_course/lms_course.json @@ -5929,14 +5924,14 @@ msgstr "" #: frontend/src/components/Modals/AssignmentForm.vue:65 #: frontend/src/components/Modals/EditProfile.vue:121 #: frontend/src/components/Modals/EmailTemplateModal.vue:12 -#: frontend/src/components/Modals/Event.vue:115 -#: frontend/src/components/Modals/Event.vue:151 +#: frontend/src/components/Modals/Event.vue:121 +#: frontend/src/components/Modals/Event.vue:157 #: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeForm.vue:78 #: frontend/src/components/Settings/Coupons/CouponDetails.vue:78 -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:41 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:129 #: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17 #: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14 @@ -6048,7 +6043,7 @@ msgstr "" msgid "Select Date" msgstr "" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:26 msgid "Select Payment Gateway" msgstr "" @@ -6364,7 +6359,7 @@ msgstr "Statistiques" #. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Submission' #. Label of the status (Select) field in DocType 'LMS Test Case Submission' -#: frontend/src/components/Modals/Event.vue:99 +#: frontend/src/components/Modals/Event.vue:105 #: frontend/src/components/Settings/Badges.vue:228 #: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/pages/AssignmentSubmissionList.vue:19 @@ -6475,7 +6470,7 @@ msgstr "" #. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:106 +#: frontend/src/components/Modals/Event.vue:112 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Summary" msgstr "Résumé" @@ -6571,7 +6566,7 @@ msgstr "" #. Label of the template (Link) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:43 -#: frontend/src/components/Modals/Event.vue:127 +#: frontend/src/components/Modals/Event.vue:133 #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Template" msgstr "" @@ -6620,7 +6615,7 @@ msgstr "" msgid "Thanks and Regards" msgstr "" -#: lms/lms/utils.py:2247 +#: lms/lms/utils.py:2248 msgid "The batch does not exist." msgstr "" @@ -6628,7 +6623,7 @@ msgstr "" msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session." msgstr "" -#: lms/lms/utils.py:1747 +#: lms/lms/utils.py:1748 msgid "The coupon code '{0}' is invalid." msgstr "" @@ -6652,7 +6647,7 @@ msgstr "" msgid "The last day to schedule your evaluations is " msgstr "" -#: lms/lms/utils.py:2231 +#: lms/lms/utils.py:2232 msgid "The lesson does not exist." msgstr "" @@ -6660,7 +6655,7 @@ msgstr "" msgid "The slot is already booked by another participant." msgstr "" -#: lms/lms/utils.py:1361 lms/lms/utils.py:1477 lms/lms/utils.py:1944 +#: lms/lms/utils.py:1362 lms/lms/utils.py:1478 lms/lms/utils.py:1945 msgid "The specified batch does not exist." msgstr "" @@ -6726,15 +6721,15 @@ msgstr "" msgid "This class has ended" msgstr "" -#: lms/lms/utils.py:1776 +#: lms/lms/utils.py:1777 msgid "This coupon has expired." msgstr "" -#: lms/lms/utils.py:1779 +#: lms/lms/utils.py:1780 msgid "This coupon has reached its maximum usage limit." msgstr "" -#: lms/lms/utils.py:1788 +#: lms/lms/utils.py:1789 msgid "This coupon is not applicable to this {0}." msgstr "" @@ -6742,7 +6737,7 @@ msgstr "" msgid "This course has:" msgstr "" -#: lms/lms/utils.py:1707 +#: lms/lms/utils.py:1708 msgid "This course is free." msgstr "" @@ -6799,7 +6794,7 @@ msgid "Thursday" msgstr "" #. Label of the time (Time) field in DocType 'LMS Live Class' -#: frontend/src/components/Modals/Event.vue:48 +#: frontend/src/components/Modals/Event.vue:54 #: frontend/src/components/Modals/LiveClassModal.vue:52 #: frontend/src/components/Quiz.vue:58 #: lms/lms/doctype/lms_live_class/lms_live_class.json @@ -6934,7 +6929,7 @@ msgstr "" msgid "To Date" msgstr "" -#: lms/lms/utils.py:1721 +#: lms/lms/utils.py:1722 msgid "To join this batch, please contact the Administrator." msgstr "" @@ -7056,7 +7051,7 @@ msgstr "" msgid "Under Review" msgstr "En cours de révision" -#: frontend/src/pages/Batches.vue:330 frontend/src/pages/Courses.vue:356 +#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:355 msgid "Unpublished" msgstr "" @@ -7077,8 +7072,8 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Label of the upcoming (Check) field in DocType 'LMS Course' -#: frontend/src/pages/Batches.vue:328 frontend/src/pages/CourseForm.vue:117 -#: frontend/src/pages/Courses.vue:347 +#: frontend/src/pages/Batches.vue:330 frontend/src/pages/CourseForm.vue:117 +#: frontend/src/pages/Courses.vue:346 #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_course/lms_course.json msgid "Upcoming" @@ -7220,7 +7215,7 @@ msgid "View Applications" msgstr "" #: frontend/src/components/CertificationLinks.vue:10 -#: frontend/src/components/Modals/Event.vue:67 +#: frontend/src/components/Modals/Event.vue:73 msgid "View Certificate" msgstr "" @@ -7327,6 +7322,11 @@ msgstr "" msgid "Withdrawn" msgstr "" +#. Option for the 'Open to' (Select) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Work" +msgstr "" + #. Label of the work_environment (Section Break) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Work Environment" @@ -7427,7 +7427,7 @@ msgstr "" msgid "You cannot enroll in an unpublished course." msgstr "" -#: lms/lms/utils.py:2085 +#: lms/lms/utils.py:2086 msgid "You cannot enroll in an unpublished program." msgstr "" @@ -7443,11 +7443,11 @@ msgstr "" msgid "You cannot schedule evaluations for past slots." msgstr "" -#: lms/lms/utils.py:2259 +#: lms/lms/utils.py:2260 msgid "You do not have access to this batch." msgstr "" -#: lms/lms/utils.py:2242 +#: lms/lms/utils.py:2243 msgid "You do not have access to this course." msgstr "" diff --git a/lms/locale/hr.po b/lms/locale/hr.po index 6d1b8157..cae9e1cd 100644 --- a/lms/locale/hr.po +++ b/lms/locale/hr.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n" -"POT-Creation-Date: 2026-01-16 16:04+0000\n" -"PO-Revision-Date: 2026-01-21 20:16\n" +"POT-Creation-Date: 2026-01-23 16:05+0000\n" +"PO-Revision-Date: 2026-02-05 06:43\n" "Last-Translator: jannat@frappe.io\n" "Language-Team: Croatian\n" "MIME-Version: 1.0\n" @@ -319,7 +319,7 @@ msgid "Administrator" msgstr "Administrator" #. Name of a role -#: frontend/src/pages/Batches.vue:319 lms/lms/doctype/lms_badge/lms_badge.json +#: frontend/src/pages/Batches.vue:321 lms/lms/doctype/lms_badge/lms_badge.json msgid "All" msgstr "Sve" @@ -486,7 +486,7 @@ msgstr "Odobreno" msgid "Apps" msgstr "Aplikacije" -#: frontend/src/pages/Batches.vue:329 +#: frontend/src/pages/Batches.vue:331 msgid "Archived" msgstr "Arhivirano" @@ -753,7 +753,7 @@ msgstr "Značka {0} je već dodijeljena ovom {1}." #. Label of the batch_name (Link) field in DocType 'LMS Certificate' #. Label of the batch_name (Link) field in DocType 'LMS Certificate Request' #. Label of the batch_name (Link) field in DocType 'LMS Live Class' -#: frontend/src/components/Modals/Event.vue:32 +#: frontend/src/components/Modals/Event.vue:35 #: frontend/src/components/Settings/BadgeForm.vue:195 #: frontend/src/components/Settings/Badges.vue:200 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125 @@ -878,7 +878,7 @@ msgid "Batch:" msgstr "Grupa:" #. Label of the batches (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/Batches.vue:350 frontend/src/pages/Batches.vue:357 +#: frontend/src/pages/Batches.vue:352 frontend/src/pages/Batches.vue:359 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121 msgid "Batches" msgstr "Grupe" @@ -1023,7 +1023,7 @@ msgstr "Veza Certifikata" msgid "Certificate of Completion" msgstr "Certifikat o Završetku" -#: frontend/src/components/Modals/Event.vue:347 +#: frontend/src/components/Modals/Event.vue:353 msgid "Certificate saved successfully" msgstr "Certifikat je uspješno spremljen" @@ -1043,7 +1043,7 @@ msgstr "Certifikati su uspješno generirani" #. Label of a chart in the LMS Workspace #. Label of a Card Break in the LMS Workspace #. Label of a Link in the LMS Workspace -#: frontend/src/components/Modals/Event.vue:411 +#: frontend/src/components/Modals/Event.vue:427 #: frontend/src/components/Sidebar/AppSidebar.vue:550 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100 #: frontend/src/pages/CourseCertification.vue:10 @@ -1771,7 +1771,7 @@ msgstr "Tečaj {0} je već dodan u ovaj program." #: frontend/src/components/Modals/BatchStudentProgress.vue:95 #: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/CourseCertification.vue:127 -#: frontend/src/pages/Courses.vue:365 frontend/src/pages/Courses.vue:372 +#: frontend/src/pages/Courses.vue:364 frontend/src/pages/Courses.vue:371 #: frontend/src/pages/Programs/ProgramForm.vue:49 #: frontend/src/pages/Programs/Programs.vue:35 #: lms/lms/doctype/lms_batch/lms_batch.json @@ -1878,7 +1878,7 @@ msgstr "Napravi vaš prvi Tečaj" msgid "Create your first quiz" msgstr "Napravi vašj prvi kviz" -#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:355 +#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:354 msgid "Created" msgstr "Kreirano" @@ -1954,7 +1954,7 @@ msgstr "Uvoz Podataka" #. Label of the date (Date) field in DocType 'LMS Certificate Request' #. Label of the date (Date) field in DocType 'LMS Live Class' #. Label of the date (Date) field in DocType 'Scheduled Flow' -#: frontend/src/components/Modals/Event.vue:40 +#: frontend/src/components/Modals/Event.vue:46 #: frontend/src/components/Modals/LiveClassModal.vue:29 #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json @@ -2241,7 +2241,7 @@ msgstr "Uredi kupon" msgid "Edit Email Template" msgstr "Uredi predložak e-pošte" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:13 msgid "Edit Payment Gateway" msgstr "Uredi Sustav Plaćanja" @@ -2424,7 +2424,7 @@ msgstr "Upis Člana u Program" msgid "Enroll Now" msgstr "Upišite se sada" -#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:358 +#: frontend/src/pages/Batches.vue:334 frontend/src/pages/Courses.vue:357 #: frontend/src/pages/Programs/StudentPrograms.vue:96 msgid "Enrolled" msgstr "Upisan" @@ -2526,7 +2526,7 @@ msgstr "Pogreška pri ažuriranju predloška e-pošte" #. Label of a Link in the LMS Workspace #. Label of a shortcut in the LMS Workspace -#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json +#: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json msgid "Evaluation" msgstr "Evaluacija" @@ -2551,7 +2551,7 @@ msgstr "Zahtjev za Ocjenu" msgid "Evaluation end date cannot be less than the batch end date." msgstr "Datum završetka ocjenjivanja ne može biti prije od datuma završetka grupe." -#: frontend/src/components/Modals/Event.vue:286 +#: frontend/src/components/Modals/Event.vue:292 msgid "Evaluation saved successfully" msgstr "Evaluacija je uspješno sačuvana" @@ -2664,7 +2664,7 @@ msgstr "Ističe" #. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:33 -#: frontend/src/components/Modals/Event.vue:144 +#: frontend/src/components/Modals/Event.vue:150 #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Expiry Date" msgstr "Datum Isteka Roka" @@ -2695,7 +2695,7 @@ msgstr "Istraži Više" #. Submission' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:396 +#: frontend/src/components/Modals/Event.vue:412 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Fail" @@ -3209,7 +3209,7 @@ msgstr "Uvezi Tečaj" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' #. Option for the 'Status' (Select) field in DocType 'LMS Course' -#: frontend/src/components/Modals/Event.vue:388 +#: frontend/src/components/Modals/Event.vue:404 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_course/lms_course.json msgid "In Progress" @@ -3353,7 +3353,7 @@ msgstr "SCORM Paket" #. Label of the issue_date (Date) field in DocType 'Certification' #. Label of the issue_date (Date) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:28 -#: frontend/src/components/Modals/Event.vue:138 +#: frontend/src/components/Modals/Event.vue:144 #: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Issue Date" @@ -3456,7 +3456,7 @@ msgstr "Pridružite se" msgid "Join Call" msgstr "Pridružite se Pozivu" -#: frontend/src/components/Modals/Event.vue:78 +#: frontend/src/components/Modals/Event.vue:84 msgid "Join Meeting" msgstr "Pridružite se Sastanku" @@ -3896,7 +3896,7 @@ msgstr "LinkedIn" msgid "LinkedIn ID" msgstr "LinkedIn ID" -#: frontend/src/pages/Courses.vue:341 +#: frontend/src/pages/Courses.vue:340 msgid "Live" msgstr "Uživo" @@ -4429,7 +4429,7 @@ msgstr "Naziv" #: frontend/src/components/Settings/Members.vue:17 #: frontend/src/components/Settings/PaymentGateways.vue:16 #: frontend/src/components/Settings/ZoomSettings.vue:17 -#: frontend/src/pages/Courses.vue:344 +#: frontend/src/pages/Courses.vue:343 #: frontend/src/pages/Programs/Programs.vue:10 #: lms/lms/doctype/lms_badge/lms_badge.json msgid "New" @@ -4461,7 +4461,7 @@ msgstr "Novi Posao" msgid "New Job Applicant" msgstr "Novi Kandidat za Posao" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:12 msgid "New Payment Gateway" msgstr "Novi Sustav Plaćanja" @@ -4778,13 +4778,8 @@ msgstr "Otvoren(a) za" #: frontend/src/components/UserAvatar.vue:11 #: frontend/src/pages/CertifiedParticipants.vue:46 #: frontend/src/pages/Profile.vue:69 -msgid "Open to Opportunities" -msgstr "Otvoren(a) za prilike" - -#. Option for the 'Open to' (Select) field in DocType 'User' -#: lms/fixtures/custom_field.json -msgid "Opportunities" -msgstr "Prilika" +msgid "Open to Work" +msgstr "" #. Label of the option (Data) field in DocType 'LMS Option' #: frontend/src/components/Modals/Question.vue:70 @@ -4924,7 +4919,7 @@ msgstr "Djelomično Završeno" #. Submission' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:392 +#: frontend/src/components/Modals/Event.vue:408 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Pass" @@ -5054,7 +5049,7 @@ msgstr "Aplikacija plaćanja nije instalirana" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' #. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' -#: frontend/src/components/Modals/Event.vue:384 +#: frontend/src/components/Modals/Event.vue:400 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json msgid "Pending" @@ -5194,7 +5189,7 @@ msgstr "Prijavi se da pristupiš ovoj stranici." msgid "Please login to continue with payment." msgstr "Prijavi se da nastaviš s plaćanjem." -#: lms/lms/utils.py:2081 +#: lms/lms/utils.py:2082 msgid "Please login to enroll in the program." msgstr "Molimo prijavite se kako biste se prijavili u program." @@ -5525,7 +5520,7 @@ msgstr "Objavi na Stranici Učesnika" #. Label of the published (Check) field in DocType 'LMS Course' #. Label of the published (Check) field in DocType 'LMS Program' #: frontend/src/components/Modals/BulkCertificates.vue:51 -#: frontend/src/components/Modals/Event.vue:122 +#: frontend/src/components/Modals/Event.vue:128 #: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105 #: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/StudentPrograms.vue:100 @@ -5693,7 +5688,7 @@ msgstr "Kvizovi u ovom videu" #. Label of the rating (Data) field in DocType 'LMS Course' #. Label of the rating (Rating) field in DocType 'LMS Course Review' #: frontend/src/components/CourseCardOverlay.vue:147 -#: frontend/src/components/Modals/Event.vue:92 +#: frontend/src/components/Modals/Event.vue:98 #: frontend/src/components/Modals/ReviewModal.vue:18 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_course/lms_course.json @@ -5929,14 +5924,14 @@ msgstr "Subota" #: frontend/src/components/Modals/AssignmentForm.vue:65 #: frontend/src/components/Modals/EditProfile.vue:121 #: frontend/src/components/Modals/EmailTemplateModal.vue:12 -#: frontend/src/components/Modals/Event.vue:115 -#: frontend/src/components/Modals/Event.vue:151 +#: frontend/src/components/Modals/Event.vue:121 +#: frontend/src/components/Modals/Event.vue:157 #: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeForm.vue:78 #: frontend/src/components/Settings/Coupons/CouponDetails.vue:78 -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:41 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:129 #: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17 #: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14 @@ -6048,7 +6043,7 @@ msgstr "Prikaži sve" msgid "Select Date" msgstr "Odaberi Datum" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:26 msgid "Select Payment Gateway" msgstr "Odaberi Sustav Plaćanja" @@ -6364,7 +6359,7 @@ msgstr "Statistika" #. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Submission' #. Label of the status (Select) field in DocType 'LMS Test Case Submission' -#: frontend/src/components/Modals/Event.vue:99 +#: frontend/src/components/Modals/Event.vue:105 #: frontend/src/components/Settings/Badges.vue:228 #: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/pages/AssignmentSubmissionList.vue:19 @@ -6475,7 +6470,7 @@ msgstr "Uspješno upisan u program" #. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:106 +#: frontend/src/components/Modals/Event.vue:112 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Summary" msgstr "Sažetak" @@ -6571,7 +6566,7 @@ msgstr "Timski Rad" #. Label of the template (Link) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:43 -#: frontend/src/components/Modals/Event.vue:127 +#: frontend/src/components/Modals/Event.vue:133 #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Template" msgstr "Šablon" @@ -6620,7 +6615,7 @@ msgstr "Hvala vam na povratnim informacijama." msgid "Thanks and Regards" msgstr "Hvala i Pozdrav" -#: lms/lms/utils.py:2247 +#: lms/lms/utils.py:2248 msgid "The batch does not exist." msgstr "Grupa ne postoji." @@ -6628,7 +6623,7 @@ msgstr "Grupa ne postoji." msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session." msgstr "Grupa za koju ste se prijavili počinje sutra. Pripremite se i dođete na vrijeme." -#: lms/lms/utils.py:1747 +#: lms/lms/utils.py:1748 msgid "The coupon code '{0}' is invalid." msgstr "Kod kupona '{0}' nije važeći." @@ -6652,7 +6647,7 @@ msgstr "Predavač je ostavio komentar na vaš zadatak {0}" msgid "The last day to schedule your evaluations is " msgstr "Posljednji dan za zakazivanje ocjenjivanja je " -#: lms/lms/utils.py:2231 +#: lms/lms/utils.py:2232 msgid "The lesson does not exist." msgstr "Lekcija ne postoji." @@ -6660,7 +6655,7 @@ msgstr "Lekcija ne postoji." msgid "The slot is already booked by another participant." msgstr "Termin je već rezervirao drugi učesnik." -#: lms/lms/utils.py:1361 lms/lms/utils.py:1477 lms/lms/utils.py:1944 +#: lms/lms/utils.py:1362 lms/lms/utils.py:1478 lms/lms/utils.py:1945 msgid "The specified batch does not exist." msgstr "Navedena grupa ne postoji." @@ -6726,15 +6721,15 @@ msgstr "Ovaj certifikat ne ističe" msgid "This class has ended" msgstr "Ovaj čas je završen" -#: lms/lms/utils.py:1776 +#: lms/lms/utils.py:1777 msgid "This coupon has expired." msgstr "Ovaj kupon je istekao." -#: lms/lms/utils.py:1779 +#: lms/lms/utils.py:1780 msgid "This coupon has reached its maximum usage limit." msgstr "Ovaj kupon je dosegao maksimalni broj iskorištenja." -#: lms/lms/utils.py:1788 +#: lms/lms/utils.py:1789 msgid "This coupon is not applicable to this {0}." msgstr "Ovaj kupon se ne odnosi na {0}." @@ -6742,7 +6737,7 @@ msgstr "Ovaj kupon se ne odnosi na {0}." msgid "This course has:" msgstr "Ovaj tečaj ima:" -#: lms/lms/utils.py:1707 +#: lms/lms/utils.py:1708 msgid "This course is free." msgstr "Ovaj tečaj je besplatan." @@ -6799,7 +6794,7 @@ msgid "Thursday" msgstr "Četvrtak" #. Label of the time (Time) field in DocType 'LMS Live Class' -#: frontend/src/components/Modals/Event.vue:48 +#: frontend/src/components/Modals/Event.vue:54 #: frontend/src/components/Modals/LiveClassModal.vue:52 #: frontend/src/components/Quiz.vue:58 #: lms/lms/doctype/lms_live_class/lms_live_class.json @@ -6934,7 +6929,7 @@ msgstr "Do" msgid "To Date" msgstr "Do Datuma" -#: lms/lms/utils.py:1721 +#: lms/lms/utils.py:1722 msgid "To join this batch, please contact the Administrator." msgstr "Da biste se pridružili ovoj grupi, kontaktirajte administratora." @@ -7056,7 +7051,7 @@ msgstr "Nedostupno Od Datuma ne može biti kasnije od Nedostupno Do Datuma" msgid "Under Review" msgstr "Pod Recenzijom" -#: frontend/src/pages/Batches.vue:330 frontend/src/pages/Courses.vue:356 +#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:355 msgid "Unpublished" msgstr "Neobjavljeno" @@ -7077,8 +7072,8 @@ msgstr "Nestrukturirana Uloga" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Label of the upcoming (Check) field in DocType 'LMS Course' -#: frontend/src/pages/Batches.vue:328 frontend/src/pages/CourseForm.vue:117 -#: frontend/src/pages/Courses.vue:347 +#: frontend/src/pages/Batches.vue:330 frontend/src/pages/CourseForm.vue:117 +#: frontend/src/pages/Courses.vue:346 #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_course/lms_course.json msgid "Upcoming" @@ -7220,7 +7215,7 @@ msgid "View Applications" msgstr "Prikaži prijave" #: frontend/src/components/CertificationLinks.vue:10 -#: frontend/src/components/Modals/Event.vue:67 +#: frontend/src/components/Modals/Event.vue:73 msgid "View Certificate" msgstr "Prikaži Certifikat" @@ -7327,6 +7322,11 @@ msgstr "Uz ovaj certifikat, sada možete pokazati svoje ažurirane vještine i p msgid "Withdrawn" msgstr "Povučen" +#. Option for the 'Open to' (Select) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Work" +msgstr "" + #. Label of the work_environment (Section Break) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Work Environment" @@ -7427,7 +7427,7 @@ msgstr "Ne možete mijenjati uloge u načinu rada samo za čitanje." msgid "You cannot enroll in an unpublished course." msgstr "Ne možete se upisati na neobjavljeni tečaj." -#: lms/lms/utils.py:2085 +#: lms/lms/utils.py:2086 msgid "You cannot enroll in an unpublished program." msgstr "Ne možete se upisati u neobjavljeni program." @@ -7443,11 +7443,11 @@ msgstr "Ne možete zakazati ocjenjivanje nakon {0}." msgid "You cannot schedule evaluations for past slots." msgstr "Ne možete zakazati ocjenjivanje za prošle termine." -#: lms/lms/utils.py:2259 +#: lms/lms/utils.py:2260 msgid "You do not have access to this batch." msgstr "Nemate pristup ovoj grupi." -#: lms/lms/utils.py:2242 +#: lms/lms/utils.py:2243 msgid "You do not have access to this course." msgstr "Nemate pristup ovom tečaju." diff --git a/lms/locale/hu.po b/lms/locale/hu.po index ee02b6a5..7f452a3f 100644 --- a/lms/locale/hu.po +++ b/lms/locale/hu.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n" -"POT-Creation-Date: 2026-01-16 16:04+0000\n" -"PO-Revision-Date: 2026-01-21 20:16\n" +"POT-Creation-Date: 2026-01-23 16:05+0000\n" +"PO-Revision-Date: 2026-02-05 06:43\n" "Last-Translator: jannat@frappe.io\n" "Language-Team: Hungarian\n" "MIME-Version: 1.0\n" @@ -319,7 +319,7 @@ msgid "Administrator" msgstr "Rendszergazda" #. Name of a role -#: frontend/src/pages/Batches.vue:319 lms/lms/doctype/lms_badge/lms_badge.json +#: frontend/src/pages/Batches.vue:321 lms/lms/doctype/lms_badge/lms_badge.json msgid "All" msgstr "Összes" @@ -486,7 +486,7 @@ msgstr "" msgid "Apps" msgstr "Alkalmazások" -#: frontend/src/pages/Batches.vue:329 +#: frontend/src/pages/Batches.vue:331 msgid "Archived" msgstr "Archivált" @@ -753,7 +753,7 @@ msgstr "" #. Label of the batch_name (Link) field in DocType 'LMS Certificate' #. Label of the batch_name (Link) field in DocType 'LMS Certificate Request' #. Label of the batch_name (Link) field in DocType 'LMS Live Class' -#: frontend/src/components/Modals/Event.vue:32 +#: frontend/src/components/Modals/Event.vue:35 #: frontend/src/components/Settings/BadgeForm.vue:195 #: frontend/src/components/Settings/Badges.vue:200 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125 @@ -878,7 +878,7 @@ msgid "Batch:" msgstr "Köteg:" #. Label of the batches (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/Batches.vue:350 frontend/src/pages/Batches.vue:357 +#: frontend/src/pages/Batches.vue:352 frontend/src/pages/Batches.vue:359 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121 msgid "Batches" msgstr "" @@ -1023,7 +1023,7 @@ msgstr "" msgid "Certificate of Completion" msgstr "" -#: frontend/src/components/Modals/Event.vue:347 +#: frontend/src/components/Modals/Event.vue:353 msgid "Certificate saved successfully" msgstr "" @@ -1043,7 +1043,7 @@ msgstr "" #. Label of a chart in the LMS Workspace #. Label of a Card Break in the LMS Workspace #. Label of a Link in the LMS Workspace -#: frontend/src/components/Modals/Event.vue:411 +#: frontend/src/components/Modals/Event.vue:427 #: frontend/src/components/Sidebar/AppSidebar.vue:550 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100 #: frontend/src/pages/CourseCertification.vue:10 @@ -1771,7 +1771,7 @@ msgstr "" #: frontend/src/components/Modals/BatchStudentProgress.vue:95 #: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/CourseCertification.vue:127 -#: frontend/src/pages/Courses.vue:365 frontend/src/pages/Courses.vue:372 +#: frontend/src/pages/Courses.vue:364 frontend/src/pages/Courses.vue:371 #: frontend/src/pages/Programs/ProgramForm.vue:49 #: frontend/src/pages/Programs/Programs.vue:35 #: lms/lms/doctype/lms_batch/lms_batch.json @@ -1878,7 +1878,7 @@ msgstr "" msgid "Create your first quiz" msgstr "" -#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:355 +#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:354 msgid "Created" msgstr "Alkotó" @@ -1954,7 +1954,7 @@ msgstr "Adat importálás" #. Label of the date (Date) field in DocType 'LMS Certificate Request' #. Label of the date (Date) field in DocType 'LMS Live Class' #. Label of the date (Date) field in DocType 'Scheduled Flow' -#: frontend/src/components/Modals/Event.vue:40 +#: frontend/src/components/Modals/Event.vue:46 #: frontend/src/components/Modals/LiveClassModal.vue:29 #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json @@ -2241,7 +2241,7 @@ msgstr "" msgid "Edit Email Template" msgstr "" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:13 msgid "Edit Payment Gateway" msgstr "" @@ -2424,7 +2424,7 @@ msgstr "" msgid "Enroll Now" msgstr "" -#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:358 +#: frontend/src/pages/Batches.vue:334 frontend/src/pages/Courses.vue:357 #: frontend/src/pages/Programs/StudentPrograms.vue:96 msgid "Enrolled" msgstr "" @@ -2526,7 +2526,7 @@ msgstr "" #. Label of a Link in the LMS Workspace #. Label of a shortcut in the LMS Workspace -#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json +#: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json msgid "Evaluation" msgstr "" @@ -2551,7 +2551,7 @@ msgstr "" msgid "Evaluation end date cannot be less than the batch end date." msgstr "" -#: frontend/src/components/Modals/Event.vue:286 +#: frontend/src/components/Modals/Event.vue:292 msgid "Evaluation saved successfully" msgstr "" @@ -2664,7 +2664,7 @@ msgstr "Lejárat Dátuma" #. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:33 -#: frontend/src/components/Modals/Event.vue:144 +#: frontend/src/components/Modals/Event.vue:150 #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Expiry Date" msgstr "" @@ -2695,7 +2695,7 @@ msgstr "" #. Submission' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:396 +#: frontend/src/components/Modals/Event.vue:412 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Fail" @@ -3209,7 +3209,7 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' #. Option for the 'Status' (Select) field in DocType 'LMS Course' -#: frontend/src/components/Modals/Event.vue:388 +#: frontend/src/components/Modals/Event.vue:404 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_course/lms_course.json msgid "In Progress" @@ -3353,7 +3353,7 @@ msgstr "" #. Label of the issue_date (Date) field in DocType 'Certification' #. Label of the issue_date (Date) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:28 -#: frontend/src/components/Modals/Event.vue:138 +#: frontend/src/components/Modals/Event.vue:144 #: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Issue Date" @@ -3456,7 +3456,7 @@ msgstr "" msgid "Join Call" msgstr "" -#: frontend/src/components/Modals/Event.vue:78 +#: frontend/src/components/Modals/Event.vue:84 msgid "Join Meeting" msgstr "" @@ -3896,7 +3896,7 @@ msgstr "LinkedIn" msgid "LinkedIn ID" msgstr "" -#: frontend/src/pages/Courses.vue:341 +#: frontend/src/pages/Courses.vue:340 msgid "Live" msgstr "" @@ -4429,7 +4429,7 @@ msgstr "Név" #: frontend/src/components/Settings/Members.vue:17 #: frontend/src/components/Settings/PaymentGateways.vue:16 #: frontend/src/components/Settings/ZoomSettings.vue:17 -#: frontend/src/pages/Courses.vue:344 +#: frontend/src/pages/Courses.vue:343 #: frontend/src/pages/Programs/Programs.vue:10 #: lms/lms/doctype/lms_badge/lms_badge.json msgid "New" @@ -4461,7 +4461,7 @@ msgstr "" msgid "New Job Applicant" msgstr "" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:12 msgid "New Payment Gateway" msgstr "" @@ -4778,12 +4778,7 @@ msgstr "" #: frontend/src/components/UserAvatar.vue:11 #: frontend/src/pages/CertifiedParticipants.vue:46 #: frontend/src/pages/Profile.vue:69 -msgid "Open to Opportunities" -msgstr "" - -#. Option for the 'Open to' (Select) field in DocType 'User' -#: lms/fixtures/custom_field.json -msgid "Opportunities" +msgid "Open to Work" msgstr "" #. Label of the option (Data) field in DocType 'LMS Option' @@ -4924,7 +4919,7 @@ msgstr "" #. Submission' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:392 +#: frontend/src/components/Modals/Event.vue:408 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Pass" @@ -5054,7 +5049,7 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' #. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' -#: frontend/src/components/Modals/Event.vue:384 +#: frontend/src/components/Modals/Event.vue:400 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json msgid "Pending" @@ -5194,7 +5189,7 @@ msgstr "" msgid "Please login to continue with payment." msgstr "" -#: lms/lms/utils.py:2081 +#: lms/lms/utils.py:2082 msgid "Please login to enroll in the program." msgstr "" @@ -5525,7 +5520,7 @@ msgstr "" #. Label of the published (Check) field in DocType 'LMS Course' #. Label of the published (Check) field in DocType 'LMS Program' #: frontend/src/components/Modals/BulkCertificates.vue:51 -#: frontend/src/components/Modals/Event.vue:122 +#: frontend/src/components/Modals/Event.vue:128 #: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105 #: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/StudentPrograms.vue:100 @@ -5693,7 +5688,7 @@ msgstr "" #. Label of the rating (Data) field in DocType 'LMS Course' #. Label of the rating (Rating) field in DocType 'LMS Course Review' #: frontend/src/components/CourseCardOverlay.vue:147 -#: frontend/src/components/Modals/Event.vue:92 +#: frontend/src/components/Modals/Event.vue:98 #: frontend/src/components/Modals/ReviewModal.vue:18 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_course/lms_course.json @@ -5929,14 +5924,14 @@ msgstr "Szombat" #: frontend/src/components/Modals/AssignmentForm.vue:65 #: frontend/src/components/Modals/EditProfile.vue:121 #: frontend/src/components/Modals/EmailTemplateModal.vue:12 -#: frontend/src/components/Modals/Event.vue:115 -#: frontend/src/components/Modals/Event.vue:151 +#: frontend/src/components/Modals/Event.vue:121 +#: frontend/src/components/Modals/Event.vue:157 #: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeForm.vue:78 #: frontend/src/components/Settings/Coupons/CouponDetails.vue:78 -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:41 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:129 #: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17 #: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14 @@ -6048,7 +6043,7 @@ msgstr "" msgid "Select Date" msgstr "" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:26 msgid "Select Payment Gateway" msgstr "" @@ -6364,7 +6359,7 @@ msgstr "Statisztikák" #. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Submission' #. Label of the status (Select) field in DocType 'LMS Test Case Submission' -#: frontend/src/components/Modals/Event.vue:99 +#: frontend/src/components/Modals/Event.vue:105 #: frontend/src/components/Settings/Badges.vue:228 #: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/pages/AssignmentSubmissionList.vue:19 @@ -6475,7 +6470,7 @@ msgstr "" #. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:106 +#: frontend/src/components/Modals/Event.vue:112 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Summary" msgstr "Összefoglalás" @@ -6571,7 +6566,7 @@ msgstr "" #. Label of the template (Link) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:43 -#: frontend/src/components/Modals/Event.vue:127 +#: frontend/src/components/Modals/Event.vue:133 #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Template" msgstr "Sablon" @@ -6620,7 +6615,7 @@ msgstr "" msgid "Thanks and Regards" msgstr "" -#: lms/lms/utils.py:2247 +#: lms/lms/utils.py:2248 msgid "The batch does not exist." msgstr "" @@ -6628,7 +6623,7 @@ msgstr "" msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session." msgstr "" -#: lms/lms/utils.py:1747 +#: lms/lms/utils.py:1748 msgid "The coupon code '{0}' is invalid." msgstr "" @@ -6652,7 +6647,7 @@ msgstr "" msgid "The last day to schedule your evaluations is " msgstr "" -#: lms/lms/utils.py:2231 +#: lms/lms/utils.py:2232 msgid "The lesson does not exist." msgstr "" @@ -6660,7 +6655,7 @@ msgstr "" msgid "The slot is already booked by another participant." msgstr "" -#: lms/lms/utils.py:1361 lms/lms/utils.py:1477 lms/lms/utils.py:1944 +#: lms/lms/utils.py:1362 lms/lms/utils.py:1478 lms/lms/utils.py:1945 msgid "The specified batch does not exist." msgstr "" @@ -6726,15 +6721,15 @@ msgstr "" msgid "This class has ended" msgstr "" -#: lms/lms/utils.py:1776 +#: lms/lms/utils.py:1777 msgid "This coupon has expired." msgstr "" -#: lms/lms/utils.py:1779 +#: lms/lms/utils.py:1780 msgid "This coupon has reached its maximum usage limit." msgstr "" -#: lms/lms/utils.py:1788 +#: lms/lms/utils.py:1789 msgid "This coupon is not applicable to this {0}." msgstr "" @@ -6742,7 +6737,7 @@ msgstr "" msgid "This course has:" msgstr "" -#: lms/lms/utils.py:1707 +#: lms/lms/utils.py:1708 msgid "This course is free." msgstr "" @@ -6799,7 +6794,7 @@ msgid "Thursday" msgstr "Csütörtök" #. Label of the time (Time) field in DocType 'LMS Live Class' -#: frontend/src/components/Modals/Event.vue:48 +#: frontend/src/components/Modals/Event.vue:54 #: frontend/src/components/Modals/LiveClassModal.vue:52 #: frontend/src/components/Quiz.vue:58 #: lms/lms/doctype/lms_live_class/lms_live_class.json @@ -6934,7 +6929,7 @@ msgstr "Címzett" msgid "To Date" msgstr "Dátumig" -#: lms/lms/utils.py:1721 +#: lms/lms/utils.py:1722 msgid "To join this batch, please contact the Administrator." msgstr "" @@ -7056,7 +7051,7 @@ msgstr "" msgid "Under Review" msgstr "" -#: frontend/src/pages/Batches.vue:330 frontend/src/pages/Courses.vue:356 +#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:355 msgid "Unpublished" msgstr "" @@ -7077,8 +7072,8 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Label of the upcoming (Check) field in DocType 'LMS Course' -#: frontend/src/pages/Batches.vue:328 frontend/src/pages/CourseForm.vue:117 -#: frontend/src/pages/Courses.vue:347 +#: frontend/src/pages/Batches.vue:330 frontend/src/pages/CourseForm.vue:117 +#: frontend/src/pages/Courses.vue:346 #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_course/lms_course.json msgid "Upcoming" @@ -7220,7 +7215,7 @@ msgid "View Applications" msgstr "" #: frontend/src/components/CertificationLinks.vue:10 -#: frontend/src/components/Modals/Event.vue:67 +#: frontend/src/components/Modals/Event.vue:73 msgid "View Certificate" msgstr "" @@ -7327,6 +7322,11 @@ msgstr "" msgid "Withdrawn" msgstr "" +#. Option for the 'Open to' (Select) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Work" +msgstr "" + #. Label of the work_environment (Section Break) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Work Environment" @@ -7427,7 +7427,7 @@ msgstr "" msgid "You cannot enroll in an unpublished course." msgstr "" -#: lms/lms/utils.py:2085 +#: lms/lms/utils.py:2086 msgid "You cannot enroll in an unpublished program." msgstr "" @@ -7443,11 +7443,11 @@ msgstr "" msgid "You cannot schedule evaluations for past slots." msgstr "" -#: lms/lms/utils.py:2259 +#: lms/lms/utils.py:2260 msgid "You do not have access to this batch." msgstr "" -#: lms/lms/utils.py:2242 +#: lms/lms/utils.py:2243 msgid "You do not have access to this course." msgstr "" diff --git a/lms/locale/id.po b/lms/locale/id.po index 110e8f1f..13b18b79 100644 --- a/lms/locale/id.po +++ b/lms/locale/id.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n" -"POT-Creation-Date: 2026-01-16 16:04+0000\n" -"PO-Revision-Date: 2026-01-19 20:13\n" +"POT-Creation-Date: 2026-01-23 16:05+0000\n" +"PO-Revision-Date: 2026-02-05 06:43\n" "Last-Translator: jannat@frappe.io\n" "Language-Team: Indonesian\n" "MIME-Version: 1.0\n" @@ -319,7 +319,7 @@ msgid "Administrator" msgstr "" #. Name of a role -#: frontend/src/pages/Batches.vue:319 lms/lms/doctype/lms_badge/lms_badge.json +#: frontend/src/pages/Batches.vue:321 lms/lms/doctype/lms_badge/lms_badge.json msgid "All" msgstr "Semua" @@ -486,7 +486,7 @@ msgstr "" msgid "Apps" msgstr "" -#: frontend/src/pages/Batches.vue:329 +#: frontend/src/pages/Batches.vue:331 msgid "Archived" msgstr "" @@ -753,7 +753,7 @@ msgstr "" #. Label of the batch_name (Link) field in DocType 'LMS Certificate' #. Label of the batch_name (Link) field in DocType 'LMS Certificate Request' #. Label of the batch_name (Link) field in DocType 'LMS Live Class' -#: frontend/src/components/Modals/Event.vue:32 +#: frontend/src/components/Modals/Event.vue:35 #: frontend/src/components/Settings/BadgeForm.vue:195 #: frontend/src/components/Settings/Badges.vue:200 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125 @@ -878,7 +878,7 @@ msgid "Batch:" msgstr "" #. Label of the batches (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/Batches.vue:350 frontend/src/pages/Batches.vue:357 +#: frontend/src/pages/Batches.vue:352 frontend/src/pages/Batches.vue:359 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121 msgid "Batches" msgstr "" @@ -1023,7 +1023,7 @@ msgstr "" msgid "Certificate of Completion" msgstr "" -#: frontend/src/components/Modals/Event.vue:347 +#: frontend/src/components/Modals/Event.vue:353 msgid "Certificate saved successfully" msgstr "" @@ -1043,7 +1043,7 @@ msgstr "" #. Label of a chart in the LMS Workspace #. Label of a Card Break in the LMS Workspace #. Label of a Link in the LMS Workspace -#: frontend/src/components/Modals/Event.vue:411 +#: frontend/src/components/Modals/Event.vue:427 #: frontend/src/components/Sidebar/AppSidebar.vue:550 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100 #: frontend/src/pages/CourseCertification.vue:10 @@ -1771,7 +1771,7 @@ msgstr "" #: frontend/src/components/Modals/BatchStudentProgress.vue:95 #: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/CourseCertification.vue:127 -#: frontend/src/pages/Courses.vue:365 frontend/src/pages/Courses.vue:372 +#: frontend/src/pages/Courses.vue:364 frontend/src/pages/Courses.vue:371 #: frontend/src/pages/Programs/ProgramForm.vue:49 #: frontend/src/pages/Programs/Programs.vue:35 #: lms/lms/doctype/lms_batch/lms_batch.json @@ -1878,7 +1878,7 @@ msgstr "" msgid "Create your first quiz" msgstr "" -#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:355 +#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:354 msgid "Created" msgstr "" @@ -1954,7 +1954,7 @@ msgstr "Impor data" #. Label of the date (Date) field in DocType 'LMS Certificate Request' #. Label of the date (Date) field in DocType 'LMS Live Class' #. Label of the date (Date) field in DocType 'Scheduled Flow' -#: frontend/src/components/Modals/Event.vue:40 +#: frontend/src/components/Modals/Event.vue:46 #: frontend/src/components/Modals/LiveClassModal.vue:29 #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json @@ -2241,7 +2241,7 @@ msgstr "" msgid "Edit Email Template" msgstr "" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:13 msgid "Edit Payment Gateway" msgstr "" @@ -2424,7 +2424,7 @@ msgstr "" msgid "Enroll Now" msgstr "" -#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:358 +#: frontend/src/pages/Batches.vue:334 frontend/src/pages/Courses.vue:357 #: frontend/src/pages/Programs/StudentPrograms.vue:96 msgid "Enrolled" msgstr "" @@ -2526,7 +2526,7 @@ msgstr "" #. Label of a Link in the LMS Workspace #. Label of a shortcut in the LMS Workspace -#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json +#: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json msgid "Evaluation" msgstr "Evaluasi" @@ -2551,7 +2551,7 @@ msgstr "" msgid "Evaluation end date cannot be less than the batch end date." msgstr "" -#: frontend/src/components/Modals/Event.vue:286 +#: frontend/src/components/Modals/Event.vue:292 msgid "Evaluation saved successfully" msgstr "" @@ -2664,7 +2664,7 @@ msgstr "" #. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:33 -#: frontend/src/components/Modals/Event.vue:144 +#: frontend/src/components/Modals/Event.vue:150 #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Expiry Date" msgstr "" @@ -2695,7 +2695,7 @@ msgstr "" #. Submission' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:396 +#: frontend/src/components/Modals/Event.vue:412 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Fail" @@ -3209,7 +3209,7 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' #. Option for the 'Status' (Select) field in DocType 'LMS Course' -#: frontend/src/components/Modals/Event.vue:388 +#: frontend/src/components/Modals/Event.vue:404 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_course/lms_course.json msgid "In Progress" @@ -3353,7 +3353,7 @@ msgstr "" #. Label of the issue_date (Date) field in DocType 'Certification' #. Label of the issue_date (Date) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:28 -#: frontend/src/components/Modals/Event.vue:138 +#: frontend/src/components/Modals/Event.vue:144 #: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Issue Date" @@ -3456,7 +3456,7 @@ msgstr "" msgid "Join Call" msgstr "" -#: frontend/src/components/Modals/Event.vue:78 +#: frontend/src/components/Modals/Event.vue:84 msgid "Join Meeting" msgstr "" @@ -3896,7 +3896,7 @@ msgstr "" msgid "LinkedIn ID" msgstr "" -#: frontend/src/pages/Courses.vue:341 +#: frontend/src/pages/Courses.vue:340 msgid "Live" msgstr "" @@ -4429,7 +4429,7 @@ msgstr "Nama" #: frontend/src/components/Settings/Members.vue:17 #: frontend/src/components/Settings/PaymentGateways.vue:16 #: frontend/src/components/Settings/ZoomSettings.vue:17 -#: frontend/src/pages/Courses.vue:344 +#: frontend/src/pages/Courses.vue:343 #: frontend/src/pages/Programs/Programs.vue:10 #: lms/lms/doctype/lms_badge/lms_badge.json msgid "New" @@ -4461,7 +4461,7 @@ msgstr "" msgid "New Job Applicant" msgstr "" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:12 msgid "New Payment Gateway" msgstr "" @@ -4778,14 +4778,9 @@ msgstr "" #: frontend/src/components/UserAvatar.vue:11 #: frontend/src/pages/CertifiedParticipants.vue:46 #: frontend/src/pages/Profile.vue:69 -msgid "Open to Opportunities" +msgid "Open to Work" msgstr "" -#. Option for the 'Open to' (Select) field in DocType 'User' -#: lms/fixtures/custom_field.json -msgid "Opportunities" -msgstr "Peluang" - #. Label of the option (Data) field in DocType 'LMS Option' #: frontend/src/components/Modals/Question.vue:70 #: lms/lms/doctype/lms_option/lms_option.json @@ -4842,7 +4837,7 @@ msgstr "" #. Option for the 'User Category' (Select) field in DocType 'User' #: lms/fixtures/custom_field.json lms/templates/signup-form.html:28 msgid "Others" -msgstr "Lainnya" +msgstr "" #: frontend/src/pages/Home/StudentHome.vue:9 msgid "Our Popular Courses" @@ -4924,7 +4919,7 @@ msgstr "" #. Submission' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:392 +#: frontend/src/components/Modals/Event.vue:408 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Pass" @@ -5054,7 +5049,7 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' #. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' -#: frontend/src/components/Modals/Event.vue:384 +#: frontend/src/components/Modals/Event.vue:400 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json msgid "Pending" @@ -5194,7 +5189,7 @@ msgstr "" msgid "Please login to continue with payment." msgstr "" -#: lms/lms/utils.py:2081 +#: lms/lms/utils.py:2082 msgid "Please login to enroll in the program." msgstr "" @@ -5525,7 +5520,7 @@ msgstr "" #. Label of the published (Check) field in DocType 'LMS Course' #. Label of the published (Check) field in DocType 'LMS Program' #: frontend/src/components/Modals/BulkCertificates.vue:51 -#: frontend/src/components/Modals/Event.vue:122 +#: frontend/src/components/Modals/Event.vue:128 #: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105 #: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/StudentPrograms.vue:100 @@ -5693,7 +5688,7 @@ msgstr "" #. Label of the rating (Data) field in DocType 'LMS Course' #. Label of the rating (Rating) field in DocType 'LMS Course Review' #: frontend/src/components/CourseCardOverlay.vue:147 -#: frontend/src/components/Modals/Event.vue:92 +#: frontend/src/components/Modals/Event.vue:98 #: frontend/src/components/Modals/ReviewModal.vue:18 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_course/lms_course.json @@ -5929,14 +5924,14 @@ msgstr "" #: frontend/src/components/Modals/AssignmentForm.vue:65 #: frontend/src/components/Modals/EditProfile.vue:121 #: frontend/src/components/Modals/EmailTemplateModal.vue:12 -#: frontend/src/components/Modals/Event.vue:115 -#: frontend/src/components/Modals/Event.vue:151 +#: frontend/src/components/Modals/Event.vue:121 +#: frontend/src/components/Modals/Event.vue:157 #: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeForm.vue:78 #: frontend/src/components/Settings/Coupons/CouponDetails.vue:78 -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:41 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:129 #: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17 #: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14 @@ -6048,7 +6043,7 @@ msgstr "" msgid "Select Date" msgstr "" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:26 msgid "Select Payment Gateway" msgstr "" @@ -6364,7 +6359,7 @@ msgstr "" #. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Submission' #. Label of the status (Select) field in DocType 'LMS Test Case Submission' -#: frontend/src/components/Modals/Event.vue:99 +#: frontend/src/components/Modals/Event.vue:105 #: frontend/src/components/Settings/Badges.vue:228 #: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/pages/AssignmentSubmissionList.vue:19 @@ -6475,7 +6470,7 @@ msgstr "" #. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:106 +#: frontend/src/components/Modals/Event.vue:112 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Summary" msgstr "Ringkasan" @@ -6571,7 +6566,7 @@ msgstr "" #. Label of the template (Link) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:43 -#: frontend/src/components/Modals/Event.vue:127 +#: frontend/src/components/Modals/Event.vue:133 #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Template" msgstr "" @@ -6620,7 +6615,7 @@ msgstr "" msgid "Thanks and Regards" msgstr "" -#: lms/lms/utils.py:2247 +#: lms/lms/utils.py:2248 msgid "The batch does not exist." msgstr "" @@ -6628,7 +6623,7 @@ msgstr "" msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session." msgstr "" -#: lms/lms/utils.py:1747 +#: lms/lms/utils.py:1748 msgid "The coupon code '{0}' is invalid." msgstr "" @@ -6652,7 +6647,7 @@ msgstr "" msgid "The last day to schedule your evaluations is " msgstr "" -#: lms/lms/utils.py:2231 +#: lms/lms/utils.py:2232 msgid "The lesson does not exist." msgstr "" @@ -6660,7 +6655,7 @@ msgstr "" msgid "The slot is already booked by another participant." msgstr "" -#: lms/lms/utils.py:1361 lms/lms/utils.py:1477 lms/lms/utils.py:1944 +#: lms/lms/utils.py:1362 lms/lms/utils.py:1478 lms/lms/utils.py:1945 msgid "The specified batch does not exist." msgstr "" @@ -6726,15 +6721,15 @@ msgstr "" msgid "This class has ended" msgstr "" -#: lms/lms/utils.py:1776 +#: lms/lms/utils.py:1777 msgid "This coupon has expired." msgstr "" -#: lms/lms/utils.py:1779 +#: lms/lms/utils.py:1780 msgid "This coupon has reached its maximum usage limit." msgstr "" -#: lms/lms/utils.py:1788 +#: lms/lms/utils.py:1789 msgid "This coupon is not applicable to this {0}." msgstr "" @@ -6742,7 +6737,7 @@ msgstr "" msgid "This course has:" msgstr "" -#: lms/lms/utils.py:1707 +#: lms/lms/utils.py:1708 msgid "This course is free." msgstr "" @@ -6799,7 +6794,7 @@ msgid "Thursday" msgstr "" #. Label of the time (Time) field in DocType 'LMS Live Class' -#: frontend/src/components/Modals/Event.vue:48 +#: frontend/src/components/Modals/Event.vue:54 #: frontend/src/components/Modals/LiveClassModal.vue:52 #: frontend/src/components/Quiz.vue:58 #: lms/lms/doctype/lms_live_class/lms_live_class.json @@ -6934,7 +6929,7 @@ msgstr "Untuk" msgid "To Date" msgstr "Untuk Tanggal" -#: lms/lms/utils.py:1721 +#: lms/lms/utils.py:1722 msgid "To join this batch, please contact the Administrator." msgstr "" @@ -7056,7 +7051,7 @@ msgstr "" msgid "Under Review" msgstr "" -#: frontend/src/pages/Batches.vue:330 frontend/src/pages/Courses.vue:356 +#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:355 msgid "Unpublished" msgstr "" @@ -7077,8 +7072,8 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Label of the upcoming (Check) field in DocType 'LMS Course' -#: frontend/src/pages/Batches.vue:328 frontend/src/pages/CourseForm.vue:117 -#: frontend/src/pages/Courses.vue:347 +#: frontend/src/pages/Batches.vue:330 frontend/src/pages/CourseForm.vue:117 +#: frontend/src/pages/Courses.vue:346 #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_course/lms_course.json msgid "Upcoming" @@ -7220,7 +7215,7 @@ msgid "View Applications" msgstr "" #: frontend/src/components/CertificationLinks.vue:10 -#: frontend/src/components/Modals/Event.vue:67 +#: frontend/src/components/Modals/Event.vue:73 msgid "View Certificate" msgstr "" @@ -7327,6 +7322,11 @@ msgstr "" msgid "Withdrawn" msgstr "" +#. Option for the 'Open to' (Select) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Work" +msgstr "" + #. Label of the work_environment (Section Break) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Work Environment" @@ -7427,7 +7427,7 @@ msgstr "" msgid "You cannot enroll in an unpublished course." msgstr "" -#: lms/lms/utils.py:2085 +#: lms/lms/utils.py:2086 msgid "You cannot enroll in an unpublished program." msgstr "" @@ -7443,11 +7443,11 @@ msgstr "" msgid "You cannot schedule evaluations for past slots." msgstr "" -#: lms/lms/utils.py:2259 +#: lms/lms/utils.py:2260 msgid "You do not have access to this batch." msgstr "" -#: lms/lms/utils.py:2242 +#: lms/lms/utils.py:2243 msgid "You do not have access to this course." msgstr "" diff --git a/lms/locale/it.po b/lms/locale/it.po index ff6cba60..b052da81 100644 --- a/lms/locale/it.po +++ b/lms/locale/it.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n" -"POT-Creation-Date: 2026-01-16 16:04+0000\n" -"PO-Revision-Date: 2026-01-21 20:16\n" +"POT-Creation-Date: 2026-01-23 16:05+0000\n" +"PO-Revision-Date: 2026-02-05 06:43\n" "Last-Translator: jannat@frappe.io\n" "Language-Team: Italian\n" "MIME-Version: 1.0\n" @@ -32,7 +32,7 @@ msgstr "" #: lms/templates/emails/published_batch_notification.html:19 msgid " to " -msgstr "" +msgstr " a " #: frontend/src/pages/Home/Streak.vue:21 msgid " you are on a" @@ -88,24 +88,24 @@ msgstr "" #: lms/lms/doctype/lms_batch/lms_batch.py:189 msgid "A new batch '{0}' has been published that might interest you. Check it out!" -msgstr "" +msgstr "È stato pubblicato un nuovo corso '{0}' che potrebbe interessarti. Dai un'occhiata!" #: lms/templates/emails/published_batch_notification.html:7 msgid "A new batch has been published on " -msgstr "" +msgstr "Un nuovo corso è stato pubblicato su " #: lms/lms/doctype/lms_course/lms_course.py:198 msgid "A new course '{0}' has been published that might interest you. Check it out!" -msgstr "" +msgstr "È stato pubblicato un nuovo corso '{0}' che potrebbe interessarti. Dai un'occhiata!" #: lms/templates/emails/published_course_notification.html:7 msgid "A new course has been published on " -msgstr "" +msgstr "Un nuovo corso è stato pubblicato su " #: lms/lms/doctype/lms_batch/lms_batch.py:151 #: lms/lms/doctype/lms_course/lms_course.py:162 msgid "A new course has been published on {0}" -msgstr "" +msgstr "Un nuovo corso è stato pubblicato su {0}" #: frontend/src/pages/CourseForm.vue:143 msgid "A one line introduction to the course that appears on the course card" @@ -222,7 +222,7 @@ msgstr "" #: frontend/src/pages/CourseForm.vue:55 msgid "Add a keyword and then press enter" -msgstr "" +msgstr "Aggiungi una password e poi premi Invio" #: frontend/src/components/Sidebar/AppSidebar.vue:525 msgid "Add a lesson" @@ -263,7 +263,7 @@ msgstr "" #: frontend/src/components/Sidebar/AppSidebar.vue:488 msgid "Add courses to your batch" -msgstr "" +msgstr "Aggiungi corsi al tuo gruppo" #: frontend/src/components/Modals/QuizInVideo.vue:5 msgid "Add quiz to this video" @@ -319,7 +319,7 @@ msgid "Administrator" msgstr "" #. Name of a role -#: frontend/src/pages/Batches.vue:319 lms/lms/doctype/lms_badge/lms_badge.json +#: frontend/src/pages/Batches.vue:321 lms/lms/doctype/lms_badge/lms_badge.json msgid "All" msgstr "" @@ -393,7 +393,7 @@ msgstr "" #: lms/lms/doctype/lms_batch/lms_batch.py:75 msgid "Amount and currency are required for paid batches." -msgstr "" +msgstr "Per i gruppi a pagamento sono richiesti importo e valuta." #: lms/lms/doctype/lms_course/lms_course.py:77 msgid "Amount and currency are required for paid certificates." @@ -437,7 +437,7 @@ msgstr "" #. Label of the applicable_items (Table) field in DocType 'LMS Coupon' #: lms/lms/doctype/lms_coupon/lms_coupon.json msgid "Applicable Items" -msgstr "" +msgstr "Articoli applicabili" #: frontend/src/pages/JobApplications.vue:22 msgid "Application" @@ -446,7 +446,7 @@ msgstr "" #. Label of a field in the job-opportunity Web Form #: lms/job/web_form/job_opportunity/job_opportunity.json msgid "Application Form Link" -msgstr "" +msgstr "Link al modulo di domanda" #: frontend/src/pages/JobApplications.vue:14 #: frontend/src/pages/JobApplications.vue:22 @@ -486,7 +486,7 @@ msgstr "" msgid "Apps" msgstr "Applicazioni" -#: frontend/src/pages/Batches.vue:329 +#: frontend/src/pages/Batches.vue:331 msgid "Archived" msgstr "" @@ -591,7 +591,7 @@ msgstr "" #: frontend/src/pages/AssignmentSubmissionList.vue:222 msgid "Assignment Submissions" -msgstr "" +msgstr "Invio degli incarichi" #. Label of the assignment_title (Data) field in DocType 'LMS Assignment #. Submission' @@ -753,7 +753,7 @@ msgstr "" #. Label of the batch_name (Link) field in DocType 'LMS Certificate' #. Label of the batch_name (Link) field in DocType 'LMS Certificate Request' #. Label of the batch_name (Link) field in DocType 'LMS Live Class' -#: frontend/src/components/Modals/Event.vue:32 +#: frontend/src/components/Modals/Event.vue:35 #: frontend/src/components/Settings/BadgeForm.vue:195 #: frontend/src/components/Settings/Badges.vue:200 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125 @@ -878,10 +878,10 @@ msgid "Batch:" msgstr "" #. Label of the batches (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/Batches.vue:350 frontend/src/pages/Batches.vue:357 +#: frontend/src/pages/Batches.vue:352 frontend/src/pages/Batches.vue:359 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121 msgid "Batches" -msgstr "" +msgstr "Gruppi" #: lms/templates/emails/batch_confirmation.html:33 #: lms/templates/emails/batch_start_reminder.html:31 @@ -1023,7 +1023,7 @@ msgstr "" msgid "Certificate of Completion" msgstr "" -#: frontend/src/components/Modals/Event.vue:347 +#: frontend/src/components/Modals/Event.vue:353 msgid "Certificate saved successfully" msgstr "" @@ -1043,7 +1043,7 @@ msgstr "" #. Label of a chart in the LMS Workspace #. Label of a Card Break in the LMS Workspace #. Label of a Link in the LMS Workspace -#: frontend/src/components/Modals/Event.vue:411 +#: frontend/src/components/Modals/Event.vue:427 #: frontend/src/components/Sidebar/AppSidebar.vue:550 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100 #: frontend/src/pages/CourseCertification.vue:10 @@ -1244,7 +1244,7 @@ msgstr "Client Secret" #: frontend/src/components/Settings/Categories.vue:27 msgid "Close" -msgstr "Vicino" +msgstr "Chiudi" #. Option for the 'Status' (Select) field in DocType 'Job Opportunity' #. Option in a Select field in the job-opportunity Web Form @@ -1275,7 +1275,7 @@ msgstr "" #: frontend/src/components/Sidebar/AppSidebar.vue:155 msgid "Collapse" -msgstr "" +msgstr "Riduci" #. Label of the college (Data) field in DocType 'User' #: lms/fixtures/custom_field.json @@ -1303,7 +1303,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 "Commenti" #: frontend/src/components/Assignment.vue:148 msgid "Comments by Evaluator" @@ -1377,7 +1377,7 @@ msgstr "" #: lms/lms/doctype/lms_course_progress/lms_course_progress.json #: lms/lms/widgets/CourseCard.html:75 msgid "Complete" -msgstr "" +msgstr "Completato" #: lms/templates/emails/lms_invite_request_approved.html:7 msgid "Complete Sign Up" @@ -1771,7 +1771,7 @@ msgstr "" #: frontend/src/components/Modals/BatchStudentProgress.vue:95 #: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/CourseCertification.vue:127 -#: frontend/src/pages/Courses.vue:365 frontend/src/pages/Courses.vue:372 +#: frontend/src/pages/Courses.vue:364 frontend/src/pages/Courses.vue:371 #: frontend/src/pages/Programs/ProgramForm.vue:49 #: frontend/src/pages/Programs/Programs.vue:35 #: lms/lms/doctype/lms_batch/lms_batch.json @@ -1824,7 +1824,7 @@ msgstr "" #: frontend/src/components/Controls/Link.vue:38 #: frontend/src/components/Controls/MultiSelect.vue:76 msgid "Create New" -msgstr "Crea Nuovo" +msgstr "Crea nuovo" #: frontend/src/pages/Programs/ProgramForm.vue:12 msgid "Create Program" @@ -1878,7 +1878,7 @@ msgstr "" msgid "Create your first quiz" msgstr "" -#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:355 +#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:354 msgid "Created" msgstr "" @@ -1943,7 +1943,7 @@ msgstr "Ciano" #. Label of the show_dashboard (Check) field in DocType 'LMS Settings' #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Dashboard" -msgstr "" +msgstr "Dashboard" #: frontend/src/pages/DataImport.vue:46 msgid "Data Import" @@ -1954,7 +1954,7 @@ msgstr "Importazione Dati" #. Label of the date (Date) field in DocType 'LMS Certificate Request' #. Label of the date (Date) field in DocType 'LMS Live Class' #. Label of the date (Date) field in DocType 'Scheduled Flow' -#: frontend/src/components/Modals/Event.vue:40 +#: frontend/src/components/Modals/Event.vue:46 #: frontend/src/components/Modals/LiveClassModal.vue:29 #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json @@ -2020,7 +2020,7 @@ msgstr "" #: frontend/src/pages/Programs/ProgramForm.vue:230 #: frontend/src/pages/Programs/ProgramForm.vue:567 msgid "Delete" -msgstr "Eliminare" +msgstr "Elimina" #: frontend/src/components/CourseOutline.vue:67 msgid "Delete Chapter" @@ -2164,7 +2164,7 @@ msgstr "" #: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json msgid "Document" -msgstr "" +msgstr "Documento" #: frontend/src/components/Settings/Coupons/CouponItems.vue:11 msgid "Document Name" @@ -2241,7 +2241,7 @@ msgstr "" msgid "Edit Email Template" msgstr "" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:13 msgid "Edit Payment Gateway" msgstr "" @@ -2424,7 +2424,7 @@ msgstr "" msgid "Enroll Now" msgstr "" -#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:358 +#: frontend/src/pages/Batches.vue:334 frontend/src/pages/Courses.vue:357 #: frontend/src/pages/Programs/StudentPrograms.vue:96 msgid "Enrolled" msgstr "" @@ -2526,7 +2526,7 @@ msgstr "" #. Label of a Link in the LMS Workspace #. Label of a shortcut in the LMS Workspace -#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json +#: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json msgid "Evaluation" msgstr "" @@ -2551,7 +2551,7 @@ msgstr "" msgid "Evaluation end date cannot be less than the batch end date." msgstr "" -#: frontend/src/components/Modals/Event.vue:286 +#: frontend/src/components/Modals/Event.vue:292 msgid "Evaluation saved successfully" msgstr "" @@ -2664,7 +2664,7 @@ msgstr "" #. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:33 -#: frontend/src/components/Modals/Event.vue:144 +#: frontend/src/components/Modals/Event.vue:150 #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Expiry Date" msgstr "" @@ -2695,7 +2695,7 @@ msgstr "" #. Submission' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:396 +#: frontend/src/components/Modals/Event.vue:412 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Fail" @@ -2796,7 +2796,7 @@ msgstr "" #: frontend/src/components/Modals/EditProfile.vue:70 #: frontend/src/components/Settings/Members.vue:110 msgid "First Name" -msgstr "Nome di battesimo" +msgstr "Nome" #. Option for the 'Time Preference' (Select) field in DocType 'User' #: lms/fixtures/custom_field.json @@ -2908,7 +2908,7 @@ msgstr "" #: frontend/src/components/Settings/PaymentGateways.vue:134 msgid "Gateway" -msgstr "" +msgstr "Ingresso" #. Label of the general_tab (Tab Break) field in DocType 'LMS Settings' #: lms/lms/doctype/lms_settings/lms_settings.json @@ -2949,7 +2949,7 @@ msgstr "" #: frontend/src/components/Modals/EditProfile.vue:82 msgid "GitHub ID" -msgstr "" +msgstr "ID GitHub" #. Label of the github (Data) field in DocType 'User' #: lms/fixtures/custom_field.json @@ -3025,7 +3025,7 @@ msgstr "" #: frontend/src/components/Sidebar/AppSidebar.vue:141 msgid "Help" -msgstr "" +msgstr "Aiuto" #: lms/templates/courses_created.html:15 msgid "Help others learn something new by creating a course." @@ -3076,7 +3076,7 @@ msgstr "" #: frontend/src/components/Notes/InlineLessonMenu.vue:12 msgid "Highlight" -msgstr "" +msgstr "Evidenzia" #. Label of the highlighted_text (Small Text) field in DocType 'LMS Lesson #. Note' @@ -3124,13 +3124,13 @@ msgstr "" #: frontend/src/pages/QuizForm.vue:338 msgid "ID" -msgstr "" +msgstr "ID" #. Label of the icon (Data) field in DocType 'LMS Sidebar Item' #: frontend/src/components/Modals/PageModal.vue:28 #: lms/lms/doctype/lms_sidebar_item/lms_sidebar_item.json msgid "Icon" -msgstr "" +msgstr "Icona" #. Label of the user_category (Check) field in DocType 'LMS Settings' #: lms/lms/doctype/lms_settings/lms_settings.json @@ -3209,7 +3209,7 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' #. Option for the 'Status' (Select) field in DocType 'LMS Course' -#: frontend/src/components/Modals/Event.vue:388 +#: frontend/src/components/Modals/Event.vue:404 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_course/lms_course.json msgid "In Progress" @@ -3288,7 +3288,7 @@ msgstr "" #: frontend/src/pages/Lesson.vue:233 frontend/src/pages/LessonForm.vue:42 #: lms/lms/doctype/course_lesson/course_lesson.json msgid "Instructor Notes" -msgstr "" +msgstr "Note dell'istruttore" #. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch' #. Label of the instructors (Rating) field in DocType 'LMS Batch Feedback' @@ -3353,7 +3353,7 @@ msgstr "" #. Label of the issue_date (Date) field in DocType 'Certification' #. Label of the issue_date (Date) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:28 -#: frontend/src/components/Modals/Event.vue:138 +#: frontend/src/components/Modals/Event.vue:144 #: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Issue Date" @@ -3456,7 +3456,7 @@ msgstr "" msgid "Join Call" msgstr "" -#: frontend/src/components/Modals/Event.vue:78 +#: frontend/src/components/Modals/Event.vue:84 msgid "Join Meeting" msgstr "" @@ -3563,12 +3563,12 @@ msgstr "" #. Name of a DocType #: lms/lms/doctype/lms_coupon/lms_coupon.json msgid "LMS Coupon" -msgstr "" +msgstr "Coupon LMS" #. Name of a DocType #: lms/lms/doctype/lms_coupon_item/lms_coupon_item.json msgid "LMS Coupon Item" -msgstr "" +msgstr "Elemento Coupon LMS" #. Option for the 'Reference DocType' (Select) field in DocType 'LMS Coupon #. Item' @@ -3896,7 +3896,7 @@ msgstr "LinkedIn" msgid "LinkedIn ID" msgstr "" -#: frontend/src/pages/Courses.vue:341 +#: frontend/src/pages/Courses.vue:340 msgid "Live" msgstr "" @@ -4012,7 +4012,7 @@ msgstr "" #: frontend/src/pages/Notifications.vue:12 msgid "Mark all as read" -msgstr "" +msgstr "Segna tutto come letto" #. Label of the marks (Int) field in DocType 'LMS Quiz Question' #. Label of the marks (Int) field in DocType 'LMS Quiz Result' @@ -4319,7 +4319,7 @@ msgstr "" #. Label of the milestone (Check) field in DocType 'LMS Batch Timetable' #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json msgid "Milestone" -msgstr "" +msgstr "Milestone" #: lms/lms/doctype/lms_question/lms_question.py:49 msgid "Minimum two options are required for multiple choice questions." @@ -4429,7 +4429,7 @@ msgstr "" #: frontend/src/components/Settings/Members.vue:17 #: frontend/src/components/Settings/PaymentGateways.vue:16 #: frontend/src/components/Settings/ZoomSettings.vue:17 -#: frontend/src/pages/Courses.vue:344 +#: frontend/src/pages/Courses.vue:343 #: frontend/src/pages/Programs/Programs.vue:10 #: lms/lms/doctype/lms_badge/lms_badge.json msgid "New" @@ -4461,7 +4461,7 @@ msgstr "" msgid "New Job Applicant" msgstr "" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:12 msgid "New Payment Gateway" msgstr "" @@ -4479,7 +4479,7 @@ msgstr "" #: lms/lms/utils.py:423 msgid "New comment in batch {0}" -msgstr "" +msgstr "Nuovo commento nel gruppo {0}" #: lms/lms/utils.py:414 msgid "New reply on the topic {0} in course {1}" @@ -4683,7 +4683,7 @@ msgstr "" #. Settings' #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Notifications" -msgstr "" +msgstr "Notifiche" #: lms/lms/widgets/NoPreviewModal.html:30 msgid "Notify me when available" @@ -4778,12 +4778,7 @@ msgstr "" #: frontend/src/components/UserAvatar.vue:11 #: frontend/src/pages/CertifiedParticipants.vue:46 #: frontend/src/pages/Profile.vue:69 -msgid "Open to Opportunities" -msgstr "" - -#. Option for the 'Open to' (Select) field in DocType 'User' -#: lms/fixtures/custom_field.json -msgid "Opportunities" +msgid "Open to Work" msgstr "" #. Label of the option (Data) field in DocType 'LMS Option' @@ -4855,7 +4850,7 @@ msgstr "" #. Label of the output (Data) field in DocType 'LMS Test Case Submission' #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json msgid "Output" -msgstr "" +msgstr "Risultato" #: frontend/src/components/Settings/BadgeForm.vue:216 #: lms/lms/doctype/lms_badge/lms_badge.js:37 @@ -4889,7 +4884,7 @@ msgstr "" #: frontend/src/pages/BatchForm.vue:222 #: lms/lms/doctype/lms_batch/lms_batch.json msgid "Paid Batch" -msgstr "" +msgstr "Gruppo a pagamento" #. Label of the paid_certificate (Check) field in DocType 'LMS Course' #: frontend/src/pages/CourseForm.vue:207 @@ -4924,7 +4919,7 @@ msgstr "" #. Submission' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:392 +#: frontend/src/components/Modals/Event.vue:408 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Pass" @@ -4950,7 +4945,7 @@ msgstr "" #. Label of the password (Password) field in DocType 'LMS Live Class' #: lms/lms/doctype/lms_live_class/lms_live_class.json msgid "Password" -msgstr "" +msgstr "Password" #: frontend/src/pages/CourseForm.vue:167 msgid "Paste the youtube link of a short video introducing the course" @@ -5054,7 +5049,7 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' #. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' -#: frontend/src/components/Modals/Event.vue:384 +#: frontend/src/components/Modals/Event.vue:400 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json msgid "Pending" @@ -5172,7 +5167,7 @@ msgstr "" #: lms/lms/doctype/lms_batch/lms_batch.py:68 msgid "Please install the Payments App to create a paid batch. Refer to the documentation for more details. {0}" -msgstr "" +msgstr "Installa l'app Pagamenti per creare un gruppo a pagamento. Consulta la documentazione per maggiori dettagli. {0}" #: lms/lms/doctype/lms_course/lms_course.py:57 msgid "Please install the Payments App to create a paid course. Refer to the documentation for more details. {0}" @@ -5194,7 +5189,7 @@ msgstr "" msgid "Please login to continue with payment." msgstr "" -#: lms/lms/utils.py:2081 +#: lms/lms/utils.py:2082 msgid "Please login to enroll in the program." msgstr "" @@ -5525,7 +5520,7 @@ msgstr "" #. Label of the published (Check) field in DocType 'LMS Course' #. Label of the published (Check) field in DocType 'LMS Program' #: frontend/src/components/Modals/BulkCertificates.vue:51 -#: frontend/src/components/Modals/Event.vue:122 +#: frontend/src/components/Modals/Event.vue:128 #: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105 #: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/StudentPrograms.vue:100 @@ -5693,7 +5688,7 @@ msgstr "" #. Label of the rating (Data) field in DocType 'LMS Course' #. Label of the rating (Rating) field in DocType 'LMS Course Review' #: frontend/src/components/CourseCardOverlay.vue:147 -#: frontend/src/components/Modals/Event.vue:92 +#: frontend/src/components/Modals/Event.vue:98 #: frontend/src/components/Modals/ReviewModal.vue:18 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_course/lms_course.json @@ -5929,14 +5924,14 @@ msgstr "" #: frontend/src/components/Modals/AssignmentForm.vue:65 #: frontend/src/components/Modals/EditProfile.vue:121 #: frontend/src/components/Modals/EmailTemplateModal.vue:12 -#: frontend/src/components/Modals/Event.vue:115 -#: frontend/src/components/Modals/Event.vue:151 +#: frontend/src/components/Modals/Event.vue:121 +#: frontend/src/components/Modals/Event.vue:157 #: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeForm.vue:78 #: frontend/src/components/Settings/Coupons/CouponDetails.vue:78 -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:41 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:129 #: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17 #: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14 @@ -5947,7 +5942,7 @@ msgstr "" #: frontend/src/pages/Quizzes.vue:105 #: lms/job/web_form/job_opportunity/job_opportunity.json msgid "Save" -msgstr "" +msgstr "Salva" #. Label of the schedule (Table) field in DocType 'Course Evaluator' #: lms/lms/doctype/course_evaluator/course_evaluator.json @@ -6048,7 +6043,7 @@ msgstr "" msgid "Select Date" msgstr "" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:26 msgid "Select Payment Gateway" msgstr "" @@ -6364,7 +6359,7 @@ msgstr "" #. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Submission' #. Label of the status (Select) field in DocType 'LMS Test Case Submission' -#: frontend/src/components/Modals/Event.vue:99 +#: frontend/src/components/Modals/Event.vue:105 #: frontend/src/components/Settings/Badges.vue:228 #: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/pages/AssignmentSubmissionList.vue:19 @@ -6475,7 +6470,7 @@ msgstr "" #. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:106 +#: frontend/src/components/Modals/Event.vue:112 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Summary" msgstr "" @@ -6547,7 +6542,7 @@ msgstr "Amministratore Sistema" #: frontend/src/pages/CourseForm.vue:51 #: lms/lms/doctype/lms_course/lms_course.json msgid "Tags" -msgstr "Etichette" +msgstr "Tag" #: frontend/src/components/InstallPrompt.vue:52 msgid "Tap" @@ -6571,7 +6566,7 @@ msgstr "" #. Label of the template (Link) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:43 -#: frontend/src/components/Modals/Event.vue:127 +#: frontend/src/components/Modals/Event.vue:133 #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Template" msgstr "Modelli" @@ -6620,7 +6615,7 @@ msgstr "" msgid "Thanks and Regards" msgstr "" -#: lms/lms/utils.py:2247 +#: lms/lms/utils.py:2248 msgid "The batch does not exist." msgstr "" @@ -6628,7 +6623,7 @@ msgstr "" msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session." msgstr "" -#: lms/lms/utils.py:1747 +#: lms/lms/utils.py:1748 msgid "The coupon code '{0}' is invalid." msgstr "" @@ -6652,7 +6647,7 @@ msgstr "" msgid "The last day to schedule your evaluations is " msgstr "" -#: lms/lms/utils.py:2231 +#: lms/lms/utils.py:2232 msgid "The lesson does not exist." msgstr "" @@ -6660,7 +6655,7 @@ msgstr "" msgid "The slot is already booked by another participant." msgstr "" -#: lms/lms/utils.py:1361 lms/lms/utils.py:1477 lms/lms/utils.py:1944 +#: lms/lms/utils.py:1362 lms/lms/utils.py:1478 lms/lms/utils.py:1945 msgid "The specified batch does not exist." msgstr "" @@ -6705,7 +6700,7 @@ msgstr "" #. 'LMS Batch' #: lms/lms/doctype/lms_batch/lms_batch.json msgid "These customisations will work on the main batch page." -msgstr "" +msgstr "Queste personalizzazioni funzioneranno sulla pagina principale del gruppo." #: frontend/src/pages/Badge.vue:14 msgid "This badge has been awarded to {0} on {1}." @@ -6726,15 +6721,15 @@ msgstr "" msgid "This class has ended" msgstr "" -#: lms/lms/utils.py:1776 +#: lms/lms/utils.py:1777 msgid "This coupon has expired." msgstr "" -#: lms/lms/utils.py:1779 +#: lms/lms/utils.py:1780 msgid "This coupon has reached its maximum usage limit." msgstr "" -#: lms/lms/utils.py:1788 +#: lms/lms/utils.py:1789 msgid "This coupon is not applicable to this {0}." msgstr "" @@ -6742,7 +6737,7 @@ msgstr "" msgid "This course has:" msgstr "" -#: lms/lms/utils.py:1707 +#: lms/lms/utils.py:1708 msgid "This course is free." msgstr "" @@ -6799,7 +6794,7 @@ msgid "Thursday" msgstr "" #. Label of the time (Time) field in DocType 'LMS Live Class' -#: frontend/src/components/Modals/Event.vue:48 +#: frontend/src/components/Modals/Event.vue:54 #: frontend/src/components/Modals/LiveClassModal.vue:52 #: frontend/src/components/Quiz.vue:58 #: lms/lms/doctype/lms_live_class/lms_live_class.json @@ -6934,7 +6929,7 @@ msgstr "" msgid "To Date" msgstr "" -#: lms/lms/utils.py:1721 +#: lms/lms/utils.py:1722 msgid "To join this batch, please contact the Administrator." msgstr "" @@ -7056,7 +7051,7 @@ msgstr "" msgid "Under Review" msgstr "" -#: frontend/src/pages/Batches.vue:330 frontend/src/pages/Courses.vue:356 +#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:355 msgid "Unpublished" msgstr "" @@ -7077,8 +7072,8 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Label of the upcoming (Check) field in DocType 'LMS Course' -#: frontend/src/pages/Batches.vue:328 frontend/src/pages/CourseForm.vue:117 -#: frontend/src/pages/Courses.vue:347 +#: frontend/src/pages/Batches.vue:330 frontend/src/pages/CourseForm.vue:117 +#: frontend/src/pages/Courses.vue:346 #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_course/lms_course.json msgid "Upcoming" @@ -7109,7 +7104,7 @@ msgstr "" #: frontend/src/pages/ProgrammingExercises/ProgrammingExercises.vue:281 msgid "Updated On" -msgstr "" +msgstr "Aggiornato il" #: frontend/src/components/Controls/Uploader.vue:23 msgid "Upload" @@ -7220,7 +7215,7 @@ msgid "View Applications" msgstr "" #: frontend/src/components/CertificationLinks.vue:10 -#: frontend/src/components/Modals/Event.vue:67 +#: frontend/src/components/Modals/Event.vue:73 msgid "View Certificate" msgstr "" @@ -7327,6 +7322,11 @@ msgstr "" msgid "Withdrawn" msgstr "" +#. Option for the 'Open to' (Select) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Work" +msgstr "" + #. Label of the work_environment (Section Break) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Work Environment" @@ -7427,7 +7427,7 @@ msgstr "" msgid "You cannot enroll in an unpublished course." msgstr "" -#: lms/lms/utils.py:2085 +#: lms/lms/utils.py:2086 msgid "You cannot enroll in an unpublished program." msgstr "" @@ -7443,11 +7443,11 @@ msgstr "" msgid "You cannot schedule evaluations for past slots." msgstr "" -#: lms/lms/utils.py:2259 +#: lms/lms/utils.py:2260 msgid "You do not have access to this batch." msgstr "" -#: lms/lms/utils.py:2242 +#: lms/lms/utils.py:2243 msgid "You do not have access to this course." msgstr "" @@ -7819,11 +7819,11 @@ msgstr "per chiudere" #: frontend/src/components/CommandPalette/CommandPalette.vue:45 msgid "to navigate" -msgstr "" +msgstr "per navigare" #: frontend/src/components/CommandPalette/CommandPalette.vue:53 msgid "to select" -msgstr "" +msgstr "per selezionare" #: frontend/src/components/BatchFeedback.vue:12 msgid "to view your feedback." @@ -7867,7 +7867,7 @@ msgstr "" #: lms/lms/doctype/lms_course/lms_course.py:195 msgid "{0} has published a new course {1}" -msgstr "" +msgstr "{0} ha pubblicato un nuovo corso {1}" #: lms/templates/emails/job_report.html:4 msgid "{0} has reported a job post for the following reason." @@ -7899,7 +7899,7 @@ msgstr "" #: lms/templates/emails/mention_template.html:2 msgid "{0} mentioned you in a comment in your batch." -msgstr "" +msgstr "{0} ti ha menzionato in un commento nel tuo gruppo." #: lms/lms/utils.py:469 lms/lms/utils.py:475 msgid "{0} mentioned you in a comment in {1}" diff --git a/lms/locale/my.po b/lms/locale/my.po index a5ea4b29..062c1a32 100644 --- a/lms/locale/my.po +++ b/lms/locale/my.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n" -"POT-Creation-Date: 2026-01-16 16:04+0000\n" -"PO-Revision-Date: 2026-01-19 20:13\n" +"POT-Creation-Date: 2026-01-23 16:05+0000\n" +"PO-Revision-Date: 2026-02-05 06:43\n" "Last-Translator: jannat@frappe.io\n" "Language-Team: Burmese\n" "MIME-Version: 1.0\n" @@ -319,7 +319,7 @@ msgid "Administrator" msgstr "" #. Name of a role -#: frontend/src/pages/Batches.vue:319 lms/lms/doctype/lms_badge/lms_badge.json +#: frontend/src/pages/Batches.vue:321 lms/lms/doctype/lms_badge/lms_badge.json msgid "All" msgstr "" @@ -486,7 +486,7 @@ msgstr "" msgid "Apps" msgstr "" -#: frontend/src/pages/Batches.vue:329 +#: frontend/src/pages/Batches.vue:331 msgid "Archived" msgstr "" @@ -753,7 +753,7 @@ msgstr "" #. Label of the batch_name (Link) field in DocType 'LMS Certificate' #. Label of the batch_name (Link) field in DocType 'LMS Certificate Request' #. Label of the batch_name (Link) field in DocType 'LMS Live Class' -#: frontend/src/components/Modals/Event.vue:32 +#: frontend/src/components/Modals/Event.vue:35 #: frontend/src/components/Settings/BadgeForm.vue:195 #: frontend/src/components/Settings/Badges.vue:200 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125 @@ -878,7 +878,7 @@ msgid "Batch:" msgstr "" #. Label of the batches (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/Batches.vue:350 frontend/src/pages/Batches.vue:357 +#: frontend/src/pages/Batches.vue:352 frontend/src/pages/Batches.vue:359 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121 msgid "Batches" msgstr "" @@ -1023,7 +1023,7 @@ msgstr "" msgid "Certificate of Completion" msgstr "" -#: frontend/src/components/Modals/Event.vue:347 +#: frontend/src/components/Modals/Event.vue:353 msgid "Certificate saved successfully" msgstr "" @@ -1043,7 +1043,7 @@ msgstr "" #. Label of a chart in the LMS Workspace #. Label of a Card Break in the LMS Workspace #. Label of a Link in the LMS Workspace -#: frontend/src/components/Modals/Event.vue:411 +#: frontend/src/components/Modals/Event.vue:427 #: frontend/src/components/Sidebar/AppSidebar.vue:550 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100 #: frontend/src/pages/CourseCertification.vue:10 @@ -1771,7 +1771,7 @@ msgstr "" #: frontend/src/components/Modals/BatchStudentProgress.vue:95 #: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/CourseCertification.vue:127 -#: frontend/src/pages/Courses.vue:365 frontend/src/pages/Courses.vue:372 +#: frontend/src/pages/Courses.vue:364 frontend/src/pages/Courses.vue:371 #: frontend/src/pages/Programs/ProgramForm.vue:49 #: frontend/src/pages/Programs/Programs.vue:35 #: lms/lms/doctype/lms_batch/lms_batch.json @@ -1878,7 +1878,7 @@ msgstr "" msgid "Create your first quiz" msgstr "" -#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:355 +#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:354 msgid "Created" msgstr "" @@ -1954,7 +1954,7 @@ msgstr "" #. Label of the date (Date) field in DocType 'LMS Certificate Request' #. Label of the date (Date) field in DocType 'LMS Live Class' #. Label of the date (Date) field in DocType 'Scheduled Flow' -#: frontend/src/components/Modals/Event.vue:40 +#: frontend/src/components/Modals/Event.vue:46 #: frontend/src/components/Modals/LiveClassModal.vue:29 #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json @@ -2241,7 +2241,7 @@ msgstr "" msgid "Edit Email Template" msgstr "" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:13 msgid "Edit Payment Gateway" msgstr "" @@ -2424,7 +2424,7 @@ msgstr "" msgid "Enroll Now" msgstr "" -#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:358 +#: frontend/src/pages/Batches.vue:334 frontend/src/pages/Courses.vue:357 #: frontend/src/pages/Programs/StudentPrograms.vue:96 msgid "Enrolled" msgstr "" @@ -2526,7 +2526,7 @@ msgstr "" #. Label of a Link in the LMS Workspace #. Label of a shortcut in the LMS Workspace -#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json +#: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json msgid "Evaluation" msgstr "" @@ -2551,7 +2551,7 @@ msgstr "" msgid "Evaluation end date cannot be less than the batch end date." msgstr "" -#: frontend/src/components/Modals/Event.vue:286 +#: frontend/src/components/Modals/Event.vue:292 msgid "Evaluation saved successfully" msgstr "" @@ -2664,7 +2664,7 @@ msgstr "" #. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:33 -#: frontend/src/components/Modals/Event.vue:144 +#: frontend/src/components/Modals/Event.vue:150 #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Expiry Date" msgstr "" @@ -2695,7 +2695,7 @@ msgstr "" #. Submission' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:396 +#: frontend/src/components/Modals/Event.vue:412 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Fail" @@ -3209,7 +3209,7 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' #. Option for the 'Status' (Select) field in DocType 'LMS Course' -#: frontend/src/components/Modals/Event.vue:388 +#: frontend/src/components/Modals/Event.vue:404 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_course/lms_course.json msgid "In Progress" @@ -3353,7 +3353,7 @@ msgstr "" #. Label of the issue_date (Date) field in DocType 'Certification' #. Label of the issue_date (Date) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:28 -#: frontend/src/components/Modals/Event.vue:138 +#: frontend/src/components/Modals/Event.vue:144 #: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Issue Date" @@ -3456,7 +3456,7 @@ msgstr "" msgid "Join Call" msgstr "" -#: frontend/src/components/Modals/Event.vue:78 +#: frontend/src/components/Modals/Event.vue:84 msgid "Join Meeting" msgstr "" @@ -3896,7 +3896,7 @@ msgstr "" msgid "LinkedIn ID" msgstr "" -#: frontend/src/pages/Courses.vue:341 +#: frontend/src/pages/Courses.vue:340 msgid "Live" msgstr "" @@ -4429,7 +4429,7 @@ msgstr "" #: frontend/src/components/Settings/Members.vue:17 #: frontend/src/components/Settings/PaymentGateways.vue:16 #: frontend/src/components/Settings/ZoomSettings.vue:17 -#: frontend/src/pages/Courses.vue:344 +#: frontend/src/pages/Courses.vue:343 #: frontend/src/pages/Programs/Programs.vue:10 #: lms/lms/doctype/lms_badge/lms_badge.json msgid "New" @@ -4461,7 +4461,7 @@ msgstr "" msgid "New Job Applicant" msgstr "" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:12 msgid "New Payment Gateway" msgstr "" @@ -4778,12 +4778,7 @@ msgstr "" #: frontend/src/components/UserAvatar.vue:11 #: frontend/src/pages/CertifiedParticipants.vue:46 #: frontend/src/pages/Profile.vue:69 -msgid "Open to Opportunities" -msgstr "" - -#. Option for the 'Open to' (Select) field in DocType 'User' -#: lms/fixtures/custom_field.json -msgid "Opportunities" +msgid "Open to Work" msgstr "" #. Label of the option (Data) field in DocType 'LMS Option' @@ -4924,7 +4919,7 @@ msgstr "" #. Submission' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:392 +#: frontend/src/components/Modals/Event.vue:408 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Pass" @@ -5054,7 +5049,7 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' #. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' -#: frontend/src/components/Modals/Event.vue:384 +#: frontend/src/components/Modals/Event.vue:400 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json msgid "Pending" @@ -5194,7 +5189,7 @@ msgstr "" msgid "Please login to continue with payment." msgstr "" -#: lms/lms/utils.py:2081 +#: lms/lms/utils.py:2082 msgid "Please login to enroll in the program." msgstr "" @@ -5525,7 +5520,7 @@ msgstr "" #. Label of the published (Check) field in DocType 'LMS Course' #. Label of the published (Check) field in DocType 'LMS Program' #: frontend/src/components/Modals/BulkCertificates.vue:51 -#: frontend/src/components/Modals/Event.vue:122 +#: frontend/src/components/Modals/Event.vue:128 #: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105 #: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/StudentPrograms.vue:100 @@ -5693,7 +5688,7 @@ msgstr "" #. Label of the rating (Data) field in DocType 'LMS Course' #. Label of the rating (Rating) field in DocType 'LMS Course Review' #: frontend/src/components/CourseCardOverlay.vue:147 -#: frontend/src/components/Modals/Event.vue:92 +#: frontend/src/components/Modals/Event.vue:98 #: frontend/src/components/Modals/ReviewModal.vue:18 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_course/lms_course.json @@ -5929,14 +5924,14 @@ msgstr "" #: frontend/src/components/Modals/AssignmentForm.vue:65 #: frontend/src/components/Modals/EditProfile.vue:121 #: frontend/src/components/Modals/EmailTemplateModal.vue:12 -#: frontend/src/components/Modals/Event.vue:115 -#: frontend/src/components/Modals/Event.vue:151 +#: frontend/src/components/Modals/Event.vue:121 +#: frontend/src/components/Modals/Event.vue:157 #: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeForm.vue:78 #: frontend/src/components/Settings/Coupons/CouponDetails.vue:78 -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:41 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:129 #: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17 #: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14 @@ -6048,7 +6043,7 @@ msgstr "" msgid "Select Date" msgstr "" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:26 msgid "Select Payment Gateway" msgstr "" @@ -6364,7 +6359,7 @@ msgstr "" #. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Submission' #. Label of the status (Select) field in DocType 'LMS Test Case Submission' -#: frontend/src/components/Modals/Event.vue:99 +#: frontend/src/components/Modals/Event.vue:105 #: frontend/src/components/Settings/Badges.vue:228 #: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/pages/AssignmentSubmissionList.vue:19 @@ -6475,7 +6470,7 @@ msgstr "" #. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:106 +#: frontend/src/components/Modals/Event.vue:112 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Summary" msgstr "" @@ -6571,7 +6566,7 @@ msgstr "" #. Label of the template (Link) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:43 -#: frontend/src/components/Modals/Event.vue:127 +#: frontend/src/components/Modals/Event.vue:133 #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Template" msgstr "" @@ -6620,7 +6615,7 @@ msgstr "" msgid "Thanks and Regards" msgstr "" -#: lms/lms/utils.py:2247 +#: lms/lms/utils.py:2248 msgid "The batch does not exist." msgstr "" @@ -6628,7 +6623,7 @@ msgstr "" msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session." msgstr "" -#: lms/lms/utils.py:1747 +#: lms/lms/utils.py:1748 msgid "The coupon code '{0}' is invalid." msgstr "" @@ -6652,7 +6647,7 @@ msgstr "" msgid "The last day to schedule your evaluations is " msgstr "" -#: lms/lms/utils.py:2231 +#: lms/lms/utils.py:2232 msgid "The lesson does not exist." msgstr "" @@ -6660,7 +6655,7 @@ msgstr "" msgid "The slot is already booked by another participant." msgstr "" -#: lms/lms/utils.py:1361 lms/lms/utils.py:1477 lms/lms/utils.py:1944 +#: lms/lms/utils.py:1362 lms/lms/utils.py:1478 lms/lms/utils.py:1945 msgid "The specified batch does not exist." msgstr "" @@ -6726,15 +6721,15 @@ msgstr "" msgid "This class has ended" msgstr "" -#: lms/lms/utils.py:1776 +#: lms/lms/utils.py:1777 msgid "This coupon has expired." msgstr "" -#: lms/lms/utils.py:1779 +#: lms/lms/utils.py:1780 msgid "This coupon has reached its maximum usage limit." msgstr "" -#: lms/lms/utils.py:1788 +#: lms/lms/utils.py:1789 msgid "This coupon is not applicable to this {0}." msgstr "" @@ -6742,7 +6737,7 @@ msgstr "" msgid "This course has:" msgstr "" -#: lms/lms/utils.py:1707 +#: lms/lms/utils.py:1708 msgid "This course is free." msgstr "" @@ -6799,7 +6794,7 @@ msgid "Thursday" msgstr "" #. Label of the time (Time) field in DocType 'LMS Live Class' -#: frontend/src/components/Modals/Event.vue:48 +#: frontend/src/components/Modals/Event.vue:54 #: frontend/src/components/Modals/LiveClassModal.vue:52 #: frontend/src/components/Quiz.vue:58 #: lms/lms/doctype/lms_live_class/lms_live_class.json @@ -6934,7 +6929,7 @@ msgstr "" msgid "To Date" msgstr "" -#: lms/lms/utils.py:1721 +#: lms/lms/utils.py:1722 msgid "To join this batch, please contact the Administrator." msgstr "" @@ -7056,7 +7051,7 @@ msgstr "" msgid "Under Review" msgstr "" -#: frontend/src/pages/Batches.vue:330 frontend/src/pages/Courses.vue:356 +#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:355 msgid "Unpublished" msgstr "" @@ -7077,8 +7072,8 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Label of the upcoming (Check) field in DocType 'LMS Course' -#: frontend/src/pages/Batches.vue:328 frontend/src/pages/CourseForm.vue:117 -#: frontend/src/pages/Courses.vue:347 +#: frontend/src/pages/Batches.vue:330 frontend/src/pages/CourseForm.vue:117 +#: frontend/src/pages/Courses.vue:346 #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_course/lms_course.json msgid "Upcoming" @@ -7220,7 +7215,7 @@ msgid "View Applications" msgstr "" #: frontend/src/components/CertificationLinks.vue:10 -#: frontend/src/components/Modals/Event.vue:67 +#: frontend/src/components/Modals/Event.vue:73 msgid "View Certificate" msgstr "" @@ -7327,6 +7322,11 @@ msgstr "" msgid "Withdrawn" msgstr "" +#. Option for the 'Open to' (Select) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Work" +msgstr "" + #. Label of the work_environment (Section Break) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Work Environment" @@ -7427,7 +7427,7 @@ msgstr "" msgid "You cannot enroll in an unpublished course." msgstr "" -#: lms/lms/utils.py:2085 +#: lms/lms/utils.py:2086 msgid "You cannot enroll in an unpublished program." msgstr "" @@ -7443,11 +7443,11 @@ msgstr "" msgid "You cannot schedule evaluations for past slots." msgstr "" -#: lms/lms/utils.py:2259 +#: lms/lms/utils.py:2260 msgid "You do not have access to this batch." msgstr "" -#: lms/lms/utils.py:2242 +#: lms/lms/utils.py:2243 msgid "You do not have access to this course." msgstr "" diff --git a/lms/locale/nb.po b/lms/locale/nb.po index 6d2ccf10..5d1e8f1b 100644 --- a/lms/locale/nb.po +++ b/lms/locale/nb.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n" -"POT-Creation-Date: 2026-01-16 16:04+0000\n" -"PO-Revision-Date: 2026-01-21 20:16\n" +"POT-Creation-Date: 2026-01-23 16:05+0000\n" +"PO-Revision-Date: 2026-02-05 06:43\n" "Last-Translator: jannat@frappe.io\n" "Language-Team: Norwegian Bokmal\n" "MIME-Version: 1.0\n" @@ -319,7 +319,7 @@ msgid "Administrator" msgstr "Administrator" #. Name of a role -#: frontend/src/pages/Batches.vue:319 lms/lms/doctype/lms_badge/lms_badge.json +#: frontend/src/pages/Batches.vue:321 lms/lms/doctype/lms_badge/lms_badge.json msgid "All" msgstr "Alle" @@ -486,7 +486,7 @@ msgstr "Godkjent" msgid "Apps" msgstr "Apper" -#: frontend/src/pages/Batches.vue:329 +#: frontend/src/pages/Batches.vue:331 msgid "Archived" msgstr "Arkivert" @@ -753,7 +753,7 @@ msgstr "" #. Label of the batch_name (Link) field in DocType 'LMS Certificate' #. Label of the batch_name (Link) field in DocType 'LMS Certificate Request' #. Label of the batch_name (Link) field in DocType 'LMS Live Class' -#: frontend/src/components/Modals/Event.vue:32 +#: frontend/src/components/Modals/Event.vue:35 #: frontend/src/components/Settings/BadgeForm.vue:195 #: frontend/src/components/Settings/Badges.vue:200 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125 @@ -878,7 +878,7 @@ msgid "Batch:" msgstr "" #. Label of the batches (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/Batches.vue:350 frontend/src/pages/Batches.vue:357 +#: frontend/src/pages/Batches.vue:352 frontend/src/pages/Batches.vue:359 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121 msgid "Batches" msgstr "" @@ -1023,7 +1023,7 @@ msgstr "" msgid "Certificate of Completion" msgstr "" -#: frontend/src/components/Modals/Event.vue:347 +#: frontend/src/components/Modals/Event.vue:353 msgid "Certificate saved successfully" msgstr "" @@ -1043,7 +1043,7 @@ msgstr "" #. Label of a chart in the LMS Workspace #. Label of a Card Break in the LMS Workspace #. Label of a Link in the LMS Workspace -#: frontend/src/components/Modals/Event.vue:411 +#: frontend/src/components/Modals/Event.vue:427 #: frontend/src/components/Sidebar/AppSidebar.vue:550 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100 #: frontend/src/pages/CourseCertification.vue:10 @@ -1771,7 +1771,7 @@ msgstr "" #: frontend/src/components/Modals/BatchStudentProgress.vue:95 #: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/CourseCertification.vue:127 -#: frontend/src/pages/Courses.vue:365 frontend/src/pages/Courses.vue:372 +#: frontend/src/pages/Courses.vue:364 frontend/src/pages/Courses.vue:371 #: frontend/src/pages/Programs/ProgramForm.vue:49 #: frontend/src/pages/Programs/Programs.vue:35 #: lms/lms/doctype/lms_batch/lms_batch.json @@ -1878,7 +1878,7 @@ msgstr "" msgid "Create your first quiz" msgstr "" -#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:355 +#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:354 msgid "Created" msgstr "Opprettet" @@ -1954,7 +1954,7 @@ msgstr "Dataimport" #. Label of the date (Date) field in DocType 'LMS Certificate Request' #. Label of the date (Date) field in DocType 'LMS Live Class' #. Label of the date (Date) field in DocType 'Scheduled Flow' -#: frontend/src/components/Modals/Event.vue:40 +#: frontend/src/components/Modals/Event.vue:46 #: frontend/src/components/Modals/LiveClassModal.vue:29 #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json @@ -2241,7 +2241,7 @@ msgstr "" msgid "Edit Email Template" msgstr "" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:13 msgid "Edit Payment Gateway" msgstr "" @@ -2424,7 +2424,7 @@ msgstr "" msgid "Enroll Now" msgstr "" -#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:358 +#: frontend/src/pages/Batches.vue:334 frontend/src/pages/Courses.vue:357 #: frontend/src/pages/Programs/StudentPrograms.vue:96 msgid "Enrolled" msgstr "" @@ -2526,7 +2526,7 @@ msgstr "" #. Label of a Link in the LMS Workspace #. Label of a shortcut in the LMS Workspace -#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json +#: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json msgid "Evaluation" msgstr "" @@ -2551,7 +2551,7 @@ msgstr "" msgid "Evaluation end date cannot be less than the batch end date." msgstr "" -#: frontend/src/components/Modals/Event.vue:286 +#: frontend/src/components/Modals/Event.vue:292 msgid "Evaluation saved successfully" msgstr "" @@ -2664,7 +2664,7 @@ msgstr "Utløper den" #. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:33 -#: frontend/src/components/Modals/Event.vue:144 +#: frontend/src/components/Modals/Event.vue:150 #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Expiry Date" msgstr "Utløpsdato" @@ -2695,7 +2695,7 @@ msgstr "" #. Submission' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:396 +#: frontend/src/components/Modals/Event.vue:412 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Fail" @@ -3209,7 +3209,7 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' #. Option for the 'Status' (Select) field in DocType 'LMS Course' -#: frontend/src/components/Modals/Event.vue:388 +#: frontend/src/components/Modals/Event.vue:404 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_course/lms_course.json msgid "In Progress" @@ -3353,7 +3353,7 @@ msgstr "" #. Label of the issue_date (Date) field in DocType 'Certification' #. Label of the issue_date (Date) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:28 -#: frontend/src/components/Modals/Event.vue:138 +#: frontend/src/components/Modals/Event.vue:144 #: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Issue Date" @@ -3456,7 +3456,7 @@ msgstr "" msgid "Join Call" msgstr "" -#: frontend/src/components/Modals/Event.vue:78 +#: frontend/src/components/Modals/Event.vue:84 msgid "Join Meeting" msgstr "" @@ -3896,7 +3896,7 @@ msgstr "" msgid "LinkedIn ID" msgstr "" -#: frontend/src/pages/Courses.vue:341 +#: frontend/src/pages/Courses.vue:340 msgid "Live" msgstr "" @@ -4429,7 +4429,7 @@ msgstr "Navn" #: frontend/src/components/Settings/Members.vue:17 #: frontend/src/components/Settings/PaymentGateways.vue:16 #: frontend/src/components/Settings/ZoomSettings.vue:17 -#: frontend/src/pages/Courses.vue:344 +#: frontend/src/pages/Courses.vue:343 #: frontend/src/pages/Programs/Programs.vue:10 #: lms/lms/doctype/lms_badge/lms_badge.json msgid "New" @@ -4461,7 +4461,7 @@ msgstr "" msgid "New Job Applicant" msgstr "" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:12 msgid "New Payment Gateway" msgstr "" @@ -4778,12 +4778,7 @@ msgstr "" #: frontend/src/components/UserAvatar.vue:11 #: frontend/src/pages/CertifiedParticipants.vue:46 #: frontend/src/pages/Profile.vue:69 -msgid "Open to Opportunities" -msgstr "" - -#. Option for the 'Open to' (Select) field in DocType 'User' -#: lms/fixtures/custom_field.json -msgid "Opportunities" +msgid "Open to Work" msgstr "" #. Label of the option (Data) field in DocType 'LMS Option' @@ -4924,7 +4919,7 @@ msgstr "" #. Submission' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:392 +#: frontend/src/components/Modals/Event.vue:408 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Pass" @@ -5054,7 +5049,7 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' #. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' -#: frontend/src/components/Modals/Event.vue:384 +#: frontend/src/components/Modals/Event.vue:400 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json msgid "Pending" @@ -5194,7 +5189,7 @@ msgstr "" msgid "Please login to continue with payment." msgstr "" -#: lms/lms/utils.py:2081 +#: lms/lms/utils.py:2082 msgid "Please login to enroll in the program." msgstr "" @@ -5525,7 +5520,7 @@ msgstr "" #. Label of the published (Check) field in DocType 'LMS Course' #. Label of the published (Check) field in DocType 'LMS Program' #: frontend/src/components/Modals/BulkCertificates.vue:51 -#: frontend/src/components/Modals/Event.vue:122 +#: frontend/src/components/Modals/Event.vue:128 #: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105 #: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/StudentPrograms.vue:100 @@ -5693,7 +5688,7 @@ msgstr "" #. Label of the rating (Data) field in DocType 'LMS Course' #. Label of the rating (Rating) field in DocType 'LMS Course Review' #: frontend/src/components/CourseCardOverlay.vue:147 -#: frontend/src/components/Modals/Event.vue:92 +#: frontend/src/components/Modals/Event.vue:98 #: frontend/src/components/Modals/ReviewModal.vue:18 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_course/lms_course.json @@ -5929,14 +5924,14 @@ msgstr "Lørdag" #: frontend/src/components/Modals/AssignmentForm.vue:65 #: frontend/src/components/Modals/EditProfile.vue:121 #: frontend/src/components/Modals/EmailTemplateModal.vue:12 -#: frontend/src/components/Modals/Event.vue:115 -#: frontend/src/components/Modals/Event.vue:151 +#: frontend/src/components/Modals/Event.vue:121 +#: frontend/src/components/Modals/Event.vue:157 #: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeForm.vue:78 #: frontend/src/components/Settings/Coupons/CouponDetails.vue:78 -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:41 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:129 #: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17 #: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14 @@ -6048,7 +6043,7 @@ msgstr "" msgid "Select Date" msgstr "" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:26 msgid "Select Payment Gateway" msgstr "" @@ -6364,7 +6359,7 @@ msgstr "Statistikk" #. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Submission' #. Label of the status (Select) field in DocType 'LMS Test Case Submission' -#: frontend/src/components/Modals/Event.vue:99 +#: frontend/src/components/Modals/Event.vue:105 #: frontend/src/components/Settings/Badges.vue:228 #: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/pages/AssignmentSubmissionList.vue:19 @@ -6475,7 +6470,7 @@ msgstr "" #. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:106 +#: frontend/src/components/Modals/Event.vue:112 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Summary" msgstr "Sammendrag" @@ -6571,7 +6566,7 @@ msgstr "" #. Label of the template (Link) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:43 -#: frontend/src/components/Modals/Event.vue:127 +#: frontend/src/components/Modals/Event.vue:133 #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Template" msgstr "Mal" @@ -6620,7 +6615,7 @@ msgstr "" msgid "Thanks and Regards" msgstr "" -#: lms/lms/utils.py:2247 +#: lms/lms/utils.py:2248 msgid "The batch does not exist." msgstr "" @@ -6628,7 +6623,7 @@ msgstr "" msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session." msgstr "" -#: lms/lms/utils.py:1747 +#: lms/lms/utils.py:1748 msgid "The coupon code '{0}' is invalid." msgstr "" @@ -6652,7 +6647,7 @@ msgstr "" msgid "The last day to schedule your evaluations is " msgstr "" -#: lms/lms/utils.py:2231 +#: lms/lms/utils.py:2232 msgid "The lesson does not exist." msgstr "" @@ -6660,7 +6655,7 @@ msgstr "" msgid "The slot is already booked by another participant." msgstr "" -#: lms/lms/utils.py:1361 lms/lms/utils.py:1477 lms/lms/utils.py:1944 +#: lms/lms/utils.py:1362 lms/lms/utils.py:1478 lms/lms/utils.py:1945 msgid "The specified batch does not exist." msgstr "" @@ -6726,15 +6721,15 @@ msgstr "" msgid "This class has ended" msgstr "" -#: lms/lms/utils.py:1776 +#: lms/lms/utils.py:1777 msgid "This coupon has expired." msgstr "" -#: lms/lms/utils.py:1779 +#: lms/lms/utils.py:1780 msgid "This coupon has reached its maximum usage limit." msgstr "" -#: lms/lms/utils.py:1788 +#: lms/lms/utils.py:1789 msgid "This coupon is not applicable to this {0}." msgstr "" @@ -6742,7 +6737,7 @@ msgstr "" msgid "This course has:" msgstr "" -#: lms/lms/utils.py:1707 +#: lms/lms/utils.py:1708 msgid "This course is free." msgstr "" @@ -6799,7 +6794,7 @@ msgid "Thursday" msgstr "Torsdag" #. Label of the time (Time) field in DocType 'LMS Live Class' -#: frontend/src/components/Modals/Event.vue:48 +#: frontend/src/components/Modals/Event.vue:54 #: frontend/src/components/Modals/LiveClassModal.vue:52 #: frontend/src/components/Quiz.vue:58 #: lms/lms/doctype/lms_live_class/lms_live_class.json @@ -6934,7 +6929,7 @@ msgstr "Til" msgid "To Date" msgstr "Til dato" -#: lms/lms/utils.py:1721 +#: lms/lms/utils.py:1722 msgid "To join this batch, please contact the Administrator." msgstr "" @@ -7056,7 +7051,7 @@ msgstr "" msgid "Under Review" msgstr "" -#: frontend/src/pages/Batches.vue:330 frontend/src/pages/Courses.vue:356 +#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:355 msgid "Unpublished" msgstr "" @@ -7077,8 +7072,8 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Label of the upcoming (Check) field in DocType 'LMS Course' -#: frontend/src/pages/Batches.vue:328 frontend/src/pages/CourseForm.vue:117 -#: frontend/src/pages/Courses.vue:347 +#: frontend/src/pages/Batches.vue:330 frontend/src/pages/CourseForm.vue:117 +#: frontend/src/pages/Courses.vue:346 #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_course/lms_course.json msgid "Upcoming" @@ -7220,7 +7215,7 @@ msgid "View Applications" msgstr "" #: frontend/src/components/CertificationLinks.vue:10 -#: frontend/src/components/Modals/Event.vue:67 +#: frontend/src/components/Modals/Event.vue:73 msgid "View Certificate" msgstr "" @@ -7327,6 +7322,11 @@ msgstr "" msgid "Withdrawn" msgstr "" +#. Option for the 'Open to' (Select) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Work" +msgstr "" + #. Label of the work_environment (Section Break) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Work Environment" @@ -7427,7 +7427,7 @@ msgstr "" msgid "You cannot enroll in an unpublished course." msgstr "" -#: lms/lms/utils.py:2085 +#: lms/lms/utils.py:2086 msgid "You cannot enroll in an unpublished program." msgstr "" @@ -7443,11 +7443,11 @@ msgstr "" msgid "You cannot schedule evaluations for past slots." msgstr "" -#: lms/lms/utils.py:2259 +#: lms/lms/utils.py:2260 msgid "You do not have access to this batch." msgstr "" -#: lms/lms/utils.py:2242 +#: lms/lms/utils.py:2243 msgid "You do not have access to this course." msgstr "" diff --git a/lms/locale/nl.po b/lms/locale/nl.po index f8473292..4af1a392 100644 --- a/lms/locale/nl.po +++ b/lms/locale/nl.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n" -"POT-Creation-Date: 2026-01-16 16:04+0000\n" -"PO-Revision-Date: 2026-01-21 20:16\n" +"POT-Creation-Date: 2026-01-23 16:05+0000\n" +"PO-Revision-Date: 2026-02-05 06:43\n" "Last-Translator: jannat@frappe.io\n" "Language-Team: Dutch\n" "MIME-Version: 1.0\n" @@ -20,113 +20,113 @@ msgstr "" #: lms/templates/emails/assignment_submission.html:5 msgid " Please evaluate and grade it." -msgstr "" +msgstr " Evalueer en beoordeel het alstublieft." #: frontend/src/pages/Programs/ProgramEnrollment.vue:32 msgid " designed as a learning path to guide your progress. You may take the courses in any order that suits you. " -msgstr "" +msgstr " dit leertraject is ontworpen om je voortgang te begeleiden. U kunt de cursussen in elke gewenste volgorde volgen. " #: frontend/src/pages/Programs/ProgramEnrollment.vue:25 msgid " designed as a structured learning path to guide your progress. Courses in this program must be taken in order, and each course will unlock as you complete the previous one. " -msgstr "" +msgstr " dit programma is ontworpen als een gestructureerd leertraject om uw voortgang te begeleiden. De cursussen in dit programma moeten in de juiste volgorde worden gevolgd en elke cursus wordt ontgrendeld zodra U de vorige hebt afgerond. " #: lms/templates/emails/published_batch_notification.html:19 msgid " to " -msgstr "" +msgstr " naar " #: frontend/src/pages/Home/Streak.vue:21 msgid " you are on a" -msgstr "" +msgstr " u bent op een" #. Paragraph text in the LMS Workspace #: lms/lms/workspace/lms/lms.json msgid "LMS Settings" -msgstr "" +msgstr "LMS-instellingen" #. Paragraph text in the LMS Workspace #: lms/lms/workspace/lms/lms.json msgid "Setup a Home Page" -msgstr "" +msgstr "Stel een homepage in" #. Paragraph text in the LMS Workspace #: lms/lms/workspace/lms/lms.json msgid "Visit LMS Portal" -msgstr "" +msgstr "Bezoek LMS Portal" #. Paragraph text in the LMS Workspace #: lms/lms/workspace/lms/lms.json msgid "Create a Course" -msgstr "" +msgstr "Maak een cursus" #. Paragraph text in the LMS Workspace #: lms/lms/workspace/lms/lms.json msgid "Documentation" -msgstr "" +msgstr "Documentatie" #: frontend/src/components/Modals/EmailTemplateModal.vue:50 msgid "

Dear {{ member_name }},

\\n\\n

You have been enrolled in our upcoming batch {{ batch_name }}.

\\n\\n

Thanks,

\\n

Frappe Learning

" -msgstr "" +msgstr "

Beste {{ member_name }},

\\n\\n

U bent ingeschreven op onze aanstaande batch {{ batch_name }}.

\\n\\n

Bedankt,

\\n

Frappe Learning

" #. Header text in the LMS Workspace #: lms/lms/workspace/lms/lms.json msgid "Get Started" -msgstr "" +msgstr "Aan de slag" #. Header text in the LMS Workspace #: lms/lms/workspace/lms/lms.json msgid "Master" -msgstr "" +msgstr "Master" #. Header text in the LMS Workspace #: lms/lms/workspace/lms/lms.json msgid "Statistics" -msgstr "" +msgstr "Statistieken" #: lms/lms/doctype/lms_course/lms_course.py:64 msgid "A course cannot have both paid certificate and certificate of completion." -msgstr "" +msgstr "Een cursus kan niet zowel een betaald certificaat als een certificaat van voltooiing hebben gekregen." #: lms/lms/doctype/lms_batch/lms_batch.py:189 msgid "A new batch '{0}' has been published that might interest you. Check it out!" -msgstr "" +msgstr "Er is een nieuwe partij '{0}' gepubliceerd die u misschien interessant vindt. Bekijk het!" #: lms/templates/emails/published_batch_notification.html:7 msgid "A new batch has been published on " -msgstr "" +msgstr "Er is een nieuwe batch gepubliceerd op " #: lms/lms/doctype/lms_course/lms_course.py:198 msgid "A new course '{0}' has been published that might interest you. Check it out!" -msgstr "" +msgstr "Er is een nieuwe partij '{0}' gepubliceerd die u misschien interessant vindt. Bekijk het!" #: lms/templates/emails/published_course_notification.html:7 msgid "A new course has been published on " -msgstr "" +msgstr "Er is een nieuwe cursus gepubliceerd op " #: lms/lms/doctype/lms_batch/lms_batch.py:151 #: lms/lms/doctype/lms_course/lms_course.py:162 msgid "A new course has been published on {0}" -msgstr "" +msgstr "Er is een nieuwe batch gepubliceerd op {0}" #: frontend/src/pages/CourseForm.vue:143 msgid "A one line introduction to the course that appears on the course card" -msgstr "" +msgstr "Een éénregelige inleiding tot de cursus die op de cursuskaart staat" #: frontend/src/pages/ProfileAbout.vue:4 msgid "About" -msgstr "" +msgstr "Over" #: frontend/src/pages/CourseForm.vue:135 msgid "About the Course" -msgstr "" +msgstr "Over de cursus" #: frontend/src/pages/Batch.vue:104 msgid "About this batch" -msgstr "" +msgstr "Over deze batch" #. Label of the verify_terms (Check) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Acceptance for Terms and/or Policies" -msgstr "" +msgstr "Acceptatie van voorwaarden en/of beleid" #. Label of the account_id (Data) field in DocType 'LMS Zoom Settings' #. Label of the account_id (Data) field in DocType 'Zoom Settings' @@ -134,7 +134,7 @@ msgstr "" #: lms/lms/doctype/lms_zoom_settings/lms_zoom_settings.json #: lms/lms/doctype/zoom_settings/zoom_settings.json msgid "Account ID" -msgstr "" +msgstr "Account ID" #. Label of the account_name (Data) field in DocType 'LMS Zoom Settings' #: frontend/src/components/Modals/ZoomAccountModal.vue:30 @@ -145,11 +145,11 @@ msgstr "Accountnaam" #: frontend/src/pages/ProfileAbout.vue:34 msgid "Achievements" -msgstr "" +msgstr "Prestaties" #: frontend/src/pages/Statistics.vue:16 msgid "Active Members" -msgstr "" +msgstr "Actieve Gebruikers" #: frontend/src/components/Assessments.vue:11 #: frontend/src/components/BatchCourses.vue:11 @@ -169,129 +169,129 @@ msgstr "Toevoegen" #: frontend/src/components/CreateOutline.vue:18 #: frontend/src/components/Modals/ChapterModal.vue:5 msgid "Add Chapter" -msgstr "" +msgstr "Hoofdstuk toevoegen" #: frontend/src/pages/Programs/ProgramForm.vue:176 msgid "Add Course to Program" -msgstr "" +msgstr "Voeg een cursus toe aan het programma" #: frontend/src/components/Settings/Evaluators.vue:91 msgid "Add Evaluator" -msgstr "" +msgstr "Beoordelaar toevoegen" #: frontend/src/components/CourseOutline.vue:146 msgid "Add Lesson" -msgstr "" +msgstr "Les toevoegen" #: frontend/src/components/VideoBlock.vue:121 msgid "Add Quiz to Video" -msgstr "" +msgstr "Quiz toevoegen aan video" #: frontend/src/components/Controls/ChildTable.vue:77 #: frontend/src/components/Settings/Coupons/CouponItems.vue:55 msgid "Add Row" -msgstr "" +msgstr "Rij toevoegen" #: frontend/src/pages/ProfileEvaluator.vue:96 msgid "Add Slot" -msgstr "" +msgstr "Slot toevoegen" #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:40 msgid "Add Test Case" -msgstr "" +msgstr "Testcase toevoegen" #: lms/templates/onboarding_header.html:26 msgid "Add a Chapter" -msgstr "" +msgstr "Hoofdstuk toevoegen" #: lms/templates/onboarding_header.html:33 msgid "Add a Lesson" -msgstr "" +msgstr "Les toevoegen" #: frontend/src/components/Modals/StudentModal.vue:5 msgid "Add a Student" -msgstr "" +msgstr "Voeg een student toe" #: frontend/src/components/Sidebar/AppSidebar.vue:524 msgid "Add a chapter" -msgstr "" +msgstr "Voeg een hoofdstuk toe" #: frontend/src/components/Modals/BatchCourseModal.vue:5 msgid "Add a course" -msgstr "" +msgstr "Voeg een cursus toe" #: frontend/src/pages/CourseForm.vue:55 msgid "Add a keyword and then press enter" -msgstr "" +msgstr "Voeg een trefwoord toe en druk vervolgens op Enter" #: frontend/src/components/Sidebar/AppSidebar.vue:525 msgid "Add a lesson" -msgstr "" +msgstr "Voeg een les toe" #: frontend/src/components/Settings/Members.vue:88 msgid "Add a new member" -msgstr "" +msgstr "Voeg een nieuw lid toe" #: frontend/src/components/Modals/Question.vue:167 #: frontend/src/pages/QuizForm.vue:200 msgid "Add a new question" -msgstr "" +msgstr "Voeg een nieuwe vraag toe" #: frontend/src/components/Sidebar/AppSidebar.vue:539 msgid "Add a program" -msgstr "" +msgstr "Voeg een programma toe" #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:5 msgid "Add a programming exercise to your lesson" -msgstr "" +msgstr "Voeg een programmeeroefening toe aan je les" #: frontend/src/components/AssessmentPlugin.vue:7 msgid "Add a quiz to your lesson" -msgstr "" +msgstr "Voeg een quiz toe aan uw les" #: frontend/src/components/Modals/AssessmentModal.vue:5 msgid "Add an assessment" -msgstr "" +msgstr "Voeg een toets toe" #: frontend/src/components/AssessmentPlugin.vue:8 msgid "Add an assignment to your lesson" -msgstr "" +msgstr "Voeg een opdracht toe aan je les" #: lms/lms/doctype/lms_question/lms_question.py:67 msgid "Add at least one possible answer for this question: {0}" -msgstr "" +msgstr "Voeg tenminste één mogelijk antwoord toe op deze vraag: {0}" #: frontend/src/components/Sidebar/AppSidebar.vue:488 msgid "Add courses to your batch" -msgstr "" +msgstr "Cursussen aan uw batch toevoegen" #: frontend/src/components/Modals/QuizInVideo.vue:5 msgid "Add quiz to this video" -msgstr "" +msgstr "Voeg een quiz toe aan deze video" #: frontend/src/components/Sidebar/AppSidebar.vue:467 msgid "Add students to your batch" -msgstr "" +msgstr "Voeg leerlingen toe aan je batch" #: frontend/src/components/Notes/InlineLessonMenu.vue:39 msgid "Add to Notes" -msgstr "" +msgstr "Toevoegen aan Notities" #: frontend/src/components/Modals/PageModal.vue:5 msgid "Add web page to sidebar" -msgstr "" +msgstr "Webpagina aan zijbalk toevoegen" #: frontend/src/components/Assignment.vue:68 msgid "Add your assignment as {0}" -msgstr "" +msgstr "Voeg uw opdracht toe als {0}" #: frontend/src/components/Sidebar/AppSidebar.vue:400 msgid "Add your first chapter" -msgstr "" +msgstr "Voeg je eerste hoofdstuk toe" #: frontend/src/components/Sidebar/AppSidebar.vue:416 msgid "Add your first lesson" -msgstr "" +msgstr "Voeg je eerste les toe" #. Label of the address (Link) field in DocType 'LMS Payment' #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:103 @@ -306,12 +306,12 @@ msgstr "Adres Lijn 1" #: frontend/src/pages/Billing.vue:125 msgid "Address Line 2" -msgstr "" +msgstr "Adres Lijn 2" #. Option for the 'Role' (Select) field in DocType 'LMS Enrollment' #: lms/lms/doctype/lms_enrollment/lms_enrollment.json msgid "Admin" -msgstr "" +msgstr "Administrator" #. Name of a role #: lms/lms/doctype/lms_coupon/lms_coupon.json @@ -319,58 +319,58 @@ msgid "Administrator" msgstr "Beheerder" #. Name of a role -#: frontend/src/pages/Batches.vue:319 lms/lms/doctype/lms_badge/lms_badge.json +#: frontend/src/pages/Batches.vue:321 lms/lms/doctype/lms_badge/lms_badge.json msgid "All" msgstr "Allemaal" #: frontend/src/pages/Batches.vue:68 msgid "All Batches" -msgstr "" +msgstr "Alle batches" #: frontend/src/pages/Courses.vue:57 lms/lms/widgets/BreadCrumb.html:3 msgid "All Courses" -msgstr "" +msgstr "Alle Cursussen" #: frontend/src/pages/Programs/StudentPrograms.vue:5 msgid "All Programs" -msgstr "" +msgstr "All Programs" #: lms/lms/doctype/lms_quiz/lms_quiz.py:45 msgid "All questions should have the same marks if the limit is set." -msgstr "" +msgstr "Als er een maximumscore is vastgesteld, moeten alle vragen evenveel punten opleveren." #. Label of the allow_guest_access (Check) field in DocType 'LMS Settings' #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Allow Guest Access" -msgstr "" +msgstr "Gasttoegang toestaan" #. Label of the allow_posting (Check) field in DocType 'Job Settings' #: lms/job/doctype/job_settings/job_settings.json msgid "Allow Job Posting From Website" -msgstr "" +msgstr "Sta vacatures toe vanaf de website" #. Label of the allow_self_enrollment (Check) field in DocType 'LMS Batch' #: lms/lms/doctype/lms_batch/lms_batch.json msgid "Allow Self Enrollment" -msgstr "" +msgstr "Zelfregistratie toestaan" #. Label of the allow_future (Check) field in DocType 'LMS Batch' #: lms/lms/doctype/lms_batch/lms_batch.json msgid "Allow accessing future dates" -msgstr "" +msgstr "Sta toegang tot toekomstige datums toe" #: frontend/src/pages/BatchForm.vue:64 msgid "Allow self enrollment" -msgstr "" +msgstr "Zelf registrereren is toestaan" #: lms/lms/user.py:34 msgid "Already Registered" -msgstr "" +msgstr "Reeds geregistreerd" #. Option for the 'Color' (Select) field in DocType 'LMS Course' #: lms/lms/doctype/lms_course/lms_course.json msgid "Amber" -msgstr "" +msgstr "Amber" #. Label of the amount (Currency) field in DocType 'LMS Batch' #. Label of the course_price (Currency) field in DocType 'LMS Course' @@ -389,37 +389,37 @@ msgstr "Bedrag" #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_course/lms_course.json msgid "Amount (USD)" -msgstr "" +msgstr "Bedrag (USD)" #: lms/lms/doctype/lms_batch/lms_batch.py:75 msgid "Amount and currency are required for paid batches." -msgstr "" +msgstr "Bedrag en valuta zijn vereist voor betaalde batches." #: lms/lms/doctype/lms_course/lms_course.py:77 msgid "Amount and currency are required for paid certificates." -msgstr "" +msgstr "Bedrag en valuta zijn vereist voor betaalde certificaten." #: lms/lms/doctype/lms_course/lms_course.py:74 msgid "Amount and currency are required for paid courses." -msgstr "" +msgstr "Bedrag en valuta zijn vereist voor betaalde cursussen." #. Label of the amount_with_gst (Currency) field in DocType 'LMS Payment' #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:65 #: lms/lms/doctype/lms_payment/lms_payment.json msgid "Amount with GST" -msgstr "" +msgstr "Bedrag inclusief btw" #: frontend/src/components/Modals/AnnouncementModal.vue:34 msgid "Announcement" -msgstr "" +msgstr "Aankondiging" #: frontend/src/components/Modals/AnnouncementModal.vue:105 msgid "Announcement has been sent successfully" -msgstr "" +msgstr "De melding is succesvol verzonden" #: frontend/src/components/Modals/AnnouncementModal.vue:97 msgid "Announcement is required" -msgstr "" +msgstr "Mededeling is vereist" #. Label of the answer (Text Editor) field in DocType 'LMS Assignment' #. Label of the answer (Text Editor) field in DocType 'LMS Assignment @@ -428,87 +428,87 @@ msgstr "" #: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json msgid "Answer" -msgstr "" +msgstr "Antwoord" #: frontend/src/components/Settings/Coupons/CouponDetails.vue:71 msgid "Applicable For" -msgstr "" +msgstr "Van toepassing op" #. Label of the applicable_items (Table) field in DocType 'LMS Coupon' #: lms/lms/doctype/lms_coupon/lms_coupon.json msgid "Applicable Items" -msgstr "" +msgstr "Toepasselijke items" #: frontend/src/pages/JobApplications.vue:22 msgid "Application" -msgstr "" +msgstr "Sollicitatie" #. Label of a field in the job-opportunity Web Form #: lms/job/web_form/job_opportunity/job_opportunity.json msgid "Application Form Link" -msgstr "" +msgstr "Link naar sollicitatieformulier" #: frontend/src/pages/JobApplications.vue:14 #: frontend/src/pages/JobApplications.vue:22 msgid "Applications" -msgstr "" +msgstr "Sollicitaties" #: frontend/src/pages/JobApplications.vue:311 msgid "Applied On" -msgstr "" +msgstr "Toepassen op" #: frontend/src/pages/Billing.vue:81 frontend/src/pages/JobDetail.vue:62 msgid "Apply" -msgstr "" +msgstr "Toepassen" #. Label of the apply_gst (Check) field in DocType 'LMS Settings' #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Apply GST for India" -msgstr "" +msgstr "GST toepassen voor India" #. Label of the apply_rounding (Check) field in DocType 'LMS Settings' #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Apply Rounding on Equivalent" -msgstr "" +msgstr "Afronding toepassen op Equivalent" #: frontend/src/components/Modals/JobApplicationModal.vue:6 msgid "Apply for this job" -msgstr "" +msgstr "Solliciteer voor deze baan" #. Option for the 'Status' (Select) field in DocType 'LMS Course' #. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json msgid "Approved" -msgstr "" +msgstr "Goedgekeurd" #: frontend/src/components/Sidebar/Apps.vue:12 msgid "Apps" -msgstr "" +msgstr "Apps" -#: frontend/src/pages/Batches.vue:329 +#: frontend/src/pages/Batches.vue:331 msgid "Archived" -msgstr "" +msgstr "Gearchiveerd" #: frontend/src/components/UpcomingEvaluations.vue:206 msgid "Are you sure you want to cancel this evaluation? This action cannot be undone." -msgstr "" +msgstr "Weet u zeker dat u deze evaluatie wilt annuleren? Deze actie kan niet ongedaan worden gemaakt." #: frontend/src/pages/Programs/ProgramForm.vue:562 msgid "Are you sure you want to delete this program? This action cannot be undone." -msgstr "" +msgstr "Weet u zeker dat u dit project wilt verwijderen? Dit kan niet ongedaan worden gemaakt." #: frontend/src/pages/Programs/ProgramEnrollment.vue:38 msgid "Are you sure you want to enroll?" -msgstr "" +msgstr "Weet u zeker dat u zich wilt inschrijven?" #: frontend/src/components/Sidebar/UserDropdown.vue:191 msgid "Are you sure you want to login to your Frappe Cloud dashboard?" -msgstr "" +msgstr "Weet u zeker dat u wilt inloggen op je Frappe Cloud dashboard?" #: frontend/src/pages/Lesson.vue:289 msgid "Ask a question to get help from the community." -msgstr "" +msgstr "Stel een vraag om hulp te krijgen van de community." #. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch' #. Label of the assessment (Table) field in DocType 'LMS Batch' @@ -516,26 +516,26 @@ msgstr "" #: frontend/src/components/Modals/BatchStudentProgress.vue:43 #: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11 msgid "Assessment" -msgstr "" +msgstr "Beoordeling" #. Label of the assessment_name (Dynamic Link) field in DocType 'LMS #. Assessment' #: lms/lms/doctype/lms_assessment/lms_assessment.json msgid "Assessment Name" -msgstr "" +msgstr "Naam beoordeling" #. Label of the assessment_type (Link) field in DocType 'LMS Assessment' #: lms/lms/doctype/lms_assessment/lms_assessment.json msgid "Assessment Type" -msgstr "" +msgstr "Naam beoordeling" #: frontend/src/components/Modals/AssessmentModal.vue:91 msgid "Assessment added successfully" -msgstr "" +msgstr "Opdracht succesvol afgerond" #: lms/lms/doctype/lms_batch/lms_batch.py:83 msgid "Assessment {0} has already been added to this batch." -msgstr "" +msgstr "Beoordeling {0} is al aan deze batch toegevoegd." #. Label of the show_assessments (Check) field in DocType 'LMS Settings' #: frontend/src/components/AdminBatchDashboard.vue:32 @@ -544,27 +544,27 @@ msgstr "" #: lms/lms/doctype/lms_settings/lms_settings.json #: lms/templates/assessments.html:3 msgid "Assessments" -msgstr "" +msgstr "Beoordelingen" #: lms/lms/doctype/lms_badge/lms_badge.js:48 msgid "Assign" -msgstr "" +msgstr "Toewijzen" #: frontend/src/components/Settings/BadgeForm.vue:28 msgid "Assign For" -msgstr "" +msgstr "Toewijzen aan" #: frontend/src/components/Settings/BadgeForm.vue:58 msgid "Assign To" -msgstr "" +msgstr "Toewijzen aan" #: frontend/src/components/Settings/BadgeAssignmentForm.vue:7 msgid "Assign a Badge" -msgstr "" +msgstr "Een badge toewijzen" #: frontend/src/components/Settings/Badges.vue:221 msgid "Assigned For" -msgstr "" +msgstr "Toewijzing voor" #. Label of the section_break_16 (Section Break) field in DocType 'Course #. Lesson' @@ -576,49 +576,49 @@ msgstr "" #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/templates/assignment.html:3 msgid "Assignment" -msgstr "" +msgstr "Opdracht" #. Label of the assignment_attachment (Attach) field in DocType 'LMS Assignment #. Submission' #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json msgid "Assignment Attachment" -msgstr "" +msgstr "Opdracht Bijlage" #: frontend/src/components/Settings/BadgeForm.vue:198 #: frontend/src/components/Settings/Badges.vue:204 msgid "Assignment Submission" -msgstr "" +msgstr "Indiening opdracht" #: frontend/src/pages/AssignmentSubmissionList.vue:222 msgid "Assignment Submissions" -msgstr "" +msgstr "Indiening opdrachten" #. Label of the assignment_title (Data) field in DocType 'LMS Assignment #. Submission' #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json msgid "Assignment Title" -msgstr "" +msgstr "Titel van opdracht" #: frontend/src/components/Modals/AssignmentForm.vue:157 msgid "Assignment created successfully" -msgstr "" +msgstr "Opdracht succesvol afgerond" #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:27 msgid "Assignment for Lesson {0} by {1} already exists." -msgstr "" +msgstr "De opdracht voor Les {0} van {1} bestaat al." #: frontend/src/components/Assignment.vue:365 msgid "Assignment submitted successfully" -msgstr "" +msgstr "Opdracht succesvol afgerond" #: frontend/src/components/Modals/AssignmentForm.vue:172 msgid "Assignment updated successfully" -msgstr "" +msgstr "Opdracht succesvol bijgewerkt" #. Description of the 'Question' (Small Text) field in DocType 'Course Lesson' #: lms/lms/doctype/course_lesson/course_lesson.json msgid "Assignment will appear at the bottom of the lesson." -msgstr "" +msgstr "De opdracht verschijnt onderaan de les." #: frontend/src/components/Settings/Badges.vue:163 #: frontend/src/components/Sidebar/AppSidebar.vue:546 @@ -628,132 +628,132 @@ msgstr "opdrachten" #: lms/lms/doctype/lms_coupon/lms_coupon.py:27 msgid "At least one applicable item is required" -msgstr "" +msgstr "Tenminste één toepasselijke artikel is vereist" #: lms/lms/doctype/lms_question/lms_question.py:44 msgid "At least one option must be correct for this question." -msgstr "" +msgstr "Tenminste één optie moet correct zijn voor deze vraag." #: lms/lms/doctype/lms_programming_exercise/lms_programming_exercise.py:15 msgid "At least one test case is required for the programming exercise." -msgstr "" +msgstr "Er is minstens één testcase vereist voor de programmeeroefening." #: frontend/src/components/Modals/LiveClassAttendance.vue:5 msgid "Attendance for Class - {0}" -msgstr "" +msgstr "Aanwezigheid in de klas - {0}" #: frontend/src/components/Modals/LiveClassAttendance.vue:24 msgid "Attended for" -msgstr "" +msgstr "Aanwezig voor" #. Label of the attendees (Int) field in DocType 'LMS Live Class' #: lms/lms/doctype/lms_live_class/lms_live_class.json msgid "Attendees" -msgstr "" +msgstr "Aanwezigen" #. Label of the attire (Select) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Attire Preference" -msgstr "" +msgstr "Kledingsvoorkeur" #: frontend/src/pages/ProfileEvaluator.vue:146 msgid "Authorize Google Calendar Access" -msgstr "" +msgstr "Toegang tot Google Agenda autoriseren" #. Option for the 'Event' (Select) field in DocType 'LMS Badge' #: lms/lms/doctype/lms_badge/lms_badge.json msgid "Auto Assign" -msgstr "" +msgstr "Automatisch toewijzen" #. Label of the auto_recording (Select) field in DocType 'LMS Live Class' #: frontend/src/components/Modals/LiveClassModal.vue:73 #: lms/lms/doctype/lms_live_class/lms_live_class.json msgid "Auto Recording" -msgstr "" +msgstr "Auto-opname" #: frontend/src/pages/ProfileEvaluator.vue:241 msgid "Availability updated successfully" -msgstr "" +msgstr "Beschikbaarheid succesvol bijgewerkt" #: frontend/src/components/Modals/EvaluationModal.vue:26 msgid "Available Slots" -msgstr "" +msgstr "Beschikbare Slots" #: frontend/src/components/BatchFeedback.vue:43 msgid "Average Feedback Received" -msgstr "" +msgstr "Gemiddelde ontvangen feedback" #: frontend/src/components/Modals/CourseProgressSummary.vue:105 #: frontend/src/pages/Programs/ProgramProgressSummary.vue:22 msgid "Average Progress %" -msgstr "" +msgstr "Gemiddelde vooruitgang %" #: frontend/src/components/CourseCard.vue:71 #: frontend/src/pages/CourseDetail.vue:20 #: frontend/src/pages/Programs/ProgramEnrollment.vue:76 msgid "Average Rating" -msgstr "" +msgstr "Gemiddelde beoordeling" #: frontend/src/components/Modals/VideoStatistics.vue:74 msgid "Average Watch Time" -msgstr "" +msgstr "Gemiddelde kijktijd" #: frontend/src/pages/Lesson.vue:63 frontend/src/pages/Lesson.vue:199 msgid "Back to Course" -msgstr "" +msgstr "Terug naar koers" #. Label of the badge (Link) field in DocType 'LMS Badge Assignment' #: frontend/src/components/Settings/BadgeAssignmentForm.vue:32 #: frontend/src/components/Settings/Badges.vue:214 #: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json msgid "Badge" -msgstr "" +msgstr "Badge" #. Label of the badge_description (Small Text) field in DocType 'LMS Badge #. Assignment' #: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json msgid "Badge Description" -msgstr "" +msgstr "Badge Beschrijving" #. Label of the badge_image (Attach) field in DocType 'LMS Badge Assignment' #: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json msgid "Badge Image" -msgstr "" +msgstr "Afbeelding badge" #: frontend/src/components/Settings/BadgeAssignmentForm.vue:131 msgid "Badge assignment created successfully" -msgstr "" +msgstr "Badge succesvol aangemaakt" #: frontend/src/components/Settings/BadgeAssignmentForm.vue:112 msgid "Badge assignment updated successfully" -msgstr "" +msgstr "Badge toewijzing succesvol bijgewerkt" #: frontend/src/components/Settings/BadgeAssignments.vue:173 msgid "Badge assignments deleted successfully" -msgstr "" +msgstr "Badge opdrachten met succes verwijderd" #: frontend/src/components/Settings/BadgeForm.vue:182 msgid "Badge created successfully" -msgstr "" +msgstr "Badge succesvol aangemaakt" #: frontend/src/components/Settings/Badges.vue:190 msgid "Badge deleted successfully" -msgstr "" +msgstr "Badge succesvol verwijderd" #: frontend/src/components/Settings/BadgeForm.vue:162 msgid "Badge updated successfully" -msgstr "" +msgstr "Badge succesvol bijgewerkt" #: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.py:35 msgid "Badge {0} has already been assigned to this {1}." -msgstr "" +msgstr "Badge {0} is al toegewezen aan deze {1}." #. Label of the batch (Link) field in DocType 'LMS Batch Enrollment' #. Label of the batch (Link) field in DocType 'LMS Batch Feedback' #. Label of the batch_name (Link) field in DocType 'LMS Certificate' #. Label of the batch_name (Link) field in DocType 'LMS Certificate Request' #. Label of the batch_name (Link) field in DocType 'LMS Live Class' -#: frontend/src/components/Modals/Event.vue:32 +#: frontend/src/components/Modals/Event.vue:35 #: frontend/src/components/Settings/BadgeForm.vue:195 #: frontend/src/components/Settings/Badges.vue:200 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125 @@ -764,43 +764,43 @@ msgstr "" #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_live_class/lms_live_class.json msgid "Batch" -msgstr "" +msgstr "Partij" #. Label of the batch_confirmation_template (Link) field in DocType 'LMS #. Settings' #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Batch Confirmation Template" -msgstr "" +msgstr "Batch bevestiging sjabloon" #. Name of a DocType #: lms/lms/doctype/batch_course/batch_course.json msgid "Batch Course" -msgstr "" +msgstr "Batch Cursus" #. Label of the batch_details (Text Editor) field in DocType 'LMS Batch' #: frontend/src/pages/BatchForm.vue:133 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/templates/emails/batch_confirmation.html:26 msgid "Batch Details" -msgstr "" +msgstr "Details batch" #. Label of the batch_details_raw (HTML Editor) field in DocType 'LMS Batch' #: lms/lms/doctype/lms_batch/lms_batch.json msgid "Batch Details Raw" -msgstr "" +msgstr "Batch details onbewerkt" #: frontend/src/pages/BatchForm.vue:89 msgid "Batch End Date" -msgstr "" +msgstr "Batch einddatum" #: frontend/src/components/Settings/BadgeForm.vue:204 #: frontend/src/components/Settings/Badges.vue:202 msgid "Batch Enrollment" -msgstr "" +msgstr "Batch inschrijving" #: frontend/src/components/Modals/EmailTemplateModal.vue:28 msgid "Batch Enrollment Confirmation" -msgstr "" +msgstr "Batch inschrijving bevestiging" #. Name of a role #: lms/lms/doctype/course_evaluator/course_evaluator.json @@ -821,74 +821,74 @@ msgstr "" #: lms/lms/doctype/lms_programming_exercise_submission/lms_programming_exercise_submission.json #: lms/lms/doctype/lms_zoom_settings/lms_zoom_settings.json msgid "Batch Evaluator" -msgstr "" +msgstr "Batch beoordelaar" #. Label of the batch_name (Link) field in DocType 'LMS Certificate Evaluation' #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Batch Name" -msgstr "" +msgstr "Batch naam" #. Label of the section_break_szgq (Section Break) field in DocType 'LMS #. Settings' #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Batch Settings" -msgstr "" +msgstr "Batch instellingen" #: frontend/src/pages/BatchForm.vue:82 msgid "Batch Start Date" -msgstr "" +msgstr "Batch Start Datum" #: lms/templates/emails/batch_confirmation.html:11 msgid "Batch Start Date:" -msgstr "" +msgstr "Batch Start Datum:" #: frontend/src/components/AdminBatchDashboard.vue:41 msgid "Batch Summary" -msgstr "" +msgstr "Batch samenvatting" #. Label of the batch_title (Data) field in DocType 'LMS Certificate' #. Label of the batch_title (Data) field in DocType 'LMS Certificate Request' #: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json msgid "Batch Title" -msgstr "" +msgstr "Batch Titel" #: frontend/src/pages/BatchForm.vue:551 msgid "Batch deleted successfully" -msgstr "" +msgstr "Badge succesvol verwijderd" #: lms/lms/doctype/lms_batch/lms_batch.py:48 msgid "Batch end date cannot be before the batch start date" -msgstr "" +msgstr "Batch einddatum kan niet vóór de batch startdatum liggen" #: lms/lms/api.py:137 msgid "Batch has already started." -msgstr "" +msgstr "De batch is al gestart." #: lms/lms/api.py:132 msgid "Batch is sold out." -msgstr "" +msgstr "Partij is uitverkocht." #: lms/lms/doctype/lms_batch/lms_batch.py:53 msgid "Batch start time cannot be greater than or equal to end time." -msgstr "" +msgstr "Batch starttijd mag niet groter zijn dan of gelijk zijn aan eindtijd." #: lms/templates/emails/batch_start_reminder.html:10 msgid "Batch:" -msgstr "" +msgstr "Batch:" #. Label of the batches (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/Batches.vue:350 frontend/src/pages/Batches.vue:357 +#: frontend/src/pages/Batches.vue:352 frontend/src/pages/Batches.vue:359 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121 msgid "Batches" -msgstr "" +msgstr "Batches" #: lms/templates/emails/batch_confirmation.html:33 #: lms/templates/emails/batch_start_reminder.html:31 #: lms/templates/emails/certification.html:20 #: lms/templates/emails/live_class_reminder.html:28 msgid "Best Regards" -msgstr "" +msgstr "Met vriendelijke groet" #. Label of the billing_details_section (Section Break) field in DocType 'LMS #. Payment' @@ -896,7 +896,7 @@ msgstr "" #: frontend/src/pages/Billing.vue:8 frontend/src/pages/Billing.vue:460 #: lms/lms/doctype/lms_payment/lms_payment.json msgid "Billing Details" -msgstr "" +msgstr "Factuurgegevens" #. Label of the billing_name (Data) field in DocType 'LMS Payment' #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:33 @@ -904,51 +904,51 @@ msgstr "" #: frontend/src/pages/Billing.vue:115 #: lms/lms/doctype/lms_payment/lms_payment.json msgid "Billing Name" -msgstr "" +msgstr "Factuurnaam" #: frontend/src/components/Modals/EditProfile.vue:104 msgid "Bio" -msgstr "" +msgstr "Bio" #. Option for the 'Color' (Select) field in DocType 'LMS Course' #. Option for the 'Color' (Select) field in DocType 'LMS Lesson Note' #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json msgid "Blue" -msgstr "" +msgstr "Blauw" #. Label of the body (Markdown Editor) field in DocType 'Course Lesson' #: lms/lms/doctype/course_lesson/course_lesson.json msgid "Body" -msgstr "" +msgstr "Hoofdtekst" #. Option for the 'Collaboration Preference' (Select) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Both Individual and Team Work" -msgstr "" +msgstr "Zowel individueel als in teamverband werken" #. Label of the branch (Data) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Branch" -msgstr "" +msgstr "Tak" #. Option for the 'User Category' (Select) field in DocType 'User' #: lms/fixtures/custom_field.json lms/templates/signup-form.html:23 msgid "Business Owner" -msgstr "" +msgstr "Bedrijfseigenaar" #: frontend/src/components/CourseCardOverlay.vue:54 msgid "Buy this course" -msgstr "" +msgstr "Koop deze cursus" #: lms/templates/emails/lms_message.html:11 msgid "By" -msgstr "" +msgstr "Door" #. Option for the 'Grade Type' (Select) field in DocType 'Education Detail' #: lms/lms/doctype/education_detail/education_detail.json msgid "CGPA/4" -msgstr "" +msgstr "CGPA/4" #: frontend/src/components/UpcomingEvaluations.vue:77 #: frontend/src/components/UpcomingEvaluations.vue:211 @@ -957,23 +957,23 @@ msgstr "Annuleren" #: frontend/src/components/UpcomingEvaluations.vue:205 msgid "Cancel this evaluation?" -msgstr "" +msgstr "Deze evaluatie annuleren?" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json msgid "Cancelled" -msgstr "" +msgstr "Geannuleerd" #. Label of the carrer_preference_details (Section Break) field in DocType #. 'User' #: lms/fixtures/custom_field.json msgid "Career Preference Details" -msgstr "" +msgstr "Details over carrièrevoorkeuren" #. Option for the 'Attire Preference' (Select) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Casual Wear" -msgstr "" +msgstr "Vrijetijdskleding" #. Label of the category (Link) field in DocType 'LMS Batch' #. Label of the category (Data) field in DocType 'LMS Category' @@ -989,51 +989,51 @@ msgstr "Categorie" #: frontend/src/components/Settings/Categories.vue:39 msgid "Category Name" -msgstr "" +msgstr "Categorienaam" #: frontend/src/components/Settings/Categories.vue:133 msgid "Category added successfully" -msgstr "" +msgstr "Categorie succesvol toegevoegd" #: frontend/src/components/Settings/Categories.vue:193 msgid "Category deleted successfully" -msgstr "" +msgstr "Categorie succesvol verwijderd" #: frontend/src/components/Settings/Categories.vue:173 msgid "Category updated successfully" -msgstr "" +msgstr "Categorie succesvol bijgewerkt" #. Label of the certificate (Link) field in DocType 'LMS Enrollment' #. Label of a shortcut in the LMS Workspace #: lms/lms/doctype/lms_enrollment/lms_enrollment.json #: lms/lms/workspace/lms/lms.json msgid "Certificate" -msgstr "" +msgstr "Certificaat" #. Label of the certification_template (Link) field in DocType 'LMS Settings' #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Certificate Email Template" -msgstr "" +msgstr "Certificaat Email Sjabloon" #: lms/templates/emails/certification.html:13 msgid "Certificate Link" -msgstr "" +msgstr "Certificaat link" #: frontend/src/components/CourseCardOverlay.vue:156 msgid "Certificate of Completion" -msgstr "" +msgstr "Certificaat bij afronding" -#: frontend/src/components/Modals/Event.vue:347 +#: frontend/src/components/Modals/Event.vue:353 msgid "Certificate saved successfully" -msgstr "" +msgstr "Certificaat succesvol opgeslagen" #: frontend/src/pages/ProfileCertificates.vue:4 msgid "Certificates" -msgstr "" +msgstr "Certificaten" #: frontend/src/components/Modals/BulkCertificates.vue:120 msgid "Certificates generated successfully" -msgstr "" +msgstr "Certificaten succesvol gegenereerd" #. Label of the certification (Table) field in DocType 'User' #. Name of a DocType @@ -1043,7 +1043,7 @@ msgstr "" #. Label of a chart in the LMS Workspace #. Label of a Card Break in the LMS Workspace #. Label of a Link in the LMS Workspace -#: frontend/src/components/Modals/Event.vue:411 +#: frontend/src/components/Modals/Event.vue:427 #: frontend/src/components/Sidebar/AppSidebar.vue:550 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100 #: frontend/src/pages/CourseCertification.vue:10 @@ -1054,30 +1054,30 @@ msgstr "" #: lms/lms/doctype/lms_enrollment/lms_enrollment.json #: lms/lms/workspace/lms/lms.json msgid "Certification" -msgstr "" +msgstr "Certificering" #. Label of the certification_details (Section Break) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Certification Details" -msgstr "" +msgstr "Certificeringsgegevens" #. Label of the certification_name (Data) field in DocType 'Certification' #: lms/lms/doctype/certification/certification.json msgid "Certification Name" -msgstr "" +msgstr "Naam certificering" #: lms/lms/doctype/lms_certificate/lms_certificate.py:173 msgid "Certification is not enabled for this course." -msgstr "" +msgstr "Certificering is niet ingeschakeld voor deze cursus." #. Label of the certifications (Check) field in DocType 'LMS Settings' #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Certifications" -msgstr "" +msgstr "Certificaten" #: frontend/src/components/AdminBatchDashboard.vue:17 msgid "Certified" -msgstr "" +msgstr "Gecertificeerd" #. Label of the certified_members (Check) field in DocType 'LMS Settings' #: frontend/src/pages/CertifiedParticipants.vue:18 @@ -1086,11 +1086,11 @@ msgstr "" #: frontend/src/pages/Statistics.vue:40 #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Certified Members" -msgstr "" +msgstr "Gecertificeerde leden" #: lms/www/lms.py:301 msgid "Certified Participants" -msgstr "" +msgstr "Gecertificeerde deelnemers" #: lms/templates/assignment.html:13 msgid "Change" @@ -1098,7 +1098,7 @@ msgstr "Verandering" #: frontend/src/components/Assignment.vue:351 msgid "Changes saved successfully" -msgstr "" +msgstr "Wijzigingen succesvol opgeslagen" #. Label of the chapter (Link) field in DocType 'Chapter Reference' #. Label of the chapter (Link) field in DocType 'LMS Course Progress' @@ -1109,97 +1109,97 @@ msgstr "" #: lms/lms/doctype/lms_video_watch_duration/lms_video_watch_duration.json #: lms/lms/workspace/lms/lms.json msgid "Chapter" -msgstr "" +msgstr "Hoofdstuk" #. Name of a DocType #: lms/lms/doctype/chapter_reference/chapter_reference.json msgid "Chapter Reference" -msgstr "" +msgstr "Hoofdstuk referentie" #: frontend/src/components/Modals/ChapterModal.vue:154 msgid "Chapter added successfully" -msgstr "" +msgstr "Hoofdstuk succesvol toegevoegd" #: frontend/src/components/CourseOutline.vue:348 msgid "Chapter deleted successfully" -msgstr "" +msgstr "Hoofdstuk succesvol verwijderd" #: frontend/src/components/CourseOutline.vue:282 msgid "Chapter moved successfully" -msgstr "" +msgstr "Hoofdstuk succesvol verplaatst" #: frontend/src/components/Modals/ChapterModal.vue:196 msgid "Chapter updated successfully" -msgstr "" +msgstr "Badge succesvol bijgewerkt" #. Label of the chapters (Table) field in DocType 'LMS Course' #: lms/lms/doctype/lms_course/lms_course.json msgid "Chapters" -msgstr "" +msgstr "Hoofdstukken" #: frontend/src/components/Quiz.vue:229 msgid "Check" -msgstr "" +msgstr "Controleer" #: frontend/src/pages/ProgrammingExercises/ProgrammingExercises.vue:16 msgid "Check All Submissions" -msgstr "" +msgstr "Alle inzendingen controleren" #: lms/templates/emails/mention_template.html:10 msgid "Check Discussion" -msgstr "" +msgstr "Check Discussie" #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:101 msgid "Check Submission" -msgstr "" +msgstr "Controleer Inzending" #: frontend/src/components/Modals/AssignmentForm.vue:61 #: frontend/src/pages/QuizForm.vue:39 msgid "Check Submissions" -msgstr "" +msgstr "Controleer Inzending" #: lms/templates/certificates_section.html:24 msgid "Check out the {0} to know more about certification." -msgstr "" +msgstr "Kijk op {0} voor meer informatie over certificering." #: frontend/src/components/NoPermission.vue:17 msgid "Checkout Courses" -msgstr "" +msgstr "Cursussen bekijken" #: lms/templates/emails/published_batch_notification.html:52 msgid "Checkout the batch" -msgstr "" +msgstr "Bekijk de batch" #: lms/templates/emails/published_course_notification.html:36 msgid "Checkout the course" -msgstr "" +msgstr "Bekijk de cursus" #. Option for the 'Type' (Select) field in DocType 'LMS Question' #. Option for the 'Type' (Select) field in DocType 'LMS Quiz Question' #: lms/lms/doctype/lms_question/lms_question.json #: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json msgid "Choices" -msgstr "" +msgstr "Keuzes" #: frontend/src/pages/CourseForm.vue:87 msgid "Choose a color for the course card" -msgstr "" +msgstr "Kies een kleur voor de cursuskaart" #: frontend/src/components/Quiz.vue:654 msgid "Choose all answers that apply" -msgstr "" +msgstr "Kies alle antwoorden die van toepassing zijn" #: frontend/src/components/Modals/Question.vue:19 msgid "Choose an existing question" -msgstr "" +msgstr "Een bestaande vraag kiezen" #: frontend/src/components/Controls/IconPicker.vue:27 msgid "Choose an icon" -msgstr "" +msgstr "Kies een icoon" #: frontend/src/components/Quiz.vue:655 msgid "Choose one answer" -msgstr "" +msgstr "Kies één antwoord" #. Label of the city (Data) field in DocType 'User' #. Label of the location (Data) field in DocType 'Job Opportunity' @@ -1207,24 +1207,24 @@ msgstr "" #: lms/fixtures/custom_field.json #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "City" -msgstr "" +msgstr "Stad" #: lms/templates/emails/live_class_reminder.html:10 msgid "Class:" -msgstr "" +msgstr "Klas:" #: frontend/src/components/Controls/Link.vue:50 msgid "Clear" -msgstr "" +msgstr "Doorzichtig" #. Option for the 'Role Preference' (Select) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Clearly Defined Role" -msgstr "" +msgstr "Duidelijk gedefinieerde rol" #: frontend/src/components/BatchFeedback.vue:10 msgid "Click here" -msgstr "" +msgstr "Klik hier" #. Label of the client_id (Data) field in DocType 'LMS Zoom Settings' #. Label of the client_id (Data) field in DocType 'Zoom Settings' @@ -1232,7 +1232,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 "Client ID" #. Label of the client_secret (Password) field in DocType 'LMS Zoom Settings' #. Label of the client_secret (Password) field in DocType 'Zoom Settings' @@ -1240,7 +1240,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 "Client Geheim" #: frontend/src/components/Settings/Categories.vue:27 msgid "Close" @@ -1252,12 +1252,12 @@ msgstr "Dichtbij" #: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/web_form/job_opportunity/job_opportunity.json msgid "Closed" -msgstr "" +msgstr "Gesloten" #. Option for the 'Auto Recording' (Select) field in DocType 'LMS Live Class' #: lms/lms/doctype/lms_live_class/lms_live_class.json msgid "Cloud" -msgstr "" +msgstr "Cloud" #. Label of the code (Data) field in DocType 'LMS Coupon' #. Label of the code (Code) field in DocType 'LMS Programming Exercise @@ -1266,12 +1266,12 @@ msgstr "" #: lms/lms/doctype/lms_coupon/lms_coupon.json #: lms/lms/doctype/lms_programming_exercise_submission/lms_programming_exercise_submission.json msgid "Code" -msgstr "" +msgstr "Code" #. Label of the collaboration (Select) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Collaboration Preference" -msgstr "" +msgstr "Voorkeur voor samenwerking" #: frontend/src/components/Sidebar/AppSidebar.vue:155 msgid "Collapse" @@ -1280,7 +1280,7 @@ msgstr "Ineenstorting" #. Label of the college (Data) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "College Name" -msgstr "" +msgstr "Naam College" #. Label of the card_gradient (Select) field in DocType 'LMS Course' #. Label of the color (Select) field in DocType 'LMS Lesson Note' @@ -1294,7 +1294,7 @@ msgstr "Kleur" #: frontend/src/pages/BatchForm.vue:264 frontend/src/pages/CourseForm.vue:265 msgid "Comma separated keywords for SEO" -msgstr "" +msgstr "Komma gescheiden trefwoorden voor SEO" #. Label of the comments (Text Editor) field in DocType 'LMS Assignment #. Submission' @@ -1307,37 +1307,37 @@ msgstr "Reacties" #: frontend/src/components/Assignment.vue:148 msgid "Comments by Evaluator" -msgstr "" +msgstr "Opmerkingen van de beoordelaar" #. Description of the 'Meta Keywords' (Small Text) field in DocType 'LMS #. Settings' #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Common keywords that will be used for all pages" -msgstr "" +msgstr "Veel voorkomende sleutelwoorden die worden gebruikt voor alle pagina's" #: frontend/src/pages/Lesson.vue:890 msgid "Community" -msgstr "" +msgstr "Gemeenschap" #. Label of the company (Data) field in DocType 'LMS Job Application' #. Label of the company (Data) field in DocType 'Work Experience' #: lms/job/doctype/lms_job_application/lms_job_application.json #: lms/lms/doctype/work_experience/work_experience.json msgid "Company" -msgstr "" +msgstr "Bedrijf" #. Label of the section_break_6 (Section Break) field in DocType 'Job #. Opportunity' #: frontend/src/pages/JobForm.vue:63 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Company Details" -msgstr "" +msgstr "Bedrijfsgegevens" #. Label of the company_email_address (Data) field in DocType 'Job Opportunity' #: frontend/src/pages/JobForm.vue:82 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Company Email Address" -msgstr "" +msgstr "E-mailadres bedrijf" #. Label of the company_logo (Attach Image) field in DocType 'Job Opportunity' #. Label of a field in the job-opportunity Web Form @@ -1345,7 +1345,7 @@ msgstr "" #: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/web_form/job_opportunity/job_opportunity.json msgid "Company Logo" -msgstr "" +msgstr "Bedrijfslogo" #. Label of the company_name (Data) field in DocType 'Job Opportunity' #. Label of a field in the job-opportunity Web Form @@ -1353,12 +1353,12 @@ msgstr "" #: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/web_form/job_opportunity/job_opportunity.json msgid "Company Name" -msgstr "" +msgstr "Bedrijfsnaam" #. Label of the company_type (Select) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Company Type" -msgstr "" +msgstr "Bedrijfstype" #. Label of the company_website (Data) field in DocType 'Job Opportunity' #. Label of a field in the job-opportunity Web Form @@ -1366,34 +1366,34 @@ msgstr "" #: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/web_form/job_opportunity/job_opportunity.json msgid "Company Website" -msgstr "" +msgstr "Bedrijfswebsite" #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:69 msgid "Compiler Message" -msgstr "" +msgstr "Compiler bericht" #. Option for the 'Status' (Select) field in DocType 'LMS Course Progress' #: frontend/src/components/Modals/BatchStudentProgress.vue:24 #: lms/lms/doctype/lms_course_progress/lms_course_progress.json #: lms/lms/widgets/CourseCard.html:75 msgid "Complete" -msgstr "" +msgstr "Voltooien" #: lms/templates/emails/lms_invite_request_approved.html:7 msgid "Complete Sign Up" -msgstr "" +msgstr "Voltooi de aanmelding" #: lms/templates/emails/payment_reminder.html:15 msgid "Complete Your Enrollment" -msgstr "" +msgstr "Voltooi jouw inschrijving" #: lms/lms/doctype/lms_payment/lms_payment.py:69 msgid "Complete Your Enrollment - Don't miss out!" -msgstr "" +msgstr "Voltooi uw inschrijving - Mis niets!" #: frontend/src/components/VideoBlock.vue:144 msgid "Complete the upcoming quiz to continue watching the video. The quiz will open in {0} {1}." -msgstr "" +msgstr "Voltooi de komende quiz om de video verder te bekijken. De quiz wordt geopend in {0} {1}." #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json @@ -1405,81 +1405,81 @@ msgstr "Voltooid" #: frontend/src/pages/CourseForm.vue:202 #: lms/lms/doctype/lms_course/lms_course.json msgid "Completion Certificate" -msgstr "" +msgstr "Voltooi Certificaat" #. Label of the condition (Code) field in DocType 'LMS Badge' #: frontend/src/components/Settings/BadgeForm.vue:65 #: lms/lms/doctype/lms_badge/lms_badge.json msgid "Condition" -msgstr "" +msgstr "Conditie" #: lms/lms/doctype/lms_badge/lms_badge.py:17 msgid "Condition must be in valid JSON format." -msgstr "" +msgstr "De voorwaarde moet in een geldig JSON-formaat zijn." #: lms/lms/doctype/lms_badge/lms_badge.py:22 msgid "Condition must be valid python code." -msgstr "" +msgstr "Voorwaarde moet geldige python code zijn." #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:7 msgid "Conduct Evaluation" -msgstr "" +msgstr "Evaluatie uitvoeren" #: frontend/src/pages/BatchForm.vue:148 msgid "Configurations" -msgstr "" +msgstr "Configuraties" #: frontend/src/components/Sidebar/UserDropdown.vue:196 msgid "Confirm" -msgstr "" +msgstr "Bevestigen" #: frontend/src/pages/Programs/ProgramEnrollment.vue:100 msgid "Confirm Enrollment" -msgstr "" +msgstr "Inschrijving bevestigen" #: frontend/src/pages/ProgrammingExercises/ProgrammingExercises.vue:226 msgid "Confirm Your Action" -msgstr "" +msgstr "Bevestig uw actie" #: frontend/src/pages/BatchForm.vue:529 msgid "Confirm your action to delete" -msgstr "" +msgstr "Bevestig uw actie om te verwijderen" #. Label of the confirmation_email_sent (Check) field in DocType 'LMS Batch #. Enrollment' #: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json msgid "Confirmation Email Sent" -msgstr "" +msgstr "Email Bevestiging verstuurd" #. Label of the confirmation_email_template (Link) field in DocType 'LMS Batch' #: lms/lms/doctype/lms_batch/lms_batch.json msgid "Confirmation Email Template" -msgstr "" +msgstr "Bevestiging e-mail sjabloon" #: lms/lms/doctype/lms_certificate/lms_certificate.py:32 msgid "Congratulations on getting certified!" -msgstr "" +msgstr "Gefeliciteerd met het behalen van je certificaat!" #. Label of the contact_us_tab (Tab Break) field in DocType 'LMS Settings' #: frontend/src/components/ContactUsEmail.vue:5 #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Contact Us" -msgstr "" +msgstr "Contact ons" #. Label of the contact_us_email (Data) field in DocType 'LMS Settings' #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Contact Us Email" -msgstr "" +msgstr "Contact E-mail" #. Label of the contact_us_url (Data) field in DocType 'LMS Settings' #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Contact Us URL" -msgstr "" +msgstr "Contacteer ons URL" #: frontend/src/components/CourseCardOverlay.vue:63 #: frontend/src/pages/Lesson.vue:97 msgid "Contact the Administrator to enroll for this course." -msgstr "" +msgstr "Neem contact op met de beheerder om u voor deze cursus in te schrijven." #. Label of the content (Text) field in DocType 'Course Lesson' #. Label of the content (Rating) field in DocType 'LMS Batch Feedback' @@ -1489,11 +1489,11 @@ msgstr "" #: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json msgid "Content" -msgstr "" +msgstr "Content" #: frontend/src/components/CourseCardOverlay.vue:33 msgid "Continue Learning" -msgstr "" +msgstr "Continu leren" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #. Option in a Select field in the job-opportunity Web Form @@ -1501,20 +1501,20 @@ msgstr "" #: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/web_form/job_opportunity/job_opportunity.json msgid "Contract" -msgstr "" +msgstr "Contract" #. Option for the 'Company Type' (Select) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Corporate Organization" -msgstr "" +msgstr "Bedrijfsorganisatie" #: frontend/src/components/Quiz.vue:189 msgid "Correct" -msgstr "" +msgstr "Correct" #: frontend/src/components/Modals/Question.vue:79 msgid "Correct Answer" -msgstr "" +msgstr "Juiste Antwoord" #. Label of the country (Link) field in DocType 'User' #. Label of the country (Link) field in DocType 'Job Opportunity' @@ -1524,12 +1524,12 @@ msgstr "" #: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/lms/doctype/payment_country/payment_country.json msgid "Country" -msgstr "" +msgstr "Land" #. Label of the coupon (Link) field in DocType 'LMS Payment' #: lms/lms/doctype/lms_payment/lms_payment.json msgid "Coupon" -msgstr "" +msgstr "Coupon" #. Label of the coupon_code (Data) field in DocType 'LMS Payment' #: frontend/src/components/Settings/Coupons/CouponDetails.vue:23 @@ -1537,23 +1537,23 @@ msgstr "" #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:82 #: lms/lms/doctype/lms_payment/lms_payment.json msgid "Coupon Code" -msgstr "" +msgstr "coupon code" #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:72 msgid "Coupon Details" -msgstr "" +msgstr "Details Coupon" #: frontend/src/components/Settings/Coupons/CouponDetails.vue:132 msgid "Coupon created successfully" -msgstr "" +msgstr "Coupon succesvol aangemaakt" #: frontend/src/components/Settings/Coupons/CouponList.vue:154 msgid "Coupon deleted successfully" -msgstr "" +msgstr "Coupon succesvol verwijderd" #: frontend/src/components/Settings/Coupons/CouponList.vue:141 msgid "Coupon(s) deleted successfully" -msgstr "" +msgstr "Coupon(s) succesvol verwijderd" #. Label of the course (Link) field in DocType 'Batch Course' #. Label of the course (Link) field in DocType 'Course Chapter' @@ -1612,28 +1612,28 @@ msgstr "" #: lms/lms/report/course_progress_summary/course_progress_summary.py:51 #: lms/lms/workspace/lms/lms.json msgid "Course" -msgstr "" +msgstr "Cursus" #. Name of a DocType #. Label of the chapter (Link) field in DocType 'Course Lesson' #: lms/lms/doctype/course_chapter/course_chapter.json #: lms/lms/doctype/course_lesson/course_lesson.json msgid "Course Chapter" -msgstr "" +msgstr "Cursus Hoofdstuk" #. Label of a shortcut in the LMS Workspace #: lms/lms/workspace/lms/lms.json msgid "Course Completed" -msgstr "" +msgstr "Cursus afgerond" #: frontend/src/pages/Statistics.vue:31 msgid "Course Completions" -msgstr "" +msgstr "Afgewerkte cursussen" #. Label of the course_count (Int) field in DocType 'LMS Program' #: lms/lms/doctype/lms_program/lms_program.json msgid "Course Count" -msgstr "" +msgstr "Aantal cursussen" #. Name of a role #: frontend/src/pages/ProfileRoles.vue:26 @@ -1654,72 +1654,72 @@ msgstr "" #: lms/lms/doctype/lms_quiz/lms_quiz.json #: lms/lms/doctype/lms_video_watch_duration/lms_video_watch_duration.json msgid "Course Creator" -msgstr "" +msgstr "Cursus Maker" #. Label of a Card Break in the LMS Workspace #: lms/lms/workspace/lms/lms.json msgid "Course Data" -msgstr "" +msgstr "Cursusgegevens" #: frontend/src/pages/CourseForm.vue:151 msgid "Course Description" -msgstr "" +msgstr "Cursusbeschrijving" #: frontend/src/components/Settings/BadgeForm.vue:203 #: frontend/src/components/Settings/Badges.vue:201 msgid "Course Enrollment" -msgstr "" +msgstr "Cursusinschrijving" #: frontend/src/pages/Statistics.vue:22 msgid "Course Enrollments" -msgstr "" +msgstr "Cursusinschrijvingen" #. Name of a DocType #: lms/lms/doctype/course_evaluator/course_evaluator.json msgid "Course Evaluator" -msgstr "" +msgstr "Beoordelaar cursus" #: frontend/src/pages/CourseForm.vue:80 msgid "Course Image" -msgstr "" +msgstr "Cursusafbeelding" #. Name of a DocType #: lms/lms/doctype/course_instructor/course_instructor.json msgid "Course Instructor" -msgstr "" +msgstr "Cursus docent" #. Name of a DocType #: lms/lms/doctype/course_lesson/course_lesson.json msgid "Course Lesson" -msgstr "" +msgstr "Cursusles" #: lms/www/lms.py:86 msgid "Course List" -msgstr "" +msgstr "Cursuslijst" #: lms/lms/report/course_progress_summary/course_progress_summary.py:58 msgid "Course Name" -msgstr "" +msgstr "Cursusnaam" #: frontend/src/pages/CourseDetail.vue:78 frontend/src/pages/CourseForm.vue:275 msgid "Course Outline" -msgstr "" +msgstr "Cursusoverzicht" #. Name of a report #: frontend/src/components/Modals/CourseProgressSummary.vue:5 #: lms/lms/report/course_progress_summary/course_progress_summary.json msgid "Course Progress Summary" -msgstr "" +msgstr "Overzicht cursusvoortgang" #. Label of the section_break_7 (Section Break) field in DocType 'LMS Course' #: lms/lms/doctype/lms_course/lms_course.json msgid "Course Settings" -msgstr "" +msgstr "Cursus instellingen" #. Label of a Card Break in the LMS Workspace #: lms/lms/workspace/lms/lms.json msgid "Course Stats" -msgstr "" +msgstr "Cursusstatistieken" #. Label of the title (Data) field in DocType 'Batch Course' #. Label of the course_title (Data) field in DocType 'Course Chapter' @@ -1732,35 +1732,35 @@ msgstr "" #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_program_course/lms_program_course.json msgid "Course Title" -msgstr "" +msgstr "Cursustitel" #: frontend/src/pages/Programs/ProgramForm.vue:444 msgid "Course added to program successfully" -msgstr "" +msgstr "Cursus succesvol toegevoegd aan programma" #: frontend/src/pages/Programs/ProgramForm.vue:446 msgid "Course already added to program" -msgstr "" +msgstr "Cursus al toegevoegd aan programma" #: frontend/src/pages/CourseForm.vue:508 msgid "Course created successfully" -msgstr "" +msgstr "Cursus succesvol aangemaakt" #: frontend/src/pages/CourseForm.vue:545 msgid "Course deleted successfully" -msgstr "" +msgstr "Cursus succesvol verwijderd" #: frontend/src/pages/CourseForm.vue:528 msgid "Course updated successfully" -msgstr "" +msgstr "Cursus succesvol bijgewerkt" #: lms/lms/doctype/lms_batch/lms_batch.py:60 msgid "Course {0} has already been added to this batch." -msgstr "" +msgstr "Cursus {0} is al toegevoegd aan deze batch." #: lms/lms/doctype/lms_program/lms_program.py:20 msgid "Course {0} has already been added to this program." -msgstr "" +msgstr "Cursus {0} is al aan dit programma toegevoegd." #. Label of the courses (Table) field in DocType 'LMS Batch' #. Label of the show_courses (Check) field in DocType 'LMS Settings' @@ -1771,39 +1771,39 @@ msgstr "" #: frontend/src/components/Modals/BatchStudentProgress.vue:95 #: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/CourseCertification.vue:127 -#: frontend/src/pages/Courses.vue:365 frontend/src/pages/Courses.vue:372 +#: frontend/src/pages/Courses.vue:364 frontend/src/pages/Courses.vue:371 #: frontend/src/pages/Programs/ProgramForm.vue:49 #: frontend/src/pages/Programs/Programs.vue:35 #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Courses" -msgstr "" +msgstr "Cursussen" #: lms/lms/web_template/lms_statistics/lms_statistics.html:14 #: lms/templates/statistics.html:28 msgid "Courses Completed" -msgstr "" +msgstr "Cursussen voltooid" #: frontend/src/pages/Home/AdminHome.vue:6 msgid "Courses Created" -msgstr "" +msgstr "Cursussen aangemaakt " #: frontend/src/components/BatchCourses.vue:154 msgid "Courses deleted successfully" -msgstr "" +msgstr "Cursus succesvol verwijderd" #: frontend/src/pages/Programs/ProgramEnrollment.vue:44 msgid "Courses in this Program" -msgstr "" +msgstr "Cursussen in dit programma" #: frontend/src/pages/Programs/ProgramDetail.vue:21 msgid "Courses must be completed in order. You can only start the next course after completing the previous one." -msgstr "" +msgstr "Cursussen moeten in volgorde worden voltooid. U kunt pas aan de volgende cursus beginnen nadat u de vorige hebt voltooid." #. Label of the cover_image (Attach Image) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Cover Image" -msgstr "" +msgstr "Cover Afbeelding" #: frontend/src/components/Modals/ChapterModal.vue:9 #: frontend/src/pages/Assignments.vue:19 frontend/src/pages/Batches.vue:36 @@ -1815,11 +1815,11 @@ msgstr "Creëren" #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7 msgid "Create Certificate" -msgstr "" +msgstr "Certificaat aanmaken" #: frontend/src/pages/Home/AdminHome.vue:84 msgid "Create Course" -msgstr "" +msgstr "Cursus maken" #: frontend/src/components/Controls/Link.vue:38 #: frontend/src/components/Controls/MultiSelect.vue:76 @@ -1828,67 +1828,67 @@ msgstr "Maak nieuw" #: frontend/src/pages/Programs/ProgramForm.vue:12 msgid "Create Program" -msgstr "" +msgstr "Programma maken" #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:8 msgid "Create Programming Exercise" -msgstr "" +msgstr "Programmeeroefening maken" #: lms/templates/onboarding_header.html:19 msgid "Create a Course" -msgstr "" +msgstr "Maak een cursus" #: frontend/src/components/Modals/LiveClassModal.vue:5 msgid "Create a Live Class" -msgstr "" +msgstr "Maak een live klas aan" #: frontend/src/pages/Quizzes.vue:101 msgid "Create a Quiz" -msgstr "" +msgstr "Maak een quiz" #: frontend/src/components/Sidebar/AppSidebar.vue:532 msgid "Create a batch" -msgstr "" +msgstr "Een batch aanmaken" #: frontend/src/components/Sidebar/AppSidebar.vue:523 msgid "Create a course" -msgstr "" +msgstr "Maak een cursus" #: frontend/src/components/Sidebar/AppSidebar.vue:533 msgid "Create a live class" -msgstr "" +msgstr "Maak een live klas aan" #: frontend/src/components/Settings/BadgeForm.vue:5 msgid "Create a new Badge" -msgstr "" +msgstr "Maak een nieuwe Badge" #: frontend/src/components/Modals/AssignmentForm.vue:13 msgid "Create an Assignment" -msgstr "" +msgstr "Een opdracht maken" #: frontend/src/components/Sidebar/AppSidebar.vue:457 msgid "Create your first batch" -msgstr "" +msgstr "Maak uw eerste batch aan" #: frontend/src/components/Sidebar/AppSidebar.vue:388 msgid "Create your first course" -msgstr "" +msgstr "Maak uw eerste cursus aan" #: frontend/src/components/Sidebar/AppSidebar.vue:435 msgid "Create your first quiz" -msgstr "" +msgstr "Maak uw eerste quiz" -#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:355 +#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:354 msgid "Created" -msgstr "" +msgstr "Aangemaakt" #: frontend/src/components/Sidebar/AppSidebar.vue:529 msgid "Creating a batch" -msgstr "" +msgstr "Een batch aanmaken" #: frontend/src/components/Sidebar/AppSidebar.vue:520 msgid "Creating a course" -msgstr "" +msgstr "Een cursus maken" #. Label of the currency (Link) field in DocType 'LMS Batch' #. Label of the currency (Link) field in DocType 'LMS Course' @@ -1904,57 +1904,57 @@ msgstr "Valuta" #. Label of the current_lesson (Link) field in DocType 'LMS Enrollment' #: lms/lms/doctype/lms_enrollment/lms_enrollment.json msgid "Current Lesson" -msgstr "" +msgstr "Huidige Les" #: frontend/src/pages/Home/Streak.vue:34 msgid "Current Streak" -msgstr "" +msgstr "Huidige reeks" #: frontend/src/components/Sidebar/AppSidebar.vue:556 msgid "Custom Certificate Templates" -msgstr "" +msgstr "Aangepaste certificaatsjablonen" #. Label of the custom_component (Code) field in DocType 'LMS Batch' #: lms/lms/doctype/lms_batch/lms_batch.json msgid "Custom HTML" -msgstr "" +msgstr "Aangepaste HTML" #. Label of the custom_script (Code) field in DocType 'LMS Batch' #: lms/lms/doctype/lms_batch/lms_batch.json msgid "Custom Script (JavaScript)" -msgstr "" +msgstr "Aangepast script (JavaScript)" #. Label of the custom_signup_content (HTML Editor) field in DocType 'LMS #. Settings' #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Custom Signup Content" -msgstr "" +msgstr "Aangepaste inhoud voor aanmelding" #. Label of the customisations_tab (Tab Break) field in DocType 'LMS Batch' #: lms/lms/doctype/lms_batch/lms_batch.json msgid "Customisations" -msgstr "" +msgstr "Personalisatie" #. Option for the 'Color' (Select) field in DocType 'LMS Course' #: lms/lms/doctype/lms_course/lms_course.json msgid "Cyan" -msgstr "" +msgstr "Cyaan" #. Label of the show_dashboard (Check) field in DocType 'LMS Settings' #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Dashboard" -msgstr "" +msgstr "Dashboard" #: frontend/src/pages/DataImport.vue:46 msgid "Data Import" -msgstr "" +msgstr "Gegevens importeren" #. Label of the date (Date) field in DocType 'LMS Batch Timetable' #. Label of the date (Date) field in DocType 'LMS Certificate Evaluation' #. Label of the date (Date) field in DocType 'LMS Certificate Request' #. Label of the date (Date) field in DocType 'LMS Live Class' #. Label of the date (Date) field in DocType 'Scheduled Flow' -#: frontend/src/components/Modals/Event.vue:40 +#: frontend/src/components/Modals/Event.vue:46 #: frontend/src/components/Modals/LiveClassModal.vue:29 #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json @@ -1966,11 +1966,11 @@ msgstr "Datum" #: frontend/src/pages/BatchForm.vue:76 msgid "Date and Time" -msgstr "" +msgstr "Datum en tijd" #: lms/templates/emails/live_class_reminder.html:13 msgid "Date:" -msgstr "" +msgstr "Datum:" #. Label of the day (Select) field in DocType 'Evaluator Schedule' #. Label of the day (Int) field in DocType 'LMS Batch Timetable' @@ -1980,33 +1980,33 @@ msgstr "" #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json msgid "Day" -msgstr "" +msgstr "Dag" #: lms/templates/emails/mentor_request_creation_email.html:2 #: lms/templates/emails/mentor_request_status_update_email.html:2 msgid "Dear" -msgstr "" +msgstr "Geachte" #: lms/templates/emails/batch_confirmation.html:2 #: lms/templates/emails/batch_start_reminder.html:2 #: lms/templates/emails/certification.html:2 #: lms/templates/emails/live_class_reminder.html:2 msgid "Dear " -msgstr "" +msgstr "Beste " #: frontend/src/components/Modals/EmailTemplateModal.vue:66 msgid "Dear {{ member_name }},\\n\\nYou have been enrolled in our upcoming batch {{ batch_name }}.\\n\\nThanks,\\nFrappe Learning" -msgstr "" +msgstr "Beste {{ member_name }},\\n\\nU bent ingeschreven voor onze aankomende cursus {{ batch_name }}.\\n\\nBedankt,\\nFrappe Learning" #. Label of the default_currency (Link) field in DocType 'LMS Settings' #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Default Currency" -msgstr "" +msgstr "Standaard munteenheid" #. Label of the degree_type (Data) field in DocType 'Education Detail' #: lms/lms/doctype/education_detail/education_detail.json msgid "Degree Type" -msgstr "" +msgstr "Graad Type" #: frontend/src/components/Controls/ChildTable.vue:63 #: frontend/src/components/CourseOutline.vue:294 @@ -2020,51 +2020,51 @@ msgstr "" #: frontend/src/pages/Programs/ProgramForm.vue:230 #: frontend/src/pages/Programs/ProgramForm.vue:567 msgid "Delete" -msgstr "Verwijder" +msgstr "" #: frontend/src/components/CourseOutline.vue:67 msgid "Delete Chapter" -msgstr "" +msgstr "Verwijder hoofdstuk" #: frontend/src/pages/CourseForm.vue:552 msgid "Delete Course" -msgstr "" +msgstr "Cursus verwijderen" #: frontend/src/pages/Programs/ProgramForm.vue:561 msgid "Delete Program" -msgstr "" +msgstr "Programma verwijderen" #: frontend/src/components/CourseOutline.vue:354 msgid "Delete this chapter?" -msgstr "" +msgstr "Dit hoofdstuk verwijderen?" #: frontend/src/components/Settings/Coupons/CouponList.vue:127 msgid "Delete this coupon?" -msgstr "" +msgstr "Deze coupon verwijderen?" #: frontend/src/components/CourseOutline.vue:288 msgid "Delete this lesson?" -msgstr "" +msgstr "Deze les verwijderen?" #: frontend/src/pages/CourseForm.vue:553 msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?" -msgstr "" +msgstr "Als u de cursus verwijdert, worden ook alle hoofdstukken en lessen verwijderd. Weet u zeker dat u deze cursus wilt verwijderen?" #: frontend/src/pages/ProgrammingExercises/ProgrammingExercises.vue:227 msgid "Deleting these exercises will permanently remove them from the system, along with all associated submissions. This action is irreversible. Are you sure you want to proceed?" -msgstr "" +msgstr "Als u deze oefeningen verwijdert, worden ze samen met alle bijbehorende inzendingen permanent uit het systeem verwijderd. Deze actie is onomkeerbaar. Weet u zeker dat u wilt doorgaan?" #: frontend/src/pages/BatchForm.vue:530 msgid "Deleting this batch will also delete all its data including enrolled students, linked courses, assessments, feedback and discussions. Are you sure you want to continue?" -msgstr "" +msgstr "Als u deze batch verwijdert, worden ook alle gegevens verwijderd, inclusief ingeschreven leerlingen, gekoppelde cursussen, beoordelingen, feedback en discussies. Weet u zeker dat u wilt doorgaan?" #: frontend/src/components/CourseOutline.vue:355 msgid "Deleting this chapter will also delete all its lessons and permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?" -msgstr "" +msgstr "Als u dit hoofdstuk verwijdert, worden ook alle lessen verwijderd en wordt het hoofdstuk permanent uit de cursus verwijderd. Deze actie kan niet ongedaan worden gemaakt. Weet u zeker dat u wilt doorgaan?" #: frontend/src/components/CourseOutline.vue:289 msgid "Deleting this lesson will permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?" -msgstr "" +msgstr "Als u dit hoofdstuk verwijdert, worden ook alle lessen verwijderd en wordt het hoofdstuk permanent uit de cursus verwijderd. Deze actie kan niet ongedaan worden gemaakt. Weet u zeker dat u wilt doorgaan?" #. Label of the description (Text Editor) field in DocType 'Job Opportunity' #. Label of a field in the job-opportunity Web Form @@ -2090,32 +2090,32 @@ msgstr "Beschrijving" #: frontend/src/components/Sidebar/Apps.vue:50 msgid "Desk" -msgstr "" +msgstr "Bureau" #: frontend/src/components/Modals/DiscussionModal.vue:22 #: frontend/src/pages/BatchForm.vue:21 frontend/src/pages/CourseForm.vue:25 #: frontend/src/pages/QuizForm.vue:50 msgid "Details" -msgstr "" +msgstr "Details" #. 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 Uitschakelen" #: frontend/src/pages/CourseForm.vue:127 msgid "Disable Self Enrollment" -msgstr "" +msgstr "Zelfregistratie uitschakelen" #. Label of the disable_self_learning (Check) field in DocType 'LMS Course' #: lms/lms/doctype/lms_course/lms_course.json msgid "Disable Self Learning" -msgstr "" +msgstr "Deactiveer zelf-leren" #. Label of the disable_signup (Check) field in DocType 'LMS Settings' #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Disable Signup" -msgstr "" +msgstr "Registratie uitschakelen" #: frontend/src/components/Settings/Badges.vue:56 #: frontend/src/components/Settings/Coupons/CouponList.vue:46 @@ -2127,35 +2127,35 @@ msgstr "Uitgeschakeld" #: frontend/src/components/DiscussionReplies.vue:57 #: lms/lms/widgets/NoPreviewModal.html:25 msgid "Discard" -msgstr "" +msgstr "Negeren" #: frontend/src/components/Settings/Coupons/CouponList.vue:169 #: frontend/src/pages/Billing.vue:41 msgid "Discount" -msgstr "" +msgstr "Korting" #. Label of the discount_amount (Currency) field in DocType 'LMS Payment' #: frontend/src/components/Settings/Coupons/CouponDetails.vue:53 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:87 #: lms/lms/doctype/lms_payment/lms_payment.json msgid "Discount Amount" -msgstr "" +msgstr "Kortingsbedrag" #: frontend/src/components/Settings/Coupons/CouponDetails.vue:46 msgid "Discount Percentage" -msgstr "" +msgstr "Kortingspercentage" #. Label of the discount_type (Select) field in DocType 'LMS Coupon' #: frontend/src/components/Settings/Coupons/CouponDetails.vue:30 #: lms/lms/doctype/lms_coupon/lms_coupon.json msgid "Discount Type" -msgstr "" +msgstr "Kortingstype" #. Label of the show_discussions (Check) field in DocType 'LMS Settings' #: frontend/src/pages/Batch.vue:91 #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Discussions" -msgstr "" +msgstr "Discussies" #. Option for the 'File Type' (Select) field in DocType 'Course Lesson' #. Option for the 'Type' (Select) field in DocType 'LMS Assignment' @@ -2164,11 +2164,11 @@ msgstr "" #: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json msgid "Document" -msgstr "" +msgstr "Document" #: frontend/src/components/Settings/Coupons/CouponItems.vue:11 msgid "Document Name" -msgstr "" +msgstr "Documentnaam" #: frontend/src/components/Settings/Coupons/CouponItems.vue:8 msgid "Document Type" @@ -2176,16 +2176,16 @@ 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" -msgstr "" +msgstr "Mis deze kans om uw vaardigheden te verbeteren niet. Klik hieronder om uw inschrijving te voltooien" #. Label of the dream_companies (Data) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Dream Companies" -msgstr "" +msgstr "Droombedrijven" #: lms/lms/doctype/lms_question/lms_question.py:34 msgid "Duplicate options found for this question." -msgstr "" +msgstr "Dubbele opties gevonden voor deze vraag." #. Label of the duration (Data) field in DocType 'LMS Batch Timetable' #. Label of the duration (Int) field in DocType 'LMS Live Class' @@ -2200,11 +2200,11 @@ 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 msgid "Duration (in minutes)" -msgstr "" +msgstr "Duur (in minuten)" #: frontend/src/components/Modals/LiveClassModal.vue:32 msgid "Duration of the live class in minutes" -msgstr "" +msgstr "Duur van de live klas in minuten" #: frontend/src/components/BatchOverlay.vue:129 #: frontend/src/components/CourseCardOverlay.vue:116 @@ -2218,68 +2218,68 @@ msgstr "Bewerk" #: frontend/src/components/Modals/AssignmentForm.vue:14 msgid "Edit Assignment" -msgstr "" +msgstr "Opdracht bewerken" #: frontend/src/components/Settings/BadgeForm.vue:5 msgid "Edit Badge" -msgstr "" +msgstr "Badge bewerken" #: frontend/src/components/Settings/BadgeAssignmentForm.vue:8 msgid "Edit Badge Assignment" -msgstr "" +msgstr "Badge toewijzing bewerken" #: frontend/src/components/CourseOutline.vue:60 #: frontend/src/components/Modals/ChapterModal.vue:5 msgid "Edit Chapter" -msgstr "" +msgstr "Hoofdstuk bewerken" #: frontend/src/components/Settings/Coupons/CouponDetails.vue:9 msgid "Edit Coupon" -msgstr "" +msgstr "Coupon bewerken" #: frontend/src/components/Modals/EmailTemplateModal.vue:8 msgid "Edit Email Template" -msgstr "" +msgstr "E-mail-sjabloon bewerken" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:13 msgid "Edit Payment Gateway" -msgstr "" +msgstr "Payment Gateway bewerken" #: frontend/src/components/Modals/EditProfile.vue:10 #: frontend/src/pages/Profile.vue:124 msgid "Edit Profile" -msgstr "" +msgstr "Bewerk profiel" #: frontend/src/pages/Programs/ProgramForm.vue:12 msgid "Edit Program" -msgstr "" +msgstr "Programma bewerken" #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:9 msgid "Edit Programming Exercise" -msgstr "" +msgstr "Programmeeroefening bewerken" #: frontend/src/components/Modals/ZoomAccountModal.vue:6 msgid "Edit Zoom Account" -msgstr "" +msgstr "Zoom-account bewerken" #: frontend/src/pages/QuizForm.vue:199 msgid "Edit the question" -msgstr "" +msgstr "Bewerk de vraag" #. Label of the education (Table) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Education" -msgstr "" +msgstr "Onderwijs" #. Name of a DocType #: lms/lms/doctype/education_detail/education_detail.json msgid "Education Detail" -msgstr "" +msgstr "Onderwijs Detail" #. Label of the education_details (Section Break) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Education Details" -msgstr "" +msgstr "Onderwijs details" #. Option for the 'Send Notification for Published Courses' (Select) field in #. DocType 'LMS Settings' @@ -2295,34 +2295,34 @@ msgstr "E-mail" #: frontend/src/components/Modals/Event.vue:16 msgid "Email ID" -msgstr "" +msgstr "E-mail ID" #. Label of the email_sent (Check) field in DocType 'LMS Course Interest' #: lms/lms/doctype/lms_course_interest/lms_course_interest.json msgid "Email Sent" -msgstr "" +msgstr "E-mail verstuurd" #: frontend/src/pages/BatchForm.vue:161 msgid "Email Template" -msgstr "" +msgstr "Email sjabloon" #: frontend/src/components/Modals/EmailTemplateModal.vue:117 msgid "Email Template created successfully" -msgstr "" +msgstr "E-mailsjabloon succesvol aangemaakt" #: frontend/src/components/Modals/EmailTemplateModal.vue:146 msgid "Email Template updated successfully" -msgstr "" +msgstr "E-mailsjabloon succesvol aangemaakt" #. Label of the email_templates_tab (Tab Break) field in DocType 'LMS Settings' #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Email Templates" -msgstr "" +msgstr "E-Mail Sjablonen" #: frontend/src/components/Settings/EmailTemplates.vue:128 #: frontend/src/components/Settings/ZoomSettings.vue:174 msgid "Email Templates deleted successfully" -msgstr "" +msgstr "E-mail sjablonen succesvol verwijderd" #: frontend/src/components/ContactUsEmail.vue:57 #: frontend/src/pages/JobApplications.vue:265 @@ -2332,30 +2332,30 @@ msgstr "E-mail succesvol verzonden" #. Label of the show_emails (Check) field in DocType 'LMS Settings' #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Emails" -msgstr "" +msgstr "E-mails" #. Option for the 'User Category' (Select) field in DocType 'User' #: lms/fixtures/custom_field.json lms/templates/signup-form.html:25 msgid "Employee" -msgstr "" +msgstr "Werknemer" #. Label of the enable (Check) field in DocType 'Zoom Settings' #: lms/lms/doctype/zoom_settings/zoom_settings.json msgid "Enable" -msgstr "" +msgstr "Inschakelen" #: lms/lms/doctype/lms_settings/lms_settings.py:22 msgid "Enable Google API in Google Settings to send calendar invites for evaluations." -msgstr "" +msgstr "Schakel Google API in bij Google Instellingen om agenda-uitnodigingen voor evaluaties te versturen." #. Label of the enable_negative_marking (Check) field in DocType 'LMS Quiz' #: frontend/src/pages/QuizForm.vue:117 lms/lms/doctype/lms_quiz/lms_quiz.json msgid "Enable Negative Marking" -msgstr "" +msgstr "Negatieve markering inschakelen" #: frontend/src/components/Modals/ChapterModal.vue:24 msgid "Enable this only if you want to upload a SCORM package as a chapter." -msgstr "" +msgstr "Schakel deze optie alleen in als u een SCORM-pakket als hoofdstuk wilt uploaden." #. Label of the enabled (Check) field in DocType 'LMS Badge' #. Label of the enabled (Check) field in DocType 'LMS Coupon' @@ -2376,7 +2376,7 @@ msgstr "Ingeschakeld" #: frontend/src/components/Modals/BulkCertificates.vue:53 msgid "Enabling this will publish the certificate on the certified participants page." -msgstr "" +msgstr "Als u deze optie inschakelt, wordt het certificaat gepubliceerd op de pagina met gecertificeerde deelnemers." #. Label of the end_date (Date) field in DocType 'LMS Batch' #: lms/lms/doctype/lms_batch/lms_batch.json @@ -2386,7 +2386,7 @@ msgstr "Einddatum" #. Label of the end_date (Date) field in DocType 'Education Detail' #: lms/lms/doctype/education_detail/education_detail.json msgid "End Date (or expected)" -msgstr "" +msgstr "Einddatum (of verwachte einddatum)" #. Label of the end_time (Time) field in DocType 'Evaluator Schedule' #. Label of the end_time (Time) field in DocType 'LMS Batch' @@ -2402,61 +2402,61 @@ msgstr "" #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/scheduled_flow/scheduled_flow.json msgid "End Time" -msgstr "" +msgstr "Eindtijd" #: frontend/src/components/LiveClass.vue:92 #: frontend/src/pages/Home/AdminHome.vue:186 #: frontend/src/pages/Home/StudentHome.vue:129 msgid "Ended" -msgstr "" +msgstr "Beëindigd" #. Label of the enforce_course_order (Check) field in DocType 'LMS Program' #: frontend/src/pages/Programs/ProgramForm.vue:39 #: lms/lms/doctype/lms_program/lms_program.json msgid "Enforce Course Order" -msgstr "" +msgstr "Cursusvolgorde afdwingen" #: frontend/src/pages/Programs/ProgramForm.vue:177 msgid "Enroll Member to Program" -msgstr "" +msgstr "Lid naar programma inschrijven" #: frontend/src/components/BatchOverlay.vue:113 msgid "Enroll Now" -msgstr "" +msgstr "Nu inschrijven" -#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:358 +#: frontend/src/pages/Batches.vue:334 frontend/src/pages/Courses.vue:357 #: frontend/src/pages/Programs/StudentPrograms.vue:96 msgid "Enrolled" -msgstr "" +msgstr "Ingeschreven" #: frontend/src/components/CourseCard.vue:62 #: frontend/src/components/CourseCardOverlay.vue:138 #: frontend/src/pages/CourseDetail.vue:33 #: frontend/src/pages/Programs/ProgramEnrollment.vue:69 msgid "Enrolled Students" -msgstr "" +msgstr "Ingeschreven studenten" #: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.py:137 msgid "Enrollment Confirmation for {0}" -msgstr "" +msgstr "Bevestiging van inschrijving voor {0}" #: lms/lms/web_template/lms_statistics/lms_statistics.html:14 #: lms/templates/statistics.html:20 msgid "Enrollment Count" -msgstr "" +msgstr "Aantal inschrijvingen" #: frontend/src/pages/Programs/ProgramEnrollment.vue:10 msgid "Enrollment for Program {0}" -msgstr "" +msgstr "Inschrijving voor Programma {0}" #. Label of the enrollment_from_batch (Link) field in DocType 'LMS Enrollment' #: lms/lms/doctype/lms_enrollment/lms_enrollment.json msgid "Enrollment from Batch" -msgstr "" +msgstr "Inschrijving van Batch" #: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.py:57 msgid "Enrollment in this batch is restricted. Please contact the Administrator." -msgstr "" +msgstr "Inschrijving voor deze batch is beperkt. Neem contact op met de beheerder." #. Label of the enrollments (Int) field in DocType 'LMS Course' #. Label of a chart in the LMS Workspace @@ -2465,95 +2465,95 @@ msgstr "" #: frontend/src/pages/Programs/ProgramProgressSummary.vue:15 #: lms/lms/doctype/lms_course/lms_course.json lms/lms/workspace/lms/lms.json msgid "Enrollments" -msgstr "" +msgstr "Inschrijvingen" #: lms/lms/doctype/lms_settings/lms_settings.py:27 msgid "Enter Client Id and Client Secret in Google Settings to send calendar invites for evaluations." -msgstr "" +msgstr "Voer de client-Id en het clientgeheim in de Google-instellingen in om agenda-uitnodigingen voor evaluaties te versturen." #: frontend/src/pages/Billing.vue:64 msgid "Enter a Coupon Code" -msgstr "" +msgstr "Een couponcode invoeren" #: frontend/src/components/Assignment.vue:116 msgid "Enter a URL" -msgstr "" +msgstr "Voer een URL in" #: frontend/src/pages/JobApplications.vue:127 msgid "Enter email subject" -msgstr "" +msgstr "Voer onderwerp voor e-mail in" #: frontend/src/pages/JobApplications.vue:133 msgid "Enter reply to email" -msgstr "" +msgstr "Antwoord op e-mail invoeren" #: frontend/src/components/Modals/ZoomAccountModal.vue:167 msgid "Error creating Zoom Account" -msgstr "" +msgstr "Fout bij het bijwerken van Zoom-account" #: frontend/src/components/Settings/BadgeForm.vue:186 msgid "Error creating badge" -msgstr "" +msgstr "Fout tijdens maken badge" #: frontend/src/components/Modals/EmailTemplateModal.vue:122 msgid "Error creating email template" -msgstr "" +msgstr "Fout bij het maken van een e-mailsjabloon" #: lms/lms/doctype/lms_batch/lms_batch.py:256 msgid "Error creating live class. Please try again. {0}" -msgstr "" +msgstr "Fout bij het maken van een live klas. Probeer het opnieuw. {0}" #: frontend/src/pages/Quizzes.vue:230 msgid "Error creating quiz: {0}" -msgstr "" +msgstr "Fout bij het maken van de quiz: {0}" #: frontend/src/components/Settings/Badges.vue:193 msgid "Error deleting badge" -msgstr "" +msgstr "Fout bij het verwijderen van de badge" #: frontend/src/components/Settings/EmailTemplates.vue:133 #: frontend/src/components/Settings/ZoomSettings.vue:179 msgid "Error deleting email templates" -msgstr "" +msgstr "Fout bij het verwijderen van e-mailsjablonen" #: frontend/src/components/Modals/ZoomAccountModal.vue:205 msgid "Error updating Zoom Account" -msgstr "" +msgstr "Fout bij het bijwerken van Zoom-account" #: frontend/src/components/Modals/EmailTemplateModal.vue:151 msgid "Error updating email template" -msgstr "" +msgstr "Fout bij het maken van een e-mailsjabloon" #. Label of a Link in the LMS Workspace #. Label of a shortcut in the LMS Workspace -#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json +#: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json msgid "Evaluation" -msgstr "" +msgstr "Evaluatie" #. Label of the section_break_6 (Section Break) field in DocType 'LMS #. Certificate Evaluation' #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Evaluation Details" -msgstr "" +msgstr "Evaluatie Details" #. Label of the evaluation_end_date (Date) field in DocType 'LMS Batch' #: frontend/src/pages/BatchForm.vue:122 #: lms/lms/doctype/lms_batch/lms_batch.json msgid "Evaluation End Date" -msgstr "" +msgstr "Beoordeling einddatum" #. Label of a Link in the LMS Workspace #: lms/lms/workspace/lms/lms.json msgid "Evaluation Request" -msgstr "" +msgstr "Evaluatieverzoek" #: lms/lms/doctype/lms_batch/lms_batch.py:88 msgid "Evaluation end date cannot be less than the batch end date." -msgstr "" +msgstr "De einddatum van de evaluatie mag niet eerder zijn dan de einddatum van de batch." -#: frontend/src/components/Modals/Event.vue:286 +#: frontend/src/components/Modals/Event.vue:292 msgid "Evaluation saved successfully" -msgstr "" +msgstr "Evaluatie succesvol opgeslagen" #. Label of the evaluator (Link) field in DocType 'Batch Course' #. Label of the evaluator (Link) field in DocType 'Course Evaluator' @@ -2574,7 +2574,7 @@ msgstr "" #: lms/lms/doctype/lms_course/lms_course.json #: lms/templates/upcoming_evals.html:33 msgid "Evaluator" -msgstr "" +msgstr "Beoordelaar" #. Label of the evaluator_name (Data) field in DocType 'LMS Certificate' #. Label of the evaluator_name (Data) field in DocType 'LMS Certificate @@ -2585,28 +2585,28 @@ msgstr "" #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json msgid "Evaluator Name" -msgstr "" +msgstr "Naam beoordelaar" #. Name of a DocType #: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json msgid "Evaluator Schedule" -msgstr "" +msgstr "Schema beoordelaar" #: frontend/src/components/Settings/Evaluators.vue:160 msgid "Evaluator added successfully" -msgstr "" +msgstr "Evaluator succesvol toegevoegd" #: frontend/src/components/Settings/Evaluators.vue:193 msgid "Evaluator deleted successfully" -msgstr "" +msgstr "Sjabloon succesvol verwijderd" #: lms/lms/api.py:1406 msgid "Evaluator does not exist." -msgstr "" +msgstr "Evaluator bestaat niet." #: lms/lms/doctype/lms_course/lms_course.py:67 msgid "Evaluator is required for paid certificates." -msgstr "" +msgstr "Evaluator is vereist voor betaalde certificaten." #. Label of the event (Select) field in DocType 'LMS Badge' #. Label of the event (Link) field in DocType 'LMS Live Class' @@ -2614,28 +2614,28 @@ msgstr "" #: lms/lms/doctype/lms_badge/lms_badge.json #: lms/lms/doctype/lms_live_class/lms_live_class.json msgid "Event" -msgstr "" +msgstr "Evenement" #: frontend/src/pages/BatchForm.vue:116 msgid "Example: IST (+5:30)" -msgstr "" +msgstr "Voorbeeld: IST (+5:30)" #. Label of the exercise (Link) field in DocType 'LMS Programming Exercise #. Submission' #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:275 #: lms/lms/doctype/lms_programming_exercise_submission/lms_programming_exercise_submission.json msgid "Exercise" -msgstr "" +msgstr "Oefening" #. Label of the exercise_title (Data) field in DocType 'LMS Programming #. Exercise Submission' #: lms/lms/doctype/lms_programming_exercise_submission/lms_programming_exercise_submission.json msgid "Exercise Title" -msgstr "" +msgstr "Titel oefening" #: frontend/src/pages/ProgrammingExercises/ProgrammingExercises.vue:250 msgid "Exercise deleted successfully" -msgstr "" +msgstr "Cursus succesvol verwijderd" #: frontend/src/components/Sidebar/AppSidebar.vue:155 msgid "Expand" @@ -2648,30 +2648,30 @@ msgstr "Uitbreiden" #: lms/lms/doctype/lms_test_case/lms_test_case.json #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json msgid "Expected Output" -msgstr "" +msgstr "Verwachte output" #. Label of the expiration_date (Data) field in DocType 'Certification' #: lms/lms/doctype/certification/certification.json msgid "Expiration Date" -msgstr "" +msgstr "Vervaldatum" #. Label of the expires_on (Date) field in DocType 'LMS Coupon' #: frontend/src/components/Settings/Coupons/CouponDetails.vue:38 #: frontend/src/components/Settings/Coupons/CouponList.vue:176 #: lms/lms/doctype/lms_coupon/lms_coupon.json msgid "Expires On" -msgstr "" +msgstr "Verloopt op" #. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:33 -#: frontend/src/components/Modals/Event.vue:144 +#: frontend/src/components/Modals/Event.vue:150 #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Expiry Date" -msgstr "" +msgstr "Vervaldatum" #: lms/lms/doctype/lms_coupon/lms_coupon.py:23 msgid "Expiry date cannot be in the past" -msgstr "" +msgstr "De vervaldatum kan niet in het verleden liggen" #. Label of the explanation_1 (Small Text) field in DocType 'LMS Question' #. Label of the explanation_3 (Small Text) field in DocType 'LMS Question' @@ -2679,27 +2679,27 @@ msgstr "" #: frontend/src/components/Modals/Question.vue:75 #: lms/lms/doctype/lms_question/lms_question.json msgid "Explanation" -msgstr "" +msgstr "Verklaring" #. Label of the explanation_2 (Small Text) field in DocType 'LMS Question' #: lms/lms/doctype/lms_question/lms_question.json msgid "Explanation " -msgstr "" +msgstr "Verklaring " #: lms/lms/web_template/course_cards/course_cards.html:15 #: lms/lms/web_template/recently_published_courses/recently_published_courses.html:16 msgid "Explore More" -msgstr "" +msgstr "Meer Ontdekken" #. Option for the 'Status' (Select) field in DocType 'LMS Assignment #. Submission' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:396 +#: frontend/src/components/Modals/Event.vue:412 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Fail" -msgstr "" +msgstr "Mislukt" #. Option for the 'Status' (Select) field in DocType 'LMS Programming Exercise #. Submission' @@ -2712,31 +2712,31 @@ msgstr "Gefaald" #: frontend/src/components/Settings/BadgeAssignmentForm.vue:136 msgid "Failed to create badge assignment: " -msgstr "" +msgstr "Maken van badge opdracht mislukt: " #: frontend/src/pages/Programs/ProgramEnrollment.vue:153 msgid "Failed to enroll in program: {0}" -msgstr "" +msgstr "Inschrijving voor het programma is mislukt: {0}" #: lms/lms/doctype/lms_live_class/lms_live_class.py:144 msgid "Failed to fetch attendance data from Zoom for class {0}: {1}" -msgstr "" +msgstr "Het ophalen van aanwezigheidsgegevens van Zoom voor les {0} is mislukt: {1}" #: frontend/src/components/ContactUsEmail.vue:63 msgid "Failed to send email" -msgstr "" +msgstr "E-mail verzenden is mislukt" #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:363 msgid "Failed to submit. Please try again. {0}" -msgstr "" +msgstr "Niet verzonden. Probeer het opnieuw. {0}" #: frontend/src/components/Settings/BadgeAssignmentForm.vue:117 msgid "Failed to update badge assignment: " -msgstr "" +msgstr "Maken van badge opdracht mislukt: " #: frontend/src/utils/index.js:856 msgid "Failed to update meta tags {0}" -msgstr "" +msgstr "Het bijwerken van metatags is mislukt {0}" #. Label of the featured (Check) field in DocType 'LMS Course' #: frontend/src/components/CourseCard.vue:25 @@ -2744,54 +2744,54 @@ msgstr "" #: frontend/src/pages/CourseForm.vue:122 #: lms/lms/doctype/lms_course/lms_course.json msgid "Featured" -msgstr "" +msgstr "Uitgelicht" #. Label of the feedback (Small Text) field in DocType 'LMS Batch Feedback' #: frontend/src/components/BatchFeedback.vue:30 #: frontend/src/pages/Batch.vue:150 #: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json msgid "Feedback" -msgstr "" +msgstr "Terugkoppeling" #: frontend/src/components/Assignment.vue:64 msgid "Feel free to make edits to your submission if needed." -msgstr "" +msgstr "U kunt uw inzending naar behoefte bewerken." #. Label of the field_to_check (Select) field in DocType 'LMS Badge' #: lms/lms/doctype/lms_badge/lms_badge.json msgid "Field To Check" -msgstr "" +msgstr "Te controleren veld" #. Label of the major (Data) field in DocType 'Education Detail' #: lms/lms/doctype/education_detail/education_detail.json msgid "Field of Major/Study" -msgstr "" +msgstr "Hoofdvak/studiegebied" #. Label of the file_type (Select) field in DocType 'Course Lesson' #: lms/lms/doctype/course_lesson/course_lesson.json msgid "File Type" -msgstr "" +msgstr "Bestandstype" #: frontend/src/components/AssessmentPlugin.vue:54 msgid "Filter assignments by course" -msgstr "" +msgstr "Filter opdrachten op cursus" #: frontend/src/components/Settings/Transactions/TransactionList.vue:15 msgid "Filter by Billing Name" -msgstr "" +msgstr "Filter op factuurnaam" #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:20 msgid "Filter by Exercise" -msgstr "" +msgstr "Filter op oefening" #: frontend/src/components/Settings/Transactions/TransactionList.vue:20 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:26 msgid "Filter by Member" -msgstr "" +msgstr "Filter op lid" #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:38 msgid "Filter by Status" -msgstr "" +msgstr "Filteren op status" #: frontend/src/components/Modals/EditProfile.vue:70 #: frontend/src/components/Settings/Members.vue:110 @@ -2801,31 +2801,31 @@ msgstr "Voornaam" #. Option for the 'Time Preference' (Select) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Fixed 9-5" -msgstr "" +msgstr "Vaste tijden 9-5" #. Option for the 'Discount Type' (Select) field in DocType 'LMS Coupon' #: lms/lms/doctype/lms_coupon/lms_coupon.json msgid "Fixed Amount" -msgstr "" +msgstr "Vast bedrag" #. Label of the fixed_amount_discount (Int) field in DocType 'LMS Coupon' #: lms/lms/doctype/lms_coupon/lms_coupon.json msgid "Fixed Amount Discount" -msgstr "" +msgstr "Vast kortingsbedrag" #. Option for the 'Time Preference' (Select) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Flexible Time" -msgstr "" +msgstr "Flexibele tijd" #. Option for the 'Attire Preference' (Select) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Formal Wear" -msgstr "" +msgstr "Formele kleding" #: lms/lms/widgets/CourseCard.html:114 msgid "Free" -msgstr "" +msgstr "Gratis" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #. Option in a Select field in the job-opportunity Web Form @@ -2833,24 +2833,24 @@ msgstr "" #: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/web_form/job_opportunity/job_opportunity.json msgid "Freelance" -msgstr "" +msgstr "Freelance" #. Option for the 'User Category' (Select) field in DocType 'User' #: lms/fixtures/custom_field.json lms/templates/signup-form.html:27 msgid "Freelancer/Just looking" -msgstr "" +msgstr "Freelancer/gewoon op zoek" #. Option for the 'Grade Type' (Select) field in DocType 'Education Detail' #: lms/lms/doctype/education_detail/education_detail.json msgid "French (e.g. Distinction)" -msgstr "" +msgstr "Frans (bijv. Onderscheiding)" #. Option for the 'Day' (Select) field in DocType 'Evaluator Schedule' #. Option for the 'Day' (Select) field in DocType 'LMS Certificate Request' #: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json msgid "Friday" -msgstr "" +msgstr "Vrijdag" #. Label of the unavailable_from (Date) field in DocType 'Course Evaluator' #: frontend/src/pages/ProfileEvaluator.vue:106 @@ -2882,7 +2882,7 @@ msgstr "Volledige naam" #: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/web_form/job_opportunity/job_opportunity.json msgid "Full Time" -msgstr "" +msgstr "Voltijds" #. Name of a DocType #. Label of the function (Data) field in DocType 'Function' @@ -2890,241 +2890,241 @@ msgstr "" #: lms/lms/doctype/function/function.json #: lms/lms/doctype/preferred_function/preferred_function.json msgid "Function" -msgstr "" +msgstr "Functie" #: frontend/src/pages/Billing.vue:46 msgid "GST Amount" -msgstr "" +msgstr "BTW bedrag" #: frontend/src/pages/Billing.vue:165 msgid "GST Number" -msgstr "" +msgstr "BTW nummer" #. Label of the gstin (Data) field in DocType 'LMS Payment' #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:107 #: lms/lms/doctype/lms_payment/lms_payment.json msgid "GSTIN" -msgstr "" +msgstr "GSTIN" #: frontend/src/components/Settings/PaymentGateways.vue:134 msgid "Gateway" -msgstr "" +msgstr "Gateway" #. Label of the general_tab (Tab Break) field in DocType 'LMS Settings' #: lms/lms/doctype/lms_settings/lms_settings.json msgid "General" -msgstr "" +msgstr "Algemeen" #: frontend/src/components/Modals/BulkCertificates.vue:5 #: frontend/src/pages/Batch.vue:12 msgid "Generate Certificates" -msgstr "" +msgstr "Certificaten genereren" #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:15 msgid "Generate Google Meet Link" -msgstr "" +msgstr "Genereer een Google Meet-link" #: frontend/src/components/CourseCardOverlay.vue:89 msgid "Get Certificate" -msgstr "" +msgstr "Krijg Certificaat" #: frontend/src/components/CertificationLinks.vue:34 #: frontend/src/components/CertificationLinks.vue:50 #: frontend/src/components/CourseCard.vue:126 #: frontend/src/pages/CertifiedParticipants.vue:11 msgid "Get Certified" -msgstr "" +msgstr "Behaal het certificaat" #: lms/templates/onboarding_header.html:8 msgid "Get Started" -msgstr "" +msgstr "Aan de slag" #: frontend/src/components/InstallPrompt.vue:9 msgid "Get the app on your device for easy access & a better experience!" -msgstr "" +msgstr "Download de app op uw apparaat voor eenvoudige toegang en een betere ervaring!" #: frontend/src/components/InstallPrompt.vue:46 msgid "Get the app on your iPhone for easy access & a better experience" -msgstr "" +msgstr "Download de app op uw iPhone voor eenvoudige toegang en een betere ervaring" #: frontend/src/components/Modals/EditProfile.vue:82 msgid "GitHub ID" -msgstr "" +msgstr "GitHub ID" #. Label of the github (Data) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Github ID" -msgstr "" +msgstr "Github ID" #. Label of the google_meet_link (Data) field in DocType 'LMS Certificate #. Request' #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json msgid "Google Meet Link" -msgstr "" +msgstr "Google Meet link" #. Label of the grade (Data) field in DocType 'Education Detail' #: frontend/src/components/Assignment.vue:164 #: lms/lms/doctype/education_detail/education_detail.json msgid "Grade" -msgstr "" +msgstr "Graad" #. Label of the grade_assignment (Check) field in DocType 'LMS Assignment' #: lms/lms/doctype/lms_assignment/lms_assignment.json msgid "Grade Assignment" -msgstr "" +msgstr "Cijfertoekenning" #. Label of the grade_type (Select) field in DocType 'Education Detail' #: lms/lms/doctype/education_detail/education_detail.json msgid "Grade Type" -msgstr "" +msgstr "Beoordelingstype" #: frontend/src/components/Assignment.vue:159 msgid "Grading" -msgstr "" +msgstr "Beoordeling" #: frontend/src/components/Settings/BadgeForm.vue:46 #: frontend/src/components/Settings/Badges.vue:235 msgid "Grant Only Once" -msgstr "" +msgstr "Slechts eenmaal toekennen" #. Label of the grant_only_once (Check) field in DocType 'LMS Badge' #: lms/lms/doctype/lms_badge/lms_badge.json msgid "Grant only once" -msgstr "" +msgstr "Slechts eenmaal toekennen" #. Option for the 'Color' (Select) field in DocType 'LMS Course' #: lms/lms/doctype/lms_course/lms_course.json msgid "Gray" -msgstr "" +msgstr "Grijs" #. Option for the 'Color' (Select) field in DocType 'LMS Course' #. Option for the 'Color' (Select) field in DocType 'LMS Lesson Note' #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json msgid "Green" -msgstr "" +msgstr "Groen" #: lms/templates/signup-form.html:56 msgid "Have an account? Login" -msgstr "" +msgstr "Bestaande account? Aanmelden" #. Label of the headline (Data) field in DocType 'User' #: frontend/src/components/Modals/EditProfile.vue:76 #: lms/fixtures/custom_field.json msgid "Headline" -msgstr "" +msgstr "Kop" #: lms/lms/widgets/HelloWorld.html:13 msgid "Hello" -msgstr "" +msgstr "Hallo" #: lms/templates/emails/published_batch_notification.html:4 #: lms/templates/emails/published_course_notification.html:4 msgid "Hello Learner" -msgstr "" +msgstr "Hallo student" #: frontend/src/components/Sidebar/AppSidebar.vue:141 msgid "Help" -msgstr "" +msgstr "Help" #: lms/templates/courses_created.html:15 msgid "Help others learn something new by creating a course." -msgstr "" +msgstr "Help anderen iets nieuws te leren door een cursus te maken." #: frontend/src/components/BatchFeedback.vue:15 msgid "Help us improve by providing your feedback." -msgstr "" +msgstr "Help ons te verbeteren door uw feedback te geven." #: frontend/src/pages/PersonaForm.vue:16 msgid "Help us understand your needs" -msgstr "" +msgstr "Help ons uw behoeften te begrijpen" #: lms/templates/emails/published_batch_notification.html:7 #: lms/templates/emails/published_course_notification.html:7 msgid "Here are the details:" -msgstr "" +msgstr "Hier zijn de details:" #: frontend/src/pages/Home/Home.vue:11 msgid "Hey" -msgstr "" +msgstr "Hoi" #: lms/lms/notification/certificate_request_reminder/certificate_request_reminder.html:1 #: lms/templates/emails/certificate_request_notification.html:1 msgid "Hey {0}" -msgstr "" +msgstr "Hoi {0}" #: lms/templates/emails/job_report.html:3 msgid "Hey," -msgstr "" +msgstr "Hoi," #: lms/templates/emails/payment_reminder.html:2 msgid "Hi" -msgstr "" +msgstr "Hoi" #: lms/templates/emails/lms_course_interest.html:3 msgid "Hi {0}," -msgstr "" +msgstr "Hoi {0}," #: lms/templates/emails/lms_invite_request_approved.html:3 msgid "Hi," -msgstr "" +msgstr "Hoi," #. Label of the hide_private (Check) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Hide my Private Information from others" -msgstr "" +msgstr "Mijn privégegevens voor anderen verbergen" #: frontend/src/components/Notes/InlineLessonMenu.vue:12 msgid "Highlight" -msgstr "" +msgstr "Markeer" #. Label of the highlighted_text (Small Text) field in DocType 'LMS Lesson #. Note' #: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json msgid "Highlighted Text" -msgstr "" +msgstr "Gemarkeerde tekst" #. Option for the 'Open to' (Select) field in DocType 'User' #: frontend/src/components/UserAvatar.vue:18 #: frontend/src/pages/CertifiedParticipants.vue:52 #: frontend/src/pages/Profile.vue:70 lms/fixtures/custom_field.json msgid "Hiring" -msgstr "" +msgstr "Op zoek naar" #: frontend/src/pages/Home/Home.vue:5 frontend/src/pages/Home/Home.vue:154 msgid "Home" -msgstr "" +msgstr "Thuis" #. Label of the host (Link) field in DocType 'LMS Live Class' #: lms/lms/doctype/lms_live_class/lms_live_class.json msgid "Host" -msgstr "" +msgstr "Host" #. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity' #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Hybrid" -msgstr "" +msgstr "Hybride" #. Label of the current (Check) field in DocType 'Work Experience' #: lms/lms/doctype/work_experience/work_experience.json msgid "I am currently working here" -msgstr "" +msgstr "Ik werk hier momenteel" #: lms/templates/emails/certification.html:6 msgid "I am delighted to inform you that you have successfully earned your certification for the {0} course. Congratulations!" -msgstr "" +msgstr "Het verheugt mij u te kunnen meedelen dat u met succes uw certificering voor de cursus {0} hebt behaald. Gefeliciteerd!" #: frontend/src/pages/ProfileEvaluator.vue:101 msgid "I am unavailable" -msgstr "" +msgstr "Ik ben niet beschikbaar" #: frontend/src/pages/Billing.vue:181 msgid "I consent to my personal information being stored for invoicing" -msgstr "" +msgstr "Ik geef toestemming dat mijn persoonlijke gegevens worden opgeslagen voor facturering" #: frontend/src/pages/QuizForm.vue:338 msgid "ID" -msgstr "" +msgstr "ID" #. Label of the icon (Data) field in DocType 'LMS Sidebar Item' #: frontend/src/components/Modals/PageModal.vue:28 @@ -3135,44 +3135,44 @@ msgstr "Icoon" #. Label of the user_category (Check) field in DocType 'LMS Settings' #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Identify User Category" -msgstr "" +msgstr "Identificeer gebruikerscategorie" #: frontend/src/components/LessonHelp.vue:11 msgid "If Include in Preview is enabled for a lesson then the lesson will also be accessible to non logged in users." -msgstr "" +msgstr "Als 'Inclusief voorbeeld' is ingeschakeld voor een les, is de les ook toegankelijk voor gebruikers die niet zijn ingelogd." #: frontend/src/components/Quiz.vue:46 msgid "If you answer incorrectly, {0} {1} will be deducted from your score for each incorrect answer." -msgstr "" +msgstr "Als u een fout antwoord geeft, wordt {0} {1} van uw score afgetrokken voor elk fout antwoord." #: lms/templates/emails/mentor_request_creation_email.html:5 msgid "If you are not any more interested to mentor the course" -msgstr "" +msgstr "Als u geen interesse meer hebt om de cursus te begeleiden" #: frontend/src/components/Quiz.vue:23 msgid "If you fail to do so, the quiz will be automatically submitted when the timer ends." -msgstr "" +msgstr "Als u dit niet doet, wordt de test automatisch ingestuurd als de timer afloopt." #: lms/templates/emails/payment_reminder.html:19 msgid "If you have any questions or need assistance, feel free to reach out to our support team." -msgstr "" +msgstr "Als u vragen heeft of hulp nodig heeft, kunt u gerust contact opnemen met ons supportteam." #: lms/templates/emails/batch_confirmation.html:29 #: lms/templates/emails/batch_start_reminder.html:27 #: lms/templates/emails/live_class_reminder.html:24 msgid "If you have any questions or require assistance, feel free to contact us." -msgstr "" +msgstr "Als u vragen hebt of hulp nodig hebt, neem dan gerust contact met ons op." #. Description of the 'Amount (USD)' (Currency) field in DocType 'LMS Batch' #. Description of the 'Amount (USD)' (Currency) field in DocType 'LMS Course' #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_course/lms_course.json msgid "If you set an amount here, then the USD equivalent setting will not get applied." -msgstr "" +msgstr "Als u hier een bedrag instelt, dan wordt de instelling voor het equivalent in USD niet toegepast." #: lms/lms/doctype/lms_quiz/lms_quiz.py:67 msgid "If you want open ended questions then make sure each question in the quiz is of open ended type." -msgstr "" +msgstr "Als u open vragen wilt, zorg er dan voor dat elke vraag in de test een open vraag is." #. Option for the 'File Type' (Select) field in DocType 'Course Lesson' #. Option for the 'Type' (Select) field in DocType 'LMS Assignment' @@ -3183,33 +3183,33 @@ msgstr "" #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_badge/lms_badge.json msgid "Image" -msgstr "" +msgstr "Afbeelding" #: frontend/src/components/Modals/EditCoverImage.vue:58 #: frontend/src/components/UnsplashImageBrowser.vue:52 msgid "Image search powered by" -msgstr "" +msgstr "Afbeelding zoeken mogelijk door" #: lms/lms/doctype/lms_quiz/lms_quiz.py:231 msgid "Image: Corrupted Data Stream" -msgstr "" +msgstr "Afbeelding: beschadigde gegevensstroom" #: frontend/src/components/Sidebar/Configuration.vue:17 msgid "Import" -msgstr "" +msgstr "Importeren" #: frontend/src/pages/Batches.vue:20 msgid "Import Batch" -msgstr "" +msgstr "Importeer batch" #: frontend/src/pages/Courses.vue:23 msgid "Import Course" -msgstr "" +msgstr "Importeer Cursus" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' #. Option for the 'Status' (Select) field in DocType 'LMS Course' -#: frontend/src/components/Modals/Event.vue:388 +#: frontend/src/components/Modals/Event.vue:404 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_course/lms_course.json msgid "In Progress" @@ -3221,26 +3221,26 @@ msgstr "Bezig" #. DocType 'LMS Settings' #: lms/lms/doctype/lms_settings/lms_settings.json msgid "In-app" -msgstr "" +msgstr "In-app" #. Label of the include_in_preview (Check) field in DocType 'Course Lesson' #: lms/lms/doctype/course_lesson/course_lesson.json msgid "Include In Preview" -msgstr "" +msgstr "In voorbeeld opnemen" #. Option for the 'Status' (Select) field in DocType 'LMS Course Progress' #: lms/lms/doctype/lms_course_progress/lms_course_progress.json msgid "Incomplete" -msgstr "" +msgstr "Incompleet" #: frontend/src/components/Quiz.vue:194 msgid "Incorrect" -msgstr "" +msgstr "Onjuist" #. Option for the 'Collaboration Preference' (Select) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Individual Work" -msgstr "" +msgstr "Individueel werk" #. Name of a DocType #. Label of the industry (Data) field in DocType 'Industry' @@ -3248,7 +3248,7 @@ msgstr "" #: lms/lms/doctype/industry/industry.json #: lms/lms/doctype/preferred_industry/preferred_industry.json msgid "Industry" -msgstr "" +msgstr "Industrie" #. Label of the input (Data) field in DocType 'LMS Test Case' #. Label of the input (Data) field in DocType 'LMS Test Case Submission' @@ -3256,39 +3256,39 @@ msgstr "" #: lms/lms/doctype/lms_test_case/lms_test_case.json #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json msgid "Input" -msgstr "" +msgstr "Invoer" #: frontend/src/components/InstallPrompt.vue:18 msgid "Install" -msgstr "" +msgstr "Installeer" #: frontend/src/components/InstallPrompt.vue:4 #: frontend/src/components/InstallPrompt.vue:32 msgid "Install Frappe Learning" -msgstr "" +msgstr "Installeer Frappe Learning" #. Label of the institution_name (Data) field in DocType 'Education Detail' #: lms/lms/doctype/education_detail/education_detail.json msgid "Institution Name" -msgstr "" +msgstr "Naam instelling" #. Label of the instructor (Link) field in DocType 'Course Instructor' #: frontend/src/pages/Home/Home.vue:149 #: lms/lms/doctype/course_instructor/course_instructor.json msgid "Instructor" -msgstr "" +msgstr "Instructeur" #. Label of the instructor_content (Text) field in DocType 'Course Lesson' #: lms/lms/doctype/course_lesson/course_lesson.json msgid "Instructor Content" -msgstr "" +msgstr "Inhoud instructeur" #. Label of the instructor_notes (Markdown Editor) field in DocType 'Course #. Lesson' #: frontend/src/pages/Lesson.vue:233 frontend/src/pages/LessonForm.vue:42 #: lms/lms/doctype/course_lesson/course_lesson.json msgid "Instructor Notes" -msgstr "" +msgstr "Inhoud instructeur" #. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch' #. Label of the instructors (Rating) field in DocType 'LMS Batch Feedback' @@ -3298,33 +3298,33 @@ msgstr "" #: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json #: lms/lms/doctype/lms_course/lms_course.json msgid "Instructors" -msgstr "" +msgstr "Cursusleiders" #: lms/templates/assignment.html:17 msgid "Instructors Comments" -msgstr "" +msgstr "Commentaar cursusleiders" #. Label of a Link in the LMS Workspace #: lms/lms/workspace/lms/lms.json msgid "Interest" -msgstr "" +msgstr "Interesse" #: frontend/src/components/Sidebar/AppSidebar.vue:512 #: frontend/src/components/Sidebar/AppSidebar.vue:515 msgid "Introduction" -msgstr "" +msgstr "Introductie" #: lms/lms/doctype/course_lesson/course_lesson.py:23 msgid "Invalid Quiz ID" -msgstr "" +msgstr "Ongeldige quiz-ID" #: lms/lms/doctype/course_lesson/course_lesson.py:37 msgid "Invalid Quiz ID in content" -msgstr "" +msgstr "Ongeldige Quiz ID in de inhoud" #: frontend/src/components/Sidebar/AppSidebar.vue:446 msgid "Invite your team and students" -msgstr "" +msgstr "Nodig uw team en leerlingen uit" #. Label of the is_correct (Check) field in DocType 'LMS Option' #. Label of the is_correct_1 (Check) field in DocType 'LMS Question' @@ -3336,32 +3336,32 @@ msgstr "" #: lms/lms/doctype/lms_question/lms_question.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json msgid "Is Correct" -msgstr "" +msgstr "Is correct" #. Label of the is_scorm_chapter (Check) field in DocType 'LMS Course Progress' #: lms/lms/doctype/lms_course_progress/lms_course_progress.json msgid "Is SCORM Chapter" -msgstr "" +msgstr "Is SCORM Hoofdstuk" #. Label of the is_scorm_package (Check) field in DocType 'Course Chapter' #. Label of the is_scorm_package (Check) field in DocType 'Course Lesson' #: lms/lms/doctype/course_chapter/course_chapter.json #: lms/lms/doctype/course_lesson/course_lesson.json msgid "Is SCORM Package" -msgstr "" +msgstr "Is SCORM-pakket" #. Label of the issue_date (Date) field in DocType 'Certification' #. Label of the issue_date (Date) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:28 -#: frontend/src/components/Modals/Event.vue:138 +#: frontend/src/components/Modals/Event.vue:144 #: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Issue Date" -msgstr "" +msgstr "Uitgiftedatum" #: frontend/src/components/Sidebar/AppSidebar.vue:553 msgid "Issue a Certificate" -msgstr "" +msgstr "Geef een certificaat uit" #. Label of the issued_on (Date) field in DocType 'LMS Badge Assignment' #: frontend/src/components/Settings/BadgeAssignmentForm.vue:37 @@ -3369,65 +3369,65 @@ msgstr "" #: frontend/src/pages/CourseCertification.vue:27 #: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json msgid "Issued On" -msgstr "" +msgstr "Uitgegeven op" #: frontend/src/pages/ProfileAbout.vue:75 #: frontend/src/pages/ProfileCertificates.vue:20 #: lms/templates/certificates_section.html:11 msgid "Issued on" -msgstr "" +msgstr "Uitgegeven op" #. Label of the items_in_sidebar_section (Section Break) field in DocType 'LMS #. Settings' #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Items in Sidebar" -msgstr "" +msgstr "Items in de zijbalk" #: lms/templates/signup-form.html:6 msgid "Jane Doe" -msgstr "" +msgstr "Jane Doe" #. Option for the 'Language' (Select) field in DocType 'LMS Programming #. Exercise' #: lms/lms/doctype/lms_programming_exercise/lms_programming_exercise.json msgid "JavaScript" -msgstr "" +msgstr "JavaScript" #. Label of the job (Link) field in DocType 'LMS Job Application' #: frontend/src/pages/Search/Search.vue:237 #: lms/job/doctype/lms_job_application/lms_job_application.json msgid "Job" -msgstr "" +msgstr "Taak" #. Label of the subtitle (Data) field in DocType 'Job Settings' #: lms/job/doctype/job_settings/job_settings.json msgid "Job Board Subtitle" -msgstr "" +msgstr "Vacaturebank Ondertitel" #. Label of the title (Data) field in DocType 'Job Settings' #: lms/job/doctype/job_settings/job_settings.json msgid "Job Board Title" -msgstr "" +msgstr "Titel vacaturebank" #: frontend/src/pages/JobForm.vue:14 msgid "Job Details" -msgstr "" +msgstr "Job Details" #: lms/www/lms.py:175 msgid "Job Openings" -msgstr "" +msgstr "Vacatures" #. Name of a DocType #. Title of the job-opportunity Web Form #: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/web_form/job_opportunity/job_opportunity.json msgid "Job Opportunity" -msgstr "" +msgstr "Vacature" #. Name of a DocType #: lms/job/doctype/job_settings/job_settings.json msgid "Job Settings" -msgstr "" +msgstr "Functie-instellingen" #. Label of the job_title (Data) field in DocType 'Job Opportunity' #. Label of the job_title (Data) field in DocType 'LMS Job Application' @@ -3436,83 +3436,83 @@ msgstr "" #: lms/job/doctype/lms_job_application/lms_job_application.json #: lms/job/web_form/job_opportunity/job_opportunity.json msgid "Job Title" -msgstr "" +msgstr "Functie titel" #. Label of the jobs (Check) field in DocType 'LMS Settings' #: frontend/src/pages/JobApplications.vue:9 frontend/src/pages/JobDetail.vue:10 #: frontend/src/pages/Jobs.vue:8 frontend/src/pages/Jobs.vue:293 #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Jobs" -msgstr "" +msgstr "Banen" #: frontend/src/components/LiveClass.vue:81 #: frontend/src/pages/Home/AdminHome.vue:175 #: frontend/src/pages/Home/StudentHome.vue:118 #: lms/templates/upcoming_evals.html:15 msgid "Join" -msgstr "" +msgstr "Meedoen" #: frontend/src/components/UpcomingEvaluations.vue:110 msgid "Join Call" -msgstr "" +msgstr "Doe mee aan de oproep" -#: frontend/src/components/Modals/Event.vue:78 +#: frontend/src/components/Modals/Event.vue:84 msgid "Join Meeting" -msgstr "" +msgstr "Deelnemen aan vergadering" #. Label of the join_url (Small Text) field in DocType 'LMS Live Class' #: lms/lms/doctype/lms_live_class/lms_live_class.json msgid "Join URL" -msgstr "" +msgstr "Deelnemen via URL" #. Label of the joined_at (Datetime) field in DocType 'LMS Live Class #. Participant' #: lms/lms/doctype/lms_live_class_participant/lms_live_class_participant.json msgid "Joined At" -msgstr "" +msgstr "Aangemeld op" #: frontend/src/components/Modals/LiveClassAttendance.vue:18 msgid "Joined at" -msgstr "" +msgstr "Aangemeld op" #: frontend/src/components/CommandPalette/CommandPalette.vue:132 #: frontend/src/components/CommandPalette/CommandPalette.vue:229 msgid "Jump to" -msgstr "" +msgstr "Spring naar" #: frontend/src/pages/Home/Streak.vue:18 msgid "Keep going," -msgstr "" +msgstr "Blijf doorgaan," #. Name of a Workspace #: lms/lms/workspace/lms/lms.json msgid "LMS" -msgstr "" +msgstr "LMS" #. Name of a DocType #: lms/lms/doctype/lms_assessment/lms_assessment.json msgid "LMS Assessment" -msgstr "" +msgstr "LMS Beoordeling" #. Name of a DocType #: lms/lms/doctype/lms_assignment/lms_assignment.json msgid "LMS Assignment" -msgstr "" +msgstr "LMS Opdracht" #. Name of a DocType #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json msgid "LMS Assignment Submission" -msgstr "" +msgstr "LMS-opdracht indiening" #. Name of a DocType #: lms/lms/doctype/lms_badge/lms_badge.json msgid "LMS Badge" -msgstr "" +msgstr "LMS Badge" #. Name of a DocType #: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json msgid "LMS Badge Assignment" -msgstr "" +msgstr "LMS Badge Toewijzing" #. Name of a DocType #. Option for the 'Reference DocType' (Select) field in DocType 'LMS Coupon @@ -3523,52 +3523,52 @@ msgstr "" #: lms/lms/doctype/lms_coupon_item/lms_coupon_item.json #: lms/lms/doctype/lms_payment/lms_payment.json msgid "LMS Batch" -msgstr "" +msgstr "LMS Batch" #. Name of a DocType #: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json msgid "LMS Batch Enrollment" -msgstr "" +msgstr "LMS-batchinschrijving" #. Name of a DocType #: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json msgid "LMS Batch Feedback" -msgstr "" +msgstr "LMS Batch Terugkoppeling" #. Name of a DocType #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json msgid "LMS Batch Timetable" -msgstr "" +msgstr "LMS Batch Tijdtabel" #. Name of a DocType #: lms/lms/doctype/lms_category/lms_category.json msgid "LMS Category" -msgstr "" +msgstr "LMS Categorie" #. Name of a DocType #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "LMS Certificate" -msgstr "" +msgstr "LMS Certificaat" #. Name of a DocType #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "LMS Certificate Evaluation" -msgstr "" +msgstr "LMS Certificaat Beoordeling" #. Name of a DocType #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json msgid "LMS Certificate Request" -msgstr "" +msgstr "LMS Certificaat Aanvraag" #. Name of a DocType #: lms/lms/doctype/lms_coupon/lms_coupon.json msgid "LMS Coupon" -msgstr "" +msgstr "LMS Coupon" #. Name of a DocType #: lms/lms/doctype/lms_coupon_item/lms_coupon_item.json msgid "LMS Coupon Item" -msgstr "" +msgstr "LMS Coupon item" #. Option for the 'Reference DocType' (Select) field in DocType 'LMS Coupon #. Item' @@ -3579,132 +3579,132 @@ msgstr "" #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_payment/lms_payment.json msgid "LMS Course" -msgstr "" +msgstr "LMS Cursus" #. Name of a DocType #: lms/lms/doctype/lms_course_interest/lms_course_interest.json msgid "LMS Course Interest" -msgstr "" +msgstr "LMS cursus interesse" #. Name of a DocType #: lms/lms/doctype/lms_course_mentor_mapping/lms_course_mentor_mapping.json msgid "LMS Course Mentor Mapping" -msgstr "" +msgstr "LMS Cursus Mentor Mapping" #. Name of a DocType #: lms/lms/doctype/lms_course_progress/lms_course_progress.json msgid "LMS Course Progress" -msgstr "" +msgstr "LMS Cursusvoortgang" #. Name of a DocType #: lms/lms/doctype/lms_course_review/lms_course_review.json msgid "LMS Course Review" -msgstr "" +msgstr "Beoordeling cursus LMS" #. Name of a DocType #: lms/lms/doctype/lms_enrollment/lms_enrollment.json msgid "LMS Enrollment" -msgstr "" +msgstr "LMS inschrijving" #. Name of a DocType #: lms/job/doctype/lms_job_application/lms_job_application.json msgid "LMS Job Application" -msgstr "" +msgstr "LMS Job applicatie" #. Name of a DocType #: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json msgid "LMS Lesson Note" -msgstr "" +msgstr "Lesnotitie voor LMS" #. Name of a DocType #: lms/lms/doctype/lms_live_class/lms_live_class.json msgid "LMS Live Class" -msgstr "" +msgstr "LMS Live Class" #. Name of a DocType #: lms/lms/doctype/lms_live_class_participant/lms_live_class_participant.json msgid "LMS Live Class Participant" -msgstr "" +msgstr "Deelnemer aan de LMS Live Class" #. Name of a DocType #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json msgid "LMS Mentor Request" -msgstr "" +msgstr "LMS Mentor Verzoek" #. Name of a DocType #: lms/lms/doctype/lms_option/lms_option.json msgid "LMS Option" -msgstr "" +msgstr "LMS Optie" #. Name of a DocType #: lms/lms/doctype/lms_payment/lms_payment.json msgid "LMS Payment" -msgstr "" +msgstr "LMS Betaling" #. Name of a DocType #: lms/lms/doctype/lms_program/lms_program.json msgid "LMS Program" -msgstr "" +msgstr "LMS Programma" #. Name of a DocType #: lms/lms/doctype/lms_program_course/lms_program_course.json msgid "LMS Program Course" -msgstr "" +msgstr "LMS Programma Cursus" #. Name of a DocType #: lms/lms/doctype/lms_program_member/lms_program_member.json msgid "LMS Program Member" -msgstr "" +msgstr "LMS Programma Lid" #. Name of a DocType #: lms/lms/doctype/lms_programming_exercise/lms_programming_exercise.json msgid "LMS Programming Exercise" -msgstr "" +msgstr "LMS Programmer-oefening" #. Name of a DocType #: lms/lms/doctype/lms_programming_exercise_submission/lms_programming_exercise_submission.json msgid "LMS Programming Exercise Submission" -msgstr "" +msgstr "Inzending LMS-programmeeroefening" #. Name of a DocType #: lms/lms/doctype/lms_question/lms_question.json msgid "LMS Question" -msgstr "" +msgstr "LMS Vraag" #. Name of a DocType #: lms/lms/doctype/lms_quiz/lms_quiz.json msgid "LMS Quiz" -msgstr "" +msgstr "LMS Quiz" #. Name of a DocType #: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json msgid "LMS Quiz Question" -msgstr "" +msgstr "LMS Quiz Vraag" #. Name of a DocType #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json msgid "LMS Quiz Result" -msgstr "" +msgstr "LMS Quiz Resultaat" #. Name of a DocType #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json msgid "LMS Quiz Submission" -msgstr "" +msgstr "LMS Quiz Inzending" #. Name of a DocType #: lms/lms/doctype/lms_settings/lms_settings.json msgid "LMS Settings" -msgstr "" +msgstr "LMS-instellingen" #. Name of a DocType #: lms/lms/doctype/lms_sidebar_item/lms_sidebar_item.json msgid "LMS Sidebar Item" -msgstr "" +msgstr "LMS Zijbalk Item" #. Name of a DocType #: lms/lms/doctype/lms_source/lms_source.json msgid "LMS Source" -msgstr "" +msgstr "LMS bron" #. Name of a role #: lms/job/doctype/job_opportunity/job_opportunity.json @@ -3735,12 +3735,12 @@ msgstr "" #: lms/lms/doctype/lms_video_watch_duration/lms_video_watch_duration.json #: lms/lms/doctype/user_skill/user_skill.json msgid "LMS Student" -msgstr "" +msgstr "LMS Student" #. Name of a DocType #: lms/lms/doctype/lms_test_case/lms_test_case.json msgid "LMS Test Case" -msgstr "" +msgstr "LMS Test Case" #. Name of a DocType #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json @@ -3750,27 +3750,27 @@ msgstr "" #. Name of a DocType #: lms/lms/doctype/lms_timetable_legend/lms_timetable_legend.json msgid "LMS Timetable Legend" -msgstr "" +msgstr "LMS Timetable Legenda" #. Name of a DocType #: lms/lms/doctype/lms_timetable_template/lms_timetable_template.json msgid "LMS Timetable Template" -msgstr "" +msgstr "LMS Tijdschema Sjabloon" #. Name of a DocType #: lms/lms/doctype/lms_video_watch_duration/lms_video_watch_duration.json msgid "LMS Video Watch Duration" -msgstr "" +msgstr "LMS Video kijkduur" #. Name of a DocType #: lms/lms/doctype/lms_zoom_settings/lms_zoom_settings.json msgid "LMS Zoom Settings" -msgstr "" +msgstr "LMS Zoom Instellingen" #. Label of the label (Data) field in DocType 'LMS Timetable Legend' #: lms/lms/doctype/lms_timetable_legend/lms_timetable_legend.json msgid "Label" -msgstr "" +msgstr "Label" #. Label of the language (Select) field in DocType 'LMS Programming Exercise' #: frontend/src/components/Modals/EditProfile.vue:98 @@ -3778,7 +3778,7 @@ msgstr "" #: frontend/src/pages/ProgrammingExercises/ProgrammingExercises.vue:275 #: lms/lms/doctype/lms_programming_exercise/lms_programming_exercise.json msgid "Language" -msgstr "" +msgstr "Taal" #: frontend/src/components/Modals/EditProfile.vue:74 msgid "Last Name" @@ -3787,25 +3787,25 @@ msgstr "Achternaam" #. Label of the launch_file (Code) field in DocType 'Course Chapter' #: lms/lms/doctype/course_chapter/course_chapter.json msgid "Launch File" -msgstr "" +msgstr "Bestand starten" #: frontend/src/pages/Home/Streak.vue:5 msgid "Learning Consistency" -msgstr "" +msgstr "Consistentie in leren" #: frontend/src/components/Sidebar/AppSidebar.vue:537 msgid "Learning Paths" -msgstr "" +msgstr "Leertrajecten" #. Label of the left_at (Datetime) field in DocType 'LMS Live Class #. Participant' #: lms/lms/doctype/lms_live_class_participant/lms_live_class_participant.json msgid "Left At" -msgstr "" +msgstr "Achtergelaten bij" #: frontend/src/components/Modals/LiveClassAttendance.vue:21 msgid "Left at" -msgstr "" +msgstr "Achtergelaten bij" #. Label of the lesson (Link) field in DocType 'Lesson Reference' #. Label of the lesson (Link) field in DocType 'LMS Assignment Submission' @@ -3824,33 +3824,33 @@ msgstr "" #: lms/lms/doctype/scheduled_flow/scheduled_flow.json #: lms/lms/workspace/lms/lms.json msgid "Lesson" -msgstr "" +msgstr "Les" #. Name of a DocType #: lms/lms/doctype/lesson_reference/lesson_reference.json msgid "Lesson Reference" -msgstr "" +msgstr "Lesreferentie" #. Label of the lesson_title (Data) field in DocType 'Scheduled Flow' #: lms/lms/doctype/scheduled_flow/scheduled_flow.json msgid "Lesson Title" -msgstr "" +msgstr "Lestitel" #: frontend/src/pages/LessonForm.vue:423 msgid "Lesson created successfully" -msgstr "" +msgstr "Les succesvol aangemaakt" #: frontend/src/components/CourseOutline.vue:253 msgid "Lesson deleted successfully" -msgstr "" +msgstr "Les succesvol verwijderd" #: frontend/src/components/CourseOutline.vue:268 msgid "Lesson moved successfully" -msgstr "" +msgstr "Les met succes verplaatst" #: frontend/src/pages/LessonForm.vue:447 msgid "Lesson updated successfully" -msgstr "" +msgstr "Les succesvol bijgewerkt" #. Label of the lessons (Table) field in DocType 'Course Chapter' #. Group in Course Chapter's connections @@ -3861,44 +3861,44 @@ msgstr "" #: lms/lms/doctype/course_chapter/course_chapter.json #: lms/lms/doctype/lms_course/lms_course.json msgid "Lessons" -msgstr "" +msgstr "Lessen" #: lms/lms/web_template/lms_statistics/lms_statistics.html:14 #: lms/templates/statistics.html:36 msgid "Lessons Completed" -msgstr "" +msgstr "Lessen voltooid" #: lms/templates/onboarding_header.html:11 msgid "Lets start setting up your content on the LMS so that you can reclaim time and focus on growth." -msgstr "" +msgstr "Laten we beginnen met het instellen van uw inhoud op het LMS, zodat u tijd kunt terugwinnen en u kunt richten op groei." #. Option for the 'Grade Type' (Select) field in DocType 'Education Detail' #: lms/lms/doctype/education_detail/education_detail.json msgid "Letter Grade (e.g. A, B-)" -msgstr "" +msgstr "Lettercijfer (bijv. A, B-)" #. Label of the limit_questions_to (Int) field in DocType 'LMS Quiz' #: frontend/src/pages/QuizForm.vue:110 lms/lms/doctype/lms_quiz/lms_quiz.json msgid "Limit Questions To" -msgstr "" +msgstr "Beperk Vragen Tot" #: lms/lms/doctype/lms_quiz/lms_quiz.py:40 msgid "Limit cannot be greater than or equal to the number of questions in the quiz." -msgstr "" +msgstr "Limiet kan niet groter zijn dan of gelijk zijn aan het aantal vragen in de quiz." #: frontend/src/pages/ProfileAbout.vue:93 msgid "LinkedIn" -msgstr "" +msgstr "LinkedIn" #. Label of the linkedin (Data) field in DocType 'User' #: frontend/src/components/Modals/EditProfile.vue:80 #: lms/fixtures/custom_field.json msgid "LinkedIn ID" -msgstr "" +msgstr "LinkedIn" -#: frontend/src/pages/Courses.vue:341 +#: frontend/src/pages/Courses.vue:340 msgid "Live" -msgstr "" +msgstr "Live" #. Label of the live_class (Link) field in DocType 'LMS Live Class Participant' #. Label of the show_live_class (Check) field in DocType 'LMS Settings' @@ -3906,12 +3906,12 @@ msgstr "" #: lms/lms/doctype/lms_live_class_participant/lms_live_class_participant.json #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Live Class" -msgstr "" +msgstr "Live les" #. Label of the livecode_url (Data) field in DocType 'LMS Settings' #: lms/lms/doctype/lms_settings/lms_settings.json msgid "LiveCode URL" -msgstr "" +msgstr "LiveCode URL" #: frontend/src/components/BatchStudents.vue:93 #: frontend/src/components/Modals/CourseProgressSummary.vue:86 @@ -3932,7 +3932,7 @@ 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 msgid "Local" -msgstr "" +msgstr "Lokaal" #. Label of a field in the job-opportunity Web Form #. Label of the location (Data) field in DocType 'Education Detail' @@ -3941,78 +3941,78 @@ msgstr "" #: lms/lms/doctype/education_detail/education_detail.json #: lms/lms/doctype/work_experience/work_experience.json msgid "Location" -msgstr "" +msgstr "Locatie" #. Label of the location_preference (Select) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Location Preference" -msgstr "" +msgstr "Locatievoorkeur" #: frontend/src/components/NoPermission.vue:26 #: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:200 #: frontend/src/pages/Lesson.vue:103 msgid "Login" -msgstr "" +msgstr "Inloggen" #: frontend/src/components/Sidebar/UserDropdown.vue:190 msgid "Login to Frappe Cloud?" -msgstr "" +msgstr "Inloggen bij Frappe Cloud?" #: frontend/src/pages/JobDetail.vue:74 msgid "Login to apply" -msgstr "" +msgstr "Log in om te solliciteren" #: frontend/src/pages/Home/Streak.vue:42 msgid "Longest Streak" -msgstr "" +msgstr "Langste reeks" #: frontend/src/components/Modals/EditProfile.vue:95 msgid "Looking for new work or hiring talent?" -msgstr "" +msgstr "Op zoek naar een nieuwe baan of wilt u talent aannemen?" #: lms/templates/emails/payment_reminder.html:23 msgid "Looking forward to seeing you enrolled!" -msgstr "" +msgstr "We kijken ernaar uit je ingeschreven te zien!" #. Label of the default_home (Check) field in DocType 'LMS Settings' #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Make LMS the default home" -msgstr "" +msgstr "Maak LMS de standaard startpagina" #: frontend/src/components/Modals/AnnouncementModal.vue:5 #: frontend/src/pages/Batch.vue:16 msgid "Make an Announcement" -msgstr "" +msgstr "Maak een mededeling" #: frontend/src/components/Notes/Notes.vue:7 msgid "Make notes for quick revision. Press / for menu." -msgstr "" +msgstr "Maak notities voor een korte revisie en druk op / voor het menu." #: frontend/src/components/BatchOverlay.vue:73 msgid "Manage Batch" -msgstr "" +msgstr "Batch beheren" #: frontend/src/pages/Home/Home.vue:120 msgid "Manage your courses and batches at a glance" -msgstr "" +msgstr "Beheer uw cursussen en batches in één oogopslag" #. Option for the 'User Category' (Select) field in DocType 'User' #: lms/fixtures/custom_field.json lms/templates/signup-form.html:24 msgid "Manager (Sales/Marketing/Customer)" -msgstr "" +msgstr "Manager (Verkoop/Marketing/Klant)" #. Label of the manifest_file (Code) field in DocType 'Course Chapter' #: lms/lms/doctype/course_chapter/course_chapter.json msgid "Manifest File" -msgstr "" +msgstr "Manifest bestand" #: frontend/src/components/Quiz.vue:120 msgid "Mark" -msgstr "" +msgstr "Markeer" #: frontend/src/pages/Notifications.vue:12 msgid "Mark all as read" -msgstr "" +msgstr "Markeer alle berichten als gelezen" #. Label of the marks (Int) field in DocType 'LMS Quiz Question' #. Label of the marks (Int) field in DocType 'LMS Quiz Result' @@ -4023,56 +4023,56 @@ msgstr "" #: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json msgid "Marks" -msgstr "" +msgstr "Tekens" #. Label of the marks_to_cut (Int) field in DocType 'LMS Quiz' #: lms/lms/doctype/lms_quiz/lms_quiz.json msgid "Marks To Cut" -msgstr "" +msgstr "Markering om te knippen" #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:41 msgid "Marks for question number {0} cannot be greater than the marks allotted for that question." -msgstr "" +msgstr "De cijfers voor vraagnummer {0} mogen niet hoger zijn dan de cijfers die voor die vraag zijn toegekend." #. Label of the marks_out_of (Int) field in DocType 'LMS Quiz Result' #: frontend/src/pages/QuizSubmission.vue:67 #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json msgid "Marks out of" -msgstr "" +msgstr "Cijfers van de" #: frontend/src/pages/QuizForm.vue:122 msgid "Marks to Deduct" -msgstr "" +msgstr "Af te trekken punten" #. Label of the max_attempts (Int) field in DocType 'LMS Quiz' #: frontend/src/pages/Quizzes.vue:267 lms/lms/doctype/lms_quiz/lms_quiz.json msgid "Max Attempts" -msgstr "" +msgstr "Max. pogingen" #: frontend/src/pages/QuizForm.vue:62 msgid "Maximum Attempts" -msgstr "" +msgstr "Maximale Pogingen" #. Label of the medium (Select) field in DocType 'LMS Batch' #: frontend/src/pages/BatchForm.vue:194 #: lms/lms/doctype/lms_batch/lms_batch.json msgid "Medium" -msgstr "" +msgstr "Medium" #. Label of the medium (Data) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Medium ID" -msgstr "" +msgstr "Medium ID" #: lms/templates/emails/batch_confirmation.html:16 #: lms/templates/emails/batch_start_reminder.html:19 msgid "Medium:" -msgstr "" +msgstr "Medium:" #. Label of the meeting_id (Data) field in DocType 'LMS Live Class' #: lms/lms/doctype/lms_live_class/lms_live_class.json msgid "Meeting ID" -msgstr "" +msgstr "Meeting ID" #. Label of the member (Link) field in DocType 'LMS Assignment Submission' #. Label of the member (Link) field in DocType 'LMS Badge Assignment' @@ -4128,17 +4128,17 @@ msgstr "" #: lms/lms/doctype/lms_zoom_settings/lms_zoom_settings.json #: lms/lms/report/course_progress_summary/course_progress_summary.py:64 msgid "Member" -msgstr "" +msgstr "Lid" #. Label of the member_consent (Check) field in DocType 'LMS Payment' #: lms/lms/doctype/lms_payment/lms_payment.json msgid "Member Consent" -msgstr "" +msgstr "Toestemming van het lid" #. Label of the member_count (Int) field in DocType 'LMS Program' #: lms/lms/doctype/lms_program/lms_program.json msgid "Member Count" -msgstr "" +msgstr "Ledenaantal" #. Label of the member_image (Attach Image) field in DocType 'LMS Badge #. Assignment' @@ -4161,7 +4161,7 @@ msgstr "" #: lms/lms/doctype/lms_video_watch_duration/lms_video_watch_duration.json #: lms/lms/doctype/lms_zoom_settings/lms_zoom_settings.json msgid "Member Image" -msgstr "" +msgstr "Afbeelding lid" #. Label of the member_name (Data) field in DocType 'LMS Assignment Submission' #. Label of the member_name (Data) field in DocType 'LMS Badge Assignment' @@ -4198,12 +4198,12 @@ msgstr "" #: lms/lms/doctype/lms_zoom_settings/lms_zoom_settings.json #: lms/lms/report/course_progress_summary/course_progress_summary.py:71 msgid "Member Name" -msgstr "" +msgstr "Naam lid" #. Label of the member_type (Select) field in DocType 'LMS Enrollment' #: lms/lms/doctype/lms_enrollment/lms_enrollment.json msgid "Member Type" -msgstr "" +msgstr "Deelnemer type" #. Label of the member_username (Data) field in DocType 'LMS Badge Assignment' #. Label of the member_username (Data) field in DocType 'LMS Batch Enrollment' @@ -4218,49 +4218,49 @@ msgstr "" #: lms/lms/doctype/lms_live_class_participant/lms_live_class_participant.json #: lms/lms/doctype/lms_video_watch_duration/lms_video_watch_duration.json msgid "Member Username" -msgstr "" +msgstr "Gebruikersnaam lid" #: frontend/src/pages/Programs/ProgramForm.vue:467 msgid "Member added to program successfully" -msgstr "" +msgstr "Lid succesvol toegevoegd aan programma" #: frontend/src/pages/Programs/ProgramForm.vue:469 msgid "Member already added to program" -msgstr "" +msgstr "Lid al toegevoegd aan programma" #: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.py:68 msgid "Member already enrolled in this batch" -msgstr "" +msgstr "Lid is al ingeschreven in deze batch" #: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.py:64 msgid "Member does not meet the criteria for the badge {0}." -msgstr "" +msgstr "Het lid voldoet niet aan de criteria voor de badge {0}." #: lms/lms/doctype/lms_program/lms_program.py:30 msgid "Member {0} has already been added to this program." -msgstr "" +msgstr "Cursus {0} is al toegevoegd aan deze batch." #: frontend/src/pages/Programs/ProgramForm.vue:110 msgid "Members" -msgstr "" +msgstr "Leden" #. Label of the mentor (Link) field in DocType 'LMS Course Mentor Mapping' #. Option for the 'Member Type' (Select) field in DocType 'LMS Enrollment' #: lms/lms/doctype/lms_course_mentor_mapping/lms_course_mentor_mapping.json #: lms/lms/doctype/lms_enrollment/lms_enrollment.json msgid "Mentor" -msgstr "" +msgstr "Mentor" #. Label of the mentor_name (Data) field in DocType 'LMS Course Mentor Mapping' #: lms/lms/doctype/lms_course_mentor_mapping/lms_course_mentor_mapping.json msgid "Mentor Name" -msgstr "" +msgstr "Naam mentor" #. Label of the mentor_request_section (Section Break) field in DocType 'LMS #. Settings' #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Mentor Request" -msgstr "" +msgstr "Mentor Aanvraag" #. Label of the mentor_request_creation (Link) field in DocType 'LMS Settings' #: lms/lms/doctype/lms_settings/lms_settings.json @@ -4268,7 +4268,7 @@ msgstr "" #: lms/patches/create_mentor_request_email_templates.py:16 #: lms/patches/create_mentor_request_email_templates.py:26 msgid "Mentor Request Creation Template" -msgstr "" +msgstr "Sjabloon voor aanmaken van mentorverzoek" #. Label of the mentor_request_status_update (Link) field in DocType 'LMS #. Settings' @@ -4277,7 +4277,7 @@ msgstr "" #: lms/patches/create_mentor_request_email_templates.py:34 #: lms/patches/create_mentor_request_email_templates.py:44 msgid "Mentor Request Status Update Template" -msgstr "" +msgstr "Sjabloon voor statusupdate van mentorverzoek" #: frontend/src/components/ContactUsEmail.vue:19 #: frontend/src/pages/JobApplications.vue:137 @@ -4286,13 +4286,13 @@ msgstr "Bericht" #: frontend/src/pages/JobApplications.vue:261 msgid "Message is required" -msgstr "" +msgstr "Bericht is verplicht" #. Label of the meta_description (Small Text) field in DocType 'LMS Settings' #: frontend/src/pages/BatchForm.vue:255 frontend/src/pages/CourseForm.vue:256 #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Meta Description" -msgstr "" +msgstr "Meta omschrijving" #. Label of the meta_image (Attach Image) field in DocType 'LMS Batch' #. Label of the meta_image (Attach Image) field in DocType 'LMS Settings' @@ -4300,30 +4300,30 @@ msgstr "" #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Meta Image" -msgstr "" +msgstr "Meta afbeelding" #. Label of the meta_keywords (Small Text) field in DocType 'LMS Settings' #: frontend/src/pages/BatchForm.vue:261 frontend/src/pages/CourseForm.vue:262 #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Meta Keywords" -msgstr "" +msgstr "Meta-keywords" #: frontend/src/pages/BatchForm.vue:244 frontend/src/pages/CourseForm.vue:251 msgid "Meta Tags" -msgstr "" +msgstr "Meta tags" #: lms/lms/api.py:1481 msgid "Meta tags should be a list." -msgstr "" +msgstr "Metatags moeten een lijst zijn." #. Label of the milestone (Check) field in DocType 'LMS Batch Timetable' #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json msgid "Milestone" -msgstr "" +msgstr "Mijlpaal" #: lms/lms/doctype/lms_question/lms_question.py:49 msgid "Minimum two options are required for multiple choice questions." -msgstr "" +msgstr "Minimaal twee opties zijn vereist voor meerkeuze vragen." #. Name of a role #: frontend/src/pages/ProfileRoles.vue:20 @@ -4356,64 +4356,64 @@ msgstr "" #: lms/lms/doctype/lms_video_watch_duration/lms_video_watch_duration.json #: lms/lms/doctype/lms_zoom_settings/lms_zoom_settings.json msgid "Moderator" -msgstr "" +msgstr "Moderator" #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:287 #: frontend/src/pages/Quizzes.vue:281 msgid "Modified" -msgstr "" +msgstr "Gewijzigd" #: lms/lms/doctype/lms_badge/lms_badge.js:38 msgid "Modified By" -msgstr "" +msgstr "Aangepast door" #: lms/lms/api.py:114 msgid "Module Name is incorrect or does not exist." -msgstr "" +msgstr "Naam van de module is onjuist of bestaat niet" #: lms/lms/api.py:110 msgid "Module is incorrect." -msgstr "" +msgstr "Module is onjuist." #. Option for the 'Day' (Select) field in DocType 'Evaluator Schedule' #. Option for the 'Day' (Select) field in DocType 'LMS Certificate Request' #: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json msgid "Monday" -msgstr "" +msgstr "Maandag" #: frontend/src/components/Sidebar/AppSidebar.vue:561 msgid "Monetization" -msgstr "" +msgstr "Te gelde maken" #: frontend/src/components/Sidebar/AppSidebar.vue:49 msgid "More" -msgstr "" +msgstr "Meer" #. Label of the multiple (Check) field in DocType 'LMS Question' #: lms/lms/doctype/lms_question/lms_question.json msgid "Multiple Correct Answers" -msgstr "" +msgstr "Meerdere juiste antwoorden" #: frontend/src/pages/Home/StudentHome.vue:40 msgid "My Batches" -msgstr "" +msgstr "Mijn Batches" #: frontend/src/pages/Home/StudentHome.vue:8 msgid "My Courses" -msgstr "" +msgstr "Mijn Cursussen" #: frontend/src/components/Notes/Notes.vue:3 msgid "My Notes" -msgstr "" +msgstr "Mijn Notities" #: frontend/src/pages/ProfileEvaluator.vue:4 msgid "My availability" -msgstr "" +msgstr "Mijn beschikbaarheid" #: frontend/src/pages/ProfileEvaluator.vue:136 msgid "My calendar" -msgstr "" +msgstr "Mijn agenda" #: frontend/src/components/Modals/EmailTemplateModal.vue:24 msgid "Name" @@ -4429,7 +4429,7 @@ msgstr "Naam" #: frontend/src/components/Settings/Members.vue:17 #: frontend/src/components/Settings/PaymentGateways.vue:16 #: frontend/src/components/Settings/ZoomSettings.vue:17 -#: frontend/src/pages/Courses.vue:344 +#: frontend/src/pages/Courses.vue:343 #: frontend/src/pages/Programs/Programs.vue:10 #: lms/lms/doctype/lms_badge/lms_badge.json msgid "New" @@ -4438,160 +4438,160 @@ msgstr "Nieuw" #: frontend/src/pages/Batches.vue:10 frontend/src/pages/Notifications.vue:90 #: lms/www/lms.py:150 msgid "New Batch" -msgstr "" +msgstr "Nieuwe batch" #: frontend/src/components/Settings/Coupons/CouponDetails.vue:9 msgid "New Coupon" -msgstr "" +msgstr "Nieuwe coupon" #: frontend/src/pages/CourseForm.vue:631 frontend/src/pages/Courses.vue:13 #: frontend/src/pages/Notifications.vue:89 lms/www/lms.py:94 msgid "New Course" -msgstr "" +msgstr "Nieuwe cursus" #: frontend/src/components/Modals/EmailTemplateModal.vue:7 msgid "New Email Template" -msgstr "" +msgstr "Nieuw e-mailsjabloon" #: frontend/src/pages/Jobs.vue:23 msgid "New Job" -msgstr "" +msgstr "Nieuwe Job" #: lms/job/doctype/lms_job_application/lms_job_application.py:31 msgid "New Job Applicant" -msgstr "" +msgstr "Nieuwe sollicitant" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:12 msgid "New Payment Gateway" -msgstr "" +msgstr "Nieuwe betalingsgateway" #: frontend/src/pages/QuizForm.vue:137 msgid "New Question" -msgstr "" +msgstr "Nieuwe vraag" #: lms/www/new-sign-up.html:3 msgid "New Sign Up" -msgstr "" +msgstr "Nieuwe registratie" #: frontend/src/components/Modals/ZoomAccountModal.vue:6 msgid "New Zoom Account" -msgstr "" +msgstr "Nieuw Zoom-account" #: lms/lms/utils.py:423 msgid "New comment in batch {0}" -msgstr "" +msgstr "Nieuwe reactie in batch {0}" #: lms/lms/utils.py:414 msgid "New reply on the topic {0} in course {1}" -msgstr "" +msgstr "Nieuw antwoord op het onderwerp {0} in cursus {1}" #: frontend/src/components/Discussions.vue:11 #: frontend/src/components/Discussions.vue:66 msgid "New {0}" -msgstr "" +msgstr "Nieuwe {0}" #: frontend/src/components/Quiz.vue:237 frontend/src/pages/Lesson.vue:51 #: frontend/src/pages/Lesson.vue:187 msgid "Next" -msgstr "" +msgstr "Volgende" #: frontend/src/components/Assessments.vue:75 lms/templates/assessments.html:58 msgid "No Assessments" -msgstr "" +msgstr "Geen beoordelingen" #: frontend/src/components/Settings/BadgeAssignments.vue:87 msgid "No Assignments" -msgstr "" +msgstr "Geen opdrachten" #: lms/templates/notifications.html:26 msgid "No Notifications" -msgstr "" +msgstr "Geen meldingen" #: frontend/src/components/Quiz.vue:307 msgid "No Quiz submissions found" -msgstr "" +msgstr "Geen inzendingen van een quiz gevonden" #: frontend/src/pages/Quizzes.vue:19 msgid "No Quizzes" -msgstr "" +msgstr "Geen quizzen" #. Option for the 'Auto Recording' (Select) field in DocType 'LMS Live Class' #: lms/lms/doctype/lms_live_class/lms_live_class.json msgid "No Recording" -msgstr "" +msgstr "Geen opname" #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:13 msgid "No Submissions" -msgstr "" +msgstr "Geen inzendingen" #: lms/templates/upcoming_evals.html:43 msgid "No Upcoming Evaluations" -msgstr "" +msgstr "Geen komende evaluaties" #: frontend/src/components/Annoucements.vue:24 msgid "No announcements" -msgstr "" +msgstr "Geen aankondigingen" #: lms/templates/certificates_section.html:23 msgid "No certificates" -msgstr "" +msgstr "Geen certificaten" #: frontend/src/components/Settings/Coupons/CouponList.vue:82 msgid "No coupons created yet." -msgstr "" +msgstr "Nog geen coupons aangemaakt." #: frontend/src/components/Settings/Coupons/CouponList.vue:123 msgid "No coupons selected for deletion" -msgstr "" +msgstr "Geen coupons geselecteerd voor verwijdering" #: frontend/src/components/BatchCourses.vue:67 msgid "No courses added" -msgstr "" +msgstr "Geen cursussen toegevoegd" #: frontend/src/pages/Programs/ProgramForm.vue:103 msgid "No courses added yet." -msgstr "" +msgstr "Er zijn nog geen cursussen toegevoegd." #: frontend/src/pages/Home/AdminHome.vue:65 #: lms/templates/courses_created.html:14 msgid "No courses created" -msgstr "" +msgstr "Geen cursussen aangemaakt" #: lms/templates/courses_under_review.html:14 msgid "No courses under review" -msgstr "" +msgstr "Geen cursussen in beoordeling" #: frontend/src/components/BatchFeedback.vue:60 msgid "No feedback received yet." -msgstr "" +msgstr "Nog geen feedback ontvangen." #: frontend/src/pages/ProfileAbout.vue:29 msgid "No introduction" -msgstr "" +msgstr "Geen introductie" #: frontend/src/components/LiveClass.vue:100 msgid "No live classes scheduled" -msgstr "" +msgstr "Geen live lessen gepland" #: frontend/src/pages/Programs/ProgramForm.vue:167 msgid "No members added yet." -msgstr "" +msgstr "Er zijn nog geen leden toegevoegd." #: frontend/src/pages/Programs/ProgramProgressSummary.vue:60 msgid "No members found." -msgstr "" +msgstr "Geen leden gevonden." #: frontend/src/pages/Programs/StudentPrograms.vue:51 msgid "No programs found in this category." -msgstr "" +msgstr "Geen programma gevonden in deze categorie." #: frontend/src/pages/QuizForm.vue:188 msgid "No questions added yet" -msgstr "" +msgstr "Nog geen vragen toegevoegd" #: frontend/src/components/Modals/QuizInVideo.vue:93 msgid "No quizzes added yet." -msgstr "" +msgstr "Er zijn nog geen quizzen toegevoegd." #: frontend/src/components/Controls/MultiSelect.vue:67 #: frontend/src/pages/Search/Search.vue:47 @@ -4600,23 +4600,23 @@ msgstr "No results found" #: frontend/src/components/Modals/EvaluationModal.vue:59 msgid "No slots available for the selected course." -msgstr "" +msgstr "Geen slots beschikbaar voor de gekozen cursus." #: frontend/src/components/Modals/VideoStatistics.vue:86 msgid "No statistics available for this video." -msgstr "" +msgstr "Er zijn geen statistieken beschikbaar voor deze video." #: frontend/src/components/Modals/AnnouncementModal.vue:91 msgid "No students in this batch" -msgstr "" +msgstr "Geen studenten in deze batch" #: frontend/src/pages/AssignmentSubmissionList.vue:67 msgid "No submissions" -msgstr "" +msgstr "Geen inzendingen" #: frontend/src/components/EmptyState.vue:5 lms/templates/course_list.html:13 msgid "No {0}" -msgstr "" +msgstr "Nee {0}" #: lms/lms/user.py:29 msgid "Not Allowed" @@ -4626,26 +4626,26 @@ msgstr "Niet Toegestaan" #. Submission' #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json msgid "Not Applicable" -msgstr "" +msgstr "Niet toepasbaar" #: lms/templates/assessments.html:48 msgid "Not Attempted" -msgstr "" +msgstr "Niet geprobeerd" #: lms/lms/widgets/NoPreviewModal.html:6 msgid "Not Available for Preview" -msgstr "" +msgstr "Niet beschikbaar voor Preview" #. Option for the 'Status' (Select) field in DocType 'LMS Assignment #. Submission' #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json msgid "Not Graded" -msgstr "" +msgstr "Niet beoordeeld" #: frontend/src/components/NoPermission.vue:5 #: frontend/src/components/NoPermission.vue:46 frontend/src/pages/Batch.vue:168 msgid "Not Permitted" -msgstr "" +msgstr "Niet toegestaan" #: frontend/src/components/Assignment.vue:36 #: frontend/src/components/Modals/EditProfile.vue:13 @@ -4669,78 +4669,78 @@ msgstr "Opmerkingen" #: frontend/src/pages/Notifications.vue:143 msgid "Nothing to see here." -msgstr "" +msgstr "Niets te zien hier." #. Label of the notification_sent (Check) field in DocType 'LMS Batch' #. Label of the notification_sent (Check) field in DocType 'LMS Course' #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_course/lms_course.json msgid "Notification Sent" -msgstr "" +msgstr "Notificatie verstuurd" #. Label of the notifications (Check) field in DocType 'LMS Settings' #. Label of the notifications_section (Section Break) field in DocType 'LMS #. Settings' #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Notifications" -msgstr "" +msgstr "Meldingen" #: lms/lms/widgets/NoPreviewModal.html:30 msgid "Notify me when available" -msgstr "" +msgstr "Waarschuw mij wanneer beschikbaar" #: frontend/src/components/AdminBatchDashboard.vue:49 msgid "Number of Students" -msgstr "" +msgstr "Aantal studenten" #: frontend/src/pages/BatchForm.vue:157 msgid "Number of seats available" -msgstr "" +msgstr "Aantal beschikbare plaatsen" #. Label of the sb_00 (Section Break) field in DocType 'Zoom Settings' #: lms/lms/doctype/zoom_settings/zoom_settings.json msgid "OAuth Client ID" -msgstr "" +msgstr "OAuth Cliënt-ID" #. Option for the 'Location Preference' (Select) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Office close to Home" -msgstr "" +msgstr "Kantoor dicht bij huis" #. Option for the 'Medium' (Select) field in DocType 'LMS Batch' #: lms/lms/doctype/lms_batch/lms_batch.json msgid "Offline" -msgstr "" +msgstr "Offline" #. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity' #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "On-site" -msgstr "" +msgstr "Op locatie" #: lms/templates/emails/certification.html:16 msgid "Once again, congratulations on this significant accomplishment." -msgstr "" +msgstr "Nogmaals gefeliciteerd met deze belangrijke prestatie." #: frontend/src/components/Assignment.vue:60 msgid "Once the moderator grades your submission, you'll find the details here." -msgstr "" +msgstr "Zodra de moderator uw inzending beoordeelt, vindt u hier de details." #. Option for the 'Medium' (Select) field in DocType 'LMS Batch' #: lms/lms/doctype/lms_batch/lms_batch.json msgid "Online" -msgstr "" +msgstr "Online" #: lms/templates/assignment.html:6 msgid "Only files of type {0} will be accepted." -msgstr "" +msgstr "Alleen bestanden van het type {0} worden geaccepteerd." #: frontend/src/components/Modals/ChapterModal.vue:218 msgid "Only zip files are allowed" -msgstr "" +msgstr "Alleen afbeeldingsbestanden zijn toegestaan" #: frontend/src/utils/index.js:649 msgid "Only {0} file is allowed." -msgstr "" +msgstr "Alleen het {0} -bestand is toegestaan." #. Option for the 'Status' (Select) field in DocType 'Job Opportunity' #. Option in a Select field in the job-opportunity Web Form @@ -4748,129 +4748,124 @@ msgstr "" #: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/web_form/job_opportunity/job_opportunity.json msgid "Open" -msgstr "" +msgstr "Open" #: lms/templates/emails/assignment_submission.html:8 msgid "Open Assignment" -msgstr "" +msgstr "Open Opdracht" #: lms/templates/emails/lms_message.html:13 msgid "Open Course" -msgstr "" +msgstr "Open cursus" #. Option for the 'Type' (Select) field in DocType 'LMS Question' #. Option for the 'Type' (Select) field in DocType 'LMS Quiz Question' #: lms/lms/doctype/lms_question/lms_question.json #: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json msgid "Open Ended" -msgstr "" +msgstr "Open einde" #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:121 msgid "Open the " -msgstr "" +msgstr "Open de " #. Label of the open_to (Select) field in DocType 'User' #: frontend/src/components/Modals/EditProfile.vue:94 #: lms/fixtures/custom_field.json msgid "Open to" -msgstr "" +msgstr "Open voor" #: frontend/src/components/UserAvatar.vue:11 #: frontend/src/pages/CertifiedParticipants.vue:46 #: frontend/src/pages/Profile.vue:69 -msgid "Open to Opportunities" -msgstr "" - -#. Option for the 'Open to' (Select) field in DocType 'User' -#: lms/fixtures/custom_field.json -msgid "Opportunities" +msgid "Open to Work" msgstr "" #. Label of the option (Data) field in DocType 'LMS Option' #: frontend/src/components/Modals/Question.vue:70 #: lms/lms/doctype/lms_option/lms_option.json msgid "Option" -msgstr "" +msgstr "Optie" #. Label of the option_1 (Small Text) field in DocType 'LMS Question' #: lms/lms/doctype/lms_question/lms_question.json msgid "Option 1" -msgstr "" +msgstr "Optie 1" #. Label of the option_2 (Small Text) field in DocType 'LMS Question' #: lms/lms/doctype/lms_question/lms_question.json msgid "Option 2" -msgstr "" +msgstr "Optie 2" #. Label of the option_3 (Small Text) field in DocType 'LMS Question' #: lms/lms/doctype/lms_question/lms_question.json msgid "Option 3" -msgstr "" +msgstr "Optie 3" #. Label of the option_4 (Small Text) field in DocType 'LMS Question' #: lms/lms/doctype/lms_question/lms_question.json msgid "Option 4" -msgstr "" +msgstr "Optie 4" #: frontend/src/components/Modals/Question.vue:56 msgid "Options" -msgstr "" +msgstr "Opties" #. Option for the 'Color' (Select) field in DocType 'LMS Course' #: lms/lms/doctype/lms_course/lms_course.json msgid "Orange" -msgstr "" +msgstr "Oranje" #. Label of the order_id (Data) field in DocType 'LMS Payment' #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:114 #: lms/lms/doctype/lms_payment/lms_payment.json msgid "Order ID" -msgstr "" +msgstr "Ordernummer" #. Label of the organization (Data) field in DocType 'Certification' #: lms/lms/doctype/certification/certification.json msgid "Organization" -msgstr "" +msgstr "Organisatie" #. Label of the original_amount (Currency) field in DocType 'LMS Payment' #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:92 #: frontend/src/pages/Billing.vue:34 #: lms/lms/doctype/lms_payment/lms_payment.json msgid "Original Amount" -msgstr "" +msgstr "Oorspronkelijk bedrag" #. Option for the 'User Category' (Select) field in DocType 'User' #: lms/fixtures/custom_field.json lms/templates/signup-form.html:28 msgid "Others" -msgstr "" +msgstr "Anderen" #: frontend/src/pages/Home/StudentHome.vue:9 msgid "Our Popular Courses" -msgstr "" +msgstr "Onze populaire cursussen" #: frontend/src/pages/Home/StudentHome.vue:41 msgid "Our Upcoming Batches" -msgstr "" +msgstr "Onze aankomende cursussen" #. Label of the output (Data) field in DocType 'LMS Test Case Submission' #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json msgid "Output" -msgstr "" +msgstr "Uitvoer" #: frontend/src/components/Settings/BadgeForm.vue:216 #: lms/lms/doctype/lms_badge/lms_badge.js:37 msgid "Owner" -msgstr "" +msgstr "Eigenaar" #. Label of the pan (Data) field in DocType 'LMS Payment' #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:108 #: lms/lms/doctype/lms_payment/lms_payment.json msgid "PAN" -msgstr "" +msgstr "PAN" #: frontend/src/pages/Billing.vue:170 msgid "PAN Number" -msgstr "" +msgstr "PAN-nummer" #. Option for the 'File Type' (Select) field in DocType 'Course Lesson' #. Option for the 'Type' (Select) field in DocType 'LMS Assignment' @@ -4879,33 +4874,33 @@ msgstr "" #: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json msgid "PDF" -msgstr "" +msgstr "PDF" #: frontend/src/components/Sidebar/AppSidebar.vue:353 msgid "Page deleted successfully" -msgstr "" +msgstr "Pagina's succesvol verwijderd" #. Label of the paid_batch (Check) field in DocType 'LMS Batch' #: frontend/src/pages/BatchForm.vue:222 #: lms/lms/doctype/lms_batch/lms_batch.json msgid "Paid Batch" -msgstr "" +msgstr "Betaalde batch" #. Label of the paid_certificate (Check) field in DocType 'LMS Course' #: frontend/src/pages/CourseForm.vue:207 #: lms/lms/doctype/lms_course/lms_course.json msgid "Paid Certificate" -msgstr "" +msgstr "Betaald Certificaat" #: frontend/src/components/CourseCardOverlay.vue:165 msgid "Paid Certificate after Evaluation" -msgstr "" +msgstr "Betaald certificaat na evaluatie" #. Label of the paid_course (Check) field in DocType 'LMS Course' #: frontend/src/pages/CourseForm.vue:197 #: lms/lms/doctype/lms_course/lms_course.json msgid "Paid Course" -msgstr "" +msgstr "Betaalde cursus" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #. Option in a Select field in the job-opportunity Web Form @@ -4913,22 +4908,22 @@ msgstr "" #: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/web_form/job_opportunity/job_opportunity.json msgid "Part Time" -msgstr "" +msgstr "Deeltijds" #. Option for the 'Status' (Select) field in DocType 'LMS Course Progress' #: lms/lms/doctype/lms_course_progress/lms_course_progress.json msgid "Partially Complete" -msgstr "" +msgstr "Gedeeltelijk voltooid" #. Option for the 'Status' (Select) field in DocType 'LMS Assignment #. Submission' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:392 +#: frontend/src/components/Modals/Event.vue:408 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Pass" -msgstr "" +msgstr "Geslaagd" #. Option for the 'Status' (Select) field in DocType 'LMS Programming Exercise #. Submission' @@ -4937,7 +4932,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 "Passed" -msgstr "" +msgstr "Geslaagd" #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz' #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission' @@ -4945,58 +4940,58 @@ msgstr "" #: lms/lms/doctype/lms_quiz/lms_quiz.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json msgid "Passing Percentage" -msgstr "" +msgstr "Slagingspercentage" #. Label of the password (Password) field in DocType 'LMS Live Class' #: lms/lms/doctype/lms_live_class/lms_live_class.json msgid "Password" -msgstr "" +msgstr "Wachtwoord" #: frontend/src/pages/CourseForm.vue:167 msgid "Paste the youtube link of a short video introducing the course" -msgstr "" +msgstr "Plak de youtube-link van een korte video waarin de cursus wordt geïntroduceerd" #. Label of the payment (Link) field in DocType 'LMS Batch Enrollment' #. Label of the payment (Link) field in DocType 'LMS Enrollment' #: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.json #: lms/lms/doctype/lms_enrollment/lms_enrollment.json msgid "Payment" -msgstr "" +msgstr "Betaling" #. Name of a DocType #: lms/lms/doctype/payment_country/payment_country.json msgid "Payment Country" -msgstr "" +msgstr "Land van betaling" #. Label of the payment_details_section (Section Break) field in DocType 'LMS #. Payment' #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:54 #: lms/lms/doctype/lms_payment/lms_payment.json msgid "Payment Details" -msgstr "" +msgstr "Betalingsdetails" #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:20 msgid "Payment For Certificate" -msgstr "" +msgstr "Betaling voor certificaat" #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:47 msgid "Payment For Document" -msgstr "" +msgstr "Betaling voor document" #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:42 msgid "Payment For Document Type" -msgstr "" +msgstr "Betaling voor documenttype" #. Label of the payment_gateway (Data) field in DocType 'LMS Settings' #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Payment Gateway" -msgstr "" +msgstr "Betalingsgateway" #. Label of the payment_id (Data) field in DocType 'LMS Payment' #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:110 #: lms/lms/doctype/lms_payment/lms_payment.json msgid "Payment ID" -msgstr "" +msgstr "Betalings-ID" #. Label of the payment_received (Check) field in DocType 'LMS Payment' #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:15 @@ -5004,57 +4999,57 @@ msgstr "" #: frontend/src/components/Settings/Transactions/TransactionList.vue:187 #: lms/lms/doctype/lms_payment/lms_payment.json msgid "Payment Received" -msgstr "" +msgstr "Betaling ontvangen" #. Label of the payment_reminder_template (Link) field in DocType 'LMS #. Settings' #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Payment Reminder Template" -msgstr "" +msgstr "Sjabloon voor betalingsherinnering" #. Label of the payment_settings_tab (Tab Break) field in DocType 'LMS #. Settings' #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Payment Settings" -msgstr "" +msgstr "Betalingsinstellingen" #: frontend/src/pages/Billing.vue:20 msgid "Payment for " -msgstr "" +msgstr "Betaling voor " #. Label of the payment_for_certificate (Check) field in DocType 'LMS Payment' #: frontend/src/components/Settings/Transactions/TransactionList.vue:30 #: frontend/src/components/Settings/Transactions/TransactionList.vue:194 #: lms/lms/doctype/lms_payment/lms_payment.json msgid "Payment for Certificate" -msgstr "" +msgstr "Betaling voor certificaat" #. Label of the payment_for_document (Dynamic Link) field in DocType 'LMS #. Payment' #: lms/lms/doctype/lms_payment/lms_payment.json msgid "Payment for Document" -msgstr "" +msgstr "Betaling voor document" #. Label of the payment_for_document_type (Select) field in DocType 'LMS #. Payment' #: lms/lms/doctype/lms_payment/lms_payment.json msgid "Payment for Document Type" -msgstr "" +msgstr "Betaling voor documenttype" #: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.py:46 msgid "Payment is required to enroll in this batch." -msgstr "" +msgstr "Betaling is vereist om u in te schrijven voor deze batch." #. Label of the payments_app_is_not_installed (HTML) field in DocType 'LMS #. Settings' #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Payments app is not installed" -msgstr "" +msgstr "Betaal app is niet geïnstalleerd" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' #. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' -#: frontend/src/components/Modals/Event.vue:384 +#: frontend/src/components/Modals/Event.vue:400 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json msgid "Pending" @@ -5067,329 +5062,329 @@ msgstr "In afwachting van" #: lms/lms/doctype/lms_coupon/lms_coupon.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json msgid "Percentage" -msgstr "" +msgstr "Percentage" #. Option for the 'Grade Type' (Select) field in DocType 'Education Detail' #: lms/lms/doctype/education_detail/education_detail.json msgid "Percentage (e.g. 70%)" -msgstr "" +msgstr "Percentage (bijv. 70%)" #. Label of the percentage_discount (Int) field in DocType 'LMS Coupon' #: lms/lms/doctype/lms_coupon/lms_coupon.json msgid "Percentage Discount" -msgstr "" +msgstr "Kortingspercentage" #: frontend/src/components/Modals/BatchStudentProgress.vue:46 msgid "Percentage/Status" -msgstr "" +msgstr "Percentage/Status" #. Label of the persona_captured (Check) field in DocType 'LMS Settings' #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Persona Captured" -msgstr "" +msgstr "Persona vastgelegd" #: frontend/src/pages/Billing.vue:152 msgid "Phone Number" -msgstr "" +msgstr "Telefoonnummer" #. Option for the 'Color' (Select) field in DocType 'LMS Course' #: lms/lms/doctype/lms_course/lms_course.json msgid "Pink" -msgstr "" +msgstr "Roze" #: lms/lms/doctype/lms_settings/lms_settings.py:35 msgid "Please add {1} for {3} to send calendar invites for evaluations." -msgstr "" +msgstr "Voeg {1} toe voor {3} om agenda-uitnodigingen voor evaluaties te versturen." #: frontend/src/components/LiveClass.vue:8 msgid "Please add a zoom account to the batch to create live classes." -msgstr "" +msgstr "Voeg een zoom-account toe aan de batch om live lessen aan te maken." #: lms/lms/user.py:75 msgid "Please ask your administrator to verify your sign-up" -msgstr "" +msgstr "Vraag uw beheerder om uw aanmelding te controleren" #: lms/lms/user.py:73 msgid "Please check your email for verification" -msgstr "" +msgstr "Controleer uw e-mail voor verificatie" #: lms/templates/emails/community_course_membership.html:7 msgid "Please click on the following button to set your new password" -msgstr "" +msgstr "Klik op de volgende link om je nieuwe wachtwoord in te stellen" #: frontend/src/pages/Programs/ProgramDetail.vue:54 msgid "Please complete the previous course to unlock this one." -msgstr "" +msgstr "Voltooi eerst de vorige cursus om deze te ontgrendelen." #: lms/lms/doctype/lms_batch/lms_batch.py:262 msgid "Please enable the zoom account to use this feature." -msgstr "" +msgstr "Schakel het zoom-account in om deze functie te kunnen gebruiken." #: frontend/src/components/CourseOutline.vue:377 msgid "Please enroll for this course to view this lesson" -msgstr "" +msgstr "Schrijf u in voor deze cursus om deze les te bekijken" #: frontend/src/pages/Billing.vue:99 msgid "Please ensure that the billing name you enter is correct, as it will be used on your invoice." -msgstr "" +msgstr "Zorg ervoor dat de naam van de factuur die u invoert correct is, aangezien deze op uw factuur gebruikt zal worden." #: frontend/src/components/Quiz.vue:16 msgid "Please ensure that you complete all the questions in {0} minutes." -msgstr "" +msgstr "Zorg ervoor dat u alle vragen binnen {0} minuten invult." #: frontend/src/pages/Billing.vue:356 msgid "Please enter a coupon code" -msgstr "" +msgstr "Voer een kortingscode in" #: frontend/src/components/Modals/LiveClassModal.vue:186 msgid "Please enter a title." -msgstr "" +msgstr "Voer een titel in." #: lms/lms/doctype/lms_settings/lms_settings.py:51 msgid "Please enter a valid Contact Us Email." -msgstr "" +msgstr "Vul een geldige Contact E-mail." #: lms/lms/doctype/lms_settings/lms_settings.py:53 msgid "Please enter a valid Contact Us URL." -msgstr "" +msgstr "Voer een geldige URL voor Contact in." #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:32 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:106 msgid "Please enter a valid URL." -msgstr "" +msgstr "Voer een geldige URL in." #: frontend/src/components/Modals/LiveClassModal.vue:198 msgid "Please enter a valid time in the format HH:mm." -msgstr "" +msgstr "Voer een geldige tijd in het formaat HH:mm in." #: frontend/src/components/Modals/QuizInVideo.vue:181 msgid "Please enter a valid timestamp" -msgstr "" +msgstr "Voer een geldige tijd in" #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:100 msgid "Please enter the URL for assignment submission." -msgstr "" +msgstr "Voer de URL in voor het inleveren van de opdracht." #: lms/lms/doctype/lms_batch/lms_batch.py:68 msgid "Please install the Payments App to create a paid batch. Refer to the documentation for more details. {0}" -msgstr "" +msgstr "Installeer de Betaal App om een betaalde batch aan te maken. Raadpleeg de documentatie voor meer informatie. {0}" #: lms/lms/doctype/lms_course/lms_course.py:57 msgid "Please install the Payments App to create a paid course. Refer to the documentation for more details. {0}" -msgstr "" +msgstr "Installeer de Betaal App om een betaalde cursus aan te maken. Kijk voor meer informatie. {0}" #: frontend/src/pages/Billing.vue:335 msgid "Please let us know where you heard about us from." -msgstr "" +msgstr "Laat ons weten waar u over ons gehoord hebt." #: frontend/src/components/QuizBlock.vue:5 msgid "Please login to access the quiz." -msgstr "" +msgstr "Log in om toegang te krijgen tot de quiz." #: frontend/src/pages/Batch.vue:179 msgid "Please login to access this page." -msgstr "" +msgstr "Log in om toegang te krijgen tot deze pagina." #: lms/lms/api.py:106 msgid "Please login to continue with payment." -msgstr "" +msgstr "Log alstublieft in om door te gaan met de betaling." -#: lms/lms/utils.py:2081 +#: lms/lms/utils.py:2082 msgid "Please login to enroll in the program." -msgstr "" +msgstr "Log in om u voor het programma in te schrijven." #: frontend/src/components/UpcomingEvaluations.vue:19 msgid "Please make sure to schedule your evaluation before this date." -msgstr "" +msgstr "Zorg ervoor dat u uw evaluatie voor deze datum inroostert." #: lms/lms/notification/certificate_request_reminder/certificate_request_reminder.html:7 #: lms/templates/emails/certificate_request_notification.html:7 msgid "Please prepare well and be on time for the evaluations." -msgstr "" +msgstr "Bereid u goed voor en kom op tijd voor de evaluaties." #: frontend/src/pages/Billing.vue:194 msgid "Please provide your consent to proceed with the payment" -msgstr "" +msgstr "Geef alstublieft uw toestemming om verder te gaan met de betaling" #: frontend/src/pages/Billing.vue:339 msgid "Please provide your consent to proceed with the payment." -msgstr "" +msgstr "Geef alstublieft uw toestemming om verder te gaan met de betaling." #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:139 msgid "Please run the code to execute the test cases." -msgstr "" +msgstr "Voer de code uit om de testzaken uit te voeren." #: frontend/src/pages/Programs/ProgramForm.vue:428 msgid "Please select a course" -msgstr "" +msgstr "Selecteer een cursus" #: frontend/src/components/Modals/LiveClassModal.vue:189 msgid "Please select a date." -msgstr "" +msgstr "Selecteer een datum." #: frontend/src/components/Modals/LiveClassModal.vue:213 msgid "Please select a duration." -msgstr "" +msgstr "Selecteer een tijdsduur." #: frontend/src/components/Modals/LiveClassModal.vue:210 msgid "Please select a future date and time." -msgstr "" +msgstr "Selecteer een toekomstige datum en tijd." #: frontend/src/pages/Programs/ProgramForm.vue:452 msgid "Please select a member" -msgstr "" +msgstr "Selecteer een lid" #: frontend/src/components/Modals/QuizInVideo.vue:186 msgid "Please select a quiz" -msgstr "" +msgstr "Selecteer een quiz" #: frontend/src/components/Modals/EvaluationModal.vue:109 msgid "Please select a slot for your evaluation." -msgstr "" +msgstr "Selecteer een tijdsperiode voor uw evaluatie." #: frontend/src/components/Modals/LiveClassModal.vue:192 msgid "Please select a time." -msgstr "" +msgstr "Kies een tijd." #: frontend/src/components/Modals/LiveClassModal.vue:195 msgid "Please select a timezone." -msgstr "" +msgstr "Selecteer een tijdzone." #: frontend/src/components/Quiz.vue:533 msgid "Please select an option" -msgstr "" +msgstr "Selecteer een van de opties" #: lms/templates/emails/job_report.html:6 msgid "Please take appropriate action at {0}" -msgstr "" +msgstr "Neem de juiste actie op {0}" #: frontend/src/components/Modals/ChapterModal.vue:175 msgid "Please upload a SCORM package" -msgstr "" +msgstr "Upload een SCORM-pakket" #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:103 msgid "Please upload the assignment file." -msgstr "" +msgstr "Upload het opdrachtbestand." #. Option for the 'Grade Type' (Select) field in DocType 'Education Detail' #: lms/lms/doctype/education_detail/education_detail.json msgid "Point of Score (e.g. 70)" -msgstr "" +msgstr "Puntenaantal (bijv. 70)" #: frontend/src/components/Modals/Question.vue:62 msgid "Possibilities" -msgstr "" +msgstr "Mogelijkheden" #: frontend/src/components/Modals/Question.vue:91 msgid "Possibility" -msgstr "" +msgstr "Mogelijkheid" #. Label of the possibility_1 (Small Text) field in DocType 'LMS Question' #: lms/lms/doctype/lms_question/lms_question.json msgid "Possible Answer 1" -msgstr "" +msgstr "Mogelijk antwoord 1" #. Label of the possibility_2 (Small Text) field in DocType 'LMS Question' #: lms/lms/doctype/lms_question/lms_question.json msgid "Possible Answer 2" -msgstr "" +msgstr "Mogelijk antwoord 2" #. Label of the possibility_3 (Small Text) field in DocType 'LMS Question' #: lms/lms/doctype/lms_question/lms_question.json msgid "Possible Answer 3" -msgstr "" +msgstr "Mogelijk antwoord 3" #. Label of the possibility_4 (Small Text) field in DocType 'LMS Question' #: lms/lms/doctype/lms_question/lms_question.json msgid "Possible Answer 4" -msgstr "" +msgstr "Mogelijk antwoord 4" #: frontend/src/components/DiscussionReplies.vue:54 #: frontend/src/components/DiscussionReplies.vue:89 msgid "Post" -msgstr "" +msgstr "Bericht" #: frontend/src/pages/Billing.vue:147 msgid "Postal Code" -msgstr "" +msgstr "Postcode" #: frontend/src/components/Sidebar/AppSidebar.vue:135 msgid "Powered by Learning" -msgstr "" +msgstr "Mogelijk gemaakt door Leren" #. Name of a DocType #: lms/lms/doctype/preferred_function/preferred_function.json msgid "Preferred Function" -msgstr "" +msgstr "Voorkeursfunctie" #. Label of the preferred_functions (Table MultiSelect) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Preferred Functions" -msgstr "" +msgstr "Voorkeursfuncties" #. Label of the preferred_industries (Table MultiSelect) field in DocType #. 'User' #: lms/fixtures/custom_field.json msgid "Preferred Industries" -msgstr "" +msgstr "Voorkeur Industrieën" #. Name of a DocType #: lms/lms/doctype/preferred_industry/preferred_industry.json msgid "Preferred Industry" -msgstr "" +msgstr "Voorkeur industrie" #. Label of the preferred_location (Data) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Preferred Location" -msgstr "" +msgstr "Voorkeur locatie" #: frontend/src/pages/Search/Search.vue:41 msgid "Press enter to search" -msgstr "" +msgstr "Druk op enter om te zoeken" #. Label of the prevent_skipping_videos (Check) field in DocType 'LMS Settings' #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Prevent Skipping Videos" -msgstr "" +msgstr "Voorkom het overslaan van video's" #. Label of the image (Attach Image) field in DocType 'LMS Course' #: lms/lms/doctype/lms_course/lms_course.json msgid "Preview Image" -msgstr "" +msgstr "Voorbeeldweergave afbeelding" #. Label of the video_link (Attach) field in DocType 'LMS Batch' #: frontend/src/pages/BatchForm.vue:207 frontend/src/pages/CourseForm.vue:165 #: lms/lms/doctype/lms_batch/lms_batch.json msgid "Preview Video" -msgstr "" +msgstr "Voorbeeld video" #: frontend/src/pages/Lesson.vue:26 frontend/src/pages/Lesson.vue:162 msgid "Previous" -msgstr "" +msgstr "Vorig" #. Label of the pricing_tab (Tab Break) field in DocType 'LMS Batch' #: frontend/src/pages/BatchForm.vue:217 #: lms/lms/doctype/lms_batch/lms_batch.json msgid "Pricing" -msgstr "" +msgstr "Prijzen" #. Label of the pricing_tab (Tab Break) field in DocType 'LMS Course' #: frontend/src/pages/CourseForm.vue:191 #: lms/lms/doctype/lms_course/lms_course.json msgid "Pricing and Certification" -msgstr "" +msgstr "Prijzen en certificering" #. Label of the exception_country (Table MultiSelect) field in DocType 'LMS #. Settings' #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Primary Countries" -msgstr "" +msgstr "Primaire Landen" #. Description of the 'Hide my Private Information from others' (Check) field #. in DocType 'User' #: lms/fixtures/custom_field.json msgid "Private Information includes your Grade and Work Environment Preferences" -msgstr "" +msgstr "Persoonlijke gegevens omvatten uw cijfer en voorkeuren voor de werkomgeving" #. Label of the problem_statement (Text Editor) field in DocType 'LMS #. Programming Exercise' @@ -5397,77 +5392,77 @@ msgstr "" #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:25 #: lms/lms/doctype/lms_programming_exercise/lms_programming_exercise.json msgid "Problem Statement" -msgstr "" +msgstr "Probleemstelling" #: frontend/src/pages/Billing.vue:199 msgid "Proceed to Payment" -msgstr "" +msgstr "Ga verder naar betaling" #. Label of the profession (Data) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Profession" -msgstr "" +msgstr "Beroep" #: frontend/src/components/Modals/EditProfile.vue:24 msgid "Profile Image" -msgstr "" +msgstr "Profielfoto" #: frontend/src/pages/Programs/Programs.vue:18 msgid "Program" -msgstr "" +msgstr "Programma" #. Label of the program_courses (Table) field in DocType 'LMS Program' #: lms/lms/doctype/lms_program/lms_program.json msgid "Program Courses" -msgstr "" +msgstr "Programma-cursussen" #: frontend/src/pages/Programs/ProgramForm.vue:206 msgid "Program Member" -msgstr "" +msgstr "Programma-lid" #. Label of the program_members (Table) field in DocType 'LMS Program' #: lms/lms/doctype/lms_program/lms_program.json msgid "Program Members" -msgstr "" +msgstr "Programma-leden" #: frontend/src/pages/Programs/ProgramForm.vue:388 msgid "Program created successfully" -msgstr "" +msgstr "Cursus succesvol aangemaakt" #: frontend/src/pages/Programs/ProgramForm.vue:573 msgid "Program deleted successfully" -msgstr "" +msgstr "Programma succesvol verwijderd" #: frontend/src/pages/Programs/ProgramForm.vue:407 msgid "Program updated successfully" -msgstr "" +msgstr "Profiel succesvol bijgewerkt" #: frontend/src/components/Assessments.vue:249 msgid "Programming Exercise" -msgstr "" +msgstr "Programmeeroefening" #: frontend/src/components/Settings/BadgeForm.vue:200 #: frontend/src/components/Settings/Badges.vue:205 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:425 msgid "Programming Exercise Submission" -msgstr "" +msgstr "Programmeeroefening Indiening" #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:416 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:299 msgid "Programming Exercise Submissions" -msgstr "" +msgstr "Inzendingen voor programmeeroefeningen" #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:258 msgid "Programming Exercise created successfully" -msgstr "" +msgstr "Programmeeroefening succesvol aangemaakt" #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:295 msgid "Programming Exercise deleted successfully" -msgstr "" +msgstr "Programmeeroefening succesvol verwijderd" #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:278 msgid "Programming Exercise updated successfully" -msgstr "" +msgstr "Programmeeroefening succesvol bijgewerkt" #. Label of the programming_exercises (Check) field in DocType 'LMS Settings' #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:309 @@ -5475,14 +5470,14 @@ msgstr "" #: frontend/src/pages/ProgrammingExercises/ProgrammingExercises.vue:298 #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Programming Exercises" -msgstr "" +msgstr "Programmeeroefeningen" #: frontend/src/pages/Programs/ProgramDetail.vue:123 #: frontend/src/pages/Programs/Programs.vue:18 #: frontend/src/pages/Programs/Programs.vue:113 #: frontend/src/pages/Programs/Programs.vue:119 lms/www/lms.py:294 msgid "Programs" -msgstr "" +msgstr "Programma's" #. Label of the progress (Float) field in DocType 'LMS Enrollment' #. Label of the progress (Int) field in DocType 'LMS Program Member' @@ -5491,41 +5486,41 @@ msgstr "" #: lms/lms/doctype/lms_enrollment/lms_enrollment.json #: lms/lms/doctype/lms_program_member/lms_program_member.json msgid "Progress" -msgstr "" +msgstr "Vooruitgang" #: frontend/src/pages/Programs/ProgramProgressSummary.vue:131 #: lms/lms/report/course_progress_summary/course_progress_summary.py:77 msgid "Progress (%)" -msgstr "" +msgstr "Voortgang (%)" #: frontend/src/components/Modals/CourseProgressSummary.vue:113 #: frontend/src/pages/Programs/ProgramProgressSummary.vue:30 msgid "Progress Distribution" -msgstr "" +msgstr "Vooruitgang Distributie" #: frontend/src/components/CourseCardOverlay.vue:99 #: frontend/src/pages/Programs/ProgramForm.vue:125 msgid "Progress Summary" -msgstr "" +msgstr "Voortgangsoverzicht" #: frontend/src/pages/Programs/ProgramProgressSummary.vue:5 msgid "Progress Summary for {0}" -msgstr "" +msgstr "Voortgangsoverzicht voor {0}" #: frontend/src/components/AdminBatchDashboard.vue:42 msgid "Progress of students in courses and assessments" -msgstr "" +msgstr "Voortgang van studenten in cursussen en beoordelingen" #. Label of the published (Check) field in DocType 'LMS Certificate' #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Publish on Participant Page" -msgstr "" +msgstr "Publiceren op Deelnemerspagina" #. Label of the published (Check) field in DocType 'LMS Batch' #. Label of the published (Check) field in DocType 'LMS Course' #. Label of the published (Check) field in DocType 'LMS Program' #: frontend/src/components/Modals/BulkCertificates.vue:51 -#: frontend/src/components/Modals/Event.vue:122 +#: frontend/src/components/Modals/Event.vue:128 #: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105 #: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/StudentPrograms.vue:100 @@ -5533,37 +5528,37 @@ msgstr "" #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_program/lms_program.json msgid "Published" -msgstr "" +msgstr "Gepubliceerd" #: frontend/src/pages/Statistics.vue:10 #: lms/lms/web_template/lms_statistics/lms_statistics.html:14 #: lms/templates/statistics.html:4 msgid "Published Courses" -msgstr "" +msgstr "Gepubliceerde cursussen" #. Label of the published_on (Date) field in DocType 'LMS Course' #: frontend/src/pages/CourseForm.vue:109 #: lms/lms/doctype/lms_course/lms_course.json msgid "Published On" -msgstr "" +msgstr "Gepubliceerd op" #. Label of the purchased_certificate (Check) field in DocType 'LMS Enrollment' #: lms/lms/doctype/lms_enrollment/lms_enrollment.json msgid "Purchased Certificate" -msgstr "" +msgstr "Aangeschaft certificaat" #. Option for the 'Color' (Select) field in DocType 'LMS Course' #. Option for the 'Color' (Select) field in DocType 'LMS Lesson Note' #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json msgid "Purple" -msgstr "" +msgstr "Paars" #. Option for the 'Language' (Select) field in DocType 'LMS Programming #. Exercise' #: lms/lms/doctype/lms_programming_exercise/lms_programming_exercise.json msgid "Python" -msgstr "" +msgstr "Python" #. Label of the question (Small Text) field in DocType 'Course Lesson' #. Label of the question (Text Editor) field in DocType 'LMS Assignment' @@ -5583,42 +5578,42 @@ msgstr "" #: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json msgid "Question" -msgstr "" +msgstr "Vraag" #. Label of the question_detail (Text) field in DocType 'LMS Quiz Question' #: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json msgid "Question Detail" -msgstr "" +msgstr "Vraag Detail" #. Label of the question_name (Link) field in DocType 'LMS Quiz Result' #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json msgid "Question Name" -msgstr "" +msgstr "Naam van de vraag" #: frontend/src/components/Modals/Question.vue:285 msgid "Question added successfully" -msgstr "" +msgstr "Vraag succesvol toegevoegd" #: frontend/src/components/Modals/Question.vue:335 msgid "Question updated successfully" -msgstr "" +msgstr "Vraag succesvol bijgewerkt" #: frontend/src/components/Quiz.vue:112 msgid "Question {0}" -msgstr "" +msgstr "Vraag {0}" #: frontend/src/components/Quiz.vue:214 msgid "Question {0} of {1}" -msgstr "" +msgstr "Vraag {0} van {1}" #. Label of the questions (Table) field in DocType 'LMS Quiz' #: frontend/src/pages/QuizForm.vue:131 lms/lms/doctype/lms_quiz/lms_quiz.json msgid "Questions" -msgstr "" +msgstr "Vragen" #: frontend/src/pages/QuizForm.vue:385 msgid "Questions deleted successfully" -msgstr "" +msgstr "Coupon succesvol verwijderd" #. Label of the quiz (Link) field in DocType 'LMS Quiz Submission' #. Label of a Link in the LMS Workspace @@ -5629,104 +5624,104 @@ msgstr "" #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/lms/workspace/lms/lms.json msgid "Quiz" -msgstr "" +msgstr "Quiz" #. Label of the quiz_id (Data) field in DocType 'Course Lesson' #: lms/lms/doctype/course_lesson/course_lesson.json msgid "Quiz ID" -msgstr "" +msgstr "Quiz ID" #. Label of a Link in the LMS Workspace #: frontend/src/components/Settings/BadgeForm.vue:197 #: frontend/src/components/Settings/Badges.vue:203 #: frontend/src/pages/QuizPage.vue:57 lms/lms/workspace/lms/lms.json msgid "Quiz Submission" -msgstr "" +msgstr "Quiz inzending" #: frontend/src/pages/QuizSubmission.vue:131 #: frontend/src/pages/QuizSubmissionList.vue:111 #: frontend/src/pages/QuizSubmissionList.vue:116 msgid "Quiz Submissions" -msgstr "" +msgstr "Toets inzendingen" #: frontend/src/components/Quiz.vue:251 msgid "Quiz Summary" -msgstr "" +msgstr "Toets samenvatting" #. Label of the quiz_title (Data) field in DocType 'LMS Quiz Submission' #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json msgid "Quiz Title" -msgstr "" +msgstr "Toetstitel" #: frontend/src/pages/Quizzes.vue:218 msgid "Quiz created successfully" -msgstr "" +msgstr "Toets succesvol aangemaa" #: lms/plugins.py:97 msgid "Quiz is not available to Guest users. Please login to continue." -msgstr "" +msgstr "Quiz is niet beschikbaar voor gasten gebruikers. Log in om door te gaan." #: frontend/src/pages/QuizForm.vue:310 msgid "Quiz updated successfully" -msgstr "" +msgstr "Quiz is succesvol bijgewerkt" #. Description of the 'Quiz ID' (Data) field in DocType 'Course Lesson' #: lms/lms/doctype/course_lesson/course_lesson.json msgid "Quiz will appear at the bottom of the lesson." -msgstr "" +msgstr "Quiz zal verschijnen aan de onderkant van de les." #: frontend/src/components/Sidebar/AppSidebar.vue:545 #: frontend/src/pages/QuizForm.vue:396 frontend/src/pages/Quizzes.vue:293 #: frontend/src/pages/Quizzes.vue:303 lms/www/lms.py:250 msgid "Quizzes" -msgstr "" +msgstr "Toetsen" #: frontend/src/pages/Quizzes.vue:241 msgid "Quizzes deleted successfully" -msgstr "" +msgstr "Toetsen succesvol verwijderd" #: frontend/src/components/Modals/QuizInVideo.vue:35 msgid "Quizzes in this video" -msgstr "" +msgstr "Toets in deze video" #. Label of the rating (Rating) field in DocType 'LMS Certificate Evaluation' #. Label of the rating (Data) field in DocType 'LMS Course' #. Label of the rating (Rating) field in DocType 'LMS Course Review' #: frontend/src/components/CourseCardOverlay.vue:147 -#: frontend/src/components/Modals/Event.vue:92 +#: frontend/src/components/Modals/Event.vue:98 #: frontend/src/components/Modals/ReviewModal.vue:18 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course_review/lms_course_review.json msgid "Rating" -msgstr "" +msgstr "Beoordeling" #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.py:18 msgid "Rating cannot be 0" -msgstr "" +msgstr "Beoordeling mag niet 0 zijn" #. Option for the 'Color' (Select) field in DocType 'LMS Course' #. Option for the 'Color' (Select) field in DocType 'LMS Lesson Note' #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json msgid "Red" -msgstr "" +msgstr "Rood" #. Label of the redemption_count (Int) field in DocType 'LMS Coupon' #: frontend/src/components/Settings/Coupons/CouponList.vue:189 #: lms/lms/doctype/lms_coupon/lms_coupon.json msgid "Redemption Count" -msgstr "" +msgstr "Aantal aflossingen" #: frontend/src/components/Settings/Coupons/CouponDetails.vue:64 msgid "Redemptions Count" -msgstr "" +msgstr "Aflossingen tellen" #. Label of the reference_docname (Dynamic Link) field in DocType 'LMS Batch #. Timetable' #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json msgid "Reference DocName" -msgstr "" +msgstr "Referentie Doctype" #. Label of the reference_doctype (Link) field in DocType 'LMS Batch Timetable' #. Label of the reference_doctype (Select) field in DocType 'LMS Coupon Item' @@ -5736,7 +5731,7 @@ msgstr "" #: lms/lms/doctype/lms_coupon_item/lms_coupon_item.json #: lms/lms/doctype/lms_timetable_legend/lms_timetable_legend.json msgid "Reference DocType" -msgstr "" +msgstr "Referentie Doctype" #. Label of the reference_doctype (Link) field in DocType 'LMS Badge' #: lms/lms/doctype/lms_badge/lms_badge.json @@ -5751,20 +5746,20 @@ msgstr "Referentienaam" #: lms/templates/emails/community_course_membership.html:17 msgid "Regards" -msgstr "" +msgstr "Met vriendelijke groet" #: frontend/src/components/BatchOverlay.vue:96 msgid "Register Now" -msgstr "" +msgstr "Registreer nu" #: lms/lms/user.py:36 msgid "Registered but disabled" -msgstr "" +msgstr "Geregistreerd maar uitgeschakeld" #. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json msgid "Rejected" -msgstr "" +msgstr "Afgewezen" #. Label of the related_courses (Table) field in DocType 'LMS Course' #. Name of a DocType @@ -5773,55 +5768,55 @@ msgstr "" #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/related_courses/related_courses.json msgid "Related Courses" -msgstr "" +msgstr "Verwante Cursussen" #. Option for the 'Work Mode' (Select) field in DocType 'Job Opportunity' #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Remote" -msgstr "" +msgstr "Op afstand" #: frontend/src/components/Controls/Uploader.vue:45 msgid "Remove" -msgstr "" +msgstr "Verwijder" #: frontend/src/components/Notes/InlineLessonMenu.vue:49 msgid "Remove Highlight" -msgstr "" +msgstr "Markering verwijderen" #: frontend/src/components/Modals/AnnouncementModal.vue:27 #: frontend/src/pages/JobApplications.vue:132 msgid "Reply To" -msgstr "" +msgstr "Antwoord aan" #: frontend/src/components/Modals/AnnouncementModal.vue:100 msgid "Reply To is required" -msgstr "" +msgstr "Het veld 'Reply To' is verplicht" #: lms/lms/widgets/RequestInvite.html:7 msgid "Request Invite" -msgstr "" +msgstr "Verzoek om uitnodiging" #: lms/patches/create_mentor_request_email_templates.py:18 msgid "Request for Mentorship" -msgstr "" +msgstr "Aanvraag voor mentorschap" #. Label of the result (Table) field in DocType 'LMS Quiz Submission' #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json msgid "Result" -msgstr "" +msgstr "Resultaat" #. Label of the resume (Attach) field in DocType 'LMS Job Application' #: lms/job/doctype/lms_job_application/lms_job_application.json msgid "Resume" -msgstr "" +msgstr "Hervat" #: frontend/src/components/Quiz.vue:85 frontend/src/components/Quiz.vue:288 msgid "Resume Video" -msgstr "" +msgstr "Cv-video" #: frontend/src/pages/Home/Home.vue:143 msgid "Resume where you left off" -msgstr "" +msgstr "Ga verder waar u gebleven was" #. Label of the review (Small Text) field in DocType 'LMS Course Review' #. Label of a Link in the LMS Workspace @@ -5829,12 +5824,12 @@ msgstr "" #: lms/lms/doctype/lms_course_review/lms_course_review.json #: lms/lms/workspace/lms/lms.json msgid "Review" -msgstr "" +msgstr "Beoordeling" #. Label of the reviewed_by (Link) field in DocType 'LMS Mentor Request' #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json msgid "Reviewed By" -msgstr "" +msgstr "Geëvalueerd door" #. Label of the role (Select) field in DocType 'LMS Enrollment' #: lms/lms/doctype/lms_enrollment/lms_enrollment.json @@ -5844,82 +5839,82 @@ msgstr "Rol" #. Label of the role (Select) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Role Preference" -msgstr "" +msgstr "Rolvoorkeur" #: frontend/src/pages/ProfileRoles.vue:117 msgid "Role updated successfully" -msgstr "" +msgstr "Rol succesvol bijgewerkt" #: frontend/src/components/Sidebar/AppSidebar.vue:573 msgid "Roles" -msgstr "" +msgstr "Rollen" #. Label of the route (Data) field in DocType 'LMS Sidebar Item' #: lms/lms/doctype/lms_sidebar_item/lms_sidebar_item.json msgid "Route" -msgstr "" +msgstr "Route" #: lms/lms/doctype/lms_batch/lms_batch.py:125 msgid "Row #{0} Date cannot be outside the batch duration." -msgstr "" +msgstr "Rij #{0} Datum kan niet buiten de batchduur vallen." #: lms/lms/doctype/lms_batch/lms_batch.py:121 msgid "Row #{0} End time cannot be outside the batch duration." -msgstr "" +msgstr "Rij #{0} Eindtijd kan niet buiten de batchduur vallen." #: lms/lms/doctype/lms_batch/lms_batch.py:105 msgid "Row #{0} Start time cannot be greater than or equal to end time." -msgstr "" +msgstr "Rij #{0} De starttijd mag niet groter zijn dan of gelijk aan de eindtijd." #: lms/lms/doctype/lms_batch/lms_batch.py:114 msgid "Row #{0} Start time cannot be outside the batch duration." -msgstr "" +msgstr "Rij #{0} Datum kan niet buiten de batchduur vallen." #: lms/lms/doctype/lms_quiz/lms_quiz.py:33 msgid "Rows {0} have the duplicate questions." -msgstr "" +msgstr "Rijen {0} hebben de dubbele vragen." #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:56 msgid "Run" -msgstr "" +msgstr "Uitvoeren" #. Label of the scorm_section (Section Break) field in DocType 'Course Chapter' #: lms/lms/doctype/course_chapter/course_chapter.json msgid "SCORM" -msgstr "" +msgstr "SCORM" #. Label of the scorm_content (Long Text) field in DocType 'LMS Course #. Progress' #: lms/lms/doctype/lms_course_progress/lms_course_progress.json msgid "SCORM Content" -msgstr "" +msgstr "SCORM inhoud" #. Label of the scorm_package (Link) field in DocType 'Course Chapter' #: frontend/src/components/Modals/ChapterModal.vue:22 #: lms/lms/doctype/course_chapter/course_chapter.json msgid "SCORM Package" -msgstr "" +msgstr "SCORM-pakket" #. Label of the scorm_package_path (Code) field in DocType 'Course Chapter' #: lms/lms/doctype/course_chapter/course_chapter.json msgid "SCORM Package Path" -msgstr "" +msgstr "SCORM pakket pad" #. Label of the seo_tab (Tab Break) field in DocType 'LMS Settings' #: lms/lms/doctype/lms_settings/lms_settings.json msgid "SEO" -msgstr "" +msgstr "SEO" #: frontend/src/utils/index.js:668 msgid "SVG contains potentially unsafe content." -msgstr "" +msgstr "SVG kan mogelijk onveilige inhoud bevatten." #. Option for the 'Day' (Select) field in DocType 'Evaluator Schedule' #. Option for the 'Day' (Select) field in DocType 'LMS Certificate Request' #: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json msgid "Saturday" -msgstr "" +msgstr "Zaterdag" #. Button label of the job-opportunity Web Form #: frontend/src/components/AssessmentPlugin.vue:12 @@ -5929,14 +5924,14 @@ msgstr "" #: frontend/src/components/Modals/AssignmentForm.vue:65 #: frontend/src/components/Modals/EditProfile.vue:121 #: frontend/src/components/Modals/EmailTemplateModal.vue:12 -#: frontend/src/components/Modals/Event.vue:115 -#: frontend/src/components/Modals/Event.vue:151 +#: frontend/src/components/Modals/Event.vue:121 +#: frontend/src/components/Modals/Event.vue:157 #: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeForm.vue:78 #: frontend/src/components/Settings/Coupons/CouponDetails.vue:78 -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:41 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:129 #: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17 #: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14 @@ -5952,36 +5947,36 @@ msgstr "bewaren" #. Label of the schedule (Table) field in DocType 'Course Evaluator' #: lms/lms/doctype/course_evaluator/course_evaluator.json msgid "Schedule" -msgstr "" +msgstr "Schema" #: frontend/src/components/UpcomingEvaluations.vue:8 msgid "Schedule Evaluation" -msgstr "" +msgstr "Evaluatie plannen" #: frontend/src/components/UpcomingEvaluations.vue:118 msgid "Schedule an evaluation to get certified." -msgstr "" +msgstr "Plan een evaluatiegesprek in om uw certificaat te behalen." #: frontend/src/components/Modals/EvaluationModal.vue:5 msgid "Schedule your evaluation" -msgstr "" +msgstr "Evaluatie plannen" #. Name of a DocType #: lms/lms/doctype/scheduled_flow/scheduled_flow.json msgid "Scheduled Flow" -msgstr "" +msgstr "Geplande stroom" #. Label of the score (Int) field in DocType 'LMS Quiz Submission' #: frontend/src/pages/QuizSubmission.vue:39 #: frontend/src/pages/QuizSubmissionList.vue:96 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json msgid "Score" -msgstr "" +msgstr "Score" #. Label of the score_out_of (Int) field in DocType 'LMS Quiz Submission' #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json msgid "Score Out Of" -msgstr "" +msgstr "Score van de" #: frontend/src/components/Settings/Evaluators.vue:25 #: frontend/src/components/Settings/Members.vue:25 @@ -5994,80 +5989,80 @@ msgstr "Zoek" #: frontend/src/components/Modals/VideoStatistics.vue:20 #: frontend/src/pages/Programs/ProgramProgressSummary.vue:46 msgid "Search by Member" -msgstr "" +msgstr "Zoeken op lid" #: frontend/src/pages/CertifiedParticipants.vue:26 msgid "Search by Name" -msgstr "" +msgstr "Zoek op naam" #: frontend/src/pages/Batches.vue:82 frontend/src/pages/Courses.vue:67 #: frontend/src/pages/ProgrammingExercises/ProgrammingExercises.vue:44 msgid "Search by Title" -msgstr "" +msgstr "Zoek op titel" #: frontend/src/pages/Assignments.vue:34 msgid "Search by title" -msgstr "" +msgstr "Zoek op titel" #: frontend/src/components/CommandPalette/CommandPalette.vue:135 msgid "Search for " -msgstr "" +msgstr "Zoek naar " #: frontend/src/components/Controls/IconPicker.vue:36 msgid "Search for an icon" -msgstr "" +msgstr "Zoek naar een pictogram" #. Label of the seat_count (Int) field in DocType 'LMS Batch' #: frontend/src/pages/BatchForm.vue:154 #: lms/lms/doctype/lms_batch/lms_batch.json msgid "Seat Count" -msgstr "" +msgstr "Aantal zitplaatsen" #: frontend/src/components/BatchCard.vue:18 #: frontend/src/components/BatchOverlay.vue:17 msgid "Seat Left" -msgstr "" +msgstr "Plaats Over" #: lms/lms/doctype/lms_batch/lms_batch.py:92 msgid "Seat count cannot be negative." -msgstr "" +msgstr "Het aantal zitplaatsen kan niet negatief zijn." #: frontend/src/components/BatchCard.vue:15 #: frontend/src/components/BatchOverlay.vue:14 msgid "Seats Left" -msgstr "" +msgstr "Plaatsen Over" #: frontend/src/pages/Home/AdminHome.vue:15 #: frontend/src/pages/Home/AdminHome.vue:43 #: frontend/src/pages/Home/StudentHome.vue:19 #: frontend/src/pages/Home/StudentHome.vue:51 msgid "See all" -msgstr "" +msgstr "Alles weergeven" #: frontend/src/components/Settings/BadgeAssignmentForm.vue:42 msgid "Select Date" -msgstr "" +msgstr "Selecteer Datum" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:26 msgid "Select Payment Gateway" -msgstr "" +msgstr "Selecteer betalingsgateway" #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseModal.vue:23 msgid "Select a Programming Exercise" -msgstr "" +msgstr "Kies een programmeeroefening" #: frontend/src/components/Modals/Question.vue:101 msgid "Select a question" -msgstr "" +msgstr "Selecteer een vraag" #: frontend/src/components/AssessmentPlugin.vue:28 msgid "Select a quiz" -msgstr "" +msgstr "Selecteer een quiz" #: frontend/src/components/AssessmentPlugin.vue:41 #: frontend/src/components/AssessmentPlugin.vue:49 msgid "Select an Assignment" -msgstr "" +msgstr "Selecteer een opdracht" #: frontend/src/components/ContactUsEmail.vue:33 #: frontend/src/pages/JobApplications.vue:115 @@ -6076,41 +6071,41 @@ msgstr "Verstuur" #: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.js:7 msgid "Send Confirmation Email" -msgstr "" +msgstr "Bevestigingsmail verzenden" #: frontend/src/pages/JobApplications.vue:289 msgid "Send Email" -msgstr "" +msgstr "E-mail versturen" #: frontend/src/pages/JobApplications.vue:111 msgid "Send Email to {0}" -msgstr "" +msgstr "Stuur een e-mail naar {0}" #. Label of the send_notification_for_published_batches (Select) field in #. DocType 'LMS Settings' #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Send Notification for Published Batches" -msgstr "" +msgstr "Verzend een melding voor gepubliceerde batches" #. Label of the send_notification_for_published_courses (Select) field in #. DocType 'LMS Settings' #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Send Notification for Published Courses" -msgstr "" +msgstr "Notificatie verzenden voor gepubliceerde cursussen" #. Label of the send_calendar_invite_for_evaluations (Check) field in DocType #. 'LMS Settings' #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Send calendar invite for evaluations" -msgstr "" +msgstr "Stuur een agenda-uitnodiging voor evaluaties" #: frontend/src/pages/BatchForm.vue:105 msgid "Session End Time" -msgstr "" +msgstr "Eindtijd sessie" #: frontend/src/pages/BatchForm.vue:98 msgid "Session Start Time" -msgstr "" +msgstr "Aanvangstijd sessie" #: frontend/src/components/Controls/ColorSwatches.vue:13 msgid "Set Color" @@ -6118,15 +6113,15 @@ msgstr "Kleur instellen" #: lms/templates/emails/community_course_membership.html:1 msgid "Set your Password" -msgstr "" +msgstr "Wachtwoord instellen" #: frontend/src/components/Sidebar/AppSidebar.vue:516 msgid "Setting up" -msgstr "" +msgstr "Instellen" #: frontend/src/components/Sidebar/AppSidebar.vue:566 msgid "Setting up payment gateway" -msgstr "" +msgstr "Het instellen van een betalingsgateway" #: frontend/src/components/Settings/Settings.vue:9 #: frontend/src/components/Sidebar/AppSidebar.vue:571 @@ -6139,62 +6134,63 @@ msgstr "instellingen" #: frontend/src/pages/ProfileAbout.vue:81 msgid "Share on" -msgstr "" +msgstr "Delen op" #: frontend/src/pages/BatchForm.vue:42 msgid "Short Description" -msgstr "" +msgstr "Korte beschrijving" #. Label of the short_introduction (Small Text) field in DocType 'LMS Course' #: frontend/src/pages/CourseForm.vue:141 #: lms/lms/doctype/lms_course/lms_course.json msgid "Short Introduction" -msgstr "" +msgstr "Korte introductie" #: frontend/src/pages/BatchForm.vue:45 msgid "Short description of the batch" -msgstr "" +msgstr "Korte beschrijving van de batch" #. Label of the show_answer (Check) field in DocType 'LMS Assignment' #: lms/lms/doctype/lms_assignment/lms_assignment.json msgid "Show Answer" -msgstr "" +msgstr "Toon Antwoord" #. Label of the show_answers (Check) field in DocType 'LMS Quiz' #: frontend/src/pages/QuizForm.vue:93 frontend/src/pages/Quizzes.vue:274 #: lms/lms/doctype/lms_quiz/lms_quiz.json msgid "Show Answers" -msgstr "" +msgstr "Toon Antwoord" #. Label of the show_submission_history (Check) field in DocType 'LMS Quiz' #: frontend/src/pages/QuizForm.vue:98 lms/lms/doctype/lms_quiz/lms_quiz.json msgid "Show Submission History" -msgstr "" +msgstr "\n" +"Geschiedenis van inzending tonen" #. Label of the column_break_2 (Column Break) field in DocType 'LMS Settings' #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Show Tab in Batch" -msgstr "" +msgstr "Tabblad in batch weergeven" #. Label of the show_usd_equivalent (Check) field in DocType 'LMS Settings' #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Show USD Equivalent" -msgstr "" +msgstr "Toon USD-equivalent" #. Label of the show_day_view (Check) field in DocType 'LMS Settings' #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Show day view in timetable" -msgstr "" +msgstr "Toon dag-weergave in rooster" #. Label of the show_live_class (Check) field in DocType 'LMS Batch' #: lms/lms/doctype/lms_batch/lms_batch.json msgid "Show live class" -msgstr "" +msgstr "Toon live les" #. 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 msgid "Shuffle Questions" -msgstr "" +msgstr "Willekeurige vragen" #. Label of the sidebar_tab (Tab Break) field in DocType 'LMS Settings' #: lms/lms/doctype/lms_settings/lms_settings.json @@ -6208,32 +6204,32 @@ msgstr "" #: lms/lms/user.py:29 msgid "Sign Up is disabled" -msgstr "" +msgstr "Aanmelden is uitgeschakeld" #: lms/templates/signup-form.html:53 msgid "Sign up" -msgstr "" +msgstr "Aanmelden" #. Label of the signup_settings_tab (Tab Break) field in DocType 'LMS Settings' #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Signup Settings" -msgstr "" +msgstr "Inschrijvings-instellingen" #. Label of a chart in the LMS Workspace #: lms/lms/workspace/lms/lms.json msgid "Signups" -msgstr "" +msgstr "Aanmeldingen" #. Label of the skill (Table MultiSelect) field in DocType 'User' #. Label of the skill (Data) field in DocType 'User Skill' #: lms/fixtures/custom_field.json lms/lms/doctype/user_skill/user_skill.json msgid "Skill" -msgstr "" +msgstr "Vaardigheid" #. Label of the skill_details (Section Break) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Skill Details" -msgstr "" +msgstr "Vaardigheid details" #. Label of the skill_name (Link) field in DocType 'Skills' #: lms/lms/doctype/skills/skills.json @@ -6247,24 +6243,24 @@ msgstr "" #: frontend/src/pages/PersonaForm.vue:51 lms/templates/onboarding_header.html:6 msgid "Skip" -msgstr "" +msgstr "Overspringen" #: lms/lms/doctype/course_evaluator/course_evaluator.py:57 msgid "Slot Times are overlapping for some schedules." -msgstr "" +msgstr "Slot tijden overlappen voor sommige schema's." #: frontend/src/pages/ProfileEvaluator.vue:218 msgid "Slot added successfully" -msgstr "" +msgstr "Tijdslot succesvol toegevoegd" #: frontend/src/pages/ProfileEvaluator.vue:257 msgid "Slot deleted successfully" -msgstr "" +msgstr "Slot succesvol verwijderd" #: frontend/src/components/BatchCard.vue:25 #: frontend/src/components/BatchOverlay.vue:24 msgid "Sold Out" -msgstr "" +msgstr "Uitverkocht" #. Label of the source (Link) field in DocType 'LMS Batch Enrollment' #. Label of the source (Link) field in DocType 'LMS Payment' @@ -6281,13 +6277,13 @@ msgstr "Bron" #. Option for the 'Member Type' (Select) field in DocType 'LMS Enrollment' #: lms/lms/doctype/lms_enrollment/lms_enrollment.json msgid "Staff" -msgstr "" +msgstr "Personeel" #: frontend/src/components/LiveClass.vue:73 frontend/src/components/Quiz.vue:81 #: frontend/src/pages/Home/AdminHome.vue:167 #: frontend/src/pages/Home/StudentHome.vue:110 msgid "Start" -msgstr "" +msgstr "Start" #. Label of the start_date (Date) field in DocType 'Education Detail' #. Label of the start_date (Date) field in DocType 'LMS Batch' @@ -6298,13 +6294,13 @@ msgstr "Startdatum" #: lms/templates/emails/batch_start_reminder.html:13 msgid "Start Date:" -msgstr "" +msgstr "Startdatum:" #: frontend/src/components/CourseCardOverlay.vue:76 #: frontend/src/pages/Lesson.vue:89 frontend/src/pages/SCORMChapter.vue:31 #: lms/templates/emails/lms_course_interest.html:9 msgid "Start Learning" -msgstr "" +msgstr "Begin met Leren" #. Label of the start_time (Time) field in DocType 'Evaluator Schedule' #. Label of the start_time (Time) field in DocType 'LMS Batch' @@ -6320,29 +6316,29 @@ msgstr "" #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/scheduled_flow/scheduled_flow.json msgid "Start Time" -msgstr "" +msgstr "Starttijd" #: lms/lms/doctype/course_evaluator/course_evaluator.py:36 msgid "Start Time cannot be greater than End Time" -msgstr "" +msgstr "Starttijd kan niet groter zijn dan Eindtijd" #. Label of the start_url (Small Text) field in DocType 'LMS Live Class' #: lms/lms/doctype/lms_live_class/lms_live_class.json msgid "Start URL" -msgstr "" +msgstr "Start-URL" #: frontend/src/components/Quiz.vue:81 msgid "Start the Quiz" -msgstr "" +msgstr "Start de toets" #. Option for the 'Company Type' (Select) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Startup Organization" -msgstr "" +msgstr "Startende organisatie" #: frontend/src/pages/Billing.vue:134 msgid "State/Province" -msgstr "" +msgstr "Staat/provincie" #. Label of the tab_4_tab (Tab Break) field in DocType 'LMS Course' #. Label of the statistics (Check) field in DocType 'LMS Settings' @@ -6351,7 +6347,7 @@ msgstr "" #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:203 msgid "Statistics" -msgstr "" +msgstr "Statistieken" #. Label of the status (Select) field in DocType 'Job Opportunity' #. Label of a field in the job-opportunity Web Form @@ -6364,7 +6360,7 @@ msgstr "" #. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Submission' #. Label of the status (Select) field in DocType 'LMS Test Case Submission' -#: frontend/src/components/Modals/Event.vue:99 +#: frontend/src/components/Modals/Event.vue:105 #: frontend/src/components/Settings/Badges.vue:228 #: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/pages/AssignmentSubmissionList.vue:19 @@ -6381,11 +6377,11 @@ 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 "Status" -msgstr "" +msgstr "Status" #: lms/templates/assessments.html:17 msgid "Status/Score" -msgstr "" +msgstr "Status/Score" #. Option for the 'User Category' (Select) field in DocType 'User' #. Option for the 'Member Type' (Select) field in DocType 'LMS Enrollment' @@ -6394,27 +6390,27 @@ msgstr "" #: lms/lms/doctype/lms_enrollment/lms_enrollment.json #: lms/templates/signup-form.html:26 msgid "Student" -msgstr "" +msgstr "Student" #: frontend/src/components/CourseReviews.vue:11 msgid "Student Reviews" -msgstr "" +msgstr "Beoordelingen van studenten" #. Label of the show_students (Check) field in DocType 'LMS Settings' #: frontend/src/components/AdminBatchDashboard.vue:11 #: frontend/src/components/BatchStudents.vue:5 #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Students" -msgstr "" +msgstr "Studenten" #: frontend/src/components/BatchStudents.vue:220 msgid "Students deleted successfully" -msgstr "" +msgstr "Studenten succesvol verwijderd" #. Description of the 'Paid Batch' (Check) field in DocType 'LMS Batch' #: lms/lms/doctype/lms_batch/lms_batch.json msgid "Students will be enrolled in a paid batch once they complete the payment" -msgstr "" +msgstr "Studenten worden ingeschreven in een betaalde batch zodra ze de betaling hebben voltooid" #: frontend/src/components/ContactUsEmail.vue:13 #: frontend/src/components/Modals/AnnouncementModal.vue:20 @@ -6426,28 +6422,28 @@ msgstr "Onderwerp" #: frontend/src/components/Modals/AnnouncementModal.vue:94 #: frontend/src/pages/JobApplications.vue:258 msgid "Subject is required" -msgstr "" +msgstr "Onderwerp is vereist" #: frontend/src/components/Assignment.vue:32 msgid "Submission" -msgstr "" +msgstr "Inzending" #: frontend/src/components/Modals/AssignmentForm.vue:27 msgid "Submission Type" -msgstr "" +msgstr "Inzendings-type" #: frontend/src/components/Assignment.vue:13 #: frontend/src/components/Assignment.vue:16 msgid "Submission by" -msgstr "" +msgstr "Inzending door" #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:358 msgid "Submission saved!" -msgstr "" +msgstr "Inzending opgeslagen!" #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:255 msgid "Submissions deleted successfully" -msgstr "" +msgstr "Inzendingen succesvol verwijderd" #: frontend/src/components/Modals/AssessmentModal.vue:9 #: frontend/src/components/Modals/BatchCourseModal.vue:9 @@ -6455,7 +6451,7 @@ msgstr "" #: frontend/src/components/Quiz.vue:242 lms/templates/assignment.html:9 #: lms/www/new-sign-up.html:32 msgid "Submit" -msgstr "" +msgstr "Indienen" #: frontend/src/components/BatchFeedback.vue:35 msgid "Submit Feedback" @@ -6463,22 +6459,22 @@ msgstr "" #: frontend/src/pages/PersonaForm.vue:43 msgid "Submit and Continue" -msgstr "" +msgstr "Verzenden en doorgaan" #: frontend/src/components/Modals/JobApplicationModal.vue:23 msgid "Submit your resume to proceed with your application for this position. Upon submission, it will be shared with the job poster." -msgstr "" +msgstr "De cursus waarvoor u zich heeft ingeschreven begint morgen. Wees voorbereid en kom op tijd voor de sessie." #: frontend/src/pages/Programs/ProgramEnrollment.vue:145 msgid "Successfully enrolled in program" -msgstr "" +msgstr "Succesvol ingeschreven in programma" #. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:106 +#: frontend/src/components/Modals/Event.vue:112 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Summary" -msgstr "" +msgstr "Overzicht" #. Option for the 'Day' (Select) field in DocType 'Evaluator Schedule' #. Option for the 'Day' (Select) field in DocType 'LMS Certificate Request' @@ -6489,11 +6485,11 @@ msgstr "" #: lms/lms/api.py:995 msgid "Suspicious pattern found in {0}: {1}" -msgstr "" +msgstr "Verdacht patroon gevonden in {0}: {1}" #: frontend/src/components/Controls/ColorSwatches.vue:52 msgid "Swatches" -msgstr "" +msgstr "Stalen" #. Name of a role #: lms/job/doctype/job_opportunity/job_opportunity.json @@ -6541,44 +6537,44 @@ msgstr "" #: lms/lms/doctype/user_skill/user_skill.json #: lms/lms/doctype/zoom_settings/zoom_settings.json msgid "System Manager" -msgstr "" +msgstr "Systeembeheerder" #. Label of the tags (Data) field in DocType 'LMS Course' #: frontend/src/pages/CourseForm.vue:51 #: lms/lms/doctype/lms_course/lms_course.json msgid "Tags" -msgstr "" +msgstr "Labels" #: frontend/src/components/InstallPrompt.vue:52 msgid "Tap" -msgstr "" +msgstr "Tik" #. Option for the 'Color' (Select) field in DocType 'LMS Course' #: lms/lms/doctype/lms_course/lms_course.json msgid "Teal" -msgstr "" +msgstr "Groenblauw" #: lms/templates/emails/community_course_membership.html:18 #: lms/templates/emails/mentor_request_creation_email.html:8 #: lms/templates/emails/mentor_request_status_update_email.html:7 msgid "Team School" -msgstr "" +msgstr "Team School" #. Option for the 'Collaboration Preference' (Select) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Team Work" -msgstr "" +msgstr "Teamwork" #. Label of the template (Link) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:43 -#: frontend/src/components/Modals/Event.vue:127 +#: frontend/src/components/Modals/Event.vue:133 #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Template" -msgstr "" +msgstr "Sjabloon" #: lms/lms/user.py:40 msgid "Temporarily Disabled" -msgstr "" +msgstr "Tijdelijk uitgeschakeld" #. Label of the test_cases (Table) field in DocType 'LMS Programming Exercise' #. Label of the test_cases (Table) field in DocType 'LMS Programming Exercise @@ -6588,208 +6584,208 @@ msgstr "" #: lms/lms/doctype/lms_programming_exercise/lms_programming_exercise.json #: lms/lms/doctype/lms_programming_exercise_submission/lms_programming_exercise_submission.json msgid "Test Cases" -msgstr "" +msgstr "Testgevallen" #: frontend/src/pages/QuizForm.vue:23 msgid "Test Quiz" -msgstr "" +msgstr "Quiz testen" #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:86 msgid "Test this Exercise" -msgstr "" +msgstr "Test deze oefening" #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:93 msgid "Test {0}" -msgstr "" +msgstr "Test {0}" #. Option for the 'Type' (Select) field in DocType 'LMS Assignment' #. Option for the 'Type' (Select) field in DocType 'LMS Assignment Submission' #: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json msgid "Text" -msgstr "" +msgstr "Tekst" #: frontend/src/components/BatchFeedback.vue:6 msgid "Thank you for providing your feedback." -msgstr "" +msgstr "Bedankt voor uw feedback." #: lms/templates/emails/lms_course_interest.html:17 #: lms/templates/emails/lms_invite_request_approved.html:15 #: lms/templates/emails/mentor_request_creation_email.html:7 #: lms/templates/emails/mentor_request_status_update_email.html:6 msgid "Thanks and Regards" -msgstr "" +msgstr "Bedankt en groeten" -#: lms/lms/utils.py:2247 +#: lms/lms/utils.py:2248 msgid "The batch does not exist." -msgstr "" +msgstr "De batch bestaat niet." #: lms/templates/emails/batch_start_reminder.html:6 msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session." -msgstr "" +msgstr "De cursus waarvoor u zich heeft ingeschreven begint morgen. Wees voorbereid en kom op tijd voor de sessie." -#: lms/lms/utils.py:1747 +#: lms/lms/utils.py:1748 msgid "The coupon code '{0}' is invalid." -msgstr "" +msgstr "De coupon code '{0}' is ongeldig." #: lms/templates/emails/lms_course_interest.html:5 msgid "The course {0} is now available on {1}." -msgstr "" +msgstr "De cursus {0} is nu beschikbaar op {1}." #: frontend/src/components/UpcomingEvaluations.vue:26 msgid "The deadline to schedule evaluations has passed. Please contact the Instructor for assistance." -msgstr "" +msgstr "De deadline voor het inplannen van evaluaties is verstreken. Neem contact op met de docent voor assistentie." #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:56 msgid "The evaluator of this course is unavailable from {0} to {1}. Please select a date after {1}" -msgstr "" +msgstr "De evaluator van deze cursus is niet beschikbaar van {0} tot {1}. Selecteer een datum na {1}" #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:67 msgid "The instructor has left a comment on your assignment {0}" -msgstr "" +msgstr "De docent heeft een opmerking achtergelaten bij uw opdracht {0}" #: frontend/src/components/UpcomingEvaluations.vue:15 msgid "The last day to schedule your evaluations is " -msgstr "" +msgstr "De laatste dag om uw evaluaties te plannen is " -#: lms/lms/utils.py:2231 +#: lms/lms/utils.py:2232 msgid "The lesson does not exist." -msgstr "" +msgstr "De les bestaat niet." #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:75 msgid "The slot is already booked by another participant." -msgstr "" +msgstr "Het tijdsvak is al gereserveerd door een andere deelnemer." -#: lms/lms/utils.py:1361 lms/lms/utils.py:1477 lms/lms/utils.py:1944 +#: lms/lms/utils.py:1362 lms/lms/utils.py:1478 lms/lms/utils.py:1945 msgid "The specified batch does not exist." -msgstr "" +msgstr "De batch bestaat niet." #: lms/patches/create_mentor_request_email_templates.py:36 msgid "The status of your application has changed." -msgstr "" +msgstr "De status van uw sollicitatie is gewijzigd." #: frontend/src/components/CreateOutline.vue:12 msgid "There are no chapters in this course. Create and manage chapters from here." -msgstr "" +msgstr "Er zijn geen uitwerkingen voor deze opdracht." #: frontend/src/pages/Home/AdminHome.vue:71 msgid "There are no courses currently. Create your first course to get started!" -msgstr "" +msgstr "Er zijn momenteel geen cursussen. Maak uw eerste cursus om te beginnen!" #: lms/lms/doctype/lms_batch/lms_batch.py:96 #: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.py:74 msgid "There are no seats available in this batch." -msgstr "" +msgstr "Er zijn geen zitplaatsen beschikbaar in deze batch." #: frontend/src/components/BatchStudents.vue:99 msgid "There are no students in this batch." -msgstr "" +msgstr "Er zijn geen studenten in deze batch." #: frontend/src/pages/AssignmentSubmissionList.vue:70 msgid "There are no submissions for this assignment." -msgstr "" +msgstr "Er zijn geen uitwerkingen voor deze opdracht." #: frontend/src/components/EmptyState.vue:11 msgid "There are no {0} currently. Keep an eye out, fresh learning experiences are on the way!" -msgstr "" +msgstr "Er is momenteel geen {0}. Houd een oogje in het zeil, er komen nieuwe leerervaringen aan!" #: lms/templates/course_list.html:14 msgid "There are no {0} on this site." -msgstr "" +msgstr "Er zijn geen {0} op deze site." #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:59 msgid "There has been an update on your submission. You have got a score of {0} for the quiz {1}" -msgstr "" +msgstr "Er is een update van uw inzending. U heeft een score van {0} gekregen voor de quiz {1}" #. Description of the 'section_break_ubxi' (Section Break) field in DocType #. 'LMS Batch' #: lms/lms/doctype/lms_batch/lms_batch.json msgid "These customisations will work on the main batch page." -msgstr "" +msgstr "Deze aanpassingen werken op de hoofdpagina van de batch." #: frontend/src/pages/Badge.vue:14 msgid "This badge has been awarded to {0} on {1}." -msgstr "" +msgstr "Deze badge is toegekend aan {0} op {1}." #: frontend/src/components/Settings/BadgeAssignments.vue:92 msgid "This badge has not been assigned to any students yet" -msgstr "" +msgstr "Deze badge is nog niet toegewezen aan leerlingen" #. Label of the expire (Check) field in DocType 'Certification' #: lms/lms/doctype/certification/certification.json msgid "This certificate does no expire" -msgstr "" +msgstr "Dit certificaat verloopt niet" #: frontend/src/components/LiveClass.vue:86 #: frontend/src/pages/Home/AdminHome.vue:180 #: frontend/src/pages/Home/StudentHome.vue:123 msgid "This class has ended" -msgstr "" +msgstr "Deze les is afgelopen" -#: lms/lms/utils.py:1776 +#: lms/lms/utils.py:1777 msgid "This coupon has expired." -msgstr "" +msgstr "Deze coupon is verlopen." -#: lms/lms/utils.py:1779 +#: lms/lms/utils.py:1780 msgid "This coupon has reached its maximum usage limit." -msgstr "" +msgstr "Deze coupon heeft zijn maximale gebruikslimiet bereikt." -#: lms/lms/utils.py:1788 +#: lms/lms/utils.py:1789 msgid "This coupon is not applicable to this {0}." -msgstr "" +msgstr "Deze coupon is niet van toepassing op deze {0}." #: frontend/src/components/CourseCardOverlay.vue:126 msgid "This course has:" -msgstr "" +msgstr "Deze cursus omvat:" -#: lms/lms/utils.py:1707 +#: lms/lms/utils.py:1708 msgid "This course is free." -msgstr "" +msgstr "Deze cursus is gratis." #. Description of the 'Meta Description' (Small Text) field in DocType 'LMS #. Settings' #: lms/lms/doctype/lms_settings/lms_settings.json msgid "This description will be shown on lists and pages without meta description" -msgstr "" +msgstr "Deze beschrijving wordt getoond op lijsten en pagina's zonder meta-beschrijving" #. Description of the 'Meta Image' (Attach Image) field in DocType 'LMS #. Settings' #: lms/lms/doctype/lms_settings/lms_settings.json msgid "This image will be shown on lists and pages that don't have an image by default" -msgstr "" +msgstr "Deze afbeelding wordt getoond op lijsten en pagina's die standaard geen afbeelding hebben" #: frontend/src/pages/Lesson.vue:74 msgid "This lesson is locked" -msgstr "" +msgstr "Deze les is gesloten" #: frontend/src/pages/Lesson.vue:79 msgid "This lesson is not available for preview. Please enroll in the course to access it." -msgstr "" +msgstr "Deze les is niet beschikbaar voor voorvertoning. Aub inschrijven op de cursus om er toegang toe te krijgen." #: lms/lms/widgets/NoPreviewModal.html:16 msgid "This lesson is not available for preview. Please join the course to access it." -msgstr "" +msgstr "Deze les is niet beschikbaar als voorvertoning. Graag inschrijven op de cursus om er toegang toe te krijgen." #: frontend/src/pages/Programs/ProgramEnrollment.vue:18 msgid "This program consists of {0} courses" -msgstr "" +msgstr "Dit programma bestaat uit {0} cursussen" #: frontend/src/components/Quiz.vue:11 msgid "This quiz consists of {0} questions." -msgstr "" +msgstr "Deze quiz bestaat uit {0} vragen." #: frontend/src/components/Sidebar/AppSidebar.vue:88 #: frontend/src/components/Sidebar/AppSidebar.vue:128 msgid "This site is being updated. You will not be able to make any changes. Full access will be restored shortly." -msgstr "" +msgstr "Deze site wordt bijgewerkt. U zult geen wijzigingen kunnen aanbrengen. De volledige toegang zal binnenkort worden hersteld." #: frontend/src/components/VideoBlock.vue:5 msgid "This video contains {0} {1}:" -msgstr "" +msgstr "Deze video bevat {0} {1}:" #: frontend/src/components/Settings/Coupons/CouponList.vue:128 msgid "This will permanently delete the coupon and the code will no longer be valid." -msgstr "" +msgstr "Hierdoor wordt de coupon permanent verwijderd en is de code niet langer geldig." #. Option for the 'Day' (Select) field in DocType 'Evaluator Schedule' #. Option for the 'Day' (Select) field in DocType 'LMS Certificate Request' @@ -6799,7 +6795,7 @@ msgid "Thursday" msgstr "" #. Label of the time (Time) field in DocType 'LMS Live Class' -#: frontend/src/components/Modals/Event.vue:48 +#: frontend/src/components/Modals/Event.vue:54 #: frontend/src/components/Modals/LiveClassModal.vue:52 #: frontend/src/components/Quiz.vue:58 #: lms/lms/doctype/lms_live_class/lms_live_class.json @@ -6809,27 +6805,27 @@ msgstr "Tijd" #. Label of the time (Select) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Time Preference" -msgstr "" +msgstr "Tijdvoorkeur" #: frontend/src/components/VideoBlock.vue:140 msgid "Time for a Quiz" -msgstr "" +msgstr "Tijd voor een quiz" #: frontend/src/components/Modals/QuizInVideo.vue:13 msgid "Time in Video" -msgstr "" +msgstr "Tijd in Video" #: frontend/src/components/Modals/QuizInVideo.vue:220 msgid "Time in Video (minutes)" -msgstr "" +msgstr "Tijd in video (minuten)" #: frontend/src/components/Modals/QuizInVideo.vue:173 msgid "Time in video exceeds the total duration of the video." -msgstr "" +msgstr "Tijd in video overschrijdt de totale duur van de video." #: frontend/src/components/Modals/LiveClassModal.vue:44 msgid "Time must be in 24 hour format (HH:mm). Example 11:30 or 22:00" -msgstr "" +msgstr "De tijd moet in 24-uurs formaat staan (HH:mm). Voorbeeld 11:30 of 22:00" #: lms/templates/emails/published_batch_notification.html:29 msgid "Time: " @@ -6841,7 +6837,7 @@ msgstr "Tijd: " #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_timetable_template/lms_timetable_template.json msgid "Timetable" -msgstr "" +msgstr "Schema" #. Label of the timetable_legends (Table) field in DocType 'LMS Batch' #. Label of the timetable_legends (Table) field in DocType 'LMS Timetable @@ -6849,12 +6845,12 @@ msgstr "" #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_timetable_template/lms_timetable_template.json msgid "Timetable Legends" -msgstr "" +msgstr "Tijdschema Legenden" #. Label of the timetable_template (Link) field in DocType 'LMS Batch' #: lms/lms/doctype/lms_batch/lms_batch.json msgid "Timetable Template" -msgstr "" +msgstr "Roostersjabloon" #. Label of the timezone (Data) field in DocType 'LMS Batch' #. Label of the timezone (Data) field in DocType 'LMS Certificate Request' @@ -6867,17 +6863,17 @@ msgstr "" #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_live_class/lms_live_class.json msgid "Timezone" -msgstr "" +msgstr "Tijdzone" #: lms/lms/doctype/lms_course/lms_course.py:70 msgid "Timezone is required for paid certificates." -msgstr "" +msgstr "Tijdzone is vereist voor betaalde certificaten." #: lms/templates/emails/batch_confirmation.html:21 #: lms/templates/emails/batch_start_reminder.html:16 #: lms/templates/emails/live_class_reminder.html:16 msgid "Timings:" -msgstr "" +msgstr "Tijdschema:" #. Label of the title (Data) field in DocType 'Course Chapter' #. Label of the title (Data) field in DocType 'Course Lesson' @@ -6921,7 +6917,7 @@ msgstr "Titel" #: frontend/src/components/Modals/ChapterModal.vue:172 msgid "Title is required" -msgstr "" +msgstr "Titel is vereist" #. Label of the unavailable_to (Date) field in DocType 'Course Evaluator' #: frontend/src/pages/ProfileEvaluator.vue:120 @@ -6934,13 +6930,13 @@ msgstr "Naar" msgid "To Date" msgstr "Tot Datum" -#: lms/lms/utils.py:1721 +#: lms/lms/utils.py:1722 msgid "To join this batch, please contact the Administrator." -msgstr "" +msgstr "Om aan deze batch deel te nemen, neem contact op met de beheerder." #: lms/lms/user.py:41 msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" -msgstr "" +msgstr "Te veel gebruikers aangemeld voor kort, zodat de registratie is uitgeschakeld. Probeer het over een uur terug" #: frontend/src/pages/Billing.vue:54 msgid "Total" @@ -6950,46 +6946,46 @@ msgstr "Totaal" #: frontend/src/pages/QuizForm.vue:73 frontend/src/pages/Quizzes.vue:253 #: lms/lms/doctype/lms_quiz/lms_quiz.json msgid "Total Marks" -msgstr "" +msgstr "Totaal aantal punten" #: lms/lms/web_template/lms_statistics/lms_statistics.html:14 #: lms/templates/statistics.html:12 msgid "Total Signups" -msgstr "" +msgstr "Totaal aantal inschrijvingen" #: frontend/src/components/Modals/FeedbackModal.vue:11 msgid "Training Feedback" -msgstr "" +msgstr "Training Terugkoppeling" #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:9 msgid "Transaction Details" -msgstr "" +msgstr "Transactiedetails" #. Option for the 'Location Preference' (Select) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Travel" -msgstr "" +msgstr "Reizen" #: frontend/src/components/Quiz.vue:284 msgid "Try Again" -msgstr "" +msgstr "Probeer Opnieuw" #. Option for the 'Day' (Select) field in DocType 'Evaluator Schedule' #. Option for the 'Day' (Select) field in DocType 'LMS Certificate Request' #: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json msgid "Tuesday" -msgstr "" +msgstr "Dinsdag" #: frontend/src/pages/ProfileAbout.vue:105 msgid "Twitter" -msgstr "" +msgstr "Twitter" #. Label of the twitter (Data) field in DocType 'User' #: frontend/src/components/Modals/EditProfile.vue:85 #: 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 @@ -7014,16 +7010,16 @@ msgstr "" #: frontend/src/utils/markdownParser.js:11 msgid "Type '/' for commands or select text to format" -msgstr "" +msgstr "Typ '/' voor opdrachten of selecteer tekst om op te maken" #: frontend/src/components/Quiz.vue:656 msgid "Type your answer" -msgstr "" +msgstr "Typ hier uw antwoord" #. Option for the 'Grade Type' (Select) field in DocType 'Education Detail' #: lms/lms/doctype/education_detail/education_detail.json msgid "UK Grading (e.g. 1st, 2:2)" -msgstr "" +msgstr "Britse beoordeling (bijv. 1e, 2:2)" #. Option for the 'Type' (Select) field in DocType 'LMS Assignment' #. Option for the 'Type' (Select) field in DocType 'LMS Assignment Submission' @@ -7041,62 +7037,62 @@ msgstr "" #. Evaluator' #: lms/lms/doctype/course_evaluator/course_evaluator.json msgid "Unavailability" -msgstr "" +msgstr "Niet beschikbaar" #: frontend/src/pages/ProfileEvaluator.vue:276 msgid "Unavailability updated successfully" -msgstr "" +msgstr "Niet beschikbaarheid met succes bijgewerkt" #: lms/lms/doctype/course_evaluator/course_evaluator.py:31 msgid "Unavailable From Date cannot be greater than Unavailable To Date" -msgstr "" +msgstr "De datum 'Niet beschikbaar vanaf' mag niet later zijn dan de datum 'Niet beschikbaar tot'" #. Option for the 'Status' (Select) field in DocType 'LMS Course' #: lms/lms/doctype/lms_course/lms_course.json msgid "Under Review" msgstr "" -#: frontend/src/pages/Batches.vue:330 frontend/src/pages/Courses.vue:356 +#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:355 msgid "Unpublished" -msgstr "" +msgstr "Ongepubliceerd" #: frontend/src/components/Modals/EditCoverImage.vue:60 #: frontend/src/components/UnsplashImageBrowser.vue:54 msgid "Unsplash" -msgstr "" +msgstr "Unsplash" #. Label of the unsplash_access_key (Data) field in DocType 'LMS Settings' #: lms/lms/doctype/lms_settings/lms_settings.json msgid "Unsplash Access Key" -msgstr "" +msgstr "Unsplash Toegangssleutel" #. Option for the 'Role Preference' (Select) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Unstructured Role" -msgstr "" +msgstr "Ongestructureerde rol" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Label of the upcoming (Check) field in DocType 'LMS Course' -#: frontend/src/pages/Batches.vue:328 frontend/src/pages/CourseForm.vue:117 -#: frontend/src/pages/Courses.vue:347 +#: frontend/src/pages/Batches.vue:330 frontend/src/pages/CourseForm.vue:117 +#: frontend/src/pages/Courses.vue:346 #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_course/lms_course.json msgid "Upcoming" -msgstr "" +msgstr "Aankomende" #: frontend/src/pages/Batch.vue:191 frontend/src/pages/Home/AdminHome.vue:34 msgid "Upcoming Batches" -msgstr "" +msgstr "Komende Batches" #: frontend/src/components/UpcomingEvaluations.vue:5 #: frontend/src/pages/Home/AdminHome.vue:92 lms/templates/upcoming_evals.html:3 msgid "Upcoming Evaluations" -msgstr "" +msgstr "Komende Evaluaties" #: frontend/src/pages/Home/AdminHome.vue:128 #: frontend/src/pages/Home/StudentHome.vue:71 msgid "Upcoming Live Classes" -msgstr "" +msgstr "Aankomende live lessen" #: frontend/src/components/Settings/BrandSettings.vue:24 #: frontend/src/components/Settings/SettingDetails.vue:17 @@ -7105,11 +7101,11 @@ msgstr "Bijwerken" #: lms/templates/emails/community_course_membership.html:11 msgid "Update Password" -msgstr "" +msgstr "Wachtwoord Bijwerken" #: frontend/src/pages/ProgrammingExercises/ProgrammingExercises.vue:281 msgid "Updated On" -msgstr "" +msgstr "Bijgewerkt op" #: frontend/src/components/Controls/Uploader.vue:23 msgid "Upload" @@ -7117,26 +7113,26 @@ msgstr "Uploaden" #: frontend/src/components/Assignment.vue:84 msgid "Upload File" -msgstr "" +msgstr "Bestand uploaden" #: frontend/src/components/Assignment.vue:83 msgid "Uploading {0}%" -msgstr "" +msgstr "{0}% uploaden" #. Label of the usage_limit (Int) field in DocType 'LMS Coupon' #: frontend/src/components/Settings/Coupons/CouponDetails.vue:58 #: frontend/src/components/Settings/Coupons/CouponList.vue:182 #: lms/lms/doctype/lms_coupon/lms_coupon.json msgid "Usage Limit" -msgstr "" +msgstr "Beperkingen voor gebruik" #: lms/lms/doctype/lms_coupon/lms_coupon.py:31 msgid "Usage limit cannot be negative" -msgstr "" +msgstr "De gebruikslimiet kan niet negatief zijn" #: frontend/src/components/Modals/EmailTemplateModal.vue:38 msgid "Use HTML" -msgstr "" +msgstr "Gebruik HTML" #. Label of the user (Link) field in DocType 'LMS Job Application' #. Label of the user (Link) field in DocType 'LMS Course Interest' @@ -7149,38 +7145,38 @@ msgstr "Gebruiker" #. Label of the user_category (Select) field in DocType 'User' #: lms/fixtures/custom_field.json lms/templates/signup-form.html:17 msgid "User Category" -msgstr "" +msgstr "Medewerker status" #. Label of the user_field (Select) field in DocType 'LMS Badge' #: lms/lms/doctype/lms_badge/lms_badge.json msgid "User Field" -msgstr "" +msgstr "Gebruiker veld" #. Label of the user_image (Attach Image) field in DocType 'Course Evaluator' #: lms/lms/doctype/course_evaluator/course_evaluator.json msgid "User Image" -msgstr "" +msgstr "Gebruikersafbeelding" #. Option for the 'Type' (Select) field in DocType 'LMS Question' #. Option for the 'Type' (Select) field in DocType 'LMS Quiz Question' #: lms/lms/doctype/lms_question/lms_question.json #: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json msgid "User Input" -msgstr "" +msgstr "Gebruikersinput" #. Name of a DocType #: lms/lms/doctype/user_skill/user_skill.json msgid "User Skill" -msgstr "" +msgstr "Gebruikersvaardigheid" #: lms/job/doctype/job_opportunity/job_opportunity.py:41 msgid "User {0} has reported the job post {1}" -msgstr "" +msgstr "Gebruiker {0} heeft de vacature {1} gemeld" #. Label of the username (Data) field in DocType 'Course Evaluator' #: lms/lms/doctype/course_evaluator/course_evaluator.json msgid "Username" -msgstr "" +msgstr "Gebruikersnaam" #. Label of a shortcut in the LMS Workspace #: lms/lms/workspace/lms/lms.json @@ -7190,7 +7186,7 @@ msgstr "Gebruikers" #. Label of the answer (Small Text) field in DocType 'LMS Quiz Result' #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json msgid "Users Response" -msgstr "" +msgstr "Antwoord gebruikers" #: lms/templates/signup-form.html:83 msgid "Valid email and name required" @@ -7209,28 +7205,28 @@ msgstr "" #. Label of the video_link (Data) field in DocType 'LMS Course' #: lms/lms/doctype/lms_course/lms_course.json msgid "Video Embed Link" -msgstr "" +msgstr "Video insluiten" #: frontend/src/components/Modals/VideoStatistics.vue:6 msgid "Video Statistics for {0}" -msgstr "" +msgstr "Videostatistieken voor {0}" #: frontend/src/pages/JobDetail.vue:31 msgid "View Applications" -msgstr "" +msgstr "Bekijk sollicitaties" #: frontend/src/components/CertificationLinks.vue:10 -#: frontend/src/components/Modals/Event.vue:67 +#: frontend/src/components/Modals/Event.vue:73 msgid "View Certificate" -msgstr "" +msgstr "Bekijk certificaat" #: frontend/src/pages/JobApplications.vue:283 msgid "View Resume" -msgstr "" +msgstr "Bekijk CV" #: frontend/src/components/BatchFeedback.vue:56 msgid "View all feedback" -msgstr "" +msgstr "Alle feedback weergeven" #. Option for the 'Color' (Select) field in DocType 'LMS Course' #: lms/lms/doctype/lms_course/lms_course.json @@ -7239,125 +7235,130 @@ msgstr "" #: frontend/src/components/BatchOverlay.vue:73 msgid "Visit Batch" -msgstr "" +msgstr "Bezoek Batch" #: frontend/src/pages/JobDetail.vue:52 msgid "Visit Website" -msgstr "" +msgstr "Bezoek onze website" #: lms/templates/emails/batch_confirmation.html:25 msgid "Visit the following link to view your " -msgstr "" +msgstr "Bezoek de volgende link om uw " #: lms/templates/emails/batch_start_reminder.html:23 #: lms/templates/emails/live_class_reminder.html:20 msgid "Visit your batch" -msgstr "" +msgstr "Bezoek uw batch" #. Label of the internship (Table) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Volunteering or Internship" -msgstr "" +msgstr "Vrijwilligerswerk of stage" #. Label of the watch_time (Data) field in DocType 'LMS Video Watch Duration' #: frontend/src/components/Modals/VideoStatistics.vue:34 #: lms/lms/doctype/lms_video_watch_duration/lms_video_watch_duration.json msgid "Watch Time" -msgstr "" +msgstr "Kijktijd" #: lms/templates/emails/batch_confirmation.html:6 msgid "We are pleased to inform you that you have been enrolled in our upcoming batch. Congratulations!" -msgstr "" +msgstr "We zijn blij u te kunnen meedelen dat u bent ingeschreven voor onze volgende batch. Gefeliciteerd!" #: lms/templates/emails/payment_reminder.html:7 msgid "We have a limited number of seats, and they won't be available for long!" -msgstr "" +msgstr "We hebben een beperkt aantal plaatsen, en ze zullen niet lang meer beschikbaar zijn!" #: lms/templates/emails/payment_reminder.html:4 msgid "We noticed that you started enrolling in the" -msgstr "" +msgstr "We hebben gemerkt dat je begon te activeren in de" #. Label of the web_page (Link) field in DocType 'LMS Sidebar Item' #: frontend/src/components/Modals/PageModal.vue:23 #: lms/lms/doctype/lms_sidebar_item/lms_sidebar_item.json msgid "Web Page" -msgstr "" +msgstr "Webpagina" #: frontend/src/components/Modals/PageModal.vue:81 msgid "Web page added to sidebar" -msgstr "" +msgstr "Webpagina toegevoegd aan de zijbalk" #. Option for the 'Day' (Select) field in DocType 'Evaluator Schedule' #. Option for the 'Day' (Select) field in DocType 'LMS Certificate Request' #: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json msgid "Wednesday" -msgstr "" +msgstr "Woensdag" #: lms/templates/emails/lms_invite_request_approved.html:4 msgid "Welcome to {0}!" -msgstr "" +msgstr "Welkom op de {0}!" #: frontend/src/pages/PersonaForm.vue:32 msgid "What best describes your role?" -msgstr "" +msgstr "Wat beschrijft het beste uw rol?" #: frontend/src/components/LessonHelp.vue:6 msgid "What does include in preview mean?" -msgstr "" +msgstr "Wat staat er in de preview?" #: frontend/src/pages/PersonaForm.vue:21 msgid "What is your use case for Frappe Learning?" -msgstr "" +msgstr "Wat is uw use case voor Frappe Learning?" #: lms/templates/courses_under_review.html:15 msgid "When a course gets submitted for review, it will be listed here." -msgstr "" +msgstr "Wanneer een cursus ter beoordeling wordt ingezonden zal deze hier worden weergegeven." #: frontend/src/pages/Billing.vue:160 msgid "Where did you hear about us?" -msgstr "" +msgstr "Waar heeft u over ons gehoord?" #: lms/templates/emails/certification.html:10 msgid "With this certification, you can now showcase your updated skills and share your achievement with your colleagues and on LinkedIn. To access your certificate, please click on the link provided below. Make sure you are logged in to the portal." -msgstr "" +msgstr "Met dit certificaat kunt u uw bijgewerkte vaardigheden laten zien en uw prestatie delen met uw collega's en op LinkedIn. Klik op de onderstaande link om uw certificaat te bekijken. Zorg ervoor dat u bent ingelogd op het portaal." #. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json msgid "Withdrawn" +msgstr "Ingetrokken" + +#. Option for the 'Open to' (Select) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Work" msgstr "" #. Label of the work_environment (Section Break) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Work Environment" -msgstr "" +msgstr "Werkomgeving" #. Label of the work_experience (Table) field in DocType 'User' #. Name of a DocType #: lms/fixtures/custom_field.json #: lms/lms/doctype/work_experience/work_experience.json msgid "Work Experience" -msgstr "" +msgstr "Werkervaring" #. Label of the work_experience_details (Section Break) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Work Experience Details" -msgstr "" +msgstr "Werkervaring details" #. Label of the work_mode (Select) field in DocType 'Job Opportunity' #: frontend/src/pages/JobForm.vue:32 frontend/src/pages/Jobs.vue:91 #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "Work Mode" -msgstr "" +msgstr "Werkmodus" #: frontend/src/components/CourseReviews.vue:8 #: frontend/src/components/Modals/ReviewModal.vue:5 msgid "Write a Review" -msgstr "" +msgstr "Schrijf een recensie" #: frontend/src/components/Assignment.vue:126 msgid "Write your answer here" -msgstr "" +msgstr "Schrijf hier uw antwoord" #. Option for the 'Color' (Select) field in DocType 'LMS Course' #. Option for the 'Color' (Select) field in DocType 'LMS Lesson Note' @@ -7368,35 +7369,35 @@ msgstr "" #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:97 msgid "You already have an evaluation on {0} at {1} for the course {2}." -msgstr "" +msgstr "U hebt al een evaluatie op {0} op {1} voor de cursus {2}." #: frontend/src/pages/CourseCertification.vue:14 msgid "You are already certified for this course. Click on the card below to open your certificate." -msgstr "" +msgstr "U bent al gecertificeerd voor deze cursus. Klik op de kaart hieronder om uw certificaat te openen." #: lms/lms/api.py:126 msgid "You are already enrolled for this batch." -msgstr "" +msgstr "U bent al ingeschreven voor deze batch." #: lms/lms/api.py:120 msgid "You are already enrolled for this course." -msgstr "" +msgstr "U bent al ingeschreven voor deze cursus." #: frontend/src/pages/Batch.vue:173 msgid "You are not a member of this batch. Please checkout our upcoming batches." -msgstr "" +msgstr "U maakt geen deel uit van deze batch. Bekijk onze volgende batches." #: lms/lms/doctype/lms_certificate/lms_certificate.py:170 msgid "You are not enrolled in this course." -msgstr "" +msgstr "U bent niet ingeschreven voor deze cursus." #: frontend/src/pages/SCORMChapter.vue:25 msgid "You are not enrolled in this course. Please enroll to access this lesson." -msgstr "" +msgstr "U bent niet ingeschreven voor deze cursus. Schrijf u in om toegang te krijgen tot deze les." #: frontend/src/components/NoPermission.vue:23 msgid "You are not permitted to access this page." -msgstr "" +msgstr "U bent niet toegestaan om deze pagina te bekijken." #: lms/templates/emails/lms_course_interest.html:13 #: lms/templates/emails/lms_invite_request_approved.html:11 @@ -7405,241 +7406,241 @@ msgstr "" #: frontend/src/components/Quiz.vue:37 msgid "You can attempt this quiz {0}." -msgstr "" +msgstr "U kunt deze kwis {0} proberen." #: frontend/src/pages/Home/Streak.vue:16 msgid "You can do better," -msgstr "" +msgstr "Je kunt het beter doen," #: lms/templates/emails/job_application.html:6 msgid "You can find their resume attached to this email." -msgstr "" +msgstr "U vindt hun Cv als bijlage bij deze e-mail." #: frontend/src/pages/ProfileEvaluator.vue:14 msgid "You cannot change the availability when the site is being updated." -msgstr "" +msgstr "U kunt de beschikbaarheid niet wijzigen wanneer de site wordt bijgewerkt." #: frontend/src/pages/ProfileRoles.vue:12 msgid "You cannot change the roles in read-only mode." -msgstr "" +msgstr "U kunt de rollen in de alleen-lezen modus niet wijzigen." #: lms/lms/doctype/lms_enrollment/lms_enrollment.py:36 msgid "You cannot enroll in an unpublished course." -msgstr "" +msgstr "U kunt zich niet inschrijven voor een niet-gepubliceerde cursus." -#: lms/lms/utils.py:2085 +#: lms/lms/utils.py:2086 msgid "You cannot enroll in an unpublished program." -msgstr "" +msgstr "U kunt zich niet inschrijven voor een niet-gepubliceerd programma." #: lms/lms/doctype/lms_enrollment/lms_enrollment.py:27 msgid "You cannot enroll in this course as self-learning is disabled. Please contact the Administrator." -msgstr "" +msgstr "U kunt zich niet inschrijven voor deze cursus omdat zelfstudie is uitgeschakeld. Neem contact op met de beheerder." #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:113 msgid "You cannot schedule evaluations after {0}." -msgstr "" +msgstr "U kunt geen evaluaties inplannen na {0}." #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:104 msgid "You cannot schedule evaluations for past slots." -msgstr "" +msgstr "U kunt geen evaluaties plannen voor slots uit het verleden." -#: lms/lms/utils.py:2259 +#: lms/lms/utils.py:2260 msgid "You do not have access to this batch." -msgstr "" +msgstr "U hebt geen toegang tot deze batch." -#: lms/lms/utils.py:2242 +#: lms/lms/utils.py:2243 msgid "You do not have access to this course." -msgstr "" +msgstr "U hebt geen toegang tot deze cursus." #: frontend/src/components/NoPermission.vue:9 msgid "You do not have permission to access this page." -msgstr "" +msgstr "U heeft geen rechten om deze pagina te openen." #: lms/lms/api.py:1506 lms/lms/api.py:1510 msgid "You do not have permission to update meta tags." -msgstr "" +msgstr "U hebt geen toestemming om metatags bij te werken." #: lms/templates/notifications.html:27 msgid "You don't have any notifications." -msgstr "" +msgstr "U heeft geen meldingen." #: frontend/src/components/Quiz.vue:265 #, python-format msgid "You got {0}% correct answers with a score of {1} out of {2}" -msgstr "" +msgstr "U hebt {0}% juiste antwoorden met een score van {1} van {2}" #: lms/templates/emails/live_class_reminder.html:6 msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session." -msgstr "" +msgstr "Morgen staat er een live les voor u gepland. Wees voorbereid en kom op tijd voor de sessie." #: lms/job/doctype/lms_job_application/lms_job_application.py:26 msgid "You have already applied for this job." -msgstr "" +msgstr "U hebt al op deze vacature gesolliciteerd." #: frontend/src/components/Quiz.vue:96 msgid "You have already exceeded the maximum number of attempts allowed for this quiz." -msgstr "" +msgstr "U heeft het maximum aantal pogingen dat is toegestaan voor deze kwis al overschreden." #: lms/lms/api.py:150 msgid "You have already purchased the certificate for this course." -msgstr "" +msgstr "U hebt het certificaat voor deze cursus al gekocht." #: lms/lms/doctype/lms_course_review/lms_course_review.py:22 msgid "You have already reviewed this course" -msgstr "" +msgstr "U heeft deze cursus al nagekeken" #: frontend/src/pages/JobDetail.vue:68 msgid "You have applied" -msgstr "" +msgstr "U heeft gesolliciteerd" #: frontend/src/components/BatchOverlay.vue:181 msgid "You have been enrolled in this batch" -msgstr "" +msgstr "U bent ingeschreven in deze batch" #: frontend/src/components/CourseCardOverlay.vue:235 msgid "You have been enrolled in this course" -msgstr "" +msgstr "U bent ingeschreven voor deze cursus" #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:30 msgid "You have exceeded the maximum number of attempts ({0}) for this quiz" -msgstr "" +msgstr "U heeft het maximum aantal pogingen ({0}) dat is toegestaan voor deze kwis al overschreden" #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:56 msgid "You have got a score of {0} for the quiz {1}" -msgstr "" +msgstr "U heeft een score van {0} voor de quiz {1}" #: lms/lms/doctype/lms_certificate/lms_certificate.py:179 msgid "You have not completed the course yet." -msgstr "" +msgstr "U hebt de cursus nog niet voltooid." #: frontend/src/pages/ProfileCertificates.vue:26 msgid "You have not received any certificates yet." -msgstr "" +msgstr "U heeft nog geen certificaten ontvangen." #: lms/lms/widgets/NoPreviewModal.html:12 msgid "You have opted to be notified for this course. You will receive an email when the course becomes available." -msgstr "" +msgstr "U hebt ervoor gekozen om op de hoogte te worden gebracht van deze cursus. U ontvangt een e-mail wanneer de cursus beschikbaar is." #: frontend/src/pages/Home/Home.vue:103 frontend/src/pages/Home/Home.vue:126 msgid "You have {0} upcoming {1} and {2} {3} scheduled." -msgstr "" +msgstr "U hebt een {0} aanstaande {1} en een {2} {3} gepland." #: frontend/src/pages/Home/Home.vue:110 frontend/src/pages/Home/Home.vue:133 msgid "You have {0} upcoming {1}." -msgstr "" +msgstr "U heeft {0} aankomende {1}." #: frontend/src/pages/Home/Home.vue:115 frontend/src/pages/Home/Home.vue:138 msgid "You have {0} {1} scheduled." -msgstr "" +msgstr "U hebt {0} {1} gepland." #: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.py:31 msgid "You must be a Moderator or Batch Evaluator to enroll users in a batch." -msgstr "" +msgstr "U moet een Moderator of Batch Evaluator zijn om gebruikers in een batch in te schrijven." #: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.py:23 msgid "You must be a Moderator to assign badges to users." -msgstr "" +msgstr "U moet een Moderator zijn om badges aan gebruikers toe te wijzen." #: 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 "U moet ingeschreven zijn in de cursus om een beoordeling te kunnen geven" #: lms/lms/doctype/lms_enrollment/lms_enrollment.py:50 msgid "You need to complete the payment for this course before enrolling." -msgstr "" +msgstr "U moet de betaling voor deze cursus voltooien voordat u zich inschrijft." #: frontend/src/components/CourseCardOverlay.vue:219 msgid "You need to login first to enroll for this course" -msgstr "" +msgstr "U moet eerst inloggen om in te schrijven voor deze cursus" #: frontend/src/pages/Home/Streak.vue:19 msgid "You rock," -msgstr "" +msgstr "Je bent geweldig," #: frontend/src/components/Quiz.vue:7 msgid "You will have to complete the quiz to continue the video" -msgstr "" +msgstr "U moet de quiz voltooien om verder te kunnen gaan met de video" #: frontend/src/components/Quiz.vue:30 #, python-format msgid "You will have to get {0}% correct answers in order to pass the quiz." -msgstr "" +msgstr "U moet {0}% juiste antwoorden hebben om voor de quiz te slagen." #: lms/templates/emails/mentor_request_creation_email.html:4 msgid "You've applied to become a mentor for this course. Your request is currently under review." -msgstr "" +msgstr "U hebt een aanvraag ingediend om mentor te worden voor deze cursus. Uw aanvraag wordt momenteel bekeken." #: frontend/src/components/Assignment.vue:58 msgid "You've successfully submitted the assignment." -msgstr "" +msgstr "U hebt de opdracht succesvol ingediend." #. Label of the youtube (Data) field in DocType 'Course Lesson' #: lms/lms/doctype/course_lesson/course_lesson.json msgid "YouTube Video URL" -msgstr "" +msgstr "YouTube-video URL" #. Description of the 'YouTube Video URL' (Data) field in DocType 'Course #. Lesson' #: lms/lms/doctype/course_lesson/course_lesson.json msgid "YouTube Video will appear at the top of the lesson." -msgstr "" +msgstr "YouTube Video verschijnt bovenaan de les." #: lms/www/new-sign-up.html:56 msgid "Your Account has been successfully created!" -msgstr "" +msgstr "Uw account is succesvol aangemaakt!" #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:121 msgid "Your Output" -msgstr "" +msgstr "Uw uitvoer" #: lms/lms/doctype/lms_batch/lms_batch.py:374 msgid "Your batch {0} is starting tomorrow" -msgstr "" +msgstr "Uw batch {0} begint morgen" #: frontend/src/components/Controls/Uploader.vue:41 msgid "Your browser does not support the video tag." -msgstr "" +msgstr "Uw browser ondersteunt deze video-tag niet." #: frontend/src/pages/ProfileEvaluator.vue:143 msgid "Your calendar is set." -msgstr "" +msgstr "Uw kalender is ingesteld." #: lms/lms/doctype/lms_live_class/lms_live_class.py:95 msgid "Your class on {0} is today" -msgstr "" +msgstr "Uw les op {0} is vandaag" #: frontend/src/components/Modals/EmailTemplateModal.vue:35 msgid "Your enrollment in {{ batch_name }} is confirmed" -msgstr "" +msgstr "Uw inschrijving op {{ batch_name }} is bevestigd" #: lms/lms/notification/certificate_request_reminder/certificate_request_reminder.html:3 #: lms/templates/emails/certificate_request_notification.html:3 msgid "Your evaluation for the course {0} has been scheduled on {1} at {2} {3}." -msgstr "" +msgstr "Uw evaluatie voor de cursus {0} is gepland op {1} bij {2} {3}." #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:137 msgid "Your evaluation slot has been booked" -msgstr "" +msgstr "Uw evaluatieafspraak is gereserveerd" #: lms/templates/emails/certificate_request_notification.html:5 msgid "Your evaluator is {0}" -msgstr "" +msgstr "Uw beoordelaar is {0}" #: frontend/src/pages/Home/Streak.vue:54 msgid "Your learning streak counts the number of days in a row you’ve kept up your learning, whether it’s a lesson, quiz, or assignment. Don’t worry, weekends don’t break your streak." -msgstr "" +msgstr "Uw leer-reeks telt het aantal dagen achter elkaar dat u hebt geleerd, of het nu om een les, quiz of opdracht gaat. Maak u geen zorgen, weekenden verbreken uw reeks niet." #: lms/templates/emails/mentor_request_status_update_email.html:4 msgid "Your request to join us as a mentor for the course" -msgstr "" +msgstr "Uw verzoek om als mentor deel te nemen aan de cursus" #: frontend/src/components/Quiz.vue:258 msgid "Your submission has been successfully saved. The instructor will review and grade it shortly, and you'll be notified of your final result." -msgstr "" +msgstr "Uw inzending is succesvol opgeslagen. De docent zal het binnenkort nakijken en beoordelen, en u krijgt bericht over uw eindresultaat." #: frontend/src/pages/Lesson.vue:8 msgid "Zen Mode" -msgstr "" +msgstr "Zen modus" #. Label of the zoom_account (Link) field in DocType 'LMS Batch' #. Label of the zoom_account (Link) field in DocType 'LMS Live Class' @@ -7647,92 +7648,92 @@ msgstr "" #: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_live_class/lms_live_class.json msgid "Zoom Account" -msgstr "" +msgstr "Zoom account" #: frontend/src/components/Modals/ZoomAccountModal.vue:162 msgid "Zoom Account created successfully" -msgstr "" +msgstr "Zoom-account succesvol aangemaakt" #: frontend/src/components/Modals/ZoomAccountModal.vue:200 msgid "Zoom Account updated successfully" -msgstr "" +msgstr "Zoom account succesvol bijgewerkt" #. Name of a DocType #: lms/lms/doctype/zoom_settings/zoom_settings.json msgid "Zoom Settings" -msgstr "" +msgstr "Zoom-instellingen" #: frontend/src/components/StudentHeatmap.vue:6 msgid "activities" -msgstr "" +msgstr "activiteiten" #: frontend/src/components/StudentHeatmap.vue:6 msgid "activity" -msgstr "" +msgstr "activiteit" #: frontend/src/components/CourseInstructors.vue:24 #: frontend/src/components/CourseInstructors.vue:45 msgid "and" -msgstr "" +msgstr "en" #: frontend/src/components/InstallPrompt.vue:54 msgid "and then 'Add to Home Screen'" -msgstr "" +msgstr "en vervolgens \"Toevoegen aan beginscherm\"" #: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125 msgid "applicant" -msgstr "" +msgstr "kandidaat" #: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125 msgid "applicants" -msgstr "" +msgstr "kandidaten" #: frontend/src/components/VideoBlock.vue:15 msgid "at {0} minutes" -msgstr "" +msgstr "op {0} minuten" #: lms/templates/emails/payment_reminder.html:4 msgid "but didn’t complete your payment" -msgstr "" +msgstr "maar uw betaling is niet voltooid" #: lms/templates/emails/mentor_request_creation_email.html:5 msgid "cancel your application" -msgstr "" +msgstr "uw sollicitatie annuleren" #: frontend/src/pages/CertifiedParticipants.vue:98 msgid "certificate" -msgstr "" +msgstr "certificaat" #: frontend/src/pages/CertifiedParticipants.vue:97 msgid "certificates" -msgstr "" +msgstr "certificaten" #: frontend/src/components/CourseCard.vue:102 frontend/src/pages/Lesson.vue:143 #: frontend/src/pages/Lesson.vue:304 #: frontend/src/pages/Programs/ProgramDetail.vue:14 #: frontend/src/pages/Programs/StudentPrograms.vue:44 msgid "completed" -msgstr "" +msgstr "voltooid" #: frontend/src/pages/Programs/StudentPrograms.vue:29 msgid "course" -msgstr "" +msgstr "cursus" #: frontend/src/pages/Programs/StudentPrograms.vue:29 msgid "courses" -msgstr "" +msgstr "cursussen" #: frontend/src/pages/Home/Streak.vue:24 msgid "day streak" -msgstr "" +msgstr "dagreeks" #: frontend/src/pages/Home/Streak.vue:37 frontend/src/pages/Home/Streak.vue:45 msgid "days" -msgstr "" +msgstr "dagen" #: frontend/src/pages/CourseForm.vue:243 msgid "e.g. IST, UTC, GMT..." -msgstr "" +msgstr "bijv. IST, UTC, GMT..." #: frontend/src/pages/Home/Home.vue:101 frontend/src/pages/Home/Home.vue:124 msgid "evaluation" @@ -7740,15 +7741,15 @@ msgstr "evaluatie" #: frontend/src/pages/Home/Home.vue:101 frontend/src/pages/Home/Home.vue:124 msgid "evaluations" -msgstr "" +msgstr "evaluaties" #: lms/templates/emails/mentor_request_status_update_email.html:4 msgid "has been" -msgstr "" +msgstr "is geweest" #: frontend/src/components/StudentHeatmap.vue:8 msgid "in the last" -msgstr "" +msgstr "in de laatste" #: lms/templates/signup-form.html:12 msgid "jane@example.com" @@ -7760,33 +7761,33 @@ msgstr "lessen" #: frontend/src/pages/Home/Home.vue:99 frontend/src/pages/Home/Home.vue:123 msgid "live class" -msgstr "" +msgstr "live klas" #: frontend/src/pages/Home/Home.vue:99 frontend/src/pages/Home/Home.vue:123 msgid "live classes" -msgstr "" +msgstr "live klassen" #: frontend/src/pages/Search/Search.vue:38 msgid "match" -msgstr "" +msgstr "overeenkomst" #: frontend/src/pages/Search/Search.vue:38 msgid "matches" -msgstr "" +msgstr "overeenkomsten" #: frontend/src/pages/Programs/Programs.vue:42 #: frontend/src/pages/Programs/StudentPrograms.vue:36 msgid "member" -msgstr "" +msgstr "lid" #: frontend/src/pages/Programs/Programs.vue:42 #: frontend/src/pages/Programs/StudentPrograms.vue:36 msgid "members" -msgstr "" +msgstr "leden" #: frontend/src/components/Modals/LiveClassAttendance.vue:57 msgid "minutes" -msgstr "" +msgstr "minuten" #: frontend/src/components/CourseInstructors.vue:45 msgid "others" @@ -7794,7 +7795,7 @@ msgstr "anderen" #: frontend/src/pages/QuizForm.vue:344 msgid "question_detail" -msgstr "" +msgstr "vraag_detail" #: frontend/src/pages/Programs/ProgramEnrollment.vue:80 msgid "rating" @@ -7802,16 +7803,16 @@ msgstr "beoordeling" #: frontend/src/components/Settings/Categories.vue:19 msgid "saving..." -msgstr "" +msgstr "opslaan..." #: frontend/src/pages/Programs/ProgramEnrollment.vue:72 msgid "students" -msgstr "" +msgstr "studenten" #: lms/templates/emails/published_batch_notification.html:7 #: lms/templates/emails/published_course_notification.html:7 msgid "that might interest you!" -msgstr "" +msgstr "dat interesseert u misschien!" #: frontend/src/components/CommandPalette/CommandPalette.vue:59 msgid "to close" @@ -7827,91 +7828,91 @@ msgstr "" #: frontend/src/components/BatchFeedback.vue:12 msgid "to view your feedback." -msgstr "" +msgstr "om uw feedback te bekijken." #: frontend/src/components/StudentHeatmap.vue:10 msgid "weeks" -msgstr "" +msgstr "weken" #: lms/templates/emails/mentor_request_creation_email.html:5 msgid "you can" -msgstr "" +msgstr "U kunt" #: frontend/src/pages/Assignments.vue:26 msgid "{0} Assignments" -msgstr "" +msgstr "{0} Opdrachten" #: frontend/src/pages/ProgrammingExercises/ProgrammingExercises.vue:39 msgid "{0} Exercises" -msgstr "" +msgstr "{0} Oefeningen" #: frontend/src/pages/Quizzes.vue:18 msgid "{0} Quizzes" -msgstr "" +msgstr "{0} Quizzen" #: lms/lms/api.py:751 lms/lms/api.py:759 msgid "{0} Settings not found" -msgstr "" +msgstr "{0} Instellingen niet gevonden" #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:12 msgid "{0} Submissions" -msgstr "" +msgstr "{0} Inzendingen" #: lms/templates/emails/job_application.html:2 msgid "{0} has applied for the job position {1}" -msgstr "" +msgstr "{0} heeft gesolliciteerd naar de vacature {1}" #: lms/lms/doctype/lms_batch/lms_batch.py:186 msgid "{0} has published a new batch {1}" -msgstr "" +msgstr "{0} heeft een nieuwe batch gepubliceerd {1}" #: lms/lms/doctype/lms_course/lms_course.py:195 msgid "{0} has published a new course {1}" -msgstr "" +msgstr "{0} heeft een nieuwe cursus {1} gepubliceerd" #: lms/templates/emails/job_report.html:4 msgid "{0} has reported a job post for the following reason." -msgstr "" +msgstr "{0} heeft een vacature gerapporteerd om de volgende reden." #: lms/templates/emails/assignment_submission.html:2 msgid "{0} has submitted the assignment {1}" -msgstr "" +msgstr "{0} heeft de opdracht ingestuurd {1}" #: lms/lms/doctype/lms_course_mentor_mapping/lms_course_mentor_mapping.py:15 msgid "{0} is already a mentor for course {1}" -msgstr "" +msgstr "{0} is al een mentor voor cursus {1}" #: lms/lms/doctype/lms_certificate/lms_certificate.py:94 msgid "{0} is already certified for the batch {1}" -msgstr "" +msgstr "{0} is al gecertificeerd voor de batch {1}" #: lms/lms/doctype/lms_certificate/lms_certificate.py:75 msgid "{0} is already certified for the course {1}" -msgstr "" +msgstr "{0} is al gecertificeerd voor de cursus {1}" #: lms/lms/notification/certificate_request_reminder/certificate_request_reminder.html:5 msgid "{0} is your evaluator" -msgstr "" +msgstr "{0} is uw beoordelaar" #: lms/lms/utils.py:516 msgid "{0} mentioned you in a comment" -msgstr "" +msgstr "{0} heeft u genoemd in een reactie" #: lms/templates/emails/mention_template.html:2 msgid "{0} mentioned you in a comment in your batch." -msgstr "" +msgstr "{0} noemde u in een reactie in uw batch." #: lms/lms/utils.py:469 lms/lms/utils.py:475 msgid "{0} mentioned you in a comment in {1}" -msgstr "" +msgstr "{0} heeft u vermeld in een opmerking in een {1}" #: lms/lms/api.py:800 msgid "{0} not found" -msgstr "" +msgstr "{0} niet gevonden" #: frontend/src/pages/Jobs.vue:33 msgid "{0} {1} Jobs" -msgstr "" +msgstr "{0} {1} Banen" #. Count format of shortcut in the LMS Workspace #: lms/lms/workspace/lms/lms.json @@ -7921,22 +7922,22 @@ msgstr "" #. Count format of shortcut in the LMS Workspace #: lms/lms/workspace/lms/lms.json msgid "{} Completed" -msgstr "" +msgstr "{} Voltooid" #. Count format of shortcut in the LMS Workspace #: lms/lms/workspace/lms/lms.json msgid "{} Enrolled" -msgstr "" +msgstr "{} Ingeschreven" #. Count format of shortcut in the LMS Workspace #: lms/lms/workspace/lms/lms.json msgid "{} Granted" -msgstr "" +msgstr "{} Toegekend" #. Count format of shortcut in the LMS Workspace #: lms/lms/workspace/lms/lms.json msgid "{} Passed" -msgstr "" +msgstr "{} Geslaagd" #. Count format of shortcut in the LMS Workspace #: lms/lms/workspace/lms/lms.json diff --git a/lms/locale/pl.po b/lms/locale/pl.po index b4f0340f..ca3b6cb8 100644 --- a/lms/locale/pl.po +++ b/lms/locale/pl.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n" -"POT-Creation-Date: 2026-01-16 16:04+0000\n" -"PO-Revision-Date: 2026-01-21 20:16\n" +"POT-Creation-Date: 2026-01-23 16:05+0000\n" +"PO-Revision-Date: 2026-02-05 06:43\n" "Last-Translator: jannat@frappe.io\n" "Language-Team: Polish\n" "MIME-Version: 1.0\n" @@ -319,7 +319,7 @@ msgid "Administrator" msgstr "Administrator" #. Name of a role -#: frontend/src/pages/Batches.vue:319 lms/lms/doctype/lms_badge/lms_badge.json +#: frontend/src/pages/Batches.vue:321 lms/lms/doctype/lms_badge/lms_badge.json msgid "All" msgstr "" @@ -486,7 +486,7 @@ msgstr "" msgid "Apps" msgstr "Aplikacje" -#: frontend/src/pages/Batches.vue:329 +#: frontend/src/pages/Batches.vue:331 msgid "Archived" msgstr "W archiwum" @@ -753,7 +753,7 @@ msgstr "" #. Label of the batch_name (Link) field in DocType 'LMS Certificate' #. Label of the batch_name (Link) field in DocType 'LMS Certificate Request' #. Label of the batch_name (Link) field in DocType 'LMS Live Class' -#: frontend/src/components/Modals/Event.vue:32 +#: frontend/src/components/Modals/Event.vue:35 #: frontend/src/components/Settings/BadgeForm.vue:195 #: frontend/src/components/Settings/Badges.vue:200 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125 @@ -878,7 +878,7 @@ msgid "Batch:" msgstr "Grupa:" #. Label of the batches (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/Batches.vue:350 frontend/src/pages/Batches.vue:357 +#: frontend/src/pages/Batches.vue:352 frontend/src/pages/Batches.vue:359 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121 msgid "Batches" msgstr "" @@ -1023,7 +1023,7 @@ msgstr "" msgid "Certificate of Completion" msgstr "" -#: frontend/src/components/Modals/Event.vue:347 +#: frontend/src/components/Modals/Event.vue:353 msgid "Certificate saved successfully" msgstr "" @@ -1043,7 +1043,7 @@ msgstr "" #. Label of a chart in the LMS Workspace #. Label of a Card Break in the LMS Workspace #. Label of a Link in the LMS Workspace -#: frontend/src/components/Modals/Event.vue:411 +#: frontend/src/components/Modals/Event.vue:427 #: frontend/src/components/Sidebar/AppSidebar.vue:550 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100 #: frontend/src/pages/CourseCertification.vue:10 @@ -1771,7 +1771,7 @@ msgstr "" #: frontend/src/components/Modals/BatchStudentProgress.vue:95 #: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/CourseCertification.vue:127 -#: frontend/src/pages/Courses.vue:365 frontend/src/pages/Courses.vue:372 +#: frontend/src/pages/Courses.vue:364 frontend/src/pages/Courses.vue:371 #: frontend/src/pages/Programs/ProgramForm.vue:49 #: frontend/src/pages/Programs/Programs.vue:35 #: lms/lms/doctype/lms_batch/lms_batch.json @@ -1878,7 +1878,7 @@ msgstr "" msgid "Create your first quiz" msgstr "" -#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:355 +#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:354 msgid "Created" msgstr "utworzył(a)" @@ -1954,7 +1954,7 @@ msgstr "" #. Label of the date (Date) field in DocType 'LMS Certificate Request' #. Label of the date (Date) field in DocType 'LMS Live Class' #. Label of the date (Date) field in DocType 'Scheduled Flow' -#: frontend/src/components/Modals/Event.vue:40 +#: frontend/src/components/Modals/Event.vue:46 #: frontend/src/components/Modals/LiveClassModal.vue:29 #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json @@ -2241,7 +2241,7 @@ msgstr "" msgid "Edit Email Template" msgstr "" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:13 msgid "Edit Payment Gateway" msgstr "" @@ -2424,7 +2424,7 @@ msgstr "" msgid "Enroll Now" msgstr "" -#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:358 +#: frontend/src/pages/Batches.vue:334 frontend/src/pages/Courses.vue:357 #: frontend/src/pages/Programs/StudentPrograms.vue:96 msgid "Enrolled" msgstr "" @@ -2526,7 +2526,7 @@ msgstr "" #. Label of a Link in the LMS Workspace #. Label of a shortcut in the LMS Workspace -#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json +#: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json msgid "Evaluation" msgstr "" @@ -2551,7 +2551,7 @@ msgstr "" msgid "Evaluation end date cannot be less than the batch end date." msgstr "" -#: frontend/src/components/Modals/Event.vue:286 +#: frontend/src/components/Modals/Event.vue:292 msgid "Evaluation saved successfully" msgstr "" @@ -2664,7 +2664,7 @@ msgstr "" #. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:33 -#: frontend/src/components/Modals/Event.vue:144 +#: frontend/src/components/Modals/Event.vue:150 #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Expiry Date" msgstr "Data ważności" @@ -2695,7 +2695,7 @@ msgstr "" #. Submission' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:396 +#: frontend/src/components/Modals/Event.vue:412 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Fail" @@ -3209,7 +3209,7 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' #. Option for the 'Status' (Select) field in DocType 'LMS Course' -#: frontend/src/components/Modals/Event.vue:388 +#: frontend/src/components/Modals/Event.vue:404 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_course/lms_course.json msgid "In Progress" @@ -3353,7 +3353,7 @@ msgstr "" #. Label of the issue_date (Date) field in DocType 'Certification' #. Label of the issue_date (Date) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:28 -#: frontend/src/components/Modals/Event.vue:138 +#: frontend/src/components/Modals/Event.vue:144 #: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Issue Date" @@ -3456,7 +3456,7 @@ msgstr "" msgid "Join Call" msgstr "" -#: frontend/src/components/Modals/Event.vue:78 +#: frontend/src/components/Modals/Event.vue:84 msgid "Join Meeting" msgstr "" @@ -3896,7 +3896,7 @@ msgstr "LinkedIn" msgid "LinkedIn ID" msgstr "" -#: frontend/src/pages/Courses.vue:341 +#: frontend/src/pages/Courses.vue:340 msgid "Live" msgstr "" @@ -4429,7 +4429,7 @@ msgstr "Nazwa" #: frontend/src/components/Settings/Members.vue:17 #: frontend/src/components/Settings/PaymentGateways.vue:16 #: frontend/src/components/Settings/ZoomSettings.vue:17 -#: frontend/src/pages/Courses.vue:344 +#: frontend/src/pages/Courses.vue:343 #: frontend/src/pages/Programs/Programs.vue:10 #: lms/lms/doctype/lms_badge/lms_badge.json msgid "New" @@ -4461,7 +4461,7 @@ msgstr "" msgid "New Job Applicant" msgstr "" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:12 msgid "New Payment Gateway" msgstr "" @@ -4778,12 +4778,7 @@ msgstr "" #: frontend/src/components/UserAvatar.vue:11 #: frontend/src/pages/CertifiedParticipants.vue:46 #: frontend/src/pages/Profile.vue:69 -msgid "Open to Opportunities" -msgstr "" - -#. Option for the 'Open to' (Select) field in DocType 'User' -#: lms/fixtures/custom_field.json -msgid "Opportunities" +msgid "Open to Work" msgstr "" #. Label of the option (Data) field in DocType 'LMS Option' @@ -4924,7 +4919,7 @@ msgstr "" #. Submission' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:392 +#: frontend/src/components/Modals/Event.vue:408 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Pass" @@ -5054,7 +5049,7 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' #. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' -#: frontend/src/components/Modals/Event.vue:384 +#: frontend/src/components/Modals/Event.vue:400 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json msgid "Pending" @@ -5194,7 +5189,7 @@ msgstr "" msgid "Please login to continue with payment." msgstr "" -#: lms/lms/utils.py:2081 +#: lms/lms/utils.py:2082 msgid "Please login to enroll in the program." msgstr "" @@ -5525,7 +5520,7 @@ msgstr "" #. Label of the published (Check) field in DocType 'LMS Course' #. Label of the published (Check) field in DocType 'LMS Program' #: frontend/src/components/Modals/BulkCertificates.vue:51 -#: frontend/src/components/Modals/Event.vue:122 +#: frontend/src/components/Modals/Event.vue:128 #: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105 #: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/StudentPrograms.vue:100 @@ -5693,7 +5688,7 @@ msgstr "" #. Label of the rating (Data) field in DocType 'LMS Course' #. Label of the rating (Rating) field in DocType 'LMS Course Review' #: frontend/src/components/CourseCardOverlay.vue:147 -#: frontend/src/components/Modals/Event.vue:92 +#: frontend/src/components/Modals/Event.vue:98 #: frontend/src/components/Modals/ReviewModal.vue:18 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_course/lms_course.json @@ -5929,14 +5924,14 @@ msgstr "Sobota" #: frontend/src/components/Modals/AssignmentForm.vue:65 #: frontend/src/components/Modals/EditProfile.vue:121 #: frontend/src/components/Modals/EmailTemplateModal.vue:12 -#: frontend/src/components/Modals/Event.vue:115 -#: frontend/src/components/Modals/Event.vue:151 +#: frontend/src/components/Modals/Event.vue:121 +#: frontend/src/components/Modals/Event.vue:157 #: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeForm.vue:78 #: frontend/src/components/Settings/Coupons/CouponDetails.vue:78 -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:41 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:129 #: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17 #: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14 @@ -6048,7 +6043,7 @@ msgstr "" msgid "Select Date" msgstr "" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:26 msgid "Select Payment Gateway" msgstr "" @@ -6364,7 +6359,7 @@ msgstr "" #. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Submission' #. Label of the status (Select) field in DocType 'LMS Test Case Submission' -#: frontend/src/components/Modals/Event.vue:99 +#: frontend/src/components/Modals/Event.vue:105 #: frontend/src/components/Settings/Badges.vue:228 #: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/pages/AssignmentSubmissionList.vue:19 @@ -6475,7 +6470,7 @@ msgstr "" #. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:106 +#: frontend/src/components/Modals/Event.vue:112 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Summary" msgstr "Podsumowanie" @@ -6571,7 +6566,7 @@ msgstr "" #. Label of the template (Link) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:43 -#: frontend/src/components/Modals/Event.vue:127 +#: frontend/src/components/Modals/Event.vue:133 #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Template" msgstr "Szablon" @@ -6620,7 +6615,7 @@ msgstr "" msgid "Thanks and Regards" msgstr "" -#: lms/lms/utils.py:2247 +#: lms/lms/utils.py:2248 msgid "The batch does not exist." msgstr "" @@ -6628,7 +6623,7 @@ msgstr "" msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session." msgstr "" -#: lms/lms/utils.py:1747 +#: lms/lms/utils.py:1748 msgid "The coupon code '{0}' is invalid." msgstr "" @@ -6652,7 +6647,7 @@ msgstr "" msgid "The last day to schedule your evaluations is " msgstr "" -#: lms/lms/utils.py:2231 +#: lms/lms/utils.py:2232 msgid "The lesson does not exist." msgstr "" @@ -6660,7 +6655,7 @@ msgstr "" msgid "The slot is already booked by another participant." msgstr "" -#: lms/lms/utils.py:1361 lms/lms/utils.py:1477 lms/lms/utils.py:1944 +#: lms/lms/utils.py:1362 lms/lms/utils.py:1478 lms/lms/utils.py:1945 msgid "The specified batch does not exist." msgstr "" @@ -6726,15 +6721,15 @@ msgstr "" msgid "This class has ended" msgstr "" -#: lms/lms/utils.py:1776 +#: lms/lms/utils.py:1777 msgid "This coupon has expired." msgstr "" -#: lms/lms/utils.py:1779 +#: lms/lms/utils.py:1780 msgid "This coupon has reached its maximum usage limit." msgstr "" -#: lms/lms/utils.py:1788 +#: lms/lms/utils.py:1789 msgid "This coupon is not applicable to this {0}." msgstr "" @@ -6742,7 +6737,7 @@ msgstr "" msgid "This course has:" msgstr "" -#: lms/lms/utils.py:1707 +#: lms/lms/utils.py:1708 msgid "This course is free." msgstr "" @@ -6799,7 +6794,7 @@ msgid "Thursday" msgstr "czwartek" #. Label of the time (Time) field in DocType 'LMS Live Class' -#: frontend/src/components/Modals/Event.vue:48 +#: frontend/src/components/Modals/Event.vue:54 #: frontend/src/components/Modals/LiveClassModal.vue:52 #: frontend/src/components/Quiz.vue:58 #: lms/lms/doctype/lms_live_class/lms_live_class.json @@ -6934,7 +6929,7 @@ msgstr "" msgid "To Date" msgstr "" -#: lms/lms/utils.py:1721 +#: lms/lms/utils.py:1722 msgid "To join this batch, please contact the Administrator." msgstr "" @@ -7056,7 +7051,7 @@ msgstr "" msgid "Under Review" msgstr "" -#: frontend/src/pages/Batches.vue:330 frontend/src/pages/Courses.vue:356 +#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:355 msgid "Unpublished" msgstr "" @@ -7077,8 +7072,8 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Label of the upcoming (Check) field in DocType 'LMS Course' -#: frontend/src/pages/Batches.vue:328 frontend/src/pages/CourseForm.vue:117 -#: frontend/src/pages/Courses.vue:347 +#: frontend/src/pages/Batches.vue:330 frontend/src/pages/CourseForm.vue:117 +#: frontend/src/pages/Courses.vue:346 #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_course/lms_course.json msgid "Upcoming" @@ -7220,7 +7215,7 @@ msgid "View Applications" msgstr "" #: frontend/src/components/CertificationLinks.vue:10 -#: frontend/src/components/Modals/Event.vue:67 +#: frontend/src/components/Modals/Event.vue:73 msgid "View Certificate" msgstr "" @@ -7327,6 +7322,11 @@ msgstr "" msgid "Withdrawn" msgstr "" +#. Option for the 'Open to' (Select) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Work" +msgstr "" + #. Label of the work_environment (Section Break) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Work Environment" @@ -7427,7 +7427,7 @@ msgstr "" msgid "You cannot enroll in an unpublished course." msgstr "" -#: lms/lms/utils.py:2085 +#: lms/lms/utils.py:2086 msgid "You cannot enroll in an unpublished program." msgstr "" @@ -7443,11 +7443,11 @@ msgstr "" msgid "You cannot schedule evaluations for past slots." msgstr "" -#: lms/lms/utils.py:2259 +#: lms/lms/utils.py:2260 msgid "You do not have access to this batch." msgstr "" -#: lms/lms/utils.py:2242 +#: lms/lms/utils.py:2243 msgid "You do not have access to this course." msgstr "" diff --git a/lms/locale/pt.po b/lms/locale/pt.po index 54d8e599..65b5c0a3 100644 --- a/lms/locale/pt.po +++ b/lms/locale/pt.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n" -"POT-Creation-Date: 2026-01-16 16:04+0000\n" -"PO-Revision-Date: 2026-01-19 20:13\n" +"POT-Creation-Date: 2026-01-23 16:05+0000\n" +"PO-Revision-Date: 2026-02-05 06:43\n" "Last-Translator: jannat@frappe.io\n" "Language-Team: Portuguese\n" "MIME-Version: 1.0\n" @@ -319,7 +319,7 @@ msgid "Administrator" msgstr "" #. Name of a role -#: frontend/src/pages/Batches.vue:319 lms/lms/doctype/lms_badge/lms_badge.json +#: frontend/src/pages/Batches.vue:321 lms/lms/doctype/lms_badge/lms_badge.json msgid "All" msgstr "" @@ -486,7 +486,7 @@ msgstr "" msgid "Apps" msgstr "" -#: frontend/src/pages/Batches.vue:329 +#: frontend/src/pages/Batches.vue:331 msgid "Archived" msgstr "" @@ -753,7 +753,7 @@ msgstr "" #. Label of the batch_name (Link) field in DocType 'LMS Certificate' #. Label of the batch_name (Link) field in DocType 'LMS Certificate Request' #. Label of the batch_name (Link) field in DocType 'LMS Live Class' -#: frontend/src/components/Modals/Event.vue:32 +#: frontend/src/components/Modals/Event.vue:35 #: frontend/src/components/Settings/BadgeForm.vue:195 #: frontend/src/components/Settings/Badges.vue:200 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125 @@ -878,7 +878,7 @@ msgid "Batch:" msgstr "" #. Label of the batches (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/Batches.vue:350 frontend/src/pages/Batches.vue:357 +#: frontend/src/pages/Batches.vue:352 frontend/src/pages/Batches.vue:359 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121 msgid "Batches" msgstr "" @@ -1023,7 +1023,7 @@ msgstr "" msgid "Certificate of Completion" msgstr "" -#: frontend/src/components/Modals/Event.vue:347 +#: frontend/src/components/Modals/Event.vue:353 msgid "Certificate saved successfully" msgstr "" @@ -1043,7 +1043,7 @@ msgstr "" #. Label of a chart in the LMS Workspace #. Label of a Card Break in the LMS Workspace #. Label of a Link in the LMS Workspace -#: frontend/src/components/Modals/Event.vue:411 +#: frontend/src/components/Modals/Event.vue:427 #: frontend/src/components/Sidebar/AppSidebar.vue:550 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100 #: frontend/src/pages/CourseCertification.vue:10 @@ -1771,7 +1771,7 @@ msgstr "" #: frontend/src/components/Modals/BatchStudentProgress.vue:95 #: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/CourseCertification.vue:127 -#: frontend/src/pages/Courses.vue:365 frontend/src/pages/Courses.vue:372 +#: frontend/src/pages/Courses.vue:364 frontend/src/pages/Courses.vue:371 #: frontend/src/pages/Programs/ProgramForm.vue:49 #: frontend/src/pages/Programs/Programs.vue:35 #: lms/lms/doctype/lms_batch/lms_batch.json @@ -1878,7 +1878,7 @@ msgstr "" msgid "Create your first quiz" msgstr "" -#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:355 +#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:354 msgid "Created" msgstr "" @@ -1954,7 +1954,7 @@ msgstr "" #. Label of the date (Date) field in DocType 'LMS Certificate Request' #. Label of the date (Date) field in DocType 'LMS Live Class' #. Label of the date (Date) field in DocType 'Scheduled Flow' -#: frontend/src/components/Modals/Event.vue:40 +#: frontend/src/components/Modals/Event.vue:46 #: frontend/src/components/Modals/LiveClassModal.vue:29 #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json @@ -2241,7 +2241,7 @@ msgstr "" msgid "Edit Email Template" msgstr "" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:13 msgid "Edit Payment Gateway" msgstr "" @@ -2424,7 +2424,7 @@ msgstr "" msgid "Enroll Now" msgstr "" -#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:358 +#: frontend/src/pages/Batches.vue:334 frontend/src/pages/Courses.vue:357 #: frontend/src/pages/Programs/StudentPrograms.vue:96 msgid "Enrolled" msgstr "" @@ -2526,7 +2526,7 @@ msgstr "" #. Label of a Link in the LMS Workspace #. Label of a shortcut in the LMS Workspace -#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json +#: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json msgid "Evaluation" msgstr "" @@ -2551,7 +2551,7 @@ msgstr "" msgid "Evaluation end date cannot be less than the batch end date." msgstr "" -#: frontend/src/components/Modals/Event.vue:286 +#: frontend/src/components/Modals/Event.vue:292 msgid "Evaluation saved successfully" msgstr "" @@ -2664,7 +2664,7 @@ msgstr "" #. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:33 -#: frontend/src/components/Modals/Event.vue:144 +#: frontend/src/components/Modals/Event.vue:150 #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Expiry Date" msgstr "" @@ -2695,7 +2695,7 @@ msgstr "" #. Submission' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:396 +#: frontend/src/components/Modals/Event.vue:412 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Fail" @@ -3209,7 +3209,7 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' #. Option for the 'Status' (Select) field in DocType 'LMS Course' -#: frontend/src/components/Modals/Event.vue:388 +#: frontend/src/components/Modals/Event.vue:404 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_course/lms_course.json msgid "In Progress" @@ -3353,7 +3353,7 @@ msgstr "" #. Label of the issue_date (Date) field in DocType 'Certification' #. Label of the issue_date (Date) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:28 -#: frontend/src/components/Modals/Event.vue:138 +#: frontend/src/components/Modals/Event.vue:144 #: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Issue Date" @@ -3456,7 +3456,7 @@ msgstr "" msgid "Join Call" msgstr "" -#: frontend/src/components/Modals/Event.vue:78 +#: frontend/src/components/Modals/Event.vue:84 msgid "Join Meeting" msgstr "" @@ -3896,7 +3896,7 @@ msgstr "" msgid "LinkedIn ID" msgstr "" -#: frontend/src/pages/Courses.vue:341 +#: frontend/src/pages/Courses.vue:340 msgid "Live" msgstr "" @@ -4429,7 +4429,7 @@ msgstr "" #: frontend/src/components/Settings/Members.vue:17 #: frontend/src/components/Settings/PaymentGateways.vue:16 #: frontend/src/components/Settings/ZoomSettings.vue:17 -#: frontend/src/pages/Courses.vue:344 +#: frontend/src/pages/Courses.vue:343 #: frontend/src/pages/Programs/Programs.vue:10 #: lms/lms/doctype/lms_badge/lms_badge.json msgid "New" @@ -4461,7 +4461,7 @@ msgstr "" msgid "New Job Applicant" msgstr "" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:12 msgid "New Payment Gateway" msgstr "" @@ -4778,12 +4778,7 @@ msgstr "" #: frontend/src/components/UserAvatar.vue:11 #: frontend/src/pages/CertifiedParticipants.vue:46 #: frontend/src/pages/Profile.vue:69 -msgid "Open to Opportunities" -msgstr "" - -#. Option for the 'Open to' (Select) field in DocType 'User' -#: lms/fixtures/custom_field.json -msgid "Opportunities" +msgid "Open to Work" msgstr "" #. Label of the option (Data) field in DocType 'LMS Option' @@ -4924,7 +4919,7 @@ msgstr "" #. Submission' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:392 +#: frontend/src/components/Modals/Event.vue:408 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Pass" @@ -5054,7 +5049,7 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' #. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' -#: frontend/src/components/Modals/Event.vue:384 +#: frontend/src/components/Modals/Event.vue:400 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json msgid "Pending" @@ -5194,7 +5189,7 @@ msgstr "" msgid "Please login to continue with payment." msgstr "" -#: lms/lms/utils.py:2081 +#: lms/lms/utils.py:2082 msgid "Please login to enroll in the program." msgstr "" @@ -5525,7 +5520,7 @@ msgstr "" #. Label of the published (Check) field in DocType 'LMS Course' #. Label of the published (Check) field in DocType 'LMS Program' #: frontend/src/components/Modals/BulkCertificates.vue:51 -#: frontend/src/components/Modals/Event.vue:122 +#: frontend/src/components/Modals/Event.vue:128 #: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105 #: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/StudentPrograms.vue:100 @@ -5693,7 +5688,7 @@ msgstr "" #. Label of the rating (Data) field in DocType 'LMS Course' #. Label of the rating (Rating) field in DocType 'LMS Course Review' #: frontend/src/components/CourseCardOverlay.vue:147 -#: frontend/src/components/Modals/Event.vue:92 +#: frontend/src/components/Modals/Event.vue:98 #: frontend/src/components/Modals/ReviewModal.vue:18 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_course/lms_course.json @@ -5929,14 +5924,14 @@ msgstr "" #: frontend/src/components/Modals/AssignmentForm.vue:65 #: frontend/src/components/Modals/EditProfile.vue:121 #: frontend/src/components/Modals/EmailTemplateModal.vue:12 -#: frontend/src/components/Modals/Event.vue:115 -#: frontend/src/components/Modals/Event.vue:151 +#: frontend/src/components/Modals/Event.vue:121 +#: frontend/src/components/Modals/Event.vue:157 #: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeForm.vue:78 #: frontend/src/components/Settings/Coupons/CouponDetails.vue:78 -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:41 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:129 #: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17 #: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14 @@ -6048,7 +6043,7 @@ msgstr "" msgid "Select Date" msgstr "" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:26 msgid "Select Payment Gateway" msgstr "" @@ -6364,7 +6359,7 @@ msgstr "" #. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Submission' #. Label of the status (Select) field in DocType 'LMS Test Case Submission' -#: frontend/src/components/Modals/Event.vue:99 +#: frontend/src/components/Modals/Event.vue:105 #: frontend/src/components/Settings/Badges.vue:228 #: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/pages/AssignmentSubmissionList.vue:19 @@ -6475,7 +6470,7 @@ msgstr "" #. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:106 +#: frontend/src/components/Modals/Event.vue:112 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Summary" msgstr "" @@ -6571,7 +6566,7 @@ msgstr "" #. Label of the template (Link) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:43 -#: frontend/src/components/Modals/Event.vue:127 +#: frontend/src/components/Modals/Event.vue:133 #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Template" msgstr "" @@ -6620,7 +6615,7 @@ msgstr "" msgid "Thanks and Regards" msgstr "" -#: lms/lms/utils.py:2247 +#: lms/lms/utils.py:2248 msgid "The batch does not exist." msgstr "" @@ -6628,7 +6623,7 @@ msgstr "" msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session." msgstr "" -#: lms/lms/utils.py:1747 +#: lms/lms/utils.py:1748 msgid "The coupon code '{0}' is invalid." msgstr "" @@ -6652,7 +6647,7 @@ msgstr "" msgid "The last day to schedule your evaluations is " msgstr "" -#: lms/lms/utils.py:2231 +#: lms/lms/utils.py:2232 msgid "The lesson does not exist." msgstr "" @@ -6660,7 +6655,7 @@ msgstr "" msgid "The slot is already booked by another participant." msgstr "" -#: lms/lms/utils.py:1361 lms/lms/utils.py:1477 lms/lms/utils.py:1944 +#: lms/lms/utils.py:1362 lms/lms/utils.py:1478 lms/lms/utils.py:1945 msgid "The specified batch does not exist." msgstr "" @@ -6726,15 +6721,15 @@ msgstr "" msgid "This class has ended" msgstr "" -#: lms/lms/utils.py:1776 +#: lms/lms/utils.py:1777 msgid "This coupon has expired." msgstr "" -#: lms/lms/utils.py:1779 +#: lms/lms/utils.py:1780 msgid "This coupon has reached its maximum usage limit." msgstr "" -#: lms/lms/utils.py:1788 +#: lms/lms/utils.py:1789 msgid "This coupon is not applicable to this {0}." msgstr "" @@ -6742,7 +6737,7 @@ msgstr "" msgid "This course has:" msgstr "" -#: lms/lms/utils.py:1707 +#: lms/lms/utils.py:1708 msgid "This course is free." msgstr "" @@ -6799,7 +6794,7 @@ msgid "Thursday" msgstr "" #. Label of the time (Time) field in DocType 'LMS Live Class' -#: frontend/src/components/Modals/Event.vue:48 +#: frontend/src/components/Modals/Event.vue:54 #: frontend/src/components/Modals/LiveClassModal.vue:52 #: frontend/src/components/Quiz.vue:58 #: lms/lms/doctype/lms_live_class/lms_live_class.json @@ -6934,7 +6929,7 @@ msgstr "" msgid "To Date" msgstr "" -#: lms/lms/utils.py:1721 +#: lms/lms/utils.py:1722 msgid "To join this batch, please contact the Administrator." msgstr "" @@ -7056,7 +7051,7 @@ msgstr "" msgid "Under Review" msgstr "" -#: frontend/src/pages/Batches.vue:330 frontend/src/pages/Courses.vue:356 +#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:355 msgid "Unpublished" msgstr "" @@ -7077,8 +7072,8 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Label of the upcoming (Check) field in DocType 'LMS Course' -#: frontend/src/pages/Batches.vue:328 frontend/src/pages/CourseForm.vue:117 -#: frontend/src/pages/Courses.vue:347 +#: frontend/src/pages/Batches.vue:330 frontend/src/pages/CourseForm.vue:117 +#: frontend/src/pages/Courses.vue:346 #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_course/lms_course.json msgid "Upcoming" @@ -7220,7 +7215,7 @@ msgid "View Applications" msgstr "" #: frontend/src/components/CertificationLinks.vue:10 -#: frontend/src/components/Modals/Event.vue:67 +#: frontend/src/components/Modals/Event.vue:73 msgid "View Certificate" msgstr "" @@ -7327,6 +7322,11 @@ msgstr "" msgid "Withdrawn" msgstr "" +#. Option for the 'Open to' (Select) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Work" +msgstr "" + #. Label of the work_environment (Section Break) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Work Environment" @@ -7427,7 +7427,7 @@ msgstr "" msgid "You cannot enroll in an unpublished course." msgstr "" -#: lms/lms/utils.py:2085 +#: lms/lms/utils.py:2086 msgid "You cannot enroll in an unpublished program." msgstr "" @@ -7443,11 +7443,11 @@ msgstr "" msgid "You cannot schedule evaluations for past slots." msgstr "" -#: lms/lms/utils.py:2259 +#: lms/lms/utils.py:2260 msgid "You do not have access to this batch." msgstr "" -#: lms/lms/utils.py:2242 +#: lms/lms/utils.py:2243 msgid "You do not have access to this course." msgstr "" diff --git a/lms/locale/pt_BR.po b/lms/locale/pt_BR.po index bf2d0202..5665c7e6 100644 --- a/lms/locale/pt_BR.po +++ b/lms/locale/pt_BR.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n" -"POT-Creation-Date: 2026-01-16 16:04+0000\n" -"PO-Revision-Date: 2026-01-21 20:16\n" +"POT-Creation-Date: 2026-01-23 16:05+0000\n" +"PO-Revision-Date: 2026-02-05 06:43\n" "Last-Translator: jannat@frappe.io\n" "Language-Team: Portuguese, Brazilian\n" "MIME-Version: 1.0\n" @@ -319,7 +319,7 @@ msgid "Administrator" msgstr "" #. Name of a role -#: frontend/src/pages/Batches.vue:319 lms/lms/doctype/lms_badge/lms_badge.json +#: frontend/src/pages/Batches.vue:321 lms/lms/doctype/lms_badge/lms_badge.json msgid "All" msgstr "" @@ -486,7 +486,7 @@ msgstr "" msgid "Apps" msgstr "" -#: frontend/src/pages/Batches.vue:329 +#: frontend/src/pages/Batches.vue:331 msgid "Archived" msgstr "" @@ -753,7 +753,7 @@ msgstr "" #. Label of the batch_name (Link) field in DocType 'LMS Certificate' #. Label of the batch_name (Link) field in DocType 'LMS Certificate Request' #. Label of the batch_name (Link) field in DocType 'LMS Live Class' -#: frontend/src/components/Modals/Event.vue:32 +#: frontend/src/components/Modals/Event.vue:35 #: frontend/src/components/Settings/BadgeForm.vue:195 #: frontend/src/components/Settings/Badges.vue:200 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125 @@ -878,7 +878,7 @@ msgid "Batch:" msgstr "" #. Label of the batches (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/Batches.vue:350 frontend/src/pages/Batches.vue:357 +#: frontend/src/pages/Batches.vue:352 frontend/src/pages/Batches.vue:359 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121 msgid "Batches" msgstr "" @@ -1023,7 +1023,7 @@ msgstr "" msgid "Certificate of Completion" msgstr "" -#: frontend/src/components/Modals/Event.vue:347 +#: frontend/src/components/Modals/Event.vue:353 msgid "Certificate saved successfully" msgstr "" @@ -1043,7 +1043,7 @@ msgstr "" #. Label of a chart in the LMS Workspace #. Label of a Card Break in the LMS Workspace #. Label of a Link in the LMS Workspace -#: frontend/src/components/Modals/Event.vue:411 +#: frontend/src/components/Modals/Event.vue:427 #: frontend/src/components/Sidebar/AppSidebar.vue:550 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100 #: frontend/src/pages/CourseCertification.vue:10 @@ -1207,7 +1207,7 @@ msgstr "" #: lms/fixtures/custom_field.json #: lms/job/doctype/job_opportunity/job_opportunity.json msgid "City" -msgstr "" +msgstr "Cidade" #: lms/templates/emails/live_class_reminder.html:10 msgid "Class:" @@ -1524,7 +1524,7 @@ msgstr "" #: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/lms/doctype/payment_country/payment_country.json msgid "Country" -msgstr "" +msgstr "País" #. Label of the coupon (Link) field in DocType 'LMS Payment' #: lms/lms/doctype/lms_payment/lms_payment.json @@ -1771,7 +1771,7 @@ msgstr "" #: frontend/src/components/Modals/BatchStudentProgress.vue:95 #: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/CourseCertification.vue:127 -#: frontend/src/pages/Courses.vue:365 frontend/src/pages/Courses.vue:372 +#: frontend/src/pages/Courses.vue:364 frontend/src/pages/Courses.vue:371 #: frontend/src/pages/Programs/ProgramForm.vue:49 #: frontend/src/pages/Programs/Programs.vue:35 #: lms/lms/doctype/lms_batch/lms_batch.json @@ -1878,7 +1878,7 @@ msgstr "" msgid "Create your first quiz" msgstr "" -#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:355 +#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:354 msgid "Created" msgstr "" @@ -1899,7 +1899,7 @@ msgstr "" #: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_payment/lms_payment.json msgid "Currency" -msgstr "" +msgstr "Moeda" #. Label of the current_lesson (Link) field in DocType 'LMS Enrollment' #: lms/lms/doctype/lms_enrollment/lms_enrollment.json @@ -1954,7 +1954,7 @@ msgstr "" #. Label of the date (Date) field in DocType 'LMS Certificate Request' #. Label of the date (Date) field in DocType 'LMS Live Class' #. Label of the date (Date) field in DocType 'Scheduled Flow' -#: frontend/src/components/Modals/Event.vue:40 +#: frontend/src/components/Modals/Event.vue:46 #: frontend/src/components/Modals/LiveClassModal.vue:29 #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json @@ -1962,7 +1962,7 @@ msgstr "" #: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/scheduled_flow/scheduled_flow.json msgid "Date" -msgstr "" +msgstr "Data" #: frontend/src/pages/BatchForm.vue:76 msgid "Date and Time" @@ -2086,7 +2086,7 @@ msgstr "" #: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/work_experience/work_experience.json msgid "Description" -msgstr "" +msgstr "Descrição" #: frontend/src/components/Sidebar/Apps.vue:50 msgid "Desk" @@ -2096,7 +2096,7 @@ msgstr "" #: frontend/src/pages/BatchForm.vue:21 frontend/src/pages/CourseForm.vue:25 #: frontend/src/pages/QuizForm.vue:50 msgid "Details" -msgstr "" +msgstr "Detalhes" #. Label of the disable_pwa (Check) field in DocType 'LMS Settings' #: lms/lms/doctype/lms_settings/lms_settings.json @@ -2122,7 +2122,7 @@ msgstr "" #: frontend/src/components/Settings/PaymentGateways.vue:55 #: frontend/src/components/Settings/ZoomSettings.vue:66 msgid "Disabled" -msgstr "" +msgstr "Desativado" #: frontend/src/components/DiscussionReplies.vue:57 #: lms/lms/widgets/NoPreviewModal.html:25 @@ -2241,7 +2241,7 @@ msgstr "" msgid "Edit Email Template" msgstr "" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:13 msgid "Edit Payment Gateway" msgstr "" @@ -2291,7 +2291,7 @@ msgstr "" #: lms/lms/doctype/lms_settings/lms_settings.json #: lms/templates/signup-form.html:10 msgid "Email" -msgstr "" +msgstr "E-Mail" #: frontend/src/components/Modals/Event.vue:16 msgid "Email ID" @@ -2424,7 +2424,7 @@ msgstr "" msgid "Enroll Now" msgstr "" -#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:358 +#: frontend/src/pages/Batches.vue:334 frontend/src/pages/Courses.vue:357 #: frontend/src/pages/Programs/StudentPrograms.vue:96 msgid "Enrolled" msgstr "" @@ -2526,7 +2526,7 @@ msgstr "" #. Label of a Link in the LMS Workspace #. Label of a shortcut in the LMS Workspace -#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json +#: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json msgid "Evaluation" msgstr "" @@ -2551,7 +2551,7 @@ msgstr "" msgid "Evaluation end date cannot be less than the batch end date." msgstr "" -#: frontend/src/components/Modals/Event.vue:286 +#: frontend/src/components/Modals/Event.vue:292 msgid "Evaluation saved successfully" msgstr "" @@ -2664,7 +2664,7 @@ msgstr "" #. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:33 -#: frontend/src/components/Modals/Event.vue:144 +#: frontend/src/components/Modals/Event.vue:150 #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Expiry Date" msgstr "" @@ -2695,7 +2695,7 @@ msgstr "" #. Submission' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:396 +#: frontend/src/components/Modals/Event.vue:412 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Fail" @@ -2796,7 +2796,7 @@ msgstr "" #: frontend/src/components/Modals/EditProfile.vue:70 #: frontend/src/components/Settings/Members.vue:110 msgid "First Name" -msgstr "" +msgstr "Nome" #. Option for the 'Time Preference' (Select) field in DocType 'User' #: lms/fixtures/custom_field.json @@ -2874,7 +2874,7 @@ msgstr "" #: lms/lms/doctype/lms_program_member/lms_program_member.json #: lms/templates/signup-form.html:5 msgid "Full Name" -msgstr "" +msgstr "Nome Completo" #. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #. Option in a Select field in the job-opportunity Web Form @@ -3183,7 +3183,7 @@ msgstr "" #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_badge/lms_badge.json msgid "Image" -msgstr "" +msgstr "Imagem" #: frontend/src/components/Modals/EditCoverImage.vue:58 #: frontend/src/components/UnsplashImageBrowser.vue:52 @@ -3209,7 +3209,7 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' #. Option for the 'Status' (Select) field in DocType 'LMS Course' -#: frontend/src/components/Modals/Event.vue:388 +#: frontend/src/components/Modals/Event.vue:404 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_course/lms_course.json msgid "In Progress" @@ -3248,7 +3248,7 @@ msgstr "" #: lms/lms/doctype/industry/industry.json #: lms/lms/doctype/preferred_industry/preferred_industry.json msgid "Industry" -msgstr "" +msgstr "Segmento" #. Label of the input (Data) field in DocType 'LMS Test Case' #. Label of the input (Data) field in DocType 'LMS Test Case Submission' @@ -3353,7 +3353,7 @@ msgstr "" #. Label of the issue_date (Date) field in DocType 'Certification' #. Label of the issue_date (Date) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:28 -#: frontend/src/components/Modals/Event.vue:138 +#: frontend/src/components/Modals/Event.vue:144 #: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Issue Date" @@ -3436,7 +3436,7 @@ msgstr "" #: lms/job/doctype/lms_job_application/lms_job_application.json #: lms/job/web_form/job_opportunity/job_opportunity.json msgid "Job Title" -msgstr "" +msgstr "Cargo" #. Label of the jobs (Check) field in DocType 'LMS Settings' #: frontend/src/pages/JobApplications.vue:9 frontend/src/pages/JobDetail.vue:10 @@ -3456,7 +3456,7 @@ msgstr "" msgid "Join Call" msgstr "" -#: frontend/src/components/Modals/Event.vue:78 +#: frontend/src/components/Modals/Event.vue:84 msgid "Join Meeting" msgstr "" @@ -3782,7 +3782,7 @@ msgstr "" #: frontend/src/components/Modals/EditProfile.vue:74 msgid "Last Name" -msgstr "" +msgstr "Sobrenome" #. Label of the launch_file (Code) field in DocType 'Course Chapter' #: lms/lms/doctype/course_chapter/course_chapter.json @@ -3896,7 +3896,7 @@ msgstr "" msgid "LinkedIn ID" msgstr "" -#: frontend/src/pages/Courses.vue:341 +#: frontend/src/pages/Courses.vue:340 msgid "Live" msgstr "" @@ -4429,7 +4429,7 @@ msgstr "" #: frontend/src/components/Settings/Members.vue:17 #: frontend/src/components/Settings/PaymentGateways.vue:16 #: frontend/src/components/Settings/ZoomSettings.vue:17 -#: frontend/src/pages/Courses.vue:344 +#: frontend/src/pages/Courses.vue:343 #: frontend/src/pages/Programs/Programs.vue:10 #: lms/lms/doctype/lms_badge/lms_badge.json msgid "New" @@ -4461,7 +4461,7 @@ msgstr "" msgid "New Job Applicant" msgstr "" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:12 msgid "New Payment Gateway" msgstr "" @@ -4665,7 +4665,7 @@ msgstr "" #: frontend/src/pages/Lesson.vue:405 frontend/src/pages/Lesson.vue:886 #: frontend/src/pages/Lesson.vue:897 msgid "Notes" -msgstr "Notas" +msgstr "Anotações" #: frontend/src/pages/Notifications.vue:143 msgid "Nothing to see here." @@ -4778,14 +4778,9 @@ msgstr "" #: frontend/src/components/UserAvatar.vue:11 #: frontend/src/pages/CertifiedParticipants.vue:46 #: frontend/src/pages/Profile.vue:69 -msgid "Open to Opportunities" +msgid "Open to Work" msgstr "" -#. Option for the 'Open to' (Select) field in DocType 'User' -#: lms/fixtures/custom_field.json -msgid "Opportunities" -msgstr "Oportunidades" - #. Label of the option (Data) field in DocType 'LMS Option' #: frontend/src/components/Modals/Question.vue:70 #: lms/lms/doctype/lms_option/lms_option.json @@ -4924,7 +4919,7 @@ msgstr "" #. Submission' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:392 +#: frontend/src/components/Modals/Event.vue:408 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Pass" @@ -5054,7 +5049,7 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' #. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' -#: frontend/src/components/Modals/Event.vue:384 +#: frontend/src/components/Modals/Event.vue:400 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json msgid "Pending" @@ -5194,7 +5189,7 @@ msgstr "" msgid "Please login to continue with payment." msgstr "" -#: lms/lms/utils.py:2081 +#: lms/lms/utils.py:2082 msgid "Please login to enroll in the program." msgstr "" @@ -5525,7 +5520,7 @@ msgstr "" #. Label of the published (Check) field in DocType 'LMS Course' #. Label of the published (Check) field in DocType 'LMS Program' #: frontend/src/components/Modals/BulkCertificates.vue:51 -#: frontend/src/components/Modals/Event.vue:122 +#: frontend/src/components/Modals/Event.vue:128 #: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105 #: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/StudentPrograms.vue:100 @@ -5693,7 +5688,7 @@ msgstr "" #. Label of the rating (Data) field in DocType 'LMS Course' #. Label of the rating (Rating) field in DocType 'LMS Course Review' #: frontend/src/components/CourseCardOverlay.vue:147 -#: frontend/src/components/Modals/Event.vue:92 +#: frontend/src/components/Modals/Event.vue:98 #: frontend/src/components/Modals/ReviewModal.vue:18 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_course/lms_course.json @@ -5929,14 +5924,14 @@ msgstr "" #: frontend/src/components/Modals/AssignmentForm.vue:65 #: frontend/src/components/Modals/EditProfile.vue:121 #: frontend/src/components/Modals/EmailTemplateModal.vue:12 -#: frontend/src/components/Modals/Event.vue:115 -#: frontend/src/components/Modals/Event.vue:151 +#: frontend/src/components/Modals/Event.vue:121 +#: frontend/src/components/Modals/Event.vue:157 #: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeForm.vue:78 #: frontend/src/components/Settings/Coupons/CouponDetails.vue:78 -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:41 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:129 #: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17 #: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14 @@ -6048,7 +6043,7 @@ msgstr "" msgid "Select Date" msgstr "" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:26 msgid "Select Payment Gateway" msgstr "" @@ -6276,7 +6271,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 "Origem" #. Option for the 'Member Type' (Select) field in DocType 'LMS Enrollment' #: lms/lms/doctype/lms_enrollment/lms_enrollment.json @@ -6342,7 +6337,7 @@ msgstr "" #: frontend/src/pages/Billing.vue:134 msgid "State/Province" -msgstr "" +msgstr "Estado" #. Label of the tab_4_tab (Tab Break) field in DocType 'LMS Course' #. Label of the statistics (Check) field in DocType 'LMS Settings' @@ -6364,7 +6359,7 @@ msgstr "" #. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Submission' #. Label of the status (Select) field in DocType 'LMS Test Case Submission' -#: frontend/src/components/Modals/Event.vue:99 +#: frontend/src/components/Modals/Event.vue:105 #: frontend/src/components/Settings/Badges.vue:228 #: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/pages/AssignmentSubmissionList.vue:19 @@ -6381,7 +6376,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 "Status" -msgstr "" +msgstr "Situação" #: lms/templates/assessments.html:17 msgid "Status/Score" @@ -6475,7 +6470,7 @@ msgstr "" #. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:106 +#: frontend/src/components/Modals/Event.vue:112 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Summary" msgstr "" @@ -6571,7 +6566,7 @@ msgstr "" #. Label of the template (Link) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:43 -#: frontend/src/components/Modals/Event.vue:127 +#: frontend/src/components/Modals/Event.vue:133 #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Template" msgstr "" @@ -6620,7 +6615,7 @@ msgstr "" msgid "Thanks and Regards" msgstr "" -#: lms/lms/utils.py:2247 +#: lms/lms/utils.py:2248 msgid "The batch does not exist." msgstr "" @@ -6628,7 +6623,7 @@ msgstr "" msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session." msgstr "" -#: lms/lms/utils.py:1747 +#: lms/lms/utils.py:1748 msgid "The coupon code '{0}' is invalid." msgstr "" @@ -6652,7 +6647,7 @@ msgstr "" msgid "The last day to schedule your evaluations is " msgstr "" -#: lms/lms/utils.py:2231 +#: lms/lms/utils.py:2232 msgid "The lesson does not exist." msgstr "" @@ -6660,7 +6655,7 @@ msgstr "" msgid "The slot is already booked by another participant." msgstr "" -#: lms/lms/utils.py:1361 lms/lms/utils.py:1477 lms/lms/utils.py:1944 +#: lms/lms/utils.py:1362 lms/lms/utils.py:1478 lms/lms/utils.py:1945 msgid "The specified batch does not exist." msgstr "" @@ -6726,15 +6721,15 @@ msgstr "" msgid "This class has ended" msgstr "" -#: lms/lms/utils.py:1776 +#: lms/lms/utils.py:1777 msgid "This coupon has expired." msgstr "" -#: lms/lms/utils.py:1779 +#: lms/lms/utils.py:1780 msgid "This coupon has reached its maximum usage limit." msgstr "" -#: lms/lms/utils.py:1788 +#: lms/lms/utils.py:1789 msgid "This coupon is not applicable to this {0}." msgstr "" @@ -6742,7 +6737,7 @@ msgstr "" msgid "This course has:" msgstr "" -#: lms/lms/utils.py:1707 +#: lms/lms/utils.py:1708 msgid "This course is free." msgstr "" @@ -6799,7 +6794,7 @@ msgid "Thursday" msgstr "" #. Label of the time (Time) field in DocType 'LMS Live Class' -#: frontend/src/components/Modals/Event.vue:48 +#: frontend/src/components/Modals/Event.vue:54 #: frontend/src/components/Modals/LiveClassModal.vue:52 #: frontend/src/components/Quiz.vue:58 #: lms/lms/doctype/lms_live_class/lms_live_class.json @@ -6934,7 +6929,7 @@ msgstr "" msgid "To Date" msgstr "" -#: lms/lms/utils.py:1721 +#: lms/lms/utils.py:1722 msgid "To join this batch, please contact the Administrator." msgstr "" @@ -7056,7 +7051,7 @@ msgstr "" msgid "Under Review" msgstr "" -#: frontend/src/pages/Batches.vue:330 frontend/src/pages/Courses.vue:356 +#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:355 msgid "Unpublished" msgstr "" @@ -7077,8 +7072,8 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Label of the upcoming (Check) field in DocType 'LMS Course' -#: frontend/src/pages/Batches.vue:328 frontend/src/pages/CourseForm.vue:117 -#: frontend/src/pages/Courses.vue:347 +#: frontend/src/pages/Batches.vue:330 frontend/src/pages/CourseForm.vue:117 +#: frontend/src/pages/Courses.vue:346 #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_course/lms_course.json msgid "Upcoming" @@ -7220,7 +7215,7 @@ msgid "View Applications" msgstr "" #: frontend/src/components/CertificationLinks.vue:10 -#: frontend/src/components/Modals/Event.vue:67 +#: frontend/src/components/Modals/Event.vue:73 msgid "View Certificate" msgstr "" @@ -7327,6 +7322,11 @@ msgstr "" msgid "Withdrawn" msgstr "" +#. Option for the 'Open to' (Select) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Work" +msgstr "" + #. Label of the work_environment (Section Break) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Work Environment" @@ -7427,7 +7427,7 @@ msgstr "" msgid "You cannot enroll in an unpublished course." msgstr "" -#: lms/lms/utils.py:2085 +#: lms/lms/utils.py:2086 msgid "You cannot enroll in an unpublished program." msgstr "" @@ -7443,11 +7443,11 @@ msgstr "" msgid "You cannot schedule evaluations for past slots." msgstr "" -#: lms/lms/utils.py:2259 +#: lms/lms/utils.py:2260 msgid "You do not have access to this batch." msgstr "" -#: lms/lms/utils.py:2242 +#: lms/lms/utils.py:2243 msgid "You do not have access to this course." msgstr "" @@ -7664,7 +7664,7 @@ msgstr "" #: frontend/src/components/StudentHeatmap.vue:6 msgid "activities" -msgstr "" +msgstr "atividades" #: frontend/src/components/StudentHeatmap.vue:6 msgid "activity" diff --git a/lms/locale/ru.po b/lms/locale/ru.po index 35ea25af..35cc09ab 100644 --- a/lms/locale/ru.po +++ b/lms/locale/ru.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n" -"POT-Creation-Date: 2026-01-16 16:04+0000\n" -"PO-Revision-Date: 2026-01-21 20:16\n" +"POT-Creation-Date: 2026-01-23 16:05+0000\n" +"PO-Revision-Date: 2026-02-05 06:43\n" "Last-Translator: jannat@frappe.io\n" "Language-Team: Russian\n" "MIME-Version: 1.0\n" @@ -319,7 +319,7 @@ msgid "Administrator" msgstr "Администратор" #. Name of a role -#: frontend/src/pages/Batches.vue:319 lms/lms/doctype/lms_badge/lms_badge.json +#: frontend/src/pages/Batches.vue:321 lms/lms/doctype/lms_badge/lms_badge.json msgid "All" msgstr "Все" @@ -486,7 +486,7 @@ msgstr "Утвержден" msgid "Apps" msgstr "Приложения" -#: frontend/src/pages/Batches.vue:329 +#: frontend/src/pages/Batches.vue:331 msgid "Archived" msgstr "Архивировано" @@ -753,7 +753,7 @@ msgstr "Значок {0} уже назначен этому {1}." #. Label of the batch_name (Link) field in DocType 'LMS Certificate' #. Label of the batch_name (Link) field in DocType 'LMS Certificate Request' #. Label of the batch_name (Link) field in DocType 'LMS Live Class' -#: frontend/src/components/Modals/Event.vue:32 +#: frontend/src/components/Modals/Event.vue:35 #: frontend/src/components/Settings/BadgeForm.vue:195 #: frontend/src/components/Settings/Badges.vue:200 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125 @@ -878,7 +878,7 @@ msgid "Batch:" msgstr "Партия:" #. Label of the batches (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/Batches.vue:350 frontend/src/pages/Batches.vue:357 +#: frontend/src/pages/Batches.vue:352 frontend/src/pages/Batches.vue:359 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121 msgid "Batches" msgstr "Группы" @@ -1023,7 +1023,7 @@ msgstr "Ссылка на сертификат" msgid "Certificate of Completion" msgstr "Сертификат об окончании" -#: frontend/src/components/Modals/Event.vue:347 +#: frontend/src/components/Modals/Event.vue:353 msgid "Certificate saved successfully" msgstr "Сертификат успешно сохранен" @@ -1043,7 +1043,7 @@ msgstr "Сертификаты успешно созданы" #. Label of a chart in the LMS Workspace #. Label of a Card Break in the LMS Workspace #. Label of a Link in the LMS Workspace -#: frontend/src/components/Modals/Event.vue:411 +#: frontend/src/components/Modals/Event.vue:427 #: frontend/src/components/Sidebar/AppSidebar.vue:550 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100 #: frontend/src/pages/CourseCertification.vue:10 @@ -1771,7 +1771,7 @@ msgstr "Курс {0} уже добавлен в эту программу." #: frontend/src/components/Modals/BatchStudentProgress.vue:95 #: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/CourseCertification.vue:127 -#: frontend/src/pages/Courses.vue:365 frontend/src/pages/Courses.vue:372 +#: frontend/src/pages/Courses.vue:364 frontend/src/pages/Courses.vue:371 #: frontend/src/pages/Programs/ProgramForm.vue:49 #: frontend/src/pages/Programs/Programs.vue:35 #: lms/lms/doctype/lms_batch/lms_batch.json @@ -1878,7 +1878,7 @@ msgstr "Создайте свой первый курс" msgid "Create your first quiz" msgstr "Создать свой первый тест" -#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:355 +#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:354 msgid "Created" msgstr "Создано" @@ -1954,7 +1954,7 @@ msgstr "Импорт данных" #. Label of the date (Date) field in DocType 'LMS Certificate Request' #. Label of the date (Date) field in DocType 'LMS Live Class' #. Label of the date (Date) field in DocType 'Scheduled Flow' -#: frontend/src/components/Modals/Event.vue:40 +#: frontend/src/components/Modals/Event.vue:46 #: frontend/src/components/Modals/LiveClassModal.vue:29 #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json @@ -2241,7 +2241,7 @@ msgstr "Изменить купон" msgid "Edit Email Template" msgstr "Редактировать шаблон письма" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:13 msgid "Edit Payment Gateway" msgstr "Изменить платежный шлюз" @@ -2424,7 +2424,7 @@ msgstr "Зарегистрировать участника в программ msgid "Enroll Now" msgstr "Записаться сейчас" -#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:358 +#: frontend/src/pages/Batches.vue:334 frontend/src/pages/Courses.vue:357 #: frontend/src/pages/Programs/StudentPrograms.vue:96 msgid "Enrolled" msgstr "Записан" @@ -2526,7 +2526,7 @@ msgstr "Ошибка при обновлении шаблона письма" #. Label of a Link in the LMS Workspace #. Label of a shortcut in the LMS Workspace -#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json +#: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json msgid "Evaluation" msgstr "Оценка" @@ -2551,7 +2551,7 @@ msgstr "Запрос на оценку" msgid "Evaluation end date cannot be less than the batch end date." msgstr "Дата окончания оценки не может быть меньше даты окончания группы." -#: frontend/src/components/Modals/Event.vue:286 +#: frontend/src/components/Modals/Event.vue:292 msgid "Evaluation saved successfully" msgstr "Вычисление успешно сохранено" @@ -2664,7 +2664,7 @@ msgstr "Актуален до" #. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:33 -#: frontend/src/components/Modals/Event.vue:144 +#: frontend/src/components/Modals/Event.vue:150 #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Expiry Date" msgstr "Истекает" @@ -2695,7 +2695,7 @@ msgstr "Узнать больше" #. Submission' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:396 +#: frontend/src/components/Modals/Event.vue:412 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Fail" @@ -3209,7 +3209,7 @@ msgstr "Курс импорта" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' #. Option for the 'Status' (Select) field in DocType 'LMS Course' -#: frontend/src/components/Modals/Event.vue:388 +#: frontend/src/components/Modals/Event.vue:404 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_course/lms_course.json msgid "In Progress" @@ -3353,7 +3353,7 @@ msgstr "Пакет SCORM" #. Label of the issue_date (Date) field in DocType 'Certification' #. Label of the issue_date (Date) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:28 -#: frontend/src/components/Modals/Event.vue:138 +#: frontend/src/components/Modals/Event.vue:144 #: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Issue Date" @@ -3456,7 +3456,7 @@ msgstr "Присоединиться" msgid "Join Call" msgstr "Присоединиться к звонку" -#: frontend/src/components/Modals/Event.vue:78 +#: frontend/src/components/Modals/Event.vue:84 msgid "Join Meeting" msgstr "Присоединиться к встрече" @@ -3896,7 +3896,7 @@ msgstr "LinkedIn" msgid "LinkedIn ID" msgstr "LinkedIn ID" -#: frontend/src/pages/Courses.vue:341 +#: frontend/src/pages/Courses.vue:340 msgid "Live" msgstr "Live" @@ -4429,7 +4429,7 @@ msgstr "Наименование" #: frontend/src/components/Settings/Members.vue:17 #: frontend/src/components/Settings/PaymentGateways.vue:16 #: frontend/src/components/Settings/ZoomSettings.vue:17 -#: frontend/src/pages/Courses.vue:344 +#: frontend/src/pages/Courses.vue:343 #: frontend/src/pages/Programs/Programs.vue:10 #: lms/lms/doctype/lms_badge/lms_badge.json msgid "New" @@ -4461,7 +4461,7 @@ msgstr "Новая Вакансия" msgid "New Job Applicant" msgstr "Новый соискатель работы" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:12 msgid "New Payment Gateway" msgstr "Новый платежный шлюз" @@ -4778,13 +4778,8 @@ msgstr "Открыто для" #: frontend/src/components/UserAvatar.vue:11 #: frontend/src/pages/CertifiedParticipants.vue:46 #: frontend/src/pages/Profile.vue:69 -msgid "Open to Opportunities" -msgstr "Открыт для новых возможностей" - -#. Option for the 'Open to' (Select) field in DocType 'User' -#: lms/fixtures/custom_field.json -msgid "Opportunities" -msgstr "Возможности" +msgid "Open to Work" +msgstr "" #. Label of the option (Data) field in DocType 'LMS Option' #: frontend/src/components/Modals/Question.vue:70 @@ -4924,7 +4919,7 @@ msgstr "Частично завершено" #. Submission' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:392 +#: frontend/src/components/Modals/Event.vue:408 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Pass" @@ -5054,7 +5049,7 @@ msgstr "Приложение платежей не установлено" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' #. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' -#: frontend/src/components/Modals/Event.vue:384 +#: frontend/src/components/Modals/Event.vue:400 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json msgid "Pending" @@ -5194,7 +5189,7 @@ msgstr "Пожалуйста, войдите в систему, чтобы по msgid "Please login to continue with payment." msgstr "Пожалуйста, войдите в систему, чтобы продолжить оплату." -#: lms/lms/utils.py:2081 +#: lms/lms/utils.py:2082 msgid "Please login to enroll in the program." msgstr "Пожалуйста, войдите в систему, чтобы зарегистрироваться в программе." @@ -5525,7 +5520,7 @@ msgstr "Опубликовать на странице участника" #. Label of the published (Check) field in DocType 'LMS Course' #. Label of the published (Check) field in DocType 'LMS Program' #: frontend/src/components/Modals/BulkCertificates.vue:51 -#: frontend/src/components/Modals/Event.vue:122 +#: frontend/src/components/Modals/Event.vue:128 #: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105 #: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/StudentPrograms.vue:100 @@ -5693,7 +5688,7 @@ msgstr "Тесты в этом видео" #. Label of the rating (Data) field in DocType 'LMS Course' #. Label of the rating (Rating) field in DocType 'LMS Course Review' #: frontend/src/components/CourseCardOverlay.vue:147 -#: frontend/src/components/Modals/Event.vue:92 +#: frontend/src/components/Modals/Event.vue:98 #: frontend/src/components/Modals/ReviewModal.vue:18 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_course/lms_course.json @@ -5929,14 +5924,14 @@ msgstr "Суббота" #: frontend/src/components/Modals/AssignmentForm.vue:65 #: frontend/src/components/Modals/EditProfile.vue:121 #: frontend/src/components/Modals/EmailTemplateModal.vue:12 -#: frontend/src/components/Modals/Event.vue:115 -#: frontend/src/components/Modals/Event.vue:151 +#: frontend/src/components/Modals/Event.vue:121 +#: frontend/src/components/Modals/Event.vue:157 #: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeForm.vue:78 #: frontend/src/components/Settings/Coupons/CouponDetails.vue:78 -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:41 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:129 #: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17 #: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14 @@ -6048,7 +6043,7 @@ msgstr "Смотреть все" msgid "Select Date" msgstr "Выбрать дату" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:26 msgid "Select Payment Gateway" msgstr "Выберите платежный шлюз" @@ -6364,7 +6359,7 @@ msgstr "Статистика" #. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Submission' #. Label of the status (Select) field in DocType 'LMS Test Case Submission' -#: frontend/src/components/Modals/Event.vue:99 +#: frontend/src/components/Modals/Event.vue:105 #: frontend/src/components/Settings/Badges.vue:228 #: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/pages/AssignmentSubmissionList.vue:19 @@ -6475,7 +6470,7 @@ msgstr "Успешно зачислен в программу" #. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:106 +#: frontend/src/components/Modals/Event.vue:112 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Summary" msgstr "Резюме" @@ -6571,7 +6566,7 @@ msgstr "Командная работа" #. Label of the template (Link) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:43 -#: frontend/src/components/Modals/Event.vue:127 +#: frontend/src/components/Modals/Event.vue:133 #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Template" msgstr "Шаблон" @@ -6620,7 +6615,7 @@ msgstr "Спасибо за ваш отзыв." msgid "Thanks and Regards" msgstr "Спасибо и с наилучшими пожеланиями" -#: lms/lms/utils.py:2247 +#: lms/lms/utils.py:2248 msgid "The batch does not exist." msgstr "Партия не существует." @@ -6628,7 +6623,7 @@ msgstr "Партия не существует." msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session." msgstr "Пакет, за который вы записались, начинается завтра. Будьте готовы и подождите, пока не закончите сеанс." -#: lms/lms/utils.py:1747 +#: lms/lms/utils.py:1748 msgid "The coupon code '{0}' is invalid." msgstr "Код купона '{0}' недействителен." @@ -6652,7 +6647,7 @@ msgstr "" msgid "The last day to schedule your evaluations is " msgstr "Последний день, когда можно назначить оценки " -#: lms/lms/utils.py:2231 +#: lms/lms/utils.py:2232 msgid "The lesson does not exist." msgstr "Урока не существует." @@ -6660,7 +6655,7 @@ msgstr "Урока не существует." msgid "The slot is already booked by another participant." msgstr "Слот уже забронирован другим участником." -#: lms/lms/utils.py:1361 lms/lms/utils.py:1477 lms/lms/utils.py:1944 +#: lms/lms/utils.py:1362 lms/lms/utils.py:1478 lms/lms/utils.py:1945 msgid "The specified batch does not exist." msgstr "Указанная партия не существует." @@ -6726,15 +6721,15 @@ msgstr "Этот сертификат является бессрочным" msgid "This class has ended" msgstr "Этот урок закончился" -#: lms/lms/utils.py:1776 +#: lms/lms/utils.py:1777 msgid "This coupon has expired." msgstr "Срок действия этого купона истек." -#: lms/lms/utils.py:1779 +#: lms/lms/utils.py:1780 msgid "This coupon has reached its maximum usage limit." msgstr "Данный купон достиг максимального лимита использования." -#: lms/lms/utils.py:1788 +#: lms/lms/utils.py:1789 msgid "This coupon is not applicable to this {0}." msgstr "Этот купон не распространяется на этот {0}." @@ -6742,7 +6737,7 @@ msgstr "Этот купон не распространяется на этот msgid "This course has:" msgstr "Этот курс имеет:" -#: lms/lms/utils.py:1707 +#: lms/lms/utils.py:1708 msgid "This course is free." msgstr "Этот курс бесплатный." @@ -6799,7 +6794,7 @@ msgid "Thursday" msgstr "Четверг" #. Label of the time (Time) field in DocType 'LMS Live Class' -#: frontend/src/components/Modals/Event.vue:48 +#: frontend/src/components/Modals/Event.vue:54 #: frontend/src/components/Modals/LiveClassModal.vue:52 #: frontend/src/components/Quiz.vue:58 #: lms/lms/doctype/lms_live_class/lms_live_class.json @@ -6934,7 +6929,7 @@ msgstr "Кому" msgid "To Date" msgstr "По дате" -#: lms/lms/utils.py:1721 +#: lms/lms/utils.py:1722 msgid "To join this batch, please contact the Administrator." msgstr "Чтобы присоединиться к этой группе, свяжитесь с администратором." @@ -7056,7 +7051,7 @@ msgstr "Недоступно с даты не может быть больше, msgid "Under Review" msgstr "На рассмотрении" -#: frontend/src/pages/Batches.vue:330 frontend/src/pages/Courses.vue:356 +#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:355 msgid "Unpublished" msgstr "Не опубликовано" @@ -7077,8 +7072,8 @@ msgstr "Неструктурированная роль" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Label of the upcoming (Check) field in DocType 'LMS Course' -#: frontend/src/pages/Batches.vue:328 frontend/src/pages/CourseForm.vue:117 -#: frontend/src/pages/Courses.vue:347 +#: frontend/src/pages/Batches.vue:330 frontend/src/pages/CourseForm.vue:117 +#: frontend/src/pages/Courses.vue:346 #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_course/lms_course.json msgid "Upcoming" @@ -7220,7 +7215,7 @@ msgid "View Applications" msgstr "Просмотреть приложения" #: frontend/src/components/CertificationLinks.vue:10 -#: frontend/src/components/Modals/Event.vue:67 +#: frontend/src/components/Modals/Event.vue:73 msgid "View Certificate" msgstr "Просмотр сертификата" @@ -7327,6 +7322,11 @@ msgstr "С этой сертификацией вы теперь можете п msgid "Withdrawn" msgstr "Отозван" +#. Option for the 'Open to' (Select) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Work" +msgstr "" + #. Label of the work_environment (Section Break) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Work Environment" @@ -7427,7 +7427,7 @@ msgstr "Вы не можете изменить роли в режиме тол msgid "You cannot enroll in an unpublished course." msgstr "Вы не можете записаться на неопубликованный курс." -#: lms/lms/utils.py:2085 +#: lms/lms/utils.py:2086 msgid "You cannot enroll in an unpublished program." msgstr "Вы не можете зарегистрироваться в неопубликованной программе." @@ -7443,11 +7443,11 @@ msgstr "Вы не можете запланировать оценки посл msgid "You cannot schedule evaluations for past slots." msgstr "Вы не можете планировать оценки для прошедших слотов." -#: lms/lms/utils.py:2259 +#: lms/lms/utils.py:2260 msgid "You do not have access to this batch." msgstr "У вас нет доступа к этому пакету." -#: lms/lms/utils.py:2242 +#: lms/lms/utils.py:2243 msgid "You do not have access to this course." msgstr "У вас нет доступа к этому курсу." diff --git a/lms/locale/sl.po b/lms/locale/sl.po index 96fdd3e6..68d5992c 100644 --- a/lms/locale/sl.po +++ b/lms/locale/sl.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n" -"POT-Creation-Date: 2026-01-16 16:04+0000\n" -"PO-Revision-Date: 2026-01-19 20:13\n" +"POT-Creation-Date: 2026-01-23 16:05+0000\n" +"PO-Revision-Date: 2026-02-05 06:43\n" "Last-Translator: jannat@frappe.io\n" "Language-Team: Slovenian\n" "MIME-Version: 1.0\n" @@ -319,7 +319,7 @@ msgid "Administrator" msgstr "Administrator" #. Name of a role -#: frontend/src/pages/Batches.vue:319 lms/lms/doctype/lms_badge/lms_badge.json +#: frontend/src/pages/Batches.vue:321 lms/lms/doctype/lms_badge/lms_badge.json msgid "All" msgstr "Vsi" @@ -486,7 +486,7 @@ msgstr "Odobreno" msgid "Apps" msgstr "Aplikacije" -#: frontend/src/pages/Batches.vue:329 +#: frontend/src/pages/Batches.vue:331 msgid "Archived" msgstr "Arhivirano" @@ -753,7 +753,7 @@ msgstr "" #. Label of the batch_name (Link) field in DocType 'LMS Certificate' #. Label of the batch_name (Link) field in DocType 'LMS Certificate Request' #. Label of the batch_name (Link) field in DocType 'LMS Live Class' -#: frontend/src/components/Modals/Event.vue:32 +#: frontend/src/components/Modals/Event.vue:35 #: frontend/src/components/Settings/BadgeForm.vue:195 #: frontend/src/components/Settings/Badges.vue:200 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125 @@ -878,7 +878,7 @@ msgid "Batch:" msgstr "Skupina:" #. Label of the batches (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/Batches.vue:350 frontend/src/pages/Batches.vue:357 +#: frontend/src/pages/Batches.vue:352 frontend/src/pages/Batches.vue:359 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121 msgid "Batches" msgstr "Skupine" @@ -1023,7 +1023,7 @@ msgstr "Povezava Potrdila" msgid "Certificate of Completion" msgstr "" -#: frontend/src/components/Modals/Event.vue:347 +#: frontend/src/components/Modals/Event.vue:353 msgid "Certificate saved successfully" msgstr "Potrdilo je uspešno shranjeno" @@ -1043,7 +1043,7 @@ msgstr "Potrdila so uspešno ustvarjena" #. Label of a chart in the LMS Workspace #. Label of a Card Break in the LMS Workspace #. Label of a Link in the LMS Workspace -#: frontend/src/components/Modals/Event.vue:411 +#: frontend/src/components/Modals/Event.vue:427 #: frontend/src/components/Sidebar/AppSidebar.vue:550 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100 #: frontend/src/pages/CourseCertification.vue:10 @@ -1771,7 +1771,7 @@ msgstr "Tečaj {0} je že dodan v ta program." #: frontend/src/components/Modals/BatchStudentProgress.vue:95 #: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/CourseCertification.vue:127 -#: frontend/src/pages/Courses.vue:365 frontend/src/pages/Courses.vue:372 +#: frontend/src/pages/Courses.vue:364 frontend/src/pages/Courses.vue:371 #: frontend/src/pages/Programs/ProgramForm.vue:49 #: frontend/src/pages/Programs/Programs.vue:35 #: lms/lms/doctype/lms_batch/lms_batch.json @@ -1878,7 +1878,7 @@ msgstr "Ustvari Prvi Tečaj" msgid "Create your first quiz" msgstr "Ustvari Prvi Kviz" -#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:355 +#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:354 msgid "Created" msgstr "Ustvarjeno" @@ -1954,7 +1954,7 @@ msgstr "Uvoz Podatkov" #. Label of the date (Date) field in DocType 'LMS Certificate Request' #. Label of the date (Date) field in DocType 'LMS Live Class' #. Label of the date (Date) field in DocType 'Scheduled Flow' -#: frontend/src/components/Modals/Event.vue:40 +#: frontend/src/components/Modals/Event.vue:46 #: frontend/src/components/Modals/LiveClassModal.vue:29 #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json @@ -2241,7 +2241,7 @@ msgstr "Uredi Kupon" msgid "Edit Email Template" msgstr "Uredi predloge e-pošte" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:13 msgid "Edit Payment Gateway" msgstr "Uredi Plačilni Prehod" @@ -2424,7 +2424,7 @@ msgstr "" msgid "Enroll Now" msgstr "Vpišite se zdaj" -#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:358 +#: frontend/src/pages/Batches.vue:334 frontend/src/pages/Courses.vue:357 #: frontend/src/pages/Programs/StudentPrograms.vue:96 msgid "Enrolled" msgstr "Vpisan" @@ -2526,7 +2526,7 @@ msgstr "" #. Label of a Link in the LMS Workspace #. Label of a shortcut in the LMS Workspace -#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json +#: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json msgid "Evaluation" msgstr "Vrednotenje" @@ -2551,7 +2551,7 @@ msgstr "" msgid "Evaluation end date cannot be less than the batch end date." msgstr "" -#: frontend/src/components/Modals/Event.vue:286 +#: frontend/src/components/Modals/Event.vue:292 msgid "Evaluation saved successfully" msgstr "" @@ -2664,7 +2664,7 @@ msgstr "Poteče" #. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:33 -#: frontend/src/components/Modals/Event.vue:144 +#: frontend/src/components/Modals/Event.vue:150 #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Expiry Date" msgstr "Datum Poteka" @@ -2695,7 +2695,7 @@ msgstr "Razišči več" #. Submission' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:396 +#: frontend/src/components/Modals/Event.vue:412 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Fail" @@ -3209,7 +3209,7 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' #. Option for the 'Status' (Select) field in DocType 'LMS Course' -#: frontend/src/components/Modals/Event.vue:388 +#: frontend/src/components/Modals/Event.vue:404 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_course/lms_course.json msgid "In Progress" @@ -3353,7 +3353,7 @@ msgstr "" #. Label of the issue_date (Date) field in DocType 'Certification' #. Label of the issue_date (Date) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:28 -#: frontend/src/components/Modals/Event.vue:138 +#: frontend/src/components/Modals/Event.vue:144 #: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Issue Date" @@ -3456,7 +3456,7 @@ msgstr "" msgid "Join Call" msgstr "" -#: frontend/src/components/Modals/Event.vue:78 +#: frontend/src/components/Modals/Event.vue:84 msgid "Join Meeting" msgstr "" @@ -3896,7 +3896,7 @@ msgstr "" msgid "LinkedIn ID" msgstr "" -#: frontend/src/pages/Courses.vue:341 +#: frontend/src/pages/Courses.vue:340 msgid "Live" msgstr "V živo" @@ -4429,7 +4429,7 @@ msgstr "" #: frontend/src/components/Settings/Members.vue:17 #: frontend/src/components/Settings/PaymentGateways.vue:16 #: frontend/src/components/Settings/ZoomSettings.vue:17 -#: frontend/src/pages/Courses.vue:344 +#: frontend/src/pages/Courses.vue:343 #: frontend/src/pages/Programs/Programs.vue:10 #: lms/lms/doctype/lms_badge/lms_badge.json msgid "New" @@ -4461,7 +4461,7 @@ msgstr "" msgid "New Job Applicant" msgstr "" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:12 msgid "New Payment Gateway" msgstr "" @@ -4778,12 +4778,7 @@ msgstr "" #: frontend/src/components/UserAvatar.vue:11 #: frontend/src/pages/CertifiedParticipants.vue:46 #: frontend/src/pages/Profile.vue:69 -msgid "Open to Opportunities" -msgstr "" - -#. Option for the 'Open to' (Select) field in DocType 'User' -#: lms/fixtures/custom_field.json -msgid "Opportunities" +msgid "Open to Work" msgstr "" #. Label of the option (Data) field in DocType 'LMS Option' @@ -4924,7 +4919,7 @@ msgstr "" #. Submission' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:392 +#: frontend/src/components/Modals/Event.vue:408 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Pass" @@ -5054,7 +5049,7 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' #. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' -#: frontend/src/components/Modals/Event.vue:384 +#: frontend/src/components/Modals/Event.vue:400 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json msgid "Pending" @@ -5194,7 +5189,7 @@ msgstr "" msgid "Please login to continue with payment." msgstr "" -#: lms/lms/utils.py:2081 +#: lms/lms/utils.py:2082 msgid "Please login to enroll in the program." msgstr "" @@ -5525,7 +5520,7 @@ msgstr "" #. Label of the published (Check) field in DocType 'LMS Course' #. Label of the published (Check) field in DocType 'LMS Program' #: frontend/src/components/Modals/BulkCertificates.vue:51 -#: frontend/src/components/Modals/Event.vue:122 +#: frontend/src/components/Modals/Event.vue:128 #: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105 #: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/StudentPrograms.vue:100 @@ -5693,7 +5688,7 @@ msgstr "" #. Label of the rating (Data) field in DocType 'LMS Course' #. Label of the rating (Rating) field in DocType 'LMS Course Review' #: frontend/src/components/CourseCardOverlay.vue:147 -#: frontend/src/components/Modals/Event.vue:92 +#: frontend/src/components/Modals/Event.vue:98 #: frontend/src/components/Modals/ReviewModal.vue:18 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_course/lms_course.json @@ -5929,14 +5924,14 @@ msgstr "" #: frontend/src/components/Modals/AssignmentForm.vue:65 #: frontend/src/components/Modals/EditProfile.vue:121 #: frontend/src/components/Modals/EmailTemplateModal.vue:12 -#: frontend/src/components/Modals/Event.vue:115 -#: frontend/src/components/Modals/Event.vue:151 +#: frontend/src/components/Modals/Event.vue:121 +#: frontend/src/components/Modals/Event.vue:157 #: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeForm.vue:78 #: frontend/src/components/Settings/Coupons/CouponDetails.vue:78 -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:41 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:129 #: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17 #: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14 @@ -6048,7 +6043,7 @@ msgstr "" msgid "Select Date" msgstr "" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:26 msgid "Select Payment Gateway" msgstr "" @@ -6364,7 +6359,7 @@ msgstr "" #. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Submission' #. Label of the status (Select) field in DocType 'LMS Test Case Submission' -#: frontend/src/components/Modals/Event.vue:99 +#: frontend/src/components/Modals/Event.vue:105 #: frontend/src/components/Settings/Badges.vue:228 #: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/pages/AssignmentSubmissionList.vue:19 @@ -6475,7 +6470,7 @@ msgstr "" #. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:106 +#: frontend/src/components/Modals/Event.vue:112 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Summary" msgstr "" @@ -6571,7 +6566,7 @@ msgstr "" #. Label of the template (Link) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:43 -#: frontend/src/components/Modals/Event.vue:127 +#: frontend/src/components/Modals/Event.vue:133 #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Template" msgstr "Predloga" @@ -6620,7 +6615,7 @@ msgstr "" msgid "Thanks and Regards" msgstr "" -#: lms/lms/utils.py:2247 +#: lms/lms/utils.py:2248 msgid "The batch does not exist." msgstr "" @@ -6628,7 +6623,7 @@ msgstr "" msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session." msgstr "" -#: lms/lms/utils.py:1747 +#: lms/lms/utils.py:1748 msgid "The coupon code '{0}' is invalid." msgstr "" @@ -6652,7 +6647,7 @@ msgstr "" msgid "The last day to schedule your evaluations is " msgstr "" -#: lms/lms/utils.py:2231 +#: lms/lms/utils.py:2232 msgid "The lesson does not exist." msgstr "" @@ -6660,7 +6655,7 @@ msgstr "" msgid "The slot is already booked by another participant." msgstr "" -#: lms/lms/utils.py:1361 lms/lms/utils.py:1477 lms/lms/utils.py:1944 +#: lms/lms/utils.py:1362 lms/lms/utils.py:1478 lms/lms/utils.py:1945 msgid "The specified batch does not exist." msgstr "" @@ -6726,15 +6721,15 @@ msgstr "" msgid "This class has ended" msgstr "" -#: lms/lms/utils.py:1776 +#: lms/lms/utils.py:1777 msgid "This coupon has expired." msgstr "" -#: lms/lms/utils.py:1779 +#: lms/lms/utils.py:1780 msgid "This coupon has reached its maximum usage limit." msgstr "" -#: lms/lms/utils.py:1788 +#: lms/lms/utils.py:1789 msgid "This coupon is not applicable to this {0}." msgstr "" @@ -6742,7 +6737,7 @@ msgstr "" msgid "This course has:" msgstr "" -#: lms/lms/utils.py:1707 +#: lms/lms/utils.py:1708 msgid "This course is free." msgstr "" @@ -6799,7 +6794,7 @@ msgid "Thursday" msgstr "" #. Label of the time (Time) field in DocType 'LMS Live Class' -#: frontend/src/components/Modals/Event.vue:48 +#: frontend/src/components/Modals/Event.vue:54 #: frontend/src/components/Modals/LiveClassModal.vue:52 #: frontend/src/components/Quiz.vue:58 #: lms/lms/doctype/lms_live_class/lms_live_class.json @@ -6934,7 +6929,7 @@ msgstr "" msgid "To Date" msgstr "" -#: lms/lms/utils.py:1721 +#: lms/lms/utils.py:1722 msgid "To join this batch, please contact the Administrator." msgstr "" @@ -7056,7 +7051,7 @@ msgstr "" msgid "Under Review" msgstr "" -#: frontend/src/pages/Batches.vue:330 frontend/src/pages/Courses.vue:356 +#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:355 msgid "Unpublished" msgstr "" @@ -7077,8 +7072,8 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Label of the upcoming (Check) field in DocType 'LMS Course' -#: frontend/src/pages/Batches.vue:328 frontend/src/pages/CourseForm.vue:117 -#: frontend/src/pages/Courses.vue:347 +#: frontend/src/pages/Batches.vue:330 frontend/src/pages/CourseForm.vue:117 +#: frontend/src/pages/Courses.vue:346 #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_course/lms_course.json msgid "Upcoming" @@ -7220,7 +7215,7 @@ msgid "View Applications" msgstr "" #: frontend/src/components/CertificationLinks.vue:10 -#: frontend/src/components/Modals/Event.vue:67 +#: frontend/src/components/Modals/Event.vue:73 msgid "View Certificate" msgstr "" @@ -7327,6 +7322,11 @@ msgstr "" msgid "Withdrawn" msgstr "" +#. Option for the 'Open to' (Select) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Work" +msgstr "" + #. Label of the work_environment (Section Break) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Work Environment" @@ -7427,7 +7427,7 @@ msgstr "" msgid "You cannot enroll in an unpublished course." msgstr "" -#: lms/lms/utils.py:2085 +#: lms/lms/utils.py:2086 msgid "You cannot enroll in an unpublished program." msgstr "" @@ -7443,11 +7443,11 @@ msgstr "" msgid "You cannot schedule evaluations for past slots." msgstr "" -#: lms/lms/utils.py:2259 +#: lms/lms/utils.py:2260 msgid "You do not have access to this batch." msgstr "" -#: lms/lms/utils.py:2242 +#: lms/lms/utils.py:2243 msgid "You do not have access to this course." msgstr "" diff --git a/lms/locale/sr.po b/lms/locale/sr.po index 5d3cc363..3890928a 100644 --- a/lms/locale/sr.po +++ b/lms/locale/sr.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n" -"POT-Creation-Date: 2026-01-16 16:04+0000\n" -"PO-Revision-Date: 2026-01-21 20:16\n" +"POT-Creation-Date: 2026-01-23 16:05+0000\n" +"PO-Revision-Date: 2026-02-05 06:43\n" "Last-Translator: jannat@frappe.io\n" "Language-Team: Serbian (Cyrillic)\n" "MIME-Version: 1.0\n" @@ -319,7 +319,7 @@ msgid "Administrator" msgstr "Администратор" #. Name of a role -#: frontend/src/pages/Batches.vue:319 lms/lms/doctype/lms_badge/lms_badge.json +#: frontend/src/pages/Batches.vue:321 lms/lms/doctype/lms_badge/lms_badge.json msgid "All" msgstr "Све" @@ -486,7 +486,7 @@ msgstr "Одобрено" msgid "Apps" msgstr "Апликације" -#: frontend/src/pages/Batches.vue:329 +#: frontend/src/pages/Batches.vue:331 msgid "Archived" msgstr "Архивирано" @@ -753,7 +753,7 @@ msgstr "Беџ {0} је већ додељен овом {1}." #. Label of the batch_name (Link) field in DocType 'LMS Certificate' #. Label of the batch_name (Link) field in DocType 'LMS Certificate Request' #. Label of the batch_name (Link) field in DocType 'LMS Live Class' -#: frontend/src/components/Modals/Event.vue:32 +#: frontend/src/components/Modals/Event.vue:35 #: frontend/src/components/Settings/BadgeForm.vue:195 #: frontend/src/components/Settings/Badges.vue:200 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125 @@ -878,7 +878,7 @@ msgid "Batch:" msgstr "Група:" #. Label of the batches (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/Batches.vue:350 frontend/src/pages/Batches.vue:357 +#: frontend/src/pages/Batches.vue:352 frontend/src/pages/Batches.vue:359 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121 msgid "Batches" msgstr "Групе" @@ -1023,7 +1023,7 @@ msgstr "Линк сертификата" msgid "Certificate of Completion" msgstr "Сертификат о похађању" -#: frontend/src/components/Modals/Event.vue:347 +#: frontend/src/components/Modals/Event.vue:353 msgid "Certificate saved successfully" msgstr "Сертификат је успешно сачуван" @@ -1043,7 +1043,7 @@ msgstr "Сертификати су успешно генерисани" #. Label of a chart in the LMS Workspace #. Label of a Card Break in the LMS Workspace #. Label of a Link in the LMS Workspace -#: frontend/src/components/Modals/Event.vue:411 +#: frontend/src/components/Modals/Event.vue:427 #: frontend/src/components/Sidebar/AppSidebar.vue:550 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100 #: frontend/src/pages/CourseCertification.vue:10 @@ -1771,7 +1771,7 @@ msgstr "Обука {0} је већ додата у овај програм." #: frontend/src/components/Modals/BatchStudentProgress.vue:95 #: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/CourseCertification.vue:127 -#: frontend/src/pages/Courses.vue:365 frontend/src/pages/Courses.vue:372 +#: frontend/src/pages/Courses.vue:364 frontend/src/pages/Courses.vue:371 #: frontend/src/pages/Programs/ProgramForm.vue:49 #: frontend/src/pages/Programs/Programs.vue:35 #: lms/lms/doctype/lms_batch/lms_batch.json @@ -1878,7 +1878,7 @@ msgstr "Креирајте своју прву обуку" msgid "Create your first quiz" msgstr "Креирајте свој први квиз" -#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:355 +#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:354 msgid "Created" msgstr "Креирано" @@ -1954,7 +1954,7 @@ msgstr "Увоз податка" #. Label of the date (Date) field in DocType 'LMS Certificate Request' #. Label of the date (Date) field in DocType 'LMS Live Class' #. Label of the date (Date) field in DocType 'Scheduled Flow' -#: frontend/src/components/Modals/Event.vue:40 +#: frontend/src/components/Modals/Event.vue:46 #: frontend/src/components/Modals/LiveClassModal.vue:29 #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json @@ -2241,7 +2241,7 @@ msgstr "Уреди купон" msgid "Edit Email Template" msgstr "Уреди имејл шаблон" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:13 msgid "Edit Payment Gateway" msgstr "Уреди платни портал" @@ -2424,7 +2424,7 @@ msgstr "Упиши члана у програм" msgid "Enroll Now" msgstr "Упишите се сада" -#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:358 +#: frontend/src/pages/Batches.vue:334 frontend/src/pages/Courses.vue:357 #: frontend/src/pages/Programs/StudentPrograms.vue:96 msgid "Enrolled" msgstr "Уписан" @@ -2526,7 +2526,7 @@ msgstr "Грешка приликом ажурирања имејл шаблон #. Label of a Link in the LMS Workspace #. Label of a shortcut in the LMS Workspace -#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json +#: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json msgid "Evaluation" msgstr "Оцењивање" @@ -2551,7 +2551,7 @@ msgstr "Захтев за оцењивање" msgid "Evaluation end date cannot be less than the batch end date." msgstr "Датум завршетка оцењивања не може бити мањи од датума завршетка групе." -#: frontend/src/components/Modals/Event.vue:286 +#: frontend/src/components/Modals/Event.vue:292 msgid "Evaluation saved successfully" msgstr "Оцењивање је успешно сачувано" @@ -2664,7 +2664,7 @@ msgstr "Истиче на" #. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:33 -#: frontend/src/components/Modals/Event.vue:144 +#: frontend/src/components/Modals/Event.vue:150 #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Expiry Date" msgstr "Датум истека" @@ -2695,7 +2695,7 @@ msgstr "Истражите више" #. Submission' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:396 +#: frontend/src/components/Modals/Event.vue:412 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Fail" @@ -3209,7 +3209,7 @@ msgstr "Увези обуку" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' #. Option for the 'Status' (Select) field in DocType 'LMS Course' -#: frontend/src/components/Modals/Event.vue:388 +#: frontend/src/components/Modals/Event.vue:404 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_course/lms_course.json msgid "In Progress" @@ -3353,7 +3353,7 @@ msgstr "SCORM пакет" #. Label of the issue_date (Date) field in DocType 'Certification' #. Label of the issue_date (Date) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:28 -#: frontend/src/components/Modals/Event.vue:138 +#: frontend/src/components/Modals/Event.vue:144 #: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Issue Date" @@ -3456,7 +3456,7 @@ msgstr "Придружи се" msgid "Join Call" msgstr "Придружи се позиву" -#: frontend/src/components/Modals/Event.vue:78 +#: frontend/src/components/Modals/Event.vue:84 msgid "Join Meeting" msgstr "Придружи се састанку" @@ -3896,7 +3896,7 @@ msgstr "LinkedIn" msgid "LinkedIn ID" msgstr "LinkedIn ИД" -#: frontend/src/pages/Courses.vue:341 +#: frontend/src/pages/Courses.vue:340 msgid "Live" msgstr "Активно" @@ -4429,7 +4429,7 @@ msgstr "Име" #: frontend/src/components/Settings/Members.vue:17 #: frontend/src/components/Settings/PaymentGateways.vue:16 #: frontend/src/components/Settings/ZoomSettings.vue:17 -#: frontend/src/pages/Courses.vue:344 +#: frontend/src/pages/Courses.vue:343 #: frontend/src/pages/Programs/Programs.vue:10 #: lms/lms/doctype/lms_badge/lms_badge.json msgid "New" @@ -4461,7 +4461,7 @@ msgstr "Нови посао" msgid "New Job Applicant" msgstr "Нови кандидат за посао" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:12 msgid "New Payment Gateway" msgstr "Нови платни портал" @@ -4778,13 +4778,8 @@ msgstr "Отворен за" #: frontend/src/components/UserAvatar.vue:11 #: frontend/src/pages/CertifiedParticipants.vue:46 #: frontend/src/pages/Profile.vue:69 -msgid "Open to Opportunities" -msgstr "Отворен за прилике" - -#. Option for the 'Open to' (Select) field in DocType 'User' -#: lms/fixtures/custom_field.json -msgid "Opportunities" -msgstr "Прилике" +msgid "Open to Work" +msgstr "" #. Label of the option (Data) field in DocType 'LMS Option' #: frontend/src/components/Modals/Question.vue:70 @@ -4924,7 +4919,7 @@ msgstr "Делимично завршено" #. Submission' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:392 +#: frontend/src/components/Modals/Event.vue:408 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Pass" @@ -5054,7 +5049,7 @@ msgstr "Апликација за обраду плаћања није инст #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' #. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' -#: frontend/src/components/Modals/Event.vue:384 +#: frontend/src/components/Modals/Event.vue:400 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json msgid "Pending" @@ -5194,7 +5189,7 @@ msgstr "Молимо Вас да се пријавите да бисте при msgid "Please login to continue with payment." msgstr "Молимо Вас да се пријавите да бисте наставили са плаћањем." -#: lms/lms/utils.py:2081 +#: lms/lms/utils.py:2082 msgid "Please login to enroll in the program." msgstr "Молимо Вас да се пријавите да бисте се уписали у програм." @@ -5525,7 +5520,7 @@ msgstr "Објави на страници учесника" #. Label of the published (Check) field in DocType 'LMS Course' #. Label of the published (Check) field in DocType 'LMS Program' #: frontend/src/components/Modals/BulkCertificates.vue:51 -#: frontend/src/components/Modals/Event.vue:122 +#: frontend/src/components/Modals/Event.vue:128 #: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105 #: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/StudentPrograms.vue:100 @@ -5693,7 +5688,7 @@ msgstr "Квизови у овом видео-снимку" #. Label of the rating (Data) field in DocType 'LMS Course' #. Label of the rating (Rating) field in DocType 'LMS Course Review' #: frontend/src/components/CourseCardOverlay.vue:147 -#: frontend/src/components/Modals/Event.vue:92 +#: frontend/src/components/Modals/Event.vue:98 #: frontend/src/components/Modals/ReviewModal.vue:18 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_course/lms_course.json @@ -5929,14 +5924,14 @@ msgstr "Субота" #: frontend/src/components/Modals/AssignmentForm.vue:65 #: frontend/src/components/Modals/EditProfile.vue:121 #: frontend/src/components/Modals/EmailTemplateModal.vue:12 -#: frontend/src/components/Modals/Event.vue:115 -#: frontend/src/components/Modals/Event.vue:151 +#: frontend/src/components/Modals/Event.vue:121 +#: frontend/src/components/Modals/Event.vue:157 #: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeForm.vue:78 #: frontend/src/components/Settings/Coupons/CouponDetails.vue:78 -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:41 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:129 #: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17 #: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14 @@ -6048,7 +6043,7 @@ msgstr "Погледај све" msgid "Select Date" msgstr "Изаберите датум" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:26 msgid "Select Payment Gateway" msgstr "Изаберите платни портал" @@ -6364,7 +6359,7 @@ msgstr "Статистика" #. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Submission' #. Label of the status (Select) field in DocType 'LMS Test Case Submission' -#: frontend/src/components/Modals/Event.vue:99 +#: frontend/src/components/Modals/Event.vue:105 #: frontend/src/components/Settings/Badges.vue:228 #: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/pages/AssignmentSubmissionList.vue:19 @@ -6475,7 +6470,7 @@ msgstr "Успешно сте уписани у програм" #. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:106 +#: frontend/src/components/Modals/Event.vue:112 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Summary" msgstr "Резиме" @@ -6571,7 +6566,7 @@ msgstr "Тимски рад" #. Label of the template (Link) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:43 -#: frontend/src/components/Modals/Event.vue:127 +#: frontend/src/components/Modals/Event.vue:133 #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Template" msgstr "Шаблон" @@ -6620,7 +6615,7 @@ msgstr "Хвала Вам што сте поделили своје утиске msgid "Thanks and Regards" msgstr "Хвала и срдачан поздрав" -#: lms/lms/utils.py:2247 +#: lms/lms/utils.py:2248 msgid "The batch does not exist." msgstr "Група не постоји." @@ -6628,7 +6623,7 @@ msgstr "Група не постоји." msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session." msgstr "Група у коју сте се уписали почиње сутра. Молимо Вас да будете спремни и тачни за сесију." -#: lms/lms/utils.py:1747 +#: lms/lms/utils.py:1748 msgid "The coupon code '{0}' is invalid." msgstr "Шифра купона '{0}' није важећа." @@ -6652,7 +6647,7 @@ msgstr "Предавача је оставио коментар на Вашем msgid "The last day to schedule your evaluations is " msgstr "Последњи дан за заказивање Вашег оцењивања је " -#: lms/lms/utils.py:2231 +#: lms/lms/utils.py:2232 msgid "The lesson does not exist." msgstr "Лекција не постоји." @@ -6660,7 +6655,7 @@ msgstr "Лекција не постоји." msgid "The slot is already booked by another participant." msgstr "Термин је већ резервисан од стране другог учесника." -#: lms/lms/utils.py:1361 lms/lms/utils.py:1477 lms/lms/utils.py:1944 +#: lms/lms/utils.py:1362 lms/lms/utils.py:1478 lms/lms/utils.py:1945 msgid "The specified batch does not exist." msgstr "Наведена група не постоји." @@ -6726,15 +6721,15 @@ msgstr "Овај сертификат нема рок трајања" msgid "This class has ended" msgstr "Ово предавање се завршило" -#: lms/lms/utils.py:1776 +#: lms/lms/utils.py:1777 msgid "This coupon has expired." msgstr "Овај купон је истекао." -#: lms/lms/utils.py:1779 +#: lms/lms/utils.py:1780 msgid "This coupon has reached its maximum usage limit." msgstr "Овај купон је достигао максимално ограничење употребе." -#: lms/lms/utils.py:1788 +#: lms/lms/utils.py:1789 msgid "This coupon is not applicable to this {0}." msgstr "Овај купон се не може применити на овај {0}." @@ -6742,7 +6737,7 @@ msgstr "Овај купон се не може применити на овај msgid "This course has:" msgstr "Ова обука садржи:" -#: lms/lms/utils.py:1707 +#: lms/lms/utils.py:1708 msgid "This course is free." msgstr "Ова обука је бесплатна." @@ -6799,7 +6794,7 @@ msgid "Thursday" msgstr "Четвртак" #. Label of the time (Time) field in DocType 'LMS Live Class' -#: frontend/src/components/Modals/Event.vue:48 +#: frontend/src/components/Modals/Event.vue:54 #: frontend/src/components/Modals/LiveClassModal.vue:52 #: frontend/src/components/Quiz.vue:58 #: lms/lms/doctype/lms_live_class/lms_live_class.json @@ -6934,7 +6929,7 @@ msgstr "За" msgid "To Date" msgstr "Датум завршетка" -#: lms/lms/utils.py:1721 +#: lms/lms/utils.py:1722 msgid "To join this batch, please contact the Administrator." msgstr "За придруживање овој групи, молимо Вас да контактирате администратора." @@ -7056,7 +7051,7 @@ msgstr "Датум почетка недоступности не може би msgid "Under Review" msgstr "Преглед у току" -#: frontend/src/pages/Batches.vue:330 frontend/src/pages/Courses.vue:356 +#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:355 msgid "Unpublished" msgstr "Необјављено" @@ -7077,8 +7072,8 @@ msgstr "Неструктурирана улога" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Label of the upcoming (Check) field in DocType 'LMS Course' -#: frontend/src/pages/Batches.vue:328 frontend/src/pages/CourseForm.vue:117 -#: frontend/src/pages/Courses.vue:347 +#: frontend/src/pages/Batches.vue:330 frontend/src/pages/CourseForm.vue:117 +#: frontend/src/pages/Courses.vue:346 #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_course/lms_course.json msgid "Upcoming" @@ -7220,7 +7215,7 @@ msgid "View Applications" msgstr "Приказ пријава" #: frontend/src/components/CertificationLinks.vue:10 -#: frontend/src/components/Modals/Event.vue:67 +#: frontend/src/components/Modals/Event.vue:73 msgid "View Certificate" msgstr "Приказ сертификата" @@ -7327,6 +7322,11 @@ msgstr "Уз ову сертификацију сада можете показ msgid "Withdrawn" msgstr "Повучено" +#. Option for the 'Open to' (Select) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Work" +msgstr "" + #. Label of the work_environment (Section Break) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Work Environment" @@ -7427,7 +7427,7 @@ msgstr "Не можете мењати улоге у режиму само за msgid "You cannot enroll in an unpublished course." msgstr "Није могуће уписати се на необјављену обуку." -#: lms/lms/utils.py:2085 +#: lms/lms/utils.py:2086 msgid "You cannot enroll in an unpublished program." msgstr "Није могуће уписати се на необјављен програм." @@ -7443,11 +7443,11 @@ msgstr "Не можете заказати оцењивање након {0}." msgid "You cannot schedule evaluations for past slots." msgstr "Оцењивање није могуће заказати за термине који су већ прошли." -#: lms/lms/utils.py:2259 +#: lms/lms/utils.py:2260 msgid "You do not have access to this batch." msgstr "Немате приступ овој групи." -#: lms/lms/utils.py:2242 +#: lms/lms/utils.py:2243 msgid "You do not have access to this course." msgstr "Немате приступ овој обуци." diff --git a/lms/locale/sr_CS.po b/lms/locale/sr_CS.po index bcd3b490..d4d66b32 100644 --- a/lms/locale/sr_CS.po +++ b/lms/locale/sr_CS.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n" -"POT-Creation-Date: 2026-01-16 16:04+0000\n" -"PO-Revision-Date: 2026-01-21 20:16\n" +"POT-Creation-Date: 2026-01-23 16:05+0000\n" +"PO-Revision-Date: 2026-02-05 06:43\n" "Last-Translator: jannat@frappe.io\n" "Language-Team: Serbian (Latin)\n" "MIME-Version: 1.0\n" @@ -319,7 +319,7 @@ msgid "Administrator" msgstr "Administrator" #. Name of a role -#: frontend/src/pages/Batches.vue:319 lms/lms/doctype/lms_badge/lms_badge.json +#: frontend/src/pages/Batches.vue:321 lms/lms/doctype/lms_badge/lms_badge.json msgid "All" msgstr "Sve" @@ -486,7 +486,7 @@ msgstr "Odobreno" msgid "Apps" msgstr "Aplikacije" -#: frontend/src/pages/Batches.vue:329 +#: frontend/src/pages/Batches.vue:331 msgid "Archived" msgstr "Arhivirano" @@ -753,7 +753,7 @@ msgstr "Bedž {0} je već dodeljen ovom {1}." #. Label of the batch_name (Link) field in DocType 'LMS Certificate' #. Label of the batch_name (Link) field in DocType 'LMS Certificate Request' #. Label of the batch_name (Link) field in DocType 'LMS Live Class' -#: frontend/src/components/Modals/Event.vue:32 +#: frontend/src/components/Modals/Event.vue:35 #: frontend/src/components/Settings/BadgeForm.vue:195 #: frontend/src/components/Settings/Badges.vue:200 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125 @@ -878,7 +878,7 @@ msgid "Batch:" msgstr "Grupa:" #. Label of the batches (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/Batches.vue:350 frontend/src/pages/Batches.vue:357 +#: frontend/src/pages/Batches.vue:352 frontend/src/pages/Batches.vue:359 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121 msgid "Batches" msgstr "Grupe" @@ -1023,7 +1023,7 @@ msgstr "Link sertifikata" msgid "Certificate of Completion" msgstr "Sertifikat o pohađanju" -#: frontend/src/components/Modals/Event.vue:347 +#: frontend/src/components/Modals/Event.vue:353 msgid "Certificate saved successfully" msgstr "Sertifikat je uspešno sačuvan" @@ -1043,7 +1043,7 @@ msgstr "Sertifikati su uspešno generisani" #. Label of a chart in the LMS Workspace #. Label of a Card Break in the LMS Workspace #. Label of a Link in the LMS Workspace -#: frontend/src/components/Modals/Event.vue:411 +#: frontend/src/components/Modals/Event.vue:427 #: frontend/src/components/Sidebar/AppSidebar.vue:550 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100 #: frontend/src/pages/CourseCertification.vue:10 @@ -1771,7 +1771,7 @@ msgstr "Obuka {0} je već dodata u ovaj program." #: frontend/src/components/Modals/BatchStudentProgress.vue:95 #: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/CourseCertification.vue:127 -#: frontend/src/pages/Courses.vue:365 frontend/src/pages/Courses.vue:372 +#: frontend/src/pages/Courses.vue:364 frontend/src/pages/Courses.vue:371 #: frontend/src/pages/Programs/ProgramForm.vue:49 #: frontend/src/pages/Programs/Programs.vue:35 #: lms/lms/doctype/lms_batch/lms_batch.json @@ -1878,7 +1878,7 @@ msgstr "Kreirajte svoju prvu obuku" msgid "Create your first quiz" msgstr "Kreirajte svoj prvi kviz" -#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:355 +#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:354 msgid "Created" msgstr "Kreirano" @@ -1954,7 +1954,7 @@ msgstr "Uvoz podatka" #. Label of the date (Date) field in DocType 'LMS Certificate Request' #. Label of the date (Date) field in DocType 'LMS Live Class' #. Label of the date (Date) field in DocType 'Scheduled Flow' -#: frontend/src/components/Modals/Event.vue:40 +#: frontend/src/components/Modals/Event.vue:46 #: frontend/src/components/Modals/LiveClassModal.vue:29 #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json @@ -2241,7 +2241,7 @@ msgstr "Uredi kupon" msgid "Edit Email Template" msgstr "Uredi imejl šablon" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:13 msgid "Edit Payment Gateway" msgstr "Uredi platni portal" @@ -2424,7 +2424,7 @@ msgstr "Upiši člana u program" msgid "Enroll Now" msgstr "Upišite se sada" -#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:358 +#: frontend/src/pages/Batches.vue:334 frontend/src/pages/Courses.vue:357 #: frontend/src/pages/Programs/StudentPrograms.vue:96 msgid "Enrolled" msgstr "Upisan" @@ -2526,7 +2526,7 @@ msgstr "Greška prilikom ažuriranja imejl šablona" #. Label of a Link in the LMS Workspace #. Label of a shortcut in the LMS Workspace -#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json +#: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json msgid "Evaluation" msgstr "Ocenjivanje" @@ -2551,7 +2551,7 @@ msgstr "Zahtev za ocenjivanje" msgid "Evaluation end date cannot be less than the batch end date." msgstr "Datum završetka ocenjivanja ne može biti manji od datuma završetka grupe." -#: frontend/src/components/Modals/Event.vue:286 +#: frontend/src/components/Modals/Event.vue:292 msgid "Evaluation saved successfully" msgstr "Ocenjivanje je uspešno sačuvano" @@ -2664,7 +2664,7 @@ msgstr "Ističe na" #. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:33 -#: frontend/src/components/Modals/Event.vue:144 +#: frontend/src/components/Modals/Event.vue:150 #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Expiry Date" msgstr "Datum isteka" @@ -2695,7 +2695,7 @@ msgstr "Istražite više" #. Submission' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:396 +#: frontend/src/components/Modals/Event.vue:412 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Fail" @@ -3209,7 +3209,7 @@ msgstr "Uvezi obuku" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' #. Option for the 'Status' (Select) field in DocType 'LMS Course' -#: frontend/src/components/Modals/Event.vue:388 +#: frontend/src/components/Modals/Event.vue:404 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_course/lms_course.json msgid "In Progress" @@ -3353,7 +3353,7 @@ msgstr "SCORM paket" #. Label of the issue_date (Date) field in DocType 'Certification' #. Label of the issue_date (Date) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:28 -#: frontend/src/components/Modals/Event.vue:138 +#: frontend/src/components/Modals/Event.vue:144 #: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Issue Date" @@ -3456,7 +3456,7 @@ msgstr "Pridruži se" msgid "Join Call" msgstr "Pridruži se pozivu" -#: frontend/src/components/Modals/Event.vue:78 +#: frontend/src/components/Modals/Event.vue:84 msgid "Join Meeting" msgstr "Pridruži se sastanku" @@ -3896,7 +3896,7 @@ msgstr "LinkedIn" msgid "LinkedIn ID" msgstr "LinkedIn ID" -#: frontend/src/pages/Courses.vue:341 +#: frontend/src/pages/Courses.vue:340 msgid "Live" msgstr "Aktivno" @@ -4429,7 +4429,7 @@ msgstr "Naziv" #: frontend/src/components/Settings/Members.vue:17 #: frontend/src/components/Settings/PaymentGateways.vue:16 #: frontend/src/components/Settings/ZoomSettings.vue:17 -#: frontend/src/pages/Courses.vue:344 +#: frontend/src/pages/Courses.vue:343 #: frontend/src/pages/Programs/Programs.vue:10 #: lms/lms/doctype/lms_badge/lms_badge.json msgid "New" @@ -4461,7 +4461,7 @@ msgstr "Novi posao" msgid "New Job Applicant" msgstr "Novi kandidat za posao" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:12 msgid "New Payment Gateway" msgstr "Novi platni portal" @@ -4778,13 +4778,8 @@ msgstr "Otvoren za" #: frontend/src/components/UserAvatar.vue:11 #: frontend/src/pages/CertifiedParticipants.vue:46 #: frontend/src/pages/Profile.vue:69 -msgid "Open to Opportunities" -msgstr "Otvoren za prilike" - -#. Option for the 'Open to' (Select) field in DocType 'User' -#: lms/fixtures/custom_field.json -msgid "Opportunities" -msgstr "Prilike" +msgid "Open to Work" +msgstr "" #. Label of the option (Data) field in DocType 'LMS Option' #: frontend/src/components/Modals/Question.vue:70 @@ -4924,7 +4919,7 @@ msgstr "Delimično završeno" #. Submission' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:392 +#: frontend/src/components/Modals/Event.vue:408 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Pass" @@ -5054,7 +5049,7 @@ msgstr "Aplikacija za obradu plaćanja nije instalirana" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' #. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' -#: frontend/src/components/Modals/Event.vue:384 +#: frontend/src/components/Modals/Event.vue:400 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json msgid "Pending" @@ -5194,7 +5189,7 @@ msgstr "Molimo Vas da se prijavite da biste pristupili ovoj stranici." msgid "Please login to continue with payment." msgstr "Molimo Vas da se prijavite da biste nastavili sa plaćanjem." -#: lms/lms/utils.py:2081 +#: lms/lms/utils.py:2082 msgid "Please login to enroll in the program." msgstr "Molimo Vas da se prijavite da biste se upisali u program." @@ -5525,7 +5520,7 @@ msgstr "Objavi na stranici učesnika" #. Label of the published (Check) field in DocType 'LMS Course' #. Label of the published (Check) field in DocType 'LMS Program' #: frontend/src/components/Modals/BulkCertificates.vue:51 -#: frontend/src/components/Modals/Event.vue:122 +#: frontend/src/components/Modals/Event.vue:128 #: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105 #: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/StudentPrograms.vue:100 @@ -5693,7 +5688,7 @@ msgstr "Kvizovi u ovom video-snimku" #. Label of the rating (Data) field in DocType 'LMS Course' #. Label of the rating (Rating) field in DocType 'LMS Course Review' #: frontend/src/components/CourseCardOverlay.vue:147 -#: frontend/src/components/Modals/Event.vue:92 +#: frontend/src/components/Modals/Event.vue:98 #: frontend/src/components/Modals/ReviewModal.vue:18 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_course/lms_course.json @@ -5929,14 +5924,14 @@ msgstr "Subota" #: frontend/src/components/Modals/AssignmentForm.vue:65 #: frontend/src/components/Modals/EditProfile.vue:121 #: frontend/src/components/Modals/EmailTemplateModal.vue:12 -#: frontend/src/components/Modals/Event.vue:115 -#: frontend/src/components/Modals/Event.vue:151 +#: frontend/src/components/Modals/Event.vue:121 +#: frontend/src/components/Modals/Event.vue:157 #: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeForm.vue:78 #: frontend/src/components/Settings/Coupons/CouponDetails.vue:78 -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:41 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:129 #: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17 #: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14 @@ -6048,7 +6043,7 @@ msgstr "Pogledaj sve" msgid "Select Date" msgstr "Izaberite datum" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:26 msgid "Select Payment Gateway" msgstr "Izaberite platni portal" @@ -6364,7 +6359,7 @@ msgstr "Statistika" #. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Submission' #. Label of the status (Select) field in DocType 'LMS Test Case Submission' -#: frontend/src/components/Modals/Event.vue:99 +#: frontend/src/components/Modals/Event.vue:105 #: frontend/src/components/Settings/Badges.vue:228 #: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/pages/AssignmentSubmissionList.vue:19 @@ -6475,7 +6470,7 @@ msgstr "Uspešno ste upisani u program" #. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:106 +#: frontend/src/components/Modals/Event.vue:112 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Summary" msgstr "Rezime" @@ -6571,7 +6566,7 @@ msgstr "Timski rad" #. Label of the template (Link) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:43 -#: frontend/src/components/Modals/Event.vue:127 +#: frontend/src/components/Modals/Event.vue:133 #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Template" msgstr "Šablon" @@ -6620,7 +6615,7 @@ msgstr "Hvala Vam što ste podelili svoje utiske." msgid "Thanks and Regards" msgstr "Hvala i srdačan pozdrav" -#: lms/lms/utils.py:2247 +#: lms/lms/utils.py:2248 msgid "The batch does not exist." msgstr "Grupa ne postoji." @@ -6628,7 +6623,7 @@ msgstr "Grupa ne postoji." msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session." msgstr "Grupa u koju ste se upisali počinje sutra. Molimo Vas da budete spremni i tačni za sesiju." -#: lms/lms/utils.py:1747 +#: lms/lms/utils.py:1748 msgid "The coupon code '{0}' is invalid." msgstr "Šifra kupona '{0}' nije važeća." @@ -6652,7 +6647,7 @@ msgstr "Predavač je ostavio komentar na Vašem zadatku {0}" msgid "The last day to schedule your evaluations is " msgstr "Poslednji dan za zakazivanje Vašeg ocenjivanja je " -#: lms/lms/utils.py:2231 +#: lms/lms/utils.py:2232 msgid "The lesson does not exist." msgstr "Lekcija ne postoji." @@ -6660,7 +6655,7 @@ msgstr "Lekcija ne postoji." msgid "The slot is already booked by another participant." msgstr "Termin je već rezervisan od strane drugog učesnika." -#: lms/lms/utils.py:1361 lms/lms/utils.py:1477 lms/lms/utils.py:1944 +#: lms/lms/utils.py:1362 lms/lms/utils.py:1478 lms/lms/utils.py:1945 msgid "The specified batch does not exist." msgstr "Navedena grupa ne postoji." @@ -6726,15 +6721,15 @@ msgstr "Ovaj sertifikat nema rok trajanja" msgid "This class has ended" msgstr "Ovo predavanje se završilo" -#: lms/lms/utils.py:1776 +#: lms/lms/utils.py:1777 msgid "This coupon has expired." msgstr "Ovaj kupon je istekao." -#: lms/lms/utils.py:1779 +#: lms/lms/utils.py:1780 msgid "This coupon has reached its maximum usage limit." msgstr "Ovaj kupon je dostigao maksimalno ograničenje upotrebe." -#: lms/lms/utils.py:1788 +#: lms/lms/utils.py:1789 msgid "This coupon is not applicable to this {0}." msgstr "Ovaj kupon se ne može primeniti na ovaj {0}." @@ -6742,7 +6737,7 @@ msgstr "Ovaj kupon se ne može primeniti na ovaj {0}." msgid "This course has:" msgstr "Ova obuka sadrži:" -#: lms/lms/utils.py:1707 +#: lms/lms/utils.py:1708 msgid "This course is free." msgstr "Ova obuka je besplatna." @@ -6799,7 +6794,7 @@ msgid "Thursday" msgstr "Četvrtak" #. Label of the time (Time) field in DocType 'LMS Live Class' -#: frontend/src/components/Modals/Event.vue:48 +#: frontend/src/components/Modals/Event.vue:54 #: frontend/src/components/Modals/LiveClassModal.vue:52 #: frontend/src/components/Quiz.vue:58 #: lms/lms/doctype/lms_live_class/lms_live_class.json @@ -6934,7 +6929,7 @@ msgstr "Za" msgid "To Date" msgstr "Datum završetka" -#: lms/lms/utils.py:1721 +#: lms/lms/utils.py:1722 msgid "To join this batch, please contact the Administrator." msgstr "Za pridruživanje ovoj grupi, molimo Vas da kontaktirate administratora." @@ -7056,7 +7051,7 @@ msgstr "Datum početka nedostupnosti ne može biti nakon datuma završetka nedos msgid "Under Review" msgstr "Pregled u toku" -#: frontend/src/pages/Batches.vue:330 frontend/src/pages/Courses.vue:356 +#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:355 msgid "Unpublished" msgstr "Neobjavljeno" @@ -7077,8 +7072,8 @@ msgstr "Nestrukturirana uloga" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Label of the upcoming (Check) field in DocType 'LMS Course' -#: frontend/src/pages/Batches.vue:328 frontend/src/pages/CourseForm.vue:117 -#: frontend/src/pages/Courses.vue:347 +#: frontend/src/pages/Batches.vue:330 frontend/src/pages/CourseForm.vue:117 +#: frontend/src/pages/Courses.vue:346 #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_course/lms_course.json msgid "Upcoming" @@ -7220,7 +7215,7 @@ msgid "View Applications" msgstr "Prikaz prijava" #: frontend/src/components/CertificationLinks.vue:10 -#: frontend/src/components/Modals/Event.vue:67 +#: frontend/src/components/Modals/Event.vue:73 msgid "View Certificate" msgstr "Prikaz sertifikata" @@ -7327,6 +7322,11 @@ msgstr "Uz ovu sertifikaciju sada možete pokazati svoja unapređena znanja i po msgid "Withdrawn" msgstr "Povučeno" +#. Option for the 'Open to' (Select) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Work" +msgstr "" + #. Label of the work_environment (Section Break) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Work Environment" @@ -7427,7 +7427,7 @@ msgstr "Ne možete menjati uloge u režimu samo za čitanje." msgid "You cannot enroll in an unpublished course." msgstr "Nije moguće upisati se na neobjavljenu obuku." -#: lms/lms/utils.py:2085 +#: lms/lms/utils.py:2086 msgid "You cannot enroll in an unpublished program." msgstr "Nije moguće upisati se na neobjavljen program." @@ -7443,11 +7443,11 @@ msgstr "Ne možete zakazati ocenjivanje nakon {0}." msgid "You cannot schedule evaluations for past slots." msgstr "Ocenjivanje nije moguće zakazati za termine koji su već prošli." -#: lms/lms/utils.py:2259 +#: lms/lms/utils.py:2260 msgid "You do not have access to this batch." msgstr "Nemate pristup ovoj grupi." -#: lms/lms/utils.py:2242 +#: lms/lms/utils.py:2243 msgid "You do not have access to this course." msgstr "Nemate pristup ovoj obuci." diff --git a/lms/locale/sv.po b/lms/locale/sv.po index a3a7a62f..56449167 100644 --- a/lms/locale/sv.po +++ b/lms/locale/sv.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n" -"POT-Creation-Date: 2026-01-16 16:04+0000\n" -"PO-Revision-Date: 2026-01-21 20:16\n" +"POT-Creation-Date: 2026-01-23 16:05+0000\n" +"PO-Revision-Date: 2026-02-05 06:43\n" "Last-Translator: jannat@frappe.io\n" "Language-Team: Swedish\n" "MIME-Version: 1.0\n" @@ -319,7 +319,7 @@ msgid "Administrator" msgstr "Administratör" #. Name of a role -#: frontend/src/pages/Batches.vue:319 lms/lms/doctype/lms_badge/lms_badge.json +#: frontend/src/pages/Batches.vue:321 lms/lms/doctype/lms_badge/lms_badge.json msgid "All" msgstr "Alla" @@ -486,7 +486,7 @@ msgstr "Godkänd" msgid "Apps" msgstr "Appar" -#: frontend/src/pages/Batches.vue:329 +#: frontend/src/pages/Batches.vue:331 msgid "Archived" msgstr "Arkiverad" @@ -753,7 +753,7 @@ msgstr "Emblem {0} har redan tilldelats denna {1}." #. Label of the batch_name (Link) field in DocType 'LMS Certificate' #. Label of the batch_name (Link) field in DocType 'LMS Certificate Request' #. Label of the batch_name (Link) field in DocType 'LMS Live Class' -#: frontend/src/components/Modals/Event.vue:32 +#: frontend/src/components/Modals/Event.vue:35 #: frontend/src/components/Settings/BadgeForm.vue:195 #: frontend/src/components/Settings/Badges.vue:200 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125 @@ -878,7 +878,7 @@ msgid "Batch:" msgstr "Parti:" #. Label of the batches (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/Batches.vue:350 frontend/src/pages/Batches.vue:357 +#: frontend/src/pages/Batches.vue:352 frontend/src/pages/Batches.vue:359 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121 msgid "Batches" msgstr "Grupper" @@ -1023,7 +1023,7 @@ msgstr "Cerifikat Länk" msgid "Certificate of Completion" msgstr "Certifikat för Genomförande" -#: frontend/src/components/Modals/Event.vue:347 +#: frontend/src/components/Modals/Event.vue:353 msgid "Certificate saved successfully" msgstr "Certifikat sparad" @@ -1043,7 +1043,7 @@ msgstr "Certifikat genererade" #. Label of a chart in the LMS Workspace #. Label of a Card Break in the LMS Workspace #. Label of a Link in the LMS Workspace -#: frontend/src/components/Modals/Event.vue:411 +#: frontend/src/components/Modals/Event.vue:427 #: frontend/src/components/Sidebar/AppSidebar.vue:550 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100 #: frontend/src/pages/CourseCertification.vue:10 @@ -1771,7 +1771,7 @@ msgstr "Kurs {0} har redan lagts till i detta program." #: frontend/src/components/Modals/BatchStudentProgress.vue:95 #: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/CourseCertification.vue:127 -#: frontend/src/pages/Courses.vue:365 frontend/src/pages/Courses.vue:372 +#: frontend/src/pages/Courses.vue:364 frontend/src/pages/Courses.vue:371 #: frontend/src/pages/Programs/ProgramForm.vue:49 #: frontend/src/pages/Programs/Programs.vue:35 #: lms/lms/doctype/lms_batch/lms_batch.json @@ -1878,7 +1878,7 @@ msgstr "Skapa din första kurs" msgid "Create your first quiz" msgstr "Skapa din första frågesport" -#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:355 +#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:354 msgid "Created" msgstr "Skapad" @@ -1954,7 +1954,7 @@ msgstr "Data Import" #. Label of the date (Date) field in DocType 'LMS Certificate Request' #. Label of the date (Date) field in DocType 'LMS Live Class' #. Label of the date (Date) field in DocType 'Scheduled Flow' -#: frontend/src/components/Modals/Event.vue:40 +#: frontend/src/components/Modals/Event.vue:46 #: frontend/src/components/Modals/LiveClassModal.vue:29 #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json @@ -2241,7 +2241,7 @@ msgstr "Redigera Kupong" msgid "Edit Email Template" msgstr "Redigera e-post mall" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:13 msgid "Edit Payment Gateway" msgstr "Redigera Betalning Portal" @@ -2424,7 +2424,7 @@ msgstr "Registrera Medlem till Program" msgid "Enroll Now" msgstr "Registrera Nu" -#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:358 +#: frontend/src/pages/Batches.vue:334 frontend/src/pages/Courses.vue:357 #: frontend/src/pages/Programs/StudentPrograms.vue:96 msgid "Enrolled" msgstr "Inskriven" @@ -2526,7 +2526,7 @@ msgstr "Fel vid uppdatering av e-post mall" #. Label of a Link in the LMS Workspace #. Label of a shortcut in the LMS Workspace -#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json +#: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json msgid "Evaluation" msgstr "Utvärdering" @@ -2551,7 +2551,7 @@ msgstr "Utvärdering Begäran" msgid "Evaluation end date cannot be less than the batch end date." msgstr "Utvärdering slutdatum får inte vara tidigare än grupp slutdatum." -#: frontend/src/components/Modals/Event.vue:286 +#: frontend/src/components/Modals/Event.vue:292 msgid "Evaluation saved successfully" msgstr "Utvärdering sparad" @@ -2664,7 +2664,7 @@ msgstr "Utgår" #. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:33 -#: frontend/src/components/Modals/Event.vue:144 +#: frontend/src/components/Modals/Event.vue:150 #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Expiry Date" msgstr "Utgång Datum" @@ -2695,7 +2695,7 @@ msgstr "Utforska mer" #. Submission' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:396 +#: frontend/src/components/Modals/Event.vue:412 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Fail" @@ -3209,7 +3209,7 @@ msgstr "Importera Kurs" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' #. Option for the 'Status' (Select) field in DocType 'LMS Course' -#: frontend/src/components/Modals/Event.vue:388 +#: frontend/src/components/Modals/Event.vue:404 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_course/lms_course.json msgid "In Progress" @@ -3353,7 +3353,7 @@ msgstr "Är SCORM App" #. Label of the issue_date (Date) field in DocType 'Certification' #. Label of the issue_date (Date) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:28 -#: frontend/src/components/Modals/Event.vue:138 +#: frontend/src/components/Modals/Event.vue:144 #: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Issue Date" @@ -3456,7 +3456,7 @@ msgstr "Anslut" msgid "Join Call" msgstr "Delta i Samtal" -#: frontend/src/components/Modals/Event.vue:78 +#: frontend/src/components/Modals/Event.vue:84 msgid "Join Meeting" msgstr "Delta i Möte" @@ -3896,7 +3896,7 @@ msgstr "LinkedIn" msgid "LinkedIn ID" msgstr "LinkedIn ID" -#: frontend/src/pages/Courses.vue:341 +#: frontend/src/pages/Courses.vue:340 msgid "Live" msgstr "Live" @@ -4429,7 +4429,7 @@ msgstr "Namn" #: frontend/src/components/Settings/Members.vue:17 #: frontend/src/components/Settings/PaymentGateways.vue:16 #: frontend/src/components/Settings/ZoomSettings.vue:17 -#: frontend/src/pages/Courses.vue:344 +#: frontend/src/pages/Courses.vue:343 #: frontend/src/pages/Programs/Programs.vue:10 #: lms/lms/doctype/lms_badge/lms_badge.json msgid "New" @@ -4461,7 +4461,7 @@ msgstr "Nya Jobb" msgid "New Job Applicant" msgstr "Ny Jobb Sökande" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:12 msgid "New Payment Gateway" msgstr "Ny Betalning Portal" @@ -4778,13 +4778,8 @@ msgstr "Öppen för" #: frontend/src/components/UserAvatar.vue:11 #: frontend/src/pages/CertifiedParticipants.vue:46 #: frontend/src/pages/Profile.vue:69 -msgid "Open to Opportunities" -msgstr "Öppen för Möjligheter" - -#. Option for the 'Open to' (Select) field in DocType 'User' -#: lms/fixtures/custom_field.json -msgid "Opportunities" -msgstr "Möjligheter" +msgid "Open to Work" +msgstr "" #. Label of the option (Data) field in DocType 'LMS Option' #: frontend/src/components/Modals/Question.vue:70 @@ -4924,7 +4919,7 @@ msgstr "Delvis Klar" #. Submission' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:392 +#: frontend/src/components/Modals/Event.vue:408 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Pass" @@ -5054,7 +5049,7 @@ msgstr "Betalning App är inte installerad" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' #. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' -#: frontend/src/components/Modals/Event.vue:384 +#: frontend/src/components/Modals/Event.vue:400 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json msgid "Pending" @@ -5194,7 +5189,7 @@ msgstr "Logga in för att komma till denna sida." msgid "Please login to continue with payment." msgstr "Logga in för att fortsätta med betalning." -#: lms/lms/utils.py:2081 +#: lms/lms/utils.py:2082 msgid "Please login to enroll in the program." msgstr "Logga in för att registrera dig i programmet." @@ -5525,7 +5520,7 @@ msgstr "Publicera på deltagarsidan" #. Label of the published (Check) field in DocType 'LMS Course' #. Label of the published (Check) field in DocType 'LMS Program' #: frontend/src/components/Modals/BulkCertificates.vue:51 -#: frontend/src/components/Modals/Event.vue:122 +#: frontend/src/components/Modals/Event.vue:128 #: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105 #: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/StudentPrograms.vue:100 @@ -5693,7 +5688,7 @@ msgstr "Frågesporter i denna video" #. Label of the rating (Data) field in DocType 'LMS Course' #. Label of the rating (Rating) field in DocType 'LMS Course Review' #: frontend/src/components/CourseCardOverlay.vue:147 -#: frontend/src/components/Modals/Event.vue:92 +#: frontend/src/components/Modals/Event.vue:98 #: frontend/src/components/Modals/ReviewModal.vue:18 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_course/lms_course.json @@ -5929,14 +5924,14 @@ msgstr "Lördag" #: frontend/src/components/Modals/AssignmentForm.vue:65 #: frontend/src/components/Modals/EditProfile.vue:121 #: frontend/src/components/Modals/EmailTemplateModal.vue:12 -#: frontend/src/components/Modals/Event.vue:115 -#: frontend/src/components/Modals/Event.vue:151 +#: frontend/src/components/Modals/Event.vue:121 +#: frontend/src/components/Modals/Event.vue:157 #: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeForm.vue:78 #: frontend/src/components/Settings/Coupons/CouponDetails.vue:78 -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:41 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:129 #: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17 #: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14 @@ -6048,7 +6043,7 @@ msgstr "Se alla" msgid "Select Date" msgstr "Välj Datum" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:26 msgid "Select Payment Gateway" msgstr "Välj Betalning Portal" @@ -6364,7 +6359,7 @@ msgstr "Statistik" #. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Submission' #. Label of the status (Select) field in DocType 'LMS Test Case Submission' -#: frontend/src/components/Modals/Event.vue:99 +#: frontend/src/components/Modals/Event.vue:105 #: frontend/src/components/Settings/Badges.vue:228 #: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/pages/AssignmentSubmissionList.vue:19 @@ -6475,7 +6470,7 @@ msgstr "Registrerad i program" #. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:106 +#: frontend/src/components/Modals/Event.vue:112 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Summary" msgstr "Översikt" @@ -6571,7 +6566,7 @@ msgstr "Teamarbete" #. Label of the template (Link) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:43 -#: frontend/src/components/Modals/Event.vue:127 +#: frontend/src/components/Modals/Event.vue:133 #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Template" msgstr "Mall" @@ -6620,7 +6615,7 @@ msgstr "Tack för återkoppling." msgid "Thanks and Regards" msgstr "Tack och Hälsningar" -#: lms/lms/utils.py:2247 +#: lms/lms/utils.py:2248 msgid "The batch does not exist." msgstr "Grupp existerar inte." @@ -6628,7 +6623,7 @@ msgstr "Grupp existerar inte." msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session." msgstr "Gruppen du har anmält dig till börjar i morgon. Var förberedd och kom i tid till sessionen." -#: lms/lms/utils.py:1747 +#: lms/lms/utils.py:1748 msgid "The coupon code '{0}' is invalid." msgstr "Kupongkod '{0}' är ogiltig." @@ -6652,7 +6647,7 @@ msgstr "Lärare har lämnat kommentar på din uppgift {0}" msgid "The last day to schedule your evaluations is " msgstr "Sista dagen att boka utvärderingar är " -#: lms/lms/utils.py:2231 +#: lms/lms/utils.py:2232 msgid "The lesson does not exist." msgstr "Lektion existerar inte." @@ -6660,7 +6655,7 @@ msgstr "Lektion existerar inte." msgid "The slot is already booked by another participant." msgstr "Tiden är redan bokad av en annan deltagare." -#: lms/lms/utils.py:1361 lms/lms/utils.py:1477 lms/lms/utils.py:1944 +#: lms/lms/utils.py:1362 lms/lms/utils.py:1478 lms/lms/utils.py:1945 msgid "The specified batch does not exist." msgstr "Angiven grupp existerar inte." @@ -6726,15 +6721,15 @@ msgstr "Detta certifikat upphör inte att gälla" msgid "This class has ended" msgstr "Denna klass har avslutats" -#: lms/lms/utils.py:1776 +#: lms/lms/utils.py:1777 msgid "This coupon has expired." msgstr "Denna kupong har gått ut." -#: lms/lms/utils.py:1779 +#: lms/lms/utils.py:1780 msgid "This coupon has reached its maximum usage limit." msgstr "Denna kupong har nått sin maximala inlösenantal." -#: lms/lms/utils.py:1788 +#: lms/lms/utils.py:1789 msgid "This coupon is not applicable to this {0}." msgstr "Denna kupong är inte tillämplig på denna {0}." @@ -6742,7 +6737,7 @@ msgstr "Denna kupong är inte tillämplig på denna {0}." msgid "This course has:" msgstr "Denna kurs har:" -#: lms/lms/utils.py:1707 +#: lms/lms/utils.py:1708 msgid "This course is free." msgstr "Denna kurs är gratis." @@ -6799,7 +6794,7 @@ msgid "Thursday" msgstr "Torsdag" #. Label of the time (Time) field in DocType 'LMS Live Class' -#: frontend/src/components/Modals/Event.vue:48 +#: frontend/src/components/Modals/Event.vue:54 #: frontend/src/components/Modals/LiveClassModal.vue:52 #: frontend/src/components/Quiz.vue:58 #: lms/lms/doctype/lms_live_class/lms_live_class.json @@ -6934,7 +6929,7 @@ msgstr "Till" msgid "To Date" msgstr "Till Datum" -#: lms/lms/utils.py:1721 +#: lms/lms/utils.py:1722 msgid "To join this batch, please contact the Administrator." msgstr "För att gå med i denna grupp, kontakta Administratör." @@ -7056,7 +7051,7 @@ msgstr "Otillgänglig Från datum kan inte vara senare än Otillgänglig till da msgid "Under Review" msgstr "Under Recension" -#: frontend/src/pages/Batches.vue:330 frontend/src/pages/Courses.vue:356 +#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:355 msgid "Unpublished" msgstr "Opublicerad" @@ -7077,8 +7072,8 @@ msgstr "Ostrukturerad Roll" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Label of the upcoming (Check) field in DocType 'LMS Course' -#: frontend/src/pages/Batches.vue:328 frontend/src/pages/CourseForm.vue:117 -#: frontend/src/pages/Courses.vue:347 +#: frontend/src/pages/Batches.vue:330 frontend/src/pages/CourseForm.vue:117 +#: frontend/src/pages/Courses.vue:346 #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_course/lms_course.json msgid "Upcoming" @@ -7220,7 +7215,7 @@ msgid "View Applications" msgstr "Visa Ansökningar" #: frontend/src/components/CertificationLinks.vue:10 -#: frontend/src/components/Modals/Event.vue:67 +#: frontend/src/components/Modals/Event.vue:73 msgid "View Certificate" msgstr "Visa Certifikat" @@ -7327,6 +7322,11 @@ msgstr "Med denna certifiering kan du nu visa upp dina uppdaterade färdigheter msgid "Withdrawn" msgstr "Återkallad" +#. Option for the 'Open to' (Select) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Work" +msgstr "" + #. Label of the work_environment (Section Break) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Work Environment" @@ -7427,7 +7427,7 @@ msgstr "Du kan inte ändra rollerna i skrivskyddat läge." msgid "You cannot enroll in an unpublished course." msgstr "Du kan inte anmäla dig till opublicerad kurs." -#: lms/lms/utils.py:2085 +#: lms/lms/utils.py:2086 msgid "You cannot enroll in an unpublished program." msgstr "Du kan inte anmäla dig till opublicerad program." @@ -7443,11 +7443,11 @@ msgstr "Du kan inte schemalägga utvärderingar efter {0}." msgid "You cannot schedule evaluations for past slots." msgstr "Du kan inte schemalägga utvärderingar för förflutna tider." -#: lms/lms/utils.py:2259 +#: lms/lms/utils.py:2260 msgid "You do not have access to this batch." msgstr "Du har inte åtkomst till denna grupp." -#: lms/lms/utils.py:2242 +#: lms/lms/utils.py:2243 msgid "You do not have access to this course." msgstr "Du har inte åtkomst till denna kurs." diff --git a/lms/locale/th.po b/lms/locale/th.po index cf468993..73bf7520 100644 --- a/lms/locale/th.po +++ b/lms/locale/th.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n" -"POT-Creation-Date: 2026-01-16 16:04+0000\n" -"PO-Revision-Date: 2026-01-19 20:13\n" +"POT-Creation-Date: 2026-01-23 16:05+0000\n" +"PO-Revision-Date: 2026-02-05 06:43\n" "Last-Translator: jannat@frappe.io\n" "Language-Team: Thai\n" "MIME-Version: 1.0\n" @@ -319,7 +319,7 @@ msgid "Administrator" msgstr "" #. Name of a role -#: frontend/src/pages/Batches.vue:319 lms/lms/doctype/lms_badge/lms_badge.json +#: frontend/src/pages/Batches.vue:321 lms/lms/doctype/lms_badge/lms_badge.json msgid "All" msgstr "" @@ -486,7 +486,7 @@ msgstr "" msgid "Apps" msgstr "" -#: frontend/src/pages/Batches.vue:329 +#: frontend/src/pages/Batches.vue:331 msgid "Archived" msgstr "" @@ -753,7 +753,7 @@ msgstr "" #. Label of the batch_name (Link) field in DocType 'LMS Certificate' #. Label of the batch_name (Link) field in DocType 'LMS Certificate Request' #. Label of the batch_name (Link) field in DocType 'LMS Live Class' -#: frontend/src/components/Modals/Event.vue:32 +#: frontend/src/components/Modals/Event.vue:35 #: frontend/src/components/Settings/BadgeForm.vue:195 #: frontend/src/components/Settings/Badges.vue:200 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125 @@ -878,7 +878,7 @@ msgid "Batch:" msgstr "" #. Label of the batches (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/Batches.vue:350 frontend/src/pages/Batches.vue:357 +#: frontend/src/pages/Batches.vue:352 frontend/src/pages/Batches.vue:359 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121 msgid "Batches" msgstr "" @@ -1023,7 +1023,7 @@ msgstr "" msgid "Certificate of Completion" msgstr "" -#: frontend/src/components/Modals/Event.vue:347 +#: frontend/src/components/Modals/Event.vue:353 msgid "Certificate saved successfully" msgstr "" @@ -1043,7 +1043,7 @@ msgstr "" #. Label of a chart in the LMS Workspace #. Label of a Card Break in the LMS Workspace #. Label of a Link in the LMS Workspace -#: frontend/src/components/Modals/Event.vue:411 +#: frontend/src/components/Modals/Event.vue:427 #: frontend/src/components/Sidebar/AppSidebar.vue:550 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100 #: frontend/src/pages/CourseCertification.vue:10 @@ -1771,7 +1771,7 @@ msgstr "" #: frontend/src/components/Modals/BatchStudentProgress.vue:95 #: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/CourseCertification.vue:127 -#: frontend/src/pages/Courses.vue:365 frontend/src/pages/Courses.vue:372 +#: frontend/src/pages/Courses.vue:364 frontend/src/pages/Courses.vue:371 #: frontend/src/pages/Programs/ProgramForm.vue:49 #: frontend/src/pages/Programs/Programs.vue:35 #: lms/lms/doctype/lms_batch/lms_batch.json @@ -1878,7 +1878,7 @@ msgstr "" msgid "Create your first quiz" msgstr "" -#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:355 +#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:354 msgid "Created" msgstr "" @@ -1954,7 +1954,7 @@ msgstr "การนำเข้าข้อมูล" #. Label of the date (Date) field in DocType 'LMS Certificate Request' #. Label of the date (Date) field in DocType 'LMS Live Class' #. Label of the date (Date) field in DocType 'Scheduled Flow' -#: frontend/src/components/Modals/Event.vue:40 +#: frontend/src/components/Modals/Event.vue:46 #: frontend/src/components/Modals/LiveClassModal.vue:29 #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json @@ -2244,7 +2244,7 @@ msgstr "" msgid "Edit Email Template" msgstr "" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:13 msgid "Edit Payment Gateway" msgstr "" @@ -2427,7 +2427,7 @@ msgstr "" msgid "Enroll Now" msgstr "" -#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:358 +#: frontend/src/pages/Batches.vue:334 frontend/src/pages/Courses.vue:357 #: frontend/src/pages/Programs/StudentPrograms.vue:96 msgid "Enrolled" msgstr "" @@ -2529,7 +2529,7 @@ msgstr "" #. Label of a Link in the LMS Workspace #. Label of a shortcut in the LMS Workspace -#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json +#: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json msgid "Evaluation" msgstr "" @@ -2554,7 +2554,7 @@ msgstr "" msgid "Evaluation end date cannot be less than the batch end date." msgstr "" -#: frontend/src/components/Modals/Event.vue:286 +#: frontend/src/components/Modals/Event.vue:292 msgid "Evaluation saved successfully" msgstr "" @@ -2667,7 +2667,7 @@ msgstr "หมดอายุเมื่อ" #. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:33 -#: frontend/src/components/Modals/Event.vue:144 +#: frontend/src/components/Modals/Event.vue:150 #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Expiry Date" msgstr "วันหมดอายุ" @@ -2698,7 +2698,7 @@ msgstr "" #. Submission' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:396 +#: frontend/src/components/Modals/Event.vue:412 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Fail" @@ -3212,7 +3212,7 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' #. Option for the 'Status' (Select) field in DocType 'LMS Course' -#: frontend/src/components/Modals/Event.vue:388 +#: frontend/src/components/Modals/Event.vue:404 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_course/lms_course.json msgid "In Progress" @@ -3356,7 +3356,7 @@ msgstr "" #. Label of the issue_date (Date) field in DocType 'Certification' #. Label of the issue_date (Date) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:28 -#: frontend/src/components/Modals/Event.vue:138 +#: frontend/src/components/Modals/Event.vue:144 #: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Issue Date" @@ -3459,7 +3459,7 @@ msgstr "" msgid "Join Call" msgstr "" -#: frontend/src/components/Modals/Event.vue:78 +#: frontend/src/components/Modals/Event.vue:84 msgid "Join Meeting" msgstr "" @@ -3899,7 +3899,7 @@ msgstr "" msgid "LinkedIn ID" msgstr "" -#: frontend/src/pages/Courses.vue:341 +#: frontend/src/pages/Courses.vue:340 msgid "Live" msgstr "" @@ -4432,7 +4432,7 @@ msgstr "ชื่อ" #: frontend/src/components/Settings/Members.vue:17 #: frontend/src/components/Settings/PaymentGateways.vue:16 #: frontend/src/components/Settings/ZoomSettings.vue:17 -#: frontend/src/pages/Courses.vue:344 +#: frontend/src/pages/Courses.vue:343 #: frontend/src/pages/Programs/Programs.vue:10 #: lms/lms/doctype/lms_badge/lms_badge.json msgid "New" @@ -4464,7 +4464,7 @@ msgstr "" msgid "New Job Applicant" msgstr "" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:12 msgid "New Payment Gateway" msgstr "" @@ -4781,14 +4781,9 @@ msgstr "" #: frontend/src/components/UserAvatar.vue:11 #: frontend/src/pages/CertifiedParticipants.vue:46 #: frontend/src/pages/Profile.vue:69 -msgid "Open to Opportunities" +msgid "Open to Work" msgstr "" -#. Option for the 'Open to' (Select) field in DocType 'User' -#: lms/fixtures/custom_field.json -msgid "Opportunities" -msgstr "โอกาส" - #. Label of the option (Data) field in DocType 'LMS Option' #: frontend/src/components/Modals/Question.vue:70 #: lms/lms/doctype/lms_option/lms_option.json @@ -4927,7 +4922,7 @@ msgstr "" #. Submission' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:392 +#: frontend/src/components/Modals/Event.vue:408 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Pass" @@ -5057,7 +5052,7 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' #. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' -#: frontend/src/components/Modals/Event.vue:384 +#: frontend/src/components/Modals/Event.vue:400 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json msgid "Pending" @@ -5197,7 +5192,7 @@ msgstr "" msgid "Please login to continue with payment." msgstr "" -#: lms/lms/utils.py:2081 +#: lms/lms/utils.py:2082 msgid "Please login to enroll in the program." msgstr "" @@ -5528,7 +5523,7 @@ msgstr "" #. Label of the published (Check) field in DocType 'LMS Course' #. Label of the published (Check) field in DocType 'LMS Program' #: frontend/src/components/Modals/BulkCertificates.vue:51 -#: frontend/src/components/Modals/Event.vue:122 +#: frontend/src/components/Modals/Event.vue:128 #: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105 #: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/StudentPrograms.vue:100 @@ -5696,7 +5691,7 @@ msgstr "" #. Label of the rating (Data) field in DocType 'LMS Course' #. Label of the rating (Rating) field in DocType 'LMS Course Review' #: frontend/src/components/CourseCardOverlay.vue:147 -#: frontend/src/components/Modals/Event.vue:92 +#: frontend/src/components/Modals/Event.vue:98 #: frontend/src/components/Modals/ReviewModal.vue:18 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_course/lms_course.json @@ -5932,14 +5927,14 @@ msgstr "วันเสาร์" #: frontend/src/components/Modals/AssignmentForm.vue:65 #: frontend/src/components/Modals/EditProfile.vue:121 #: frontend/src/components/Modals/EmailTemplateModal.vue:12 -#: frontend/src/components/Modals/Event.vue:115 -#: frontend/src/components/Modals/Event.vue:151 +#: frontend/src/components/Modals/Event.vue:121 +#: frontend/src/components/Modals/Event.vue:157 #: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeForm.vue:78 #: frontend/src/components/Settings/Coupons/CouponDetails.vue:78 -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:41 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:129 #: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17 #: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14 @@ -6051,7 +6046,7 @@ msgstr "" msgid "Select Date" msgstr "" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:26 msgid "Select Payment Gateway" msgstr "" @@ -6367,7 +6362,7 @@ msgstr "" #. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Submission' #. Label of the status (Select) field in DocType 'LMS Test Case Submission' -#: frontend/src/components/Modals/Event.vue:99 +#: frontend/src/components/Modals/Event.vue:105 #: frontend/src/components/Settings/Badges.vue:228 #: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/pages/AssignmentSubmissionList.vue:19 @@ -6478,7 +6473,7 @@ msgstr "" #. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:106 +#: frontend/src/components/Modals/Event.vue:112 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Summary" msgstr "" @@ -6574,7 +6569,7 @@ msgstr "" #. Label of the template (Link) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:43 -#: frontend/src/components/Modals/Event.vue:127 +#: frontend/src/components/Modals/Event.vue:133 #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Template" msgstr "" @@ -6623,7 +6618,7 @@ msgstr "" msgid "Thanks and Regards" msgstr "" -#: lms/lms/utils.py:2247 +#: lms/lms/utils.py:2248 msgid "The batch does not exist." msgstr "" @@ -6631,7 +6626,7 @@ msgstr "" msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session." msgstr "" -#: lms/lms/utils.py:1747 +#: lms/lms/utils.py:1748 msgid "The coupon code '{0}' is invalid." msgstr "" @@ -6655,7 +6650,7 @@ msgstr "" msgid "The last day to schedule your evaluations is " msgstr "" -#: lms/lms/utils.py:2231 +#: lms/lms/utils.py:2232 msgid "The lesson does not exist." msgstr "" @@ -6663,7 +6658,7 @@ msgstr "" msgid "The slot is already booked by another participant." msgstr "" -#: lms/lms/utils.py:1361 lms/lms/utils.py:1477 lms/lms/utils.py:1944 +#: lms/lms/utils.py:1362 lms/lms/utils.py:1478 lms/lms/utils.py:1945 msgid "The specified batch does not exist." msgstr "" @@ -6729,15 +6724,15 @@ msgstr "" msgid "This class has ended" msgstr "" -#: lms/lms/utils.py:1776 +#: lms/lms/utils.py:1777 msgid "This coupon has expired." msgstr "" -#: lms/lms/utils.py:1779 +#: lms/lms/utils.py:1780 msgid "This coupon has reached its maximum usage limit." msgstr "" -#: lms/lms/utils.py:1788 +#: lms/lms/utils.py:1789 msgid "This coupon is not applicable to this {0}." msgstr "" @@ -6745,7 +6740,7 @@ msgstr "" msgid "This course has:" msgstr "" -#: lms/lms/utils.py:1707 +#: lms/lms/utils.py:1708 msgid "This course is free." msgstr "" @@ -6802,7 +6797,7 @@ msgid "Thursday" msgstr "" #. Label of the time (Time) field in DocType 'LMS Live Class' -#: frontend/src/components/Modals/Event.vue:48 +#: frontend/src/components/Modals/Event.vue:54 #: frontend/src/components/Modals/LiveClassModal.vue:52 #: frontend/src/components/Quiz.vue:58 #: lms/lms/doctype/lms_live_class/lms_live_class.json @@ -6937,7 +6932,7 @@ msgstr "" msgid "To Date" msgstr "" -#: lms/lms/utils.py:1721 +#: lms/lms/utils.py:1722 msgid "To join this batch, please contact the Administrator." msgstr "" @@ -7059,7 +7054,7 @@ msgstr "" msgid "Under Review" msgstr "" -#: frontend/src/pages/Batches.vue:330 frontend/src/pages/Courses.vue:356 +#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:355 msgid "Unpublished" msgstr "" @@ -7080,8 +7075,8 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Label of the upcoming (Check) field in DocType 'LMS Course' -#: frontend/src/pages/Batches.vue:328 frontend/src/pages/CourseForm.vue:117 -#: frontend/src/pages/Courses.vue:347 +#: frontend/src/pages/Batches.vue:330 frontend/src/pages/CourseForm.vue:117 +#: frontend/src/pages/Courses.vue:346 #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_course/lms_course.json msgid "Upcoming" @@ -7223,7 +7218,7 @@ msgid "View Applications" msgstr "" #: frontend/src/components/CertificationLinks.vue:10 -#: frontend/src/components/Modals/Event.vue:67 +#: frontend/src/components/Modals/Event.vue:73 msgid "View Certificate" msgstr "" @@ -7330,6 +7325,11 @@ msgstr "" msgid "Withdrawn" msgstr "" +#. Option for the 'Open to' (Select) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Work" +msgstr "" + #. Label of the work_environment (Section Break) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Work Environment" @@ -7430,7 +7430,7 @@ msgstr "" msgid "You cannot enroll in an unpublished course." msgstr "" -#: lms/lms/utils.py:2085 +#: lms/lms/utils.py:2086 msgid "You cannot enroll in an unpublished program." msgstr "" @@ -7446,11 +7446,11 @@ msgstr "" msgid "You cannot schedule evaluations for past slots." msgstr "" -#: lms/lms/utils.py:2259 +#: lms/lms/utils.py:2260 msgid "You do not have access to this batch." msgstr "" -#: lms/lms/utils.py:2242 +#: lms/lms/utils.py:2243 msgid "You do not have access to this course." msgstr "" diff --git a/lms/locale/tr.po b/lms/locale/tr.po index 215c4b5e..2efa6b55 100644 --- a/lms/locale/tr.po +++ b/lms/locale/tr.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n" -"POT-Creation-Date: 2026-01-16 16:04+0000\n" -"PO-Revision-Date: 2026-01-21 20:16\n" +"POT-Creation-Date: 2026-01-23 16:05+0000\n" +"PO-Revision-Date: 2026-02-05 06:43\n" "Last-Translator: jannat@frappe.io\n" "Language-Team: Turkish\n" "MIME-Version: 1.0\n" @@ -319,7 +319,7 @@ msgid "Administrator" msgstr "Yönetici" #. Name of a role -#: frontend/src/pages/Batches.vue:319 lms/lms/doctype/lms_badge/lms_badge.json +#: frontend/src/pages/Batches.vue:321 lms/lms/doctype/lms_badge/lms_badge.json msgid "All" msgstr "Tümü" @@ -486,7 +486,7 @@ msgstr "Onaylandı" msgid "Apps" msgstr "Uygulamalar" -#: frontend/src/pages/Batches.vue:329 +#: frontend/src/pages/Batches.vue:331 msgid "Archived" msgstr "" @@ -753,7 +753,7 @@ msgstr "" #. Label of the batch_name (Link) field in DocType 'LMS Certificate' #. Label of the batch_name (Link) field in DocType 'LMS Certificate Request' #. Label of the batch_name (Link) field in DocType 'LMS Live Class' -#: frontend/src/components/Modals/Event.vue:32 +#: frontend/src/components/Modals/Event.vue:35 #: frontend/src/components/Settings/BadgeForm.vue:195 #: frontend/src/components/Settings/Badges.vue:200 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125 @@ -878,7 +878,7 @@ msgid "Batch:" msgstr "Parti:" #. Label of the batches (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/Batches.vue:350 frontend/src/pages/Batches.vue:357 +#: frontend/src/pages/Batches.vue:352 frontend/src/pages/Batches.vue:359 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121 msgid "Batches" msgstr "Sınıflar" @@ -1023,7 +1023,7 @@ msgstr "Sertifika Bağlantısı" msgid "Certificate of Completion" msgstr "" -#: frontend/src/components/Modals/Event.vue:347 +#: frontend/src/components/Modals/Event.vue:353 msgid "Certificate saved successfully" msgstr "" @@ -1043,7 +1043,7 @@ msgstr "" #. Label of a chart in the LMS Workspace #. Label of a Card Break in the LMS Workspace #. Label of a Link in the LMS Workspace -#: frontend/src/components/Modals/Event.vue:411 +#: frontend/src/components/Modals/Event.vue:427 #: frontend/src/components/Sidebar/AppSidebar.vue:550 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100 #: frontend/src/pages/CourseCertification.vue:10 @@ -1771,7 +1771,7 @@ msgstr "" #: frontend/src/components/Modals/BatchStudentProgress.vue:95 #: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/CourseCertification.vue:127 -#: frontend/src/pages/Courses.vue:365 frontend/src/pages/Courses.vue:372 +#: frontend/src/pages/Courses.vue:364 frontend/src/pages/Courses.vue:371 #: frontend/src/pages/Programs/ProgramForm.vue:49 #: frontend/src/pages/Programs/Programs.vue:35 #: lms/lms/doctype/lms_batch/lms_batch.json @@ -1878,7 +1878,7 @@ msgstr "" msgid "Create your first quiz" msgstr "" -#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:355 +#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:354 msgid "Created" msgstr "Oluşturdu" @@ -1954,7 +1954,7 @@ msgstr "Veri İçe Aktarma" #. Label of the date (Date) field in DocType 'LMS Certificate Request' #. Label of the date (Date) field in DocType 'LMS Live Class' #. Label of the date (Date) field in DocType 'Scheduled Flow' -#: frontend/src/components/Modals/Event.vue:40 +#: frontend/src/components/Modals/Event.vue:46 #: frontend/src/components/Modals/LiveClassModal.vue:29 #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json @@ -2241,7 +2241,7 @@ msgstr "" msgid "Edit Email Template" msgstr "" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:13 msgid "Edit Payment Gateway" msgstr "" @@ -2424,7 +2424,7 @@ msgstr "" msgid "Enroll Now" msgstr "Hemen Kaydol" -#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:358 +#: frontend/src/pages/Batches.vue:334 frontend/src/pages/Courses.vue:357 #: frontend/src/pages/Programs/StudentPrograms.vue:96 msgid "Enrolled" msgstr "Kayıtlı" @@ -2526,7 +2526,7 @@ msgstr "" #. Label of a Link in the LMS Workspace #. Label of a shortcut in the LMS Workspace -#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json +#: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json msgid "Evaluation" msgstr "Değerlendirme" @@ -2551,7 +2551,7 @@ msgstr "Değerlendirme Talebi" msgid "Evaluation end date cannot be less than the batch end date." msgstr "" -#: frontend/src/components/Modals/Event.vue:286 +#: frontend/src/components/Modals/Event.vue:292 msgid "Evaluation saved successfully" msgstr "" @@ -2664,7 +2664,7 @@ msgstr "Sona Erme Tarihi" #. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:33 -#: frontend/src/components/Modals/Event.vue:144 +#: frontend/src/components/Modals/Event.vue:150 #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Expiry Date" msgstr "Son Kullanım Tarihi" @@ -2695,7 +2695,7 @@ msgstr "Daha Fazlasını Keşfedin" #. Submission' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:396 +#: frontend/src/components/Modals/Event.vue:412 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Fail" @@ -3209,7 +3209,7 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' #. Option for the 'Status' (Select) field in DocType 'LMS Course' -#: frontend/src/components/Modals/Event.vue:388 +#: frontend/src/components/Modals/Event.vue:404 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_course/lms_course.json msgid "In Progress" @@ -3353,7 +3353,7 @@ msgstr "" #. Label of the issue_date (Date) field in DocType 'Certification' #. Label of the issue_date (Date) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:28 -#: frontend/src/components/Modals/Event.vue:138 +#: frontend/src/components/Modals/Event.vue:144 #: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Issue Date" @@ -3456,7 +3456,7 @@ msgstr "Katıl" msgid "Join Call" msgstr "" -#: frontend/src/components/Modals/Event.vue:78 +#: frontend/src/components/Modals/Event.vue:84 msgid "Join Meeting" msgstr "Görüşmeye Katıl" @@ -3896,7 +3896,7 @@ msgstr "LinkedIn" msgid "LinkedIn ID" msgstr "LinkedIn" -#: frontend/src/pages/Courses.vue:341 +#: frontend/src/pages/Courses.vue:340 msgid "Live" msgstr "Canlı" @@ -4429,7 +4429,7 @@ msgstr "Adı" #: frontend/src/components/Settings/Members.vue:17 #: frontend/src/components/Settings/PaymentGateways.vue:16 #: frontend/src/components/Settings/ZoomSettings.vue:17 -#: frontend/src/pages/Courses.vue:344 +#: frontend/src/pages/Courses.vue:343 #: frontend/src/pages/Programs/Programs.vue:10 #: lms/lms/doctype/lms_badge/lms_badge.json msgid "New" @@ -4461,7 +4461,7 @@ msgstr "Yeni İş" msgid "New Job Applicant" msgstr "Yeni İş Başvurusu" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:12 msgid "New Payment Gateway" msgstr "" @@ -4778,14 +4778,9 @@ msgstr "" #: frontend/src/components/UserAvatar.vue:11 #: frontend/src/pages/CertifiedParticipants.vue:46 #: frontend/src/pages/Profile.vue:69 -msgid "Open to Opportunities" +msgid "Open to Work" msgstr "" -#. Option for the 'Open to' (Select) field in DocType 'User' -#: lms/fixtures/custom_field.json -msgid "Opportunities" -msgstr "Fırsatlar" - #. Label of the option (Data) field in DocType 'LMS Option' #: frontend/src/components/Modals/Question.vue:70 #: lms/lms/doctype/lms_option/lms_option.json @@ -4924,7 +4919,7 @@ msgstr "Kısmen Tamamlandı" #. Submission' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:392 +#: frontend/src/components/Modals/Event.vue:408 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Pass" @@ -5054,7 +5049,7 @@ msgstr "Ödeme uygulaması yüklü değil" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' #. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' -#: frontend/src/components/Modals/Event.vue:384 +#: frontend/src/components/Modals/Event.vue:400 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json msgid "Pending" @@ -5194,7 +5189,7 @@ msgstr "Bu sayfaya erişebilmek için lütfen giriş yapın." msgid "Please login to continue with payment." msgstr "Ödeme işlemine devam etmek için lütfen giriş yapın." -#: lms/lms/utils.py:2081 +#: lms/lms/utils.py:2082 msgid "Please login to enroll in the program." msgstr "" @@ -5525,7 +5520,7 @@ msgstr "Katılımcı Sayfasında Yayınla" #. Label of the published (Check) field in DocType 'LMS Course' #. Label of the published (Check) field in DocType 'LMS Program' #: frontend/src/components/Modals/BulkCertificates.vue:51 -#: frontend/src/components/Modals/Event.vue:122 +#: frontend/src/components/Modals/Event.vue:128 #: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105 #: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/StudentPrograms.vue:100 @@ -5693,7 +5688,7 @@ msgstr "" #. Label of the rating (Data) field in DocType 'LMS Course' #. Label of the rating (Rating) field in DocType 'LMS Course Review' #: frontend/src/components/CourseCardOverlay.vue:147 -#: frontend/src/components/Modals/Event.vue:92 +#: frontend/src/components/Modals/Event.vue:98 #: frontend/src/components/Modals/ReviewModal.vue:18 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_course/lms_course.json @@ -5929,14 +5924,14 @@ msgstr "" #: frontend/src/components/Modals/AssignmentForm.vue:65 #: frontend/src/components/Modals/EditProfile.vue:121 #: frontend/src/components/Modals/EmailTemplateModal.vue:12 -#: frontend/src/components/Modals/Event.vue:115 -#: frontend/src/components/Modals/Event.vue:151 +#: frontend/src/components/Modals/Event.vue:121 +#: frontend/src/components/Modals/Event.vue:157 #: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeForm.vue:78 #: frontend/src/components/Settings/Coupons/CouponDetails.vue:78 -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:41 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:129 #: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17 #: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14 @@ -6048,7 +6043,7 @@ msgstr "" msgid "Select Date" msgstr "" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:26 msgid "Select Payment Gateway" msgstr "" @@ -6364,7 +6359,7 @@ msgstr "" #. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Submission' #. Label of the status (Select) field in DocType 'LMS Test Case Submission' -#: frontend/src/components/Modals/Event.vue:99 +#: frontend/src/components/Modals/Event.vue:105 #: frontend/src/components/Settings/Badges.vue:228 #: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/pages/AssignmentSubmissionList.vue:19 @@ -6475,7 +6470,7 @@ msgstr "" #. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:106 +#: frontend/src/components/Modals/Event.vue:112 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Summary" msgstr "Özet" @@ -6571,7 +6566,7 @@ msgstr "Takım Çalışması" #. Label of the template (Link) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:43 -#: frontend/src/components/Modals/Event.vue:127 +#: frontend/src/components/Modals/Event.vue:133 #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Template" msgstr "" @@ -6620,7 +6615,7 @@ msgstr "Geri bildiriminiz için teşekkür ederiz." msgid "Thanks and Regards" msgstr "Teşekkürler ve Saygılar" -#: lms/lms/utils.py:2247 +#: lms/lms/utils.py:2248 msgid "The batch does not exist." msgstr "" @@ -6628,7 +6623,7 @@ msgstr "" msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session." msgstr "" -#: lms/lms/utils.py:1747 +#: lms/lms/utils.py:1748 msgid "The coupon code '{0}' is invalid." msgstr "" @@ -6652,7 +6647,7 @@ msgstr "" msgid "The last day to schedule your evaluations is " msgstr "" -#: lms/lms/utils.py:2231 +#: lms/lms/utils.py:2232 msgid "The lesson does not exist." msgstr "" @@ -6660,7 +6655,7 @@ msgstr "" msgid "The slot is already booked by another participant." msgstr "Bu slot başka bir katılımcı tarafından rezerve edilmiş." -#: lms/lms/utils.py:1361 lms/lms/utils.py:1477 lms/lms/utils.py:1944 +#: lms/lms/utils.py:1362 lms/lms/utils.py:1478 lms/lms/utils.py:1945 msgid "The specified batch does not exist." msgstr "" @@ -6726,15 +6721,15 @@ msgstr "" msgid "This class has ended" msgstr "" -#: lms/lms/utils.py:1776 +#: lms/lms/utils.py:1777 msgid "This coupon has expired." msgstr "" -#: lms/lms/utils.py:1779 +#: lms/lms/utils.py:1780 msgid "This coupon has reached its maximum usage limit." msgstr "" -#: lms/lms/utils.py:1788 +#: lms/lms/utils.py:1789 msgid "This coupon is not applicable to this {0}." msgstr "" @@ -6742,7 +6737,7 @@ msgstr "" msgid "This course has:" msgstr "Bu kursta:" -#: lms/lms/utils.py:1707 +#: lms/lms/utils.py:1708 msgid "This course is free." msgstr "Bu kurs ücretsizdir." @@ -6799,7 +6794,7 @@ msgid "Thursday" msgstr "" #. Label of the time (Time) field in DocType 'LMS Live Class' -#: frontend/src/components/Modals/Event.vue:48 +#: frontend/src/components/Modals/Event.vue:54 #: frontend/src/components/Modals/LiveClassModal.vue:52 #: frontend/src/components/Quiz.vue:58 #: lms/lms/doctype/lms_live_class/lms_live_class.json @@ -6934,7 +6929,7 @@ msgstr "Kime" msgid "To Date" msgstr "Bitiş Tarihi" -#: lms/lms/utils.py:1721 +#: lms/lms/utils.py:1722 msgid "To join this batch, please contact the Administrator." msgstr "" @@ -7056,7 +7051,7 @@ msgstr "" msgid "Under Review" msgstr "İnceleniyor" -#: frontend/src/pages/Batches.vue:330 frontend/src/pages/Courses.vue:356 +#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:355 msgid "Unpublished" msgstr "" @@ -7077,8 +7072,8 @@ msgstr "Ayarlanmamış Rol" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Label of the upcoming (Check) field in DocType 'LMS Course' -#: frontend/src/pages/Batches.vue:328 frontend/src/pages/CourseForm.vue:117 -#: frontend/src/pages/Courses.vue:347 +#: frontend/src/pages/Batches.vue:330 frontend/src/pages/CourseForm.vue:117 +#: frontend/src/pages/Courses.vue:346 #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_course/lms_course.json msgid "Upcoming" @@ -7220,7 +7215,7 @@ msgid "View Applications" msgstr "" #: frontend/src/components/CertificationLinks.vue:10 -#: frontend/src/components/Modals/Event.vue:67 +#: frontend/src/components/Modals/Event.vue:73 msgid "View Certificate" msgstr "Sertifikayı Görüntüle" @@ -7327,6 +7322,11 @@ msgstr "Bu sertifika ile artık güncellenmiş becerilerinizi sergileyebilir ve msgid "Withdrawn" msgstr "" +#. Option for the 'Open to' (Select) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Work" +msgstr "" + #. Label of the work_environment (Section Break) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Work Environment" @@ -7427,7 +7427,7 @@ msgstr "" msgid "You cannot enroll in an unpublished course." msgstr "" -#: lms/lms/utils.py:2085 +#: lms/lms/utils.py:2086 msgid "You cannot enroll in an unpublished program." msgstr "" @@ -7443,11 +7443,11 @@ msgstr "{0} tarihinden sonra değerlendirme planlayamazsınız." msgid "You cannot schedule evaluations for past slots." msgstr "Geçmiş dönemler için değerlendirme planlayamazsınız." -#: lms/lms/utils.py:2259 +#: lms/lms/utils.py:2260 msgid "You do not have access to this batch." msgstr "" -#: lms/lms/utils.py:2242 +#: lms/lms/utils.py:2243 msgid "You do not have access to this course." msgstr "" @@ -7916,7 +7916,7 @@ msgstr "" #. Count format of shortcut in the LMS Workspace #: lms/lms/workspace/lms/lms.json msgid "{} Active" -msgstr "{} Aktif" +msgstr "" #. Count format of shortcut in the LMS Workspace #: lms/lms/workspace/lms/lms.json diff --git a/lms/locale/vi.po b/lms/locale/vi.po index 45874029..1f26e2be 100644 --- a/lms/locale/vi.po +++ b/lms/locale/vi.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n" -"POT-Creation-Date: 2026-01-16 16:04+0000\n" -"PO-Revision-Date: 2026-01-21 20:16\n" +"POT-Creation-Date: 2026-01-23 16:05+0000\n" +"PO-Revision-Date: 2026-02-05 06:43\n" "Last-Translator: jannat@frappe.io\n" "Language-Team: Vietnamese\n" "MIME-Version: 1.0\n" @@ -319,7 +319,7 @@ msgid "Administrator" msgstr "" #. Name of a role -#: frontend/src/pages/Batches.vue:319 lms/lms/doctype/lms_badge/lms_badge.json +#: frontend/src/pages/Batches.vue:321 lms/lms/doctype/lms_badge/lms_badge.json msgid "All" msgstr "" @@ -486,7 +486,7 @@ msgstr "" msgid "Apps" msgstr "" -#: frontend/src/pages/Batches.vue:329 +#: frontend/src/pages/Batches.vue:331 msgid "Archived" msgstr "" @@ -753,7 +753,7 @@ msgstr "" #. Label of the batch_name (Link) field in DocType 'LMS Certificate' #. Label of the batch_name (Link) field in DocType 'LMS Certificate Request' #. Label of the batch_name (Link) field in DocType 'LMS Live Class' -#: frontend/src/components/Modals/Event.vue:32 +#: frontend/src/components/Modals/Event.vue:35 #: frontend/src/components/Settings/BadgeForm.vue:195 #: frontend/src/components/Settings/Badges.vue:200 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125 @@ -878,7 +878,7 @@ msgid "Batch:" msgstr "" #. Label of the batches (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/Batches.vue:350 frontend/src/pages/Batches.vue:357 +#: frontend/src/pages/Batches.vue:352 frontend/src/pages/Batches.vue:359 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121 msgid "Batches" msgstr "" @@ -1023,7 +1023,7 @@ msgstr "" msgid "Certificate of Completion" msgstr "" -#: frontend/src/components/Modals/Event.vue:347 +#: frontend/src/components/Modals/Event.vue:353 msgid "Certificate saved successfully" msgstr "" @@ -1043,7 +1043,7 @@ msgstr "" #. Label of a chart in the LMS Workspace #. Label of a Card Break in the LMS Workspace #. Label of a Link in the LMS Workspace -#: frontend/src/components/Modals/Event.vue:411 +#: frontend/src/components/Modals/Event.vue:427 #: frontend/src/components/Sidebar/AppSidebar.vue:550 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100 #: frontend/src/pages/CourseCertification.vue:10 @@ -1771,7 +1771,7 @@ msgstr "" #: frontend/src/components/Modals/BatchStudentProgress.vue:95 #: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/CourseCertification.vue:127 -#: frontend/src/pages/Courses.vue:365 frontend/src/pages/Courses.vue:372 +#: frontend/src/pages/Courses.vue:364 frontend/src/pages/Courses.vue:371 #: frontend/src/pages/Programs/ProgramForm.vue:49 #: frontend/src/pages/Programs/Programs.vue:35 #: lms/lms/doctype/lms_batch/lms_batch.json @@ -1878,7 +1878,7 @@ msgstr "" msgid "Create your first quiz" msgstr "" -#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:355 +#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:354 msgid "Created" msgstr "" @@ -1954,7 +1954,7 @@ msgstr "" #. Label of the date (Date) field in DocType 'LMS Certificate Request' #. Label of the date (Date) field in DocType 'LMS Live Class' #. Label of the date (Date) field in DocType 'Scheduled Flow' -#: frontend/src/components/Modals/Event.vue:40 +#: frontend/src/components/Modals/Event.vue:46 #: frontend/src/components/Modals/LiveClassModal.vue:29 #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json @@ -2241,7 +2241,7 @@ msgstr "" msgid "Edit Email Template" msgstr "" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:13 msgid "Edit Payment Gateway" msgstr "" @@ -2424,7 +2424,7 @@ msgstr "" msgid "Enroll Now" msgstr "" -#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:358 +#: frontend/src/pages/Batches.vue:334 frontend/src/pages/Courses.vue:357 #: frontend/src/pages/Programs/StudentPrograms.vue:96 msgid "Enrolled" msgstr "" @@ -2526,7 +2526,7 @@ msgstr "" #. Label of a Link in the LMS Workspace #. Label of a shortcut in the LMS Workspace -#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json +#: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json msgid "Evaluation" msgstr "" @@ -2551,7 +2551,7 @@ msgstr "" msgid "Evaluation end date cannot be less than the batch end date." msgstr "" -#: frontend/src/components/Modals/Event.vue:286 +#: frontend/src/components/Modals/Event.vue:292 msgid "Evaluation saved successfully" msgstr "" @@ -2664,7 +2664,7 @@ msgstr "" #. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:33 -#: frontend/src/components/Modals/Event.vue:144 +#: frontend/src/components/Modals/Event.vue:150 #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Expiry Date" msgstr "" @@ -2695,7 +2695,7 @@ msgstr "" #. Submission' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:396 +#: frontend/src/components/Modals/Event.vue:412 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Fail" @@ -3209,7 +3209,7 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' #. Option for the 'Status' (Select) field in DocType 'LMS Course' -#: frontend/src/components/Modals/Event.vue:388 +#: frontend/src/components/Modals/Event.vue:404 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_course/lms_course.json msgid "In Progress" @@ -3353,7 +3353,7 @@ msgstr "" #. Label of the issue_date (Date) field in DocType 'Certification' #. Label of the issue_date (Date) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:28 -#: frontend/src/components/Modals/Event.vue:138 +#: frontend/src/components/Modals/Event.vue:144 #: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Issue Date" @@ -3456,7 +3456,7 @@ msgstr "" msgid "Join Call" msgstr "" -#: frontend/src/components/Modals/Event.vue:78 +#: frontend/src/components/Modals/Event.vue:84 msgid "Join Meeting" msgstr "" @@ -3896,7 +3896,7 @@ msgstr "" msgid "LinkedIn ID" msgstr "" -#: frontend/src/pages/Courses.vue:341 +#: frontend/src/pages/Courses.vue:340 msgid "Live" msgstr "" @@ -4429,7 +4429,7 @@ msgstr "" #: frontend/src/components/Settings/Members.vue:17 #: frontend/src/components/Settings/PaymentGateways.vue:16 #: frontend/src/components/Settings/ZoomSettings.vue:17 -#: frontend/src/pages/Courses.vue:344 +#: frontend/src/pages/Courses.vue:343 #: frontend/src/pages/Programs/Programs.vue:10 #: lms/lms/doctype/lms_badge/lms_badge.json msgid "New" @@ -4461,7 +4461,7 @@ msgstr "" msgid "New Job Applicant" msgstr "" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:12 msgid "New Payment Gateway" msgstr "" @@ -4778,12 +4778,7 @@ msgstr "" #: frontend/src/components/UserAvatar.vue:11 #: frontend/src/pages/CertifiedParticipants.vue:46 #: frontend/src/pages/Profile.vue:69 -msgid "Open to Opportunities" -msgstr "" - -#. Option for the 'Open to' (Select) field in DocType 'User' -#: lms/fixtures/custom_field.json -msgid "Opportunities" +msgid "Open to Work" msgstr "" #. Label of the option (Data) field in DocType 'LMS Option' @@ -4924,7 +4919,7 @@ msgstr "" #. Submission' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:392 +#: frontend/src/components/Modals/Event.vue:408 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Pass" @@ -5054,7 +5049,7 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' #. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' -#: frontend/src/components/Modals/Event.vue:384 +#: frontend/src/components/Modals/Event.vue:400 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json msgid "Pending" @@ -5194,7 +5189,7 @@ msgstr "" msgid "Please login to continue with payment." msgstr "" -#: lms/lms/utils.py:2081 +#: lms/lms/utils.py:2082 msgid "Please login to enroll in the program." msgstr "" @@ -5525,7 +5520,7 @@ msgstr "" #. Label of the published (Check) field in DocType 'LMS Course' #. Label of the published (Check) field in DocType 'LMS Program' #: frontend/src/components/Modals/BulkCertificates.vue:51 -#: frontend/src/components/Modals/Event.vue:122 +#: frontend/src/components/Modals/Event.vue:128 #: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105 #: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/StudentPrograms.vue:100 @@ -5693,7 +5688,7 @@ msgstr "" #. Label of the rating (Data) field in DocType 'LMS Course' #. Label of the rating (Rating) field in DocType 'LMS Course Review' #: frontend/src/components/CourseCardOverlay.vue:147 -#: frontend/src/components/Modals/Event.vue:92 +#: frontend/src/components/Modals/Event.vue:98 #: frontend/src/components/Modals/ReviewModal.vue:18 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_course/lms_course.json @@ -5929,14 +5924,14 @@ msgstr "" #: frontend/src/components/Modals/AssignmentForm.vue:65 #: frontend/src/components/Modals/EditProfile.vue:121 #: frontend/src/components/Modals/EmailTemplateModal.vue:12 -#: frontend/src/components/Modals/Event.vue:115 -#: frontend/src/components/Modals/Event.vue:151 +#: frontend/src/components/Modals/Event.vue:121 +#: frontend/src/components/Modals/Event.vue:157 #: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeForm.vue:78 #: frontend/src/components/Settings/Coupons/CouponDetails.vue:78 -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:41 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:129 #: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17 #: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14 @@ -6048,7 +6043,7 @@ msgstr "" msgid "Select Date" msgstr "" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:26 msgid "Select Payment Gateway" msgstr "" @@ -6364,7 +6359,7 @@ msgstr "" #. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Submission' #. Label of the status (Select) field in DocType 'LMS Test Case Submission' -#: frontend/src/components/Modals/Event.vue:99 +#: frontend/src/components/Modals/Event.vue:105 #: frontend/src/components/Settings/Badges.vue:228 #: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/pages/AssignmentSubmissionList.vue:19 @@ -6475,7 +6470,7 @@ msgstr "" #. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:106 +#: frontend/src/components/Modals/Event.vue:112 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Summary" msgstr "" @@ -6571,7 +6566,7 @@ msgstr "" #. Label of the template (Link) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:43 -#: frontend/src/components/Modals/Event.vue:127 +#: frontend/src/components/Modals/Event.vue:133 #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Template" msgstr "" @@ -6620,7 +6615,7 @@ msgstr "" msgid "Thanks and Regards" msgstr "" -#: lms/lms/utils.py:2247 +#: lms/lms/utils.py:2248 msgid "The batch does not exist." msgstr "" @@ -6628,7 +6623,7 @@ msgstr "" msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session." msgstr "" -#: lms/lms/utils.py:1747 +#: lms/lms/utils.py:1748 msgid "The coupon code '{0}' is invalid." msgstr "" @@ -6652,7 +6647,7 @@ msgstr "" msgid "The last day to schedule your evaluations is " msgstr "" -#: lms/lms/utils.py:2231 +#: lms/lms/utils.py:2232 msgid "The lesson does not exist." msgstr "" @@ -6660,7 +6655,7 @@ msgstr "" msgid "The slot is already booked by another participant." msgstr "" -#: lms/lms/utils.py:1361 lms/lms/utils.py:1477 lms/lms/utils.py:1944 +#: lms/lms/utils.py:1362 lms/lms/utils.py:1478 lms/lms/utils.py:1945 msgid "The specified batch does not exist." msgstr "" @@ -6726,15 +6721,15 @@ msgstr "" msgid "This class has ended" msgstr "" -#: lms/lms/utils.py:1776 +#: lms/lms/utils.py:1777 msgid "This coupon has expired." msgstr "" -#: lms/lms/utils.py:1779 +#: lms/lms/utils.py:1780 msgid "This coupon has reached its maximum usage limit." msgstr "" -#: lms/lms/utils.py:1788 +#: lms/lms/utils.py:1789 msgid "This coupon is not applicable to this {0}." msgstr "" @@ -6742,7 +6737,7 @@ msgstr "" msgid "This course has:" msgstr "" -#: lms/lms/utils.py:1707 +#: lms/lms/utils.py:1708 msgid "This course is free." msgstr "" @@ -6799,7 +6794,7 @@ msgid "Thursday" msgstr "" #. Label of the time (Time) field in DocType 'LMS Live Class' -#: frontend/src/components/Modals/Event.vue:48 +#: frontend/src/components/Modals/Event.vue:54 #: frontend/src/components/Modals/LiveClassModal.vue:52 #: frontend/src/components/Quiz.vue:58 #: lms/lms/doctype/lms_live_class/lms_live_class.json @@ -6934,7 +6929,7 @@ msgstr "" msgid "To Date" msgstr "" -#: lms/lms/utils.py:1721 +#: lms/lms/utils.py:1722 msgid "To join this batch, please contact the Administrator." msgstr "" @@ -7056,7 +7051,7 @@ msgstr "" msgid "Under Review" msgstr "" -#: frontend/src/pages/Batches.vue:330 frontend/src/pages/Courses.vue:356 +#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:355 msgid "Unpublished" msgstr "" @@ -7077,8 +7072,8 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Label of the upcoming (Check) field in DocType 'LMS Course' -#: frontend/src/pages/Batches.vue:328 frontend/src/pages/CourseForm.vue:117 -#: frontend/src/pages/Courses.vue:347 +#: frontend/src/pages/Batches.vue:330 frontend/src/pages/CourseForm.vue:117 +#: frontend/src/pages/Courses.vue:346 #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_course/lms_course.json msgid "Upcoming" @@ -7220,7 +7215,7 @@ msgid "View Applications" msgstr "" #: frontend/src/components/CertificationLinks.vue:10 -#: frontend/src/components/Modals/Event.vue:67 +#: frontend/src/components/Modals/Event.vue:73 msgid "View Certificate" msgstr "" @@ -7327,6 +7322,11 @@ msgstr "" msgid "Withdrawn" msgstr "" +#. Option for the 'Open to' (Select) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Work" +msgstr "" + #. Label of the work_environment (Section Break) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Work Environment" @@ -7427,7 +7427,7 @@ msgstr "" msgid "You cannot enroll in an unpublished course." msgstr "" -#: lms/lms/utils.py:2085 +#: lms/lms/utils.py:2086 msgid "You cannot enroll in an unpublished program." msgstr "" @@ -7443,11 +7443,11 @@ msgstr "" msgid "You cannot schedule evaluations for past slots." msgstr "" -#: lms/lms/utils.py:2259 +#: lms/lms/utils.py:2260 msgid "You do not have access to this batch." msgstr "" -#: lms/lms/utils.py:2242 +#: lms/lms/utils.py:2243 msgid "You do not have access to this course." msgstr "" diff --git a/lms/locale/zh.po b/lms/locale/zh.po index a3a82ab5..93172053 100644 --- a/lms/locale/zh.po +++ b/lms/locale/zh.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: frappe\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n" -"POT-Creation-Date: 2026-01-16 16:04+0000\n" -"PO-Revision-Date: 2026-01-21 20:16\n" +"POT-Creation-Date: 2026-01-23 16:05+0000\n" +"PO-Revision-Date: 2026-02-05 06:43\n" "Last-Translator: jannat@frappe.io\n" "Language-Team: Chinese Simplified\n" "MIME-Version: 1.0\n" @@ -190,7 +190,7 @@ msgstr "为视频添加测验" #: frontend/src/components/Controls/ChildTable.vue:77 #: frontend/src/components/Settings/Coupons/CouponItems.vue:55 msgid "Add Row" -msgstr "添加一行" +msgstr "添加行" #: frontend/src/pages/ProfileEvaluator.vue:96 msgid "Add Slot" @@ -319,7 +319,7 @@ msgid "Administrator" msgstr "管理员" #. Name of a role -#: frontend/src/pages/Batches.vue:319 lms/lms/doctype/lms_badge/lms_badge.json +#: frontend/src/pages/Batches.vue:321 lms/lms/doctype/lms_badge/lms_badge.json msgid "All" msgstr "全部" @@ -486,7 +486,7 @@ msgstr "已批准" msgid "Apps" msgstr "应用" -#: frontend/src/pages/Batches.vue:329 +#: frontend/src/pages/Batches.vue:331 msgid "Archived" msgstr "已归档" @@ -753,7 +753,7 @@ msgstr "" #. Label of the batch_name (Link) field in DocType 'LMS Certificate' #. Label of the batch_name (Link) field in DocType 'LMS Certificate Request' #. Label of the batch_name (Link) field in DocType 'LMS Live Class' -#: frontend/src/components/Modals/Event.vue:32 +#: frontend/src/components/Modals/Event.vue:35 #: frontend/src/components/Settings/BadgeForm.vue:195 #: frontend/src/components/Settings/Badges.vue:200 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125 @@ -878,7 +878,7 @@ msgid "Batch:" msgstr "批次:" #. Label of the batches (Check) field in DocType 'LMS Settings' -#: frontend/src/pages/Batches.vue:350 frontend/src/pages/Batches.vue:357 +#: frontend/src/pages/Batches.vue:352 frontend/src/pages/Batches.vue:359 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121 msgid "Batches" msgstr "批次" @@ -1023,7 +1023,7 @@ msgstr "证书链接" msgid "Certificate of Completion" msgstr "结业证书" -#: frontend/src/components/Modals/Event.vue:347 +#: frontend/src/components/Modals/Event.vue:353 msgid "Certificate saved successfully" msgstr "证书保存成功" @@ -1043,7 +1043,7 @@ msgstr "证书生成成功" #. Label of a chart in the LMS Workspace #. Label of a Card Break in the LMS Workspace #. Label of a Link in the LMS Workspace -#: frontend/src/components/Modals/Event.vue:411 +#: frontend/src/components/Modals/Event.vue:427 #: frontend/src/components/Sidebar/AppSidebar.vue:550 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100 #: frontend/src/pages/CourseCertification.vue:10 @@ -1771,7 +1771,7 @@ msgstr "" #: frontend/src/components/Modals/BatchStudentProgress.vue:95 #: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/CourseCertification.vue:127 -#: frontend/src/pages/Courses.vue:365 frontend/src/pages/Courses.vue:372 +#: frontend/src/pages/Courses.vue:364 frontend/src/pages/Courses.vue:371 #: frontend/src/pages/Programs/ProgramForm.vue:49 #: frontend/src/pages/Programs/Programs.vue:35 #: lms/lms/doctype/lms_batch/lms_batch.json @@ -1878,7 +1878,7 @@ msgstr "创建首门课程" msgid "Create your first quiz" msgstr "创建首项测验" -#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:355 +#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:354 msgid "Created" msgstr "已创建" @@ -1954,7 +1954,7 @@ msgstr "数据导入" #. Label of the date (Date) field in DocType 'LMS Certificate Request' #. Label of the date (Date) field in DocType 'LMS Live Class' #. Label of the date (Date) field in DocType 'Scheduled Flow' -#: frontend/src/components/Modals/Event.vue:40 +#: frontend/src/components/Modals/Event.vue:46 #: frontend/src/components/Modals/LiveClassModal.vue:29 #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json @@ -2241,7 +2241,7 @@ msgstr "" msgid "Edit Email Template" msgstr "编辑邮件模板" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:13 msgid "Edit Payment Gateway" msgstr "编辑支付网关" @@ -2424,7 +2424,7 @@ msgstr "为成员注册项目" msgid "Enroll Now" msgstr "立即报名" -#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:358 +#: frontend/src/pages/Batches.vue:334 frontend/src/pages/Courses.vue:357 #: frontend/src/pages/Programs/StudentPrograms.vue:96 msgid "Enrolled" msgstr "已注册" @@ -2526,7 +2526,7 @@ msgstr "邮件模板更新错误" #. Label of a Link in the LMS Workspace #. Label of a shortcut in the LMS Workspace -#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json +#: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json msgid "Evaluation" msgstr "评估" @@ -2551,7 +2551,7 @@ msgstr "评估请求" msgid "Evaluation end date cannot be less than the batch end date." msgstr "评估结束日期不得早于批次结束日期" -#: frontend/src/components/Modals/Event.vue:286 +#: frontend/src/components/Modals/Event.vue:292 msgid "Evaluation saved successfully" msgstr "评估保存成功" @@ -2664,7 +2664,7 @@ msgstr "到期日" #. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:33 -#: frontend/src/components/Modals/Event.vue:144 +#: frontend/src/components/Modals/Event.vue:150 #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Expiry Date" msgstr "到期日" @@ -2695,7 +2695,7 @@ msgstr "查看更多" #. Submission' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:396 +#: frontend/src/components/Modals/Event.vue:412 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Fail" @@ -3209,7 +3209,7 @@ msgstr "" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' #. Option for the 'Status' (Select) field in DocType 'LMS Course' -#: frontend/src/components/Modals/Event.vue:388 +#: frontend/src/components/Modals/Event.vue:404 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_course/lms_course.json msgid "In Progress" @@ -3353,7 +3353,7 @@ msgstr "是否为SCORM包" #. Label of the issue_date (Date) field in DocType 'Certification' #. Label of the issue_date (Date) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:28 -#: frontend/src/components/Modals/Event.vue:138 +#: frontend/src/components/Modals/Event.vue:144 #: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Issue Date" @@ -3456,7 +3456,7 @@ msgstr "加入" msgid "Join Call" msgstr "加入通话" -#: frontend/src/components/Modals/Event.vue:78 +#: frontend/src/components/Modals/Event.vue:84 msgid "Join Meeting" msgstr "加入会议" @@ -3896,7 +3896,7 @@ msgstr "领英" msgid "LinkedIn ID" msgstr "领英账号" -#: frontend/src/pages/Courses.vue:341 +#: frontend/src/pages/Courses.vue:340 msgid "Live" msgstr "直播" @@ -4429,7 +4429,7 @@ msgstr "名称" #: frontend/src/components/Settings/Members.vue:17 #: frontend/src/components/Settings/PaymentGateways.vue:16 #: frontend/src/components/Settings/ZoomSettings.vue:17 -#: frontend/src/pages/Courses.vue:344 +#: frontend/src/pages/Courses.vue:343 #: frontend/src/pages/Programs/Programs.vue:10 #: lms/lms/doctype/lms_badge/lms_badge.json msgid "New" @@ -4461,7 +4461,7 @@ msgstr "新建职位" msgid "New Job Applicant" msgstr "新职位申请人" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:12 msgid "New Payment Gateway" msgstr "新建支付网关" @@ -4778,14 +4778,9 @@ msgstr "" #: frontend/src/components/UserAvatar.vue:11 #: frontend/src/pages/CertifiedParticipants.vue:46 #: frontend/src/pages/Profile.vue:69 -msgid "Open to Opportunities" +msgid "Open to Work" msgstr "" -#. Option for the 'Open to' (Select) field in DocType 'User' -#: lms/fixtures/custom_field.json -msgid "Opportunities" -msgstr "商机" - #. Label of the option (Data) field in DocType 'LMS Option' #: frontend/src/components/Modals/Question.vue:70 #: lms/lms/doctype/lms_option/lms_option.json @@ -4924,7 +4919,7 @@ msgstr "部分完成" #. Submission' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:392 +#: frontend/src/components/Modals/Event.vue:408 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Pass" @@ -5054,7 +5049,7 @@ msgstr "未安装支付应用" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Evaluation' #. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' -#: frontend/src/components/Modals/Event.vue:384 +#: frontend/src/components/Modals/Event.vue:400 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json msgid "Pending" @@ -5194,7 +5189,7 @@ msgstr "请登录以访问此页面" msgid "Please login to continue with payment." msgstr "请登录以继续支付" -#: lms/lms/utils.py:2081 +#: lms/lms/utils.py:2082 msgid "Please login to enroll in the program." msgstr "请登录以报名项目。" @@ -5525,7 +5520,7 @@ msgstr "发布至参与者页面" #. Label of the published (Check) field in DocType 'LMS Course' #. Label of the published (Check) field in DocType 'LMS Program' #: frontend/src/components/Modals/BulkCertificates.vue:51 -#: frontend/src/components/Modals/Event.vue:122 +#: frontend/src/components/Modals/Event.vue:128 #: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105 #: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/StudentPrograms.vue:100 @@ -5693,7 +5688,7 @@ msgstr "本视频包含的测验" #. Label of the rating (Data) field in DocType 'LMS Course' #. Label of the rating (Rating) field in DocType 'LMS Course Review' #: frontend/src/components/CourseCardOverlay.vue:147 -#: frontend/src/components/Modals/Event.vue:92 +#: frontend/src/components/Modals/Event.vue:98 #: frontend/src/components/Modals/ReviewModal.vue:18 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_course/lms_course.json @@ -5929,14 +5924,14 @@ msgstr "星期六" #: frontend/src/components/Modals/AssignmentForm.vue:65 #: frontend/src/components/Modals/EditProfile.vue:121 #: frontend/src/components/Modals/EmailTemplateModal.vue:12 -#: frontend/src/components/Modals/Event.vue:115 -#: frontend/src/components/Modals/Event.vue:151 +#: frontend/src/components/Modals/Event.vue:121 +#: frontend/src/components/Modals/Event.vue:157 #: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeForm.vue:78 #: frontend/src/components/Settings/Coupons/CouponDetails.vue:78 -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:41 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:129 #: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17 #: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14 @@ -6048,7 +6043,7 @@ msgstr "查看全部" msgid "Select Date" msgstr "选择日期" -#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22 +#: frontend/src/components/Settings/PaymentGatewayDetails.vue:26 msgid "Select Payment Gateway" msgstr "选择支付网关" @@ -6364,7 +6359,7 @@ msgstr "统计" #. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Submission' #. Label of the status (Select) field in DocType 'LMS Test Case Submission' -#: frontend/src/components/Modals/Event.vue:99 +#: frontend/src/components/Modals/Event.vue:105 #: frontend/src/components/Settings/Badges.vue:228 #: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/pages/AssignmentSubmissionList.vue:19 @@ -6475,7 +6470,7 @@ msgstr "项目报名成功" #. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Evaluation' -#: frontend/src/components/Modals/Event.vue:106 +#: frontend/src/components/Modals/Event.vue:112 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json msgid "Summary" msgstr "摘要" @@ -6571,7 +6566,7 @@ msgstr "团队协作" #. Label of the template (Link) field in DocType 'LMS Certificate' #: frontend/src/components/Modals/BulkCertificates.vue:43 -#: frontend/src/components/Modals/Event.vue:127 +#: frontend/src/components/Modals/Event.vue:133 #: lms/lms/doctype/lms_certificate/lms_certificate.json msgid "Template" msgstr "模板" @@ -6620,7 +6615,7 @@ msgstr "感谢您提供反馈。" msgid "Thanks and Regards" msgstr "此致敬礼" -#: lms/lms/utils.py:2247 +#: lms/lms/utils.py:2248 msgid "The batch does not exist." msgstr "" @@ -6628,7 +6623,7 @@ msgstr "" msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session." msgstr "您报名的批次明日开始,请做好准备准时参加" -#: lms/lms/utils.py:1747 +#: lms/lms/utils.py:1748 msgid "The coupon code '{0}' is invalid." msgstr "" @@ -6652,7 +6647,7 @@ msgstr "" msgid "The last day to schedule your evaluations is " msgstr "" -#: lms/lms/utils.py:2231 +#: lms/lms/utils.py:2232 msgid "The lesson does not exist." msgstr "" @@ -6660,7 +6655,7 @@ msgstr "" msgid "The slot is already booked by another participant." msgstr "该时段已被其他参与者预定" -#: lms/lms/utils.py:1361 lms/lms/utils.py:1477 lms/lms/utils.py:1944 +#: lms/lms/utils.py:1362 lms/lms/utils.py:1478 lms/lms/utils.py:1945 msgid "The specified batch does not exist." msgstr "" @@ -6726,15 +6721,15 @@ msgstr "本证书永久有效" msgid "This class has ended" msgstr "本课程已结束" -#: lms/lms/utils.py:1776 +#: lms/lms/utils.py:1777 msgid "This coupon has expired." msgstr "" -#: lms/lms/utils.py:1779 +#: lms/lms/utils.py:1780 msgid "This coupon has reached its maximum usage limit." msgstr "" -#: lms/lms/utils.py:1788 +#: lms/lms/utils.py:1789 msgid "This coupon is not applicable to this {0}." msgstr "" @@ -6742,7 +6737,7 @@ msgstr "" msgid "This course has:" msgstr "本课程包含:" -#: lms/lms/utils.py:1707 +#: lms/lms/utils.py:1708 msgid "This course is free." msgstr "本课程免费" @@ -6799,7 +6794,7 @@ msgid "Thursday" msgstr "星期四" #. Label of the time (Time) field in DocType 'LMS Live Class' -#: frontend/src/components/Modals/Event.vue:48 +#: frontend/src/components/Modals/Event.vue:54 #: frontend/src/components/Modals/LiveClassModal.vue:52 #: frontend/src/components/Quiz.vue:58 #: lms/lms/doctype/lms_live_class/lms_live_class.json @@ -6934,7 +6929,7 @@ msgstr "至" msgid "To Date" msgstr "截止日期" -#: lms/lms/utils.py:1721 +#: lms/lms/utils.py:1722 msgid "To join this batch, please contact the Administrator." msgstr "加入本批次请联系管理员" @@ -7056,7 +7051,7 @@ msgstr "不可用开始日期不可晚于结束日期" msgid "Under Review" msgstr "审核中" -#: frontend/src/pages/Batches.vue:330 frontend/src/pages/Courses.vue:356 +#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:355 msgid "Unpublished" msgstr "未发布" @@ -7077,8 +7072,8 @@ msgstr "非结构化角色" #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Label of the upcoming (Check) field in DocType 'LMS Course' -#: frontend/src/pages/Batches.vue:328 frontend/src/pages/CourseForm.vue:117 -#: frontend/src/pages/Courses.vue:347 +#: frontend/src/pages/Batches.vue:330 frontend/src/pages/CourseForm.vue:117 +#: frontend/src/pages/Courses.vue:346 #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_course/lms_course.json msgid "Upcoming" @@ -7220,7 +7215,7 @@ msgid "View Applications" msgstr "" #: frontend/src/components/CertificationLinks.vue:10 -#: frontend/src/components/Modals/Event.vue:67 +#: frontend/src/components/Modals/Event.vue:73 msgid "View Certificate" msgstr "查看证书" @@ -7327,6 +7322,11 @@ msgstr "获得此认证后,您可向同事及领英展示最新技能。点击 msgid "Withdrawn" msgstr "已撤回" +#. Option for the 'Open to' (Select) field in DocType 'User' +#: lms/fixtures/custom_field.json +msgid "Work" +msgstr "" + #. Label of the work_environment (Section Break) field in DocType 'User' #: lms/fixtures/custom_field.json msgid "Work Environment" @@ -7427,7 +7427,7 @@ msgstr "只读模式下不可修改角色。" msgid "You cannot enroll in an unpublished course." msgstr "" -#: lms/lms/utils.py:2085 +#: lms/lms/utils.py:2086 msgid "You cannot enroll in an unpublished program." msgstr "" @@ -7443,11 +7443,11 @@ msgstr "您不能在{0}之后安排评估" msgid "You cannot schedule evaluations for past slots." msgstr "不能为过去的时段安排评估" -#: lms/lms/utils.py:2259 +#: lms/lms/utils.py:2260 msgid "You do not have access to this batch." msgstr "" -#: lms/lms/utils.py:2242 +#: lms/lms/utils.py:2243 msgid "You do not have access to this course." msgstr "" diff --git a/lms/routing.py b/lms/routing.py deleted file mode 100644 index f5b0baf5..00000000 --- a/lms/routing.py +++ /dev/null @@ -1,27 +0,0 @@ -"""Utilities for making custom routing.""" - -from werkzeug.datastructures import ImmutableDict -from werkzeug.routing import BaseConverter, Map - - -class RegexConverter(BaseConverter): - """werkzeug converter that supports custom regular expression. - - The `install_regex_converter` function must be called before using - regex converter in rules. - """ - - def __init__(self, map, regex): - super().__init__(map) - self.regex = regex - - -def install_regex_converter(): - """Installs the RegexConvetor to the default converters supported by werkzeug. - - This allows specifing rules using regex. For example: - - /profiles/ - """ - default_converters = dict(Map.default_converters, regex=RegexConverter) - Map.default_converters = ImmutableDict(default_converters) diff --git a/setup.py b/setup.py deleted file mode 100644 index 7f6e3f26..00000000 --- a/setup.py +++ /dev/null @@ -1,19 +0,0 @@ -from setuptools import find_packages, setup - -with open("requirements.txt") as f: - install_requires = f.read().strip().split("\n") - -# get version from __version__ variable in lms/__init__.py -from lms import __version__ as version - -setup( - name="lms", - version=version, - description="Learning Management System", - author="Jannat", - author_email="jannat@frappe.io", - packages=find_packages(), - zip_safe=False, - include_package_data=True, - install_requires=install_requires, -)