chore: merged conflicts
This commit is contained in:
@@ -63,13 +63,13 @@
|
||||
class="flex items-center justify-center text-sm text-gray-700 space-x-4"
|
||||
>
|
||||
<div class="flex items-center space-x-2">
|
||||
<div class="w-3 h-3" style="background-color: #0289f7"></div>
|
||||
<div class="w-3 h-3" style="background-color: #0f736b"></div>
|
||||
<div>
|
||||
{{ __('Courses') }}
|
||||
</div>
|
||||
</div>
|
||||
<div class="flex items-center space-x-2">
|
||||
<div class="w-3 h-3" style="background-color: #e03636"></div>
|
||||
<div class="w-3 h-3" style="background-color: #0070cc"></div>
|
||||
<div>
|
||||
{{ __('Assessments') }}
|
||||
</div>
|
||||
@@ -352,8 +352,8 @@ const getChartData = () => {
|
||||
}
|
||||
|
||||
const getChartOptions = (categories) => {
|
||||
const courseColor = '#0289F7'
|
||||
const assessmentColor = '#E03636'
|
||||
const courseColor = '#0F736B'
|
||||
const assessmentColor = '#0070CC'
|
||||
const maxY =
|
||||
students.data?.length % 5
|
||||
? students.data?.length + (5 - (students.data?.length % 5))
|
||||
@@ -362,7 +362,7 @@ const getChartOptions = (categories) => {
|
||||
return {
|
||||
chart: {
|
||||
type: 'bar',
|
||||
height: 350,
|
||||
height: 50,
|
||||
toolbar: {
|
||||
show: false,
|
||||
},
|
||||
@@ -371,16 +371,13 @@ const getChartOptions = (categories) => {
|
||||
bar: {
|
||||
distributed: true,
|
||||
borderRadius: 0,
|
||||
horizontal: false,
|
||||
columnWidth: '5%',
|
||||
horizontal: true,
|
||||
barHeight: '30%',
|
||||
},
|
||||
},
|
||||
colors: Object.values(categories).map((item) =>
|
||||
item.type === 'course' ? courseColor : assessmentColor
|
||||
),
|
||||
legends: {
|
||||
show: false,
|
||||
},
|
||||
xaxis: {
|
||||
categories: Object.values(categories).map((item) => item.label),
|
||||
labels: {
|
||||
@@ -388,6 +385,9 @@ const getChartOptions = (categories) => {
|
||||
fontSize: '10px',
|
||||
},
|
||||
rotate: 0,
|
||||
formatter: function (value) {
|
||||
return value.length > 20 ? `${value.substring(0, 20)}...` : value // Trim long labels
|
||||
},
|
||||
},
|
||||
},
|
||||
yaxis: {
|
||||
|
||||
@@ -87,25 +87,29 @@
|
||||
</span>
|
||||
</Button>
|
||||
</router-link>
|
||||
<div class="mt-8 mb-4 font-medium">
|
||||
{{ __('This course has:') }}
|
||||
</div>
|
||||
<div class="flex items-center mb-3">
|
||||
<BookOpen class="h-5 w-5 stroke-1.5 text-gray-600" />
|
||||
<span class="ml-2">
|
||||
{{ course.data.lessons }} {{ __('Lessons') }}
|
||||
</span>
|
||||
</div>
|
||||
<div class="flex items-center mb-3">
|
||||
<Users class="h-5 w-5 stroke-1.5 text-gray-600" />
|
||||
<span class="ml-2">
|
||||
{{ formatAmount(course.data.enrollments) }}
|
||||
{{ __('Enrolled Students') }}
|
||||
</span>
|
||||
</div>
|
||||
<div class="flex items-center">
|
||||
<Star class="h-5 w-5 stroke-1.5 fill-orange-500 text-gray-50" />
|
||||
<span class="ml-2"> {{ course.data.rating }} {{ __('Rating') }} </span>
|
||||
<div class="space-y-4">
|
||||
<div class="mt-8 font-medium">
|
||||
{{ __('This course has:') }}
|
||||
</div>
|
||||
<div class="flex items-center">
|
||||
<BookOpen class="h-4 w-4 stroke-1.5 text-gray-600" />
|
||||
<span class="ml-2">
|
||||
{{ course.data.lessons }} {{ __('Lessons') }}
|
||||
</span>
|
||||
</div>
|
||||
<div class="flex items-center">
|
||||
<Users class="h-4 w-4 stroke-1.5 text-gray-600" />
|
||||
<span class="ml-2">
|
||||
{{ formatAmount(course.data.enrollments) }}
|
||||
{{ __('Enrolled Students') }}
|
||||
</span>
|
||||
</div>
|
||||
<div v-if="parseInt(course.data.rating) > 0" class="flex items-center">
|
||||
<Star class="h-4 w-4 stroke-1.5 fill-orange-500 text-gray-50" />
|
||||
<span class="ml-2">
|
||||
{{ course.data.rating }} {{ __('Rating') }}
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
</div>
|
||||
<div class="flex items-center">
|
||||
<Tooltip
|
||||
v-if="course.data.rating"
|
||||
v-if="parseInt(course.data.rating) > 0"
|
||||
:text="__('Average Rating')"
|
||||
class="flex items-center"
|
||||
>
|
||||
@@ -25,7 +25,9 @@
|
||||
{{ course.data.rating }}
|
||||
</span>
|
||||
</Tooltip>
|
||||
<span v-if="course.data.rating" class="mx-3">·</span>
|
||||
<span v-if="parseInt(course.data.rating) > 0" class="mx-3"
|
||||
>·</span
|
||||
>
|
||||
<Tooltip
|
||||
v-if="course.data.enrollment_count"
|
||||
:text="__('Enrolled Students')"
|
||||
|
||||
@@ -1487,8 +1487,7 @@ def get_batch_students(batch):
|
||||
|
||||
detail.courses_completed = courses_completed
|
||||
detail.assessments_completed = assessments_completed
|
||||
|
||||
if len(batch_courses) or len(assessments):
|
||||
if len(batch_courses) + len(assessments):
|
||||
detail.progress = flt(
|
||||
(
|
||||
(courses_completed + assessments_completed)
|
||||
|
||||
@@ -2,8 +2,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: frappe\n"
|
||||
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
||||
"POT-Creation-Date: 2024-12-06 16:04+0000\n"
|
||||
"PO-Revision-Date: 2024-12-09 23:30\n"
|
||||
"POT-Creation-Date: 2024-12-20 16:04+0000\n"
|
||||
"PO-Revision-Date: 2024-12-25 02:17\n"
|
||||
"Last-Translator: jannat@frappe.io\n"
|
||||
"Language-Team: Arabic\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -101,7 +101,7 @@ msgstr "نشط"
|
||||
|
||||
#: frontend/src/components/Assessments.vue:11
|
||||
#: frontend/src/components/BatchCourses.vue:11
|
||||
#: frontend/src/components/BatchStudents.vue:6
|
||||
#: frontend/src/components/BatchStudents.vue:10
|
||||
#: frontend/src/components/Categories.vue:26
|
||||
#: frontend/src/components/LiveClass.vue:11
|
||||
#: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30
|
||||
@@ -143,6 +143,10 @@ msgstr ""
|
||||
msgid "Add a course"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:136
|
||||
msgid "Add a keyword and then press enter"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/OnboardingBanner.vue:73
|
||||
msgid "Add a lesson"
|
||||
msgstr ""
|
||||
@@ -1231,7 +1235,7 @@ msgstr ""
|
||||
msgid "Course already added to the batch."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:460
|
||||
#: frontend/src/pages/CourseForm.vue:461
|
||||
msgid "Course deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -1406,7 +1410,7 @@ msgstr ""
|
||||
|
||||
#: frontend/src/components/CourseOutline.vue:235
|
||||
#: frontend/src/components/CourseOutline.vue:293
|
||||
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:473
|
||||
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:474
|
||||
msgid "Delete"
|
||||
msgstr "حذف"
|
||||
|
||||
@@ -1414,7 +1418,7 @@ msgstr "حذف"
|
||||
msgid "Delete Chapter"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:467
|
||||
#: frontend/src/pages/CourseForm.vue:468
|
||||
msgid "Delete Course"
|
||||
msgstr ""
|
||||
|
||||
@@ -1426,7 +1430,7 @@ msgstr ""
|
||||
msgid "Delete this lesson?"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:468
|
||||
#: frontend/src/pages/CourseForm.vue:469
|
||||
msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?"
|
||||
msgstr ""
|
||||
|
||||
@@ -1702,7 +1706,7 @@ msgstr ""
|
||||
msgid "Enrollment Count"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1702
|
||||
#: lms/lms/utils.py:1715
|
||||
msgid "Enrollment Failed"
|
||||
msgstr ""
|
||||
|
||||
@@ -1738,6 +1742,7 @@ msgstr ""
|
||||
#: frontend/src/components/Modals/Question.vue:249
|
||||
#: frontend/src/components/Modals/Question.vue:269
|
||||
#: frontend/src/components/Modals/Question.vue:326
|
||||
#: frontend/src/components/Modals/StudentModal.vue:69
|
||||
#: frontend/src/components/SettingDetails.vue:62
|
||||
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350
|
||||
#: frontend/src/pages/QuizForm.vue:365
|
||||
@@ -2467,10 +2472,6 @@ msgstr ""
|
||||
msgid "Join URL"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:136
|
||||
msgid "Keywords for the course"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a Workspace
|
||||
#: lms/lms/workspace/lms/lms.json
|
||||
msgid "LMS"
|
||||
@@ -2792,7 +2793,7 @@ msgstr ""
|
||||
msgid "Links"
|
||||
msgstr "الروابط"
|
||||
|
||||
#: frontend/src/pages/Quizzes.vue:147
|
||||
#: frontend/src/pages/Quizzes.vue:149
|
||||
msgid "List of quizzes"
|
||||
msgstr ""
|
||||
|
||||
@@ -2812,7 +2813,9 @@ msgstr ""
|
||||
msgid "LiveCode URL"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Members.vue:95
|
||||
#: frontend/src/components/Members.vue:106
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:39
|
||||
#: frontend/src/pages/Quizzes.vue:51
|
||||
msgid "Load More"
|
||||
msgstr "تحميل المزيد"
|
||||
|
||||
@@ -2907,7 +2910,7 @@ msgstr ""
|
||||
msgid "Marks"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:23
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:24
|
||||
msgid "Marks for question number {0} cannot be greater than the marks allotted for that question."
|
||||
msgstr ""
|
||||
|
||||
@@ -2957,7 +2960,7 @@ msgstr "متوسط:"
|
||||
#. Label of the member (Link) field in DocType 'LMS Program Member'
|
||||
#. Label of the member (Link) field in DocType 'LMS Quiz Submission'
|
||||
#: frontend/src/pages/QuizSubmission.vue:31
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:77
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:86
|
||||
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
|
||||
#: lms/lms/doctype/exercise_submission/exercise_submission.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
@@ -3230,7 +3233,7 @@ msgstr "التالي"
|
||||
msgid "Next Question"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Assessments.vue:63 lms/templates/assessments.html:58
|
||||
#: frontend/src/components/Assessments.vue:66 lms/templates/assessments.html:58
|
||||
msgid "No Assessments"
|
||||
msgstr ""
|
||||
|
||||
@@ -3291,7 +3294,7 @@ msgstr ""
|
||||
msgid "No programs found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Quizzes.vue:56
|
||||
#: frontend/src/pages/Quizzes.vue:61
|
||||
msgid "No quizzes found"
|
||||
msgstr ""
|
||||
|
||||
@@ -3407,7 +3410,7 @@ msgstr ""
|
||||
msgid "Only files of type {0} will be accepted."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:497 frontend/src/utils/index.js:520
|
||||
#: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:527
|
||||
msgid "Only image file is allowed."
|
||||
msgstr ""
|
||||
|
||||
@@ -3558,7 +3561,7 @@ msgstr ""
|
||||
|
||||
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz'
|
||||
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission'
|
||||
#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:125
|
||||
#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:127
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
msgid "Passing Percentage"
|
||||
@@ -3653,7 +3656,7 @@ msgstr "معلق"
|
||||
|
||||
#. Label of the percentage (Int) field in DocType 'LMS Quiz Submission'
|
||||
#: frontend/src/pages/QuizSubmission.vue:44
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:93
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:97
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
msgid "Percentage"
|
||||
msgstr "النسبة المئوية"
|
||||
@@ -3687,7 +3690,7 @@ msgstr "يرجى التحقق من بريدك الالكتروني للتحقق"
|
||||
msgid "Please click on the following button to set your new password"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1824 lms/lms/utils.py:1828
|
||||
#: lms/lms/utils.py:1837 lms/lms/utils.py:1841
|
||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||
msgstr ""
|
||||
|
||||
@@ -4040,8 +4043,7 @@ msgstr ""
|
||||
|
||||
#. Label of the quiz (Link) field in DocType 'LMS Quiz Submission'
|
||||
#. Label of a Link in the LMS Workspace
|
||||
#: frontend/src/pages/QuizSubmission.vue:26
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:82 frontend/src/utils/quiz.js:24
|
||||
#: frontend/src/pages/QuizSubmission.vue:26 frontend/src/utils/quiz.js:24
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/lms/workspace/lms/lms.json
|
||||
msgid "Quiz"
|
||||
@@ -4059,7 +4061,7 @@ msgid "Quiz Submission"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizSubmission.vue:122
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:102
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:106
|
||||
msgid "Quiz Submissions"
|
||||
msgstr ""
|
||||
|
||||
@@ -4089,8 +4091,8 @@ msgstr ""
|
||||
msgid "Quiz will appear at the bottom of the lesson."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:442 frontend/src/pages/Quizzes.vue:136
|
||||
#: frontend/src/pages/Quizzes.vue:146
|
||||
#: frontend/src/pages/QuizForm.vue:442 frontend/src/pages/Quizzes.vue:138
|
||||
#: frontend/src/pages/Quizzes.vue:148
|
||||
msgid "Quizzes"
|
||||
msgstr ""
|
||||
|
||||
@@ -4328,7 +4330,7 @@ msgstr ""
|
||||
|
||||
#. Label of the score (Int) field in DocType 'LMS Quiz Submission'
|
||||
#: frontend/src/pages/QuizSubmission.vue:39
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:87
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:91
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/templates/quiz/quiz.html:148
|
||||
msgid "Score"
|
||||
@@ -4700,13 +4702,13 @@ msgstr ""
|
||||
|
||||
#. Label of the students (Table) field in DocType 'LMS Batch'
|
||||
#. Label of the show_students (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/components/BatchStudents.vue:9
|
||||
#: frontend/src/components/BatchStudents.vue:4
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Students"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:157
|
||||
#: frontend/src/components/BatchStudents.vue:192
|
||||
msgid "Students deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -4758,7 +4760,7 @@ msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchCourses.vue:150
|
||||
#: frontend/src/components/BatchOverlay.vue:135
|
||||
#: frontend/src/components/BatchStudents.vue:157
|
||||
#: frontend/src/components/BatchStudents.vue:192
|
||||
#: frontend/src/components/CourseCardOverlay.vue:161
|
||||
#: frontend/src/components/Modals/AnnouncementModal.vue:99
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:73
|
||||
@@ -4769,7 +4771,7 @@ msgstr ""
|
||||
#: frontend/src/components/Modals/Event.vue:310
|
||||
#: frontend/src/components/Modals/Question.vue:264
|
||||
#: frontend/src/components/Modals/Question.vue:315
|
||||
#: frontend/src/pages/CourseForm.vue:460 frontend/src/pages/ProgramForm.vue:229
|
||||
#: frontend/src/pages/CourseForm.vue:461 frontend/src/pages/ProgramForm.vue:229
|
||||
#: frontend/src/pages/ProgramForm.vue:251
|
||||
#: frontend/src/pages/ProgramForm.vue:272
|
||||
#: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:343
|
||||
@@ -4791,7 +4793,7 @@ msgstr "ملخص"
|
||||
msgid "Sunday"
|
||||
msgstr "الأحد"
|
||||
|
||||
#: lms/lms/api.py:951
|
||||
#: lms/lms/api.py:952
|
||||
msgid "Suspicious pattern found in {0}: {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -4946,7 +4948,7 @@ msgstr ""
|
||||
msgid "There are no seats available in this batch."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:67
|
||||
#: frontend/src/components/BatchStudents.vue:86
|
||||
msgid "There are no students in this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -4954,7 +4956,7 @@ msgstr ""
|
||||
msgid "There are no {0} on this site."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:41
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:42
|
||||
msgid "There has been an update on your submission. You have got a score of {0} for the quiz {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -4977,7 +4979,7 @@ msgstr ""
|
||||
msgid "This course has:"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1582
|
||||
#: lms/lms/utils.py:1595
|
||||
msgid "This course is free."
|
||||
msgstr ""
|
||||
|
||||
@@ -5083,7 +5085,7 @@ msgstr ""
|
||||
#: frontend/src/pages/BatchForm.vue:20 frontend/src/pages/CourseForm.vue:32
|
||||
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/ProgramForm.vue:11
|
||||
#: frontend/src/pages/Programs.vue:118 frontend/src/pages/QuizForm.vue:48
|
||||
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
|
||||
#: frontend/src/pages/Quizzes.vue:116 lms/lms/doctype/cohort/cohort.json
|
||||
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
|
||||
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json
|
||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||
@@ -5119,7 +5121,7 @@ msgstr "إلى"
|
||||
msgid "To Date"
|
||||
msgstr "إلى تاريخ"
|
||||
|
||||
#: lms/lms/utils.py:1593
|
||||
#: lms/lms/utils.py:1606
|
||||
msgid "To join this batch, please contact the Administrator."
|
||||
msgstr ""
|
||||
|
||||
@@ -5136,7 +5138,7 @@ msgid "Total"
|
||||
msgstr "الاجمالي غير شامل الضريبة"
|
||||
|
||||
#. Label of the total_marks (Int) field in DocType 'LMS Quiz'
|
||||
#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:119
|
||||
#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:121
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
msgid "Total Marks"
|
||||
msgstr ""
|
||||
@@ -5537,11 +5539,11 @@ msgstr ""
|
||||
msgid "You have been enrolled in this course"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:38
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:39
|
||||
msgid "You have got a score of {0} for the quiz {1}"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Quizzes.vue:60
|
||||
#: frontend/src/pages/Quizzes.vue:65
|
||||
msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: frappe\n"
|
||||
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
||||
"POT-Creation-Date: 2024-12-06 16:04+0000\n"
|
||||
"PO-Revision-Date: 2024-12-09 23:31\n"
|
||||
"POT-Creation-Date: 2024-12-20 16:04+0000\n"
|
||||
"PO-Revision-Date: 2024-12-25 02:17\n"
|
||||
"Last-Translator: jannat@frappe.io\n"
|
||||
"Language-Team: Bosnian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -101,7 +101,7 @@ msgstr "Aktivan"
|
||||
|
||||
#: frontend/src/components/Assessments.vue:11
|
||||
#: frontend/src/components/BatchCourses.vue:11
|
||||
#: frontend/src/components/BatchStudents.vue:6
|
||||
#: frontend/src/components/BatchStudents.vue:10
|
||||
#: frontend/src/components/Categories.vue:26
|
||||
#: frontend/src/components/LiveClass.vue:11
|
||||
#: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30
|
||||
@@ -143,6 +143,10 @@ msgstr ""
|
||||
msgid "Add a course"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:136
|
||||
msgid "Add a keyword and then press enter"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/OnboardingBanner.vue:73
|
||||
msgid "Add a lesson"
|
||||
msgstr ""
|
||||
@@ -1231,7 +1235,7 @@ msgstr ""
|
||||
msgid "Course already added to the batch."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:460
|
||||
#: frontend/src/pages/CourseForm.vue:461
|
||||
msgid "Course deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -1406,7 +1410,7 @@ msgstr ""
|
||||
|
||||
#: frontend/src/components/CourseOutline.vue:235
|
||||
#: frontend/src/components/CourseOutline.vue:293
|
||||
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:473
|
||||
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:474
|
||||
msgid "Delete"
|
||||
msgstr "Izbriši"
|
||||
|
||||
@@ -1414,7 +1418,7 @@ msgstr "Izbriši"
|
||||
msgid "Delete Chapter"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:467
|
||||
#: frontend/src/pages/CourseForm.vue:468
|
||||
msgid "Delete Course"
|
||||
msgstr ""
|
||||
|
||||
@@ -1426,7 +1430,7 @@ msgstr ""
|
||||
msgid "Delete this lesson?"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:468
|
||||
#: frontend/src/pages/CourseForm.vue:469
|
||||
msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?"
|
||||
msgstr ""
|
||||
|
||||
@@ -1702,7 +1706,7 @@ msgstr ""
|
||||
msgid "Enrollment Count"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1702
|
||||
#: lms/lms/utils.py:1715
|
||||
msgid "Enrollment Failed"
|
||||
msgstr ""
|
||||
|
||||
@@ -1738,6 +1742,7 @@ msgstr ""
|
||||
#: frontend/src/components/Modals/Question.vue:249
|
||||
#: frontend/src/components/Modals/Question.vue:269
|
||||
#: frontend/src/components/Modals/Question.vue:326
|
||||
#: frontend/src/components/Modals/StudentModal.vue:69
|
||||
#: frontend/src/components/SettingDetails.vue:62
|
||||
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350
|
||||
#: frontend/src/pages/QuizForm.vue:365
|
||||
@@ -2467,10 +2472,6 @@ msgstr ""
|
||||
msgid "Join URL"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:136
|
||||
msgid "Keywords for the course"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a Workspace
|
||||
#: lms/lms/workspace/lms/lms.json
|
||||
msgid "LMS"
|
||||
@@ -2792,7 +2793,7 @@ msgstr ""
|
||||
msgid "Links"
|
||||
msgstr "Veze"
|
||||
|
||||
#: frontend/src/pages/Quizzes.vue:147
|
||||
#: frontend/src/pages/Quizzes.vue:149
|
||||
msgid "List of quizzes"
|
||||
msgstr ""
|
||||
|
||||
@@ -2812,7 +2813,9 @@ msgstr ""
|
||||
msgid "LiveCode URL"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Members.vue:95
|
||||
#: frontend/src/components/Members.vue:106
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:39
|
||||
#: frontend/src/pages/Quizzes.vue:51
|
||||
msgid "Load More"
|
||||
msgstr "Učitaj još"
|
||||
|
||||
@@ -2907,7 +2910,7 @@ msgstr ""
|
||||
msgid "Marks"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:23
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:24
|
||||
msgid "Marks for question number {0} cannot be greater than the marks allotted for that question."
|
||||
msgstr ""
|
||||
|
||||
@@ -2957,7 +2960,7 @@ msgstr "Srednje:"
|
||||
#. Label of the member (Link) field in DocType 'LMS Program Member'
|
||||
#. Label of the member (Link) field in DocType 'LMS Quiz Submission'
|
||||
#: frontend/src/pages/QuizSubmission.vue:31
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:77
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:86
|
||||
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
|
||||
#: lms/lms/doctype/exercise_submission/exercise_submission.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
@@ -3230,7 +3233,7 @@ msgstr "Sljedeći"
|
||||
msgid "Next Question"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Assessments.vue:63 lms/templates/assessments.html:58
|
||||
#: frontend/src/components/Assessments.vue:66 lms/templates/assessments.html:58
|
||||
msgid "No Assessments"
|
||||
msgstr ""
|
||||
|
||||
@@ -3291,7 +3294,7 @@ msgstr ""
|
||||
msgid "No programs found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Quizzes.vue:56
|
||||
#: frontend/src/pages/Quizzes.vue:61
|
||||
msgid "No quizzes found"
|
||||
msgstr ""
|
||||
|
||||
@@ -3407,7 +3410,7 @@ msgstr ""
|
||||
msgid "Only files of type {0} will be accepted."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:497 frontend/src/utils/index.js:520
|
||||
#: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:527
|
||||
msgid "Only image file is allowed."
|
||||
msgstr ""
|
||||
|
||||
@@ -3558,7 +3561,7 @@ msgstr "Prolaz"
|
||||
|
||||
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz'
|
||||
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission'
|
||||
#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:125
|
||||
#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:127
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
msgid "Passing Percentage"
|
||||
@@ -3653,7 +3656,7 @@ msgstr "Na čekanju"
|
||||
|
||||
#. Label of the percentage (Int) field in DocType 'LMS Quiz Submission'
|
||||
#: frontend/src/pages/QuizSubmission.vue:44
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:93
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:97
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
msgid "Percentage"
|
||||
msgstr "Procenat"
|
||||
@@ -3687,7 +3690,7 @@ msgstr "Molimo provjerite svoju e-poštu za potvrdu"
|
||||
msgid "Please click on the following button to set your new password"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1824 lms/lms/utils.py:1828
|
||||
#: lms/lms/utils.py:1837 lms/lms/utils.py:1841
|
||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||
msgstr ""
|
||||
|
||||
@@ -4040,8 +4043,7 @@ msgstr ""
|
||||
|
||||
#. Label of the quiz (Link) field in DocType 'LMS Quiz Submission'
|
||||
#. Label of a Link in the LMS Workspace
|
||||
#: frontend/src/pages/QuizSubmission.vue:26
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:82 frontend/src/utils/quiz.js:24
|
||||
#: frontend/src/pages/QuizSubmission.vue:26 frontend/src/utils/quiz.js:24
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/lms/workspace/lms/lms.json
|
||||
msgid "Quiz"
|
||||
@@ -4059,7 +4061,7 @@ msgid "Quiz Submission"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizSubmission.vue:122
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:102
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:106
|
||||
msgid "Quiz Submissions"
|
||||
msgstr ""
|
||||
|
||||
@@ -4089,8 +4091,8 @@ msgstr ""
|
||||
msgid "Quiz will appear at the bottom of the lesson."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:442 frontend/src/pages/Quizzes.vue:136
|
||||
#: frontend/src/pages/Quizzes.vue:146
|
||||
#: frontend/src/pages/QuizForm.vue:442 frontend/src/pages/Quizzes.vue:138
|
||||
#: frontend/src/pages/Quizzes.vue:148
|
||||
msgid "Quizzes"
|
||||
msgstr ""
|
||||
|
||||
@@ -4328,7 +4330,7 @@ msgstr ""
|
||||
|
||||
#. Label of the score (Int) field in DocType 'LMS Quiz Submission'
|
||||
#: frontend/src/pages/QuizSubmission.vue:39
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:87
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:91
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/templates/quiz/quiz.html:148
|
||||
msgid "Score"
|
||||
@@ -4700,13 +4702,13 @@ msgstr ""
|
||||
|
||||
#. Label of the students (Table) field in DocType 'LMS Batch'
|
||||
#. Label of the show_students (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/components/BatchStudents.vue:9
|
||||
#: frontend/src/components/BatchStudents.vue:4
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Students"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:157
|
||||
#: frontend/src/components/BatchStudents.vue:192
|
||||
msgid "Students deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -4758,7 +4760,7 @@ msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchCourses.vue:150
|
||||
#: frontend/src/components/BatchOverlay.vue:135
|
||||
#: frontend/src/components/BatchStudents.vue:157
|
||||
#: frontend/src/components/BatchStudents.vue:192
|
||||
#: frontend/src/components/CourseCardOverlay.vue:161
|
||||
#: frontend/src/components/Modals/AnnouncementModal.vue:99
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:73
|
||||
@@ -4769,7 +4771,7 @@ msgstr ""
|
||||
#: frontend/src/components/Modals/Event.vue:310
|
||||
#: frontend/src/components/Modals/Question.vue:264
|
||||
#: frontend/src/components/Modals/Question.vue:315
|
||||
#: frontend/src/pages/CourseForm.vue:460 frontend/src/pages/ProgramForm.vue:229
|
||||
#: frontend/src/pages/CourseForm.vue:461 frontend/src/pages/ProgramForm.vue:229
|
||||
#: frontend/src/pages/ProgramForm.vue:251
|
||||
#: frontend/src/pages/ProgramForm.vue:272
|
||||
#: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:343
|
||||
@@ -4791,7 +4793,7 @@ msgstr ""
|
||||
msgid "Sunday"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:951
|
||||
#: lms/lms/api.py:952
|
||||
msgid "Suspicious pattern found in {0}: {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -4946,7 +4948,7 @@ msgstr ""
|
||||
msgid "There are no seats available in this batch."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:67
|
||||
#: frontend/src/components/BatchStudents.vue:86
|
||||
msgid "There are no students in this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -4954,7 +4956,7 @@ msgstr ""
|
||||
msgid "There are no {0} on this site."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:41
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:42
|
||||
msgid "There has been an update on your submission. You have got a score of {0} for the quiz {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -4977,7 +4979,7 @@ msgstr ""
|
||||
msgid "This course has:"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1582
|
||||
#: lms/lms/utils.py:1595
|
||||
msgid "This course is free."
|
||||
msgstr ""
|
||||
|
||||
@@ -5083,7 +5085,7 @@ msgstr ""
|
||||
#: frontend/src/pages/BatchForm.vue:20 frontend/src/pages/CourseForm.vue:32
|
||||
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/ProgramForm.vue:11
|
||||
#: frontend/src/pages/Programs.vue:118 frontend/src/pages/QuizForm.vue:48
|
||||
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
|
||||
#: frontend/src/pages/Quizzes.vue:116 lms/lms/doctype/cohort/cohort.json
|
||||
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
|
||||
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json
|
||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||
@@ -5119,7 +5121,7 @@ msgstr ""
|
||||
msgid "To Date"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1593
|
||||
#: lms/lms/utils.py:1606
|
||||
msgid "To join this batch, please contact the Administrator."
|
||||
msgstr ""
|
||||
|
||||
@@ -5136,7 +5138,7 @@ msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the total_marks (Int) field in DocType 'LMS Quiz'
|
||||
#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:119
|
||||
#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:121
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
msgid "Total Marks"
|
||||
msgstr ""
|
||||
@@ -5537,11 +5539,11 @@ msgstr ""
|
||||
msgid "You have been enrolled in this course"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:38
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:39
|
||||
msgid "You have got a score of {0} for the quiz {1}"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Quizzes.vue:60
|
||||
#: frontend/src/pages/Quizzes.vue:65
|
||||
msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: frappe\n"
|
||||
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
||||
"POT-Creation-Date: 2024-12-06 16:04+0000\n"
|
||||
"PO-Revision-Date: 2024-12-09 23:31\n"
|
||||
"POT-Creation-Date: 2024-12-20 16:04+0000\n"
|
||||
"PO-Revision-Date: 2024-12-25 02:17\n"
|
||||
"Last-Translator: jannat@frappe.io\n"
|
||||
"Language-Team: German\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -101,7 +101,7 @@ msgstr "Aktiv"
|
||||
|
||||
#: frontend/src/components/Assessments.vue:11
|
||||
#: frontend/src/components/BatchCourses.vue:11
|
||||
#: frontend/src/components/BatchStudents.vue:6
|
||||
#: frontend/src/components/BatchStudents.vue:10
|
||||
#: frontend/src/components/Categories.vue:26
|
||||
#: frontend/src/components/LiveClass.vue:11
|
||||
#: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30
|
||||
@@ -143,6 +143,10 @@ msgstr ""
|
||||
msgid "Add a course"
|
||||
msgstr "Kurs hinzufügen"
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:136
|
||||
msgid "Add a keyword and then press enter"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/OnboardingBanner.vue:73
|
||||
msgid "Add a lesson"
|
||||
msgstr ""
|
||||
@@ -1231,7 +1235,7 @@ msgstr ""
|
||||
msgid "Course already added to the batch."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:460
|
||||
#: frontend/src/pages/CourseForm.vue:461
|
||||
msgid "Course deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -1406,7 +1410,7 @@ msgstr "Abschlussart"
|
||||
|
||||
#: frontend/src/components/CourseOutline.vue:235
|
||||
#: frontend/src/components/CourseOutline.vue:293
|
||||
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:473
|
||||
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:474
|
||||
msgid "Delete"
|
||||
msgstr "Löschen"
|
||||
|
||||
@@ -1414,7 +1418,7 @@ msgstr "Löschen"
|
||||
msgid "Delete Chapter"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:467
|
||||
#: frontend/src/pages/CourseForm.vue:468
|
||||
msgid "Delete Course"
|
||||
msgstr ""
|
||||
|
||||
@@ -1426,7 +1430,7 @@ msgstr ""
|
||||
msgid "Delete this lesson?"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:468
|
||||
#: frontend/src/pages/CourseForm.vue:469
|
||||
msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?"
|
||||
msgstr ""
|
||||
|
||||
@@ -1702,7 +1706,7 @@ msgstr ""
|
||||
msgid "Enrollment Count"
|
||||
msgstr "Anzahl der Einschreibungen"
|
||||
|
||||
#: lms/lms/utils.py:1702
|
||||
#: lms/lms/utils.py:1715
|
||||
msgid "Enrollment Failed"
|
||||
msgstr ""
|
||||
|
||||
@@ -1738,6 +1742,7 @@ msgstr "Geben Sie die richtige Antwort ein"
|
||||
#: frontend/src/components/Modals/Question.vue:249
|
||||
#: frontend/src/components/Modals/Question.vue:269
|
||||
#: frontend/src/components/Modals/Question.vue:326
|
||||
#: frontend/src/components/Modals/StudentModal.vue:69
|
||||
#: frontend/src/components/SettingDetails.vue:62
|
||||
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350
|
||||
#: frontend/src/pages/QuizForm.vue:365
|
||||
@@ -2467,10 +2472,6 @@ msgstr ""
|
||||
msgid "Join URL"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:136
|
||||
msgid "Keywords for the course"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a Workspace
|
||||
#: lms/lms/workspace/lms/lms.json
|
||||
msgid "LMS"
|
||||
@@ -2792,7 +2793,7 @@ msgstr ""
|
||||
msgid "Links"
|
||||
msgstr "Verknüpfungen"
|
||||
|
||||
#: frontend/src/pages/Quizzes.vue:147
|
||||
#: frontend/src/pages/Quizzes.vue:149
|
||||
msgid "List of quizzes"
|
||||
msgstr ""
|
||||
|
||||
@@ -2812,7 +2813,9 @@ msgstr ""
|
||||
msgid "LiveCode URL"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Members.vue:95
|
||||
#: frontend/src/components/Members.vue:106
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:39
|
||||
#: frontend/src/pages/Quizzes.vue:51
|
||||
msgid "Load More"
|
||||
msgstr "Mehr laden"
|
||||
|
||||
@@ -2907,7 +2910,7 @@ msgstr "Als gelesen markieren"
|
||||
msgid "Marks"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:23
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:24
|
||||
msgid "Marks for question number {0} cannot be greater than the marks allotted for that question."
|
||||
msgstr ""
|
||||
|
||||
@@ -2957,7 +2960,7 @@ msgstr "Mittel:"
|
||||
#. Label of the member (Link) field in DocType 'LMS Program Member'
|
||||
#. Label of the member (Link) field in DocType 'LMS Quiz Submission'
|
||||
#: frontend/src/pages/QuizSubmission.vue:31
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:77
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:86
|
||||
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
|
||||
#: lms/lms/doctype/exercise_submission/exercise_submission.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
@@ -3230,7 +3233,7 @@ msgstr "Weiter"
|
||||
msgid "Next Question"
|
||||
msgstr "Nächste Frage"
|
||||
|
||||
#: frontend/src/components/Assessments.vue:63 lms/templates/assessments.html:58
|
||||
#: frontend/src/components/Assessments.vue:66 lms/templates/assessments.html:58
|
||||
msgid "No Assessments"
|
||||
msgstr ""
|
||||
|
||||
@@ -3291,7 +3294,7 @@ msgstr "Keine Live-Kurse geplant"
|
||||
msgid "No programs found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Quizzes.vue:56
|
||||
#: frontend/src/pages/Quizzes.vue:61
|
||||
msgid "No quizzes found"
|
||||
msgstr ""
|
||||
|
||||
@@ -3407,7 +3410,7 @@ msgstr ""
|
||||
msgid "Only files of type {0} will be accepted."
|
||||
msgstr "Es werden nur Dateien vom Typ {0} akzeptiert."
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:497 frontend/src/utils/index.js:520
|
||||
#: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:527
|
||||
msgid "Only image file is allowed."
|
||||
msgstr ""
|
||||
|
||||
@@ -3558,7 +3561,7 @@ msgstr "Erfolgreich"
|
||||
|
||||
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz'
|
||||
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission'
|
||||
#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:125
|
||||
#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:127
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
msgid "Passing Percentage"
|
||||
@@ -3653,7 +3656,7 @@ msgstr "Ausstehend"
|
||||
|
||||
#. Label of the percentage (Int) field in DocType 'LMS Quiz Submission'
|
||||
#: frontend/src/pages/QuizSubmission.vue:44
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:93
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:97
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
msgid "Percentage"
|
||||
msgstr "Prozentsatz"
|
||||
@@ -3687,7 +3690,7 @@ msgstr "Bitte überprüfen Sie Ihren Posteingang. Wir haben Ihnen eine E-Mail mi
|
||||
msgid "Please click on the following button to set your new password"
|
||||
msgstr "Bitte klicken Sie auf die folgende Schaltfläche, um Ihr neues Passwort festzulegen"
|
||||
|
||||
#: lms/lms/utils.py:1824 lms/lms/utils.py:1828
|
||||
#: lms/lms/utils.py:1837 lms/lms/utils.py:1841
|
||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||
msgstr ""
|
||||
|
||||
@@ -4040,8 +4043,7 @@ msgstr ""
|
||||
|
||||
#. Label of the quiz (Link) field in DocType 'LMS Quiz Submission'
|
||||
#. Label of a Link in the LMS Workspace
|
||||
#: frontend/src/pages/QuizSubmission.vue:26
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:82 frontend/src/utils/quiz.js:24
|
||||
#: frontend/src/pages/QuizSubmission.vue:26 frontend/src/utils/quiz.js:24
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/lms/workspace/lms/lms.json
|
||||
msgid "Quiz"
|
||||
@@ -4059,7 +4061,7 @@ msgid "Quiz Submission"
|
||||
msgstr "Quiz-Einreichung"
|
||||
|
||||
#: frontend/src/pages/QuizSubmission.vue:122
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:102
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:106
|
||||
msgid "Quiz Submissions"
|
||||
msgstr ""
|
||||
|
||||
@@ -4089,8 +4091,8 @@ msgstr ""
|
||||
msgid "Quiz will appear at the bottom of the lesson."
|
||||
msgstr "Das Quiz wird am Ende der Lektion angezeigt."
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:442 frontend/src/pages/Quizzes.vue:136
|
||||
#: frontend/src/pages/Quizzes.vue:146
|
||||
#: frontend/src/pages/QuizForm.vue:442 frontend/src/pages/Quizzes.vue:138
|
||||
#: frontend/src/pages/Quizzes.vue:148
|
||||
msgid "Quizzes"
|
||||
msgstr ""
|
||||
|
||||
@@ -4328,7 +4330,7 @@ msgstr "Geltungsbereich"
|
||||
|
||||
#. Label of the score (Int) field in DocType 'LMS Quiz Submission'
|
||||
#: frontend/src/pages/QuizSubmission.vue:39
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:87
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:91
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/templates/quiz/quiz.html:148
|
||||
msgid "Score"
|
||||
@@ -4700,13 +4702,13 @@ msgstr ""
|
||||
|
||||
#. Label of the students (Table) field in DocType 'LMS Batch'
|
||||
#. Label of the show_students (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/components/BatchStudents.vue:9
|
||||
#: frontend/src/components/BatchStudents.vue:4
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Students"
|
||||
msgstr "Schüler"
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:157
|
||||
#: frontend/src/components/BatchStudents.vue:192
|
||||
msgid "Students deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -4758,7 +4760,7 @@ msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchCourses.vue:150
|
||||
#: frontend/src/components/BatchOverlay.vue:135
|
||||
#: frontend/src/components/BatchStudents.vue:157
|
||||
#: frontend/src/components/BatchStudents.vue:192
|
||||
#: frontend/src/components/CourseCardOverlay.vue:161
|
||||
#: frontend/src/components/Modals/AnnouncementModal.vue:99
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:73
|
||||
@@ -4769,7 +4771,7 @@ msgstr ""
|
||||
#: frontend/src/components/Modals/Event.vue:310
|
||||
#: frontend/src/components/Modals/Question.vue:264
|
||||
#: frontend/src/components/Modals/Question.vue:315
|
||||
#: frontend/src/pages/CourseForm.vue:460 frontend/src/pages/ProgramForm.vue:229
|
||||
#: frontend/src/pages/CourseForm.vue:461 frontend/src/pages/ProgramForm.vue:229
|
||||
#: frontend/src/pages/ProgramForm.vue:251
|
||||
#: frontend/src/pages/ProgramForm.vue:272
|
||||
#: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:343
|
||||
@@ -4791,7 +4793,7 @@ msgstr "Zusammenfassung"
|
||||
msgid "Sunday"
|
||||
msgstr "Sonntag"
|
||||
|
||||
#: lms/lms/api.py:951
|
||||
#: lms/lms/api.py:952
|
||||
msgid "Suspicious pattern found in {0}: {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -4946,7 +4948,7 @@ msgstr ""
|
||||
msgid "There are no seats available in this batch."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:67
|
||||
#: frontend/src/components/BatchStudents.vue:86
|
||||
msgid "There are no students in this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -4954,7 +4956,7 @@ msgstr ""
|
||||
msgid "There are no {0} on this site."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:41
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:42
|
||||
msgid "There has been an update on your submission. You have got a score of {0} for the quiz {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -4977,7 +4979,7 @@ msgstr "Dieses Zertifikat läuft nicht ab"
|
||||
msgid "This course has:"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1582
|
||||
#: lms/lms/utils.py:1595
|
||||
msgid "This course is free."
|
||||
msgstr "Dieser Kurs ist kostenlos."
|
||||
|
||||
@@ -5083,7 +5085,7 @@ msgstr ""
|
||||
#: frontend/src/pages/BatchForm.vue:20 frontend/src/pages/CourseForm.vue:32
|
||||
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/ProgramForm.vue:11
|
||||
#: frontend/src/pages/Programs.vue:118 frontend/src/pages/QuizForm.vue:48
|
||||
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
|
||||
#: frontend/src/pages/Quizzes.vue:116 lms/lms/doctype/cohort/cohort.json
|
||||
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
|
||||
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json
|
||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||
@@ -5119,7 +5121,7 @@ msgstr "An"
|
||||
msgid "To Date"
|
||||
msgstr "Bis-Datum"
|
||||
|
||||
#: lms/lms/utils.py:1593
|
||||
#: lms/lms/utils.py:1606
|
||||
msgid "To join this batch, please contact the Administrator."
|
||||
msgstr "Um dieser Gruppe beizutreten, wenden Sie sich bitte an den Administrator."
|
||||
|
||||
@@ -5136,7 +5138,7 @@ msgid "Total"
|
||||
msgstr "Summe"
|
||||
|
||||
#. Label of the total_marks (Int) field in DocType 'LMS Quiz'
|
||||
#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:119
|
||||
#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:121
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
msgid "Total Marks"
|
||||
msgstr ""
|
||||
@@ -5537,11 +5539,11 @@ msgstr ""
|
||||
msgid "You have been enrolled in this course"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:38
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:39
|
||||
msgid "You have got a score of {0} for the quiz {1}"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Quizzes.vue:60
|
||||
#: frontend/src/pages/Quizzes.vue:65
|
||||
msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: frappe\n"
|
||||
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
||||
"POT-Creation-Date: 2024-12-13 16:04+0000\n"
|
||||
"PO-Revision-Date: 2024-12-18 00:37\n"
|
||||
"POT-Creation-Date: 2024-12-20 16:04+0000\n"
|
||||
"PO-Revision-Date: 2024-12-25 02:17\n"
|
||||
"Last-Translator: jannat@frappe.io\n"
|
||||
"Language-Team: Esperanto\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -143,6 +143,10 @@ msgstr "crwdns151726:0crwdne151726:0"
|
||||
msgid "Add a course"
|
||||
msgstr "crwdns149226:0crwdne149226:0"
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:136
|
||||
msgid "Add a keyword and then press enter"
|
||||
msgstr "crwdns152004:0crwdne152004:0"
|
||||
|
||||
#: frontend/src/components/OnboardingBanner.vue:73
|
||||
msgid "Add a lesson"
|
||||
msgstr "crwdns151728:0crwdne151728:0"
|
||||
@@ -1231,7 +1235,7 @@ msgstr "crwdns151734:0crwdne151734:0"
|
||||
msgid "Course already added to the batch."
|
||||
msgstr "crwdns149592:0crwdne149592:0"
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:460
|
||||
#: frontend/src/pages/CourseForm.vue:461
|
||||
msgid "Course deleted successfully"
|
||||
msgstr "crwdns151586:0crwdne151586:0"
|
||||
|
||||
@@ -1406,7 +1410,7 @@ msgstr "crwdns149644:0crwdne149644:0"
|
||||
|
||||
#: frontend/src/components/CourseOutline.vue:235
|
||||
#: frontend/src/components/CourseOutline.vue:293
|
||||
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:473
|
||||
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:474
|
||||
msgid "Delete"
|
||||
msgstr "crwdns149646:0crwdne149646:0"
|
||||
|
||||
@@ -1414,7 +1418,7 @@ msgstr "crwdns149646:0crwdne149646:0"
|
||||
msgid "Delete Chapter"
|
||||
msgstr "crwdns151626:0crwdne151626:0"
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:467
|
||||
#: frontend/src/pages/CourseForm.vue:468
|
||||
msgid "Delete Course"
|
||||
msgstr "crwdns151588:0crwdne151588:0"
|
||||
|
||||
@@ -1426,7 +1430,7 @@ msgstr "crwdns151628:0crwdne151628:0"
|
||||
msgid "Delete this lesson?"
|
||||
msgstr "crwdns151630:0crwdne151630:0"
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:468
|
||||
#: frontend/src/pages/CourseForm.vue:469
|
||||
msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?"
|
||||
msgstr "crwdns151590:0crwdne151590:0"
|
||||
|
||||
@@ -2468,10 +2472,6 @@ msgstr "crwdns149998:0crwdne149998:0"
|
||||
msgid "Join URL"
|
||||
msgstr "crwdns150000:0crwdne150000:0"
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:136
|
||||
msgid "Keywords for the course"
|
||||
msgstr "crwdns151476:0crwdne151476:0"
|
||||
|
||||
#. Name of a Workspace
|
||||
#: lms/lms/workspace/lms/lms.json
|
||||
msgid "LMS"
|
||||
@@ -2793,7 +2793,7 @@ msgstr "crwdns150100:0crwdne150100:0"
|
||||
msgid "Links"
|
||||
msgstr "crwdns150102:0crwdne150102:0"
|
||||
|
||||
#: frontend/src/pages/Quizzes.vue:147
|
||||
#: frontend/src/pages/Quizzes.vue:149
|
||||
msgid "List of quizzes"
|
||||
msgstr "crwdns150104:0crwdne150104:0"
|
||||
|
||||
@@ -2814,6 +2814,8 @@ msgid "LiveCode URL"
|
||||
msgstr "crwdns150110:0crwdne150110:0"
|
||||
|
||||
#: frontend/src/components/Members.vue:106
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:39
|
||||
#: frontend/src/pages/Quizzes.vue:51
|
||||
msgid "Load More"
|
||||
msgstr "crwdns150112:0crwdne150112:0"
|
||||
|
||||
@@ -2908,7 +2910,7 @@ msgstr "crwdns150142:0crwdne150142:0"
|
||||
msgid "Marks"
|
||||
msgstr "crwdns150144:0crwdne150144:0"
|
||||
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:23
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:24
|
||||
msgid "Marks for question number {0} cannot be greater than the marks allotted for that question."
|
||||
msgstr "crwdns150146:0{0}crwdne150146:0"
|
||||
|
||||
@@ -2958,7 +2960,7 @@ msgstr "crwdns150158:0crwdne150158:0"
|
||||
#. Label of the member (Link) field in DocType 'LMS Program Member'
|
||||
#. Label of the member (Link) field in DocType 'LMS Quiz Submission'
|
||||
#: frontend/src/pages/QuizSubmission.vue:31
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:77
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:86
|
||||
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
|
||||
#: lms/lms/doctype/exercise_submission/exercise_submission.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
@@ -3292,7 +3294,7 @@ msgstr "crwdns150262:0crwdne150262:0"
|
||||
msgid "No programs found"
|
||||
msgstr "crwdns151768:0crwdne151768:0"
|
||||
|
||||
#: frontend/src/pages/Quizzes.vue:56
|
||||
#: frontend/src/pages/Quizzes.vue:61
|
||||
msgid "No quizzes found"
|
||||
msgstr "crwdns151592:0crwdne151592:0"
|
||||
|
||||
@@ -3408,7 +3410,7 @@ msgstr "crwdns151770:0crwdne151770:0"
|
||||
msgid "Only files of type {0} will be accepted."
|
||||
msgstr "crwdns150308:0{0}crwdne150308:0"
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:497 frontend/src/utils/index.js:520
|
||||
#: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:527
|
||||
msgid "Only image file is allowed."
|
||||
msgstr "crwdns150310:0crwdne150310:0"
|
||||
|
||||
@@ -3559,7 +3561,7 @@ msgstr "crwdns150362:0crwdne150362:0"
|
||||
|
||||
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz'
|
||||
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission'
|
||||
#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:125
|
||||
#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:127
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
msgid "Passing Percentage"
|
||||
@@ -3654,7 +3656,7 @@ msgstr "crwdns150390:0crwdne150390:0"
|
||||
|
||||
#. Label of the percentage (Int) field in DocType 'LMS Quiz Submission'
|
||||
#: frontend/src/pages/QuizSubmission.vue:44
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:93
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:97
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
msgid "Percentage"
|
||||
msgstr "crwdns150392:0crwdne150392:0"
|
||||
@@ -4041,8 +4043,7 @@ msgstr "crwdns150520:0crwdne150520:0"
|
||||
|
||||
#. Label of the quiz (Link) field in DocType 'LMS Quiz Submission'
|
||||
#. Label of a Link in the LMS Workspace
|
||||
#: frontend/src/pages/QuizSubmission.vue:26
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:82 frontend/src/utils/quiz.js:24
|
||||
#: frontend/src/pages/QuizSubmission.vue:26 frontend/src/utils/quiz.js:24
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/lms/workspace/lms/lms.json
|
||||
msgid "Quiz"
|
||||
@@ -4060,7 +4061,7 @@ msgid "Quiz Submission"
|
||||
msgstr "crwdns150526:0crwdne150526:0"
|
||||
|
||||
#: frontend/src/pages/QuizSubmission.vue:122
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:102
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:106
|
||||
msgid "Quiz Submissions"
|
||||
msgstr "crwdns150528:0crwdne150528:0"
|
||||
|
||||
@@ -4090,8 +4091,8 @@ msgstr "crwdns150538:0crwdne150538:0"
|
||||
msgid "Quiz will appear at the bottom of the lesson."
|
||||
msgstr "crwdns150540:0crwdne150540:0"
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:442 frontend/src/pages/Quizzes.vue:136
|
||||
#: frontend/src/pages/Quizzes.vue:146
|
||||
#: frontend/src/pages/QuizForm.vue:442 frontend/src/pages/Quizzes.vue:138
|
||||
#: frontend/src/pages/Quizzes.vue:148
|
||||
msgid "Quizzes"
|
||||
msgstr "crwdns150542:0crwdne150542:0"
|
||||
|
||||
@@ -4329,7 +4330,7 @@ msgstr "crwdns150620:0crwdne150620:0"
|
||||
|
||||
#. Label of the score (Int) field in DocType 'LMS Quiz Submission'
|
||||
#: frontend/src/pages/QuizSubmission.vue:39
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:87
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:91
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/templates/quiz/quiz.html:148
|
||||
msgid "Score"
|
||||
@@ -4707,7 +4708,7 @@ msgstr "crwdns150746:0{0}crwdne150746:0"
|
||||
msgid "Students"
|
||||
msgstr "crwdns150748:0crwdne150748:0"
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:191
|
||||
#: frontend/src/components/BatchStudents.vue:192
|
||||
msgid "Students deleted successfully"
|
||||
msgstr "crwdns150750:0crwdne150750:0"
|
||||
|
||||
@@ -4759,7 +4760,7 @@ msgstr "crwdns150766:0{0}crwdne150766:0"
|
||||
|
||||
#: frontend/src/components/BatchCourses.vue:150
|
||||
#: frontend/src/components/BatchOverlay.vue:135
|
||||
#: frontend/src/components/BatchStudents.vue:191
|
||||
#: frontend/src/components/BatchStudents.vue:192
|
||||
#: frontend/src/components/CourseCardOverlay.vue:161
|
||||
#: frontend/src/components/Modals/AnnouncementModal.vue:99
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:73
|
||||
@@ -4770,7 +4771,7 @@ msgstr "crwdns150766:0{0}crwdne150766:0"
|
||||
#: frontend/src/components/Modals/Event.vue:310
|
||||
#: frontend/src/components/Modals/Question.vue:264
|
||||
#: frontend/src/components/Modals/Question.vue:315
|
||||
#: frontend/src/pages/CourseForm.vue:460 frontend/src/pages/ProgramForm.vue:229
|
||||
#: frontend/src/pages/CourseForm.vue:461 frontend/src/pages/ProgramForm.vue:229
|
||||
#: frontend/src/pages/ProgramForm.vue:251
|
||||
#: frontend/src/pages/ProgramForm.vue:272
|
||||
#: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:343
|
||||
@@ -4792,7 +4793,7 @@ msgstr "crwdns150770:0crwdne150770:0"
|
||||
msgid "Sunday"
|
||||
msgstr "crwdns150772:0crwdne150772:0"
|
||||
|
||||
#: lms/lms/api.py:951
|
||||
#: lms/lms/api.py:952
|
||||
msgid "Suspicious pattern found in {0}: {1}"
|
||||
msgstr "crwdns151930:0{0}crwdnd151930:0{1}crwdne151930:0"
|
||||
|
||||
@@ -4955,7 +4956,7 @@ msgstr "crwdns150810:0crwdne150810:0"
|
||||
msgid "There are no {0} on this site."
|
||||
msgstr "crwdns150812:0{0}crwdne150812:0"
|
||||
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:41
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:42
|
||||
msgid "There has been an update on your submission. You have got a score of {0} for the quiz {1}"
|
||||
msgstr "crwdns151850:0{0}crwdnd151850:0{1}crwdne151850:0"
|
||||
|
||||
@@ -5084,7 +5085,7 @@ msgstr "crwdns150848:0crwdne150848:0"
|
||||
#: frontend/src/pages/BatchForm.vue:20 frontend/src/pages/CourseForm.vue:32
|
||||
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/ProgramForm.vue:11
|
||||
#: frontend/src/pages/Programs.vue:118 frontend/src/pages/QuizForm.vue:48
|
||||
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
|
||||
#: frontend/src/pages/Quizzes.vue:116 lms/lms/doctype/cohort/cohort.json
|
||||
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
|
||||
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json
|
||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||
@@ -5137,7 +5138,7 @@ msgid "Total"
|
||||
msgstr "crwdns150864:0crwdne150864:0"
|
||||
|
||||
#. Label of the total_marks (Int) field in DocType 'LMS Quiz'
|
||||
#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:119
|
||||
#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:121
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
msgid "Total Marks"
|
||||
msgstr "crwdns150866:0crwdne150866:0"
|
||||
@@ -5538,11 +5539,11 @@ msgstr "crwdns151014:0crwdne151014:0"
|
||||
msgid "You have been enrolled in this course"
|
||||
msgstr "crwdns151016:0crwdne151016:0"
|
||||
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:38
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:39
|
||||
msgid "You have got a score of {0} for the quiz {1}"
|
||||
msgstr "crwdns151852:0{0}crwdnd151852:0{1}crwdne151852:0"
|
||||
|
||||
#: frontend/src/pages/Quizzes.vue:60
|
||||
#: frontend/src/pages/Quizzes.vue:65
|
||||
msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above."
|
||||
msgstr "crwdns151594:0crwdne151594:0"
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: frappe\n"
|
||||
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
||||
"POT-Creation-Date: 2024-12-06 16:04+0000\n"
|
||||
"PO-Revision-Date: 2024-12-09 23:30\n"
|
||||
"POT-Creation-Date: 2024-12-20 16:04+0000\n"
|
||||
"PO-Revision-Date: 2024-12-25 02:17\n"
|
||||
"Last-Translator: jannat@frappe.io\n"
|
||||
"Language-Team: Spanish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -101,7 +101,7 @@ msgstr "Activo"
|
||||
|
||||
#: frontend/src/components/Assessments.vue:11
|
||||
#: frontend/src/components/BatchCourses.vue:11
|
||||
#: frontend/src/components/BatchStudents.vue:6
|
||||
#: frontend/src/components/BatchStudents.vue:10
|
||||
#: frontend/src/components/Categories.vue:26
|
||||
#: frontend/src/components/LiveClass.vue:11
|
||||
#: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30
|
||||
@@ -143,6 +143,10 @@ msgstr ""
|
||||
msgid "Add a course"
|
||||
msgstr "Añadir un curso"
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:136
|
||||
msgid "Add a keyword and then press enter"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/OnboardingBanner.vue:73
|
||||
msgid "Add a lesson"
|
||||
msgstr ""
|
||||
@@ -1231,7 +1235,7 @@ msgstr ""
|
||||
msgid "Course already added to the batch."
|
||||
msgstr "Curso ya agregado al lote."
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:460
|
||||
#: frontend/src/pages/CourseForm.vue:461
|
||||
msgid "Course deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -1406,7 +1410,7 @@ msgstr "Tipo de Grado"
|
||||
|
||||
#: frontend/src/components/CourseOutline.vue:235
|
||||
#: frontend/src/components/CourseOutline.vue:293
|
||||
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:473
|
||||
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:474
|
||||
msgid "Delete"
|
||||
msgstr "Eliminar"
|
||||
|
||||
@@ -1414,7 +1418,7 @@ msgstr "Eliminar"
|
||||
msgid "Delete Chapter"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:467
|
||||
#: frontend/src/pages/CourseForm.vue:468
|
||||
msgid "Delete Course"
|
||||
msgstr ""
|
||||
|
||||
@@ -1426,7 +1430,7 @@ msgstr ""
|
||||
msgid "Delete this lesson?"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:468
|
||||
#: frontend/src/pages/CourseForm.vue:469
|
||||
msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?"
|
||||
msgstr ""
|
||||
|
||||
@@ -1702,7 +1706,7 @@ msgstr "Confirmación de inscripción para el próximo Lote de Entrenamiento"
|
||||
msgid "Enrollment Count"
|
||||
msgstr "Recuento de inscripciones"
|
||||
|
||||
#: lms/lms/utils.py:1702
|
||||
#: lms/lms/utils.py:1715
|
||||
msgid "Enrollment Failed"
|
||||
msgstr "Error al inscribirse"
|
||||
|
||||
@@ -1738,6 +1742,7 @@ msgstr "Ingrese la respuesta correcta"
|
||||
#: frontend/src/components/Modals/Question.vue:249
|
||||
#: frontend/src/components/Modals/Question.vue:269
|
||||
#: frontend/src/components/Modals/Question.vue:326
|
||||
#: frontend/src/components/Modals/StudentModal.vue:69
|
||||
#: frontend/src/components/SettingDetails.vue:62
|
||||
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350
|
||||
#: frontend/src/pages/QuizForm.vue:365
|
||||
@@ -2467,10 +2472,6 @@ msgstr "Unirse a la reunión"
|
||||
msgid "Join URL"
|
||||
msgstr "Unirse a URL"
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:136
|
||||
msgid "Keywords for the course"
|
||||
msgstr "Palabras claves del curso"
|
||||
|
||||
#. Name of a Workspace
|
||||
#: lms/lms/workspace/lms/lms.json
|
||||
msgid "LMS"
|
||||
@@ -2792,7 +2793,7 @@ msgstr "ID de LinkedIn"
|
||||
msgid "Links"
|
||||
msgstr "Enlaces"
|
||||
|
||||
#: frontend/src/pages/Quizzes.vue:147
|
||||
#: frontend/src/pages/Quizzes.vue:149
|
||||
msgid "List of quizzes"
|
||||
msgstr "Lista de cuestionarios"
|
||||
|
||||
@@ -2812,7 +2813,9 @@ msgstr "Clase en vivo"
|
||||
msgid "LiveCode URL"
|
||||
msgstr "URL LiveCode"
|
||||
|
||||
#: frontend/src/components/Members.vue:95
|
||||
#: frontend/src/components/Members.vue:106
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:39
|
||||
#: frontend/src/pages/Quizzes.vue:51
|
||||
msgid "Load More"
|
||||
msgstr "Carga más"
|
||||
|
||||
@@ -2907,7 +2910,7 @@ msgstr "Marcar como leído"
|
||||
msgid "Marks"
|
||||
msgstr "Marcas"
|
||||
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:23
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:24
|
||||
msgid "Marks for question number {0} cannot be greater than the marks allotted for that question."
|
||||
msgstr "Las calificaciones para la pregunta número {0} no pueden ser mayores que las calificaciones asignadas para esa pregunta."
|
||||
|
||||
@@ -2957,7 +2960,7 @@ msgstr "Medio:"
|
||||
#. Label of the member (Link) field in DocType 'LMS Program Member'
|
||||
#. Label of the member (Link) field in DocType 'LMS Quiz Submission'
|
||||
#: frontend/src/pages/QuizSubmission.vue:31
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:77
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:86
|
||||
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
|
||||
#: lms/lms/doctype/exercise_submission/exercise_submission.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
@@ -3230,7 +3233,7 @@ msgstr "Siguiente"
|
||||
msgid "Next Question"
|
||||
msgstr "Siguiente pregunta"
|
||||
|
||||
#: frontend/src/components/Assessments.vue:63 lms/templates/assessments.html:58
|
||||
#: frontend/src/components/Assessments.vue:66 lms/templates/assessments.html:58
|
||||
msgid "No Assessments"
|
||||
msgstr "Sin evaluaciones"
|
||||
|
||||
@@ -3291,7 +3294,7 @@ msgstr "No hay clases en vivo programadas"
|
||||
msgid "No programs found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Quizzes.vue:56
|
||||
#: frontend/src/pages/Quizzes.vue:61
|
||||
msgid "No quizzes found"
|
||||
msgstr ""
|
||||
|
||||
@@ -3407,7 +3410,7 @@ msgstr ""
|
||||
msgid "Only files of type {0} will be accepted."
|
||||
msgstr "Sólo se aceptarán archivos del tipo {0}."
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:497 frontend/src/utils/index.js:520
|
||||
#: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:527
|
||||
msgid "Only image file is allowed."
|
||||
msgstr "Sólo se permiten archivos de imagen."
|
||||
|
||||
@@ -3558,7 +3561,7 @@ msgstr "Aprobar"
|
||||
|
||||
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz'
|
||||
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission'
|
||||
#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:125
|
||||
#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:127
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
msgid "Passing Percentage"
|
||||
@@ -3653,7 +3656,7 @@ msgstr "Pendiente"
|
||||
|
||||
#. Label of the percentage (Int) field in DocType 'LMS Quiz Submission'
|
||||
#: frontend/src/pages/QuizSubmission.vue:44
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:93
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:97
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
msgid "Percentage"
|
||||
msgstr "Porcentaje"
|
||||
@@ -3687,7 +3690,7 @@ msgstr "Por favor, consultar su correo electrónico para la verificación"
|
||||
msgid "Please click on the following button to set your new password"
|
||||
msgstr "Haga clic en el siguiente botón para establecer su nueva contraseña"
|
||||
|
||||
#: lms/lms/utils.py:1824 lms/lms/utils.py:1828
|
||||
#: lms/lms/utils.py:1837 lms/lms/utils.py:1841
|
||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||
msgstr ""
|
||||
|
||||
@@ -4040,8 +4043,7 @@ msgstr "Preguntas eliminadas correctamente"
|
||||
|
||||
#. Label of the quiz (Link) field in DocType 'LMS Quiz Submission'
|
||||
#. Label of a Link in the LMS Workspace
|
||||
#: frontend/src/pages/QuizSubmission.vue:26
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:82 frontend/src/utils/quiz.js:24
|
||||
#: frontend/src/pages/QuizSubmission.vue:26 frontend/src/utils/quiz.js:24
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/lms/workspace/lms/lms.json
|
||||
msgid "Quiz"
|
||||
@@ -4059,7 +4061,7 @@ msgid "Quiz Submission"
|
||||
msgstr "Envíos de cuestionarios"
|
||||
|
||||
#: frontend/src/pages/QuizSubmission.vue:122
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:102
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:106
|
||||
msgid "Quiz Submissions"
|
||||
msgstr "Envíos de cuestionarios"
|
||||
|
||||
@@ -4089,8 +4091,8 @@ msgstr "Cuestionario actualizado correctamente"
|
||||
msgid "Quiz will appear at the bottom of the lesson."
|
||||
msgstr "El cuestionario aparecerá al final de la lección."
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:442 frontend/src/pages/Quizzes.vue:136
|
||||
#: frontend/src/pages/Quizzes.vue:146
|
||||
#: frontend/src/pages/QuizForm.vue:442 frontend/src/pages/Quizzes.vue:138
|
||||
#: frontend/src/pages/Quizzes.vue:148
|
||||
msgid "Quizzes"
|
||||
msgstr "Cuestionarios"
|
||||
|
||||
@@ -4328,7 +4330,7 @@ msgstr "Alcance"
|
||||
|
||||
#. Label of the score (Int) field in DocType 'LMS Quiz Submission'
|
||||
#: frontend/src/pages/QuizSubmission.vue:39
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:87
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:91
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/templates/quiz/quiz.html:148
|
||||
msgid "Score"
|
||||
@@ -4700,13 +4702,13 @@ msgstr "El estudiante {0} ya ha sido añadido a este lote."
|
||||
|
||||
#. Label of the students (Table) field in DocType 'LMS Batch'
|
||||
#. Label of the show_students (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/components/BatchStudents.vue:9
|
||||
#: frontend/src/components/BatchStudents.vue:4
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Students"
|
||||
msgstr "Estudiantes"
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:157
|
||||
#: frontend/src/components/BatchStudents.vue:192
|
||||
msgid "Students deleted successfully"
|
||||
msgstr "Estudiantes eliminados correctamente"
|
||||
|
||||
@@ -4758,7 +4760,7 @@ msgstr "Enviado {0}"
|
||||
|
||||
#: frontend/src/components/BatchCourses.vue:150
|
||||
#: frontend/src/components/BatchOverlay.vue:135
|
||||
#: frontend/src/components/BatchStudents.vue:157
|
||||
#: frontend/src/components/BatchStudents.vue:192
|
||||
#: frontend/src/components/CourseCardOverlay.vue:161
|
||||
#: frontend/src/components/Modals/AnnouncementModal.vue:99
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:73
|
||||
@@ -4769,7 +4771,7 @@ msgstr "Enviado {0}"
|
||||
#: frontend/src/components/Modals/Event.vue:310
|
||||
#: frontend/src/components/Modals/Question.vue:264
|
||||
#: frontend/src/components/Modals/Question.vue:315
|
||||
#: frontend/src/pages/CourseForm.vue:460 frontend/src/pages/ProgramForm.vue:229
|
||||
#: frontend/src/pages/CourseForm.vue:461 frontend/src/pages/ProgramForm.vue:229
|
||||
#: frontend/src/pages/ProgramForm.vue:251
|
||||
#: frontend/src/pages/ProgramForm.vue:272
|
||||
#: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:343
|
||||
@@ -4791,7 +4793,7 @@ msgstr "Resumen"
|
||||
msgid "Sunday"
|
||||
msgstr "Domingo"
|
||||
|
||||
#: lms/lms/api.py:951
|
||||
#: lms/lms/api.py:952
|
||||
msgid "Suspicious pattern found in {0}: {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -4946,7 +4948,7 @@ msgstr ""
|
||||
msgid "There are no seats available in this batch."
|
||||
msgstr "No hay asientos disponibles en este lote."
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:67
|
||||
#: frontend/src/components/BatchStudents.vue:86
|
||||
msgid "There are no students in this batch."
|
||||
msgstr "No hay estudiantes en este lote."
|
||||
|
||||
@@ -4954,7 +4956,7 @@ msgstr "No hay estudiantes en este lote."
|
||||
msgid "There are no {0} on this site."
|
||||
msgstr "No hay {0} en este sitio."
|
||||
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:41
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:42
|
||||
msgid "There has been an update on your submission. You have got a score of {0} for the quiz {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -4977,7 +4979,7 @@ msgstr "Este certificado no caduca"
|
||||
msgid "This course has:"
|
||||
msgstr "Este curso tiene:"
|
||||
|
||||
#: lms/lms/utils.py:1582
|
||||
#: lms/lms/utils.py:1595
|
||||
msgid "This course is free."
|
||||
msgstr "Este curso es gratuito."
|
||||
|
||||
@@ -5083,7 +5085,7 @@ msgstr "Horarios:"
|
||||
#: frontend/src/pages/BatchForm.vue:20 frontend/src/pages/CourseForm.vue:32
|
||||
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/ProgramForm.vue:11
|
||||
#: frontend/src/pages/Programs.vue:118 frontend/src/pages/QuizForm.vue:48
|
||||
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
|
||||
#: frontend/src/pages/Quizzes.vue:116 lms/lms/doctype/cohort/cohort.json
|
||||
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
|
||||
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json
|
||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||
@@ -5119,7 +5121,7 @@ msgstr "A"
|
||||
msgid "To Date"
|
||||
msgstr "Hasta la fecha"
|
||||
|
||||
#: lms/lms/utils.py:1593
|
||||
#: lms/lms/utils.py:1606
|
||||
msgid "To join this batch, please contact the Administrator."
|
||||
msgstr "Para unirse a este lote, comuníquese con el Administrador."
|
||||
|
||||
@@ -5136,7 +5138,7 @@ msgid "Total"
|
||||
msgstr "Total"
|
||||
|
||||
#. Label of the total_marks (Int) field in DocType 'LMS Quiz'
|
||||
#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:119
|
||||
#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:121
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
msgid "Total Marks"
|
||||
msgstr "Marcas totales"
|
||||
@@ -5537,11 +5539,11 @@ msgstr "Te has inscrito en este grupo"
|
||||
msgid "You have been enrolled in this course"
|
||||
msgstr "Te has inscrito en este curso"
|
||||
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:38
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:39
|
||||
msgid "You have got a score of {0} for the quiz {1}"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Quizzes.vue:60
|
||||
#: frontend/src/pages/Quizzes.vue:65
|
||||
msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: frappe\n"
|
||||
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
||||
"POT-Creation-Date: 2024-12-06 16:04+0000\n"
|
||||
"PO-Revision-Date: 2024-12-17 00:07\n"
|
||||
"POT-Creation-Date: 2024-12-20 16:04+0000\n"
|
||||
"PO-Revision-Date: 2024-12-25 02:17\n"
|
||||
"Last-Translator: jannat@frappe.io\n"
|
||||
"Language-Team: Persian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -101,7 +101,7 @@ msgstr "فعال"
|
||||
|
||||
#: frontend/src/components/Assessments.vue:11
|
||||
#: frontend/src/components/BatchCourses.vue:11
|
||||
#: frontend/src/components/BatchStudents.vue:6
|
||||
#: frontend/src/components/BatchStudents.vue:10
|
||||
#: frontend/src/components/Categories.vue:26
|
||||
#: frontend/src/components/LiveClass.vue:11
|
||||
#: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30
|
||||
@@ -143,6 +143,10 @@ msgstr ""
|
||||
msgid "Add a course"
|
||||
msgstr "دوره را اضافه کنید"
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:136
|
||||
msgid "Add a keyword and then press enter"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/OnboardingBanner.vue:73
|
||||
msgid "Add a lesson"
|
||||
msgstr ""
|
||||
@@ -1231,7 +1235,7 @@ msgstr ""
|
||||
msgid "Course already added to the batch."
|
||||
msgstr "دوره قبلاً به دسته اضافه شده است."
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:460
|
||||
#: frontend/src/pages/CourseForm.vue:461
|
||||
msgid "Course deleted successfully"
|
||||
msgstr "دوره با موفقیت حذف شد"
|
||||
|
||||
@@ -1406,7 +1410,7 @@ msgstr "نوع مدرک"
|
||||
|
||||
#: frontend/src/components/CourseOutline.vue:235
|
||||
#: frontend/src/components/CourseOutline.vue:293
|
||||
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:473
|
||||
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:474
|
||||
msgid "Delete"
|
||||
msgstr "حذف"
|
||||
|
||||
@@ -1414,7 +1418,7 @@ msgstr "حذف"
|
||||
msgid "Delete Chapter"
|
||||
msgstr "حذف فصل"
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:467
|
||||
#: frontend/src/pages/CourseForm.vue:468
|
||||
msgid "Delete Course"
|
||||
msgstr "حذف دوره"
|
||||
|
||||
@@ -1426,7 +1430,7 @@ msgstr "این فصل حذف شود؟"
|
||||
msgid "Delete this lesson?"
|
||||
msgstr "این درس حذف شود؟"
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:468
|
||||
#: frontend/src/pages/CourseForm.vue:469
|
||||
msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?"
|
||||
msgstr ""
|
||||
|
||||
@@ -1702,7 +1706,7 @@ msgstr ""
|
||||
msgid "Enrollment Count"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1702
|
||||
#: lms/lms/utils.py:1715
|
||||
msgid "Enrollment Failed"
|
||||
msgstr ""
|
||||
|
||||
@@ -1738,6 +1742,7 @@ msgstr "پاسخ صحیح را وارد کنید"
|
||||
#: frontend/src/components/Modals/Question.vue:249
|
||||
#: frontend/src/components/Modals/Question.vue:269
|
||||
#: frontend/src/components/Modals/Question.vue:326
|
||||
#: frontend/src/components/Modals/StudentModal.vue:69
|
||||
#: frontend/src/components/SettingDetails.vue:62
|
||||
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350
|
||||
#: frontend/src/pages/QuizForm.vue:365
|
||||
@@ -2467,10 +2472,6 @@ msgstr ""
|
||||
msgid "Join URL"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:136
|
||||
msgid "Keywords for the course"
|
||||
msgstr "کلمات کلیدی برای دوره"
|
||||
|
||||
#. Name of a Workspace
|
||||
#: lms/lms/workspace/lms/lms.json
|
||||
msgid "LMS"
|
||||
@@ -2792,7 +2793,7 @@ msgstr ""
|
||||
msgid "Links"
|
||||
msgstr "پیوندها"
|
||||
|
||||
#: frontend/src/pages/Quizzes.vue:147
|
||||
#: frontend/src/pages/Quizzes.vue:149
|
||||
msgid "List of quizzes"
|
||||
msgstr ""
|
||||
|
||||
@@ -2812,7 +2813,9 @@ msgstr "کلاس زنده"
|
||||
msgid "LiveCode URL"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Members.vue:95
|
||||
#: frontend/src/components/Members.vue:106
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:39
|
||||
#: frontend/src/pages/Quizzes.vue:51
|
||||
msgid "Load More"
|
||||
msgstr "بارگذاری بیشتر"
|
||||
|
||||
@@ -2907,7 +2910,7 @@ msgstr "علامتگذاری به عنوان خوانده شد"
|
||||
msgid "Marks"
|
||||
msgstr "نمرات"
|
||||
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:23
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:24
|
||||
msgid "Marks for question number {0} cannot be greater than the marks allotted for that question."
|
||||
msgstr ""
|
||||
|
||||
@@ -2957,7 +2960,7 @@ msgstr "متوسط:"
|
||||
#. Label of the member (Link) field in DocType 'LMS Program Member'
|
||||
#. Label of the member (Link) field in DocType 'LMS Quiz Submission'
|
||||
#: frontend/src/pages/QuizSubmission.vue:31
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:77
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:86
|
||||
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
|
||||
#: lms/lms/doctype/exercise_submission/exercise_submission.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
@@ -3230,7 +3233,7 @@ msgstr "بعد"
|
||||
msgid "Next Question"
|
||||
msgstr "سؤال بعدی"
|
||||
|
||||
#: frontend/src/components/Assessments.vue:63 lms/templates/assessments.html:58
|
||||
#: frontend/src/components/Assessments.vue:66 lms/templates/assessments.html:58
|
||||
msgid "No Assessments"
|
||||
msgstr ""
|
||||
|
||||
@@ -3291,7 +3294,7 @@ msgstr ""
|
||||
msgid "No programs found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Quizzes.vue:56
|
||||
#: frontend/src/pages/Quizzes.vue:61
|
||||
msgid "No quizzes found"
|
||||
msgstr ""
|
||||
|
||||
@@ -3407,7 +3410,7 @@ msgstr ""
|
||||
msgid "Only files of type {0} will be accepted."
|
||||
msgstr "فقط فایل هایی از نوع {0} پذیرفته می شوند."
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:497 frontend/src/utils/index.js:520
|
||||
#: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:527
|
||||
msgid "Only image file is allowed."
|
||||
msgstr ""
|
||||
|
||||
@@ -3558,7 +3561,7 @@ msgstr ""
|
||||
|
||||
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz'
|
||||
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission'
|
||||
#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:125
|
||||
#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:127
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
msgid "Passing Percentage"
|
||||
@@ -3653,7 +3656,7 @@ msgstr "انتظار"
|
||||
|
||||
#. Label of the percentage (Int) field in DocType 'LMS Quiz Submission'
|
||||
#: frontend/src/pages/QuizSubmission.vue:44
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:93
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:97
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
msgid "Percentage"
|
||||
msgstr "درصد"
|
||||
@@ -3687,7 +3690,7 @@ msgstr "لطفا ایمیل خود را برای تایید بررسی کنید"
|
||||
msgid "Please click on the following button to set your new password"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1824 lms/lms/utils.py:1828
|
||||
#: lms/lms/utils.py:1837 lms/lms/utils.py:1841
|
||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||
msgstr ""
|
||||
|
||||
@@ -4040,8 +4043,7 @@ msgstr ""
|
||||
|
||||
#. Label of the quiz (Link) field in DocType 'LMS Quiz Submission'
|
||||
#. Label of a Link in the LMS Workspace
|
||||
#: frontend/src/pages/QuizSubmission.vue:26
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:82 frontend/src/utils/quiz.js:24
|
||||
#: frontend/src/pages/QuizSubmission.vue:26 frontend/src/utils/quiz.js:24
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/lms/workspace/lms/lms.json
|
||||
msgid "Quiz"
|
||||
@@ -4059,7 +4061,7 @@ msgid "Quiz Submission"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizSubmission.vue:122
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:102
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:106
|
||||
msgid "Quiz Submissions"
|
||||
msgstr ""
|
||||
|
||||
@@ -4089,8 +4091,8 @@ msgstr ""
|
||||
msgid "Quiz will appear at the bottom of the lesson."
|
||||
msgstr "تکلیف زیر درس نشان داده می شود."
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:442 frontend/src/pages/Quizzes.vue:136
|
||||
#: frontend/src/pages/Quizzes.vue:146
|
||||
#: frontend/src/pages/QuizForm.vue:442 frontend/src/pages/Quizzes.vue:138
|
||||
#: frontend/src/pages/Quizzes.vue:148
|
||||
msgid "Quizzes"
|
||||
msgstr ""
|
||||
|
||||
@@ -4328,7 +4330,7 @@ msgstr "محدوده"
|
||||
|
||||
#. Label of the score (Int) field in DocType 'LMS Quiz Submission'
|
||||
#: frontend/src/pages/QuizSubmission.vue:39
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:87
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:91
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/templates/quiz/quiz.html:148
|
||||
msgid "Score"
|
||||
@@ -4700,13 +4702,13 @@ msgstr "دانشآموز {0} قبلاً به این دسته اضافه شد
|
||||
|
||||
#. Label of the students (Table) field in DocType 'LMS Batch'
|
||||
#. Label of the show_students (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/components/BatchStudents.vue:9
|
||||
#: frontend/src/components/BatchStudents.vue:4
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Students"
|
||||
msgstr "دانشآموزان"
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:157
|
||||
#: frontend/src/components/BatchStudents.vue:192
|
||||
msgid "Students deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -4758,7 +4760,7 @@ msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchCourses.vue:150
|
||||
#: frontend/src/components/BatchOverlay.vue:135
|
||||
#: frontend/src/components/BatchStudents.vue:157
|
||||
#: frontend/src/components/BatchStudents.vue:192
|
||||
#: frontend/src/components/CourseCardOverlay.vue:161
|
||||
#: frontend/src/components/Modals/AnnouncementModal.vue:99
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:73
|
||||
@@ -4769,7 +4771,7 @@ msgstr ""
|
||||
#: frontend/src/components/Modals/Event.vue:310
|
||||
#: frontend/src/components/Modals/Question.vue:264
|
||||
#: frontend/src/components/Modals/Question.vue:315
|
||||
#: frontend/src/pages/CourseForm.vue:460 frontend/src/pages/ProgramForm.vue:229
|
||||
#: frontend/src/pages/CourseForm.vue:461 frontend/src/pages/ProgramForm.vue:229
|
||||
#: frontend/src/pages/ProgramForm.vue:251
|
||||
#: frontend/src/pages/ProgramForm.vue:272
|
||||
#: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:343
|
||||
@@ -4791,7 +4793,7 @@ msgstr "خلاصه"
|
||||
msgid "Sunday"
|
||||
msgstr "یکشنبه"
|
||||
|
||||
#: lms/lms/api.py:951
|
||||
#: lms/lms/api.py:952
|
||||
msgid "Suspicious pattern found in {0}: {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -4946,7 +4948,7 @@ msgstr ""
|
||||
msgid "There are no seats available in this batch."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:67
|
||||
#: frontend/src/components/BatchStudents.vue:86
|
||||
msgid "There are no students in this batch."
|
||||
msgstr "هیچ دانشآموزی در این گروه وجود ندارد."
|
||||
|
||||
@@ -4954,7 +4956,7 @@ msgstr "هیچ دانشآموزی در این گروه وجود ندارد."
|
||||
msgid "There are no {0} on this site."
|
||||
msgstr "هیچ {0} در این سایت وجود ندارد."
|
||||
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:41
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:42
|
||||
msgid "There has been an update on your submission. You have got a score of {0} for the quiz {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -4977,7 +4979,7 @@ msgstr ""
|
||||
msgid "This course has:"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1582
|
||||
#: lms/lms/utils.py:1595
|
||||
msgid "This course is free."
|
||||
msgstr ""
|
||||
|
||||
@@ -5083,7 +5085,7 @@ msgstr ""
|
||||
#: frontend/src/pages/BatchForm.vue:20 frontend/src/pages/CourseForm.vue:32
|
||||
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/ProgramForm.vue:11
|
||||
#: frontend/src/pages/Programs.vue:118 frontend/src/pages/QuizForm.vue:48
|
||||
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
|
||||
#: frontend/src/pages/Quizzes.vue:116 lms/lms/doctype/cohort/cohort.json
|
||||
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
|
||||
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json
|
||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||
@@ -5119,7 +5121,7 @@ msgstr "به"
|
||||
msgid "To Date"
|
||||
msgstr "تا تاریخ"
|
||||
|
||||
#: lms/lms/utils.py:1593
|
||||
#: lms/lms/utils.py:1606
|
||||
msgid "To join this batch, please contact the Administrator."
|
||||
msgstr ""
|
||||
|
||||
@@ -5136,7 +5138,7 @@ msgid "Total"
|
||||
msgstr "جمع"
|
||||
|
||||
#. Label of the total_marks (Int) field in DocType 'LMS Quiz'
|
||||
#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:119
|
||||
#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:121
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
msgid "Total Marks"
|
||||
msgstr ""
|
||||
@@ -5537,11 +5539,11 @@ msgstr ""
|
||||
msgid "You have been enrolled in this course"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:38
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:39
|
||||
msgid "You have got a score of {0} for the quiz {1}"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Quizzes.vue:60
|
||||
#: frontend/src/pages/Quizzes.vue:65
|
||||
msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: frappe\n"
|
||||
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
||||
"POT-Creation-Date: 2024-12-06 16:04+0000\n"
|
||||
"PO-Revision-Date: 2024-12-09 23:30\n"
|
||||
"POT-Creation-Date: 2024-12-20 16:04+0000\n"
|
||||
"PO-Revision-Date: 2024-12-25 02:17\n"
|
||||
"Last-Translator: jannat@frappe.io\n"
|
||||
"Language-Team: French\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -101,7 +101,7 @@ msgstr "actif"
|
||||
|
||||
#: frontend/src/components/Assessments.vue:11
|
||||
#: frontend/src/components/BatchCourses.vue:11
|
||||
#: frontend/src/components/BatchStudents.vue:6
|
||||
#: frontend/src/components/BatchStudents.vue:10
|
||||
#: frontend/src/components/Categories.vue:26
|
||||
#: frontend/src/components/LiveClass.vue:11
|
||||
#: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30
|
||||
@@ -143,6 +143,10 @@ msgstr ""
|
||||
msgid "Add a course"
|
||||
msgstr "Ajouter un cours"
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:136
|
||||
msgid "Add a keyword and then press enter"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/OnboardingBanner.vue:73
|
||||
msgid "Add a lesson"
|
||||
msgstr ""
|
||||
@@ -1231,7 +1235,7 @@ msgstr ""
|
||||
msgid "Course already added to the batch."
|
||||
msgstr "Cours déjà ajouté au lot."
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:460
|
||||
#: frontend/src/pages/CourseForm.vue:461
|
||||
msgid "Course deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -1406,7 +1410,7 @@ msgstr "Type de diplôme"
|
||||
|
||||
#: frontend/src/components/CourseOutline.vue:235
|
||||
#: frontend/src/components/CourseOutline.vue:293
|
||||
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:473
|
||||
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:474
|
||||
msgid "Delete"
|
||||
msgstr "Supprimer"
|
||||
|
||||
@@ -1414,7 +1418,7 @@ msgstr "Supprimer"
|
||||
msgid "Delete Chapter"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:467
|
||||
#: frontend/src/pages/CourseForm.vue:468
|
||||
msgid "Delete Course"
|
||||
msgstr ""
|
||||
|
||||
@@ -1426,7 +1430,7 @@ msgstr ""
|
||||
msgid "Delete this lesson?"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:468
|
||||
#: frontend/src/pages/CourseForm.vue:469
|
||||
msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?"
|
||||
msgstr ""
|
||||
|
||||
@@ -1702,7 +1706,7 @@ msgstr ""
|
||||
msgid "Enrollment Count"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1702
|
||||
#: lms/lms/utils.py:1715
|
||||
msgid "Enrollment Failed"
|
||||
msgstr ""
|
||||
|
||||
@@ -1738,6 +1742,7 @@ msgstr ""
|
||||
#: frontend/src/components/Modals/Question.vue:249
|
||||
#: frontend/src/components/Modals/Question.vue:269
|
||||
#: frontend/src/components/Modals/Question.vue:326
|
||||
#: frontend/src/components/Modals/StudentModal.vue:69
|
||||
#: frontend/src/components/SettingDetails.vue:62
|
||||
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350
|
||||
#: frontend/src/pages/QuizForm.vue:365
|
||||
@@ -2467,10 +2472,6 @@ msgstr ""
|
||||
msgid "Join URL"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:136
|
||||
msgid "Keywords for the course"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a Workspace
|
||||
#: lms/lms/workspace/lms/lms.json
|
||||
msgid "LMS"
|
||||
@@ -2792,7 +2793,7 @@ msgstr ""
|
||||
msgid "Links"
|
||||
msgstr "Liens"
|
||||
|
||||
#: frontend/src/pages/Quizzes.vue:147
|
||||
#: frontend/src/pages/Quizzes.vue:149
|
||||
msgid "List of quizzes"
|
||||
msgstr ""
|
||||
|
||||
@@ -2812,7 +2813,9 @@ msgstr ""
|
||||
msgid "LiveCode URL"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Members.vue:95
|
||||
#: frontend/src/components/Members.vue:106
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:39
|
||||
#: frontend/src/pages/Quizzes.vue:51
|
||||
msgid "Load More"
|
||||
msgstr "Charger plus"
|
||||
|
||||
@@ -2907,7 +2910,7 @@ msgstr ""
|
||||
msgid "Marks"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:23
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:24
|
||||
msgid "Marks for question number {0} cannot be greater than the marks allotted for that question."
|
||||
msgstr ""
|
||||
|
||||
@@ -2957,7 +2960,7 @@ msgstr "Moyen:"
|
||||
#. Label of the member (Link) field in DocType 'LMS Program Member'
|
||||
#. Label of the member (Link) field in DocType 'LMS Quiz Submission'
|
||||
#: frontend/src/pages/QuizSubmission.vue:31
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:77
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:86
|
||||
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
|
||||
#: lms/lms/doctype/exercise_submission/exercise_submission.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
@@ -3230,7 +3233,7 @@ msgstr "Suivant"
|
||||
msgid "Next Question"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Assessments.vue:63 lms/templates/assessments.html:58
|
||||
#: frontend/src/components/Assessments.vue:66 lms/templates/assessments.html:58
|
||||
msgid "No Assessments"
|
||||
msgstr ""
|
||||
|
||||
@@ -3291,7 +3294,7 @@ msgstr ""
|
||||
msgid "No programs found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Quizzes.vue:56
|
||||
#: frontend/src/pages/Quizzes.vue:61
|
||||
msgid "No quizzes found"
|
||||
msgstr ""
|
||||
|
||||
@@ -3407,7 +3410,7 @@ msgstr ""
|
||||
msgid "Only files of type {0} will be accepted."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:497 frontend/src/utils/index.js:520
|
||||
#: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:527
|
||||
msgid "Only image file is allowed."
|
||||
msgstr ""
|
||||
|
||||
@@ -3558,7 +3561,7 @@ msgstr ""
|
||||
|
||||
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz'
|
||||
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission'
|
||||
#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:125
|
||||
#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:127
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
msgid "Passing Percentage"
|
||||
@@ -3653,7 +3656,7 @@ msgstr "En Attente"
|
||||
|
||||
#. Label of the percentage (Int) field in DocType 'LMS Quiz Submission'
|
||||
#: frontend/src/pages/QuizSubmission.vue:44
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:93
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:97
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
msgid "Percentage"
|
||||
msgstr "Pourcentage"
|
||||
@@ -3687,7 +3690,7 @@ msgstr "Veuillez vérifier votre email pour validation"
|
||||
msgid "Please click on the following button to set your new password"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1824 lms/lms/utils.py:1828
|
||||
#: lms/lms/utils.py:1837 lms/lms/utils.py:1841
|
||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||
msgstr ""
|
||||
|
||||
@@ -4040,8 +4043,7 @@ msgstr ""
|
||||
|
||||
#. Label of the quiz (Link) field in DocType 'LMS Quiz Submission'
|
||||
#. Label of a Link in the LMS Workspace
|
||||
#: frontend/src/pages/QuizSubmission.vue:26
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:82 frontend/src/utils/quiz.js:24
|
||||
#: frontend/src/pages/QuizSubmission.vue:26 frontend/src/utils/quiz.js:24
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/lms/workspace/lms/lms.json
|
||||
msgid "Quiz"
|
||||
@@ -4059,7 +4061,7 @@ msgid "Quiz Submission"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizSubmission.vue:122
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:102
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:106
|
||||
msgid "Quiz Submissions"
|
||||
msgstr ""
|
||||
|
||||
@@ -4089,8 +4091,8 @@ msgstr ""
|
||||
msgid "Quiz will appear at the bottom of the lesson."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:442 frontend/src/pages/Quizzes.vue:136
|
||||
#: frontend/src/pages/Quizzes.vue:146
|
||||
#: frontend/src/pages/QuizForm.vue:442 frontend/src/pages/Quizzes.vue:138
|
||||
#: frontend/src/pages/Quizzes.vue:148
|
||||
msgid "Quizzes"
|
||||
msgstr ""
|
||||
|
||||
@@ -4328,7 +4330,7 @@ msgstr ""
|
||||
|
||||
#. Label of the score (Int) field in DocType 'LMS Quiz Submission'
|
||||
#: frontend/src/pages/QuizSubmission.vue:39
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:87
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:91
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/templates/quiz/quiz.html:148
|
||||
msgid "Score"
|
||||
@@ -4700,13 +4702,13 @@ msgstr ""
|
||||
|
||||
#. Label of the students (Table) field in DocType 'LMS Batch'
|
||||
#. Label of the show_students (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/components/BatchStudents.vue:9
|
||||
#: frontend/src/components/BatchStudents.vue:4
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Students"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:157
|
||||
#: frontend/src/components/BatchStudents.vue:192
|
||||
msgid "Students deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -4758,7 +4760,7 @@ msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchCourses.vue:150
|
||||
#: frontend/src/components/BatchOverlay.vue:135
|
||||
#: frontend/src/components/BatchStudents.vue:157
|
||||
#: frontend/src/components/BatchStudents.vue:192
|
||||
#: frontend/src/components/CourseCardOverlay.vue:161
|
||||
#: frontend/src/components/Modals/AnnouncementModal.vue:99
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:73
|
||||
@@ -4769,7 +4771,7 @@ msgstr ""
|
||||
#: frontend/src/components/Modals/Event.vue:310
|
||||
#: frontend/src/components/Modals/Question.vue:264
|
||||
#: frontend/src/components/Modals/Question.vue:315
|
||||
#: frontend/src/pages/CourseForm.vue:460 frontend/src/pages/ProgramForm.vue:229
|
||||
#: frontend/src/pages/CourseForm.vue:461 frontend/src/pages/ProgramForm.vue:229
|
||||
#: frontend/src/pages/ProgramForm.vue:251
|
||||
#: frontend/src/pages/ProgramForm.vue:272
|
||||
#: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:343
|
||||
@@ -4791,7 +4793,7 @@ msgstr "Résumé"
|
||||
msgid "Sunday"
|
||||
msgstr "Dimanche"
|
||||
|
||||
#: lms/lms/api.py:951
|
||||
#: lms/lms/api.py:952
|
||||
msgid "Suspicious pattern found in {0}: {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -4946,7 +4948,7 @@ msgstr ""
|
||||
msgid "There are no seats available in this batch."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:67
|
||||
#: frontend/src/components/BatchStudents.vue:86
|
||||
msgid "There are no students in this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -4954,7 +4956,7 @@ msgstr ""
|
||||
msgid "There are no {0} on this site."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:41
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:42
|
||||
msgid "There has been an update on your submission. You have got a score of {0} for the quiz {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -4977,7 +4979,7 @@ msgstr ""
|
||||
msgid "This course has:"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1582
|
||||
#: lms/lms/utils.py:1595
|
||||
msgid "This course is free."
|
||||
msgstr ""
|
||||
|
||||
@@ -5083,7 +5085,7 @@ msgstr ""
|
||||
#: frontend/src/pages/BatchForm.vue:20 frontend/src/pages/CourseForm.vue:32
|
||||
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/ProgramForm.vue:11
|
||||
#: frontend/src/pages/Programs.vue:118 frontend/src/pages/QuizForm.vue:48
|
||||
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
|
||||
#: frontend/src/pages/Quizzes.vue:116 lms/lms/doctype/cohort/cohort.json
|
||||
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
|
||||
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json
|
||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||
@@ -5119,7 +5121,7 @@ msgstr "À"
|
||||
msgid "To Date"
|
||||
msgstr "Jusqu'au"
|
||||
|
||||
#: lms/lms/utils.py:1593
|
||||
#: lms/lms/utils.py:1606
|
||||
msgid "To join this batch, please contact the Administrator."
|
||||
msgstr ""
|
||||
|
||||
@@ -5136,7 +5138,7 @@ msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the total_marks (Int) field in DocType 'LMS Quiz'
|
||||
#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:119
|
||||
#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:121
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
msgid "Total Marks"
|
||||
msgstr ""
|
||||
@@ -5537,11 +5539,11 @@ msgstr ""
|
||||
msgid "You have been enrolled in this course"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:38
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:39
|
||||
msgid "You have got a score of {0} for the quiz {1}"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Quizzes.vue:60
|
||||
#: frontend/src/pages/Quizzes.vue:65
|
||||
msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: frappe\n"
|
||||
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
||||
"POT-Creation-Date: 2024-12-06 16:04+0000\n"
|
||||
"PO-Revision-Date: 2024-12-09 23:31\n"
|
||||
"POT-Creation-Date: 2024-12-20 16:04+0000\n"
|
||||
"PO-Revision-Date: 2024-12-25 02:17\n"
|
||||
"Last-Translator: jannat@frappe.io\n"
|
||||
"Language-Team: Hungarian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -101,7 +101,7 @@ msgstr ""
|
||||
|
||||
#: frontend/src/components/Assessments.vue:11
|
||||
#: frontend/src/components/BatchCourses.vue:11
|
||||
#: frontend/src/components/BatchStudents.vue:6
|
||||
#: frontend/src/components/BatchStudents.vue:10
|
||||
#: frontend/src/components/Categories.vue:26
|
||||
#: frontend/src/components/LiveClass.vue:11
|
||||
#: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30
|
||||
@@ -143,6 +143,10 @@ msgstr ""
|
||||
msgid "Add a course"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:136
|
||||
msgid "Add a keyword and then press enter"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/OnboardingBanner.vue:73
|
||||
msgid "Add a lesson"
|
||||
msgstr ""
|
||||
@@ -1231,7 +1235,7 @@ msgstr ""
|
||||
msgid "Course already added to the batch."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:460
|
||||
#: frontend/src/pages/CourseForm.vue:461
|
||||
msgid "Course deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -1406,7 +1410,7 @@ msgstr ""
|
||||
|
||||
#: frontend/src/components/CourseOutline.vue:235
|
||||
#: frontend/src/components/CourseOutline.vue:293
|
||||
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:473
|
||||
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:474
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
@@ -1414,7 +1418,7 @@ msgstr ""
|
||||
msgid "Delete Chapter"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:467
|
||||
#: frontend/src/pages/CourseForm.vue:468
|
||||
msgid "Delete Course"
|
||||
msgstr ""
|
||||
|
||||
@@ -1426,7 +1430,7 @@ msgstr ""
|
||||
msgid "Delete this lesson?"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:468
|
||||
#: frontend/src/pages/CourseForm.vue:469
|
||||
msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?"
|
||||
msgstr ""
|
||||
|
||||
@@ -1702,7 +1706,7 @@ msgstr ""
|
||||
msgid "Enrollment Count"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1702
|
||||
#: lms/lms/utils.py:1715
|
||||
msgid "Enrollment Failed"
|
||||
msgstr ""
|
||||
|
||||
@@ -1738,6 +1742,7 @@ msgstr ""
|
||||
#: frontend/src/components/Modals/Question.vue:249
|
||||
#: frontend/src/components/Modals/Question.vue:269
|
||||
#: frontend/src/components/Modals/Question.vue:326
|
||||
#: frontend/src/components/Modals/StudentModal.vue:69
|
||||
#: frontend/src/components/SettingDetails.vue:62
|
||||
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350
|
||||
#: frontend/src/pages/QuizForm.vue:365
|
||||
@@ -2467,10 +2472,6 @@ msgstr ""
|
||||
msgid "Join URL"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:136
|
||||
msgid "Keywords for the course"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a Workspace
|
||||
#: lms/lms/workspace/lms/lms.json
|
||||
msgid "LMS"
|
||||
@@ -2792,7 +2793,7 @@ msgstr ""
|
||||
msgid "Links"
|
||||
msgstr "Összekapcsolások"
|
||||
|
||||
#: frontend/src/pages/Quizzes.vue:147
|
||||
#: frontend/src/pages/Quizzes.vue:149
|
||||
msgid "List of quizzes"
|
||||
msgstr ""
|
||||
|
||||
@@ -2812,7 +2813,9 @@ msgstr ""
|
||||
msgid "LiveCode URL"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Members.vue:95
|
||||
#: frontend/src/components/Members.vue:106
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:39
|
||||
#: frontend/src/pages/Quizzes.vue:51
|
||||
msgid "Load More"
|
||||
msgstr "Töltsön be többet"
|
||||
|
||||
@@ -2907,7 +2910,7 @@ msgstr ""
|
||||
msgid "Marks"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:23
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:24
|
||||
msgid "Marks for question number {0} cannot be greater than the marks allotted for that question."
|
||||
msgstr ""
|
||||
|
||||
@@ -2957,7 +2960,7 @@ msgstr "Közepes:"
|
||||
#. Label of the member (Link) field in DocType 'LMS Program Member'
|
||||
#. Label of the member (Link) field in DocType 'LMS Quiz Submission'
|
||||
#: frontend/src/pages/QuizSubmission.vue:31
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:77
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:86
|
||||
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
|
||||
#: lms/lms/doctype/exercise_submission/exercise_submission.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
@@ -3230,7 +3233,7 @@ msgstr ""
|
||||
msgid "Next Question"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Assessments.vue:63 lms/templates/assessments.html:58
|
||||
#: frontend/src/components/Assessments.vue:66 lms/templates/assessments.html:58
|
||||
msgid "No Assessments"
|
||||
msgstr ""
|
||||
|
||||
@@ -3291,7 +3294,7 @@ msgstr ""
|
||||
msgid "No programs found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Quizzes.vue:56
|
||||
#: frontend/src/pages/Quizzes.vue:61
|
||||
msgid "No quizzes found"
|
||||
msgstr ""
|
||||
|
||||
@@ -3407,7 +3410,7 @@ msgstr ""
|
||||
msgid "Only files of type {0} will be accepted."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:497 frontend/src/utils/index.js:520
|
||||
#: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:527
|
||||
msgid "Only image file is allowed."
|
||||
msgstr ""
|
||||
|
||||
@@ -3558,7 +3561,7 @@ msgstr ""
|
||||
|
||||
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz'
|
||||
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission'
|
||||
#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:125
|
||||
#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:127
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
msgid "Passing Percentage"
|
||||
@@ -3653,7 +3656,7 @@ msgstr ""
|
||||
|
||||
#. Label of the percentage (Int) field in DocType 'LMS Quiz Submission'
|
||||
#: frontend/src/pages/QuizSubmission.vue:44
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:93
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:97
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
msgid "Percentage"
|
||||
msgstr ""
|
||||
@@ -3687,7 +3690,7 @@ msgstr "Kérjük, ellenőrizze e-mail a vizsgálathoz"
|
||||
msgid "Please click on the following button to set your new password"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1824 lms/lms/utils.py:1828
|
||||
#: lms/lms/utils.py:1837 lms/lms/utils.py:1841
|
||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||
msgstr ""
|
||||
|
||||
@@ -4040,8 +4043,7 @@ msgstr ""
|
||||
|
||||
#. Label of the quiz (Link) field in DocType 'LMS Quiz Submission'
|
||||
#. Label of a Link in the LMS Workspace
|
||||
#: frontend/src/pages/QuizSubmission.vue:26
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:82 frontend/src/utils/quiz.js:24
|
||||
#: frontend/src/pages/QuizSubmission.vue:26 frontend/src/utils/quiz.js:24
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/lms/workspace/lms/lms.json
|
||||
msgid "Quiz"
|
||||
@@ -4059,7 +4061,7 @@ msgid "Quiz Submission"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizSubmission.vue:122
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:102
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:106
|
||||
msgid "Quiz Submissions"
|
||||
msgstr ""
|
||||
|
||||
@@ -4089,8 +4091,8 @@ msgstr ""
|
||||
msgid "Quiz will appear at the bottom of the lesson."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:442 frontend/src/pages/Quizzes.vue:136
|
||||
#: frontend/src/pages/Quizzes.vue:146
|
||||
#: frontend/src/pages/QuizForm.vue:442 frontend/src/pages/Quizzes.vue:138
|
||||
#: frontend/src/pages/Quizzes.vue:148
|
||||
msgid "Quizzes"
|
||||
msgstr ""
|
||||
|
||||
@@ -4328,7 +4330,7 @@ msgstr "terület"
|
||||
|
||||
#. Label of the score (Int) field in DocType 'LMS Quiz Submission'
|
||||
#: frontend/src/pages/QuizSubmission.vue:39
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:87
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:91
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/templates/quiz/quiz.html:148
|
||||
msgid "Score"
|
||||
@@ -4700,13 +4702,13 @@ msgstr ""
|
||||
|
||||
#. Label of the students (Table) field in DocType 'LMS Batch'
|
||||
#. Label of the show_students (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/components/BatchStudents.vue:9
|
||||
#: frontend/src/components/BatchStudents.vue:4
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Students"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:157
|
||||
#: frontend/src/components/BatchStudents.vue:192
|
||||
msgid "Students deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -4758,7 +4760,7 @@ msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchCourses.vue:150
|
||||
#: frontend/src/components/BatchOverlay.vue:135
|
||||
#: frontend/src/components/BatchStudents.vue:157
|
||||
#: frontend/src/components/BatchStudents.vue:192
|
||||
#: frontend/src/components/CourseCardOverlay.vue:161
|
||||
#: frontend/src/components/Modals/AnnouncementModal.vue:99
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:73
|
||||
@@ -4769,7 +4771,7 @@ msgstr ""
|
||||
#: frontend/src/components/Modals/Event.vue:310
|
||||
#: frontend/src/components/Modals/Question.vue:264
|
||||
#: frontend/src/components/Modals/Question.vue:315
|
||||
#: frontend/src/pages/CourseForm.vue:460 frontend/src/pages/ProgramForm.vue:229
|
||||
#: frontend/src/pages/CourseForm.vue:461 frontend/src/pages/ProgramForm.vue:229
|
||||
#: frontend/src/pages/ProgramForm.vue:251
|
||||
#: frontend/src/pages/ProgramForm.vue:272
|
||||
#: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:343
|
||||
@@ -4791,7 +4793,7 @@ msgstr "Összefoglalás"
|
||||
msgid "Sunday"
|
||||
msgstr "Vasárnap"
|
||||
|
||||
#: lms/lms/api.py:951
|
||||
#: lms/lms/api.py:952
|
||||
msgid "Suspicious pattern found in {0}: {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -4946,7 +4948,7 @@ msgstr ""
|
||||
msgid "There are no seats available in this batch."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:67
|
||||
#: frontend/src/components/BatchStudents.vue:86
|
||||
msgid "There are no students in this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -4954,7 +4956,7 @@ msgstr ""
|
||||
msgid "There are no {0} on this site."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:41
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:42
|
||||
msgid "There has been an update on your submission. You have got a score of {0} for the quiz {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -4977,7 +4979,7 @@ msgstr ""
|
||||
msgid "This course has:"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1582
|
||||
#: lms/lms/utils.py:1595
|
||||
msgid "This course is free."
|
||||
msgstr ""
|
||||
|
||||
@@ -5083,7 +5085,7 @@ msgstr ""
|
||||
#: frontend/src/pages/BatchForm.vue:20 frontend/src/pages/CourseForm.vue:32
|
||||
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/ProgramForm.vue:11
|
||||
#: frontend/src/pages/Programs.vue:118 frontend/src/pages/QuizForm.vue:48
|
||||
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
|
||||
#: frontend/src/pages/Quizzes.vue:116 lms/lms/doctype/cohort/cohort.json
|
||||
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
|
||||
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json
|
||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||
@@ -5119,7 +5121,7 @@ msgstr ""
|
||||
msgid "To Date"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1593
|
||||
#: lms/lms/utils.py:1606
|
||||
msgid "To join this batch, please contact the Administrator."
|
||||
msgstr ""
|
||||
|
||||
@@ -5136,7 +5138,7 @@ msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the total_marks (Int) field in DocType 'LMS Quiz'
|
||||
#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:119
|
||||
#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:121
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
msgid "Total Marks"
|
||||
msgstr ""
|
||||
@@ -5537,11 +5539,11 @@ msgstr ""
|
||||
msgid "You have been enrolled in this course"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:38
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:39
|
||||
msgid "You have got a score of {0} for the quiz {1}"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Quizzes.vue:60
|
||||
#: frontend/src/pages/Quizzes.vue:65
|
||||
msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Frappe LMS VERSION\n"
|
||||
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
||||
"POT-Creation-Date: 2024-12-13 16:04+0000\n"
|
||||
"PO-Revision-Date: 2024-12-13 16:04+0000\n"
|
||||
"POT-Creation-Date: 2024-12-27 16:04+0000\n"
|
||||
"PO-Revision-Date: 2024-12-27 16:04+0000\n"
|
||||
"Last-Translator: jannat@frappe.io\n"
|
||||
"Language-Team: jannat@frappe.io\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -99,7 +99,7 @@ msgstr ""
|
||||
|
||||
#: frontend/src/components/Assessments.vue:11
|
||||
#: frontend/src/components/BatchCourses.vue:11
|
||||
#: frontend/src/components/BatchStudents.vue:10
|
||||
#: frontend/src/components/BatchStudents.vue:90
|
||||
#: frontend/src/components/Categories.vue:26
|
||||
#: frontend/src/components/LiveClass.vue:11
|
||||
#: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30
|
||||
@@ -141,6 +141,10 @@ msgstr ""
|
||||
msgid "Add a course"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:136
|
||||
msgid "Add a keyword and then press enter"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/OnboardingBanner.vue:73
|
||||
msgid "Add a lesson"
|
||||
msgstr ""
|
||||
@@ -347,6 +351,7 @@ msgstr ""
|
||||
#. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch'
|
||||
#. Label of the assessment (Table) field in DocType 'LMS Batch'
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:27
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:29
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11
|
||||
msgid "Assessment"
|
||||
msgstr ""
|
||||
@@ -372,6 +377,8 @@ msgstr ""
|
||||
|
||||
#. Label of the show_assessments (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/components/Assessments.vue:5
|
||||
#: frontend/src/components/BatchStudents.vue:46
|
||||
#: frontend/src/components/BatchStudents.vue:74
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
#: lms/templates/assessments.html:3
|
||||
msgid "Assessments"
|
||||
@@ -959,6 +966,7 @@ msgid "Company Website"
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Status' (Select) field in DocType 'LMS Course Progress'
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:13
|
||||
#: lms/lms/doctype/lms_course_progress/lms_course_progress.json
|
||||
#: lms/lms/widgets/CourseCard.html:75 lms/templates/reviews.html:48
|
||||
msgid "Complete"
|
||||
@@ -976,6 +984,10 @@ msgstr ""
|
||||
msgid "Completed"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:325
|
||||
msgid "Completed by Students"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:201
|
||||
msgid "Completion Certificate"
|
||||
msgstr ""
|
||||
@@ -1229,7 +1241,7 @@ msgstr ""
|
||||
msgid "Course already added to the batch."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:460
|
||||
#: frontend/src/pages/CourseForm.vue:461
|
||||
msgid "Course deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -1247,6 +1259,9 @@ msgstr ""
|
||||
#. Label of the courses (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/components/BatchCourses.vue:5
|
||||
#: frontend/src/components/BatchOverlay.vue:23
|
||||
#: frontend/src/components/BatchStudents.vue:32
|
||||
#: frontend/src/components/BatchStudents.vue:68
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:61
|
||||
#: frontend/src/pages/BatchDetail.vue:19 frontend/src/pages/BatchDetail.vue:68
|
||||
#: frontend/src/pages/Courses.vue:8 frontend/src/pages/Statistics.vue:19
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
@@ -1404,7 +1419,7 @@ msgstr ""
|
||||
|
||||
#: frontend/src/components/CourseOutline.vue:235
|
||||
#: frontend/src/components/CourseOutline.vue:293
|
||||
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:473
|
||||
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:474
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
@@ -1412,7 +1427,7 @@ msgstr ""
|
||||
msgid "Delete Chapter"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:467
|
||||
#: frontend/src/pages/CourseForm.vue:468
|
||||
msgid "Delete Course"
|
||||
msgstr ""
|
||||
|
||||
@@ -1424,7 +1439,7 @@ msgstr ""
|
||||
msgid "Delete this lesson?"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:468
|
||||
#: frontend/src/pages/CourseForm.vue:469
|
||||
msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?"
|
||||
msgstr ""
|
||||
|
||||
@@ -1700,7 +1715,7 @@ msgstr ""
|
||||
msgid "Enrollment Count"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1715
|
||||
#: lms/lms/utils.py:1720
|
||||
msgid "Enrollment Failed"
|
||||
msgstr ""
|
||||
|
||||
@@ -2466,10 +2481,6 @@ msgstr ""
|
||||
msgid "Join URL"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:136
|
||||
msgid "Keywords for the course"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a Workspace
|
||||
#: lms/lms/workspace/lms/lms.json
|
||||
msgid "LMS"
|
||||
@@ -2791,7 +2802,7 @@ msgstr ""
|
||||
msgid "Links"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Quizzes.vue:147
|
||||
#: frontend/src/pages/Quizzes.vue:149
|
||||
msgid "List of quizzes"
|
||||
msgstr ""
|
||||
|
||||
@@ -2812,6 +2823,8 @@ msgid "LiveCode URL"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Members.vue:106
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:39
|
||||
#: frontend/src/pages/Quizzes.vue:51
|
||||
msgid "Load More"
|
||||
msgstr ""
|
||||
|
||||
@@ -2906,7 +2919,7 @@ msgstr ""
|
||||
msgid "Marks"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:23
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:24
|
||||
msgid "Marks for question number {0} cannot be greater than the marks allotted for that question."
|
||||
msgstr ""
|
||||
|
||||
@@ -2956,7 +2969,7 @@ msgstr ""
|
||||
#. Label of the member (Link) field in DocType 'LMS Program Member'
|
||||
#. Label of the member (Link) field in DocType 'LMS Quiz Submission'
|
||||
#: frontend/src/pages/QuizSubmission.vue:31
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:77
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:86
|
||||
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
|
||||
#: lms/lms/doctype/exercise_submission/exercise_submission.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
@@ -3290,7 +3303,7 @@ msgstr ""
|
||||
msgid "No programs found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Quizzes.vue:56
|
||||
#: frontend/src/pages/Quizzes.vue:61
|
||||
msgid "No quizzes found"
|
||||
msgstr ""
|
||||
|
||||
@@ -3406,7 +3419,7 @@ msgstr ""
|
||||
msgid "Only files of type {0} will be accepted."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:497 frontend/src/utils/index.js:520
|
||||
#: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:527
|
||||
msgid "Only image file is allowed."
|
||||
msgstr ""
|
||||
|
||||
@@ -3557,7 +3570,7 @@ msgstr ""
|
||||
|
||||
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz'
|
||||
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission'
|
||||
#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:125
|
||||
#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:127
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
msgid "Passing Percentage"
|
||||
@@ -3652,7 +3665,7 @@ msgstr ""
|
||||
|
||||
#. Label of the percentage (Int) field in DocType 'LMS Quiz Submission'
|
||||
#: frontend/src/pages/QuizSubmission.vue:44
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:93
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:97
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
msgid "Percentage"
|
||||
msgstr ""
|
||||
@@ -3686,7 +3699,7 @@ msgstr ""
|
||||
msgid "Please click on the following button to set your new password"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1837 lms/lms/utils.py:1841
|
||||
#: lms/lms/utils.py:1842 lms/lms/utils.py:1846
|
||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||
msgstr ""
|
||||
|
||||
@@ -3935,6 +3948,9 @@ msgstr ""
|
||||
|
||||
#. Label of the progress (Float) field in DocType 'LMS Enrollment'
|
||||
#. Label of the progress (Int) field in DocType 'LMS Program Member'
|
||||
#: frontend/src/components/BatchStudents.vue:53
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:32
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:64
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
msgid "Progress"
|
||||
@@ -4039,8 +4055,7 @@ msgstr ""
|
||||
|
||||
#. Label of the quiz (Link) field in DocType 'LMS Quiz Submission'
|
||||
#. Label of a Link in the LMS Workspace
|
||||
#: frontend/src/pages/QuizSubmission.vue:26
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:82 frontend/src/utils/quiz.js:24
|
||||
#: frontend/src/pages/QuizSubmission.vue:26 frontend/src/utils/quiz.js:24
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/lms/workspace/lms/lms.json
|
||||
msgid "Quiz"
|
||||
@@ -4058,7 +4073,7 @@ msgid "Quiz Submission"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizSubmission.vue:122
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:102
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:106
|
||||
msgid "Quiz Submissions"
|
||||
msgstr ""
|
||||
|
||||
@@ -4088,8 +4103,8 @@ msgstr ""
|
||||
msgid "Quiz will appear at the bottom of the lesson."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:442 frontend/src/pages/Quizzes.vue:136
|
||||
#: frontend/src/pages/Quizzes.vue:146
|
||||
#: frontend/src/pages/QuizForm.vue:442 frontend/src/pages/Quizzes.vue:138
|
||||
#: frontend/src/pages/Quizzes.vue:148
|
||||
msgid "Quizzes"
|
||||
msgstr ""
|
||||
|
||||
@@ -4327,7 +4342,7 @@ msgstr ""
|
||||
|
||||
#. Label of the score (Int) field in DocType 'LMS Quiz Submission'
|
||||
#: frontend/src/pages/QuizSubmission.vue:39
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:87
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:91
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/templates/quiz/quiz.html:148
|
||||
msgid "Score"
|
||||
@@ -4628,6 +4643,7 @@ msgstr ""
|
||||
|
||||
#. Label of the tab_4_tab (Tab Break) field in DocType 'LMS Course'
|
||||
#. Label of the statistics (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/components/BatchStudents.vue:5
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:133
|
||||
msgid "Statistics"
|
||||
@@ -4699,13 +4715,14 @@ msgstr ""
|
||||
|
||||
#. Label of the students (Table) field in DocType 'LMS Batch'
|
||||
#. Label of the show_students (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/components/BatchStudents.vue:4
|
||||
#: frontend/src/components/BatchStudents.vue:18
|
||||
#: frontend/src/components/BatchStudents.vue:84
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Students"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:191
|
||||
#: frontend/src/components/BatchStudents.vue:282
|
||||
msgid "Students deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -4757,7 +4774,7 @@ msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchCourses.vue:150
|
||||
#: frontend/src/components/BatchOverlay.vue:135
|
||||
#: frontend/src/components/BatchStudents.vue:191
|
||||
#: frontend/src/components/BatchStudents.vue:282
|
||||
#: frontend/src/components/CourseCardOverlay.vue:161
|
||||
#: frontend/src/components/Modals/AnnouncementModal.vue:99
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:73
|
||||
@@ -4768,7 +4785,7 @@ msgstr ""
|
||||
#: frontend/src/components/Modals/Event.vue:310
|
||||
#: frontend/src/components/Modals/Question.vue:264
|
||||
#: frontend/src/components/Modals/Question.vue:315
|
||||
#: frontend/src/pages/CourseForm.vue:460 frontend/src/pages/ProgramForm.vue:229
|
||||
#: frontend/src/pages/CourseForm.vue:461 frontend/src/pages/ProgramForm.vue:229
|
||||
#: frontend/src/pages/ProgramForm.vue:251
|
||||
#: frontend/src/pages/ProgramForm.vue:272
|
||||
#: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:343
|
||||
@@ -4790,7 +4807,7 @@ msgstr ""
|
||||
msgid "Sunday"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:951
|
||||
#: lms/lms/api.py:952
|
||||
msgid "Suspicious pattern found in {0}: {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -4945,7 +4962,7 @@ msgstr ""
|
||||
msgid "There are no seats available in this batch."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:86
|
||||
#: frontend/src/components/BatchStudents.vue:165
|
||||
msgid "There are no students in this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -4953,7 +4970,7 @@ msgstr ""
|
||||
msgid "There are no {0} on this site."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:41
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:42
|
||||
msgid "There has been an update on your submission. You have got a score of {0} for the quiz {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -4976,7 +4993,7 @@ msgstr ""
|
||||
msgid "This course has:"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1595
|
||||
#: lms/lms/utils.py:1600
|
||||
msgid "This course is free."
|
||||
msgstr ""
|
||||
|
||||
@@ -5082,7 +5099,7 @@ msgstr ""
|
||||
#: frontend/src/pages/BatchForm.vue:20 frontend/src/pages/CourseForm.vue:32
|
||||
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/ProgramForm.vue:11
|
||||
#: frontend/src/pages/Programs.vue:118 frontend/src/pages/QuizForm.vue:48
|
||||
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
|
||||
#: frontend/src/pages/Quizzes.vue:116 lms/lms/doctype/cohort/cohort.json
|
||||
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
|
||||
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json
|
||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||
@@ -5118,7 +5135,7 @@ msgstr ""
|
||||
msgid "To Date"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1606
|
||||
#: lms/lms/utils.py:1611
|
||||
msgid "To join this batch, please contact the Administrator."
|
||||
msgstr ""
|
||||
|
||||
@@ -5135,7 +5152,7 @@ msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the total_marks (Int) field in DocType 'LMS Quiz'
|
||||
#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:119
|
||||
#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:121
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
msgid "Total Marks"
|
||||
msgstr ""
|
||||
@@ -5536,11 +5553,11 @@ msgstr ""
|
||||
msgid "You have been enrolled in this course"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:38
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:39
|
||||
msgid "You have got a score of {0} for the quiz {1}"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Quizzes.vue:60
|
||||
#: frontend/src/pages/Quizzes.vue:65
|
||||
msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: frappe\n"
|
||||
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
||||
"POT-Creation-Date: 2024-12-06 16:04+0000\n"
|
||||
"PO-Revision-Date: 2024-12-09 23:31\n"
|
||||
"POT-Creation-Date: 2024-12-20 16:04+0000\n"
|
||||
"PO-Revision-Date: 2024-12-25 02:17\n"
|
||||
"Last-Translator: jannat@frappe.io\n"
|
||||
"Language-Team: Polish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -101,7 +101,7 @@ msgstr ""
|
||||
|
||||
#: frontend/src/components/Assessments.vue:11
|
||||
#: frontend/src/components/BatchCourses.vue:11
|
||||
#: frontend/src/components/BatchStudents.vue:6
|
||||
#: frontend/src/components/BatchStudents.vue:10
|
||||
#: frontend/src/components/Categories.vue:26
|
||||
#: frontend/src/components/LiveClass.vue:11
|
||||
#: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30
|
||||
@@ -143,6 +143,10 @@ msgstr ""
|
||||
msgid "Add a course"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:136
|
||||
msgid "Add a keyword and then press enter"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/OnboardingBanner.vue:73
|
||||
msgid "Add a lesson"
|
||||
msgstr ""
|
||||
@@ -1231,7 +1235,7 @@ msgstr ""
|
||||
msgid "Course already added to the batch."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:460
|
||||
#: frontend/src/pages/CourseForm.vue:461
|
||||
msgid "Course deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -1406,7 +1410,7 @@ msgstr ""
|
||||
|
||||
#: frontend/src/components/CourseOutline.vue:235
|
||||
#: frontend/src/components/CourseOutline.vue:293
|
||||
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:473
|
||||
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:474
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
@@ -1414,7 +1418,7 @@ msgstr ""
|
||||
msgid "Delete Chapter"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:467
|
||||
#: frontend/src/pages/CourseForm.vue:468
|
||||
msgid "Delete Course"
|
||||
msgstr ""
|
||||
|
||||
@@ -1426,7 +1430,7 @@ msgstr ""
|
||||
msgid "Delete this lesson?"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:468
|
||||
#: frontend/src/pages/CourseForm.vue:469
|
||||
msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?"
|
||||
msgstr ""
|
||||
|
||||
@@ -1702,7 +1706,7 @@ msgstr ""
|
||||
msgid "Enrollment Count"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1702
|
||||
#: lms/lms/utils.py:1715
|
||||
msgid "Enrollment Failed"
|
||||
msgstr ""
|
||||
|
||||
@@ -1738,6 +1742,7 @@ msgstr ""
|
||||
#: frontend/src/components/Modals/Question.vue:249
|
||||
#: frontend/src/components/Modals/Question.vue:269
|
||||
#: frontend/src/components/Modals/Question.vue:326
|
||||
#: frontend/src/components/Modals/StudentModal.vue:69
|
||||
#: frontend/src/components/SettingDetails.vue:62
|
||||
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350
|
||||
#: frontend/src/pages/QuizForm.vue:365
|
||||
@@ -2467,10 +2472,6 @@ msgstr ""
|
||||
msgid "Join URL"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:136
|
||||
msgid "Keywords for the course"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a Workspace
|
||||
#: lms/lms/workspace/lms/lms.json
|
||||
msgid "LMS"
|
||||
@@ -2792,7 +2793,7 @@ msgstr ""
|
||||
msgid "Links"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Quizzes.vue:147
|
||||
#: frontend/src/pages/Quizzes.vue:149
|
||||
msgid "List of quizzes"
|
||||
msgstr ""
|
||||
|
||||
@@ -2812,7 +2813,9 @@ msgstr ""
|
||||
msgid "LiveCode URL"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Members.vue:95
|
||||
#: frontend/src/components/Members.vue:106
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:39
|
||||
#: frontend/src/pages/Quizzes.vue:51
|
||||
msgid "Load More"
|
||||
msgstr ""
|
||||
|
||||
@@ -2907,7 +2910,7 @@ msgstr ""
|
||||
msgid "Marks"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:23
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:24
|
||||
msgid "Marks for question number {0} cannot be greater than the marks allotted for that question."
|
||||
msgstr ""
|
||||
|
||||
@@ -2957,7 +2960,7 @@ msgstr "Średni:"
|
||||
#. Label of the member (Link) field in DocType 'LMS Program Member'
|
||||
#. Label of the member (Link) field in DocType 'LMS Quiz Submission'
|
||||
#: frontend/src/pages/QuizSubmission.vue:31
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:77
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:86
|
||||
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
|
||||
#: lms/lms/doctype/exercise_submission/exercise_submission.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
@@ -3230,7 +3233,7 @@ msgstr ""
|
||||
msgid "Next Question"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Assessments.vue:63 lms/templates/assessments.html:58
|
||||
#: frontend/src/components/Assessments.vue:66 lms/templates/assessments.html:58
|
||||
msgid "No Assessments"
|
||||
msgstr ""
|
||||
|
||||
@@ -3291,7 +3294,7 @@ msgstr ""
|
||||
msgid "No programs found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Quizzes.vue:56
|
||||
#: frontend/src/pages/Quizzes.vue:61
|
||||
msgid "No quizzes found"
|
||||
msgstr ""
|
||||
|
||||
@@ -3407,7 +3410,7 @@ msgstr ""
|
||||
msgid "Only files of type {0} will be accepted."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:497 frontend/src/utils/index.js:520
|
||||
#: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:527
|
||||
msgid "Only image file is allowed."
|
||||
msgstr ""
|
||||
|
||||
@@ -3558,7 +3561,7 @@ msgstr ""
|
||||
|
||||
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz'
|
||||
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission'
|
||||
#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:125
|
||||
#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:127
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
msgid "Passing Percentage"
|
||||
@@ -3653,7 +3656,7 @@ msgstr ""
|
||||
|
||||
#. Label of the percentage (Int) field in DocType 'LMS Quiz Submission'
|
||||
#: frontend/src/pages/QuizSubmission.vue:44
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:93
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:97
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
msgid "Percentage"
|
||||
msgstr ""
|
||||
@@ -3687,7 +3690,7 @@ msgstr ""
|
||||
msgid "Please click on the following button to set your new password"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1824 lms/lms/utils.py:1828
|
||||
#: lms/lms/utils.py:1837 lms/lms/utils.py:1841
|
||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||
msgstr ""
|
||||
|
||||
@@ -4040,8 +4043,7 @@ msgstr ""
|
||||
|
||||
#. Label of the quiz (Link) field in DocType 'LMS Quiz Submission'
|
||||
#. Label of a Link in the LMS Workspace
|
||||
#: frontend/src/pages/QuizSubmission.vue:26
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:82 frontend/src/utils/quiz.js:24
|
||||
#: frontend/src/pages/QuizSubmission.vue:26 frontend/src/utils/quiz.js:24
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/lms/workspace/lms/lms.json
|
||||
msgid "Quiz"
|
||||
@@ -4059,7 +4061,7 @@ msgid "Quiz Submission"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizSubmission.vue:122
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:102
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:106
|
||||
msgid "Quiz Submissions"
|
||||
msgstr ""
|
||||
|
||||
@@ -4089,8 +4091,8 @@ msgstr ""
|
||||
msgid "Quiz will appear at the bottom of the lesson."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:442 frontend/src/pages/Quizzes.vue:136
|
||||
#: frontend/src/pages/Quizzes.vue:146
|
||||
#: frontend/src/pages/QuizForm.vue:442 frontend/src/pages/Quizzes.vue:138
|
||||
#: frontend/src/pages/Quizzes.vue:148
|
||||
msgid "Quizzes"
|
||||
msgstr ""
|
||||
|
||||
@@ -4328,7 +4330,7 @@ msgstr ""
|
||||
|
||||
#. Label of the score (Int) field in DocType 'LMS Quiz Submission'
|
||||
#: frontend/src/pages/QuizSubmission.vue:39
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:87
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:91
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/templates/quiz/quiz.html:148
|
||||
msgid "Score"
|
||||
@@ -4700,13 +4702,13 @@ msgstr ""
|
||||
|
||||
#. Label of the students (Table) field in DocType 'LMS Batch'
|
||||
#. Label of the show_students (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/components/BatchStudents.vue:9
|
||||
#: frontend/src/components/BatchStudents.vue:4
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Students"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:157
|
||||
#: frontend/src/components/BatchStudents.vue:192
|
||||
msgid "Students deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -4758,7 +4760,7 @@ msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchCourses.vue:150
|
||||
#: frontend/src/components/BatchOverlay.vue:135
|
||||
#: frontend/src/components/BatchStudents.vue:157
|
||||
#: frontend/src/components/BatchStudents.vue:192
|
||||
#: frontend/src/components/CourseCardOverlay.vue:161
|
||||
#: frontend/src/components/Modals/AnnouncementModal.vue:99
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:73
|
||||
@@ -4769,7 +4771,7 @@ msgstr ""
|
||||
#: frontend/src/components/Modals/Event.vue:310
|
||||
#: frontend/src/components/Modals/Question.vue:264
|
||||
#: frontend/src/components/Modals/Question.vue:315
|
||||
#: frontend/src/pages/CourseForm.vue:460 frontend/src/pages/ProgramForm.vue:229
|
||||
#: frontend/src/pages/CourseForm.vue:461 frontend/src/pages/ProgramForm.vue:229
|
||||
#: frontend/src/pages/ProgramForm.vue:251
|
||||
#: frontend/src/pages/ProgramForm.vue:272
|
||||
#: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:343
|
||||
@@ -4791,7 +4793,7 @@ msgstr "Podsumowanie"
|
||||
msgid "Sunday"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:951
|
||||
#: lms/lms/api.py:952
|
||||
msgid "Suspicious pattern found in {0}: {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -4946,7 +4948,7 @@ msgstr ""
|
||||
msgid "There are no seats available in this batch."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:67
|
||||
#: frontend/src/components/BatchStudents.vue:86
|
||||
msgid "There are no students in this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -4954,7 +4956,7 @@ msgstr ""
|
||||
msgid "There are no {0} on this site."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:41
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:42
|
||||
msgid "There has been an update on your submission. You have got a score of {0} for the quiz {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -4977,7 +4979,7 @@ msgstr ""
|
||||
msgid "This course has:"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1582
|
||||
#: lms/lms/utils.py:1595
|
||||
msgid "This course is free."
|
||||
msgstr ""
|
||||
|
||||
@@ -5083,7 +5085,7 @@ msgstr ""
|
||||
#: frontend/src/pages/BatchForm.vue:20 frontend/src/pages/CourseForm.vue:32
|
||||
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/ProgramForm.vue:11
|
||||
#: frontend/src/pages/Programs.vue:118 frontend/src/pages/QuizForm.vue:48
|
||||
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
|
||||
#: frontend/src/pages/Quizzes.vue:116 lms/lms/doctype/cohort/cohort.json
|
||||
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
|
||||
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json
|
||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||
@@ -5119,7 +5121,7 @@ msgstr ""
|
||||
msgid "To Date"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1593
|
||||
#: lms/lms/utils.py:1606
|
||||
msgid "To join this batch, please contact the Administrator."
|
||||
msgstr ""
|
||||
|
||||
@@ -5136,7 +5138,7 @@ msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the total_marks (Int) field in DocType 'LMS Quiz'
|
||||
#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:119
|
||||
#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:121
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
msgid "Total Marks"
|
||||
msgstr ""
|
||||
@@ -5537,11 +5539,11 @@ msgstr ""
|
||||
msgid "You have been enrolled in this course"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:38
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:39
|
||||
msgid "You have got a score of {0} for the quiz {1}"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Quizzes.vue:60
|
||||
#: frontend/src/pages/Quizzes.vue:65
|
||||
msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: frappe\n"
|
||||
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
||||
"POT-Creation-Date: 2024-12-06 16:04+0000\n"
|
||||
"PO-Revision-Date: 2024-12-09 23:31\n"
|
||||
"POT-Creation-Date: 2024-12-20 16:04+0000\n"
|
||||
"PO-Revision-Date: 2024-12-25 02:17\n"
|
||||
"Last-Translator: jannat@frappe.io\n"
|
||||
"Language-Team: Russian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -101,7 +101,7 @@ msgstr ""
|
||||
|
||||
#: frontend/src/components/Assessments.vue:11
|
||||
#: frontend/src/components/BatchCourses.vue:11
|
||||
#: frontend/src/components/BatchStudents.vue:6
|
||||
#: frontend/src/components/BatchStudents.vue:10
|
||||
#: frontend/src/components/Categories.vue:26
|
||||
#: frontend/src/components/LiveClass.vue:11
|
||||
#: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30
|
||||
@@ -143,6 +143,10 @@ msgstr ""
|
||||
msgid "Add a course"
|
||||
msgstr "Добавить курс"
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:136
|
||||
msgid "Add a keyword and then press enter"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/OnboardingBanner.vue:73
|
||||
msgid "Add a lesson"
|
||||
msgstr ""
|
||||
@@ -1231,7 +1235,7 @@ msgstr ""
|
||||
msgid "Course already added to the batch."
|
||||
msgstr "Курс уже добавлен в группу."
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:460
|
||||
#: frontend/src/pages/CourseForm.vue:461
|
||||
msgid "Course deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -1406,7 +1410,7 @@ msgstr "Тип степени"
|
||||
|
||||
#: frontend/src/components/CourseOutline.vue:235
|
||||
#: frontend/src/components/CourseOutline.vue:293
|
||||
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:473
|
||||
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:474
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
@@ -1414,7 +1418,7 @@ msgstr ""
|
||||
msgid "Delete Chapter"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:467
|
||||
#: frontend/src/pages/CourseForm.vue:468
|
||||
msgid "Delete Course"
|
||||
msgstr ""
|
||||
|
||||
@@ -1426,7 +1430,7 @@ msgstr ""
|
||||
msgid "Delete this lesson?"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:468
|
||||
#: frontend/src/pages/CourseForm.vue:469
|
||||
msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?"
|
||||
msgstr ""
|
||||
|
||||
@@ -1702,7 +1706,7 @@ msgstr "Подтверждение регистрации на следующу
|
||||
msgid "Enrollment Count"
|
||||
msgstr "Количество регистраций"
|
||||
|
||||
#: lms/lms/utils.py:1702
|
||||
#: lms/lms/utils.py:1715
|
||||
msgid "Enrollment Failed"
|
||||
msgstr ""
|
||||
|
||||
@@ -1738,6 +1742,7 @@ msgstr "Введите правильный ответ"
|
||||
#: frontend/src/components/Modals/Question.vue:249
|
||||
#: frontend/src/components/Modals/Question.vue:269
|
||||
#: frontend/src/components/Modals/Question.vue:326
|
||||
#: frontend/src/components/Modals/StudentModal.vue:69
|
||||
#: frontend/src/components/SettingDetails.vue:62
|
||||
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350
|
||||
#: frontend/src/pages/QuizForm.vue:365
|
||||
@@ -2467,10 +2472,6 @@ msgstr ""
|
||||
msgid "Join URL"
|
||||
msgstr "Присоединиться URL"
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:136
|
||||
msgid "Keywords for the course"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a Workspace
|
||||
#: lms/lms/workspace/lms/lms.json
|
||||
msgid "LMS"
|
||||
@@ -2792,7 +2793,7 @@ msgstr ""
|
||||
msgid "Links"
|
||||
msgstr "Ссылки"
|
||||
|
||||
#: frontend/src/pages/Quizzes.vue:147
|
||||
#: frontend/src/pages/Quizzes.vue:149
|
||||
msgid "List of quizzes"
|
||||
msgstr ""
|
||||
|
||||
@@ -2812,7 +2813,9 @@ msgstr "Онлайн-урок"
|
||||
msgid "LiveCode URL"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Members.vue:95
|
||||
#: frontend/src/components/Members.vue:106
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:39
|
||||
#: frontend/src/pages/Quizzes.vue:51
|
||||
msgid "Load More"
|
||||
msgstr ""
|
||||
|
||||
@@ -2907,7 +2910,7 @@ msgstr "Отметить как прочитанное"
|
||||
msgid "Marks"
|
||||
msgstr "Отметки"
|
||||
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:23
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:24
|
||||
msgid "Marks for question number {0} cannot be greater than the marks allotted for that question."
|
||||
msgstr ""
|
||||
|
||||
@@ -2957,7 +2960,7 @@ msgstr "Средний:"
|
||||
#. Label of the member (Link) field in DocType 'LMS Program Member'
|
||||
#. Label of the member (Link) field in DocType 'LMS Quiz Submission'
|
||||
#: frontend/src/pages/QuizSubmission.vue:31
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:77
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:86
|
||||
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
|
||||
#: lms/lms/doctype/exercise_submission/exercise_submission.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
@@ -3230,7 +3233,7 @@ msgstr ""
|
||||
msgid "Next Question"
|
||||
msgstr "Следующий вопрос"
|
||||
|
||||
#: frontend/src/components/Assessments.vue:63 lms/templates/assessments.html:58
|
||||
#: frontend/src/components/Assessments.vue:66 lms/templates/assessments.html:58
|
||||
msgid "No Assessments"
|
||||
msgstr "Нет оценок"
|
||||
|
||||
@@ -3291,7 +3294,7 @@ msgstr "Не запланированы онлайн-курсы"
|
||||
msgid "No programs found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Quizzes.vue:56
|
||||
#: frontend/src/pages/Quizzes.vue:61
|
||||
msgid "No quizzes found"
|
||||
msgstr ""
|
||||
|
||||
@@ -3407,7 +3410,7 @@ msgstr ""
|
||||
msgid "Only files of type {0} will be accepted."
|
||||
msgstr "Принимаются только файлы типа {0} ."
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:497 frontend/src/utils/index.js:520
|
||||
#: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:527
|
||||
msgid "Only image file is allowed."
|
||||
msgstr ""
|
||||
|
||||
@@ -3558,7 +3561,7 @@ msgstr "Пропустить"
|
||||
|
||||
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz'
|
||||
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission'
|
||||
#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:125
|
||||
#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:127
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
msgid "Passing Percentage"
|
||||
@@ -3653,7 +3656,7 @@ msgstr ""
|
||||
|
||||
#. Label of the percentage (Int) field in DocType 'LMS Quiz Submission'
|
||||
#: frontend/src/pages/QuizSubmission.vue:44
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:93
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:97
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
msgid "Percentage"
|
||||
msgstr "Проценты"
|
||||
@@ -3687,7 +3690,7 @@ msgstr "Пожалуйста, проверьте свой email для подт
|
||||
msgid "Please click on the following button to set your new password"
|
||||
msgstr "Нажмите на следующую кнопку, чтобы установить новый пароль."
|
||||
|
||||
#: lms/lms/utils.py:1824 lms/lms/utils.py:1828
|
||||
#: lms/lms/utils.py:1837 lms/lms/utils.py:1841
|
||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||
msgstr ""
|
||||
|
||||
@@ -4040,8 +4043,7 @@ msgstr ""
|
||||
|
||||
#. Label of the quiz (Link) field in DocType 'LMS Quiz Submission'
|
||||
#. Label of a Link in the LMS Workspace
|
||||
#: frontend/src/pages/QuizSubmission.vue:26
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:82 frontend/src/utils/quiz.js:24
|
||||
#: frontend/src/pages/QuizSubmission.vue:26 frontend/src/utils/quiz.js:24
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/lms/workspace/lms/lms.json
|
||||
msgid "Quiz"
|
||||
@@ -4059,7 +4061,7 @@ msgid "Quiz Submission"
|
||||
msgstr "Подача теста"
|
||||
|
||||
#: frontend/src/pages/QuizSubmission.vue:122
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:102
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:106
|
||||
msgid "Quiz Submissions"
|
||||
msgstr ""
|
||||
|
||||
@@ -4089,8 +4091,8 @@ msgstr ""
|
||||
msgid "Quiz will appear at the bottom of the lesson."
|
||||
msgstr "Тест появится в конце урока."
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:442 frontend/src/pages/Quizzes.vue:136
|
||||
#: frontend/src/pages/Quizzes.vue:146
|
||||
#: frontend/src/pages/QuizForm.vue:442 frontend/src/pages/Quizzes.vue:138
|
||||
#: frontend/src/pages/Quizzes.vue:148
|
||||
msgid "Quizzes"
|
||||
msgstr ""
|
||||
|
||||
@@ -4328,7 +4330,7 @@ msgstr "Объем"
|
||||
|
||||
#. Label of the score (Int) field in DocType 'LMS Quiz Submission'
|
||||
#: frontend/src/pages/QuizSubmission.vue:39
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:87
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:91
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/templates/quiz/quiz.html:148
|
||||
msgid "Score"
|
||||
@@ -4700,13 +4702,13 @@ msgstr "Курс {0} уже добавлен в группу."
|
||||
|
||||
#. Label of the students (Table) field in DocType 'LMS Batch'
|
||||
#. Label of the show_students (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/components/BatchStudents.vue:9
|
||||
#: frontend/src/components/BatchStudents.vue:4
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Students"
|
||||
msgstr "Студенты"
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:157
|
||||
#: frontend/src/components/BatchStudents.vue:192
|
||||
msgid "Students deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -4758,7 +4760,7 @@ msgstr "Отправлено {0}"
|
||||
|
||||
#: frontend/src/components/BatchCourses.vue:150
|
||||
#: frontend/src/components/BatchOverlay.vue:135
|
||||
#: frontend/src/components/BatchStudents.vue:157
|
||||
#: frontend/src/components/BatchStudents.vue:192
|
||||
#: frontend/src/components/CourseCardOverlay.vue:161
|
||||
#: frontend/src/components/Modals/AnnouncementModal.vue:99
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:73
|
||||
@@ -4769,7 +4771,7 @@ msgstr "Отправлено {0}"
|
||||
#: frontend/src/components/Modals/Event.vue:310
|
||||
#: frontend/src/components/Modals/Question.vue:264
|
||||
#: frontend/src/components/Modals/Question.vue:315
|
||||
#: frontend/src/pages/CourseForm.vue:460 frontend/src/pages/ProgramForm.vue:229
|
||||
#: frontend/src/pages/CourseForm.vue:461 frontend/src/pages/ProgramForm.vue:229
|
||||
#: frontend/src/pages/ProgramForm.vue:251
|
||||
#: frontend/src/pages/ProgramForm.vue:272
|
||||
#: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:343
|
||||
@@ -4791,7 +4793,7 @@ msgstr "Резюме"
|
||||
msgid "Sunday"
|
||||
msgstr "Воскресенье"
|
||||
|
||||
#: lms/lms/api.py:951
|
||||
#: lms/lms/api.py:952
|
||||
msgid "Suspicious pattern found in {0}: {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -4946,7 +4948,7 @@ msgstr ""
|
||||
msgid "There are no seats available in this batch."
|
||||
msgstr "В этой группе нет свободных мест."
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:67
|
||||
#: frontend/src/components/BatchStudents.vue:86
|
||||
msgid "There are no students in this batch."
|
||||
msgstr "В этой группе нет студентов."
|
||||
|
||||
@@ -4954,7 +4956,7 @@ msgstr "В этой группе нет студентов."
|
||||
msgid "There are no {0} on this site."
|
||||
msgstr "На этом сайте нет {0} ."
|
||||
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:41
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:42
|
||||
msgid "There has been an update on your submission. You have got a score of {0} for the quiz {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -4977,7 +4979,7 @@ msgstr "Этот сертификат является бессрочным"
|
||||
msgid "This course has:"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1582
|
||||
#: lms/lms/utils.py:1595
|
||||
msgid "This course is free."
|
||||
msgstr "Этот курс бесплатный."
|
||||
|
||||
@@ -5083,7 +5085,7 @@ msgstr "Сроки:"
|
||||
#: frontend/src/pages/BatchForm.vue:20 frontend/src/pages/CourseForm.vue:32
|
||||
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/ProgramForm.vue:11
|
||||
#: frontend/src/pages/Programs.vue:118 frontend/src/pages/QuizForm.vue:48
|
||||
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
|
||||
#: frontend/src/pages/Quizzes.vue:116 lms/lms/doctype/cohort/cohort.json
|
||||
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
|
||||
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json
|
||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||
@@ -5119,7 +5121,7 @@ msgstr ""
|
||||
msgid "To Date"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1593
|
||||
#: lms/lms/utils.py:1606
|
||||
msgid "To join this batch, please contact the Administrator."
|
||||
msgstr "Чтобы присоединиться к этой группе, свяжитесь с администратором."
|
||||
|
||||
@@ -5136,7 +5138,7 @@ msgid "Total"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the total_marks (Int) field in DocType 'LMS Quiz'
|
||||
#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:119
|
||||
#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:121
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
msgid "Total Marks"
|
||||
msgstr "Всего задач"
|
||||
@@ -5537,11 +5539,11 @@ msgstr ""
|
||||
msgid "You have been enrolled in this course"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:38
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:39
|
||||
msgid "You have got a score of {0} for the quiz {1}"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Quizzes.vue:60
|
||||
#: frontend/src/pages/Quizzes.vue:65
|
||||
msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: frappe\n"
|
||||
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
||||
"POT-Creation-Date: 2024-12-06 16:04+0000\n"
|
||||
"PO-Revision-Date: 2024-12-09 23:31\n"
|
||||
"POT-Creation-Date: 2024-12-20 16:04+0000\n"
|
||||
"PO-Revision-Date: 2024-12-25 02:17\n"
|
||||
"Last-Translator: jannat@frappe.io\n"
|
||||
"Language-Team: Swedish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -101,7 +101,7 @@ msgstr "Aktiv"
|
||||
|
||||
#: frontend/src/components/Assessments.vue:11
|
||||
#: frontend/src/components/BatchCourses.vue:11
|
||||
#: frontend/src/components/BatchStudents.vue:6
|
||||
#: frontend/src/components/BatchStudents.vue:10
|
||||
#: frontend/src/components/Categories.vue:26
|
||||
#: frontend/src/components/LiveClass.vue:11
|
||||
#: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30
|
||||
@@ -143,6 +143,10 @@ msgstr "Lägg till Kapitel"
|
||||
msgid "Add a course"
|
||||
msgstr "Lägg till kurs"
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:136
|
||||
msgid "Add a keyword and then press enter"
|
||||
msgstr "Lägg till nyckelord och tryck sedan på Enter"
|
||||
|
||||
#: frontend/src/components/OnboardingBanner.vue:73
|
||||
msgid "Add a lesson"
|
||||
msgstr "Lägg till Lektion"
|
||||
@@ -1134,7 +1138,7 @@ msgstr "Kurs Kapitel"
|
||||
#. Label of a shortcut in the LMS Workspace
|
||||
#: lms/lms/workspace/lms/lms.json
|
||||
msgid "Course Completed"
|
||||
msgstr "Klara Kurs"
|
||||
msgstr "Klara Kurser"
|
||||
|
||||
#: lms/lms/widgets/CourseOutline.html:9
|
||||
msgid "Course Content"
|
||||
@@ -1231,7 +1235,7 @@ msgstr "Kurs tillagd till program"
|
||||
msgid "Course already added to the batch."
|
||||
msgstr "Kurs har redan lagts till grupp."
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:460
|
||||
#: frontend/src/pages/CourseForm.vue:461
|
||||
msgid "Course deleted successfully"
|
||||
msgstr "Kurs är borttagen"
|
||||
|
||||
@@ -1406,7 +1410,7 @@ msgstr "Examen Typ"
|
||||
|
||||
#: frontend/src/components/CourseOutline.vue:235
|
||||
#: frontend/src/components/CourseOutline.vue:293
|
||||
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:473
|
||||
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:474
|
||||
msgid "Delete"
|
||||
msgstr "Ta bort"
|
||||
|
||||
@@ -1414,7 +1418,7 @@ msgstr "Ta bort"
|
||||
msgid "Delete Chapter"
|
||||
msgstr "Ta bort Kapitel"
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:467
|
||||
#: frontend/src/pages/CourseForm.vue:468
|
||||
msgid "Delete Course"
|
||||
msgstr "Ta bort kurs"
|
||||
|
||||
@@ -1426,7 +1430,7 @@ msgstr "Ta bort detta kapitel?"
|
||||
msgid "Delete this lesson?"
|
||||
msgstr "Ta bort denna lektion?"
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:468
|
||||
#: frontend/src/pages/CourseForm.vue:469
|
||||
msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?"
|
||||
msgstr "Om du tar bort kurs raderas också alla dess kapitel och lektioner. Är du säker på att du vill ta bort denna kurs?"
|
||||
|
||||
@@ -1702,7 +1706,7 @@ msgstr "Inskrivning bekräftelse för nästa grupp utbildning"
|
||||
msgid "Enrollment Count"
|
||||
msgstr "Antal Inskrivna"
|
||||
|
||||
#: lms/lms/utils.py:1702
|
||||
#: lms/lms/utils.py:1715
|
||||
msgid "Enrollment Failed"
|
||||
msgstr "Registrering Misslyckad"
|
||||
|
||||
@@ -1738,6 +1742,7 @@ msgstr "Ange korrekt svar"
|
||||
#: frontend/src/components/Modals/Question.vue:249
|
||||
#: frontend/src/components/Modals/Question.vue:269
|
||||
#: frontend/src/components/Modals/Question.vue:326
|
||||
#: frontend/src/components/Modals/StudentModal.vue:69
|
||||
#: frontend/src/components/SettingDetails.vue:62
|
||||
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350
|
||||
#: frontend/src/pages/QuizForm.vue:365
|
||||
@@ -2467,10 +2472,6 @@ msgstr "Delta i Möte"
|
||||
msgid "Join URL"
|
||||
msgstr "Gå med URL"
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:136
|
||||
msgid "Keywords for the course"
|
||||
msgstr "Nyckelord för kurs"
|
||||
|
||||
#. Name of a Workspace
|
||||
#: lms/lms/workspace/lms/lms.json
|
||||
msgid "LMS"
|
||||
@@ -2792,7 +2793,7 @@ msgstr "LinkedIn ID"
|
||||
msgid "Links"
|
||||
msgstr "Länkar"
|
||||
|
||||
#: frontend/src/pages/Quizzes.vue:147
|
||||
#: frontend/src/pages/Quizzes.vue:149
|
||||
msgid "List of quizzes"
|
||||
msgstr "Lista över frågesporter"
|
||||
|
||||
@@ -2812,7 +2813,9 @@ msgstr "Live Klass"
|
||||
msgid "LiveCode URL"
|
||||
msgstr "LiveCode URL"
|
||||
|
||||
#: frontend/src/components/Members.vue:95
|
||||
#: frontend/src/components/Members.vue:106
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:39
|
||||
#: frontend/src/pages/Quizzes.vue:51
|
||||
msgid "Load More"
|
||||
msgstr "Ladda Mer"
|
||||
|
||||
@@ -2907,7 +2910,7 @@ msgstr "Markera som läst"
|
||||
msgid "Marks"
|
||||
msgstr "Märken"
|
||||
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:23
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:24
|
||||
msgid "Marks for question number {0} cannot be greater than the marks allotted for that question."
|
||||
msgstr "Poängen för fråga nummer {0} får inte vara högre än de poäng som tilldelats för denna fråga."
|
||||
|
||||
@@ -2957,7 +2960,7 @@ msgstr "Medium:"
|
||||
#. Label of the member (Link) field in DocType 'LMS Program Member'
|
||||
#. Label of the member (Link) field in DocType 'LMS Quiz Submission'
|
||||
#: frontend/src/pages/QuizSubmission.vue:31
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:77
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:86
|
||||
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
|
||||
#: lms/lms/doctype/exercise_submission/exercise_submission.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
@@ -3230,7 +3233,7 @@ msgstr "Nästa"
|
||||
msgid "Next Question"
|
||||
msgstr "Nästa Fråga"
|
||||
|
||||
#: frontend/src/components/Assessments.vue:63 lms/templates/assessments.html:58
|
||||
#: frontend/src/components/Assessments.vue:66 lms/templates/assessments.html:58
|
||||
msgid "No Assessments"
|
||||
msgstr "Inga Bedömningar"
|
||||
|
||||
@@ -3291,7 +3294,7 @@ msgstr "Inga live lektioner schemalagda"
|
||||
msgid "No programs found"
|
||||
msgstr "Inga program hittades"
|
||||
|
||||
#: frontend/src/pages/Quizzes.vue:56
|
||||
#: frontend/src/pages/Quizzes.vue:61
|
||||
msgid "No quizzes found"
|
||||
msgstr "Inga frågesporter hittades"
|
||||
|
||||
@@ -3407,7 +3410,7 @@ msgstr "Endast kurser för vilka självinlärning är inaktiverat kan läggas ti
|
||||
msgid "Only files of type {0} will be accepted."
|
||||
msgstr "Endast filer av typ {0} kommer att accepteras."
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:497 frontend/src/utils/index.js:520
|
||||
#: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:527
|
||||
msgid "Only image file is allowed."
|
||||
msgstr "Endast bildfiler är tillåtna."
|
||||
|
||||
@@ -3558,7 +3561,7 @@ msgstr "Lösenord"
|
||||
|
||||
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz'
|
||||
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission'
|
||||
#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:125
|
||||
#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:127
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
msgid "Passing Percentage"
|
||||
@@ -3653,7 +3656,7 @@ msgstr "Pågående"
|
||||
|
||||
#. Label of the percentage (Int) field in DocType 'LMS Quiz Submission'
|
||||
#: frontend/src/pages/QuizSubmission.vue:44
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:93
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:97
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
msgid "Percentage"
|
||||
msgstr "Procentuell"
|
||||
@@ -3687,7 +3690,7 @@ msgstr "Kontrollera din E-post för verifiering"
|
||||
msgid "Please click on the following button to set your new password"
|
||||
msgstr "Klicka på följande knapp för att ange ditt nya lösenord"
|
||||
|
||||
#: lms/lms/utils.py:1824 lms/lms/utils.py:1828
|
||||
#: lms/lms/utils.py:1837 lms/lms/utils.py:1841
|
||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||
msgstr "Slutför tidigare kurser i program för att anmäla dig till denna kurs."
|
||||
|
||||
@@ -4040,8 +4043,7 @@ msgstr "Frågor är borttagna"
|
||||
|
||||
#. Label of the quiz (Link) field in DocType 'LMS Quiz Submission'
|
||||
#. Label of a Link in the LMS Workspace
|
||||
#: frontend/src/pages/QuizSubmission.vue:26
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:82 frontend/src/utils/quiz.js:24
|
||||
#: frontend/src/pages/QuizSubmission.vue:26 frontend/src/utils/quiz.js:24
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/lms/workspace/lms/lms.json
|
||||
msgid "Quiz"
|
||||
@@ -4059,7 +4061,7 @@ msgid "Quiz Submission"
|
||||
msgstr "Frågesport Inlämning"
|
||||
|
||||
#: frontend/src/pages/QuizSubmission.vue:122
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:102
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:106
|
||||
msgid "Quiz Submissions"
|
||||
msgstr "Frågesport Inlämningar"
|
||||
|
||||
@@ -4089,8 +4091,8 @@ msgstr "Frågesport uppdaterad"
|
||||
msgid "Quiz will appear at the bottom of the lesson."
|
||||
msgstr "Frågesport kommer att visas längst ner i lektionen."
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:442 frontend/src/pages/Quizzes.vue:136
|
||||
#: frontend/src/pages/Quizzes.vue:146
|
||||
#: frontend/src/pages/QuizForm.vue:442 frontend/src/pages/Quizzes.vue:138
|
||||
#: frontend/src/pages/Quizzes.vue:148
|
||||
msgid "Quizzes"
|
||||
msgstr "Frågesporter"
|
||||
|
||||
@@ -4328,7 +4330,7 @@ msgstr "Omfatning"
|
||||
|
||||
#. Label of the score (Int) field in DocType 'LMS Quiz Submission'
|
||||
#: frontend/src/pages/QuizSubmission.vue:39
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:87
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:91
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/templates/quiz/quiz.html:148
|
||||
msgid "Score"
|
||||
@@ -4700,13 +4702,13 @@ msgstr "Student {0} har redan lagts till denna grupp."
|
||||
|
||||
#. Label of the students (Table) field in DocType 'LMS Batch'
|
||||
#. Label of the show_students (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/components/BatchStudents.vue:9
|
||||
#: frontend/src/components/BatchStudents.vue:4
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Students"
|
||||
msgstr "Studenter"
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:157
|
||||
#: frontend/src/components/BatchStudents.vue:192
|
||||
msgid "Students deleted successfully"
|
||||
msgstr "Studenter borttagna"
|
||||
|
||||
@@ -4758,7 +4760,7 @@ msgstr "Inskickad {0}"
|
||||
|
||||
#: frontend/src/components/BatchCourses.vue:150
|
||||
#: frontend/src/components/BatchOverlay.vue:135
|
||||
#: frontend/src/components/BatchStudents.vue:157
|
||||
#: frontend/src/components/BatchStudents.vue:192
|
||||
#: frontend/src/components/CourseCardOverlay.vue:161
|
||||
#: frontend/src/components/Modals/AnnouncementModal.vue:99
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:73
|
||||
@@ -4769,7 +4771,7 @@ msgstr "Inskickad {0}"
|
||||
#: frontend/src/components/Modals/Event.vue:310
|
||||
#: frontend/src/components/Modals/Question.vue:264
|
||||
#: frontend/src/components/Modals/Question.vue:315
|
||||
#: frontend/src/pages/CourseForm.vue:460 frontend/src/pages/ProgramForm.vue:229
|
||||
#: frontend/src/pages/CourseForm.vue:461 frontend/src/pages/ProgramForm.vue:229
|
||||
#: frontend/src/pages/ProgramForm.vue:251
|
||||
#: frontend/src/pages/ProgramForm.vue:272
|
||||
#: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:343
|
||||
@@ -4791,7 +4793,7 @@ msgstr "Översikt"
|
||||
msgid "Sunday"
|
||||
msgstr "Söndag"
|
||||
|
||||
#: lms/lms/api.py:951
|
||||
#: lms/lms/api.py:952
|
||||
msgid "Suspicious pattern found in {0}: {1}"
|
||||
msgstr "Misstänkt mönster hittat i {0}: {1}"
|
||||
|
||||
@@ -4946,7 +4948,7 @@ msgstr "Det finns inga program tillgängliga för tillfället. Håll utkik, nya
|
||||
msgid "There are no seats available in this batch."
|
||||
msgstr "Det finns inga platser tillgängliga i denna grupp."
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:67
|
||||
#: frontend/src/components/BatchStudents.vue:86
|
||||
msgid "There are no students in this batch."
|
||||
msgstr "Det finns inga studenter i denna grupp."
|
||||
|
||||
@@ -4954,7 +4956,7 @@ msgstr "Det finns inga studenter i denna grupp."
|
||||
msgid "There are no {0} on this site."
|
||||
msgstr "Det finns ingen {0} på denna webbplats."
|
||||
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:41
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:42
|
||||
msgid "There has been an update on your submission. You have got a score of {0} for the quiz {1}"
|
||||
msgstr "Det har skett uppdatering av din inlämning. Du har fått resultat av {0} för frågesport {1}"
|
||||
|
||||
@@ -4977,7 +4979,7 @@ msgstr "Detta certifikat upphör inte att gälla"
|
||||
msgid "This course has:"
|
||||
msgstr "Denna kurs har:"
|
||||
|
||||
#: lms/lms/utils.py:1582
|
||||
#: lms/lms/utils.py:1595
|
||||
msgid "This course is free."
|
||||
msgstr "Denna kurs är gratis."
|
||||
|
||||
@@ -5083,7 +5085,7 @@ msgstr "Tidpunkter:"
|
||||
#: frontend/src/pages/BatchForm.vue:20 frontend/src/pages/CourseForm.vue:32
|
||||
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/ProgramForm.vue:11
|
||||
#: frontend/src/pages/Programs.vue:118 frontend/src/pages/QuizForm.vue:48
|
||||
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
|
||||
#: frontend/src/pages/Quizzes.vue:116 lms/lms/doctype/cohort/cohort.json
|
||||
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
|
||||
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json
|
||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||
@@ -5119,7 +5121,7 @@ msgstr "Till"
|
||||
msgid "To Date"
|
||||
msgstr "Till Datum"
|
||||
|
||||
#: lms/lms/utils.py:1593
|
||||
#: lms/lms/utils.py:1606
|
||||
msgid "To join this batch, please contact the Administrator."
|
||||
msgstr "För att gå med i denna grupp, kontakta Administratör."
|
||||
|
||||
@@ -5136,7 +5138,7 @@ msgid "Total"
|
||||
msgstr "Totalt"
|
||||
|
||||
#. Label of the total_marks (Int) field in DocType 'LMS Quiz'
|
||||
#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:119
|
||||
#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:121
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
msgid "Total Marks"
|
||||
msgstr "Totalt antal markeringar"
|
||||
@@ -5537,11 +5539,11 @@ msgstr "Du har blivit registrerad i denna grupp"
|
||||
msgid "You have been enrolled in this course"
|
||||
msgstr "Du har blivit registrerad på denna kurs"
|
||||
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:38
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:39
|
||||
msgid "You have got a score of {0} for the quiz {1}"
|
||||
msgstr "Du har fått resultat av {0} för frågesport {1}"
|
||||
|
||||
#: frontend/src/pages/Quizzes.vue:60
|
||||
#: frontend/src/pages/Quizzes.vue:65
|
||||
msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above."
|
||||
msgstr "Du har inte skapat några frågesporter än. För att skapa ny frågesport, klicka på knapp \"Nytt Frågesport\" ovan."
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: frappe\n"
|
||||
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
||||
"POT-Creation-Date: 2024-12-06 16:04+0000\n"
|
||||
"PO-Revision-Date: 2024-12-09 23:31\n"
|
||||
"POT-Creation-Date: 2024-12-20 16:04+0000\n"
|
||||
"PO-Revision-Date: 2024-12-25 02:17\n"
|
||||
"Last-Translator: jannat@frappe.io\n"
|
||||
"Language-Team: Turkish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -101,7 +101,7 @@ msgstr "Aktif"
|
||||
|
||||
#: frontend/src/components/Assessments.vue:11
|
||||
#: frontend/src/components/BatchCourses.vue:11
|
||||
#: frontend/src/components/BatchStudents.vue:6
|
||||
#: frontend/src/components/BatchStudents.vue:10
|
||||
#: frontend/src/components/Categories.vue:26
|
||||
#: frontend/src/components/LiveClass.vue:11
|
||||
#: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30
|
||||
@@ -143,6 +143,10 @@ msgstr ""
|
||||
msgid "Add a course"
|
||||
msgstr "Kurs Ekle"
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:136
|
||||
msgid "Add a keyword and then press enter"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/OnboardingBanner.vue:73
|
||||
msgid "Add a lesson"
|
||||
msgstr ""
|
||||
@@ -1231,7 +1235,7 @@ msgstr ""
|
||||
msgid "Course already added to the batch."
|
||||
msgstr "Kurs zaten gruba eklendi."
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:460
|
||||
#: frontend/src/pages/CourseForm.vue:461
|
||||
msgid "Course deleted successfully"
|
||||
msgstr "Kurs başarıyla silindi"
|
||||
|
||||
@@ -1406,7 +1410,7 @@ msgstr "Derece Türü"
|
||||
|
||||
#: frontend/src/components/CourseOutline.vue:235
|
||||
#: frontend/src/components/CourseOutline.vue:293
|
||||
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:473
|
||||
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:474
|
||||
msgid "Delete"
|
||||
msgstr "Sil"
|
||||
|
||||
@@ -1414,7 +1418,7 @@ msgstr "Sil"
|
||||
msgid "Delete Chapter"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:467
|
||||
#: frontend/src/pages/CourseForm.vue:468
|
||||
msgid "Delete Course"
|
||||
msgstr "Kursu Sil"
|
||||
|
||||
@@ -1426,7 +1430,7 @@ msgstr ""
|
||||
msgid "Delete this lesson?"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:468
|
||||
#: frontend/src/pages/CourseForm.vue:469
|
||||
msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?"
|
||||
msgstr "Kursu silmek, tüm bölümlerini ve derslerini de silecektir. Bu kursu silmek istediğinizden emin misiniz?"
|
||||
|
||||
@@ -1702,7 +1706,7 @@ msgstr "Sonraki Eğitim Grubu için Kayıt Onayı"
|
||||
msgid "Enrollment Count"
|
||||
msgstr "Kayıt Sayısı"
|
||||
|
||||
#: lms/lms/utils.py:1702
|
||||
#: lms/lms/utils.py:1715
|
||||
msgid "Enrollment Failed"
|
||||
msgstr "Kayıt Başarısız"
|
||||
|
||||
@@ -1738,6 +1742,7 @@ msgstr "Doğru cevabı girin"
|
||||
#: frontend/src/components/Modals/Question.vue:249
|
||||
#: frontend/src/components/Modals/Question.vue:269
|
||||
#: frontend/src/components/Modals/Question.vue:326
|
||||
#: frontend/src/components/Modals/StudentModal.vue:69
|
||||
#: frontend/src/components/SettingDetails.vue:62
|
||||
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350
|
||||
#: frontend/src/pages/QuizForm.vue:365
|
||||
@@ -2467,10 +2472,6 @@ msgstr "Görüşmeye Katıl"
|
||||
msgid "Join URL"
|
||||
msgstr "Katılma Bağlantısı"
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:136
|
||||
msgid "Keywords for the course"
|
||||
msgstr "Ders için anahtar kelimeler"
|
||||
|
||||
#. Name of a Workspace
|
||||
#: lms/lms/workspace/lms/lms.json
|
||||
msgid "LMS"
|
||||
@@ -2792,7 +2793,7 @@ msgstr "LinkedIn"
|
||||
msgid "Links"
|
||||
msgstr "Bağlantılar"
|
||||
|
||||
#: frontend/src/pages/Quizzes.vue:147
|
||||
#: frontend/src/pages/Quizzes.vue:149
|
||||
msgid "List of quizzes"
|
||||
msgstr "Sınavların listesi"
|
||||
|
||||
@@ -2812,7 +2813,9 @@ msgstr "Canlı Sınıf"
|
||||
msgid "LiveCode URL"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Members.vue:95
|
||||
#: frontend/src/components/Members.vue:106
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:39
|
||||
#: frontend/src/pages/Quizzes.vue:51
|
||||
msgid "Load More"
|
||||
msgstr "Daha Fazla Yükle"
|
||||
|
||||
@@ -2907,7 +2910,7 @@ msgstr "Okundu olarak İşaretle"
|
||||
msgid "Marks"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:23
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:24
|
||||
msgid "Marks for question number {0} cannot be greater than the marks allotted for that question."
|
||||
msgstr ""
|
||||
|
||||
@@ -2957,7 +2960,7 @@ msgstr "Orta:"
|
||||
#. Label of the member (Link) field in DocType 'LMS Program Member'
|
||||
#. Label of the member (Link) field in DocType 'LMS Quiz Submission'
|
||||
#: frontend/src/pages/QuizSubmission.vue:31
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:77
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:86
|
||||
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
|
||||
#: lms/lms/doctype/exercise_submission/exercise_submission.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
@@ -3230,7 +3233,7 @@ msgstr "Sonraki"
|
||||
msgid "Next Question"
|
||||
msgstr "Sonraki Soru"
|
||||
|
||||
#: frontend/src/components/Assessments.vue:63 lms/templates/assessments.html:58
|
||||
#: frontend/src/components/Assessments.vue:66 lms/templates/assessments.html:58
|
||||
msgid "No Assessments"
|
||||
msgstr "Değerlendirme Yok"
|
||||
|
||||
@@ -3291,7 +3294,7 @@ msgstr "Planlanmış canlı ders yok"
|
||||
msgid "No programs found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Quizzes.vue:56
|
||||
#: frontend/src/pages/Quizzes.vue:61
|
||||
msgid "No quizzes found"
|
||||
msgstr ""
|
||||
|
||||
@@ -3407,7 +3410,7 @@ msgstr ""
|
||||
msgid "Only files of type {0} will be accepted."
|
||||
msgstr "Sadece {0} türündeki dosyalar kabul edilecektir."
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:497 frontend/src/utils/index.js:520
|
||||
#: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:527
|
||||
msgid "Only image file is allowed."
|
||||
msgstr "Sadece resim dosyasına izin verilir."
|
||||
|
||||
@@ -3558,7 +3561,7 @@ msgstr "Başarılı"
|
||||
|
||||
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz'
|
||||
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission'
|
||||
#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:125
|
||||
#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:127
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
msgid "Passing Percentage"
|
||||
@@ -3653,7 +3656,7 @@ msgstr "Bekliyor"
|
||||
|
||||
#. Label of the percentage (Int) field in DocType 'LMS Quiz Submission'
|
||||
#: frontend/src/pages/QuizSubmission.vue:44
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:93
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:97
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
msgid "Percentage"
|
||||
msgstr "Yüzde"
|
||||
@@ -3687,7 +3690,7 @@ msgstr "Doğrulama için lütfen e-postanızı kontrol edin"
|
||||
msgid "Please click on the following button to set your new password"
|
||||
msgstr "Yeni şifrenizi belirlemek için lütfen aşağıdaki linke tıklayınız"
|
||||
|
||||
#: lms/lms/utils.py:1824 lms/lms/utils.py:1828
|
||||
#: lms/lms/utils.py:1837 lms/lms/utils.py:1841
|
||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||
msgstr ""
|
||||
|
||||
@@ -4040,8 +4043,7 @@ msgstr "Sorular başarıyla silindi"
|
||||
|
||||
#. Label of the quiz (Link) field in DocType 'LMS Quiz Submission'
|
||||
#. Label of a Link in the LMS Workspace
|
||||
#: frontend/src/pages/QuizSubmission.vue:26
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:82 frontend/src/utils/quiz.js:24
|
||||
#: frontend/src/pages/QuizSubmission.vue:26 frontend/src/utils/quiz.js:24
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/lms/workspace/lms/lms.json
|
||||
msgid "Quiz"
|
||||
@@ -4059,7 +4061,7 @@ msgid "Quiz Submission"
|
||||
msgstr "Sınav Gönderimi"
|
||||
|
||||
#: frontend/src/pages/QuizSubmission.vue:122
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:102
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:106
|
||||
msgid "Quiz Submissions"
|
||||
msgstr ""
|
||||
|
||||
@@ -4089,8 +4091,8 @@ msgstr "Sınav başarıyla güncellendi"
|
||||
msgid "Quiz will appear at the bottom of the lesson."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:442 frontend/src/pages/Quizzes.vue:136
|
||||
#: frontend/src/pages/Quizzes.vue:146
|
||||
#: frontend/src/pages/QuizForm.vue:442 frontend/src/pages/Quizzes.vue:138
|
||||
#: frontend/src/pages/Quizzes.vue:148
|
||||
msgid "Quizzes"
|
||||
msgstr ""
|
||||
|
||||
@@ -4328,7 +4330,7 @@ msgstr "Kapsam"
|
||||
|
||||
#. Label of the score (Int) field in DocType 'LMS Quiz Submission'
|
||||
#: frontend/src/pages/QuizSubmission.vue:39
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:87
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:91
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/templates/quiz/quiz.html:148
|
||||
msgid "Score"
|
||||
@@ -4700,13 +4702,13 @@ msgstr "Öğrenci {0} zaten bu gruba eklendi."
|
||||
|
||||
#. Label of the students (Table) field in DocType 'LMS Batch'
|
||||
#. Label of the show_students (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/components/BatchStudents.vue:9
|
||||
#: frontend/src/components/BatchStudents.vue:4
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Students"
|
||||
msgstr "Öğrenciler"
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:157
|
||||
#: frontend/src/components/BatchStudents.vue:192
|
||||
msgid "Students deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -4758,7 +4760,7 @@ msgstr "Kaydedildi {0}"
|
||||
|
||||
#: frontend/src/components/BatchCourses.vue:150
|
||||
#: frontend/src/components/BatchOverlay.vue:135
|
||||
#: frontend/src/components/BatchStudents.vue:157
|
||||
#: frontend/src/components/BatchStudents.vue:192
|
||||
#: frontend/src/components/CourseCardOverlay.vue:161
|
||||
#: frontend/src/components/Modals/AnnouncementModal.vue:99
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:73
|
||||
@@ -4769,7 +4771,7 @@ msgstr "Kaydedildi {0}"
|
||||
#: frontend/src/components/Modals/Event.vue:310
|
||||
#: frontend/src/components/Modals/Question.vue:264
|
||||
#: frontend/src/components/Modals/Question.vue:315
|
||||
#: frontend/src/pages/CourseForm.vue:460 frontend/src/pages/ProgramForm.vue:229
|
||||
#: frontend/src/pages/CourseForm.vue:461 frontend/src/pages/ProgramForm.vue:229
|
||||
#: frontend/src/pages/ProgramForm.vue:251
|
||||
#: frontend/src/pages/ProgramForm.vue:272
|
||||
#: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:343
|
||||
@@ -4791,7 +4793,7 @@ msgstr "Özet"
|
||||
msgid "Sunday"
|
||||
msgstr "Pazar"
|
||||
|
||||
#: lms/lms/api.py:951
|
||||
#: lms/lms/api.py:952
|
||||
msgid "Suspicious pattern found in {0}: {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -4946,7 +4948,7 @@ msgstr ""
|
||||
msgid "There are no seats available in this batch."
|
||||
msgstr "Bu grupta boş yer bulunmamaktadır."
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:67
|
||||
#: frontend/src/components/BatchStudents.vue:86
|
||||
msgid "There are no students in this batch."
|
||||
msgstr "Bu grupta hiç öğrenci bulunmamaktadır."
|
||||
|
||||
@@ -4954,7 +4956,7 @@ msgstr "Bu grupta hiç öğrenci bulunmamaktadır."
|
||||
msgid "There are no {0} on this site."
|
||||
msgstr "Bu sitede {0} yok."
|
||||
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:41
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:42
|
||||
msgid "There has been an update on your submission. You have got a score of {0} for the quiz {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -4977,7 +4979,7 @@ msgstr ""
|
||||
msgid "This course has:"
|
||||
msgstr "Bu kursta:"
|
||||
|
||||
#: lms/lms/utils.py:1582
|
||||
#: lms/lms/utils.py:1595
|
||||
msgid "This course is free."
|
||||
msgstr "Bu kurs ücretsizdir."
|
||||
|
||||
@@ -5083,7 +5085,7 @@ msgstr ""
|
||||
#: frontend/src/pages/BatchForm.vue:20 frontend/src/pages/CourseForm.vue:32
|
||||
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/ProgramForm.vue:11
|
||||
#: frontend/src/pages/Programs.vue:118 frontend/src/pages/QuizForm.vue:48
|
||||
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
|
||||
#: frontend/src/pages/Quizzes.vue:116 lms/lms/doctype/cohort/cohort.json
|
||||
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
|
||||
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json
|
||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||
@@ -5119,7 +5121,7 @@ msgstr "Alıcı"
|
||||
msgid "To Date"
|
||||
msgstr "Bitiş Tarihi"
|
||||
|
||||
#: lms/lms/utils.py:1593
|
||||
#: lms/lms/utils.py:1606
|
||||
msgid "To join this batch, please contact the Administrator."
|
||||
msgstr ""
|
||||
|
||||
@@ -5136,7 +5138,7 @@ msgid "Total"
|
||||
msgstr "Toplam"
|
||||
|
||||
#. Label of the total_marks (Int) field in DocType 'LMS Quiz'
|
||||
#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:119
|
||||
#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:121
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
msgid "Total Marks"
|
||||
msgstr ""
|
||||
@@ -5537,11 +5539,11 @@ msgstr "Bu gruba kayıt oldunuz"
|
||||
msgid "You have been enrolled in this course"
|
||||
msgstr "Bu kursa zaten kayıtlısınız"
|
||||
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:38
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:39
|
||||
msgid "You have got a score of {0} for the quiz {1}"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Quizzes.vue:60
|
||||
#: frontend/src/pages/Quizzes.vue:65
|
||||
msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above."
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -2,8 +2,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: frappe\n"
|
||||
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
||||
"POT-Creation-Date: 2024-12-06 16:04+0000\n"
|
||||
"PO-Revision-Date: 2024-12-09 23:31\n"
|
||||
"POT-Creation-Date: 2024-12-20 16:04+0000\n"
|
||||
"PO-Revision-Date: 2024-12-25 02:17\n"
|
||||
"Last-Translator: jannat@frappe.io\n"
|
||||
"Language-Team: Chinese Simplified\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -101,7 +101,7 @@ msgstr "活动"
|
||||
|
||||
#: frontend/src/components/Assessments.vue:11
|
||||
#: frontend/src/components/BatchCourses.vue:11
|
||||
#: frontend/src/components/BatchStudents.vue:6
|
||||
#: frontend/src/components/BatchStudents.vue:10
|
||||
#: frontend/src/components/Categories.vue:26
|
||||
#: frontend/src/components/LiveClass.vue:11
|
||||
#: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30
|
||||
@@ -143,6 +143,10 @@ msgstr ""
|
||||
msgid "Add a course"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:136
|
||||
msgid "Add a keyword and then press enter"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/OnboardingBanner.vue:73
|
||||
msgid "Add a lesson"
|
||||
msgstr ""
|
||||
@@ -1231,7 +1235,7 @@ msgstr ""
|
||||
msgid "Course already added to the batch."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:460
|
||||
#: frontend/src/pages/CourseForm.vue:461
|
||||
msgid "Course deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -1406,7 +1410,7 @@ msgstr ""
|
||||
|
||||
#: frontend/src/components/CourseOutline.vue:235
|
||||
#: frontend/src/components/CourseOutline.vue:293
|
||||
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:473
|
||||
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:474
|
||||
msgid "Delete"
|
||||
msgstr "删除"
|
||||
|
||||
@@ -1414,7 +1418,7 @@ msgstr "删除"
|
||||
msgid "Delete Chapter"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:467
|
||||
#: frontend/src/pages/CourseForm.vue:468
|
||||
msgid "Delete Course"
|
||||
msgstr ""
|
||||
|
||||
@@ -1426,7 +1430,7 @@ msgstr ""
|
||||
msgid "Delete this lesson?"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:468
|
||||
#: frontend/src/pages/CourseForm.vue:469
|
||||
msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?"
|
||||
msgstr ""
|
||||
|
||||
@@ -1702,7 +1706,7 @@ msgstr ""
|
||||
msgid "Enrollment Count"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1702
|
||||
#: lms/lms/utils.py:1715
|
||||
msgid "Enrollment Failed"
|
||||
msgstr ""
|
||||
|
||||
@@ -1738,6 +1742,7 @@ msgstr ""
|
||||
#: frontend/src/components/Modals/Question.vue:249
|
||||
#: frontend/src/components/Modals/Question.vue:269
|
||||
#: frontend/src/components/Modals/Question.vue:326
|
||||
#: frontend/src/components/Modals/StudentModal.vue:69
|
||||
#: frontend/src/components/SettingDetails.vue:62
|
||||
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350
|
||||
#: frontend/src/pages/QuizForm.vue:365
|
||||
@@ -2467,10 +2472,6 @@ msgstr ""
|
||||
msgid "Join URL"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:136
|
||||
msgid "Keywords for the course"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a Workspace
|
||||
#: lms/lms/workspace/lms/lms.json
|
||||
msgid "LMS"
|
||||
@@ -2792,7 +2793,7 @@ msgstr ""
|
||||
msgid "Links"
|
||||
msgstr "链接"
|
||||
|
||||
#: frontend/src/pages/Quizzes.vue:147
|
||||
#: frontend/src/pages/Quizzes.vue:149
|
||||
msgid "List of quizzes"
|
||||
msgstr ""
|
||||
|
||||
@@ -2812,7 +2813,9 @@ msgstr ""
|
||||
msgid "LiveCode URL"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Members.vue:95
|
||||
#: frontend/src/components/Members.vue:106
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:39
|
||||
#: frontend/src/pages/Quizzes.vue:51
|
||||
msgid "Load More"
|
||||
msgstr "装载更多"
|
||||
|
||||
@@ -2907,7 +2910,7 @@ msgstr ""
|
||||
msgid "Marks"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:23
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:24
|
||||
msgid "Marks for question number {0} cannot be greater than the marks allotted for that question."
|
||||
msgstr ""
|
||||
|
||||
@@ -2957,7 +2960,7 @@ msgstr "中:"
|
||||
#. Label of the member (Link) field in DocType 'LMS Program Member'
|
||||
#. Label of the member (Link) field in DocType 'LMS Quiz Submission'
|
||||
#: frontend/src/pages/QuizSubmission.vue:31
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:77
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:86
|
||||
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
|
||||
#: lms/lms/doctype/exercise_submission/exercise_submission.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
@@ -3230,7 +3233,7 @@ msgstr "下一个"
|
||||
msgid "Next Question"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Assessments.vue:63 lms/templates/assessments.html:58
|
||||
#: frontend/src/components/Assessments.vue:66 lms/templates/assessments.html:58
|
||||
msgid "No Assessments"
|
||||
msgstr ""
|
||||
|
||||
@@ -3291,7 +3294,7 @@ msgstr ""
|
||||
msgid "No programs found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Quizzes.vue:56
|
||||
#: frontend/src/pages/Quizzes.vue:61
|
||||
msgid "No quizzes found"
|
||||
msgstr ""
|
||||
|
||||
@@ -3407,7 +3410,7 @@ msgstr ""
|
||||
msgid "Only files of type {0} will be accepted."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:497 frontend/src/utils/index.js:520
|
||||
#: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:527
|
||||
msgid "Only image file is allowed."
|
||||
msgstr ""
|
||||
|
||||
@@ -3558,7 +3561,7 @@ msgstr ""
|
||||
|
||||
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz'
|
||||
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission'
|
||||
#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:125
|
||||
#: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:127
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
msgid "Passing Percentage"
|
||||
@@ -3653,7 +3656,7 @@ msgstr "有待"
|
||||
|
||||
#. Label of the percentage (Int) field in DocType 'LMS Quiz Submission'
|
||||
#: frontend/src/pages/QuizSubmission.vue:44
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:93
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:97
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
msgid "Percentage"
|
||||
msgstr ""
|
||||
@@ -3687,7 +3690,7 @@ msgstr "请检查您的电子邮件验证"
|
||||
msgid "Please click on the following button to set your new password"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1824 lms/lms/utils.py:1828
|
||||
#: lms/lms/utils.py:1837 lms/lms/utils.py:1841
|
||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||
msgstr ""
|
||||
|
||||
@@ -4040,8 +4043,7 @@ msgstr ""
|
||||
|
||||
#. Label of the quiz (Link) field in DocType 'LMS Quiz Submission'
|
||||
#. Label of a Link in the LMS Workspace
|
||||
#: frontend/src/pages/QuizSubmission.vue:26
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:82 frontend/src/utils/quiz.js:24
|
||||
#: frontend/src/pages/QuizSubmission.vue:26 frontend/src/utils/quiz.js:24
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/lms/workspace/lms/lms.json
|
||||
msgid "Quiz"
|
||||
@@ -4059,7 +4061,7 @@ msgid "Quiz Submission"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizSubmission.vue:122
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:102
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:106
|
||||
msgid "Quiz Submissions"
|
||||
msgstr ""
|
||||
|
||||
@@ -4089,8 +4091,8 @@ msgstr ""
|
||||
msgid "Quiz will appear at the bottom of the lesson."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:442 frontend/src/pages/Quizzes.vue:136
|
||||
#: frontend/src/pages/Quizzes.vue:146
|
||||
#: frontend/src/pages/QuizForm.vue:442 frontend/src/pages/Quizzes.vue:138
|
||||
#: frontend/src/pages/Quizzes.vue:148
|
||||
msgid "Quizzes"
|
||||
msgstr ""
|
||||
|
||||
@@ -4328,7 +4330,7 @@ msgstr ""
|
||||
|
||||
#. Label of the score (Int) field in DocType 'LMS Quiz Submission'
|
||||
#: frontend/src/pages/QuizSubmission.vue:39
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:87
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:91
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/templates/quiz/quiz.html:148
|
||||
msgid "Score"
|
||||
@@ -4700,13 +4702,13 @@ msgstr ""
|
||||
|
||||
#. Label of the students (Table) field in DocType 'LMS Batch'
|
||||
#. Label of the show_students (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/components/BatchStudents.vue:9
|
||||
#: frontend/src/components/BatchStudents.vue:4
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Students"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:157
|
||||
#: frontend/src/components/BatchStudents.vue:192
|
||||
msgid "Students deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -4758,7 +4760,7 @@ msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchCourses.vue:150
|
||||
#: frontend/src/components/BatchOverlay.vue:135
|
||||
#: frontend/src/components/BatchStudents.vue:157
|
||||
#: frontend/src/components/BatchStudents.vue:192
|
||||
#: frontend/src/components/CourseCardOverlay.vue:161
|
||||
#: frontend/src/components/Modals/AnnouncementModal.vue:99
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:73
|
||||
@@ -4769,7 +4771,7 @@ msgstr ""
|
||||
#: frontend/src/components/Modals/Event.vue:310
|
||||
#: frontend/src/components/Modals/Question.vue:264
|
||||
#: frontend/src/components/Modals/Question.vue:315
|
||||
#: frontend/src/pages/CourseForm.vue:460 frontend/src/pages/ProgramForm.vue:229
|
||||
#: frontend/src/pages/CourseForm.vue:461 frontend/src/pages/ProgramForm.vue:229
|
||||
#: frontend/src/pages/ProgramForm.vue:251
|
||||
#: frontend/src/pages/ProgramForm.vue:272
|
||||
#: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:343
|
||||
@@ -4791,7 +4793,7 @@ msgstr "概要"
|
||||
msgid "Sunday"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:951
|
||||
#: lms/lms/api.py:952
|
||||
msgid "Suspicious pattern found in {0}: {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -4946,7 +4948,7 @@ msgstr ""
|
||||
msgid "There are no seats available in this batch."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:67
|
||||
#: frontend/src/components/BatchStudents.vue:86
|
||||
msgid "There are no students in this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -4954,7 +4956,7 @@ msgstr ""
|
||||
msgid "There are no {0} on this site."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:41
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:42
|
||||
msgid "There has been an update on your submission. You have got a score of {0} for the quiz {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -4977,7 +4979,7 @@ msgstr ""
|
||||
msgid "This course has:"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1582
|
||||
#: lms/lms/utils.py:1595
|
||||
msgid "This course is free."
|
||||
msgstr ""
|
||||
|
||||
@@ -5083,7 +5085,7 @@ msgstr ""
|
||||
#: frontend/src/pages/BatchForm.vue:20 frontend/src/pages/CourseForm.vue:32
|
||||
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/ProgramForm.vue:11
|
||||
#: frontend/src/pages/Programs.vue:118 frontend/src/pages/QuizForm.vue:48
|
||||
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
|
||||
#: frontend/src/pages/Quizzes.vue:116 lms/lms/doctype/cohort/cohort.json
|
||||
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
|
||||
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json
|
||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||
@@ -5119,7 +5121,7 @@ msgstr "至"
|
||||
msgid "To Date"
|
||||
msgstr "至今"
|
||||
|
||||
#: lms/lms/utils.py:1593
|
||||
#: lms/lms/utils.py:1606
|
||||
msgid "To join this batch, please contact the Administrator."
|
||||
msgstr ""
|
||||
|
||||
@@ -5136,7 +5138,7 @@ msgid "Total"
|
||||
msgstr "总"
|
||||
|
||||
#. Label of the total_marks (Int) field in DocType 'LMS Quiz'
|
||||
#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:119
|
||||
#: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:121
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
msgid "Total Marks"
|
||||
msgstr ""
|
||||
@@ -5537,11 +5539,11 @@ msgstr ""
|
||||
msgid "You have been enrolled in this course"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:38
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:39
|
||||
msgid "You have got a score of {0} for the quiz {1}"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Quizzes.vue:60
|
||||
#: frontend/src/pages/Quizzes.vue:65
|
||||
msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above."
|
||||
msgstr ""
|
||||
|
||||
|
||||
Reference in New Issue
Block a user