Merge remote-tracking branch 'origin/develop' into develop

This commit is contained in:
Fahid Latheef Alungal
2024-11-10 02:13:21 +05:30
37 changed files with 2601 additions and 1298 deletions

View File

@@ -25,7 +25,7 @@
</div>
</template>
<script setup>
import { createListResource, Avatar } from 'frappe-ui'
import { createResource, Avatar } from 'frappe-ui'
import { timeAgo } from '@/utils'
const props = defineProps({
@@ -35,24 +35,15 @@ const props = defineProps({
},
})
const communications = createListResource({
doctype: 'Communication',
fields: [
'subject',
'content',
'recipients',
'cc',
'communication_date',
'sender',
'sender_full_name',
],
filters: {
reference_doctype: 'LMS Batch',
reference_name: props.batch,
const communications = createResource({
url: 'lms.lms.api.get_announcements',
makeParams(value) {
return {
batch: props.batch,
}
},
orderBy: 'communication_date desc',
auto: true,
cache: ['batch', props.batch],
cache: ['announcement', props.batch],
})
</script>
<style>

View File

@@ -10,13 +10,13 @@
:style="{ backgroundImage: 'url(\'' + encodeURI(course.image) + '\')' }"
>
<div
class="flex items-center flex-wrap space-y-1 space-x-1 relative top-4 px-2 w-fit"
class="flex items-center flex-wrap space-x-1 relative top-4 px-2 w-fit"
>
<Badge v-if="course.featured" variant="subtle" theme="green" size="md">
{{ __('Featured') }}
</Badge>
<Badge
variant="outline"
variant="subtle"
theme="gray"
size="md"
v-for="tag in course.tags"

View File

@@ -48,7 +48,7 @@
<a
:href="cls.join_url"
target="_blank"
class="w-1/2 cursor-pointer inline-flex items-center justify-center gap-2 transition-colors focus:outline-none text-gray-800 bg-gray-100 hover:bg-gray-200 active:bg-gray-300 focus-visible:ring focus-visible:ring-gray-400 h-7 text-base px-2 rounded"
class="w-full cursor-pointer inline-flex items-center justify-center gap-2 transition-colors focus:outline-none text-gray-800 bg-gray-100 hover:bg-gray-200 active:bg-gray-300 focus-visible:ring focus-visible:ring-gray-400 h-7 text-base px-2 rounded"
>
<Video class="h-4 w-4 stroke-1.5" />
{{ __('Join') }}

View File

@@ -44,7 +44,7 @@
<script setup>
import { Dialog, Input, TextEditor, createResource } from 'frappe-ui'
import { reactive } from 'vue'
import { createToast } from '@/utils/'
import { showToast } from '@/utils/'
const show = defineModel()
@@ -94,22 +94,14 @@ const makeAnnouncement = (close) => {
},
onSuccess() {
close()
createToast({
title: 'Success',
text: 'Announcement has been sent successfully',
icon: 'Check',
iconClasses: 'bg-green-600 text-white rounded-md p-px',
})
showToast(
__('Success'),
__('Announcement has been sent successfully'),
'check'
)
},
onError(err) {
createToast({
title: 'Error',
text: err.messages?.[0] || err,
icon: 'x',
iconClasses: 'bg-red-600 text-white rounded-md p-px',
position: 'top-center',
timeout: 10,
})
showToast(__('Error'), __(err.messages?.[0] || err), 'check')
},
}
)

View File

@@ -154,10 +154,12 @@ function submitEvaluation(close) {
const getCourses = () => {
let courses = []
for (const course of props.courses) {
courses.push({
label: course.title,
value: course.course,
})
if (course.evaluator) {
courses.push({
label: course.title,
value: course.course,
})
}
}
return courses
}

View File

@@ -236,7 +236,7 @@ const breadcrumbs = computed(() => {
const isStudent = computed(() => {
return (
user?.data &&
batch.data?.students.length &&
batch.data?.students?.length &&
batch.data?.students.includes(user.data.name)
)
})

View File

@@ -83,6 +83,7 @@
v-model="instructors"
doctype="User"
:label="__('Instructors')"
:filters="{ ignore_user_type: 1 }"
/>
<div class="mb-4">
<FormControl

View File

@@ -7,6 +7,14 @@
>
<Breadcrumbs class="h-7" :items="breadcrumbs" />
<div class="flex items-center mt-3 md:mt-0">
<Button v-if="courseResource.data?.name" @click="trashCourse()">
<template #prefix>
<Trash2 class="w-4 h-4 stroke-1.5" />
</template>
<span>
{{ __('Delete') }}
</span>
</Button>
<Button variant="solid" @click="submitCourse()" class="ml-2">
<span>
{{ __('Save') }}
@@ -144,6 +152,7 @@
v-model="instructors"
doctype="User"
:label="__('Instructors')"
:filters="{ ignore_user_type: 1 }"
:required="true"
/>
</div>
@@ -247,15 +256,11 @@ import {
ref,
reactive,
watch,
getCurrentInstance,
} from 'vue'
import {
convertToTitleCase,
showToast,
getFileSize,
updateDocumentTitle,
} from '@/utils'
import { showToast, updateDocumentTitle } from '@/utils'
import Link from '@/components/Controls/Link.vue'
import { FileText, Image, X } from 'lucide-vue-next'
import { Image, Trash2, X } from 'lucide-vue-next'
import { useRouter } from 'vue-router'
import CourseOutline from '@/components/CourseOutline.vue'
import MultiSelect from '@/components/Controls/MultiSelect.vue'
@@ -267,6 +272,8 @@ const newTag = ref('')
const router = useRouter()
const instructors = ref([])
const settingsStore = useSettings()
const app = getCurrentInstance()
const { $dialog } = app.appContext.config.globalProperties
const props = defineProps({
courseName: {
@@ -439,23 +446,37 @@ const submitCourse = () => {
}
}
const validateMandatoryFields = () => {
const mandatory_fields = [
'title',
'short_introduction',
'description',
'video_link',
'course_image',
]
for (const field of mandatory_fields) {
if (!course[field]) {
let fieldLabel = convertToTitleCase(field.split('_').join(' '))
return `${fieldLabel} is mandatory`
const deleteCourse = createResource({
url: 'lms.lms.api.delete_course',
makeParams(values) {
return {
course: props.courseName,
}
}
if (course.paid_course && (!course.course_price || !course.currency)) {
return __('Course price and currency are mandatory for paid courses')
}
},
onSuccess() {
showToast(__('Success'), __('Course deleted successfully'), 'check')
router.push({ name: 'Courses' })
},
})
const trashCourse = () => {
$dialog({
title: __('Delete Course'),
message: __(
'Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?'
),
actions: [
{
label: __('Delete'),
theme: 'red',
variant: 'solid',
onClick(close) {
deleteCourse.submit()
close()
},
},
],
})
}
watch(

View File

@@ -145,7 +145,7 @@
<div class="text-xl font-medium">
{{ __('No courses found') }}
</div>
<div>
<div class="leading-5">
{{
__(
'There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!'

View File

@@ -17,14 +17,9 @@
)
}}
</p>
<router-link
v-if="user.data"
:to="{ name: 'CourseDetail', params: { courseName: courseName } }"
>
<Button variant="solid">
{{ __('Start Learning') }}
</Button>
</router-link>
<Button v-if="user.data" @click="enrollStudent()" variant="solid">
{{ __('Start Learning') }}
</Button>
<Button v-else @click="redirectToLogin()">
{{ __('Login') }}
</Button>
@@ -194,7 +189,7 @@ import { createResource, Breadcrumbs, Button } from 'frappe-ui'
import { computed, watch, inject, ref, onMounted, onBeforeUnmount } from 'vue'
import CourseOutline from '@/components/CourseOutline.vue'
import UserAvatar from '@/components/UserAvatar.vue'
import { useRoute } from 'vue-router'
import { useRouter, useRoute } from 'vue-router'
import { ChevronLeft, ChevronRight } from 'lucide-vue-next'
import Discussions from '@/components/Discussions.vue'
import { getEditorTools, updateDocumentTitle } from '../utils'
@@ -204,6 +199,7 @@ import CourseInstructors from '@/components/CourseInstructors.vue'
import ProgressBar from '@/components/ProgressBar.vue'
const user = inject('$user')
const router = useRouter()
const route = useRoute()
const allowDiscussions = ref(false)
const editor = ref(null)
@@ -243,6 +239,10 @@ const lesson = createResource({
},
auto: true,
onSuccess(data) {
if (Object.keys(data).length === 0) {
router.push({ name: 'Courses' })
return
}
lessonProgress.value = data.membership?.progress
if (data.content) editor.value = renderEditor('editor', data.content)
if (
@@ -379,6 +379,30 @@ const allowInstructorContent = () => {
return false
}
const enrollment = createResource({
url: 'frappe.client.insert',
makeParams() {
return {
doc: {
doctype: 'LMS Enrollment',
course: props.courseName,
member: user.data?.name,
},
}
},
})
const enrollStudent = () => {
enrollment.submit(
{},
{
onSuccess() {
window.location.reload()
},
}
)
}
const redirectToLogin = () => {
window.location.href = `/login?redirect-to=/lms/courses/${props.courseName}`
}

View File

@@ -47,6 +47,22 @@
</ListRows>
</ListView>
</div>
<div
v-else
class="text-center p-5 text-gray-600 mt-52 w-3/4 md:w-1/2 mx-auto space-y-2"
>
<BookOpen class="size-10 mx-auto stroke-1 text-gray-500" />
<div class="text-xl font-medium">
{{ __('No quizzes found') }}
</div>
<div class="leading-5">
{{
__(
'You have not created any quizzes yet. To create a new quiz, click on the "New Quiz" button above.'
)
}}
</div>
</div>
</template>
<script setup>
import {
@@ -61,7 +77,7 @@ import {
} from 'frappe-ui'
import { useRouter } from 'vue-router'
import { computed, inject, onMounted } from 'vue'
import { Plus } from 'lucide-vue-next'
import { BookOpen, Plus } from 'lucide-vue-next'
import { updateDocumentTitle } from '@/utils'
const user = inject('$user')

View File

@@ -1 +1 @@
__version__ = "2.9.0"
__version__ = "2.10.0"

View File

@@ -1,10 +1,12 @@
import frappe
from frappe.desk.page.setup_wizard.setup_wizard import add_all_roles_to
from lms.lms.api import give_dicussions_permission
def after_install():
add_pages_to_nav()
create_batch_source()
give_dicussions_permission()
def after_sync():

View File

@@ -490,7 +490,15 @@ def delete_sidebar_item(webpage):
@frappe.whitelist()
def delete_lesson(lesson, chapter):
frappe.db.delete("Lesson Reference", {"parent": chapter, "lesson": lesson})
# Delete Reference
chapter = frappe.get_doc("Course Chapter", chapter)
chapter.lessons = [row for row in chapter.lessons if row.lesson != lesson]
chapter.save()
# Delete progress
frappe.db.delete("LMS Course Progress", {"lesson": lesson})
# Delete Lesson
frappe.db.delete("Course Lesson", lesson)
@@ -781,3 +789,88 @@ def update_course_statistics():
course.name,
{"lessons": lessons, "enrollments": enrollments, "rating": avg_rating},
)
@frappe.whitelist()
def get_announcements(batch):
return frappe.get_all(
"Communication",
filters={
"reference_doctype": "LMS Batch",
"reference_name": batch,
},
fields=[
"subject",
"content",
"recipients",
"cc",
"communication_date",
"sender",
"sender_full_name",
],
order_by="communication_date desc",
)
@frappe.whitelist()
def delete_course(course):
chapters = frappe.get_all("Course Chapter", {"course": course}, pluck="name")
chapter_references = frappe.get_all(
"Chapter Reference", {"parent": course}, pluck="name"
)
for chapter in chapters:
lessons = frappe.get_all("Course Lesson", {"chapter": chapter}, pluck="name")
lesson_references = frappe.get_all(
"Lesson Reference", {"parent": chapter}, pluck="name"
)
for lesson in lesson_references:
frappe.delete_doc("Lesson Reference", lesson)
for lesson in lessons:
frappe.db.delete("LMS Course Progress", {"lesson": lesson})
topics = frappe.get_all(
"Discussion Topic",
{"reference_doctype": "Course Lesson", "reference_docname": lesson},
pluck="name",
)
for topic in topics:
frappe.db.delete("Discussion Reply", {"topic": topic})
frappe.db.delete("Discussion Topic", topic)
frappe.delete_doc("Course Lesson", lesson)
for chapter in chapter_references:
frappe.delete_doc("Chapter Reference", chapter)
for chapter in chapters:
frappe.delete_doc("Course Chapter", chapter)
frappe.db.delete("LMS Enrollment", {"course": course})
frappe.delete_doc("LMS Course", course)
def give_dicussions_permission():
doctypes = ["Discussion Topic", "Discussion Reply"]
roles = ["LMS Student", "Course Creator", "Moderator", "Batch Evaluator"]
for doctype in doctypes:
for role in roles:
if not frappe.db.exists("Custom DocPerm", {"parent": doctype, "role": role}):
frappe.get_doc(
{
"doctype": "Custom DocPerm",
"parent": doctype,
"role": role,
"read": 1,
"write": 1,
"create": 1,
"delete": 1,
}
).save(ignore_permissions=True)

View File

@@ -7,17 +7,3 @@ from frappe.model.document import Document
class BatchStudent(Document):
pass
@frappe.whitelist()
def enroll_batch(batch_name):
if frappe.db.exists(
"Batch Student", {"student": frappe.session.user, "parent": batch_name}
):
frappe.throw("You are already enrolled in this batch")
enrollment = frappe.new_doc("Batch Student")
enrollment.student = frappe.session.user
enrollment.parent = batch_name
enrollment.parentfield = "students"
enrollment.parenttype = "LMS Batch"
enrollment.save(ignore_permissions=True)

View File

@@ -1,10 +1,27 @@
# Copyright (c) 2021, FOSS United and contributors
# For license information, please see license.txt
# import frappe
import frappe
from frappe.model.document import Document
from frappe.utils.telemetry import capture
from lms.lms.utils import get_course_progress
from lms.lms.api import update_course_statistics
class CourseChapter(Document):
pass
def on_update(self):
self.recalculate_course_progress()
update_course_statistics()
def recalculate_course_progress(self):
previous_lessons = (
self.get_doc_before_save() and self.get_doc_before_save().as_dict().lessons
)
current_lessons = self.lessons
if previous_lessons and previous_lessons != current_lessons:
enrolled_members = frappe.get_all(
"LMS Enrollment", {"course": self.course}, ["member", "name"]
)
for enrollment in enrolled_members:
new_progress = get_course_progress(self.course, enrollment.member)
frappe.db.set_value("LMS Enrollment", enrollment.name, "progress", new_progress)

View File

@@ -33,6 +33,7 @@ class LMSBatch(Document):
self.validate_timetable()
self.send_confirmation_mail()
self.validate_evaluation_end_date()
self.add_students_to_live_class()
def validate_batch_end_date(self):
if self.end_date < self.start_date:
@@ -139,6 +140,27 @@ class LMSBatch(Document):
if cint(self.seat_count) < len(self.students):
frappe.throw(_("There are no seats available in this batch."))
def add_students_to_live_class(self):
for student in self.students:
if student.is_new():
live_classes = frappe.get_all(
"LMS Live Class", {"batch_name": self.name}, ["name", "event"]
)
for live_class in live_classes:
if live_class.event:
frappe.get_doc(
{
"doctype": "Event Participants",
"reference_doctype": "User",
"reference_docname": student.student,
"email": student.student,
"parent": live_class.event,
"parenttype": "Event",
"parentfield": "event_participants",
}
).save()
def validate_timetable(self):
for schedule in self.timetable:
if schedule.start_time and schedule.end_time:

View File

@@ -10,19 +10,20 @@
"title",
"host",
"batch_name",
"event",
"column_break_astv",
"date",
"time",
"duration",
"section_break_glxh",
"description",
"section_break_glxh",
"date",
"duration",
"column_break_spvt",
"time",
"timezone",
"password",
"auto_recording",
"section_break_yrpq",
"password",
"start_url",
"column_break_yokr",
"auto_recording",
"join_url"
],
"fields": [
@@ -122,11 +123,18 @@
"fieldtype": "Select",
"label": "Auto Recording",
"options": "No Recording\nLocal\nCloud"
},
{
"fieldname": "event",
"fieldtype": "Link",
"label": "Event",
"options": "Event",
"read_only": 1
}
],
"index_web_pages_for_search": 1,
"links": [],
"modified": "2024-01-09 11:22:33.272341",
"modified": "2024-10-31 15:41:35.540856",
"modified_by": "Administrator",
"module": "LMS",
"name": "LMS Live Class",

View File

@@ -16,6 +16,7 @@ class LMSLiveClass(Document):
if calendar:
event = self.create_event()
self.add_event_participants(event, calendar)
frappe.db.set_value(self.doctype, self.name, "event", event.name)
def create_event(self):
start = f"{self.date} {self.time}"

View File

@@ -76,6 +76,7 @@
"default": "0",
"fieldname": "payment_received",
"fieldtype": "Check",
"in_standard_filter": 1,
"label": "Payment Received"
},
{
@@ -140,7 +141,7 @@
],
"index_web_pages_for_search": 1,
"links": [],
"modified": "2023-10-26 16:54:12.408274",
"modified": "2024-10-31 15:33:39.420366",
"modified_by": "Administrator",
"module": "LMS",
"name": "LMS Payment",

View File

@@ -57,12 +57,15 @@ class LMSQuiz(Document):
types = [question.type for question in self.questions]
types = set(types)
if "Open Ended" in types and len(types) > 1:
frappe.throw(
_(
"If you want open ended questions then make sure each question in the quiz is of open ended type."
if "Open Ended" in types:
if len(types) > 1:
frappe.throw(
_(
"If you want open ended questions then make sure each question in the quiz is of open ended type."
)
)
)
else:
self.show_answers = 0
def autoname(self):
if not self.name:

View File

@@ -503,11 +503,6 @@ def first_lesson_exists(course):
return True
def redirect_to_courses_list():
frappe.local.flags.redirect_location = "/lms/courses"
raise frappe.Redirect
def has_course_instructor_role(member=None):
return frappe.db.get_value(
"Has Role",
@@ -1108,7 +1103,7 @@ def get_categorized_courses(courses):
categories = [live, enrolled, created]
for category in categories:
category.sort(key=lambda x: x.enrollments, reverse=True)
category.sort(key=lambda x: cint(x.enrollments), reverse=True)
live.sort(key=lambda x: x.featured, reverse=True)
@@ -1153,6 +1148,9 @@ def get_lesson(course, chapter, lesson):
lesson_details = frappe.db.get_value(
"Course Lesson", lesson_name, ["include_in_preview", "title"], as_dict=1
)
if not lesson_details:
return {}
membership = get_membership(course)
course_title = frappe.db.get_value("LMS Course", course, "title")
if (
@@ -1267,7 +1265,7 @@ def get_batch_details(batch):
batch_details.instructors = get_instructors(batch)
batch_details.courses = frappe.get_all(
"Batch Course", filters={"parent": batch}, fields=["course", "title"]
"Batch Course", filters={"parent": batch}, fields=["course", "title", "evaluator"]
)
batch_details.students = frappe.get_all(
"Batch Student", {"parent": batch}, pluck="student"

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-10-18 16:04+0000\n"
"PO-Revision-Date: 2024-10-26 11:24\n"
"POT-Creation-Date: 2024-11-01 16:04+0000\n"
"PO-Revision-Date: 2024-11-05 14:33\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Arabic\n"
"MIME-Version: 1.0\n"
@@ -62,6 +62,10 @@ msgstr ""
msgid "<span style=\"font-size: 18px;\"><b>Statistics</b></span>"
msgstr ""
#: frontend/src/pages/CourseForm.vue:32
msgid "A one line introduction to the course that appears on the course card"
msgstr ""
#: frontend/src/pages/ProfileAbout.vue:4
msgid "About"
msgstr ""
@@ -102,7 +106,6 @@ msgstr "إضافة"
#: frontend/src/components/CourseOutline.vue:11
#: frontend/src/components/CreateOutline.vue:18
#: frontend/src/components/Modals/ChapterModal.vue:5
#: frontend/src/components/Modals/ChapterModal.vue:9
msgid "Add Chapter"
msgstr ""
@@ -225,7 +228,7 @@ msgstr "مسجل بالفعل"
#. Label of the amount (Currency) field in DocType 'Web Form'
#. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the amount (Currency) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:198 lms/fixtures/custom_field.json
#: frontend/src/pages/BatchForm.vue:208 lms/fixtures/custom_field.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/public/js/common_functions.js:379
@@ -269,6 +272,14 @@ msgstr ""
msgid "Answer"
msgstr ""
#: frontend/src/pages/CourseForm.vue:76 frontend/src/pages/CourseForm.vue:94
msgid "Appears on the course card in the course list"
msgstr ""
#: frontend/src/pages/BatchForm.vue:55 frontend/src/pages/BatchForm.vue:73
msgid "Appears when the batch URL is shared on any online platform"
msgstr ""
#: frontend/src/pages/JobDetail.vue:131
msgid "Applications Received"
msgstr ""
@@ -467,7 +478,7 @@ msgid "Batch Description"
msgstr "وصف الباتش"
#. Label of the batch_details (Text Editor) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:89 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:97 lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:349
#: lms/templates/emails/batch_confirmation.html:30
msgid "Batch Details"
@@ -634,8 +645,8 @@ msgstr ""
#. Label of the category (Link) field in DocType 'LMS Batch'
#. Label of the category (Data) field in DocType 'LMS Category'
#. Label of the category (Link) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:179 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:116 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/BatchForm.vue:189 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:139 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/JobDetail.vue:102
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json
@@ -936,7 +947,7 @@ msgstr ""
msgid "Completed"
msgstr "أكتمل"
#: frontend/src/pages/CourseForm.vue:168
#: frontend/src/pages/CourseForm.vue:192
msgid "Completion Certificate"
msgstr ""
@@ -986,7 +997,7 @@ msgstr ""
msgid "Contract"
msgstr "عقد"
#: lms/lms/utils.py:423
#: lms/lms/utils.py:442
msgid "Cookie Policy"
msgstr ""
@@ -1107,7 +1118,7 @@ msgstr ""
msgid "Course Data"
msgstr ""
#: frontend/src/pages/CourseForm.vue:34
#: frontend/src/pages/CourseForm.vue:41
msgid "Course Description"
msgstr ""
@@ -1116,7 +1127,7 @@ msgstr ""
msgid "Course Evaluator"
msgstr ""
#: frontend/src/pages/CourseForm.vue:64
#: frontend/src/pages/CourseForm.vue:54
msgid "Course Image"
msgstr ""
@@ -1139,7 +1150,7 @@ msgid "Course Name"
msgstr ""
#. Label of the course_price (Currency) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:186
#: frontend/src/pages/CourseForm.vue:210
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Course Price"
msgstr ""
@@ -1172,7 +1183,7 @@ msgstr ""
msgid "Course already added to the batch."
msgstr ""
#: frontend/src/pages/CourseForm.vue:433
#: frontend/src/pages/CourseForm.vue:457
msgid "Course price and currency are mandatory for paid courses"
msgstr ""
@@ -1210,6 +1221,10 @@ msgstr ""
msgid "Cover Image"
msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:9
msgid "Create"
msgstr "انشاء"
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7
msgid "Create LMS Certificate"
msgstr ""
@@ -1218,7 +1233,11 @@ msgstr ""
msgid "Create LMS Certificate Evaluation"
msgstr ""
#: lms/templates/onboarding_header.html:19
#: frontend/src/pages/Batches.vue:110
msgid "Create a Batch"
msgstr ""
#: frontend/src/pages/Courses.vue:131 lms/templates/onboarding_header.html:19
msgid "Create a Course"
msgstr ""
@@ -1234,7 +1253,7 @@ msgstr ""
#. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course'
#. Label of the currency (Link) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:206 frontend/src/pages/CourseForm.vue:193
#: frontend/src/pages/BatchForm.vue:216 frontend/src/pages/CourseForm.vue:217
#: lms/fixtures/custom_field.json lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_payment/lms_payment.json
@@ -1292,7 +1311,7 @@ msgstr "تاريخ"
#. Label of the section_break_glxh (Section Break) field in DocType 'LMS Live
#. Class'
#: frontend/src/pages/BatchForm.vue:102
#: frontend/src/pages/BatchForm.vue:110
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Date and Time"
msgstr ""
@@ -1340,7 +1359,6 @@ msgstr ""
#. Label of the description (Markdown Editor) field in DocType 'Cohort'
#. Label of the description (Markdown Editor) field in DocType 'Cohort
#. Subgroup'
#. Label of the description (Small Text) field in DocType 'Course Chapter'
#. Label of the description (Small Text) field in DocType 'LMS Badge'
#. Label of the description (Small Text) field in DocType 'LMS Batch'
#. Label of the description (Markdown Editor) field in DocType 'LMS Batch Old'
@@ -1349,12 +1367,11 @@ msgstr ""
#. Label of the description (Text) field in DocType 'LMS Live Class'
#. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:73
#: frontend/src/pages/BatchForm.vue:83 frontend/src/pages/JobCreation.vue:43
#: frontend/src/pages/BatchForm.vue:90 frontend/src/pages/JobCreation.vue:43
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/lms_badge/lms_badge.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -1376,7 +1393,7 @@ msgstr ""
msgid "Details"
msgstr "تفاصيل"
#: frontend/src/pages/CourseForm.vue:163
#: frontend/src/pages/CourseForm.vue:187
msgid "Disable Self Enrollment"
msgstr ""
@@ -1451,13 +1468,14 @@ msgstr ""
#: frontend/src/components/BatchOverlay.vue:93
#: frontend/src/components/CourseCardOverlay.vue:86
#: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:70
#: frontend/src/pages/Profile.vue:32
msgid "Edit"
msgstr "تصحيح"
#: frontend/src/components/CourseOutline.vue:106
#: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/components/Modals/ChapterModal.vue:5
msgid "Edit Chapter"
msgstr ""
@@ -1533,7 +1551,7 @@ msgstr "تمكين"
#. Label of the end_date (Date) field in DocType 'Cohort'
#. Label of the end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:114 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/BatchForm.vue:122 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:282
msgid "End Date"
@@ -1551,7 +1569,7 @@ msgstr ""
#. Label of the end_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the end_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the end_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:128
#: frontend/src/pages/BatchForm.vue:136
#: frontend/src/pages/ProfileEvaluator.vue:18
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1587,13 +1605,15 @@ msgstr ""
msgid "Enrollment Count"
msgstr ""
#: lms/lms/utils.py:1683
#: lms/lms/utils.py:1692
msgid "Enrollment Failed"
msgstr ""
#. Label of the enrollments (Data) field in DocType 'LMS Course'
#. Label of a chart in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/pages/Statistics.vue:45 lms/lms/workspace/lms/lms.json
#: frontend/src/pages/Statistics.vue:45
#: lms/lms/doctype/lms_course/lms_course.json lms/lms/workspace/lms/lms.json
msgid "Enrollments"
msgstr ""
@@ -1635,7 +1655,7 @@ msgid "Evaluation Details"
msgstr ""
#. Label of the evaluation_end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:155
#: frontend/src/pages/BatchForm.vue:165
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:333
msgid "Evaluation End Date"
@@ -1697,6 +1717,10 @@ msgstr ""
msgid "Event"
msgstr "حدث"
#: frontend/src/pages/BatchForm.vue:144
msgid "Example: IST (+5:30)"
msgstr ""
#. Label of the exercise (Link) field in DocType 'Exercise Latest Submission'
#. Label of the exercise (Link) field in DocType 'Exercise Submission'
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
@@ -1767,7 +1791,7 @@ msgstr ""
#. Label of the featured (Check) field in DocType 'LMS Course'
#: frontend/src/components/CourseCard.vue:16
#: frontend/src/pages/CourseForm.vue:156
#: frontend/src/pages/CourseForm.vue:180
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Featured"
msgstr "متميز"
@@ -2030,6 +2054,10 @@ msgstr "هوية شخصية"
msgid "Icon"
msgstr "أيقونة"
#: frontend/src/components/LessonHelp.vue:68
msgid "If Include in Preview is enabled for a lesson then the lesson will also be accessible to non logged in users."
msgstr ""
#: lms/templates/emails/mentor_request_creation_email.html:5
msgid "If you are not any more interested to mentor the course"
msgstr ""
@@ -2166,7 +2194,7 @@ msgstr ""
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch'
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:77 frontend/src/pages/CourseForm.vue:123
#: frontend/src/pages/BatchForm.vue:85 frontend/src/pages/CourseForm.vue:146
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Instructors"
@@ -2311,7 +2339,7 @@ msgstr "المسمى الوظيفي"
msgid "Jobs"
msgstr "وظائف"
#: frontend/src/components/LiveClass.vue:53
#: frontend/src/components/LiveClass.vue:54
#: lms/templates/upcoming_evals.html:15
msgid "Join"
msgstr "انضم"
@@ -2325,6 +2353,10 @@ msgstr ""
msgid "Join URL"
msgstr ""
#: frontend/src/pages/CourseForm.vue:128
msgid "Keywords for the course"
msgstr ""
#. Name of a Workspace
#: lms/lms/workspace/lms/lms.json
msgid "LMS"
@@ -2578,9 +2610,11 @@ msgstr ""
#. Label of the lessons (Table) field in DocType 'Course Chapter'
#. Group in Course Chapter's connections
#. Label of the lessons (Data) field in DocType 'LMS Course'
#: frontend/src/components/CourseCard.vue:34
#: frontend/src/components/CourseCardOverlay.vue:96
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Lessons"
msgstr ""
@@ -2753,7 +2787,7 @@ msgid "Maximun Attempts"
msgstr ""
#. Label of the medium (Select) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:174
#: frontend/src/pages/BatchForm.vue:184
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:309
msgid "Medium"
@@ -2901,7 +2935,7 @@ msgid "Mentors"
msgstr ""
#. Label of the meta_image (Attach Image) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:53 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:36 lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:362
msgid "Meta Image"
msgstr "صورة ميتا"
@@ -2937,11 +2971,11 @@ msgstr ""
msgid "Modified By"
msgstr "عدل من قبل"
#: lms/lms/api.py:190
#: lms/lms/api.py:191
msgid "Module Name is incorrect or does not exist."
msgstr ""
#: lms/lms/api.py:186
#: lms/lms/api.py:187
msgid "Module is incorrect."
msgstr ""
@@ -3008,11 +3042,11 @@ msgstr ""
msgid "New Sign Up"
msgstr ""
#: lms/lms/utils.py:613
#: lms/lms/utils.py:632
msgid "New comment in batch {0}"
msgstr ""
#: lms/lms/utils.py:606
#: lms/lms/utils.py:625
msgid "New reply on the topic {0} in course {1}"
msgstr ""
@@ -3050,6 +3084,10 @@ msgstr ""
msgid "No announcements"
msgstr ""
#: frontend/src/pages/Batches.vue:125
msgid "No batches found"
msgstr ""
#: lms/templates/certificates_section.html:23
msgid "No certificates"
msgstr ""
@@ -3058,6 +3096,10 @@ msgstr ""
msgid "No courses created"
msgstr ""
#: frontend/src/pages/Courses.vue:146
msgid "No courses found"
msgstr ""
#: lms/templates/courses_under_review.html:14
msgid "No courses under review"
msgstr ""
@@ -3070,7 +3112,7 @@ msgstr ""
msgid "No jobs posted"
msgstr ""
#: frontend/src/components/LiveClass.vue:59
#: frontend/src/components/LiveClass.vue:60
msgid "No live classes scheduled"
msgstr ""
@@ -3086,12 +3128,12 @@ msgstr ""
msgid "No {0}"
msgstr ""
#: frontend/src/pages/Batches.vue:88
msgid "No {0} batches found"
#: frontend/src/pages/Batches.vue:84
msgid "No {0} batches"
msgstr ""
#: frontend/src/pages/Courses.vue:110
msgid "No {0} courses found"
#: frontend/src/pages/Courses.vue:106
msgid "No {0} courses"
msgstr ""
#: lms/templates/quiz/quiz.html:147
@@ -3146,6 +3188,10 @@ msgstr "إخطارات"
msgid "Notify me when available"
msgstr ""
#: frontend/src/pages/BatchForm.vue:161
msgid "Number of seats available"
msgstr ""
#. Label of the sb_00 (Section Break) field in DocType 'Zoom Settings'
#: lms/lms/doctype/zoom_settings/zoom_settings.json
msgid "OAuth Client ID"
@@ -3178,7 +3224,7 @@ msgstr ""
msgid "Only files of type {0} will be accepted."
msgstr ""
#: frontend/src/pages/CourseForm.vue:449 frontend/src/utils/index.js:509
#: frontend/src/pages/CourseForm.vue:473 frontend/src/utils/index.js:518
msgid "Only image file is allowed."
msgstr ""
@@ -3286,14 +3332,14 @@ msgid "Pages"
msgstr ""
#. Label of the paid_batch (Check) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:194
#: frontend/src/pages/BatchForm.vue:204
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:373
msgid "Paid Batch"
msgstr ""
#. Label of the paid_course (Check) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:181
#: frontend/src/pages/CourseForm.vue:205
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Paid Course"
msgstr ""
@@ -3335,9 +3381,13 @@ msgstr ""
msgid "Password"
msgstr "كلمة السر"
#: frontend/src/pages/CourseForm.vue:104
msgid "Paste the youtube link of a short video introducing the course"
msgstr ""
#. Label of the payment (Link) field in DocType 'Batch Student'
#. Label of the payment (Link) field in DocType 'LMS Enrollment'
#: frontend/src/pages/BatchForm.vue:188
#: frontend/src/pages/BatchForm.vue:198
#: lms/lms/doctype/batch_student/batch_student.json
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
msgid "Payment"
@@ -3429,7 +3479,7 @@ msgstr ""
msgid "Phone Number"
msgstr "رقم الهاتف"
#: frontend/src/components/CourseCardOverlay.vue:143
#: frontend/src/components/CourseCardOverlay.vue:141
msgid "Please Login"
msgstr ""
@@ -3490,7 +3540,7 @@ msgstr ""
msgid "Please login to access this page."
msgstr ""
#: lms/lms/api.py:182
#: lms/lms/api.py:183
msgid "Please login to continue with payment."
msgstr ""
@@ -3580,7 +3630,7 @@ msgstr ""
msgid "Preview Image"
msgstr "معاينة الصورة"
#: frontend/src/pages/CourseForm.vue:86
#: frontend/src/pages/CourseForm.vue:102
msgid "Preview Video"
msgstr ""
@@ -3590,7 +3640,7 @@ msgstr "سابق"
#. Label of the pricing_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the pricing_tab (Tab Break) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:175
#: frontend/src/pages/CourseForm.vue:199
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:368
@@ -3608,7 +3658,7 @@ msgstr ""
msgid "Primary Subgroup"
msgstr ""
#: lms/lms/utils.py:422
#: lms/lms/utils.py:441
msgid "Privacy Policy"
msgstr ""
@@ -3660,7 +3710,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Batch'
#. Label of the published (Check) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:108
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:138
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:162
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:266
@@ -3673,7 +3723,7 @@ msgid "Published Courses"
msgstr ""
#. Label of the published_on (Date) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:142
#: frontend/src/pages/CourseForm.vue:166
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Published On"
msgstr "نشرت في"
@@ -3794,11 +3844,13 @@ msgid "Quizzes"
msgstr ""
#. Label of the rating (Rating) field in DocType 'LMS Certificate Evaluation'
#. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:109
#: frontend/src/components/CourseCardOverlay.vue:108
#: frontend/src/components/Modals/Event.vue:86
#: frontend/src/components/Modals/ReviewModal.vue:20
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_course_review/lms_course_review.json
#: lms/templates/reviews.html:125
msgid "Rating"
@@ -3869,6 +3921,10 @@ msgstr "مرفوض"
msgid "Related Courses"
msgstr ""
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/CourseForm.vue:91
msgid "Remove"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:26
msgid "Reply To"
msgstr ""
@@ -4024,7 +4080,7 @@ msgid "Search for an icon"
msgstr ""
#. Label of the seat_count (Int) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:149
#: frontend/src/pages/BatchForm.vue:158
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:327
msgid "Seat Count"
@@ -4068,7 +4124,7 @@ msgid "Set your Password"
msgstr ""
#: frontend/src/components/Modals/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:143 frontend/src/pages/CourseForm.vue:128
#: frontend/src/pages/BatchForm.vue:152 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:78
msgid "Settings"
msgstr "إعدادات"
@@ -4078,11 +4134,15 @@ msgid "Share on"
msgstr ""
#. Label of the short_introduction (Small Text) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:29
#: frontend/src/pages/CourseForm.vue:30
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Short Introduction"
msgstr ""
#: frontend/src/pages/BatchForm.vue:93
msgid "Short description of the batch"
msgstr ""
#. Label of the show_answer (Check) field in DocType 'LMS Assignment'
#: lms/lms/doctype/lms_assignment/lms_assignment.json
msgid "Show Answer"
@@ -4235,7 +4295,7 @@ msgstr ""
msgid "Stage"
msgstr ""
#: frontend/src/components/LiveClass.vue:45 frontend/src/components/Quiz.vue:65
#: frontend/src/components/LiveClass.vue:46 frontend/src/components/Quiz.vue:65
#: lms/templates/quiz/quiz.html:39
msgid "Start"
msgstr "بداية"
@@ -4243,7 +4303,7 @@ msgstr "بداية"
#. Label of the start_date (Date) field in DocType 'Education Detail'
#. Label of the start_date (Date) field in DocType 'LMS Batch'
#. Label of the start_date (Date) field in DocType 'LMS Batch Old'
#: frontend/src/pages/BatchForm.vue:108
#: frontend/src/pages/BatchForm.vue:116
#: lms/lms/doctype/education_detail/education_detail.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -4264,7 +4324,7 @@ msgstr ""
#. Label of the start_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the start_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the start_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:122
#: frontend/src/pages/BatchForm.vue:130
#: frontend/src/pages/ProfileEvaluator.vue:15
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -4303,7 +4363,9 @@ msgstr ""
msgid "State"
msgstr "حالة"
#. Label of the tab_4_tab (Tab Break) field in DocType 'LMS Course'
#. Label of the statistics (Check) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:133
msgid "Statistics"
msgstr ""
@@ -4433,7 +4495,7 @@ msgstr ""
#: frontend/src/components/BatchCourses.vue:150
#: frontend/src/components/BatchOverlay.vue:135
#: frontend/src/components/BatchStudents.vue:157
#: frontend/src/components/CourseCardOverlay.vue:163
#: frontend/src/components/CourseCardOverlay.vue:161
#: frontend/src/components/Modals/AssessmentModal.vue:73
#: frontend/src/components/Modals/Event.vue:255
#: frontend/src/components/Modals/Event.vue:310
@@ -4507,7 +4569,7 @@ msgid "System Manager"
msgstr "مدير النظام"
#. Label of the tags (Data) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:91
#: frontend/src/pages/CourseForm.vue:112
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Tags"
msgstr "بطاقات"
@@ -4535,7 +4597,7 @@ msgstr "قالب"
msgid "Temporarily Disabled"
msgstr "موقوف مؤقتا"
#: lms/lms/utils.py:421
#: lms/lms/utils.py:440
msgid "Terms of Use"
msgstr ""
@@ -4587,10 +4649,18 @@ msgstr ""
msgid "The status of your application has changed."
msgstr ""
#: frontend/src/pages/Batches.vue:129
msgid "There are no batches available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr ""
#: frontend/src/components/CreateOutline.vue:12
msgid "There are no chapters in this course. Create and manage chapters from here."
msgstr ""
#: frontend/src/pages/Courses.vue:150
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:140
msgid "There are no seats available in this batch."
msgstr ""
@@ -4622,7 +4692,7 @@ msgstr ""
msgid "This course has:"
msgstr ""
#: lms/lms/utils.py:1563
#: lms/lms/utils.py:1572
msgid "This course is free."
msgstr ""
@@ -4691,7 +4761,7 @@ msgstr ""
#. Label of the timezone (Data) field in DocType 'LMS Certificate Request'
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/LiveClassModal.vue:44
#: frontend/src/pages/BatchForm.vue:134
#: frontend/src/pages/BatchForm.vue:142
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -4757,7 +4827,7 @@ msgstr "إلى تاريخ"
msgid "To Date is mandatory in Work Experience."
msgstr ""
#: lms/lms/utils.py:1574
#: lms/lms/utils.py:1583
msgid "To join this batch, please contact the Administrator."
msgstr ""
@@ -4874,7 +4944,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Cohort'
#. Label of the upcoming (Check) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:151 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/CourseForm.vue:175 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming"
msgstr ""
@@ -4898,6 +4968,10 @@ msgstr "تحديث"
msgid "Update Password"
msgstr ""
#: frontend/src/pages/BatchForm.vue:51 frontend/src/pages/CourseForm.vue:72
msgid "Upload"
msgstr "تحميل"
#: frontend/src/pages/AssignmentSubmission.vue:69
msgid "Upload File"
msgstr ""
@@ -5020,6 +5094,10 @@ msgstr "الأربعاء"
msgid "Welcome to {0}!"
msgstr "أهلا وسهلا بك إلى {0}!"
#: frontend/src/components/LessonHelp.vue:63
msgid "What does include in preview mean?"
msgstr ""
#: lms/templates/courses_under_review.html:15
msgid "When a course gets submitted for review, it will be listed here."
msgstr ""
@@ -5073,11 +5151,11 @@ msgstr ""
msgid "You already have an evaluation on {0} at {1} for the course {2}."
msgstr ""
#: lms/lms/api.py:206
#: lms/lms/api.py:207
msgid "You are already enrolled for this batch."
msgstr ""
#: lms/lms/api.py:198
#: lms/lms/api.py:199
msgid "You are already enrolled for this course."
msgstr ""
@@ -5089,6 +5167,10 @@ msgstr ""
msgid "You are not a mentor of the course {0}"
msgstr ""
#: frontend/src/pages/Courses.vue:134
msgid "You can add chapters and lessons to it."
msgstr ""
#: lms/templates/emails/lms_course_interest.html:13
#: lms/templates/emails/lms_invite_request_approved.html:11
msgid "You can also copy-paste following link in your browser"
@@ -5106,6 +5188,10 @@ msgstr ""
msgid "You can find their resume attached to this email."
msgstr ""
#: frontend/src/pages/Batches.vue:113
msgid "You can link courses and assessments to it."
msgstr ""
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:115
msgid "You cannot schedule evaluations after {0}."
msgstr ""
@@ -5147,7 +5233,7 @@ msgstr ""
msgid "You have been enrolled in this batch"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:164
#: frontend/src/components/CourseCardOverlay.vue:162
msgid "You have been enrolled in this course"
msgstr ""
@@ -5159,7 +5245,7 @@ msgstr ""
msgid "You haven't enrolled for any courses"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:144
#: frontend/src/components/CourseCardOverlay.vue:142
msgid "You need to login first to enroll for this course"
msgstr ""
@@ -5277,7 +5363,7 @@ msgstr ""
msgid "you can"
msgstr ""
#: lms/lms/api.py:731 lms/lms/api.py:739
#: lms/lms/api.py:732 lms/lms/api.py:740
msgid "{0} Settings not found"
msgstr ""
@@ -5313,7 +5399,7 @@ msgstr ""
msgid "{0} is your evaluator"
msgstr ""
#: lms/lms/utils.py:690
#: lms/lms/utils.py:709
msgid "{0} mentioned you in a comment"
msgstr ""
@@ -5321,11 +5407,11 @@ msgstr ""
msgid "{0} mentioned you in a comment in your batch."
msgstr ""
#: lms/lms/utils.py:643 lms/lms/utils.py:649
#: lms/lms/utils.py:662 lms/lms/utils.py:668
msgid "{0} mentioned you in a comment in {1}"
msgstr "{0} ذكرتك في تعليق في {1}"
#: lms/lms/utils.py:461
#: lms/lms/utils.py:480
msgid "{0}k"
msgstr ""

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-10-18 16:04+0000\n"
"PO-Revision-Date: 2024-10-26 11:24\n"
"POT-Creation-Date: 2024-11-01 16:04+0000\n"
"PO-Revision-Date: 2024-11-05 14:34\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Bosnian\n"
"MIME-Version: 1.0\n"
@@ -62,6 +62,10 @@ msgstr ""
msgid "<span style=\"font-size: 18px;\"><b>Statistics</b></span>"
msgstr ""
#: frontend/src/pages/CourseForm.vue:32
msgid "A one line introduction to the course that appears on the course card"
msgstr ""
#: frontend/src/pages/ProfileAbout.vue:4
msgid "About"
msgstr "O"
@@ -102,7 +106,6 @@ msgstr "Dodaj"
#: frontend/src/components/CourseOutline.vue:11
#: frontend/src/components/CreateOutline.vue:18
#: frontend/src/components/Modals/ChapterModal.vue:5
#: frontend/src/components/Modals/ChapterModal.vue:9
msgid "Add Chapter"
msgstr ""
@@ -225,7 +228,7 @@ msgstr "Već registrovan"
#. Label of the amount (Currency) field in DocType 'Web Form'
#. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the amount (Currency) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:198 lms/fixtures/custom_field.json
#: frontend/src/pages/BatchForm.vue:208 lms/fixtures/custom_field.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/public/js/common_functions.js:379
@@ -269,6 +272,14 @@ msgstr ""
msgid "Answer"
msgstr ""
#: frontend/src/pages/CourseForm.vue:76 frontend/src/pages/CourseForm.vue:94
msgid "Appears on the course card in the course list"
msgstr ""
#: frontend/src/pages/BatchForm.vue:55 frontend/src/pages/BatchForm.vue:73
msgid "Appears when the batch URL is shared on any online platform"
msgstr ""
#: frontend/src/pages/JobDetail.vue:131
msgid "Applications Received"
msgstr ""
@@ -467,7 +478,7 @@ msgid "Batch Description"
msgstr ""
#. Label of the batch_details (Text Editor) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:89 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:97 lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:349
#: lms/templates/emails/batch_confirmation.html:30
msgid "Batch Details"
@@ -634,8 +645,8 @@ msgstr ""
#. Label of the category (Link) field in DocType 'LMS Batch'
#. Label of the category (Data) field in DocType 'LMS Category'
#. Label of the category (Link) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:179 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:116 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/BatchForm.vue:189 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:139 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/JobDetail.vue:102
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json
@@ -936,7 +947,7 @@ msgstr ""
msgid "Completed"
msgstr "Završeno"
#: frontend/src/pages/CourseForm.vue:168
#: frontend/src/pages/CourseForm.vue:192
msgid "Completion Certificate"
msgstr ""
@@ -986,7 +997,7 @@ msgstr ""
msgid "Contract"
msgstr ""
#: lms/lms/utils.py:423
#: lms/lms/utils.py:442
msgid "Cookie Policy"
msgstr ""
@@ -1107,7 +1118,7 @@ msgstr ""
msgid "Course Data"
msgstr ""
#: frontend/src/pages/CourseForm.vue:34
#: frontend/src/pages/CourseForm.vue:41
msgid "Course Description"
msgstr ""
@@ -1116,7 +1127,7 @@ msgstr ""
msgid "Course Evaluator"
msgstr ""
#: frontend/src/pages/CourseForm.vue:64
#: frontend/src/pages/CourseForm.vue:54
msgid "Course Image"
msgstr ""
@@ -1139,7 +1150,7 @@ msgid "Course Name"
msgstr ""
#. Label of the course_price (Currency) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:186
#: frontend/src/pages/CourseForm.vue:210
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Course Price"
msgstr ""
@@ -1172,7 +1183,7 @@ msgstr ""
msgid "Course already added to the batch."
msgstr ""
#: frontend/src/pages/CourseForm.vue:433
#: frontend/src/pages/CourseForm.vue:457
msgid "Course price and currency are mandatory for paid courses"
msgstr ""
@@ -1210,6 +1221,10 @@ msgstr ""
msgid "Cover Image"
msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:9
msgid "Create"
msgstr "Kreiraj"
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7
msgid "Create LMS Certificate"
msgstr ""
@@ -1218,7 +1233,11 @@ msgstr ""
msgid "Create LMS Certificate Evaluation"
msgstr ""
#: lms/templates/onboarding_header.html:19
#: frontend/src/pages/Batches.vue:110
msgid "Create a Batch"
msgstr ""
#: frontend/src/pages/Courses.vue:131 lms/templates/onboarding_header.html:19
msgid "Create a Course"
msgstr ""
@@ -1234,7 +1253,7 @@ msgstr ""
#. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course'
#. Label of the currency (Link) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:206 frontend/src/pages/CourseForm.vue:193
#: frontend/src/pages/BatchForm.vue:216 frontend/src/pages/CourseForm.vue:217
#: lms/fixtures/custom_field.json lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_payment/lms_payment.json
@@ -1292,7 +1311,7 @@ msgstr "Datum"
#. Label of the section_break_glxh (Section Break) field in DocType 'LMS Live
#. Class'
#: frontend/src/pages/BatchForm.vue:102
#: frontend/src/pages/BatchForm.vue:110
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Date and Time"
msgstr ""
@@ -1340,7 +1359,6 @@ msgstr ""
#. Label of the description (Markdown Editor) field in DocType 'Cohort'
#. Label of the description (Markdown Editor) field in DocType 'Cohort
#. Subgroup'
#. Label of the description (Small Text) field in DocType 'Course Chapter'
#. Label of the description (Small Text) field in DocType 'LMS Badge'
#. Label of the description (Small Text) field in DocType 'LMS Batch'
#. Label of the description (Markdown Editor) field in DocType 'LMS Batch Old'
@@ -1349,12 +1367,11 @@ msgstr ""
#. Label of the description (Text) field in DocType 'LMS Live Class'
#. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:73
#: frontend/src/pages/BatchForm.vue:83 frontend/src/pages/JobCreation.vue:43
#: frontend/src/pages/BatchForm.vue:90 frontend/src/pages/JobCreation.vue:43
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/lms_badge/lms_badge.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -1376,7 +1393,7 @@ msgstr ""
msgid "Details"
msgstr "Detalji"
#: frontend/src/pages/CourseForm.vue:163
#: frontend/src/pages/CourseForm.vue:187
msgid "Disable Self Enrollment"
msgstr ""
@@ -1451,13 +1468,14 @@ msgstr ""
#: frontend/src/components/BatchOverlay.vue:93
#: frontend/src/components/CourseCardOverlay.vue:86
#: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:70
#: frontend/src/pages/Profile.vue:32
msgid "Edit"
msgstr "Uredi"
#: frontend/src/components/CourseOutline.vue:106
#: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/components/Modals/ChapterModal.vue:5
msgid "Edit Chapter"
msgstr ""
@@ -1533,7 +1551,7 @@ msgstr "Omogućeno"
#. Label of the end_date (Date) field in DocType 'Cohort'
#. Label of the end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:114 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/BatchForm.vue:122 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:282
msgid "End Date"
@@ -1551,7 +1569,7 @@ msgstr ""
#. Label of the end_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the end_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the end_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:128
#: frontend/src/pages/BatchForm.vue:136
#: frontend/src/pages/ProfileEvaluator.vue:18
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1587,13 +1605,15 @@ msgstr ""
msgid "Enrollment Count"
msgstr ""
#: lms/lms/utils.py:1683
#: lms/lms/utils.py:1692
msgid "Enrollment Failed"
msgstr ""
#. Label of the enrollments (Data) field in DocType 'LMS Course'
#. Label of a chart in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/pages/Statistics.vue:45 lms/lms/workspace/lms/lms.json
#: frontend/src/pages/Statistics.vue:45
#: lms/lms/doctype/lms_course/lms_course.json lms/lms/workspace/lms/lms.json
msgid "Enrollments"
msgstr ""
@@ -1635,7 +1655,7 @@ msgid "Evaluation Details"
msgstr ""
#. Label of the evaluation_end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:155
#: frontend/src/pages/BatchForm.vue:165
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:333
msgid "Evaluation End Date"
@@ -1697,6 +1717,10 @@ msgstr ""
msgid "Event"
msgstr "Događaj"
#: frontend/src/pages/BatchForm.vue:144
msgid "Example: IST (+5:30)"
msgstr ""
#. Label of the exercise (Link) field in DocType 'Exercise Latest Submission'
#. Label of the exercise (Link) field in DocType 'Exercise Submission'
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
@@ -1767,7 +1791,7 @@ msgstr "Neuspjeh"
#. Label of the featured (Check) field in DocType 'LMS Course'
#: frontend/src/components/CourseCard.vue:16
#: frontend/src/pages/CourseForm.vue:156
#: frontend/src/pages/CourseForm.vue:180
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Featured"
msgstr "Istaknuto"
@@ -2030,6 +2054,10 @@ msgstr "ID"
msgid "Icon"
msgstr "Ikona"
#: frontend/src/components/LessonHelp.vue:68
msgid "If Include in Preview is enabled for a lesson then the lesson will also be accessible to non logged in users."
msgstr ""
#: lms/templates/emails/mentor_request_creation_email.html:5
msgid "If you are not any more interested to mentor the course"
msgstr ""
@@ -2166,7 +2194,7 @@ msgstr ""
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch'
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:77 frontend/src/pages/CourseForm.vue:123
#: frontend/src/pages/BatchForm.vue:85 frontend/src/pages/CourseForm.vue:146
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Instructors"
@@ -2311,7 +2339,7 @@ msgstr ""
msgid "Jobs"
msgstr ""
#: frontend/src/components/LiveClass.vue:53
#: frontend/src/components/LiveClass.vue:54
#: lms/templates/upcoming_evals.html:15
msgid "Join"
msgstr ""
@@ -2325,6 +2353,10 @@ msgstr ""
msgid "Join URL"
msgstr ""
#: frontend/src/pages/CourseForm.vue:128
msgid "Keywords for the course"
msgstr ""
#. Name of a Workspace
#: lms/lms/workspace/lms/lms.json
msgid "LMS"
@@ -2578,9 +2610,11 @@ msgstr ""
#. Label of the lessons (Table) field in DocType 'Course Chapter'
#. Group in Course Chapter's connections
#. Label of the lessons (Data) field in DocType 'LMS Course'
#: frontend/src/components/CourseCard.vue:34
#: frontend/src/components/CourseCardOverlay.vue:96
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Lessons"
msgstr ""
@@ -2753,7 +2787,7 @@ msgid "Maximun Attempts"
msgstr ""
#. Label of the medium (Select) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:174
#: frontend/src/pages/BatchForm.vue:184
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:309
msgid "Medium"
@@ -2901,7 +2935,7 @@ msgid "Mentors"
msgstr ""
#. Label of the meta_image (Attach Image) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:53 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:36 lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:362
msgid "Meta Image"
msgstr "Meta slika"
@@ -2937,11 +2971,11 @@ msgstr ""
msgid "Modified By"
msgstr "Izmijenio"
#: lms/lms/api.py:190
#: lms/lms/api.py:191
msgid "Module Name is incorrect or does not exist."
msgstr ""
#: lms/lms/api.py:186
#: lms/lms/api.py:187
msgid "Module is incorrect."
msgstr ""
@@ -3008,11 +3042,11 @@ msgstr ""
msgid "New Sign Up"
msgstr ""
#: lms/lms/utils.py:613
#: lms/lms/utils.py:632
msgid "New comment in batch {0}"
msgstr ""
#: lms/lms/utils.py:606
#: lms/lms/utils.py:625
msgid "New reply on the topic {0} in course {1}"
msgstr ""
@@ -3050,6 +3084,10 @@ msgstr ""
msgid "No announcements"
msgstr ""
#: frontend/src/pages/Batches.vue:125
msgid "No batches found"
msgstr ""
#: lms/templates/certificates_section.html:23
msgid "No certificates"
msgstr ""
@@ -3058,6 +3096,10 @@ msgstr ""
msgid "No courses created"
msgstr ""
#: frontend/src/pages/Courses.vue:146
msgid "No courses found"
msgstr ""
#: lms/templates/courses_under_review.html:14
msgid "No courses under review"
msgstr ""
@@ -3070,7 +3112,7 @@ msgstr ""
msgid "No jobs posted"
msgstr ""
#: frontend/src/components/LiveClass.vue:59
#: frontend/src/components/LiveClass.vue:60
msgid "No live classes scheduled"
msgstr ""
@@ -3086,12 +3128,12 @@ msgstr ""
msgid "No {0}"
msgstr "Bez {0}"
#: frontend/src/pages/Batches.vue:88
msgid "No {0} batches found"
#: frontend/src/pages/Batches.vue:84
msgid "No {0} batches"
msgstr ""
#: frontend/src/pages/Courses.vue:110
msgid "No {0} courses found"
#: frontend/src/pages/Courses.vue:106
msgid "No {0} courses"
msgstr ""
#: lms/templates/quiz/quiz.html:147
@@ -3146,6 +3188,10 @@ msgstr "Obavijesti"
msgid "Notify me when available"
msgstr ""
#: frontend/src/pages/BatchForm.vue:161
msgid "Number of seats available"
msgstr ""
#. Label of the sb_00 (Section Break) field in DocType 'Zoom Settings'
#: lms/lms/doctype/zoom_settings/zoom_settings.json
msgid "OAuth Client ID"
@@ -3178,7 +3224,7 @@ msgstr ""
msgid "Only files of type {0} will be accepted."
msgstr ""
#: frontend/src/pages/CourseForm.vue:449 frontend/src/utils/index.js:509
#: frontend/src/pages/CourseForm.vue:473 frontend/src/utils/index.js:518
msgid "Only image file is allowed."
msgstr ""
@@ -3286,14 +3332,14 @@ msgid "Pages"
msgstr ""
#. Label of the paid_batch (Check) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:194
#: frontend/src/pages/BatchForm.vue:204
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:373
msgid "Paid Batch"
msgstr ""
#. Label of the paid_course (Check) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:181
#: frontend/src/pages/CourseForm.vue:205
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Paid Course"
msgstr ""
@@ -3335,9 +3381,13 @@ msgstr ""
msgid "Password"
msgstr "Lozinka"
#: frontend/src/pages/CourseForm.vue:104
msgid "Paste the youtube link of a short video introducing the course"
msgstr ""
#. Label of the payment (Link) field in DocType 'Batch Student'
#. Label of the payment (Link) field in DocType 'LMS Enrollment'
#: frontend/src/pages/BatchForm.vue:188
#: frontend/src/pages/BatchForm.vue:198
#: lms/lms/doctype/batch_student/batch_student.json
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
msgid "Payment"
@@ -3429,7 +3479,7 @@ msgstr ""
msgid "Phone Number"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:143
#: frontend/src/components/CourseCardOverlay.vue:141
msgid "Please Login"
msgstr ""
@@ -3490,7 +3540,7 @@ msgstr ""
msgid "Please login to access this page."
msgstr ""
#: lms/lms/api.py:182
#: lms/lms/api.py:183
msgid "Please login to continue with payment."
msgstr ""
@@ -3580,7 +3630,7 @@ msgstr ""
msgid "Preview Image"
msgstr "Pregled slike"
#: frontend/src/pages/CourseForm.vue:86
#: frontend/src/pages/CourseForm.vue:102
msgid "Preview Video"
msgstr ""
@@ -3590,7 +3640,7 @@ msgstr "Prethodno"
#. Label of the pricing_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the pricing_tab (Tab Break) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:175
#: frontend/src/pages/CourseForm.vue:199
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:368
@@ -3608,7 +3658,7 @@ msgstr ""
msgid "Primary Subgroup"
msgstr ""
#: lms/lms/utils.py:422
#: lms/lms/utils.py:441
msgid "Privacy Policy"
msgstr ""
@@ -3660,7 +3710,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Batch'
#. Label of the published (Check) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:108
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:138
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:162
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:266
@@ -3673,7 +3723,7 @@ msgid "Published Courses"
msgstr ""
#. Label of the published_on (Date) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:142
#: frontend/src/pages/CourseForm.vue:166
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Published On"
msgstr "Objavljeno dana"
@@ -3794,11 +3844,13 @@ msgid "Quizzes"
msgstr ""
#. Label of the rating (Rating) field in DocType 'LMS Certificate Evaluation'
#. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:109
#: frontend/src/components/CourseCardOverlay.vue:108
#: frontend/src/components/Modals/Event.vue:86
#: frontend/src/components/Modals/ReviewModal.vue:20
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_course_review/lms_course_review.json
#: lms/templates/reviews.html:125
msgid "Rating"
@@ -3869,6 +3921,10 @@ msgstr ""
msgid "Related Courses"
msgstr ""
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/CourseForm.vue:91
msgid "Remove"
msgstr "Ukloni"
#: frontend/src/components/Modals/AnnouncementModal.vue:26
msgid "Reply To"
msgstr ""
@@ -4024,7 +4080,7 @@ msgid "Search for an icon"
msgstr ""
#. Label of the seat_count (Int) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:149
#: frontend/src/pages/BatchForm.vue:158
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:327
msgid "Seat Count"
@@ -4068,7 +4124,7 @@ msgid "Set your Password"
msgstr ""
#: frontend/src/components/Modals/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:143 frontend/src/pages/CourseForm.vue:128
#: frontend/src/pages/BatchForm.vue:152 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:78
msgid "Settings"
msgstr ""
@@ -4078,11 +4134,15 @@ msgid "Share on"
msgstr ""
#. Label of the short_introduction (Small Text) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:29
#: frontend/src/pages/CourseForm.vue:30
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Short Introduction"
msgstr ""
#: frontend/src/pages/BatchForm.vue:93
msgid "Short description of the batch"
msgstr ""
#. Label of the show_answer (Check) field in DocType 'LMS Assignment'
#: lms/lms/doctype/lms_assignment/lms_assignment.json
msgid "Show Answer"
@@ -4235,7 +4295,7 @@ msgstr ""
msgid "Stage"
msgstr ""
#: frontend/src/components/LiveClass.vue:45 frontend/src/components/Quiz.vue:65
#: frontend/src/components/LiveClass.vue:46 frontend/src/components/Quiz.vue:65
#: lms/templates/quiz/quiz.html:39
msgid "Start"
msgstr ""
@@ -4243,7 +4303,7 @@ msgstr ""
#. Label of the start_date (Date) field in DocType 'Education Detail'
#. Label of the start_date (Date) field in DocType 'LMS Batch'
#. Label of the start_date (Date) field in DocType 'LMS Batch Old'
#: frontend/src/pages/BatchForm.vue:108
#: frontend/src/pages/BatchForm.vue:116
#: lms/lms/doctype/education_detail/education_detail.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -4264,7 +4324,7 @@ msgstr ""
#. Label of the start_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the start_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the start_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:122
#: frontend/src/pages/BatchForm.vue:130
#: frontend/src/pages/ProfileEvaluator.vue:15
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -4303,7 +4363,9 @@ msgstr ""
msgid "State"
msgstr ""
#. Label of the tab_4_tab (Tab Break) field in DocType 'LMS Course'
#. Label of the statistics (Check) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:133
msgid "Statistics"
msgstr "Statistika"
@@ -4433,7 +4495,7 @@ msgstr ""
#: frontend/src/components/BatchCourses.vue:150
#: frontend/src/components/BatchOverlay.vue:135
#: frontend/src/components/BatchStudents.vue:157
#: frontend/src/components/CourseCardOverlay.vue:163
#: frontend/src/components/CourseCardOverlay.vue:161
#: frontend/src/components/Modals/AssessmentModal.vue:73
#: frontend/src/components/Modals/Event.vue:255
#: frontend/src/components/Modals/Event.vue:310
@@ -4507,7 +4569,7 @@ msgid "System Manager"
msgstr ""
#. Label of the tags (Data) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:91
#: frontend/src/pages/CourseForm.vue:112
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Tags"
msgstr "Oznake"
@@ -4535,7 +4597,7 @@ msgstr ""
msgid "Temporarily Disabled"
msgstr "Privremeno onemogućeno"
#: lms/lms/utils.py:421
#: lms/lms/utils.py:440
msgid "Terms of Use"
msgstr ""
@@ -4587,10 +4649,18 @@ msgstr ""
msgid "The status of your application has changed."
msgstr ""
#: frontend/src/pages/Batches.vue:129
msgid "There are no batches available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr ""
#: frontend/src/components/CreateOutline.vue:12
msgid "There are no chapters in this course. Create and manage chapters from here."
msgstr ""
#: frontend/src/pages/Courses.vue:150
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:140
msgid "There are no seats available in this batch."
msgstr ""
@@ -4622,7 +4692,7 @@ msgstr ""
msgid "This course has:"
msgstr ""
#: lms/lms/utils.py:1563
#: lms/lms/utils.py:1572
msgid "This course is free."
msgstr ""
@@ -4691,7 +4761,7 @@ msgstr ""
#. Label of the timezone (Data) field in DocType 'LMS Certificate Request'
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/LiveClassModal.vue:44
#: frontend/src/pages/BatchForm.vue:134
#: frontend/src/pages/BatchForm.vue:142
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -4757,7 +4827,7 @@ msgstr ""
msgid "To Date is mandatory in Work Experience."
msgstr ""
#: lms/lms/utils.py:1574
#: lms/lms/utils.py:1583
msgid "To join this batch, please contact the Administrator."
msgstr ""
@@ -4874,7 +4944,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Cohort'
#. Label of the upcoming (Check) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:151 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/CourseForm.vue:175 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming"
msgstr ""
@@ -4898,6 +4968,10 @@ msgstr ""
msgid "Update Password"
msgstr ""
#: frontend/src/pages/BatchForm.vue:51 frontend/src/pages/CourseForm.vue:72
msgid "Upload"
msgstr "Učitaj"
#: frontend/src/pages/AssignmentSubmission.vue:69
msgid "Upload File"
msgstr ""
@@ -5020,6 +5094,10 @@ msgstr ""
msgid "Welcome to {0}!"
msgstr ""
#: frontend/src/components/LessonHelp.vue:63
msgid "What does include in preview mean?"
msgstr ""
#: lms/templates/courses_under_review.html:15
msgid "When a course gets submitted for review, it will be listed here."
msgstr ""
@@ -5073,11 +5151,11 @@ msgstr ""
msgid "You already have an evaluation on {0} at {1} for the course {2}."
msgstr ""
#: lms/lms/api.py:206
#: lms/lms/api.py:207
msgid "You are already enrolled for this batch."
msgstr ""
#: lms/lms/api.py:198
#: lms/lms/api.py:199
msgid "You are already enrolled for this course."
msgstr ""
@@ -5089,6 +5167,10 @@ msgstr ""
msgid "You are not a mentor of the course {0}"
msgstr ""
#: frontend/src/pages/Courses.vue:134
msgid "You can add chapters and lessons to it."
msgstr ""
#: lms/templates/emails/lms_course_interest.html:13
#: lms/templates/emails/lms_invite_request_approved.html:11
msgid "You can also copy-paste following link in your browser"
@@ -5106,6 +5188,10 @@ msgstr ""
msgid "You can find their resume attached to this email."
msgstr ""
#: frontend/src/pages/Batches.vue:113
msgid "You can link courses and assessments to it."
msgstr ""
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:115
msgid "You cannot schedule evaluations after {0}."
msgstr ""
@@ -5147,7 +5233,7 @@ msgstr ""
msgid "You have been enrolled in this batch"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:164
#: frontend/src/components/CourseCardOverlay.vue:162
msgid "You have been enrolled in this course"
msgstr ""
@@ -5159,7 +5245,7 @@ msgstr ""
msgid "You haven't enrolled for any courses"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:144
#: frontend/src/components/CourseCardOverlay.vue:142
msgid "You need to login first to enroll for this course"
msgstr ""
@@ -5277,7 +5363,7 @@ msgstr ""
msgid "you can"
msgstr ""
#: lms/lms/api.py:731 lms/lms/api.py:739
#: lms/lms/api.py:732 lms/lms/api.py:740
msgid "{0} Settings not found"
msgstr ""
@@ -5313,7 +5399,7 @@ msgstr ""
msgid "{0} is your evaluator"
msgstr ""
#: lms/lms/utils.py:690
#: lms/lms/utils.py:709
msgid "{0} mentioned you in a comment"
msgstr ""
@@ -5321,11 +5407,11 @@ msgstr ""
msgid "{0} mentioned you in a comment in your batch."
msgstr ""
#: lms/lms/utils.py:643 lms/lms/utils.py:649
#: lms/lms/utils.py:662 lms/lms/utils.py:668
msgid "{0} mentioned you in a comment in {1}"
msgstr "{0} vas je spomenuo u komentaru u {1}"
#: lms/lms/utils.py:461
#: lms/lms/utils.py:480
msgid "{0}k"
msgstr ""

File diff suppressed because it is too large Load Diff

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-10-18 16:04+0000\n"
"PO-Revision-Date: 2024-10-25 11:05\n"
"POT-Creation-Date: 2024-11-01 16:04+0000\n"
"PO-Revision-Date: 2024-11-05 14:34\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Esperanto\n"
"MIME-Version: 1.0\n"
@@ -62,6 +62,10 @@ msgstr "crwdns149196:0crwdne149196:0"
msgid "<span style=\"font-size: 18px;\"><b>Statistics</b></span>"
msgstr "crwdns149198:0crwdne149198:0"
#: frontend/src/pages/CourseForm.vue:32
msgid "A one line introduction to the course that appears on the course card"
msgstr "crwdns151462:0crwdne151462:0"
#: frontend/src/pages/ProfileAbout.vue:4
msgid "About"
msgstr "crwdns149200:0crwdne149200:0"
@@ -102,7 +106,6 @@ msgstr "crwdns149212:0crwdne149212:0"
#: frontend/src/components/CourseOutline.vue:11
#: frontend/src/components/CreateOutline.vue:18
#: frontend/src/components/Modals/ChapterModal.vue:5
#: frontend/src/components/Modals/ChapterModal.vue:9
msgid "Add Chapter"
msgstr "crwdns149214:0crwdne149214:0"
@@ -225,7 +228,7 @@ msgstr "crwdns149266:0crwdne149266:0"
#. Label of the amount (Currency) field in DocType 'Web Form'
#. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the amount (Currency) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:198 lms/fixtures/custom_field.json
#: frontend/src/pages/BatchForm.vue:208 lms/fixtures/custom_field.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/public/js/common_functions.js:379
@@ -269,6 +272,14 @@ msgstr "crwdns149278:0crwdne149278:0"
msgid "Answer"
msgstr "crwdns149280:0crwdne149280:0"
#: frontend/src/pages/CourseForm.vue:76 frontend/src/pages/CourseForm.vue:94
msgid "Appears on the course card in the course list"
msgstr "crwdns151464:0crwdne151464:0"
#: frontend/src/pages/BatchForm.vue:55 frontend/src/pages/BatchForm.vue:73
msgid "Appears when the batch URL is shared on any online platform"
msgstr "crwdns151466:0crwdne151466:0"
#: frontend/src/pages/JobDetail.vue:131
msgid "Applications Received"
msgstr "crwdns149282:0crwdne149282:0"
@@ -467,7 +478,7 @@ msgid "Batch Description"
msgstr "crwdns149354:0crwdne149354:0"
#. Label of the batch_details (Text Editor) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:89 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:97 lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:349
#: lms/templates/emails/batch_confirmation.html:30
msgid "Batch Details"
@@ -634,8 +645,8 @@ msgstr "crwdns149414:0crwdne149414:0"
#. Label of the category (Link) field in DocType 'LMS Batch'
#. Label of the category (Data) field in DocType 'LMS Category'
#. Label of the category (Link) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:179 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:116 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/BatchForm.vue:189 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:139 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/JobDetail.vue:102
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json
@@ -936,7 +947,7 @@ msgstr "crwdns149518:0crwdne149518:0"
msgid "Completed"
msgstr "crwdns149520:0crwdne149520:0"
#: frontend/src/pages/CourseForm.vue:168
#: frontend/src/pages/CourseForm.vue:192
msgid "Completion Certificate"
msgstr "crwdns149522:0crwdne149522:0"
@@ -986,7 +997,7 @@ msgstr "crwdns149540:0crwdne149540:0"
msgid "Contract"
msgstr "crwdns149542:0crwdne149542:0"
#: lms/lms/utils.py:423
#: lms/lms/utils.py:442
msgid "Cookie Policy"
msgstr "crwdns149544:0crwdne149544:0"
@@ -1107,7 +1118,7 @@ msgstr "crwdns149564:0crwdne149564:0"
msgid "Course Data"
msgstr "crwdns149566:0crwdne149566:0"
#: frontend/src/pages/CourseForm.vue:34
#: frontend/src/pages/CourseForm.vue:41
msgid "Course Description"
msgstr "crwdns149568:0crwdne149568:0"
@@ -1116,7 +1127,7 @@ msgstr "crwdns149568:0crwdne149568:0"
msgid "Course Evaluator"
msgstr "crwdns149570:0crwdne149570:0"
#: frontend/src/pages/CourseForm.vue:64
#: frontend/src/pages/CourseForm.vue:54
msgid "Course Image"
msgstr "crwdns149572:0crwdne149572:0"
@@ -1139,7 +1150,7 @@ msgid "Course Name"
msgstr "crwdns149580:0crwdne149580:0"
#. Label of the course_price (Currency) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:186
#: frontend/src/pages/CourseForm.vue:210
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Course Price"
msgstr "crwdns149582:0crwdne149582:0"
@@ -1172,7 +1183,7 @@ msgstr "crwdns149590:0crwdne149590:0"
msgid "Course already added to the batch."
msgstr "crwdns149592:0crwdne149592:0"
#: frontend/src/pages/CourseForm.vue:433
#: frontend/src/pages/CourseForm.vue:457
msgid "Course price and currency are mandatory for paid courses"
msgstr "crwdns149594:0crwdne149594:0"
@@ -1210,6 +1221,10 @@ msgstr "crwdns149604:0crwdne149604:0"
msgid "Cover Image"
msgstr "crwdns149606:0crwdne149606:0"
#: frontend/src/components/Modals/ChapterModal.vue:9
msgid "Create"
msgstr "crwdns151468:0crwdne151468:0"
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7
msgid "Create LMS Certificate"
msgstr "crwdns149608:0crwdne149608:0"
@@ -1218,7 +1233,11 @@ msgstr "crwdns149608:0crwdne149608:0"
msgid "Create LMS Certificate Evaluation"
msgstr "crwdns149610:0crwdne149610:0"
#: lms/templates/onboarding_header.html:19
#: frontend/src/pages/Batches.vue:110
msgid "Create a Batch"
msgstr "crwdns151470:0crwdne151470:0"
#: frontend/src/pages/Courses.vue:131 lms/templates/onboarding_header.html:19
msgid "Create a Course"
msgstr "crwdns149612:0crwdne149612:0"
@@ -1234,7 +1253,7 @@ msgstr "crwdns149616:0crwdne149616:0"
#. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course'
#. Label of the currency (Link) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:206 frontend/src/pages/CourseForm.vue:193
#: frontend/src/pages/BatchForm.vue:216 frontend/src/pages/CourseForm.vue:217
#: lms/fixtures/custom_field.json lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_payment/lms_payment.json
@@ -1292,7 +1311,7 @@ msgstr "crwdns149632:0crwdne149632:0"
#. Label of the section_break_glxh (Section Break) field in DocType 'LMS Live
#. Class'
#: frontend/src/pages/BatchForm.vue:102
#: frontend/src/pages/BatchForm.vue:110
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Date and Time"
msgstr "crwdns149634:0crwdne149634:0"
@@ -1340,7 +1359,6 @@ msgstr "crwdns149648:0crwdne149648:0"
#. Label of the description (Markdown Editor) field in DocType 'Cohort'
#. Label of the description (Markdown Editor) field in DocType 'Cohort
#. Subgroup'
#. Label of the description (Small Text) field in DocType 'Course Chapter'
#. Label of the description (Small Text) field in DocType 'LMS Badge'
#. Label of the description (Small Text) field in DocType 'LMS Batch'
#. Label of the description (Markdown Editor) field in DocType 'LMS Batch Old'
@@ -1349,12 +1367,11 @@ msgstr "crwdns149648:0crwdne149648:0"
#. Label of the description (Text) field in DocType 'LMS Live Class'
#. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:73
#: frontend/src/pages/BatchForm.vue:83 frontend/src/pages/JobCreation.vue:43
#: frontend/src/pages/BatchForm.vue:90 frontend/src/pages/JobCreation.vue:43
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/lms_badge/lms_badge.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -1376,7 +1393,7 @@ msgstr "crwdns149652:0crwdne149652:0"
msgid "Details"
msgstr "crwdns149654:0crwdne149654:0"
#: frontend/src/pages/CourseForm.vue:163
#: frontend/src/pages/CourseForm.vue:187
msgid "Disable Self Enrollment"
msgstr "crwdns149656:0crwdne149656:0"
@@ -1451,13 +1468,14 @@ msgstr "crwdns149680:0crwdne149680:0"
#: frontend/src/components/BatchOverlay.vue:93
#: frontend/src/components/CourseCardOverlay.vue:86
#: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:70
#: frontend/src/pages/Profile.vue:32
msgid "Edit"
msgstr "crwdns149682:0crwdne149682:0"
#: frontend/src/components/CourseOutline.vue:106
#: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/components/Modals/ChapterModal.vue:5
msgid "Edit Chapter"
msgstr "crwdns149684:0crwdne149684:0"
@@ -1533,7 +1551,7 @@ msgstr "crwdns149714:0crwdne149714:0"
#. Label of the end_date (Date) field in DocType 'Cohort'
#. Label of the end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:114 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/BatchForm.vue:122 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:282
msgid "End Date"
@@ -1551,7 +1569,7 @@ msgstr "crwdns149718:0crwdne149718:0"
#. Label of the end_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the end_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the end_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:128
#: frontend/src/pages/BatchForm.vue:136
#: frontend/src/pages/ProfileEvaluator.vue:18
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1587,13 +1605,15 @@ msgstr "crwdns149728:0crwdne149728:0"
msgid "Enrollment Count"
msgstr "crwdns149730:0crwdne149730:0"
#: lms/lms/utils.py:1683
#: lms/lms/utils.py:1692
msgid "Enrollment Failed"
msgstr "crwdns149732:0crwdne149732:0"
#. Label of the enrollments (Data) field in DocType 'LMS Course'
#. Label of a chart in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/pages/Statistics.vue:45 lms/lms/workspace/lms/lms.json
#: frontend/src/pages/Statistics.vue:45
#: lms/lms/doctype/lms_course/lms_course.json lms/lms/workspace/lms/lms.json
msgid "Enrollments"
msgstr "crwdns149734:0crwdne149734:0"
@@ -1635,7 +1655,7 @@ msgid "Evaluation Details"
msgstr "crwdns149748:0crwdne149748:0"
#. Label of the evaluation_end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:155
#: frontend/src/pages/BatchForm.vue:165
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:333
msgid "Evaluation End Date"
@@ -1697,6 +1717,10 @@ msgstr "crwdns149764:0crwdne149764:0"
msgid "Event"
msgstr "crwdns149766:0crwdne149766:0"
#: frontend/src/pages/BatchForm.vue:144
msgid "Example: IST (+5:30)"
msgstr "crwdns151472:0crwdne151472:0"
#. Label of the exercise (Link) field in DocType 'Exercise Latest Submission'
#. Label of the exercise (Link) field in DocType 'Exercise Submission'
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
@@ -1767,7 +1791,7 @@ msgstr "crwdns149788:0crwdne149788:0"
#. Label of the featured (Check) field in DocType 'LMS Course'
#: frontend/src/components/CourseCard.vue:16
#: frontend/src/pages/CourseForm.vue:156
#: frontend/src/pages/CourseForm.vue:180
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Featured"
msgstr "crwdns149790:0crwdne149790:0"
@@ -2030,6 +2054,10 @@ msgstr "crwdns149896:0crwdne149896:0"
msgid "Icon"
msgstr "crwdns149898:0crwdne149898:0"
#: frontend/src/components/LessonHelp.vue:68
msgid "If Include in Preview is enabled for a lesson then the lesson will also be accessible to non logged in users."
msgstr "crwdns151474:0crwdne151474:0"
#: lms/templates/emails/mentor_request_creation_email.html:5
msgid "If you are not any more interested to mentor the course"
msgstr "crwdns149900:0crwdne149900:0"
@@ -2166,7 +2194,7 @@ msgstr "crwdns149940:0crwdne149940:0"
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch'
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:77 frontend/src/pages/CourseForm.vue:123
#: frontend/src/pages/BatchForm.vue:85 frontend/src/pages/CourseForm.vue:146
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Instructors"
@@ -2311,7 +2339,7 @@ msgstr "crwdns149992:0crwdne149992:0"
msgid "Jobs"
msgstr "crwdns149994:0crwdne149994:0"
#: frontend/src/components/LiveClass.vue:53
#: frontend/src/components/LiveClass.vue:54
#: lms/templates/upcoming_evals.html:15
msgid "Join"
msgstr "crwdns149996:0crwdne149996:0"
@@ -2325,6 +2353,10 @@ msgstr "crwdns149998:0crwdne149998:0"
msgid "Join URL"
msgstr "crwdns150000:0crwdne150000:0"
#: frontend/src/pages/CourseForm.vue:128
msgid "Keywords for the course"
msgstr "crwdns151476:0crwdne151476:0"
#. Name of a Workspace
#: lms/lms/workspace/lms/lms.json
msgid "LMS"
@@ -2578,9 +2610,11 @@ msgstr "crwdns150084:0crwdne150084:0"
#. Label of the lessons (Table) field in DocType 'Course Chapter'
#. Group in Course Chapter's connections
#. Label of the lessons (Data) field in DocType 'LMS Course'
#: frontend/src/components/CourseCard.vue:34
#: frontend/src/components/CourseCardOverlay.vue:96
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Lessons"
msgstr "crwdns150086:0crwdne150086:0"
@@ -2753,7 +2787,7 @@ msgid "Maximun Attempts"
msgstr "crwdns150152:0crwdne150152:0"
#. Label of the medium (Select) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:174
#: frontend/src/pages/BatchForm.vue:184
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:309
msgid "Medium"
@@ -2901,7 +2935,7 @@ msgid "Mentors"
msgstr "crwdns150188:0crwdne150188:0"
#. Label of the meta_image (Attach Image) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:53 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:36 lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:362
msgid "Meta Image"
msgstr "crwdns150190:0crwdne150190:0"
@@ -2937,11 +2971,11 @@ msgstr "crwdns150196:0crwdne150196:0"
msgid "Modified By"
msgstr "crwdns150198:0crwdne150198:0"
#: lms/lms/api.py:190
#: lms/lms/api.py:191
msgid "Module Name is incorrect or does not exist."
msgstr "crwdns150200:0crwdne150200:0"
#: lms/lms/api.py:186
#: lms/lms/api.py:187
msgid "Module is incorrect."
msgstr "crwdns150202:0crwdne150202:0"
@@ -3008,11 +3042,11 @@ msgstr "crwdns150228:0crwdne150228:0"
msgid "New Sign Up"
msgstr "crwdns150230:0crwdne150230:0"
#: lms/lms/utils.py:613
#: lms/lms/utils.py:632
msgid "New comment in batch {0}"
msgstr "crwdns150232:0{0}crwdne150232:0"
#: lms/lms/utils.py:606
#: lms/lms/utils.py:625
msgid "New reply on the topic {0} in course {1}"
msgstr "crwdns150234:0{0}crwdnd150234:0{1}crwdne150234:0"
@@ -3050,6 +3084,10 @@ msgstr "crwdns150248:0crwdne150248:0"
msgid "No announcements"
msgstr "crwdns150250:0crwdne150250:0"
#: frontend/src/pages/Batches.vue:125
msgid "No batches found"
msgstr "crwdns151478:0crwdne151478:0"
#: lms/templates/certificates_section.html:23
msgid "No certificates"
msgstr "crwdns150252:0crwdne150252:0"
@@ -3058,6 +3096,10 @@ msgstr "crwdns150252:0crwdne150252:0"
msgid "No courses created"
msgstr "crwdns150254:0crwdne150254:0"
#: frontend/src/pages/Courses.vue:146
msgid "No courses found"
msgstr "crwdns151480:0crwdne151480:0"
#: lms/templates/courses_under_review.html:14
msgid "No courses under review"
msgstr "crwdns150256:0crwdne150256:0"
@@ -3070,7 +3112,7 @@ msgstr "crwdns150258:0crwdne150258:0"
msgid "No jobs posted"
msgstr "crwdns150260:0crwdne150260:0"
#: frontend/src/components/LiveClass.vue:59
#: frontend/src/components/LiveClass.vue:60
msgid "No live classes scheduled"
msgstr "crwdns150262:0crwdne150262:0"
@@ -3086,13 +3128,13 @@ msgstr "crwdns150266:0crwdne150266:0"
msgid "No {0}"
msgstr "crwdns150268:0{0}crwdne150268:0"
#: frontend/src/pages/Batches.vue:88
msgid "No {0} batches found"
msgstr "crwdns150270:0{0}crwdne150270:0"
#: frontend/src/pages/Batches.vue:84
msgid "No {0} batches"
msgstr "crwdns151482:0{0}crwdne151482:0"
#: frontend/src/pages/Courses.vue:110
msgid "No {0} courses found"
msgstr "crwdns150272:0{0}crwdne150272:0"
#: frontend/src/pages/Courses.vue:106
msgid "No {0} courses"
msgstr "crwdns151484:0{0}crwdne151484:0"
#: lms/templates/quiz/quiz.html:147
msgid "No."
@@ -3146,6 +3188,10 @@ msgstr "crwdns150292:0crwdne150292:0"
msgid "Notify me when available"
msgstr "crwdns150294:0crwdne150294:0"
#: frontend/src/pages/BatchForm.vue:161
msgid "Number of seats available"
msgstr "crwdns151486:0crwdne151486:0"
#. Label of the sb_00 (Section Break) field in DocType 'Zoom Settings'
#: lms/lms/doctype/zoom_settings/zoom_settings.json
msgid "OAuth Client ID"
@@ -3178,7 +3224,7 @@ msgstr "crwdns150306:0crwdne150306:0"
msgid "Only files of type {0} will be accepted."
msgstr "crwdns150308:0{0}crwdne150308:0"
#: frontend/src/pages/CourseForm.vue:449 frontend/src/utils/index.js:509
#: frontend/src/pages/CourseForm.vue:473 frontend/src/utils/index.js:518
msgid "Only image file is allowed."
msgstr "crwdns150310:0crwdne150310:0"
@@ -3286,14 +3332,14 @@ msgid "Pages"
msgstr "crwdns150350:0crwdne150350:0"
#. Label of the paid_batch (Check) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:194
#: frontend/src/pages/BatchForm.vue:204
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:373
msgid "Paid Batch"
msgstr "crwdns150352:0crwdne150352:0"
#. Label of the paid_course (Check) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:181
#: frontend/src/pages/CourseForm.vue:205
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Paid Course"
msgstr "crwdns150354:0crwdne150354:0"
@@ -3335,9 +3381,13 @@ msgstr "crwdns150364:0crwdne150364:0"
msgid "Password"
msgstr "crwdns150366:0crwdne150366:0"
#: frontend/src/pages/CourseForm.vue:104
msgid "Paste the youtube link of a short video introducing the course"
msgstr "crwdns151488:0crwdne151488:0"
#. Label of the payment (Link) field in DocType 'Batch Student'
#. Label of the payment (Link) field in DocType 'LMS Enrollment'
#: frontend/src/pages/BatchForm.vue:188
#: frontend/src/pages/BatchForm.vue:198
#: lms/lms/doctype/batch_student/batch_student.json
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
msgid "Payment"
@@ -3429,7 +3479,7 @@ msgstr "crwdns150394:0crwdne150394:0"
msgid "Phone Number"
msgstr "crwdns150396:0crwdne150396:0"
#: frontend/src/components/CourseCardOverlay.vue:143
#: frontend/src/components/CourseCardOverlay.vue:141
msgid "Please Login"
msgstr "crwdns150398:0crwdne150398:0"
@@ -3490,7 +3540,7 @@ msgstr "crwdns150424:0crwdne150424:0"
msgid "Please login to access this page."
msgstr "crwdns150426:0crwdne150426:0"
#: lms/lms/api.py:182
#: lms/lms/api.py:183
msgid "Please login to continue with payment."
msgstr "crwdns150428:0crwdne150428:0"
@@ -3580,7 +3630,7 @@ msgstr "crwdns150462:0crwdne150462:0"
msgid "Preview Image"
msgstr "crwdns150464:0crwdne150464:0"
#: frontend/src/pages/CourseForm.vue:86
#: frontend/src/pages/CourseForm.vue:102
msgid "Preview Video"
msgstr "crwdns150466:0crwdne150466:0"
@@ -3590,7 +3640,7 @@ msgstr "crwdns150468:0crwdne150468:0"
#. Label of the pricing_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the pricing_tab (Tab Break) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:175
#: frontend/src/pages/CourseForm.vue:199
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:368
@@ -3608,7 +3658,7 @@ msgstr "crwdns150472:0crwdne150472:0"
msgid "Primary Subgroup"
msgstr "crwdns150474:0crwdne150474:0"
#: lms/lms/utils.py:422
#: lms/lms/utils.py:441
msgid "Privacy Policy"
msgstr "crwdns150476:0crwdne150476:0"
@@ -3660,7 +3710,7 @@ msgstr "crwdns150494:0crwdne150494:0"
#. Label of the published (Check) field in DocType 'LMS Batch'
#. Label of the published (Check) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:108
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:138
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:162
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:266
@@ -3673,7 +3723,7 @@ msgid "Published Courses"
msgstr "crwdns150498:0crwdne150498:0"
#. Label of the published_on (Date) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:142
#: frontend/src/pages/CourseForm.vue:166
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Published On"
msgstr "crwdns150500:0crwdne150500:0"
@@ -3794,11 +3844,13 @@ msgid "Quizzes"
msgstr "crwdns150542:0crwdne150542:0"
#. Label of the rating (Rating) field in DocType 'LMS Certificate Evaluation'
#. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:109
#: frontend/src/components/CourseCardOverlay.vue:108
#: frontend/src/components/Modals/Event.vue:86
#: frontend/src/components/Modals/ReviewModal.vue:20
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_course_review/lms_course_review.json
#: lms/templates/reviews.html:125
msgid "Rating"
@@ -3869,6 +3921,10 @@ msgstr "crwdns150566:0crwdne150566:0"
msgid "Related Courses"
msgstr "crwdns150568:0crwdne150568:0"
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/CourseForm.vue:91
msgid "Remove"
msgstr "crwdns151490:0crwdne151490:0"
#: frontend/src/components/Modals/AnnouncementModal.vue:26
msgid "Reply To"
msgstr "crwdns150570:0crwdne150570:0"
@@ -4024,7 +4080,7 @@ msgid "Search for an icon"
msgstr "crwdns150628:0crwdne150628:0"
#. Label of the seat_count (Int) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:149
#: frontend/src/pages/BatchForm.vue:158
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:327
msgid "Seat Count"
@@ -4068,7 +4124,7 @@ msgid "Set your Password"
msgstr "crwdns150646:0crwdne150646:0"
#: frontend/src/components/Modals/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:143 frontend/src/pages/CourseForm.vue:128
#: frontend/src/pages/BatchForm.vue:152 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:78
msgid "Settings"
msgstr "crwdns150648:0crwdne150648:0"
@@ -4078,11 +4134,15 @@ msgid "Share on"
msgstr "crwdns150650:0crwdne150650:0"
#. Label of the short_introduction (Small Text) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:29
#: frontend/src/pages/CourseForm.vue:30
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Short Introduction"
msgstr "crwdns150652:0crwdne150652:0"
#: frontend/src/pages/BatchForm.vue:93
msgid "Short description of the batch"
msgstr "crwdns151492:0crwdne151492:0"
#. Label of the show_answer (Check) field in DocType 'LMS Assignment'
#: lms/lms/doctype/lms_assignment/lms_assignment.json
msgid "Show Answer"
@@ -4235,7 +4295,7 @@ msgstr "crwdns150708:0crwdne150708:0"
msgid "Stage"
msgstr "crwdns150710:0crwdne150710:0"
#: frontend/src/components/LiveClass.vue:45 frontend/src/components/Quiz.vue:65
#: frontend/src/components/LiveClass.vue:46 frontend/src/components/Quiz.vue:65
#: lms/templates/quiz/quiz.html:39
msgid "Start"
msgstr "crwdns150712:0crwdne150712:0"
@@ -4243,7 +4303,7 @@ msgstr "crwdns150712:0crwdne150712:0"
#. Label of the start_date (Date) field in DocType 'Education Detail'
#. Label of the start_date (Date) field in DocType 'LMS Batch'
#. Label of the start_date (Date) field in DocType 'LMS Batch Old'
#: frontend/src/pages/BatchForm.vue:108
#: frontend/src/pages/BatchForm.vue:116
#: lms/lms/doctype/education_detail/education_detail.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -4264,7 +4324,7 @@ msgstr "crwdns150716:0crwdne150716:0"
#. Label of the start_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the start_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the start_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:122
#: frontend/src/pages/BatchForm.vue:130
#: frontend/src/pages/ProfileEvaluator.vue:15
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -4303,7 +4363,9 @@ msgstr "crwdns150728:0crwdne150728:0"
msgid "State"
msgstr "crwdns150730:0crwdne150730:0"
#. Label of the tab_4_tab (Tab Break) field in DocType 'LMS Course'
#. Label of the statistics (Check) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:133
msgid "Statistics"
msgstr "crwdns150732:0crwdne150732:0"
@@ -4433,7 +4495,7 @@ msgstr "crwdns150766:0{0}crwdne150766:0"
#: frontend/src/components/BatchCourses.vue:150
#: frontend/src/components/BatchOverlay.vue:135
#: frontend/src/components/BatchStudents.vue:157
#: frontend/src/components/CourseCardOverlay.vue:163
#: frontend/src/components/CourseCardOverlay.vue:161
#: frontend/src/components/Modals/AssessmentModal.vue:73
#: frontend/src/components/Modals/Event.vue:255
#: frontend/src/components/Modals/Event.vue:310
@@ -4507,7 +4569,7 @@ msgid "System Manager"
msgstr "crwdns150774:0crwdne150774:0"
#. Label of the tags (Data) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:91
#: frontend/src/pages/CourseForm.vue:112
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Tags"
msgstr "crwdns150776:0crwdne150776:0"
@@ -4535,7 +4597,7 @@ msgstr "crwdns150782:0crwdne150782:0"
msgid "Temporarily Disabled"
msgstr "crwdns150784:0crwdne150784:0"
#: lms/lms/utils.py:421
#: lms/lms/utils.py:440
msgid "Terms of Use"
msgstr "crwdns150786:0crwdne150786:0"
@@ -4587,10 +4649,18 @@ msgstr "crwdns150802:0crwdne150802:0"
msgid "The status of your application has changed."
msgstr "crwdns150804:0crwdne150804:0"
#: frontend/src/pages/Batches.vue:129
msgid "There are no batches available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr "crwdns151494:0crwdne151494:0"
#: frontend/src/components/CreateOutline.vue:12
msgid "There are no chapters in this course. Create and manage chapters from here."
msgstr "crwdns150806:0crwdne150806:0"
#: frontend/src/pages/Courses.vue:150
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr "crwdns151496:0crwdne151496:0"
#: lms/lms/doctype/lms_batch/lms_batch.py:140
msgid "There are no seats available in this batch."
msgstr "crwdns150808:0crwdne150808:0"
@@ -4622,7 +4692,7 @@ msgstr "crwdns150818:0crwdne150818:0"
msgid "This course has:"
msgstr "crwdns150820:0crwdne150820:0"
#: lms/lms/utils.py:1563
#: lms/lms/utils.py:1572
msgid "This course is free."
msgstr "crwdns150822:0crwdne150822:0"
@@ -4691,7 +4761,7 @@ msgstr "crwdns150844:0crwdne150844:0"
#. Label of the timezone (Data) field in DocType 'LMS Certificate Request'
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/LiveClassModal.vue:44
#: frontend/src/pages/BatchForm.vue:134
#: frontend/src/pages/BatchForm.vue:142
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -4757,7 +4827,7 @@ msgstr "crwdns150854:0crwdne150854:0"
msgid "To Date is mandatory in Work Experience."
msgstr "crwdns150856:0crwdne150856:0"
#: lms/lms/utils.py:1574
#: lms/lms/utils.py:1583
msgid "To join this batch, please contact the Administrator."
msgstr "crwdns150858:0crwdne150858:0"
@@ -4874,7 +4944,7 @@ msgstr "crwdns150898:0crwdne150898:0"
#. Option for the 'Status' (Select) field in DocType 'Cohort'
#. Label of the upcoming (Check) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:151 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/CourseForm.vue:175 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming"
msgstr "crwdns150900:0crwdne150900:0"
@@ -4898,6 +4968,10 @@ msgstr "crwdns150906:0crwdne150906:0"
msgid "Update Password"
msgstr "crwdns150908:0crwdne150908:0"
#: frontend/src/pages/BatchForm.vue:51 frontend/src/pages/CourseForm.vue:72
msgid "Upload"
msgstr "crwdns151498:0crwdne151498:0"
#: frontend/src/pages/AssignmentSubmission.vue:69
msgid "Upload File"
msgstr "crwdns150910:0crwdne150910:0"
@@ -5020,6 +5094,10 @@ msgstr "crwdns150954:0crwdne150954:0"
msgid "Welcome to {0}!"
msgstr "crwdns150956:0{0}crwdne150956:0"
#: frontend/src/components/LessonHelp.vue:63
msgid "What does include in preview mean?"
msgstr "crwdns151500:0crwdne151500:0"
#: lms/templates/courses_under_review.html:15
msgid "When a course gets submitted for review, it will be listed here."
msgstr "crwdns150958:0crwdne150958:0"
@@ -5073,11 +5151,11 @@ msgstr "crwdns150976:0crwdne150976:0"
msgid "You already have an evaluation on {0} at {1} for the course {2}."
msgstr "crwdns150978:0{0}crwdnd150978:0{1}crwdnd150978:0{2}crwdne150978:0"
#: lms/lms/api.py:206
#: lms/lms/api.py:207
msgid "You are already enrolled for this batch."
msgstr "crwdns150980:0crwdne150980:0"
#: lms/lms/api.py:198
#: lms/lms/api.py:199
msgid "You are already enrolled for this course."
msgstr "crwdns150982:0crwdne150982:0"
@@ -5089,6 +5167,10 @@ msgstr "crwdns150984:0crwdne150984:0"
msgid "You are not a mentor of the course {0}"
msgstr "crwdns150986:0{0}crwdne150986:0"
#: frontend/src/pages/Courses.vue:134
msgid "You can add chapters and lessons to it."
msgstr "crwdns151502:0crwdne151502:0"
#: lms/templates/emails/lms_course_interest.html:13
#: lms/templates/emails/lms_invite_request_approved.html:11
msgid "You can also copy-paste following link in your browser"
@@ -5106,6 +5188,10 @@ msgstr "crwdns150992:0{0}crwdne150992:0"
msgid "You can find their resume attached to this email."
msgstr "crwdns150994:0crwdne150994:0"
#: frontend/src/pages/Batches.vue:113
msgid "You can link courses and assessments to it."
msgstr "crwdns151504:0crwdne151504:0"
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:115
msgid "You cannot schedule evaluations after {0}."
msgstr "crwdns150996:0{0}crwdne150996:0"
@@ -5147,7 +5233,7 @@ msgstr "crwdns151012:0crwdne151012:0"
msgid "You have been enrolled in this batch"
msgstr "crwdns151014:0crwdne151014:0"
#: frontend/src/components/CourseCardOverlay.vue:164
#: frontend/src/components/CourseCardOverlay.vue:162
msgid "You have been enrolled in this course"
msgstr "crwdns151016:0crwdne151016:0"
@@ -5159,7 +5245,7 @@ msgstr "crwdns151018:0crwdne151018:0"
msgid "You haven't enrolled for any courses"
msgstr "crwdns151020:0crwdne151020:0"
#: frontend/src/components/CourseCardOverlay.vue:144
#: frontend/src/components/CourseCardOverlay.vue:142
msgid "You need to login first to enroll for this course"
msgstr "crwdns151022:0crwdne151022:0"
@@ -5277,7 +5363,7 @@ msgstr "crwdns151074:0crwdne151074:0"
msgid "you can"
msgstr "crwdns151076:0crwdne151076:0"
#: lms/lms/api.py:731 lms/lms/api.py:739
#: lms/lms/api.py:732 lms/lms/api.py:740
msgid "{0} Settings not found"
msgstr "crwdns151078:0{0}crwdne151078:0"
@@ -5313,7 +5399,7 @@ msgstr "crwdns151092:0{0}crwdnd151092:0{1}crwdne151092:0"
msgid "{0} is your evaluator"
msgstr "crwdns151094:0{0}crwdne151094:0"
#: lms/lms/utils.py:690
#: lms/lms/utils.py:709
msgid "{0} mentioned you in a comment"
msgstr "crwdns151096:0{0}crwdne151096:0"
@@ -5321,11 +5407,11 @@ msgstr "crwdns151096:0{0}crwdne151096:0"
msgid "{0} mentioned you in a comment in your batch."
msgstr "crwdns151098:0{0}crwdne151098:0"
#: lms/lms/utils.py:643 lms/lms/utils.py:649
#: lms/lms/utils.py:662 lms/lms/utils.py:668
msgid "{0} mentioned you in a comment in {1}"
msgstr "crwdns151100:0{0}crwdnd151100:0{1}crwdne151100:0"
#: lms/lms/utils.py:461
#: lms/lms/utils.py:480
msgid "{0}k"
msgstr "crwdns151102:0{0}crwdne151102:0"

File diff suppressed because it is too large Load Diff

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-10-18 16:04+0000\n"
"PO-Revision-Date: 2024-10-27 11:40\n"
"POT-Creation-Date: 2024-11-01 16:04+0000\n"
"PO-Revision-Date: 2024-11-05 14:34\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Persian\n"
"MIME-Version: 1.0\n"
@@ -62,6 +62,10 @@ msgstr ""
msgid "<span style=\"font-size: 18px;\"><b>Statistics</b></span>"
msgstr ""
#: frontend/src/pages/CourseForm.vue:32
msgid "A one line introduction to the course that appears on the course card"
msgstr ""
#: frontend/src/pages/ProfileAbout.vue:4
msgid "About"
msgstr "درباره"
@@ -102,7 +106,6 @@ msgstr "اضافه کردن"
#: frontend/src/components/CourseOutline.vue:11
#: frontend/src/components/CreateOutline.vue:18
#: frontend/src/components/Modals/ChapterModal.vue:5
#: frontend/src/components/Modals/ChapterModal.vue:9
msgid "Add Chapter"
msgstr "افزودن فصل"
@@ -225,7 +228,7 @@ msgstr "قبلا ثبت شده است"
#. Label of the amount (Currency) field in DocType 'Web Form'
#. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the amount (Currency) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:198 lms/fixtures/custom_field.json
#: frontend/src/pages/BatchForm.vue:208 lms/fixtures/custom_field.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/public/js/common_functions.js:379
@@ -269,6 +272,14 @@ msgstr "اطلاعیه"
msgid "Answer"
msgstr "پاسخ"
#: frontend/src/pages/CourseForm.vue:76 frontend/src/pages/CourseForm.vue:94
msgid "Appears on the course card in the course list"
msgstr ""
#: frontend/src/pages/BatchForm.vue:55 frontend/src/pages/BatchForm.vue:73
msgid "Appears when the batch URL is shared on any online platform"
msgstr ""
#: frontend/src/pages/JobDetail.vue:131
msgid "Applications Received"
msgstr "درخواست های دریافت شده"
@@ -467,7 +478,7 @@ msgid "Batch Description"
msgstr "توضیحات دسته"
#. Label of the batch_details (Text Editor) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:89 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:97 lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:349
#: lms/templates/emails/batch_confirmation.html:30
msgid "Batch Details"
@@ -634,8 +645,8 @@ msgstr ""
#. Label of the category (Link) field in DocType 'LMS Batch'
#. Label of the category (Data) field in DocType 'LMS Category'
#. Label of the category (Link) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:179 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:116 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/BatchForm.vue:189 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:139 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/JobDetail.vue:102
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json
@@ -936,7 +947,7 @@ msgstr ""
msgid "Completed"
msgstr "تکمیل شد"
#: frontend/src/pages/CourseForm.vue:168
#: frontend/src/pages/CourseForm.vue:192
msgid "Completion Certificate"
msgstr ""
@@ -986,7 +997,7 @@ msgstr ""
msgid "Contract"
msgstr "قرارداد"
#: lms/lms/utils.py:423
#: lms/lms/utils.py:442
msgid "Cookie Policy"
msgstr ""
@@ -1107,7 +1118,7 @@ msgstr ""
msgid "Course Data"
msgstr ""
#: frontend/src/pages/CourseForm.vue:34
#: frontend/src/pages/CourseForm.vue:41
msgid "Course Description"
msgstr ""
@@ -1116,7 +1127,7 @@ msgstr ""
msgid "Course Evaluator"
msgstr "ارزیاب دوره"
#: frontend/src/pages/CourseForm.vue:64
#: frontend/src/pages/CourseForm.vue:54
msgid "Course Image"
msgstr "تصویر دوره"
@@ -1139,7 +1150,7 @@ msgid "Course Name"
msgstr "اسم دوره"
#. Label of the course_price (Currency) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:186
#: frontend/src/pages/CourseForm.vue:210
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Course Price"
msgstr "قیمت دوره"
@@ -1172,7 +1183,7 @@ msgstr "عنوان دوره"
msgid "Course already added to the batch."
msgstr "دوره قبلاً به دسته اضافه شده است."
#: frontend/src/pages/CourseForm.vue:433
#: frontend/src/pages/CourseForm.vue:457
msgid "Course price and currency are mandatory for paid courses"
msgstr ""
@@ -1210,6 +1221,10 @@ msgstr ""
msgid "Cover Image"
msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:9
msgid "Create"
msgstr "ایجاد کردن"
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7
msgid "Create LMS Certificate"
msgstr ""
@@ -1218,7 +1233,11 @@ msgstr ""
msgid "Create LMS Certificate Evaluation"
msgstr ""
#: lms/templates/onboarding_header.html:19
#: frontend/src/pages/Batches.vue:110
msgid "Create a Batch"
msgstr ""
#: frontend/src/pages/Courses.vue:131 lms/templates/onboarding_header.html:19
msgid "Create a Course"
msgstr "ایجاد دوره"
@@ -1234,7 +1253,7 @@ msgstr ""
#. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course'
#. Label of the currency (Link) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:206 frontend/src/pages/CourseForm.vue:193
#: frontend/src/pages/BatchForm.vue:216 frontend/src/pages/CourseForm.vue:217
#: lms/fixtures/custom_field.json lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_payment/lms_payment.json
@@ -1292,7 +1311,7 @@ msgstr "تاریخ"
#. Label of the section_break_glxh (Section Break) field in DocType 'LMS Live
#. Class'
#: frontend/src/pages/BatchForm.vue:102
#: frontend/src/pages/BatchForm.vue:110
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Date and Time"
msgstr "تاریخ و زمان"
@@ -1340,7 +1359,6 @@ msgstr ""
#. Label of the description (Markdown Editor) field in DocType 'Cohort'
#. Label of the description (Markdown Editor) field in DocType 'Cohort
#. Subgroup'
#. Label of the description (Small Text) field in DocType 'Course Chapter'
#. Label of the description (Small Text) field in DocType 'LMS Badge'
#. Label of the description (Small Text) field in DocType 'LMS Batch'
#. Label of the description (Markdown Editor) field in DocType 'LMS Batch Old'
@@ -1349,12 +1367,11 @@ msgstr ""
#. Label of the description (Text) field in DocType 'LMS Live Class'
#. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:73
#: frontend/src/pages/BatchForm.vue:83 frontend/src/pages/JobCreation.vue:43
#: frontend/src/pages/BatchForm.vue:90 frontend/src/pages/JobCreation.vue:43
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/lms_badge/lms_badge.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -1376,7 +1393,7 @@ msgstr ""
msgid "Details"
msgstr "جزئیات"
#: frontend/src/pages/CourseForm.vue:163
#: frontend/src/pages/CourseForm.vue:187
msgid "Disable Self Enrollment"
msgstr "غیرفعال کردن ثبت نام خود"
@@ -1451,13 +1468,14 @@ msgstr "ایمیل"
#: frontend/src/components/BatchOverlay.vue:93
#: frontend/src/components/CourseCardOverlay.vue:86
#: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:70
#: frontend/src/pages/Profile.vue:32
msgid "Edit"
msgstr "ویرایش"
#: frontend/src/components/CourseOutline.vue:106
#: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/components/Modals/ChapterModal.vue:5
msgid "Edit Chapter"
msgstr "ویرایش فصل"
@@ -1533,7 +1551,7 @@ msgstr "فعال"
#. Label of the end_date (Date) field in DocType 'Cohort'
#. Label of the end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:114 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/BatchForm.vue:122 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:282
msgid "End Date"
@@ -1551,7 +1569,7 @@ msgstr "تاریخ پایان (یا مورد انتظار)"
#. Label of the end_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the end_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the end_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:128
#: frontend/src/pages/BatchForm.vue:136
#: frontend/src/pages/ProfileEvaluator.vue:18
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1587,13 +1605,15 @@ msgstr ""
msgid "Enrollment Count"
msgstr ""
#: lms/lms/utils.py:1683
#: lms/lms/utils.py:1692
msgid "Enrollment Failed"
msgstr ""
#. Label of the enrollments (Data) field in DocType 'LMS Course'
#. Label of a chart in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/pages/Statistics.vue:45 lms/lms/workspace/lms/lms.json
#: frontend/src/pages/Statistics.vue:45
#: lms/lms/doctype/lms_course/lms_course.json lms/lms/workspace/lms/lms.json
msgid "Enrollments"
msgstr ""
@@ -1635,7 +1655,7 @@ msgid "Evaluation Details"
msgstr ""
#. Label of the evaluation_end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:155
#: frontend/src/pages/BatchForm.vue:165
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:333
msgid "Evaluation End Date"
@@ -1697,6 +1717,10 @@ msgstr ""
msgid "Event"
msgstr "رویداد"
#: frontend/src/pages/BatchForm.vue:144
msgid "Example: IST (+5:30)"
msgstr ""
#. Label of the exercise (Link) field in DocType 'Exercise Latest Submission'
#. Label of the exercise (Link) field in DocType 'Exercise Submission'
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
@@ -1767,7 +1791,7 @@ msgstr ""
#. Label of the featured (Check) field in DocType 'LMS Course'
#: frontend/src/components/CourseCard.vue:16
#: frontend/src/pages/CourseForm.vue:156
#: frontend/src/pages/CourseForm.vue:180
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Featured"
msgstr "ویژه"
@@ -2030,6 +2054,10 @@ msgstr "شناسه"
msgid "Icon"
msgstr "آیکون"
#: frontend/src/components/LessonHelp.vue:68
msgid "If Include in Preview is enabled for a lesson then the lesson will also be accessible to non logged in users."
msgstr ""
#: lms/templates/emails/mentor_request_creation_email.html:5
msgid "If you are not any more interested to mentor the course"
msgstr "اگر دیگر علاقه ای به راهنمایی دوره ندارید"
@@ -2166,7 +2194,7 @@ msgstr "یادداشت های مدرس"
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch'
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:77 frontend/src/pages/CourseForm.vue:123
#: frontend/src/pages/BatchForm.vue:85 frontend/src/pages/CourseForm.vue:146
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Instructors"
@@ -2311,7 +2339,7 @@ msgstr "عنوان شغلی"
msgid "Jobs"
msgstr "شغل ها"
#: frontend/src/components/LiveClass.vue:53
#: frontend/src/components/LiveClass.vue:54
#: lms/templates/upcoming_evals.html:15
msgid "Join"
msgstr "پیوستن"
@@ -2325,6 +2353,10 @@ msgstr ""
msgid "Join URL"
msgstr ""
#: frontend/src/pages/CourseForm.vue:128
msgid "Keywords for the course"
msgstr ""
#. Name of a Workspace
#: lms/lms/workspace/lms/lms.json
msgid "LMS"
@@ -2578,9 +2610,11 @@ msgstr "عنوان درس"
#. Label of the lessons (Table) field in DocType 'Course Chapter'
#. Group in Course Chapter's connections
#. Label of the lessons (Data) field in DocType 'LMS Course'
#: frontend/src/components/CourseCard.vue:34
#: frontend/src/components/CourseCardOverlay.vue:96
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Lessons"
msgstr "درس ها"
@@ -2753,7 +2787,7 @@ msgid "Maximun Attempts"
msgstr ""
#. Label of the medium (Select) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:174
#: frontend/src/pages/BatchForm.vue:184
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:309
msgid "Medium"
@@ -2901,7 +2935,7 @@ msgid "Mentors"
msgstr "مربیان"
#. Label of the meta_image (Attach Image) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:53 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:36 lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:362
msgid "Meta Image"
msgstr "تصویر متا"
@@ -2937,11 +2971,11 @@ msgstr ""
msgid "Modified By"
msgstr "تغییر داده شده توسط"
#: lms/lms/api.py:190
#: lms/lms/api.py:191
msgid "Module Name is incorrect or does not exist."
msgstr ""
#: lms/lms/api.py:186
#: lms/lms/api.py:187
msgid "Module is incorrect."
msgstr ""
@@ -3008,11 +3042,11 @@ msgstr ""
msgid "New Sign Up"
msgstr ""
#: lms/lms/utils.py:613
#: lms/lms/utils.py:632
msgid "New comment in batch {0}"
msgstr ""
#: lms/lms/utils.py:606
#: lms/lms/utils.py:625
msgid "New reply on the topic {0} in course {1}"
msgstr ""
@@ -3050,6 +3084,10 @@ msgstr ""
msgid "No announcements"
msgstr ""
#: frontend/src/pages/Batches.vue:125
msgid "No batches found"
msgstr ""
#: lms/templates/certificates_section.html:23
msgid "No certificates"
msgstr ""
@@ -3058,6 +3096,10 @@ msgstr ""
msgid "No courses created"
msgstr ""
#: frontend/src/pages/Courses.vue:146
msgid "No courses found"
msgstr ""
#: lms/templates/courses_under_review.html:14
msgid "No courses under review"
msgstr ""
@@ -3070,7 +3112,7 @@ msgstr ""
msgid "No jobs posted"
msgstr ""
#: frontend/src/components/LiveClass.vue:59
#: frontend/src/components/LiveClass.vue:60
msgid "No live classes scheduled"
msgstr ""
@@ -3086,12 +3128,12 @@ msgstr ""
msgid "No {0}"
msgstr "نه {0}"
#: frontend/src/pages/Batches.vue:88
msgid "No {0} batches found"
#: frontend/src/pages/Batches.vue:84
msgid "No {0} batches"
msgstr ""
#: frontend/src/pages/Courses.vue:110
msgid "No {0} courses found"
#: frontend/src/pages/Courses.vue:106
msgid "No {0} courses"
msgstr ""
#: lms/templates/quiz/quiz.html:147
@@ -3146,6 +3188,10 @@ msgstr "اعلان‌ها"
msgid "Notify me when available"
msgstr ""
#: frontend/src/pages/BatchForm.vue:161
msgid "Number of seats available"
msgstr ""
#. Label of the sb_00 (Section Break) field in DocType 'Zoom Settings'
#: lms/lms/doctype/zoom_settings/zoom_settings.json
msgid "OAuth Client ID"
@@ -3178,7 +3224,7 @@ msgstr "آنلاین"
msgid "Only files of type {0} will be accepted."
msgstr "فقط فایل هایی از نوع {0} پذیرفته می شوند."
#: frontend/src/pages/CourseForm.vue:449 frontend/src/utils/index.js:509
#: frontend/src/pages/CourseForm.vue:473 frontend/src/utils/index.js:518
msgid "Only image file is allowed."
msgstr ""
@@ -3286,14 +3332,14 @@ msgid "Pages"
msgstr "صفحات"
#. Label of the paid_batch (Check) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:194
#: frontend/src/pages/BatchForm.vue:204
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:373
msgid "Paid Batch"
msgstr ""
#. Label of the paid_course (Check) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:181
#: frontend/src/pages/CourseForm.vue:205
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Paid Course"
msgstr ""
@@ -3335,9 +3381,13 @@ msgstr ""
msgid "Password"
msgstr "کلمه عبور"
#: frontend/src/pages/CourseForm.vue:104
msgid "Paste the youtube link of a short video introducing the course"
msgstr ""
#. Label of the payment (Link) field in DocType 'Batch Student'
#. Label of the payment (Link) field in DocType 'LMS Enrollment'
#: frontend/src/pages/BatchForm.vue:188
#: frontend/src/pages/BatchForm.vue:198
#: lms/lms/doctype/batch_student/batch_student.json
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
msgid "Payment"
@@ -3429,7 +3479,7 @@ msgstr ""
msgid "Phone Number"
msgstr "شماره تلفن"
#: frontend/src/components/CourseCardOverlay.vue:143
#: frontend/src/components/CourseCardOverlay.vue:141
msgid "Please Login"
msgstr ""
@@ -3490,7 +3540,7 @@ msgstr ""
msgid "Please login to access this page."
msgstr ""
#: lms/lms/api.py:182
#: lms/lms/api.py:183
msgid "Please login to continue with payment."
msgstr ""
@@ -3580,7 +3630,7 @@ msgstr ""
msgid "Preview Image"
msgstr "پیش نمایش تصویر"
#: frontend/src/pages/CourseForm.vue:86
#: frontend/src/pages/CourseForm.vue:102
msgid "Preview Video"
msgstr ""
@@ -3590,7 +3640,7 @@ msgstr "قبلی"
#. Label of the pricing_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the pricing_tab (Tab Break) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:175
#: frontend/src/pages/CourseForm.vue:199
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:368
@@ -3608,7 +3658,7 @@ msgstr ""
msgid "Primary Subgroup"
msgstr ""
#: lms/lms/utils.py:422
#: lms/lms/utils.py:441
msgid "Privacy Policy"
msgstr ""
@@ -3660,7 +3710,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Batch'
#. Label of the published (Check) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:108
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:138
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:162
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:266
@@ -3673,7 +3723,7 @@ msgid "Published Courses"
msgstr ""
#. Label of the published_on (Date) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:142
#: frontend/src/pages/CourseForm.vue:166
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Published On"
msgstr "منتشر شده در"
@@ -3794,11 +3844,13 @@ msgid "Quizzes"
msgstr ""
#. Label of the rating (Rating) field in DocType 'LMS Certificate Evaluation'
#. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:109
#: frontend/src/components/CourseCardOverlay.vue:108
#: frontend/src/components/Modals/Event.vue:86
#: frontend/src/components/Modals/ReviewModal.vue:20
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_course_review/lms_course_review.json
#: lms/templates/reviews.html:125
msgid "Rating"
@@ -3869,6 +3921,10 @@ msgstr "رد شده"
msgid "Related Courses"
msgstr ""
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/CourseForm.vue:91
msgid "Remove"
msgstr "برداشتن"
#: frontend/src/components/Modals/AnnouncementModal.vue:26
msgid "Reply To"
msgstr ""
@@ -4024,7 +4080,7 @@ msgid "Search for an icon"
msgstr ""
#. Label of the seat_count (Int) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:149
#: frontend/src/pages/BatchForm.vue:158
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:327
msgid "Seat Count"
@@ -4068,7 +4124,7 @@ msgid "Set your Password"
msgstr ""
#: frontend/src/components/Modals/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:143 frontend/src/pages/CourseForm.vue:128
#: frontend/src/pages/BatchForm.vue:152 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:78
msgid "Settings"
msgstr "تنظیمات"
@@ -4078,11 +4134,15 @@ msgid "Share on"
msgstr ""
#. Label of the short_introduction (Small Text) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:29
#: frontend/src/pages/CourseForm.vue:30
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Short Introduction"
msgstr ""
#: frontend/src/pages/BatchForm.vue:93
msgid "Short description of the batch"
msgstr ""
#. Label of the show_answer (Check) field in DocType 'LMS Assignment'
#: lms/lms/doctype/lms_assignment/lms_assignment.json
msgid "Show Answer"
@@ -4235,7 +4295,7 @@ msgstr ""
msgid "Stage"
msgstr "صحنه"
#: frontend/src/components/LiveClass.vue:45 frontend/src/components/Quiz.vue:65
#: frontend/src/components/LiveClass.vue:46 frontend/src/components/Quiz.vue:65
#: lms/templates/quiz/quiz.html:39
msgid "Start"
msgstr "شروع"
@@ -4243,7 +4303,7 @@ msgstr "شروع"
#. Label of the start_date (Date) field in DocType 'Education Detail'
#. Label of the start_date (Date) field in DocType 'LMS Batch'
#. Label of the start_date (Date) field in DocType 'LMS Batch Old'
#: frontend/src/pages/BatchForm.vue:108
#: frontend/src/pages/BatchForm.vue:116
#: lms/lms/doctype/education_detail/education_detail.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -4264,7 +4324,7 @@ msgstr ""
#. Label of the start_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the start_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the start_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:122
#: frontend/src/pages/BatchForm.vue:130
#: frontend/src/pages/ProfileEvaluator.vue:15
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -4303,7 +4363,9 @@ msgstr ""
msgid "State"
msgstr "حالت"
#. Label of the tab_4_tab (Tab Break) field in DocType 'LMS Course'
#. Label of the statistics (Check) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:133
msgid "Statistics"
msgstr "آمار"
@@ -4433,7 +4495,7 @@ msgstr ""
#: frontend/src/components/BatchCourses.vue:150
#: frontend/src/components/BatchOverlay.vue:135
#: frontend/src/components/BatchStudents.vue:157
#: frontend/src/components/CourseCardOverlay.vue:163
#: frontend/src/components/CourseCardOverlay.vue:161
#: frontend/src/components/Modals/AssessmentModal.vue:73
#: frontend/src/components/Modals/Event.vue:255
#: frontend/src/components/Modals/Event.vue:310
@@ -4507,7 +4569,7 @@ msgid "System Manager"
msgstr "مدیر سیستم"
#. Label of the tags (Data) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:91
#: frontend/src/pages/CourseForm.vue:112
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Tags"
msgstr "برچسب ها"
@@ -4535,7 +4597,7 @@ msgstr "قالب"
msgid "Temporarily Disabled"
msgstr "موقتا غیر فعال می باشد"
#: lms/lms/utils.py:421
#: lms/lms/utils.py:440
msgid "Terms of Use"
msgstr "شرایط استفاده"
@@ -4587,10 +4649,18 @@ msgstr ""
msgid "The status of your application has changed."
msgstr ""
#: frontend/src/pages/Batches.vue:129
msgid "There are no batches available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr ""
#: frontend/src/components/CreateOutline.vue:12
msgid "There are no chapters in this course. Create and manage chapters from here."
msgstr ""
#: frontend/src/pages/Courses.vue:150
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:140
msgid "There are no seats available in this batch."
msgstr ""
@@ -4622,7 +4692,7 @@ msgstr ""
msgid "This course has:"
msgstr ""
#: lms/lms/utils.py:1563
#: lms/lms/utils.py:1572
msgid "This course is free."
msgstr ""
@@ -4691,7 +4761,7 @@ msgstr "الگوی جدول زمانی"
#. Label of the timezone (Data) field in DocType 'LMS Certificate Request'
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/LiveClassModal.vue:44
#: frontend/src/pages/BatchForm.vue:134
#: frontend/src/pages/BatchForm.vue:142
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -4757,7 +4827,7 @@ msgstr "تا تاریخ"
msgid "To Date is mandatory in Work Experience."
msgstr ""
#: lms/lms/utils.py:1574
#: lms/lms/utils.py:1583
msgid "To join this batch, please contact the Administrator."
msgstr ""
@@ -4874,7 +4944,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Cohort'
#. Label of the upcoming (Check) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:151 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/CourseForm.vue:175 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming"
msgstr ""
@@ -4898,6 +4968,10 @@ msgstr "به روز رسانی"
msgid "Update Password"
msgstr "به‌روزرسانی گذرواژه"
#: frontend/src/pages/BatchForm.vue:51 frontend/src/pages/CourseForm.vue:72
msgid "Upload"
msgstr "آپلود"
#: frontend/src/pages/AssignmentSubmission.vue:69
msgid "Upload File"
msgstr "آپلود فایل"
@@ -5020,6 +5094,10 @@ msgstr "چهار شنبه"
msgid "Welcome to {0}!"
msgstr "به {0} خوش آمدید!"
#: frontend/src/components/LessonHelp.vue:63
msgid "What does include in preview mean?"
msgstr ""
#: lms/templates/courses_under_review.html:15
msgid "When a course gets submitted for review, it will be listed here."
msgstr ""
@@ -5073,11 +5151,11 @@ msgstr ""
msgid "You already have an evaluation on {0} at {1} for the course {2}."
msgstr ""
#: lms/lms/api.py:206
#: lms/lms/api.py:207
msgid "You are already enrolled for this batch."
msgstr ""
#: lms/lms/api.py:198
#: lms/lms/api.py:199
msgid "You are already enrolled for this course."
msgstr ""
@@ -5089,6 +5167,10 @@ msgstr ""
msgid "You are not a mentor of the course {0}"
msgstr ""
#: frontend/src/pages/Courses.vue:134
msgid "You can add chapters and lessons to it."
msgstr ""
#: lms/templates/emails/lms_course_interest.html:13
#: lms/templates/emails/lms_invite_request_approved.html:11
msgid "You can also copy-paste following link in your browser"
@@ -5106,6 +5188,10 @@ msgstr ""
msgid "You can find their resume attached to this email."
msgstr ""
#: frontend/src/pages/Batches.vue:113
msgid "You can link courses and assessments to it."
msgstr ""
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:115
msgid "You cannot schedule evaluations after {0}."
msgstr ""
@@ -5147,7 +5233,7 @@ msgstr ""
msgid "You have been enrolled in this batch"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:164
#: frontend/src/components/CourseCardOverlay.vue:162
msgid "You have been enrolled in this course"
msgstr ""
@@ -5159,7 +5245,7 @@ msgstr ""
msgid "You haven't enrolled for any courses"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:144
#: frontend/src/components/CourseCardOverlay.vue:142
msgid "You need to login first to enroll for this course"
msgstr ""
@@ -5277,7 +5363,7 @@ msgstr "ستاره ها"
msgid "you can"
msgstr ""
#: lms/lms/api.py:731 lms/lms/api.py:739
#: lms/lms/api.py:732 lms/lms/api.py:740
msgid "{0} Settings not found"
msgstr ""
@@ -5313,7 +5399,7 @@ msgstr ""
msgid "{0} is your evaluator"
msgstr ""
#: lms/lms/utils.py:690
#: lms/lms/utils.py:709
msgid "{0} mentioned you in a comment"
msgstr ""
@@ -5321,11 +5407,11 @@ msgstr ""
msgid "{0} mentioned you in a comment in your batch."
msgstr ""
#: lms/lms/utils.py:643 lms/lms/utils.py:649
#: lms/lms/utils.py:662 lms/lms/utils.py:668
msgid "{0} mentioned you in a comment in {1}"
msgstr ""
#: lms/lms/utils.py:461
#: lms/lms/utils.py:480
msgid "{0}k"
msgstr ""

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-10-18 16:04+0000\n"
"PO-Revision-Date: 2024-10-26 11:24\n"
"POT-Creation-Date: 2024-11-01 16:04+0000\n"
"PO-Revision-Date: 2024-11-05 14:33\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: French\n"
"MIME-Version: 1.0\n"
@@ -62,6 +62,10 @@ msgstr ""
msgid "<span style=\"font-size: 18px;\"><b>Statistics</b></span>"
msgstr ""
#: frontend/src/pages/CourseForm.vue:32
msgid "A one line introduction to the course that appears on the course card"
msgstr ""
#: frontend/src/pages/ProfileAbout.vue:4
msgid "About"
msgstr "A Propos"
@@ -102,7 +106,6 @@ msgstr "Ajouter"
#: frontend/src/components/CourseOutline.vue:11
#: frontend/src/components/CreateOutline.vue:18
#: frontend/src/components/Modals/ChapterModal.vue:5
#: frontend/src/components/Modals/ChapterModal.vue:9
msgid "Add Chapter"
msgstr "Ajouter un chapitre"
@@ -225,7 +228,7 @@ msgstr "Déjà Inscrit"
#. Label of the amount (Currency) field in DocType 'Web Form'
#. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the amount (Currency) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:198 lms/fixtures/custom_field.json
#: frontend/src/pages/BatchForm.vue:208 lms/fixtures/custom_field.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/public/js/common_functions.js:379
@@ -269,6 +272,14 @@ msgstr "Information"
msgid "Answer"
msgstr "Réponse"
#: frontend/src/pages/CourseForm.vue:76 frontend/src/pages/CourseForm.vue:94
msgid "Appears on the course card in the course list"
msgstr ""
#: frontend/src/pages/BatchForm.vue:55 frontend/src/pages/BatchForm.vue:73
msgid "Appears when the batch URL is shared on any online platform"
msgstr ""
#: frontend/src/pages/JobDetail.vue:131
msgid "Applications Received"
msgstr "Applications reçues"
@@ -467,7 +478,7 @@ msgid "Batch Description"
msgstr "Description du Lot"
#. Label of the batch_details (Text Editor) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:89 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:97 lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:349
#: lms/templates/emails/batch_confirmation.html:30
msgid "Batch Details"
@@ -634,8 +645,8 @@ msgstr ""
#. Label of the category (Link) field in DocType 'LMS Batch'
#. Label of the category (Data) field in DocType 'LMS Category'
#. Label of the category (Link) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:179 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:116 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/BatchForm.vue:189 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:139 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/JobDetail.vue:102
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json
@@ -936,7 +947,7 @@ msgstr "Terminer l'inscription"
msgid "Completed"
msgstr "Terminé"
#: frontend/src/pages/CourseForm.vue:168
#: frontend/src/pages/CourseForm.vue:192
msgid "Completion Certificate"
msgstr ""
@@ -986,7 +997,7 @@ msgstr ""
msgid "Contract"
msgstr "Contrat"
#: lms/lms/utils.py:423
#: lms/lms/utils.py:442
msgid "Cookie Policy"
msgstr "Politique des cookies"
@@ -1107,7 +1118,7 @@ msgstr "Créateur de cours"
msgid "Course Data"
msgstr "Données du cours"
#: frontend/src/pages/CourseForm.vue:34
#: frontend/src/pages/CourseForm.vue:41
msgid "Course Description"
msgstr "Description du cours"
@@ -1116,7 +1127,7 @@ msgstr "Description du cours"
msgid "Course Evaluator"
msgstr "Évaluateur de cours"
#: frontend/src/pages/CourseForm.vue:64
#: frontend/src/pages/CourseForm.vue:54
msgid "Course Image"
msgstr "Image du cours"
@@ -1139,7 +1150,7 @@ msgid "Course Name"
msgstr "Nom du cours"
#. Label of the course_price (Currency) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:186
#: frontend/src/pages/CourseForm.vue:210
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Course Price"
msgstr "Prix du cours"
@@ -1172,7 +1183,7 @@ msgstr "Titre du cours"
msgid "Course already added to the batch."
msgstr "Cours déjà ajouté au lot."
#: frontend/src/pages/CourseForm.vue:433
#: frontend/src/pages/CourseForm.vue:457
msgid "Course price and currency are mandatory for paid courses"
msgstr ""
@@ -1210,6 +1221,10 @@ msgstr ""
msgid "Cover Image"
msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:9
msgid "Create"
msgstr "Créer"
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7
msgid "Create LMS Certificate"
msgstr "Créer un certificat LMS"
@@ -1218,7 +1233,11 @@ msgstr "Créer un certificat LMS"
msgid "Create LMS Certificate Evaluation"
msgstr "Créer une évaluation de certificat LMS"
#: lms/templates/onboarding_header.html:19
#: frontend/src/pages/Batches.vue:110
msgid "Create a Batch"
msgstr ""
#: frontend/src/pages/Courses.vue:131 lms/templates/onboarding_header.html:19
msgid "Create a Course"
msgstr "Créer un cours"
@@ -1234,7 +1253,7 @@ msgstr ""
#. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course'
#. Label of the currency (Link) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:206 frontend/src/pages/CourseForm.vue:193
#: frontend/src/pages/BatchForm.vue:216 frontend/src/pages/CourseForm.vue:217
#: lms/fixtures/custom_field.json lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_payment/lms_payment.json
@@ -1292,7 +1311,7 @@ msgstr ""
#. Label of the section_break_glxh (Section Break) field in DocType 'LMS Live
#. Class'
#: frontend/src/pages/BatchForm.vue:102
#: frontend/src/pages/BatchForm.vue:110
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Date and Time"
msgstr "Date et heure"
@@ -1340,7 +1359,6 @@ msgstr ""
#. Label of the description (Markdown Editor) field in DocType 'Cohort'
#. Label of the description (Markdown Editor) field in DocType 'Cohort
#. Subgroup'
#. Label of the description (Small Text) field in DocType 'Course Chapter'
#. Label of the description (Small Text) field in DocType 'LMS Badge'
#. Label of the description (Small Text) field in DocType 'LMS Batch'
#. Label of the description (Markdown Editor) field in DocType 'LMS Batch Old'
@@ -1349,12 +1367,11 @@ msgstr ""
#. Label of the description (Text) field in DocType 'LMS Live Class'
#. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:73
#: frontend/src/pages/BatchForm.vue:83 frontend/src/pages/JobCreation.vue:43
#: frontend/src/pages/BatchForm.vue:90 frontend/src/pages/JobCreation.vue:43
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/lms_badge/lms_badge.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -1376,7 +1393,7 @@ msgstr ""
msgid "Details"
msgstr "Détails"
#: frontend/src/pages/CourseForm.vue:163
#: frontend/src/pages/CourseForm.vue:187
msgid "Disable Self Enrollment"
msgstr "Désactiver l'auto-inscription"
@@ -1451,13 +1468,14 @@ msgstr ""
#: frontend/src/components/BatchOverlay.vue:93
#: frontend/src/components/CourseCardOverlay.vue:86
#: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:70
#: frontend/src/pages/Profile.vue:32
msgid "Edit"
msgstr "modifier"
#: frontend/src/components/CourseOutline.vue:106
#: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/components/Modals/ChapterModal.vue:5
msgid "Edit Chapter"
msgstr ""
@@ -1533,7 +1551,7 @@ msgstr "Activé"
#. Label of the end_date (Date) field in DocType 'Cohort'
#. Label of the end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:114 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/BatchForm.vue:122 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:282
msgid "End Date"
@@ -1551,7 +1569,7 @@ msgstr ""
#. Label of the end_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the end_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the end_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:128
#: frontend/src/pages/BatchForm.vue:136
#: frontend/src/pages/ProfileEvaluator.vue:18
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1587,13 +1605,15 @@ msgstr ""
msgid "Enrollment Count"
msgstr ""
#: lms/lms/utils.py:1683
#: lms/lms/utils.py:1692
msgid "Enrollment Failed"
msgstr ""
#. Label of the enrollments (Data) field in DocType 'LMS Course'
#. Label of a chart in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/pages/Statistics.vue:45 lms/lms/workspace/lms/lms.json
#: frontend/src/pages/Statistics.vue:45
#: lms/lms/doctype/lms_course/lms_course.json lms/lms/workspace/lms/lms.json
msgid "Enrollments"
msgstr ""
@@ -1635,7 +1655,7 @@ msgid "Evaluation Details"
msgstr ""
#. Label of the evaluation_end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:155
#: frontend/src/pages/BatchForm.vue:165
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:333
msgid "Evaluation End Date"
@@ -1697,6 +1717,10 @@ msgstr ""
msgid "Event"
msgstr "Événement"
#: frontend/src/pages/BatchForm.vue:144
msgid "Example: IST (+5:30)"
msgstr ""
#. Label of the exercise (Link) field in DocType 'Exercise Latest Submission'
#. Label of the exercise (Link) field in DocType 'Exercise Submission'
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
@@ -1767,7 +1791,7 @@ msgstr ""
#. Label of the featured (Check) field in DocType 'LMS Course'
#: frontend/src/components/CourseCard.vue:16
#: frontend/src/pages/CourseForm.vue:156
#: frontend/src/pages/CourseForm.vue:180
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Featured"
msgstr "En vedette"
@@ -2030,6 +2054,10 @@ msgstr ""
msgid "Icon"
msgstr "Icône"
#: frontend/src/components/LessonHelp.vue:68
msgid "If Include in Preview is enabled for a lesson then the lesson will also be accessible to non logged in users."
msgstr ""
#: lms/templates/emails/mentor_request_creation_email.html:5
msgid "If you are not any more interested to mentor the course"
msgstr ""
@@ -2166,7 +2194,7 @@ msgstr ""
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch'
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:77 frontend/src/pages/CourseForm.vue:123
#: frontend/src/pages/BatchForm.vue:85 frontend/src/pages/CourseForm.vue:146
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Instructors"
@@ -2311,7 +2339,7 @@ msgstr "Titre de l'Emploi"
msgid "Jobs"
msgstr "Emplois"
#: frontend/src/components/LiveClass.vue:53
#: frontend/src/components/LiveClass.vue:54
#: lms/templates/upcoming_evals.html:15
msgid "Join"
msgstr "Joindre"
@@ -2325,6 +2353,10 @@ msgstr ""
msgid "Join URL"
msgstr ""
#: frontend/src/pages/CourseForm.vue:128
msgid "Keywords for the course"
msgstr ""
#. Name of a Workspace
#: lms/lms/workspace/lms/lms.json
msgid "LMS"
@@ -2578,9 +2610,11 @@ msgstr ""
#. Label of the lessons (Table) field in DocType 'Course Chapter'
#. Group in Course Chapter's connections
#. Label of the lessons (Data) field in DocType 'LMS Course'
#: frontend/src/components/CourseCard.vue:34
#: frontend/src/components/CourseCardOverlay.vue:96
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Lessons"
msgstr ""
@@ -2753,7 +2787,7 @@ msgid "Maximun Attempts"
msgstr ""
#. Label of the medium (Select) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:174
#: frontend/src/pages/BatchForm.vue:184
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:309
msgid "Medium"
@@ -2901,7 +2935,7 @@ msgid "Mentors"
msgstr ""
#. Label of the meta_image (Attach Image) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:53 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:36 lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:362
msgid "Meta Image"
msgstr ""
@@ -2937,11 +2971,11 @@ msgstr ""
msgid "Modified By"
msgstr "Modifié Par"
#: lms/lms/api.py:190
#: lms/lms/api.py:191
msgid "Module Name is incorrect or does not exist."
msgstr ""
#: lms/lms/api.py:186
#: lms/lms/api.py:187
msgid "Module is incorrect."
msgstr ""
@@ -3008,11 +3042,11 @@ msgstr ""
msgid "New Sign Up"
msgstr ""
#: lms/lms/utils.py:613
#: lms/lms/utils.py:632
msgid "New comment in batch {0}"
msgstr ""
#: lms/lms/utils.py:606
#: lms/lms/utils.py:625
msgid "New reply on the topic {0} in course {1}"
msgstr ""
@@ -3050,6 +3084,10 @@ msgstr ""
msgid "No announcements"
msgstr ""
#: frontend/src/pages/Batches.vue:125
msgid "No batches found"
msgstr ""
#: lms/templates/certificates_section.html:23
msgid "No certificates"
msgstr ""
@@ -3058,6 +3096,10 @@ msgstr ""
msgid "No courses created"
msgstr ""
#: frontend/src/pages/Courses.vue:146
msgid "No courses found"
msgstr ""
#: lms/templates/courses_under_review.html:14
msgid "No courses under review"
msgstr ""
@@ -3070,7 +3112,7 @@ msgstr ""
msgid "No jobs posted"
msgstr ""
#: frontend/src/components/LiveClass.vue:59
#: frontend/src/components/LiveClass.vue:60
msgid "No live classes scheduled"
msgstr ""
@@ -3086,12 +3128,12 @@ msgstr ""
msgid "No {0}"
msgstr ""
#: frontend/src/pages/Batches.vue:88
msgid "No {0} batches found"
#: frontend/src/pages/Batches.vue:84
msgid "No {0} batches"
msgstr ""
#: frontend/src/pages/Courses.vue:110
msgid "No {0} courses found"
#: frontend/src/pages/Courses.vue:106
msgid "No {0} courses"
msgstr ""
#: lms/templates/quiz/quiz.html:147
@@ -3146,6 +3188,10 @@ msgstr ""
msgid "Notify me when available"
msgstr "M'avertir si disponible"
#: frontend/src/pages/BatchForm.vue:161
msgid "Number of seats available"
msgstr ""
#. Label of the sb_00 (Section Break) field in DocType 'Zoom Settings'
#: lms/lms/doctype/zoom_settings/zoom_settings.json
msgid "OAuth Client ID"
@@ -3178,7 +3224,7 @@ msgstr ""
msgid "Only files of type {0} will be accepted."
msgstr ""
#: frontend/src/pages/CourseForm.vue:449 frontend/src/utils/index.js:509
#: frontend/src/pages/CourseForm.vue:473 frontend/src/utils/index.js:518
msgid "Only image file is allowed."
msgstr ""
@@ -3286,14 +3332,14 @@ msgid "Pages"
msgstr ""
#. Label of the paid_batch (Check) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:194
#: frontend/src/pages/BatchForm.vue:204
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:373
msgid "Paid Batch"
msgstr ""
#. Label of the paid_course (Check) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:181
#: frontend/src/pages/CourseForm.vue:205
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Paid Course"
msgstr ""
@@ -3335,9 +3381,13 @@ msgstr ""
msgid "Password"
msgstr "Mot de Passe"
#: frontend/src/pages/CourseForm.vue:104
msgid "Paste the youtube link of a short video introducing the course"
msgstr ""
#. Label of the payment (Link) field in DocType 'Batch Student'
#. Label of the payment (Link) field in DocType 'LMS Enrollment'
#: frontend/src/pages/BatchForm.vue:188
#: frontend/src/pages/BatchForm.vue:198
#: lms/lms/doctype/batch_student/batch_student.json
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
msgid "Payment"
@@ -3429,7 +3479,7 @@ msgstr ""
msgid "Phone Number"
msgstr "Numéro de téléphone"
#: frontend/src/components/CourseCardOverlay.vue:143
#: frontend/src/components/CourseCardOverlay.vue:141
msgid "Please Login"
msgstr ""
@@ -3490,7 +3540,7 @@ msgstr ""
msgid "Please login to access this page."
msgstr ""
#: lms/lms/api.py:182
#: lms/lms/api.py:183
msgid "Please login to continue with payment."
msgstr ""
@@ -3580,7 +3630,7 @@ msgstr ""
msgid "Preview Image"
msgstr ""
#: frontend/src/pages/CourseForm.vue:86
#: frontend/src/pages/CourseForm.vue:102
msgid "Preview Video"
msgstr ""
@@ -3590,7 +3640,7 @@ msgstr "Précedent"
#. Label of the pricing_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the pricing_tab (Tab Break) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:175
#: frontend/src/pages/CourseForm.vue:199
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:368
@@ -3608,7 +3658,7 @@ msgstr ""
msgid "Primary Subgroup"
msgstr ""
#: lms/lms/utils.py:422
#: lms/lms/utils.py:441
msgid "Privacy Policy"
msgstr ""
@@ -3660,7 +3710,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Batch'
#. Label of the published (Check) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:108
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:138
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:162
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:266
@@ -3673,7 +3723,7 @@ msgid "Published Courses"
msgstr ""
#. Label of the published_on (Date) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:142
#: frontend/src/pages/CourseForm.vue:166
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Published On"
msgstr "Publié le"
@@ -3794,11 +3844,13 @@ msgid "Quizzes"
msgstr ""
#. Label of the rating (Rating) field in DocType 'LMS Certificate Evaluation'
#. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:109
#: frontend/src/components/CourseCardOverlay.vue:108
#: frontend/src/components/Modals/Event.vue:86
#: frontend/src/components/Modals/ReviewModal.vue:20
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_course_review/lms_course_review.json
#: lms/templates/reviews.html:125
msgid "Rating"
@@ -3869,6 +3921,10 @@ msgstr "Rejeté"
msgid "Related Courses"
msgstr ""
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/CourseForm.vue:91
msgid "Remove"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:26
msgid "Reply To"
msgstr ""
@@ -4024,7 +4080,7 @@ msgid "Search for an icon"
msgstr ""
#. Label of the seat_count (Int) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:149
#: frontend/src/pages/BatchForm.vue:158
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:327
msgid "Seat Count"
@@ -4068,7 +4124,7 @@ msgid "Set your Password"
msgstr ""
#: frontend/src/components/Modals/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:143 frontend/src/pages/CourseForm.vue:128
#: frontend/src/pages/BatchForm.vue:152 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:78
msgid "Settings"
msgstr "Paramètres"
@@ -4078,11 +4134,15 @@ msgid "Share on"
msgstr ""
#. Label of the short_introduction (Small Text) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:29
#: frontend/src/pages/CourseForm.vue:30
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Short Introduction"
msgstr ""
#: frontend/src/pages/BatchForm.vue:93
msgid "Short description of the batch"
msgstr ""
#. Label of the show_answer (Check) field in DocType 'LMS Assignment'
#: lms/lms/doctype/lms_assignment/lms_assignment.json
msgid "Show Answer"
@@ -4235,7 +4295,7 @@ msgstr ""
msgid "Stage"
msgstr "Etape"
#: frontend/src/components/LiveClass.vue:45 frontend/src/components/Quiz.vue:65
#: frontend/src/components/LiveClass.vue:46 frontend/src/components/Quiz.vue:65
#: lms/templates/quiz/quiz.html:39
msgid "Start"
msgstr "Démarrer"
@@ -4243,7 +4303,7 @@ msgstr "Démarrer"
#. Label of the start_date (Date) field in DocType 'Education Detail'
#. Label of the start_date (Date) field in DocType 'LMS Batch'
#. Label of the start_date (Date) field in DocType 'LMS Batch Old'
#: frontend/src/pages/BatchForm.vue:108
#: frontend/src/pages/BatchForm.vue:116
#: lms/lms/doctype/education_detail/education_detail.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -4264,7 +4324,7 @@ msgstr ""
#. Label of the start_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the start_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the start_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:122
#: frontend/src/pages/BatchForm.vue:130
#: frontend/src/pages/ProfileEvaluator.vue:15
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -4303,7 +4363,9 @@ msgstr ""
msgid "State"
msgstr "Etat"
#. Label of the tab_4_tab (Tab Break) field in DocType 'LMS Course'
#. Label of the statistics (Check) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:133
msgid "Statistics"
msgstr ""
@@ -4433,7 +4495,7 @@ msgstr ""
#: frontend/src/components/BatchCourses.vue:150
#: frontend/src/components/BatchOverlay.vue:135
#: frontend/src/components/BatchStudents.vue:157
#: frontend/src/components/CourseCardOverlay.vue:163
#: frontend/src/components/CourseCardOverlay.vue:161
#: frontend/src/components/Modals/AssessmentModal.vue:73
#: frontend/src/components/Modals/Event.vue:255
#: frontend/src/components/Modals/Event.vue:310
@@ -4507,7 +4569,7 @@ msgid "System Manager"
msgstr "Responsable Système"
#. Label of the tags (Data) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:91
#: frontend/src/pages/CourseForm.vue:112
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Tags"
msgstr "Balises"
@@ -4535,7 +4597,7 @@ msgstr "Modèle"
msgid "Temporarily Disabled"
msgstr "Temporairement désactivé"
#: lms/lms/utils.py:421
#: lms/lms/utils.py:440
msgid "Terms of Use"
msgstr ""
@@ -4587,10 +4649,18 @@ msgstr ""
msgid "The status of your application has changed."
msgstr ""
#: frontend/src/pages/Batches.vue:129
msgid "There are no batches available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr ""
#: frontend/src/components/CreateOutline.vue:12
msgid "There are no chapters in this course. Create and manage chapters from here."
msgstr ""
#: frontend/src/pages/Courses.vue:150
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:140
msgid "There are no seats available in this batch."
msgstr ""
@@ -4622,7 +4692,7 @@ msgstr ""
msgid "This course has:"
msgstr ""
#: lms/lms/utils.py:1563
#: lms/lms/utils.py:1572
msgid "This course is free."
msgstr ""
@@ -4691,7 +4761,7 @@ msgstr ""
#. Label of the timezone (Data) field in DocType 'LMS Certificate Request'
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/LiveClassModal.vue:44
#: frontend/src/pages/BatchForm.vue:134
#: frontend/src/pages/BatchForm.vue:142
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -4757,7 +4827,7 @@ msgstr "Jusqu'au"
msgid "To Date is mandatory in Work Experience."
msgstr ""
#: lms/lms/utils.py:1574
#: lms/lms/utils.py:1583
msgid "To join this batch, please contact the Administrator."
msgstr ""
@@ -4874,7 +4944,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Cohort'
#. Label of the upcoming (Check) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:151 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/CourseForm.vue:175 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming"
msgstr ""
@@ -4898,6 +4968,10 @@ msgstr "Mettre à Jour"
msgid "Update Password"
msgstr ""
#: frontend/src/pages/BatchForm.vue:51 frontend/src/pages/CourseForm.vue:72
msgid "Upload"
msgstr "Charger"
#: frontend/src/pages/AssignmentSubmission.vue:69
msgid "Upload File"
msgstr ""
@@ -5020,6 +5094,10 @@ msgstr "Mercredi"
msgid "Welcome to {0}!"
msgstr "Bienvenue sur {0}!"
#: frontend/src/components/LessonHelp.vue:63
msgid "What does include in preview mean?"
msgstr ""
#: lms/templates/courses_under_review.html:15
msgid "When a course gets submitted for review, it will be listed here."
msgstr ""
@@ -5073,11 +5151,11 @@ msgstr ""
msgid "You already have an evaluation on {0} at {1} for the course {2}."
msgstr ""
#: lms/lms/api.py:206
#: lms/lms/api.py:207
msgid "You are already enrolled for this batch."
msgstr ""
#: lms/lms/api.py:198
#: lms/lms/api.py:199
msgid "You are already enrolled for this course."
msgstr ""
@@ -5089,6 +5167,10 @@ msgstr ""
msgid "You are not a mentor of the course {0}"
msgstr ""
#: frontend/src/pages/Courses.vue:134
msgid "You can add chapters and lessons to it."
msgstr ""
#: lms/templates/emails/lms_course_interest.html:13
#: lms/templates/emails/lms_invite_request_approved.html:11
msgid "You can also copy-paste following link in your browser"
@@ -5106,6 +5188,10 @@ msgstr ""
msgid "You can find their resume attached to this email."
msgstr ""
#: frontend/src/pages/Batches.vue:113
msgid "You can link courses and assessments to it."
msgstr ""
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:115
msgid "You cannot schedule evaluations after {0}."
msgstr ""
@@ -5147,7 +5233,7 @@ msgstr ""
msgid "You have been enrolled in this batch"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:164
#: frontend/src/components/CourseCardOverlay.vue:162
msgid "You have been enrolled in this course"
msgstr ""
@@ -5159,7 +5245,7 @@ msgstr "Vous avez choisi d'être notifié pour ce cours. Vous recevrez un courri
msgid "You haven't enrolled for any courses"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:144
#: frontend/src/components/CourseCardOverlay.vue:142
msgid "You need to login first to enroll for this course"
msgstr ""
@@ -5277,7 +5363,7 @@ msgstr ""
msgid "you can"
msgstr ""
#: lms/lms/api.py:731 lms/lms/api.py:739
#: lms/lms/api.py:732 lms/lms/api.py:740
msgid "{0} Settings not found"
msgstr ""
@@ -5313,7 +5399,7 @@ msgstr ""
msgid "{0} is your evaluator"
msgstr ""
#: lms/lms/utils.py:690
#: lms/lms/utils.py:709
msgid "{0} mentioned you in a comment"
msgstr ""
@@ -5321,11 +5407,11 @@ msgstr ""
msgid "{0} mentioned you in a comment in your batch."
msgstr ""
#: lms/lms/utils.py:643 lms/lms/utils.py:649
#: lms/lms/utils.py:662 lms/lms/utils.py:668
msgid "{0} mentioned you in a comment in {1}"
msgstr "{0} vous a mentionné dans un commentaire dans {1}"
#: lms/lms/utils.py:461
#: lms/lms/utils.py:480
msgid "{0}k"
msgstr ""

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-10-18 16:04+0000\n"
"PO-Revision-Date: 2024-10-26 11:24\n"
"POT-Creation-Date: 2024-11-01 16:04+0000\n"
"PO-Revision-Date: 2024-11-05 14:33\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Hungarian\n"
"MIME-Version: 1.0\n"
@@ -62,6 +62,10 @@ msgstr ""
msgid "<span style=\"font-size: 18px;\"><b>Statistics</b></span>"
msgstr ""
#: frontend/src/pages/CourseForm.vue:32
msgid "A one line introduction to the course that appears on the course card"
msgstr ""
#: frontend/src/pages/ProfileAbout.vue:4
msgid "About"
msgstr ""
@@ -102,7 +106,6 @@ msgstr ""
#: frontend/src/components/CourseOutline.vue:11
#: frontend/src/components/CreateOutline.vue:18
#: frontend/src/components/Modals/ChapterModal.vue:5
#: frontend/src/components/Modals/ChapterModal.vue:9
msgid "Add Chapter"
msgstr ""
@@ -225,7 +228,7 @@ msgstr "Már regisztrált"
#. Label of the amount (Currency) field in DocType 'Web Form'
#. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the amount (Currency) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:198 lms/fixtures/custom_field.json
#: frontend/src/pages/BatchForm.vue:208 lms/fixtures/custom_field.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/public/js/common_functions.js:379
@@ -269,6 +272,14 @@ msgstr ""
msgid "Answer"
msgstr ""
#: frontend/src/pages/CourseForm.vue:76 frontend/src/pages/CourseForm.vue:94
msgid "Appears on the course card in the course list"
msgstr ""
#: frontend/src/pages/BatchForm.vue:55 frontend/src/pages/BatchForm.vue:73
msgid "Appears when the batch URL is shared on any online platform"
msgstr ""
#: frontend/src/pages/JobDetail.vue:131
msgid "Applications Received"
msgstr ""
@@ -467,7 +478,7 @@ msgid "Batch Description"
msgstr ""
#. Label of the batch_details (Text Editor) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:89 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:97 lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:349
#: lms/templates/emails/batch_confirmation.html:30
msgid "Batch Details"
@@ -634,8 +645,8 @@ msgstr ""
#. Label of the category (Link) field in DocType 'LMS Batch'
#. Label of the category (Data) field in DocType 'LMS Category'
#. Label of the category (Link) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:179 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:116 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/BatchForm.vue:189 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:139 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/JobDetail.vue:102
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json
@@ -936,7 +947,7 @@ msgstr ""
msgid "Completed"
msgstr ""
#: frontend/src/pages/CourseForm.vue:168
#: frontend/src/pages/CourseForm.vue:192
msgid "Completion Certificate"
msgstr ""
@@ -986,7 +997,7 @@ msgstr ""
msgid "Contract"
msgstr ""
#: lms/lms/utils.py:423
#: lms/lms/utils.py:442
msgid "Cookie Policy"
msgstr ""
@@ -1107,7 +1118,7 @@ msgstr ""
msgid "Course Data"
msgstr ""
#: frontend/src/pages/CourseForm.vue:34
#: frontend/src/pages/CourseForm.vue:41
msgid "Course Description"
msgstr ""
@@ -1116,7 +1127,7 @@ msgstr ""
msgid "Course Evaluator"
msgstr ""
#: frontend/src/pages/CourseForm.vue:64
#: frontend/src/pages/CourseForm.vue:54
msgid "Course Image"
msgstr ""
@@ -1139,7 +1150,7 @@ msgid "Course Name"
msgstr ""
#. Label of the course_price (Currency) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:186
#: frontend/src/pages/CourseForm.vue:210
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Course Price"
msgstr ""
@@ -1172,7 +1183,7 @@ msgstr ""
msgid "Course already added to the batch."
msgstr ""
#: frontend/src/pages/CourseForm.vue:433
#: frontend/src/pages/CourseForm.vue:457
msgid "Course price and currency are mandatory for paid courses"
msgstr ""
@@ -1210,6 +1221,10 @@ msgstr ""
msgid "Cover Image"
msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:9
msgid "Create"
msgstr ""
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7
msgid "Create LMS Certificate"
msgstr ""
@@ -1218,7 +1233,11 @@ msgstr ""
msgid "Create LMS Certificate Evaluation"
msgstr ""
#: lms/templates/onboarding_header.html:19
#: frontend/src/pages/Batches.vue:110
msgid "Create a Batch"
msgstr ""
#: frontend/src/pages/Courses.vue:131 lms/templates/onboarding_header.html:19
msgid "Create a Course"
msgstr ""
@@ -1234,7 +1253,7 @@ msgstr ""
#. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course'
#. Label of the currency (Link) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:206 frontend/src/pages/CourseForm.vue:193
#: frontend/src/pages/BatchForm.vue:216 frontend/src/pages/CourseForm.vue:217
#: lms/fixtures/custom_field.json lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_payment/lms_payment.json
@@ -1292,7 +1311,7 @@ msgstr ""
#. Label of the section_break_glxh (Section Break) field in DocType 'LMS Live
#. Class'
#: frontend/src/pages/BatchForm.vue:102
#: frontend/src/pages/BatchForm.vue:110
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Date and Time"
msgstr ""
@@ -1340,7 +1359,6 @@ msgstr ""
#. Label of the description (Markdown Editor) field in DocType 'Cohort'
#. Label of the description (Markdown Editor) field in DocType 'Cohort
#. Subgroup'
#. Label of the description (Small Text) field in DocType 'Course Chapter'
#. Label of the description (Small Text) field in DocType 'LMS Badge'
#. Label of the description (Small Text) field in DocType 'LMS Batch'
#. Label of the description (Markdown Editor) field in DocType 'LMS Batch Old'
@@ -1349,12 +1367,11 @@ msgstr ""
#. Label of the description (Text) field in DocType 'LMS Live Class'
#. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:73
#: frontend/src/pages/BatchForm.vue:83 frontend/src/pages/JobCreation.vue:43
#: frontend/src/pages/BatchForm.vue:90 frontend/src/pages/JobCreation.vue:43
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/lms_badge/lms_badge.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -1376,7 +1393,7 @@ msgstr ""
msgid "Details"
msgstr "Részletek"
#: frontend/src/pages/CourseForm.vue:163
#: frontend/src/pages/CourseForm.vue:187
msgid "Disable Self Enrollment"
msgstr ""
@@ -1451,13 +1468,14 @@ msgstr ""
#: frontend/src/components/BatchOverlay.vue:93
#: frontend/src/components/CourseCardOverlay.vue:86
#: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:70
#: frontend/src/pages/Profile.vue:32
msgid "Edit"
msgstr ""
#: frontend/src/components/CourseOutline.vue:106
#: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/components/Modals/ChapterModal.vue:5
msgid "Edit Chapter"
msgstr ""
@@ -1533,7 +1551,7 @@ msgstr "Engedélyezve"
#. Label of the end_date (Date) field in DocType 'Cohort'
#. Label of the end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:114 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/BatchForm.vue:122 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:282
msgid "End Date"
@@ -1551,7 +1569,7 @@ msgstr ""
#. Label of the end_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the end_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the end_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:128
#: frontend/src/pages/BatchForm.vue:136
#: frontend/src/pages/ProfileEvaluator.vue:18
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1587,13 +1605,15 @@ msgstr ""
msgid "Enrollment Count"
msgstr ""
#: lms/lms/utils.py:1683
#: lms/lms/utils.py:1692
msgid "Enrollment Failed"
msgstr ""
#. Label of the enrollments (Data) field in DocType 'LMS Course'
#. Label of a chart in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/pages/Statistics.vue:45 lms/lms/workspace/lms/lms.json
#: frontend/src/pages/Statistics.vue:45
#: lms/lms/doctype/lms_course/lms_course.json lms/lms/workspace/lms/lms.json
msgid "Enrollments"
msgstr ""
@@ -1635,7 +1655,7 @@ msgid "Evaluation Details"
msgstr ""
#. Label of the evaluation_end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:155
#: frontend/src/pages/BatchForm.vue:165
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:333
msgid "Evaluation End Date"
@@ -1697,6 +1717,10 @@ msgstr ""
msgid "Event"
msgstr "Esemény"
#: frontend/src/pages/BatchForm.vue:144
msgid "Example: IST (+5:30)"
msgstr ""
#. Label of the exercise (Link) field in DocType 'Exercise Latest Submission'
#. Label of the exercise (Link) field in DocType 'Exercise Submission'
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
@@ -1767,7 +1791,7 @@ msgstr "Nem sikerül"
#. Label of the featured (Check) field in DocType 'LMS Course'
#: frontend/src/components/CourseCard.vue:16
#: frontend/src/pages/CourseForm.vue:156
#: frontend/src/pages/CourseForm.vue:180
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Featured"
msgstr "Kiemelt"
@@ -2030,6 +2054,10 @@ msgstr ""
msgid "Icon"
msgstr "Ikon"
#: frontend/src/components/LessonHelp.vue:68
msgid "If Include in Preview is enabled for a lesson then the lesson will also be accessible to non logged in users."
msgstr ""
#: lms/templates/emails/mentor_request_creation_email.html:5
msgid "If you are not any more interested to mentor the course"
msgstr ""
@@ -2166,7 +2194,7 @@ msgstr ""
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch'
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:77 frontend/src/pages/CourseForm.vue:123
#: frontend/src/pages/BatchForm.vue:85 frontend/src/pages/CourseForm.vue:146
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Instructors"
@@ -2311,7 +2339,7 @@ msgstr "Beosztás"
msgid "Jobs"
msgstr ""
#: frontend/src/components/LiveClass.vue:53
#: frontend/src/components/LiveClass.vue:54
#: lms/templates/upcoming_evals.html:15
msgid "Join"
msgstr ""
@@ -2325,6 +2353,10 @@ msgstr ""
msgid "Join URL"
msgstr ""
#: frontend/src/pages/CourseForm.vue:128
msgid "Keywords for the course"
msgstr ""
#. Name of a Workspace
#: lms/lms/workspace/lms/lms.json
msgid "LMS"
@@ -2578,9 +2610,11 @@ msgstr ""
#. Label of the lessons (Table) field in DocType 'Course Chapter'
#. Group in Course Chapter's connections
#. Label of the lessons (Data) field in DocType 'LMS Course'
#: frontend/src/components/CourseCard.vue:34
#: frontend/src/components/CourseCardOverlay.vue:96
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Lessons"
msgstr ""
@@ -2753,7 +2787,7 @@ msgid "Maximun Attempts"
msgstr ""
#. Label of the medium (Select) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:174
#: frontend/src/pages/BatchForm.vue:184
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:309
msgid "Medium"
@@ -2901,7 +2935,7 @@ msgid "Mentors"
msgstr ""
#. Label of the meta_image (Attach Image) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:53 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:36 lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:362
msgid "Meta Image"
msgstr "Meta kép"
@@ -2937,11 +2971,11 @@ msgstr ""
msgid "Modified By"
msgstr "Módosította"
#: lms/lms/api.py:190
#: lms/lms/api.py:191
msgid "Module Name is incorrect or does not exist."
msgstr ""
#: lms/lms/api.py:186
#: lms/lms/api.py:187
msgid "Module is incorrect."
msgstr ""
@@ -3008,11 +3042,11 @@ msgstr ""
msgid "New Sign Up"
msgstr ""
#: lms/lms/utils.py:613
#: lms/lms/utils.py:632
msgid "New comment in batch {0}"
msgstr ""
#: lms/lms/utils.py:606
#: lms/lms/utils.py:625
msgid "New reply on the topic {0} in course {1}"
msgstr ""
@@ -3050,6 +3084,10 @@ msgstr ""
msgid "No announcements"
msgstr ""
#: frontend/src/pages/Batches.vue:125
msgid "No batches found"
msgstr ""
#: lms/templates/certificates_section.html:23
msgid "No certificates"
msgstr ""
@@ -3058,6 +3096,10 @@ msgstr ""
msgid "No courses created"
msgstr ""
#: frontend/src/pages/Courses.vue:146
msgid "No courses found"
msgstr ""
#: lms/templates/courses_under_review.html:14
msgid "No courses under review"
msgstr ""
@@ -3070,7 +3112,7 @@ msgstr ""
msgid "No jobs posted"
msgstr ""
#: frontend/src/components/LiveClass.vue:59
#: frontend/src/components/LiveClass.vue:60
msgid "No live classes scheduled"
msgstr ""
@@ -3086,12 +3128,12 @@ msgstr ""
msgid "No {0}"
msgstr ""
#: frontend/src/pages/Batches.vue:88
msgid "No {0} batches found"
#: frontend/src/pages/Batches.vue:84
msgid "No {0} batches"
msgstr ""
#: frontend/src/pages/Courses.vue:110
msgid "No {0} courses found"
#: frontend/src/pages/Courses.vue:106
msgid "No {0} courses"
msgstr ""
#: lms/templates/quiz/quiz.html:147
@@ -3146,6 +3188,10 @@ msgstr "Értesítések"
msgid "Notify me when available"
msgstr ""
#: frontend/src/pages/BatchForm.vue:161
msgid "Number of seats available"
msgstr ""
#. Label of the sb_00 (Section Break) field in DocType 'Zoom Settings'
#: lms/lms/doctype/zoom_settings/zoom_settings.json
msgid "OAuth Client ID"
@@ -3178,7 +3224,7 @@ msgstr ""
msgid "Only files of type {0} will be accepted."
msgstr ""
#: frontend/src/pages/CourseForm.vue:449 frontend/src/utils/index.js:509
#: frontend/src/pages/CourseForm.vue:473 frontend/src/utils/index.js:518
msgid "Only image file is allowed."
msgstr ""
@@ -3286,14 +3332,14 @@ msgid "Pages"
msgstr ""
#. Label of the paid_batch (Check) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:194
#: frontend/src/pages/BatchForm.vue:204
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:373
msgid "Paid Batch"
msgstr ""
#. Label of the paid_course (Check) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:181
#: frontend/src/pages/CourseForm.vue:205
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Paid Course"
msgstr ""
@@ -3335,9 +3381,13 @@ msgstr ""
msgid "Password"
msgstr "Jelszó"
#: frontend/src/pages/CourseForm.vue:104
msgid "Paste the youtube link of a short video introducing the course"
msgstr ""
#. Label of the payment (Link) field in DocType 'Batch Student'
#. Label of the payment (Link) field in DocType 'LMS Enrollment'
#: frontend/src/pages/BatchForm.vue:188
#: frontend/src/pages/BatchForm.vue:198
#: lms/lms/doctype/batch_student/batch_student.json
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
msgid "Payment"
@@ -3429,7 +3479,7 @@ msgstr ""
msgid "Phone Number"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:143
#: frontend/src/components/CourseCardOverlay.vue:141
msgid "Please Login"
msgstr ""
@@ -3490,7 +3540,7 @@ msgstr ""
msgid "Please login to access this page."
msgstr ""
#: lms/lms/api.py:182
#: lms/lms/api.py:183
msgid "Please login to continue with payment."
msgstr ""
@@ -3580,7 +3630,7 @@ msgstr ""
msgid "Preview Image"
msgstr ""
#: frontend/src/pages/CourseForm.vue:86
#: frontend/src/pages/CourseForm.vue:102
msgid "Preview Video"
msgstr ""
@@ -3590,7 +3640,7 @@ msgstr "Előző"
#. Label of the pricing_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the pricing_tab (Tab Break) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:175
#: frontend/src/pages/CourseForm.vue:199
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:368
@@ -3608,7 +3658,7 @@ msgstr ""
msgid "Primary Subgroup"
msgstr ""
#: lms/lms/utils.py:422
#: lms/lms/utils.py:441
msgid "Privacy Policy"
msgstr ""
@@ -3660,7 +3710,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Batch'
#. Label of the published (Check) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:108
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:138
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:162
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:266
@@ -3673,7 +3723,7 @@ msgid "Published Courses"
msgstr ""
#. Label of the published_on (Date) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:142
#: frontend/src/pages/CourseForm.vue:166
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Published On"
msgstr ""
@@ -3794,11 +3844,13 @@ msgid "Quizzes"
msgstr ""
#. Label of the rating (Rating) field in DocType 'LMS Certificate Evaluation'
#. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:109
#: frontend/src/components/CourseCardOverlay.vue:108
#: frontend/src/components/Modals/Event.vue:86
#: frontend/src/components/Modals/ReviewModal.vue:20
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_course_review/lms_course_review.json
#: lms/templates/reviews.html:125
msgid "Rating"
@@ -3869,6 +3921,10 @@ msgstr "Elutasítva"
msgid "Related Courses"
msgstr ""
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/CourseForm.vue:91
msgid "Remove"
msgstr "eltávolítás"
#: frontend/src/components/Modals/AnnouncementModal.vue:26
msgid "Reply To"
msgstr ""
@@ -4024,7 +4080,7 @@ msgid "Search for an icon"
msgstr ""
#. Label of the seat_count (Int) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:149
#: frontend/src/pages/BatchForm.vue:158
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:327
msgid "Seat Count"
@@ -4068,7 +4124,7 @@ msgid "Set your Password"
msgstr ""
#: frontend/src/components/Modals/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:143 frontend/src/pages/CourseForm.vue:128
#: frontend/src/pages/BatchForm.vue:152 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:78
msgid "Settings"
msgstr ""
@@ -4078,11 +4134,15 @@ msgid "Share on"
msgstr ""
#. Label of the short_introduction (Small Text) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:29
#: frontend/src/pages/CourseForm.vue:30
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Short Introduction"
msgstr ""
#: frontend/src/pages/BatchForm.vue:93
msgid "Short description of the batch"
msgstr ""
#. Label of the show_answer (Check) field in DocType 'LMS Assignment'
#: lms/lms/doctype/lms_assignment/lms_assignment.json
msgid "Show Answer"
@@ -4235,7 +4295,7 @@ msgstr ""
msgid "Stage"
msgstr ""
#: frontend/src/components/LiveClass.vue:45 frontend/src/components/Quiz.vue:65
#: frontend/src/components/LiveClass.vue:46 frontend/src/components/Quiz.vue:65
#: lms/templates/quiz/quiz.html:39
msgid "Start"
msgstr ""
@@ -4243,7 +4303,7 @@ msgstr ""
#. Label of the start_date (Date) field in DocType 'Education Detail'
#. Label of the start_date (Date) field in DocType 'LMS Batch'
#. Label of the start_date (Date) field in DocType 'LMS Batch Old'
#: frontend/src/pages/BatchForm.vue:108
#: frontend/src/pages/BatchForm.vue:116
#: lms/lms/doctype/education_detail/education_detail.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -4264,7 +4324,7 @@ msgstr ""
#. Label of the start_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the start_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the start_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:122
#: frontend/src/pages/BatchForm.vue:130
#: frontend/src/pages/ProfileEvaluator.vue:15
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -4303,7 +4363,9 @@ msgstr ""
msgid "State"
msgstr ""
#. Label of the tab_4_tab (Tab Break) field in DocType 'LMS Course'
#. Label of the statistics (Check) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:133
msgid "Statistics"
msgstr ""
@@ -4433,7 +4495,7 @@ msgstr ""
#: frontend/src/components/BatchCourses.vue:150
#: frontend/src/components/BatchOverlay.vue:135
#: frontend/src/components/BatchStudents.vue:157
#: frontend/src/components/CourseCardOverlay.vue:163
#: frontend/src/components/CourseCardOverlay.vue:161
#: frontend/src/components/Modals/AssessmentModal.vue:73
#: frontend/src/components/Modals/Event.vue:255
#: frontend/src/components/Modals/Event.vue:310
@@ -4507,7 +4569,7 @@ msgid "System Manager"
msgstr ""
#. Label of the tags (Data) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:91
#: frontend/src/pages/CourseForm.vue:112
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Tags"
msgstr "Címkék"
@@ -4535,7 +4597,7 @@ msgstr ""
msgid "Temporarily Disabled"
msgstr "Átmenetileg letiltva"
#: lms/lms/utils.py:421
#: lms/lms/utils.py:440
msgid "Terms of Use"
msgstr ""
@@ -4587,10 +4649,18 @@ msgstr ""
msgid "The status of your application has changed."
msgstr ""
#: frontend/src/pages/Batches.vue:129
msgid "There are no batches available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr ""
#: frontend/src/components/CreateOutline.vue:12
msgid "There are no chapters in this course. Create and manage chapters from here."
msgstr ""
#: frontend/src/pages/Courses.vue:150
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:140
msgid "There are no seats available in this batch."
msgstr ""
@@ -4622,7 +4692,7 @@ msgstr ""
msgid "This course has:"
msgstr ""
#: lms/lms/utils.py:1563
#: lms/lms/utils.py:1572
msgid "This course is free."
msgstr ""
@@ -4691,7 +4761,7 @@ msgstr ""
#. Label of the timezone (Data) field in DocType 'LMS Certificate Request'
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/LiveClassModal.vue:44
#: frontend/src/pages/BatchForm.vue:134
#: frontend/src/pages/BatchForm.vue:142
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -4757,7 +4827,7 @@ msgstr ""
msgid "To Date is mandatory in Work Experience."
msgstr ""
#: lms/lms/utils.py:1574
#: lms/lms/utils.py:1583
msgid "To join this batch, please contact the Administrator."
msgstr ""
@@ -4874,7 +4944,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Cohort'
#. Label of the upcoming (Check) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:151 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/CourseForm.vue:175 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming"
msgstr ""
@@ -4898,6 +4968,10 @@ msgstr ""
msgid "Update Password"
msgstr ""
#: frontend/src/pages/BatchForm.vue:51 frontend/src/pages/CourseForm.vue:72
msgid "Upload"
msgstr "Feltöltés"
#: frontend/src/pages/AssignmentSubmission.vue:69
msgid "Upload File"
msgstr ""
@@ -5020,6 +5094,10 @@ msgstr "Szerda"
msgid "Welcome to {0}!"
msgstr "Üdvözöljük itt {0}!"
#: frontend/src/components/LessonHelp.vue:63
msgid "What does include in preview mean?"
msgstr ""
#: lms/templates/courses_under_review.html:15
msgid "When a course gets submitted for review, it will be listed here."
msgstr ""
@@ -5073,11 +5151,11 @@ msgstr ""
msgid "You already have an evaluation on {0} at {1} for the course {2}."
msgstr ""
#: lms/lms/api.py:206
#: lms/lms/api.py:207
msgid "You are already enrolled for this batch."
msgstr ""
#: lms/lms/api.py:198
#: lms/lms/api.py:199
msgid "You are already enrolled for this course."
msgstr ""
@@ -5089,6 +5167,10 @@ msgstr ""
msgid "You are not a mentor of the course {0}"
msgstr ""
#: frontend/src/pages/Courses.vue:134
msgid "You can add chapters and lessons to it."
msgstr ""
#: lms/templates/emails/lms_course_interest.html:13
#: lms/templates/emails/lms_invite_request_approved.html:11
msgid "You can also copy-paste following link in your browser"
@@ -5106,6 +5188,10 @@ msgstr ""
msgid "You can find their resume attached to this email."
msgstr ""
#: frontend/src/pages/Batches.vue:113
msgid "You can link courses and assessments to it."
msgstr ""
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:115
msgid "You cannot schedule evaluations after {0}."
msgstr ""
@@ -5147,7 +5233,7 @@ msgstr ""
msgid "You have been enrolled in this batch"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:164
#: frontend/src/components/CourseCardOverlay.vue:162
msgid "You have been enrolled in this course"
msgstr ""
@@ -5159,7 +5245,7 @@ msgstr ""
msgid "You haven't enrolled for any courses"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:144
#: frontend/src/components/CourseCardOverlay.vue:142
msgid "You need to login first to enroll for this course"
msgstr ""
@@ -5277,7 +5363,7 @@ msgstr ""
msgid "you can"
msgstr ""
#: lms/lms/api.py:731 lms/lms/api.py:739
#: lms/lms/api.py:732 lms/lms/api.py:740
msgid "{0} Settings not found"
msgstr ""
@@ -5313,7 +5399,7 @@ msgstr ""
msgid "{0} is your evaluator"
msgstr ""
#: lms/lms/utils.py:690
#: lms/lms/utils.py:709
msgid "{0} mentioned you in a comment"
msgstr ""
@@ -5321,11 +5407,11 @@ msgstr ""
msgid "{0} mentioned you in a comment in your batch."
msgstr ""
#: lms/lms/utils.py:643 lms/lms/utils.py:649
#: lms/lms/utils.py:662 lms/lms/utils.py:668
msgid "{0} mentioned you in a comment in {1}"
msgstr ""
#: lms/lms/utils.py:461
#: lms/lms/utils.py:480
msgid "{0}k"
msgstr ""

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-10-18 16:04+0000\n"
"PO-Revision-Date: 2024-10-26 11:24\n"
"POT-Creation-Date: 2024-11-01 16:04+0000\n"
"PO-Revision-Date: 2024-11-05 14:34\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Polish\n"
"MIME-Version: 1.0\n"
@@ -62,6 +62,10 @@ msgstr ""
msgid "<span style=\"font-size: 18px;\"><b>Statistics</b></span>"
msgstr ""
#: frontend/src/pages/CourseForm.vue:32
msgid "A one line introduction to the course that appears on the course card"
msgstr ""
#: frontend/src/pages/ProfileAbout.vue:4
msgid "About"
msgstr ""
@@ -102,7 +106,6 @@ msgstr ""
#: frontend/src/components/CourseOutline.vue:11
#: frontend/src/components/CreateOutline.vue:18
#: frontend/src/components/Modals/ChapterModal.vue:5
#: frontend/src/components/Modals/ChapterModal.vue:9
msgid "Add Chapter"
msgstr ""
@@ -225,7 +228,7 @@ msgstr ""
#. Label of the amount (Currency) field in DocType 'Web Form'
#. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the amount (Currency) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:198 lms/fixtures/custom_field.json
#: frontend/src/pages/BatchForm.vue:208 lms/fixtures/custom_field.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/public/js/common_functions.js:379
@@ -269,6 +272,14 @@ msgstr ""
msgid "Answer"
msgstr ""
#: frontend/src/pages/CourseForm.vue:76 frontend/src/pages/CourseForm.vue:94
msgid "Appears on the course card in the course list"
msgstr ""
#: frontend/src/pages/BatchForm.vue:55 frontend/src/pages/BatchForm.vue:73
msgid "Appears when the batch URL is shared on any online platform"
msgstr ""
#: frontend/src/pages/JobDetail.vue:131
msgid "Applications Received"
msgstr ""
@@ -467,7 +478,7 @@ msgid "Batch Description"
msgstr ""
#. Label of the batch_details (Text Editor) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:89 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:97 lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:349
#: lms/templates/emails/batch_confirmation.html:30
msgid "Batch Details"
@@ -634,8 +645,8 @@ msgstr ""
#. Label of the category (Link) field in DocType 'LMS Batch'
#. Label of the category (Data) field in DocType 'LMS Category'
#. Label of the category (Link) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:179 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:116 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/BatchForm.vue:189 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:139 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/JobDetail.vue:102
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json
@@ -936,7 +947,7 @@ msgstr ""
msgid "Completed"
msgstr ""
#: frontend/src/pages/CourseForm.vue:168
#: frontend/src/pages/CourseForm.vue:192
msgid "Completion Certificate"
msgstr ""
@@ -986,7 +997,7 @@ msgstr ""
msgid "Contract"
msgstr ""
#: lms/lms/utils.py:423
#: lms/lms/utils.py:442
msgid "Cookie Policy"
msgstr ""
@@ -1107,7 +1118,7 @@ msgstr ""
msgid "Course Data"
msgstr ""
#: frontend/src/pages/CourseForm.vue:34
#: frontend/src/pages/CourseForm.vue:41
msgid "Course Description"
msgstr ""
@@ -1116,7 +1127,7 @@ msgstr ""
msgid "Course Evaluator"
msgstr ""
#: frontend/src/pages/CourseForm.vue:64
#: frontend/src/pages/CourseForm.vue:54
msgid "Course Image"
msgstr ""
@@ -1139,7 +1150,7 @@ msgid "Course Name"
msgstr ""
#. Label of the course_price (Currency) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:186
#: frontend/src/pages/CourseForm.vue:210
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Course Price"
msgstr ""
@@ -1172,7 +1183,7 @@ msgstr ""
msgid "Course already added to the batch."
msgstr ""
#: frontend/src/pages/CourseForm.vue:433
#: frontend/src/pages/CourseForm.vue:457
msgid "Course price and currency are mandatory for paid courses"
msgstr ""
@@ -1210,6 +1221,10 @@ msgstr ""
msgid "Cover Image"
msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:9
msgid "Create"
msgstr ""
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7
msgid "Create LMS Certificate"
msgstr ""
@@ -1218,7 +1233,11 @@ msgstr ""
msgid "Create LMS Certificate Evaluation"
msgstr ""
#: lms/templates/onboarding_header.html:19
#: frontend/src/pages/Batches.vue:110
msgid "Create a Batch"
msgstr ""
#: frontend/src/pages/Courses.vue:131 lms/templates/onboarding_header.html:19
msgid "Create a Course"
msgstr ""
@@ -1234,7 +1253,7 @@ msgstr ""
#. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course'
#. Label of the currency (Link) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:206 frontend/src/pages/CourseForm.vue:193
#: frontend/src/pages/BatchForm.vue:216 frontend/src/pages/CourseForm.vue:217
#: lms/fixtures/custom_field.json lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_payment/lms_payment.json
@@ -1292,7 +1311,7 @@ msgstr ""
#. Label of the section_break_glxh (Section Break) field in DocType 'LMS Live
#. Class'
#: frontend/src/pages/BatchForm.vue:102
#: frontend/src/pages/BatchForm.vue:110
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Date and Time"
msgstr ""
@@ -1340,7 +1359,6 @@ msgstr ""
#. Label of the description (Markdown Editor) field in DocType 'Cohort'
#. Label of the description (Markdown Editor) field in DocType 'Cohort
#. Subgroup'
#. Label of the description (Small Text) field in DocType 'Course Chapter'
#. Label of the description (Small Text) field in DocType 'LMS Badge'
#. Label of the description (Small Text) field in DocType 'LMS Batch'
#. Label of the description (Markdown Editor) field in DocType 'LMS Batch Old'
@@ -1349,12 +1367,11 @@ msgstr ""
#. Label of the description (Text) field in DocType 'LMS Live Class'
#. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:73
#: frontend/src/pages/BatchForm.vue:83 frontend/src/pages/JobCreation.vue:43
#: frontend/src/pages/BatchForm.vue:90 frontend/src/pages/JobCreation.vue:43
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/lms_badge/lms_badge.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -1376,7 +1393,7 @@ msgstr ""
msgid "Details"
msgstr ""
#: frontend/src/pages/CourseForm.vue:163
#: frontend/src/pages/CourseForm.vue:187
msgid "Disable Self Enrollment"
msgstr ""
@@ -1451,13 +1468,14 @@ msgstr ""
#: frontend/src/components/BatchOverlay.vue:93
#: frontend/src/components/CourseCardOverlay.vue:86
#: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:70
#: frontend/src/pages/Profile.vue:32
msgid "Edit"
msgstr ""
#: frontend/src/components/CourseOutline.vue:106
#: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/components/Modals/ChapterModal.vue:5
msgid "Edit Chapter"
msgstr ""
@@ -1533,7 +1551,7 @@ msgstr ""
#. Label of the end_date (Date) field in DocType 'Cohort'
#. Label of the end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:114 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/BatchForm.vue:122 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:282
msgid "End Date"
@@ -1551,7 +1569,7 @@ msgstr ""
#. Label of the end_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the end_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the end_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:128
#: frontend/src/pages/BatchForm.vue:136
#: frontend/src/pages/ProfileEvaluator.vue:18
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1587,13 +1605,15 @@ msgstr ""
msgid "Enrollment Count"
msgstr ""
#: lms/lms/utils.py:1683
#: lms/lms/utils.py:1692
msgid "Enrollment Failed"
msgstr ""
#. Label of the enrollments (Data) field in DocType 'LMS Course'
#. Label of a chart in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/pages/Statistics.vue:45 lms/lms/workspace/lms/lms.json
#: frontend/src/pages/Statistics.vue:45
#: lms/lms/doctype/lms_course/lms_course.json lms/lms/workspace/lms/lms.json
msgid "Enrollments"
msgstr ""
@@ -1635,7 +1655,7 @@ msgid "Evaluation Details"
msgstr ""
#. Label of the evaluation_end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:155
#: frontend/src/pages/BatchForm.vue:165
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:333
msgid "Evaluation End Date"
@@ -1697,6 +1717,10 @@ msgstr ""
msgid "Event"
msgstr ""
#: frontend/src/pages/BatchForm.vue:144
msgid "Example: IST (+5:30)"
msgstr ""
#. Label of the exercise (Link) field in DocType 'Exercise Latest Submission'
#. Label of the exercise (Link) field in DocType 'Exercise Submission'
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
@@ -1767,7 +1791,7 @@ msgstr ""
#. Label of the featured (Check) field in DocType 'LMS Course'
#: frontend/src/components/CourseCard.vue:16
#: frontend/src/pages/CourseForm.vue:156
#: frontend/src/pages/CourseForm.vue:180
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Featured"
msgstr ""
@@ -2030,6 +2054,10 @@ msgstr ""
msgid "Icon"
msgstr ""
#: frontend/src/components/LessonHelp.vue:68
msgid "If Include in Preview is enabled for a lesson then the lesson will also be accessible to non logged in users."
msgstr ""
#: lms/templates/emails/mentor_request_creation_email.html:5
msgid "If you are not any more interested to mentor the course"
msgstr ""
@@ -2166,7 +2194,7 @@ msgstr ""
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch'
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:77 frontend/src/pages/CourseForm.vue:123
#: frontend/src/pages/BatchForm.vue:85 frontend/src/pages/CourseForm.vue:146
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Instructors"
@@ -2311,7 +2339,7 @@ msgstr ""
msgid "Jobs"
msgstr ""
#: frontend/src/components/LiveClass.vue:53
#: frontend/src/components/LiveClass.vue:54
#: lms/templates/upcoming_evals.html:15
msgid "Join"
msgstr ""
@@ -2325,6 +2353,10 @@ msgstr ""
msgid "Join URL"
msgstr ""
#: frontend/src/pages/CourseForm.vue:128
msgid "Keywords for the course"
msgstr ""
#. Name of a Workspace
#: lms/lms/workspace/lms/lms.json
msgid "LMS"
@@ -2578,9 +2610,11 @@ msgstr ""
#. Label of the lessons (Table) field in DocType 'Course Chapter'
#. Group in Course Chapter's connections
#. Label of the lessons (Data) field in DocType 'LMS Course'
#: frontend/src/components/CourseCard.vue:34
#: frontend/src/components/CourseCardOverlay.vue:96
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Lessons"
msgstr ""
@@ -2753,7 +2787,7 @@ msgid "Maximun Attempts"
msgstr ""
#. Label of the medium (Select) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:174
#: frontend/src/pages/BatchForm.vue:184
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:309
msgid "Medium"
@@ -2901,7 +2935,7 @@ msgid "Mentors"
msgstr ""
#. Label of the meta_image (Attach Image) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:53 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:36 lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:362
msgid "Meta Image"
msgstr ""
@@ -2937,11 +2971,11 @@ msgstr ""
msgid "Modified By"
msgstr ""
#: lms/lms/api.py:190
#: lms/lms/api.py:191
msgid "Module Name is incorrect or does not exist."
msgstr ""
#: lms/lms/api.py:186
#: lms/lms/api.py:187
msgid "Module is incorrect."
msgstr ""
@@ -3008,11 +3042,11 @@ msgstr ""
msgid "New Sign Up"
msgstr ""
#: lms/lms/utils.py:613
#: lms/lms/utils.py:632
msgid "New comment in batch {0}"
msgstr ""
#: lms/lms/utils.py:606
#: lms/lms/utils.py:625
msgid "New reply on the topic {0} in course {1}"
msgstr ""
@@ -3050,6 +3084,10 @@ msgstr ""
msgid "No announcements"
msgstr ""
#: frontend/src/pages/Batches.vue:125
msgid "No batches found"
msgstr ""
#: lms/templates/certificates_section.html:23
msgid "No certificates"
msgstr ""
@@ -3058,6 +3096,10 @@ msgstr ""
msgid "No courses created"
msgstr ""
#: frontend/src/pages/Courses.vue:146
msgid "No courses found"
msgstr ""
#: lms/templates/courses_under_review.html:14
msgid "No courses under review"
msgstr ""
@@ -3070,7 +3112,7 @@ msgstr ""
msgid "No jobs posted"
msgstr ""
#: frontend/src/components/LiveClass.vue:59
#: frontend/src/components/LiveClass.vue:60
msgid "No live classes scheduled"
msgstr ""
@@ -3086,12 +3128,12 @@ msgstr ""
msgid "No {0}"
msgstr ""
#: frontend/src/pages/Batches.vue:88
msgid "No {0} batches found"
#: frontend/src/pages/Batches.vue:84
msgid "No {0} batches"
msgstr ""
#: frontend/src/pages/Courses.vue:110
msgid "No {0} courses found"
#: frontend/src/pages/Courses.vue:106
msgid "No {0} courses"
msgstr ""
#: lms/templates/quiz/quiz.html:147
@@ -3146,6 +3188,10 @@ msgstr ""
msgid "Notify me when available"
msgstr ""
#: frontend/src/pages/BatchForm.vue:161
msgid "Number of seats available"
msgstr ""
#. Label of the sb_00 (Section Break) field in DocType 'Zoom Settings'
#: lms/lms/doctype/zoom_settings/zoom_settings.json
msgid "OAuth Client ID"
@@ -3178,7 +3224,7 @@ msgstr ""
msgid "Only files of type {0} will be accepted."
msgstr ""
#: frontend/src/pages/CourseForm.vue:449 frontend/src/utils/index.js:509
#: frontend/src/pages/CourseForm.vue:473 frontend/src/utils/index.js:518
msgid "Only image file is allowed."
msgstr ""
@@ -3286,14 +3332,14 @@ msgid "Pages"
msgstr ""
#. Label of the paid_batch (Check) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:194
#: frontend/src/pages/BatchForm.vue:204
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:373
msgid "Paid Batch"
msgstr ""
#. Label of the paid_course (Check) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:181
#: frontend/src/pages/CourseForm.vue:205
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Paid Course"
msgstr ""
@@ -3335,9 +3381,13 @@ msgstr ""
msgid "Password"
msgstr ""
#: frontend/src/pages/CourseForm.vue:104
msgid "Paste the youtube link of a short video introducing the course"
msgstr ""
#. Label of the payment (Link) field in DocType 'Batch Student'
#. Label of the payment (Link) field in DocType 'LMS Enrollment'
#: frontend/src/pages/BatchForm.vue:188
#: frontend/src/pages/BatchForm.vue:198
#: lms/lms/doctype/batch_student/batch_student.json
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
msgid "Payment"
@@ -3429,7 +3479,7 @@ msgstr ""
msgid "Phone Number"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:143
#: frontend/src/components/CourseCardOverlay.vue:141
msgid "Please Login"
msgstr ""
@@ -3490,7 +3540,7 @@ msgstr ""
msgid "Please login to access this page."
msgstr ""
#: lms/lms/api.py:182
#: lms/lms/api.py:183
msgid "Please login to continue with payment."
msgstr ""
@@ -3580,7 +3630,7 @@ msgstr ""
msgid "Preview Image"
msgstr ""
#: frontend/src/pages/CourseForm.vue:86
#: frontend/src/pages/CourseForm.vue:102
msgid "Preview Video"
msgstr ""
@@ -3590,7 +3640,7 @@ msgstr ""
#. Label of the pricing_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the pricing_tab (Tab Break) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:175
#: frontend/src/pages/CourseForm.vue:199
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:368
@@ -3608,7 +3658,7 @@ msgstr ""
msgid "Primary Subgroup"
msgstr ""
#: lms/lms/utils.py:422
#: lms/lms/utils.py:441
msgid "Privacy Policy"
msgstr ""
@@ -3660,7 +3710,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Batch'
#. Label of the published (Check) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:108
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:138
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:162
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:266
@@ -3673,7 +3723,7 @@ msgid "Published Courses"
msgstr ""
#. Label of the published_on (Date) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:142
#: frontend/src/pages/CourseForm.vue:166
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Published On"
msgstr ""
@@ -3794,11 +3844,13 @@ msgid "Quizzes"
msgstr ""
#. Label of the rating (Rating) field in DocType 'LMS Certificate Evaluation'
#. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:109
#: frontend/src/components/CourseCardOverlay.vue:108
#: frontend/src/components/Modals/Event.vue:86
#: frontend/src/components/Modals/ReviewModal.vue:20
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_course_review/lms_course_review.json
#: lms/templates/reviews.html:125
msgid "Rating"
@@ -3869,6 +3921,10 @@ msgstr ""
msgid "Related Courses"
msgstr ""
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/CourseForm.vue:91
msgid "Remove"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:26
msgid "Reply To"
msgstr ""
@@ -4024,7 +4080,7 @@ msgid "Search for an icon"
msgstr ""
#. Label of the seat_count (Int) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:149
#: frontend/src/pages/BatchForm.vue:158
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:327
msgid "Seat Count"
@@ -4068,7 +4124,7 @@ msgid "Set your Password"
msgstr ""
#: frontend/src/components/Modals/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:143 frontend/src/pages/CourseForm.vue:128
#: frontend/src/pages/BatchForm.vue:152 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:78
msgid "Settings"
msgstr ""
@@ -4078,11 +4134,15 @@ msgid "Share on"
msgstr ""
#. Label of the short_introduction (Small Text) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:29
#: frontend/src/pages/CourseForm.vue:30
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Short Introduction"
msgstr ""
#: frontend/src/pages/BatchForm.vue:93
msgid "Short description of the batch"
msgstr ""
#. Label of the show_answer (Check) field in DocType 'LMS Assignment'
#: lms/lms/doctype/lms_assignment/lms_assignment.json
msgid "Show Answer"
@@ -4235,7 +4295,7 @@ msgstr ""
msgid "Stage"
msgstr ""
#: frontend/src/components/LiveClass.vue:45 frontend/src/components/Quiz.vue:65
#: frontend/src/components/LiveClass.vue:46 frontend/src/components/Quiz.vue:65
#: lms/templates/quiz/quiz.html:39
msgid "Start"
msgstr ""
@@ -4243,7 +4303,7 @@ msgstr ""
#. Label of the start_date (Date) field in DocType 'Education Detail'
#. Label of the start_date (Date) field in DocType 'LMS Batch'
#. Label of the start_date (Date) field in DocType 'LMS Batch Old'
#: frontend/src/pages/BatchForm.vue:108
#: frontend/src/pages/BatchForm.vue:116
#: lms/lms/doctype/education_detail/education_detail.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -4264,7 +4324,7 @@ msgstr ""
#. Label of the start_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the start_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the start_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:122
#: frontend/src/pages/BatchForm.vue:130
#: frontend/src/pages/ProfileEvaluator.vue:15
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -4303,7 +4363,9 @@ msgstr ""
msgid "State"
msgstr ""
#. Label of the tab_4_tab (Tab Break) field in DocType 'LMS Course'
#. Label of the statistics (Check) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:133
msgid "Statistics"
msgstr ""
@@ -4433,7 +4495,7 @@ msgstr ""
#: frontend/src/components/BatchCourses.vue:150
#: frontend/src/components/BatchOverlay.vue:135
#: frontend/src/components/BatchStudents.vue:157
#: frontend/src/components/CourseCardOverlay.vue:163
#: frontend/src/components/CourseCardOverlay.vue:161
#: frontend/src/components/Modals/AssessmentModal.vue:73
#: frontend/src/components/Modals/Event.vue:255
#: frontend/src/components/Modals/Event.vue:310
@@ -4507,7 +4569,7 @@ msgid "System Manager"
msgstr ""
#. Label of the tags (Data) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:91
#: frontend/src/pages/CourseForm.vue:112
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Tags"
msgstr ""
@@ -4535,7 +4597,7 @@ msgstr ""
msgid "Temporarily Disabled"
msgstr ""
#: lms/lms/utils.py:421
#: lms/lms/utils.py:440
msgid "Terms of Use"
msgstr ""
@@ -4587,10 +4649,18 @@ msgstr ""
msgid "The status of your application has changed."
msgstr ""
#: frontend/src/pages/Batches.vue:129
msgid "There are no batches available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr ""
#: frontend/src/components/CreateOutline.vue:12
msgid "There are no chapters in this course. Create and manage chapters from here."
msgstr ""
#: frontend/src/pages/Courses.vue:150
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:140
msgid "There are no seats available in this batch."
msgstr ""
@@ -4622,7 +4692,7 @@ msgstr ""
msgid "This course has:"
msgstr ""
#: lms/lms/utils.py:1563
#: lms/lms/utils.py:1572
msgid "This course is free."
msgstr ""
@@ -4691,7 +4761,7 @@ msgstr ""
#. Label of the timezone (Data) field in DocType 'LMS Certificate Request'
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/LiveClassModal.vue:44
#: frontend/src/pages/BatchForm.vue:134
#: frontend/src/pages/BatchForm.vue:142
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -4757,7 +4827,7 @@ msgstr ""
msgid "To Date is mandatory in Work Experience."
msgstr ""
#: lms/lms/utils.py:1574
#: lms/lms/utils.py:1583
msgid "To join this batch, please contact the Administrator."
msgstr ""
@@ -4874,7 +4944,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Cohort'
#. Label of the upcoming (Check) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:151 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/CourseForm.vue:175 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming"
msgstr ""
@@ -4898,6 +4968,10 @@ msgstr ""
msgid "Update Password"
msgstr ""
#: frontend/src/pages/BatchForm.vue:51 frontend/src/pages/CourseForm.vue:72
msgid "Upload"
msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:69
msgid "Upload File"
msgstr ""
@@ -5020,6 +5094,10 @@ msgstr ""
msgid "Welcome to {0}!"
msgstr "Zapraszamy do {0}!"
#: frontend/src/components/LessonHelp.vue:63
msgid "What does include in preview mean?"
msgstr ""
#: lms/templates/courses_under_review.html:15
msgid "When a course gets submitted for review, it will be listed here."
msgstr ""
@@ -5073,11 +5151,11 @@ msgstr ""
msgid "You already have an evaluation on {0} at {1} for the course {2}."
msgstr ""
#: lms/lms/api.py:206
#: lms/lms/api.py:207
msgid "You are already enrolled for this batch."
msgstr ""
#: lms/lms/api.py:198
#: lms/lms/api.py:199
msgid "You are already enrolled for this course."
msgstr ""
@@ -5089,6 +5167,10 @@ msgstr ""
msgid "You are not a mentor of the course {0}"
msgstr ""
#: frontend/src/pages/Courses.vue:134
msgid "You can add chapters and lessons to it."
msgstr ""
#: lms/templates/emails/lms_course_interest.html:13
#: lms/templates/emails/lms_invite_request_approved.html:11
msgid "You can also copy-paste following link in your browser"
@@ -5106,6 +5188,10 @@ msgstr ""
msgid "You can find their resume attached to this email."
msgstr ""
#: frontend/src/pages/Batches.vue:113
msgid "You can link courses and assessments to it."
msgstr ""
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:115
msgid "You cannot schedule evaluations after {0}."
msgstr ""
@@ -5147,7 +5233,7 @@ msgstr ""
msgid "You have been enrolled in this batch"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:164
#: frontend/src/components/CourseCardOverlay.vue:162
msgid "You have been enrolled in this course"
msgstr ""
@@ -5159,7 +5245,7 @@ msgstr ""
msgid "You haven't enrolled for any courses"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:144
#: frontend/src/components/CourseCardOverlay.vue:142
msgid "You need to login first to enroll for this course"
msgstr ""
@@ -5277,7 +5363,7 @@ msgstr ""
msgid "you can"
msgstr ""
#: lms/lms/api.py:731 lms/lms/api.py:739
#: lms/lms/api.py:732 lms/lms/api.py:740
msgid "{0} Settings not found"
msgstr ""
@@ -5313,7 +5399,7 @@ msgstr ""
msgid "{0} is your evaluator"
msgstr ""
#: lms/lms/utils.py:690
#: lms/lms/utils.py:709
msgid "{0} mentioned you in a comment"
msgstr ""
@@ -5321,11 +5407,11 @@ msgstr ""
msgid "{0} mentioned you in a comment in your batch."
msgstr ""
#: lms/lms/utils.py:643 lms/lms/utils.py:649
#: lms/lms/utils.py:662 lms/lms/utils.py:668
msgid "{0} mentioned you in a comment in {1}"
msgstr ""
#: lms/lms/utils.py:461
#: lms/lms/utils.py:480
msgid "{0}k"
msgstr ""

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-10-18 16:04+0000\n"
"PO-Revision-Date: 2024-10-26 11:24\n"
"POT-Creation-Date: 2024-11-01 16:04+0000\n"
"PO-Revision-Date: 2024-11-05 14:34\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Russian\n"
"MIME-Version: 1.0\n"
@@ -62,6 +62,10 @@ msgstr ""
msgid "<span style=\"font-size: 18px;\"><b>Statistics</b></span>"
msgstr ""
#: frontend/src/pages/CourseForm.vue:32
msgid "A one line introduction to the course that appears on the course card"
msgstr ""
#: frontend/src/pages/ProfileAbout.vue:4
msgid "About"
msgstr "О"
@@ -102,7 +106,6 @@ msgstr ""
#: frontend/src/components/CourseOutline.vue:11
#: frontend/src/components/CreateOutline.vue:18
#: frontend/src/components/Modals/ChapterModal.vue:5
#: frontend/src/components/Modals/ChapterModal.vue:9
msgid "Add Chapter"
msgstr "Добавить главу"
@@ -225,7 +228,7 @@ msgstr "Уже зарегистрирован"
#. Label of the amount (Currency) field in DocType 'Web Form'
#. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the amount (Currency) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:198 lms/fixtures/custom_field.json
#: frontend/src/pages/BatchForm.vue:208 lms/fixtures/custom_field.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/public/js/common_functions.js:379
@@ -269,6 +272,14 @@ msgstr "Объявление"
msgid "Answer"
msgstr "Отвечать"
#: frontend/src/pages/CourseForm.vue:76 frontend/src/pages/CourseForm.vue:94
msgid "Appears on the course card in the course list"
msgstr ""
#: frontend/src/pages/BatchForm.vue:55 frontend/src/pages/BatchForm.vue:73
msgid "Appears when the batch URL is shared on any online platform"
msgstr ""
#: frontend/src/pages/JobDetail.vue:131
msgid "Applications Received"
msgstr ""
@@ -467,7 +478,7 @@ msgid "Batch Description"
msgstr "Описание группы"
#. Label of the batch_details (Text Editor) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:89 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:97 lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:349
#: lms/templates/emails/batch_confirmation.html:30
msgid "Batch Details"
@@ -634,8 +645,8 @@ msgstr ""
#. Label of the category (Link) field in DocType 'LMS Batch'
#. Label of the category (Data) field in DocType 'LMS Category'
#. Label of the category (Link) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:179 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:116 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/BatchForm.vue:189 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:139 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/JobDetail.vue:102
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json
@@ -936,7 +947,7 @@ msgstr "Завершить регистрацию"
msgid "Completed"
msgstr ""
#: frontend/src/pages/CourseForm.vue:168
#: frontend/src/pages/CourseForm.vue:192
msgid "Completion Certificate"
msgstr ""
@@ -986,7 +997,7 @@ msgstr ""
msgid "Contract"
msgstr ""
#: lms/lms/utils.py:423
#: lms/lms/utils.py:442
msgid "Cookie Policy"
msgstr "Политика cookies"
@@ -1107,7 +1118,7 @@ msgstr "Создание курса"
msgid "Course Data"
msgstr "Данные курса"
#: frontend/src/pages/CourseForm.vue:34
#: frontend/src/pages/CourseForm.vue:41
msgid "Course Description"
msgstr "Описание курса"
@@ -1116,7 +1127,7 @@ msgstr "Описание курса"
msgid "Course Evaluator"
msgstr "Оценщик курса"
#: frontend/src/pages/CourseForm.vue:64
#: frontend/src/pages/CourseForm.vue:54
msgid "Course Image"
msgstr "Изображение курса"
@@ -1139,7 +1150,7 @@ msgid "Course Name"
msgstr "Название курса"
#. Label of the course_price (Currency) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:186
#: frontend/src/pages/CourseForm.vue:210
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Course Price"
msgstr "Стоимость курса"
@@ -1172,7 +1183,7 @@ msgstr "Заголовок курса"
msgid "Course already added to the batch."
msgstr "Курс уже добавлен в группу."
#: frontend/src/pages/CourseForm.vue:433
#: frontend/src/pages/CourseForm.vue:457
msgid "Course price and currency are mandatory for paid courses"
msgstr ""
@@ -1210,6 +1221,10 @@ msgstr ""
msgid "Cover Image"
msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:9
msgid "Create"
msgstr ""
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7
msgid "Create LMS Certificate"
msgstr "Создать сертификат LMS"
@@ -1218,7 +1233,11 @@ msgstr "Создать сертификат LMS"
msgid "Create LMS Certificate Evaluation"
msgstr "Создать оценку сертификата LMS"
#: lms/templates/onboarding_header.html:19
#: frontend/src/pages/Batches.vue:110
msgid "Create a Batch"
msgstr ""
#: frontend/src/pages/Courses.vue:131 lms/templates/onboarding_header.html:19
msgid "Create a Course"
msgstr "Создать курс"
@@ -1234,7 +1253,7 @@ msgstr ""
#. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course'
#. Label of the currency (Link) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:206 frontend/src/pages/CourseForm.vue:193
#: frontend/src/pages/BatchForm.vue:216 frontend/src/pages/CourseForm.vue:217
#: lms/fixtures/custom_field.json lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_payment/lms_payment.json
@@ -1292,7 +1311,7 @@ msgstr ""
#. Label of the section_break_glxh (Section Break) field in DocType 'LMS Live
#. Class'
#: frontend/src/pages/BatchForm.vue:102
#: frontend/src/pages/BatchForm.vue:110
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Date and Time"
msgstr "Дата и время"
@@ -1340,7 +1359,6 @@ msgstr ""
#. Label of the description (Markdown Editor) field in DocType 'Cohort'
#. Label of the description (Markdown Editor) field in DocType 'Cohort
#. Subgroup'
#. Label of the description (Small Text) field in DocType 'Course Chapter'
#. Label of the description (Small Text) field in DocType 'LMS Badge'
#. Label of the description (Small Text) field in DocType 'LMS Batch'
#. Label of the description (Markdown Editor) field in DocType 'LMS Batch Old'
@@ -1349,12 +1367,11 @@ msgstr ""
#. Label of the description (Text) field in DocType 'LMS Live Class'
#. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:73
#: frontend/src/pages/BatchForm.vue:83 frontend/src/pages/JobCreation.vue:43
#: frontend/src/pages/BatchForm.vue:90 frontend/src/pages/JobCreation.vue:43
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/lms_badge/lms_badge.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -1376,7 +1393,7 @@ msgstr ""
msgid "Details"
msgstr "Детали"
#: frontend/src/pages/CourseForm.vue:163
#: frontend/src/pages/CourseForm.vue:187
msgid "Disable Self Enrollment"
msgstr "Отключить самостоятельную регистрацию"
@@ -1451,13 +1468,14 @@ msgstr "E-mail"
#: frontend/src/components/BatchOverlay.vue:93
#: frontend/src/components/CourseCardOverlay.vue:86
#: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:70
#: frontend/src/pages/Profile.vue:32
msgid "Edit"
msgstr ""
#: frontend/src/components/CourseOutline.vue:106
#: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/components/Modals/ChapterModal.vue:5
msgid "Edit Chapter"
msgstr "Редактировать главу"
@@ -1533,7 +1551,7 @@ msgstr "Включено"
#. Label of the end_date (Date) field in DocType 'Cohort'
#. Label of the end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:114 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/BatchForm.vue:122 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:282
msgid "End Date"
@@ -1551,7 +1569,7 @@ msgstr "Дата окончания (или ожидаемая)"
#. Label of the end_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the end_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the end_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:128
#: frontend/src/pages/BatchForm.vue:136
#: frontend/src/pages/ProfileEvaluator.vue:18
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1587,13 +1605,15 @@ msgstr "Подтверждение регистрации на следующу
msgid "Enrollment Count"
msgstr "Количество регистраций"
#: lms/lms/utils.py:1683
#: lms/lms/utils.py:1692
msgid "Enrollment Failed"
msgstr ""
#. Label of the enrollments (Data) field in DocType 'LMS Course'
#. Label of a chart in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/pages/Statistics.vue:45 lms/lms/workspace/lms/lms.json
#: frontend/src/pages/Statistics.vue:45
#: lms/lms/doctype/lms_course/lms_course.json lms/lms/workspace/lms/lms.json
msgid "Enrollments"
msgstr "Зачисления"
@@ -1635,7 +1655,7 @@ msgid "Evaluation Details"
msgstr "Подробности оценки"
#. Label of the evaluation_end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:155
#: frontend/src/pages/BatchForm.vue:165
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:333
msgid "Evaluation End Date"
@@ -1697,6 +1717,10 @@ msgstr ""
msgid "Event"
msgstr "Событие"
#: frontend/src/pages/BatchForm.vue:144
msgid "Example: IST (+5:30)"
msgstr ""
#. Label of the exercise (Link) field in DocType 'Exercise Latest Submission'
#. Label of the exercise (Link) field in DocType 'Exercise Submission'
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
@@ -1767,7 +1791,7 @@ msgstr "Ошибка"
#. Label of the featured (Check) field in DocType 'LMS Course'
#: frontend/src/components/CourseCard.vue:16
#: frontend/src/pages/CourseForm.vue:156
#: frontend/src/pages/CourseForm.vue:180
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Featured"
msgstr "Популярные"
@@ -2030,6 +2054,10 @@ msgstr ""
msgid "Icon"
msgstr "Иконка"
#: frontend/src/components/LessonHelp.vue:68
msgid "If Include in Preview is enabled for a lesson then the lesson will also be accessible to non logged in users."
msgstr ""
#: lms/templates/emails/mentor_request_creation_email.html:5
msgid "If you are not any more interested to mentor the course"
msgstr "Если вы больше не заинтересованы в руководстве курсом"
@@ -2166,7 +2194,7 @@ msgstr "Заметки инструктора"
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch'
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:77 frontend/src/pages/CourseForm.vue:123
#: frontend/src/pages/BatchForm.vue:85 frontend/src/pages/CourseForm.vue:146
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Instructors"
@@ -2311,7 +2339,7 @@ msgstr "Должность"
msgid "Jobs"
msgstr "Вакансии"
#: frontend/src/components/LiveClass.vue:53
#: frontend/src/components/LiveClass.vue:54
#: lms/templates/upcoming_evals.html:15
msgid "Join"
msgstr ""
@@ -2325,6 +2353,10 @@ msgstr ""
msgid "Join URL"
msgstr "Присоединиться URL"
#: frontend/src/pages/CourseForm.vue:128
msgid "Keywords for the course"
msgstr ""
#. Name of a Workspace
#: lms/lms/workspace/lms/lms.json
msgid "LMS"
@@ -2578,9 +2610,11 @@ msgstr "Название урока"
#. Label of the lessons (Table) field in DocType 'Course Chapter'
#. Group in Course Chapter's connections
#. Label of the lessons (Data) field in DocType 'LMS Course'
#: frontend/src/components/CourseCard.vue:34
#: frontend/src/components/CourseCardOverlay.vue:96
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Lessons"
msgstr "Уроки"
@@ -2753,7 +2787,7 @@ msgid "Maximun Attempts"
msgstr ""
#. Label of the medium (Select) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:174
#: frontend/src/pages/BatchForm.vue:184
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:309
msgid "Medium"
@@ -2901,7 +2935,7 @@ msgid "Mentors"
msgstr "Наставник"
#. Label of the meta_image (Attach Image) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:53 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:36 lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:362
msgid "Meta Image"
msgstr "Мета изображение"
@@ -2937,11 +2971,11 @@ msgstr "Модератор"
msgid "Modified By"
msgstr "Изменено"
#: lms/lms/api.py:190
#: lms/lms/api.py:191
msgid "Module Name is incorrect or does not exist."
msgstr "Имя модуля неверно или не существует."
#: lms/lms/api.py:186
#: lms/lms/api.py:187
msgid "Module is incorrect."
msgstr "Модуль неверный."
@@ -3008,11 +3042,11 @@ msgstr ""
msgid "New Sign Up"
msgstr "Новая регистрация"
#: lms/lms/utils.py:613
#: lms/lms/utils.py:632
msgid "New comment in batch {0}"
msgstr "Новый комментарий в группе {0}"
#: lms/lms/utils.py:606
#: lms/lms/utils.py:625
msgid "New reply on the topic {0} in course {1}"
msgstr "Новый ответ по теме {0} в курсе {1}"
@@ -3050,6 +3084,10 @@ msgstr "Нет предстоящих оценок"
msgid "No announcements"
msgstr "Нет объявлений"
#: frontend/src/pages/Batches.vue:125
msgid "No batches found"
msgstr ""
#: lms/templates/certificates_section.html:23
msgid "No certificates"
msgstr "Нет сертификатов"
@@ -3058,6 +3096,10 @@ msgstr "Нет сертификатов"
msgid "No courses created"
msgstr "Курсы не созданы"
#: frontend/src/pages/Courses.vue:146
msgid "No courses found"
msgstr ""
#: lms/templates/courses_under_review.html:14
msgid "No courses under review"
msgstr "Нет рассматриваемых курсов"
@@ -3070,7 +3112,7 @@ msgstr "Без введения"
msgid "No jobs posted"
msgstr "Вакансии не опубликованы"
#: frontend/src/components/LiveClass.vue:59
#: frontend/src/components/LiveClass.vue:60
msgid "No live classes scheduled"
msgstr "Не запланированы онлайн-курсы"
@@ -3086,12 +3128,12 @@ msgstr "Нет предстоящих оценок."
msgid "No {0}"
msgstr "Нет {0}"
#: frontend/src/pages/Batches.vue:88
msgid "No {0} batches found"
#: frontend/src/pages/Batches.vue:84
msgid "No {0} batches"
msgstr ""
#: frontend/src/pages/Courses.vue:110
msgid "No {0} courses found"
#: frontend/src/pages/Courses.vue:106
msgid "No {0} courses"
msgstr ""
#: lms/templates/quiz/quiz.html:147
@@ -3146,6 +3188,10 @@ msgstr "Уведомления"
msgid "Notify me when available"
msgstr "Сообщите мне, когда появится"
#: frontend/src/pages/BatchForm.vue:161
msgid "Number of seats available"
msgstr ""
#. Label of the sb_00 (Section Break) field in DocType 'Zoom Settings'
#: lms/lms/doctype/zoom_settings/zoom_settings.json
msgid "OAuth Client ID"
@@ -3178,7 +3224,7 @@ msgstr "Online"
msgid "Only files of type {0} will be accepted."
msgstr "Принимаются только файлы типа {0} ."
#: frontend/src/pages/CourseForm.vue:449 frontend/src/utils/index.js:509
#: frontend/src/pages/CourseForm.vue:473 frontend/src/utils/index.js:518
msgid "Only image file is allowed."
msgstr ""
@@ -3286,14 +3332,14 @@ msgid "Pages"
msgstr "Страницы"
#. Label of the paid_batch (Check) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:194
#: frontend/src/pages/BatchForm.vue:204
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:373
msgid "Paid Batch"
msgstr "Платная группа"
#. Label of the paid_course (Check) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:181
#: frontend/src/pages/CourseForm.vue:205
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Paid Course"
msgstr "Платный курс"
@@ -3335,9 +3381,13 @@ msgstr "Процент сдачи экзамена"
msgid "Password"
msgstr "Пароль"
#: frontend/src/pages/CourseForm.vue:104
msgid "Paste the youtube link of a short video introducing the course"
msgstr ""
#. Label of the payment (Link) field in DocType 'Batch Student'
#. Label of the payment (Link) field in DocType 'LMS Enrollment'
#: frontend/src/pages/BatchForm.vue:188
#: frontend/src/pages/BatchForm.vue:198
#: lms/lms/doctype/batch_student/batch_student.json
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
msgid "Payment"
@@ -3429,7 +3479,7 @@ msgstr "Процент (например, 70%)"
msgid "Phone Number"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:143
#: frontend/src/components/CourseCardOverlay.vue:141
msgid "Please Login"
msgstr ""
@@ -3490,7 +3540,7 @@ msgstr "Пожалуйста, войдите в систему, чтобы по
msgid "Please login to access this page."
msgstr "Пожалуйста, войдите в систему, чтобы получить доступ к этой странице."
#: lms/lms/api.py:182
#: lms/lms/api.py:183
msgid "Please login to continue with payment."
msgstr "Пожалуйста, войдите в систему, чтобы продолжить оплату."
@@ -3580,7 +3630,7 @@ msgstr ""
msgid "Preview Image"
msgstr "Просмотр изображения"
#: frontend/src/pages/CourseForm.vue:86
#: frontend/src/pages/CourseForm.vue:102
msgid "Preview Video"
msgstr "Предварительный просмотр видео"
@@ -3590,7 +3640,7 @@ msgstr "Предыдущие"
#. Label of the pricing_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the pricing_tab (Tab Break) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:175
#: frontend/src/pages/CourseForm.vue:199
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:368
@@ -3608,7 +3658,7 @@ msgstr ""
msgid "Primary Subgroup"
msgstr "Первичная подгруппа"
#: lms/lms/utils.py:422
#: lms/lms/utils.py:441
msgid "Privacy Policy"
msgstr "Политика приватности"
@@ -3660,7 +3710,7 @@ msgstr "Опубликовать на странице участника"
#. Label of the published (Check) field in DocType 'LMS Batch'
#. Label of the published (Check) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:108
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:138
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:162
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:266
@@ -3673,7 +3723,7 @@ msgid "Published Courses"
msgstr "Опубликованные курсы"
#. Label of the published_on (Date) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:142
#: frontend/src/pages/CourseForm.vue:166
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Published On"
msgstr "Опубликована"
@@ -3794,11 +3844,13 @@ msgid "Quizzes"
msgstr ""
#. Label of the rating (Rating) field in DocType 'LMS Certificate Evaluation'
#. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:109
#: frontend/src/components/CourseCardOverlay.vue:108
#: frontend/src/components/Modals/Event.vue:86
#: frontend/src/components/Modals/ReviewModal.vue:20
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_course_review/lms_course_review.json
#: lms/templates/reviews.html:125
msgid "Rating"
@@ -3869,6 +3921,10 @@ msgstr "Отклонено"
msgid "Related Courses"
msgstr "Похожие курсы"
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/CourseForm.vue:91
msgid "Remove"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:26
msgid "Reply To"
msgstr "Ответить"
@@ -4024,7 +4080,7 @@ msgid "Search for an icon"
msgstr "Поиск значка"
#. Label of the seat_count (Int) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:149
#: frontend/src/pages/BatchForm.vue:158
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:327
msgid "Seat Count"
@@ -4068,7 +4124,7 @@ msgid "Set your Password"
msgstr "Введите свой пароль"
#: frontend/src/components/Modals/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:143 frontend/src/pages/CourseForm.vue:128
#: frontend/src/pages/BatchForm.vue:152 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:78
msgid "Settings"
msgstr ""
@@ -4078,11 +4134,15 @@ msgid "Share on"
msgstr "Поделиться"
#. Label of the short_introduction (Small Text) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:29
#: frontend/src/pages/CourseForm.vue:30
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Short Introduction"
msgstr "Краткое введение"
#: frontend/src/pages/BatchForm.vue:93
msgid "Short description of the batch"
msgstr ""
#. Label of the show_answer (Check) field in DocType 'LMS Assignment'
#: lms/lms/doctype/lms_assignment/lms_assignment.json
msgid "Show Answer"
@@ -4235,7 +4295,7 @@ msgstr "Персонал"
msgid "Stage"
msgstr "Состояние"
#: frontend/src/components/LiveClass.vue:45 frontend/src/components/Quiz.vue:65
#: frontend/src/components/LiveClass.vue:46 frontend/src/components/Quiz.vue:65
#: lms/templates/quiz/quiz.html:39
msgid "Start"
msgstr ""
@@ -4243,7 +4303,7 @@ msgstr ""
#. Label of the start_date (Date) field in DocType 'Education Detail'
#. Label of the start_date (Date) field in DocType 'LMS Batch'
#. Label of the start_date (Date) field in DocType 'LMS Batch Old'
#: frontend/src/pages/BatchForm.vue:108
#: frontend/src/pages/BatchForm.vue:116
#: lms/lms/doctype/education_detail/education_detail.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -4264,7 +4324,7 @@ msgstr "Начать изучение"
#. Label of the start_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the start_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the start_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:122
#: frontend/src/pages/BatchForm.vue:130
#: frontend/src/pages/ProfileEvaluator.vue:15
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -4303,7 +4363,9 @@ msgstr ""
msgid "State"
msgstr ""
#. Label of the tab_4_tab (Tab Break) field in DocType 'LMS Course'
#. Label of the statistics (Check) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:133
msgid "Statistics"
msgstr "Статистика"
@@ -4433,7 +4495,7 @@ msgstr "Отправлено {0}"
#: frontend/src/components/BatchCourses.vue:150
#: frontend/src/components/BatchOverlay.vue:135
#: frontend/src/components/BatchStudents.vue:157
#: frontend/src/components/CourseCardOverlay.vue:163
#: frontend/src/components/CourseCardOverlay.vue:161
#: frontend/src/components/Modals/AssessmentModal.vue:73
#: frontend/src/components/Modals/Event.vue:255
#: frontend/src/components/Modals/Event.vue:310
@@ -4507,7 +4569,7 @@ msgid "System Manager"
msgstr ""
#. Label of the tags (Data) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:91
#: frontend/src/pages/CourseForm.vue:112
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Tags"
msgstr "Теги"
@@ -4535,7 +4597,7 @@ msgstr ""
msgid "Temporarily Disabled"
msgstr "Временно отключен"
#: lms/lms/utils.py:421
#: lms/lms/utils.py:440
msgid "Terms of Use"
msgstr "Условия использования"
@@ -4587,10 +4649,18 @@ msgstr "Слот уже забронирован другим участнико
msgid "The status of your application has changed."
msgstr "Статус вашей заявки изменился."
#: frontend/src/pages/Batches.vue:129
msgid "There are no batches available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr ""
#: frontend/src/components/CreateOutline.vue:12
msgid "There are no chapters in this course. Create and manage chapters from here."
msgstr ""
#: frontend/src/pages/Courses.vue:150
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:140
msgid "There are no seats available in this batch."
msgstr "В этой группе нет свободных мест."
@@ -4622,7 +4692,7 @@ msgstr "Этот сертификат является бессрочным"
msgid "This course has:"
msgstr ""
#: lms/lms/utils.py:1563
#: lms/lms/utils.py:1572
msgid "This course is free."
msgstr "Этот курс бесплатный."
@@ -4691,7 +4761,7 @@ msgstr "Шаблон расписания"
#. Label of the timezone (Data) field in DocType 'LMS Certificate Request'
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/LiveClassModal.vue:44
#: frontend/src/pages/BatchForm.vue:134
#: frontend/src/pages/BatchForm.vue:142
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -4757,7 +4827,7 @@ msgstr ""
msgid "To Date is mandatory in Work Experience."
msgstr "В графе «Опыт работы» обязательно должно быть указано «На сегодняшний день»."
#: lms/lms/utils.py:1574
#: lms/lms/utils.py:1583
msgid "To join this batch, please contact the Administrator."
msgstr "Чтобы присоединиться к этой группе, свяжитесь с администратором."
@@ -4874,7 +4944,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Cohort'
#. Label of the upcoming (Check) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:151 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/CourseForm.vue:175 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming"
msgstr "Предстоящие"
@@ -4898,6 +4968,10 @@ msgstr ""
msgid "Update Password"
msgstr ""
#: frontend/src/pages/BatchForm.vue:51 frontend/src/pages/CourseForm.vue:72
msgid "Upload"
msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:69
msgid "Upload File"
msgstr "Загрузить файл"
@@ -5020,6 +5094,10 @@ msgstr "Среда"
msgid "Welcome to {0}!"
msgstr "Добро пожаловать в {0}!"
#: frontend/src/components/LessonHelp.vue:63
msgid "What does include in preview mean?"
msgstr ""
#: lms/templates/courses_under_review.html:15
msgid "When a course gets submitted for review, it will be listed here."
msgstr "Когда курс будет отправлен на рассмотрение, он появится в этом списке."
@@ -5073,11 +5151,11 @@ msgstr "Напишите свой ответ здесь"
msgid "You already have an evaluation on {0} at {1} for the course {2}."
msgstr "У вас уже есть оценка {0} в {1} для курса {2}."
#: lms/lms/api.py:206
#: lms/lms/api.py:207
msgid "You are already enrolled for this batch."
msgstr "Вы уже зачислены в эту группу."
#: lms/lms/api.py:198
#: lms/lms/api.py:199
msgid "You are already enrolled for this course."
msgstr "Вы уже зачислены на этот курс."
@@ -5089,6 +5167,10 @@ msgstr "Вы не являетесь участником этой группы.
msgid "You are not a mentor of the course {0}"
msgstr "Вы не являетесь наставником курса {0}"
#: frontend/src/pages/Courses.vue:134
msgid "You can add chapters and lessons to it."
msgstr ""
#: lms/templates/emails/lms_course_interest.html:13
#: lms/templates/emails/lms_invite_request_approved.html:11
msgid "You can also copy-paste following link in your browser"
@@ -5106,6 +5188,10 @@ msgstr "Вы можете попробовать пройти этот тест
msgid "You can find their resume attached to this email."
msgstr "Их резюме вы найдете в приложении к этому электронному письму."
#: frontend/src/pages/Batches.vue:113
msgid "You can link courses and assessments to it."
msgstr ""
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:115
msgid "You cannot schedule evaluations after {0}."
msgstr "Вы не можете запланировать оценки после {0}."
@@ -5147,7 +5233,7 @@ msgstr "Вы уже просмотрели этот курс"
msgid "You have been enrolled in this batch"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:164
#: frontend/src/components/CourseCardOverlay.vue:162
msgid "You have been enrolled in this course"
msgstr ""
@@ -5159,7 +5245,7 @@ msgstr "Вы выбрали получение уведомлений об эт
msgid "You haven't enrolled for any courses"
msgstr "Вы не записались ни на один курс"
#: frontend/src/components/CourseCardOverlay.vue:144
#: frontend/src/components/CourseCardOverlay.vue:142
msgid "You need to login first to enroll for this course"
msgstr ""
@@ -5277,7 +5363,7 @@ msgstr "звезды"
msgid "you can"
msgstr "вы можете"
#: lms/lms/api.py:731 lms/lms/api.py:739
#: lms/lms/api.py:732 lms/lms/api.py:740
msgid "{0} Settings not found"
msgstr ""
@@ -5313,7 +5399,7 @@ msgstr "{0} уже сертифицирован для курса {1}"
msgid "{0} is your evaluator"
msgstr ""
#: lms/lms/utils.py:690
#: lms/lms/utils.py:709
msgid "{0} mentioned you in a comment"
msgstr "{0} упомянул вас в комментарии"
@@ -5321,11 +5407,11 @@ msgstr "{0} упомянул вас в комментарии"
msgid "{0} mentioned you in a comment in your batch."
msgstr "{0} упомянул вас в комментарии в вашей группе."
#: lms/lms/utils.py:643 lms/lms/utils.py:649
#: lms/lms/utils.py:662 lms/lms/utils.py:668
msgid "{0} mentioned you in a comment in {1}"
msgstr "{0} упомянул вас в комментарии в {1}"
#: lms/lms/utils.py:461
#: lms/lms/utils.py:480
msgid "{0}k"
msgstr "{0}k"

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-10-18 16:04+0000\n"
"PO-Revision-Date: 2024-11-03 14:38\n"
"POT-Creation-Date: 2024-11-01 16:04+0000\n"
"PO-Revision-Date: 2024-11-05 14:34\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Swedish\n"
"MIME-Version: 1.0\n"
@@ -62,6 +62,10 @@ msgstr "Inställningar"
msgid "<span style=\"font-size: 18px;\"><b>Statistics</b></span>"
msgstr "<span style=\"font-size: 18px;\"><b>Statistik</b></span>"
#: frontend/src/pages/CourseForm.vue:32
msgid "A one line introduction to the course that appears on the course card"
msgstr "En rad introduktion till kurs som finns på kurskortet"
#: frontend/src/pages/ProfileAbout.vue:4
msgid "About"
msgstr "Om"
@@ -102,7 +106,6 @@ msgstr "Lägg till"
#: frontend/src/components/CourseOutline.vue:11
#: frontend/src/components/CreateOutline.vue:18
#: frontend/src/components/Modals/ChapterModal.vue:5
#: frontend/src/components/Modals/ChapterModal.vue:9
msgid "Add Chapter"
msgstr "Lägg till Kapitel"
@@ -225,7 +228,7 @@ msgstr "Redan Registrerad"
#. Label of the amount (Currency) field in DocType 'Web Form'
#. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the amount (Currency) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:198 lms/fixtures/custom_field.json
#: frontend/src/pages/BatchForm.vue:208 lms/fixtures/custom_field.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/public/js/common_functions.js:379
@@ -269,6 +272,14 @@ msgstr "Meddelande"
msgid "Answer"
msgstr "Svara"
#: frontend/src/pages/CourseForm.vue:76 frontend/src/pages/CourseForm.vue:94
msgid "Appears on the course card in the course list"
msgstr "Visas på kurskort i kurslista"
#: frontend/src/pages/BatchForm.vue:55 frontend/src/pages/BatchForm.vue:73
msgid "Appears when the batch URL is shared on any online platform"
msgstr "Visas när omgång URL delas på valfri online plattform"
#: frontend/src/pages/JobDetail.vue:131
msgid "Applications Received"
msgstr "Ansökan Mottagen"
@@ -467,7 +478,7 @@ msgid "Batch Description"
msgstr "Parti Beskrivning"
#. Label of the batch_details (Text Editor) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:89 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:97 lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:349
#: lms/templates/emails/batch_confirmation.html:30
msgid "Batch Details"
@@ -634,8 +645,8 @@ msgstr "Fritidskläder"
#. Label of the category (Link) field in DocType 'LMS Batch'
#. Label of the category (Data) field in DocType 'LMS Category'
#. Label of the category (Link) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:179 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:116 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/BatchForm.vue:189 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:139 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/JobDetail.vue:102
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json
@@ -936,7 +947,7 @@ msgstr "Slutför Registrering"
msgid "Completed"
msgstr "Klar"
#: frontend/src/pages/CourseForm.vue:168
#: frontend/src/pages/CourseForm.vue:192
msgid "Completion Certificate"
msgstr "Kompletterande Certifikat"
@@ -986,7 +997,7 @@ msgstr "Fortsätt lära dig"
msgid "Contract"
msgstr "Avtal"
#: lms/lms/utils.py:423
#: lms/lms/utils.py:442
msgid "Cookie Policy"
msgstr "Princip för Kakor"
@@ -1107,7 +1118,7 @@ msgstr "Kurs Skapare"
msgid "Course Data"
msgstr "Kursdata"
#: frontend/src/pages/CourseForm.vue:34
#: frontend/src/pages/CourseForm.vue:41
msgid "Course Description"
msgstr "Kursbeskrivning"
@@ -1116,7 +1127,7 @@ msgstr "Kursbeskrivning"
msgid "Course Evaluator"
msgstr "Kursutvärderare"
#: frontend/src/pages/CourseForm.vue:64
#: frontend/src/pages/CourseForm.vue:54
msgid "Course Image"
msgstr "Kursbild"
@@ -1139,7 +1150,7 @@ msgid "Course Name"
msgstr "Kursnamn"
#. Label of the course_price (Currency) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:186
#: frontend/src/pages/CourseForm.vue:210
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Course Price"
msgstr "Kurspris"
@@ -1172,7 +1183,7 @@ msgstr "Kurstitel"
msgid "Course already added to the batch."
msgstr "Kursen har redan lagts till i omgång."
#: frontend/src/pages/CourseForm.vue:433
#: frontend/src/pages/CourseForm.vue:457
msgid "Course price and currency are mandatory for paid courses"
msgstr "Kurs pris och valuta erfordras för betalda kurser"
@@ -1210,6 +1221,10 @@ msgstr "Kurser raderade"
msgid "Cover Image"
msgstr "Omslagsbild"
#: frontend/src/components/Modals/ChapterModal.vue:9
msgid "Create"
msgstr "Skapa"
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7
msgid "Create LMS Certificate"
msgstr "Skapa LMS Certifikat"
@@ -1218,7 +1233,11 @@ msgstr "Skapa LMS Certifikat"
msgid "Create LMS Certificate Evaluation"
msgstr "Skapa LMS Certifikat Utvärdering"
#: lms/templates/onboarding_header.html:19
#: frontend/src/pages/Batches.vue:110
msgid "Create a Batch"
msgstr "Skapa Omgång"
#: frontend/src/pages/Courses.vue:131 lms/templates/onboarding_header.html:19
msgid "Create a Course"
msgstr "Skapa Kurs"
@@ -1234,7 +1253,7 @@ msgstr "Skapa ny fråga"
#. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course'
#. Label of the currency (Link) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:206 frontend/src/pages/CourseForm.vue:193
#: frontend/src/pages/BatchForm.vue:216 frontend/src/pages/CourseForm.vue:217
#: lms/fixtures/custom_field.json lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_payment/lms_payment.json
@@ -1292,7 +1311,7 @@ msgstr "Datum"
#. Label of the section_break_glxh (Section Break) field in DocType 'LMS Live
#. Class'
#: frontend/src/pages/BatchForm.vue:102
#: frontend/src/pages/BatchForm.vue:110
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Date and Time"
msgstr "Datum och Tid"
@@ -1340,7 +1359,6 @@ msgstr "Ta bort Lektion"
#. Label of the description (Markdown Editor) field in DocType 'Cohort'
#. Label of the description (Markdown Editor) field in DocType 'Cohort
#. Subgroup'
#. Label of the description (Small Text) field in DocType 'Course Chapter'
#. Label of the description (Small Text) field in DocType 'LMS Badge'
#. Label of the description (Small Text) field in DocType 'LMS Batch'
#. Label of the description (Markdown Editor) field in DocType 'LMS Batch Old'
@@ -1349,12 +1367,11 @@ msgstr "Ta bort Lektion"
#. Label of the description (Text) field in DocType 'LMS Live Class'
#. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:73
#: frontend/src/pages/BatchForm.vue:83 frontend/src/pages/JobCreation.vue:43
#: frontend/src/pages/BatchForm.vue:90 frontend/src/pages/JobCreation.vue:43
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/lms_badge/lms_badge.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -1376,7 +1393,7 @@ msgstr "Skrivbord"
msgid "Details"
msgstr "Detaljer"
#: frontend/src/pages/CourseForm.vue:163
#: frontend/src/pages/CourseForm.vue:187
msgid "Disable Self Enrollment"
msgstr "Inaktivera självregistrering"
@@ -1451,13 +1468,14 @@ msgstr "E-post"
#: frontend/src/components/BatchOverlay.vue:93
#: frontend/src/components/CourseCardOverlay.vue:86
#: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:70
#: frontend/src/pages/Profile.vue:32
msgid "Edit"
msgstr "Redigera"
#: frontend/src/components/CourseOutline.vue:106
#: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/components/Modals/ChapterModal.vue:5
msgid "Edit Chapter"
msgstr "Redigera Kapitel"
@@ -1533,7 +1551,7 @@ msgstr "Aktiverad"
#. Label of the end_date (Date) field in DocType 'Cohort'
#. Label of the end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:114 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/BatchForm.vue:122 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:282
msgid "End Date"
@@ -1551,7 +1569,7 @@ msgstr "Slutdatum (eller förväntat)"
#. Label of the end_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the end_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the end_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:128
#: frontend/src/pages/BatchForm.vue:136
#: frontend/src/pages/ProfileEvaluator.vue:18
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1587,13 +1605,15 @@ msgstr "Inskrivining bekräftelse för nästa omgång utbildning"
msgid "Enrollment Count"
msgstr "Antal Inskrivna"
#: lms/lms/utils.py:1683
#: lms/lms/utils.py:1692
msgid "Enrollment Failed"
msgstr "Registrering Misslyckad"
#. Label of the enrollments (Data) field in DocType 'LMS Course'
#. Label of a chart in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/pages/Statistics.vue:45 lms/lms/workspace/lms/lms.json
#: frontend/src/pages/Statistics.vue:45
#: lms/lms/doctype/lms_course/lms_course.json lms/lms/workspace/lms/lms.json
msgid "Enrollments"
msgstr "Inskrivningar"
@@ -1635,7 +1655,7 @@ msgid "Evaluation Details"
msgstr "Utvärdering Detaljer"
#. Label of the evaluation_end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:155
#: frontend/src/pages/BatchForm.vue:165
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:333
msgid "Evaluation End Date"
@@ -1697,6 +1717,10 @@ msgstr "Utvärderare är inte tillgänglig"
msgid "Event"
msgstr "Händelse"
#: frontend/src/pages/BatchForm.vue:144
msgid "Example: IST (+5:30)"
msgstr "Exempel: IST (+5:30)"
#. Label of the exercise (Link) field in DocType 'Exercise Latest Submission'
#. Label of the exercise (Link) field in DocType 'Exercise Submission'
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
@@ -1767,7 +1791,7 @@ msgstr "Misslyckad "
#. Label of the featured (Check) field in DocType 'LMS Course'
#: frontend/src/components/CourseCard.vue:16
#: frontend/src/pages/CourseForm.vue:156
#: frontend/src/pages/CourseForm.vue:180
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Featured"
msgstr "Utvald"
@@ -2030,6 +2054,10 @@ msgstr "ID"
msgid "Icon"
msgstr "Ikon"
#: frontend/src/components/LessonHelp.vue:68
msgid "If Include in Preview is enabled for a lesson then the lesson will also be accessible to non logged in users."
msgstr "Om Inkludera i Förhandsvisning är aktiverat för en lektion då lektionen kommer också att vara tillgänglig för ej inloggade användare."
#: lms/templates/emails/mentor_request_creation_email.html:5
msgid "If you are not any more interested to mentor the course"
msgstr "Om du inte längre är intresserad av att vara mentor för kurs"
@@ -2166,7 +2194,7 @@ msgstr "Lärare Anteckningar"
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch'
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:77 frontend/src/pages/CourseForm.vue:123
#: frontend/src/pages/BatchForm.vue:85 frontend/src/pages/CourseForm.vue:146
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Instructors"
@@ -2311,7 +2339,7 @@ msgstr "Jobb Titel"
msgid "Jobs"
msgstr "Jobb"
#: frontend/src/components/LiveClass.vue:53
#: frontend/src/components/LiveClass.vue:54
#: lms/templates/upcoming_evals.html:15
msgid "Join"
msgstr "Anslut"
@@ -2325,6 +2353,10 @@ msgstr "Delta i Möte"
msgid "Join URL"
msgstr "Gå med URL"
#: frontend/src/pages/CourseForm.vue:128
msgid "Keywords for the course"
msgstr "Nyckelord för kurs"
#. Name of a Workspace
#: lms/lms/workspace/lms/lms.json
msgid "LMS"
@@ -2578,9 +2610,11 @@ msgstr "Lektion Titel"
#. Label of the lessons (Table) field in DocType 'Course Chapter'
#. Group in Course Chapter's connections
#. Label of the lessons (Data) field in DocType 'LMS Course'
#: frontend/src/components/CourseCard.vue:34
#: frontend/src/components/CourseCardOverlay.vue:96
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Lessons"
msgstr "Lektioner"
@@ -2753,7 +2787,7 @@ msgid "Maximun Attempts"
msgstr "Maximalt antal försök"
#. Label of the medium (Select) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:174
#: frontend/src/pages/BatchForm.vue:184
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:309
msgid "Medium"
@@ -2901,7 +2935,7 @@ msgid "Mentors"
msgstr "Mentorer"
#. Label of the meta_image (Attach Image) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:53 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:36 lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:362
msgid "Meta Image"
msgstr "Meta Bild"
@@ -2937,11 +2971,11 @@ msgstr "Moderator"
msgid "Modified By"
msgstr "Modifierad Av"
#: lms/lms/api.py:190
#: lms/lms/api.py:191
msgid "Module Name is incorrect or does not exist."
msgstr "Modul Namn är felaktigt eller existerar inte."
#: lms/lms/api.py:186
#: lms/lms/api.py:187
msgid "Module is incorrect."
msgstr "Modul är felaktig."
@@ -3008,11 +3042,11 @@ msgstr "Nytt Frågesport"
msgid "New Sign Up"
msgstr "Ny Registrering"
#: lms/lms/utils.py:613
#: lms/lms/utils.py:632
msgid "New comment in batch {0}"
msgstr "Ny kommentar i omgång {0}"
#: lms/lms/utils.py:606
#: lms/lms/utils.py:625
msgid "New reply on the topic {0} in course {1}"
msgstr "Nytt svar i ämne {0} i kurs {1}"
@@ -3050,6 +3084,10 @@ msgstr "Inga Kommande Utvärderingar"
msgid "No announcements"
msgstr "Inga tillkännagivanden"
#: frontend/src/pages/Batches.vue:125
msgid "No batches found"
msgstr "Inga omgångar hittades"
#: lms/templates/certificates_section.html:23
msgid "No certificates"
msgstr "Inga certifikat"
@@ -3058,6 +3096,10 @@ msgstr "Inga certifikat"
msgid "No courses created"
msgstr "Inga kurser skapade"
#: frontend/src/pages/Courses.vue:146
msgid "No courses found"
msgstr "Inga kurser hittades"
#: lms/templates/courses_under_review.html:14
msgid "No courses under review"
msgstr "Inga kurser under granskning"
@@ -3070,7 +3112,7 @@ msgstr "Ingen introduktion"
msgid "No jobs posted"
msgstr "Inga jobb utannonserade"
#: frontend/src/components/LiveClass.vue:59
#: frontend/src/components/LiveClass.vue:60
msgid "No live classes scheduled"
msgstr "Inga live lektioner schemalagda"
@@ -3086,13 +3128,13 @@ msgstr "Inga kommande utvärderingar."
msgid "No {0}"
msgstr "Ingen {0}"
#: frontend/src/pages/Batches.vue:88
msgid "No {0} batches found"
msgstr "Inga {0} omgångar hittades"
#: frontend/src/pages/Batches.vue:84
msgid "No {0} batches"
msgstr "Inga {0} omgångar"
#: frontend/src/pages/Courses.vue:110
msgid "No {0} courses found"
msgstr "Inga {0} kurser hittades"
#: frontend/src/pages/Courses.vue:106
msgid "No {0} courses"
msgstr "Inga {0} kurser"
#: lms/templates/quiz/quiz.html:147
msgid "No."
@@ -3146,6 +3188,10 @@ msgstr "Aviseringar"
msgid "Notify me when available"
msgstr "Meddela mig när den är tillgänglig"
#: frontend/src/pages/BatchForm.vue:161
msgid "Number of seats available"
msgstr "Antal platser tillgängliga"
#. Label of the sb_00 (Section Break) field in DocType 'Zoom Settings'
#: lms/lms/doctype/zoom_settings/zoom_settings.json
msgid "OAuth Client ID"
@@ -3178,7 +3224,7 @@ msgstr "Uppkopplad"
msgid "Only files of type {0} will be accepted."
msgstr "Endast filer av typ {0} kommer att accepteras."
#: frontend/src/pages/CourseForm.vue:449 frontend/src/utils/index.js:509
#: frontend/src/pages/CourseForm.vue:473 frontend/src/utils/index.js:518
msgid "Only image file is allowed."
msgstr "Endast bildfiler är tillåtna."
@@ -3286,14 +3332,14 @@ msgid "Pages"
msgstr "Sidor"
#. Label of the paid_batch (Check) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:194
#: frontend/src/pages/BatchForm.vue:204
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:373
msgid "Paid Batch"
msgstr "Betald Parti"
#. Label of the paid_course (Check) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:181
#: frontend/src/pages/CourseForm.vue:205
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Paid Course"
msgstr "Betald Kurs"
@@ -3335,9 +3381,13 @@ msgstr "Passerande Procent"
msgid "Password"
msgstr "Lösenord"
#: frontend/src/pages/CourseForm.vue:104
msgid "Paste the youtube link of a short video introducing the course"
msgstr "Klistra in youtube länk i kort video för kursintroduktion"
#. Label of the payment (Link) field in DocType 'Batch Student'
#. Label of the payment (Link) field in DocType 'LMS Enrollment'
#: frontend/src/pages/BatchForm.vue:188
#: frontend/src/pages/BatchForm.vue:198
#: lms/lms/doctype/batch_student/batch_student.json
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
msgid "Payment"
@@ -3429,7 +3479,7 @@ msgstr "Procent (t.ex. 70%)"
msgid "Phone Number"
msgstr "Telefon Nummer"
#: frontend/src/components/CourseCardOverlay.vue:143
#: frontend/src/components/CourseCardOverlay.vue:141
msgid "Please Login"
msgstr "Logga in"
@@ -3490,7 +3540,7 @@ msgstr "Logga in för att komma åt frågesport."
msgid "Please login to access this page."
msgstr "Logga in för att komma till denna sida."
#: lms/lms/api.py:182
#: lms/lms/api.py:183
msgid "Please login to continue with payment."
msgstr "Logga in för att fortsätta med betalning."
@@ -3580,7 +3630,7 @@ msgstr "Föredragen Plats"
msgid "Preview Image"
msgstr "Förhandsgranska Bild"
#: frontend/src/pages/CourseForm.vue:86
#: frontend/src/pages/CourseForm.vue:102
msgid "Preview Video"
msgstr "Förhandsgranska Video"
@@ -3590,7 +3640,7 @@ msgstr "Föregående"
#. Label of the pricing_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the pricing_tab (Tab Break) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:175
#: frontend/src/pages/CourseForm.vue:199
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:368
@@ -3608,7 +3658,7 @@ msgstr "Primära Länder"
msgid "Primary Subgroup"
msgstr "Primär Undergrupp"
#: lms/lms/utils.py:422
#: lms/lms/utils.py:441
msgid "Privacy Policy"
msgstr "Integritet Princip"
@@ -3660,7 +3710,7 @@ msgstr "Publicera på deltagarsidan"
#. Label of the published (Check) field in DocType 'LMS Batch'
#. Label of the published (Check) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:108
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:138
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:162
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:266
@@ -3673,7 +3723,7 @@ msgid "Published Courses"
msgstr "Publicerade Kurser"
#. Label of the published_on (Date) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:142
#: frontend/src/pages/CourseForm.vue:166
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Published On"
msgstr "Publicerad"
@@ -3794,11 +3844,13 @@ msgid "Quizzes"
msgstr "Frågesporter"
#. Label of the rating (Rating) field in DocType 'LMS Certificate Evaluation'
#. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:109
#: frontend/src/components/CourseCardOverlay.vue:108
#: frontend/src/components/Modals/Event.vue:86
#: frontend/src/components/Modals/ReviewModal.vue:20
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_course_review/lms_course_review.json
#: lms/templates/reviews.html:125
msgid "Rating"
@@ -3869,6 +3921,10 @@ msgstr "Avvisad"
msgid "Related Courses"
msgstr "Relaterade Kurser"
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/CourseForm.vue:91
msgid "Remove"
msgstr "Ta bort"
#: frontend/src/components/Modals/AnnouncementModal.vue:26
msgid "Reply To"
msgstr "Svara till"
@@ -4024,7 +4080,7 @@ msgid "Search for an icon"
msgstr "Sök efter ikon"
#. Label of the seat_count (Int) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:149
#: frontend/src/pages/BatchForm.vue:158
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:327
msgid "Seat Count"
@@ -4068,7 +4124,7 @@ msgid "Set your Password"
msgstr "Ange Lösenord"
#: frontend/src/components/Modals/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:143 frontend/src/pages/CourseForm.vue:128
#: frontend/src/pages/BatchForm.vue:152 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:78
msgid "Settings"
msgstr "Inställningar"
@@ -4078,11 +4134,15 @@ msgid "Share on"
msgstr "Dela på"
#. Label of the short_introduction (Small Text) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:29
#: frontend/src/pages/CourseForm.vue:30
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Short Introduction"
msgstr "Kort Introduktion"
#: frontend/src/pages/BatchForm.vue:93
msgid "Short description of the batch"
msgstr "Kort beskrivning av omgång"
#. Label of the show_answer (Check) field in DocType 'LMS Assignment'
#: lms/lms/doctype/lms_assignment/lms_assignment.json
msgid "Show Answer"
@@ -4235,7 +4295,7 @@ msgstr "Personal"
msgid "Stage"
msgstr "Stadie"
#: frontend/src/components/LiveClass.vue:45 frontend/src/components/Quiz.vue:65
#: frontend/src/components/LiveClass.vue:46 frontend/src/components/Quiz.vue:65
#: lms/templates/quiz/quiz.html:39
msgid "Start"
msgstr "Start"
@@ -4243,7 +4303,7 @@ msgstr "Start"
#. Label of the start_date (Date) field in DocType 'Education Detail'
#. Label of the start_date (Date) field in DocType 'LMS Batch'
#. Label of the start_date (Date) field in DocType 'LMS Batch Old'
#: frontend/src/pages/BatchForm.vue:108
#: frontend/src/pages/BatchForm.vue:116
#: lms/lms/doctype/education_detail/education_detail.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -4264,7 +4324,7 @@ msgstr "Börja lära dig"
#. Label of the start_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the start_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the start_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:122
#: frontend/src/pages/BatchForm.vue:130
#: frontend/src/pages/ProfileEvaluator.vue:15
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -4303,7 +4363,9 @@ msgstr "Uppstart Organisation"
msgid "State"
msgstr "Län"
#. Label of the tab_4_tab (Tab Break) field in DocType 'LMS Course'
#. Label of the statistics (Check) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:133
msgid "Statistics"
msgstr "Statistik"
@@ -4433,7 +4495,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/CourseCardOverlay.vue:163
#: frontend/src/components/CourseCardOverlay.vue:161
#: frontend/src/components/Modals/AssessmentModal.vue:73
#: frontend/src/components/Modals/Event.vue:255
#: frontend/src/components/Modals/Event.vue:310
@@ -4507,7 +4569,7 @@ msgid "System Manager"
msgstr "System Ansvarig"
#. Label of the tags (Data) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:91
#: frontend/src/pages/CourseForm.vue:112
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Tags"
msgstr "Taggar"
@@ -4535,7 +4597,7 @@ msgstr "Mall"
msgid "Temporarily Disabled"
msgstr "Tillfälligt Inaktiverad"
#: lms/lms/utils.py:421
#: lms/lms/utils.py:440
msgid "Terms of Use"
msgstr "Villkor"
@@ -4587,10 +4649,18 @@ msgstr "Tiden är redan bokad av en annan deltagare."
msgid "The status of your application has changed."
msgstr "Status för din ansökan har förändrats."
#: frontend/src/pages/Batches.vue:129
msgid "There are no batches available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr "Det finns inga omgångar tillgängliga just nu. Håll utkik, färska inlärningsupplevelser är på väg snart!"
#: frontend/src/components/CreateOutline.vue:12
msgid "There are no chapters in this course. Create and manage chapters from here."
msgstr "Det finns inga kapitel i denna kurs. Skapa och hantera kapitel härifrån."
#: frontend/src/pages/Courses.vue:150
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr "Det finns inga kurser tillgängliga just nu. Håll utkik, färska inlärningsupplevelser är på väg snart!"
#: lms/lms/doctype/lms_batch/lms_batch.py:140
msgid "There are no seats available in this batch."
msgstr "Det finns inga platser tillgängliga i denna omgång."
@@ -4622,7 +4692,7 @@ msgstr "Detta certifikat upphör inte att gälla"
msgid "This course has:"
msgstr "Denna kurs har:"
#: lms/lms/utils.py:1563
#: lms/lms/utils.py:1572
msgid "This course is free."
msgstr "Denna kurs är gratis."
@@ -4691,7 +4761,7 @@ msgstr "Tidtabell Mall"
#. Label of the timezone (Data) field in DocType 'LMS Certificate Request'
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/LiveClassModal.vue:44
#: frontend/src/pages/BatchForm.vue:134
#: frontend/src/pages/BatchForm.vue:142
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -4757,7 +4827,7 @@ msgstr "Till Datum"
msgid "To Date is mandatory in Work Experience."
msgstr "Till Datum erfordras i Arbetslivserfarenhet."
#: lms/lms/utils.py:1574
#: lms/lms/utils.py:1583
msgid "To join this batch, please contact the Administrator."
msgstr "För att gå med i denna omgång, kontakta Administratör."
@@ -4874,7 +4944,7 @@ msgstr "Ostrukturerad Roll"
#. Option for the 'Status' (Select) field in DocType 'Cohort'
#. Label of the upcoming (Check) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:151 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/CourseForm.vue:175 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming"
msgstr "Kommande"
@@ -4898,6 +4968,10 @@ msgstr "Uppdatera"
msgid "Update Password"
msgstr "Uppdatera lösenord"
#: frontend/src/pages/BatchForm.vue:51 frontend/src/pages/CourseForm.vue:72
msgid "Upload"
msgstr "Ladda upp"
#: frontend/src/pages/AssignmentSubmission.vue:69
msgid "Upload File"
msgstr "Ladda upp fil"
@@ -5020,6 +5094,10 @@ msgstr "Onsdag"
msgid "Welcome to {0}!"
msgstr "Välkommen till {0}!"
#: frontend/src/components/LessonHelp.vue:63
msgid "What does include in preview mean?"
msgstr "Vad betyder inkludera i förhandsvisning?"
#: lms/templates/courses_under_review.html:15
msgid "When a course gets submitted for review, it will be listed here."
msgstr "När kurs lämnas in för granskning kommer den att listas här."
@@ -5073,11 +5151,11 @@ msgstr "Skriv ditt svar här"
msgid "You already have an evaluation on {0} at {1} for the course {2}."
msgstr "Du har redan utvärdering {0} kl. {1} för kurs {2}."
#: lms/lms/api.py:206
#: lms/lms/api.py:207
msgid "You are already enrolled for this batch."
msgstr "Du är redan inskriven för denna omgång."
#: lms/lms/api.py:198
#: lms/lms/api.py:199
msgid "You are already enrolled for this course."
msgstr "Du är redan inskriven på denna kurs."
@@ -5089,6 +5167,10 @@ msgstr "Du är inte i denna omgång. Kolla in våra kommande omgångar."
msgid "You are not a mentor of the course {0}"
msgstr "Du är inte mentor för kurs {0}"
#: frontend/src/pages/Courses.vue:134
msgid "You can add chapters and lessons to it."
msgstr "Du kan lägga till kapitel och lektioner till den."
#: lms/templates/emails/lms_course_interest.html:13
#: lms/templates/emails/lms_invite_request_approved.html:11
msgid "You can also copy-paste following link in your browser"
@@ -5106,6 +5188,10 @@ msgstr "Du kan prova detta frågesport {0}."
msgid "You can find their resume attached to this email."
msgstr "Du kan hitta deras CV bifogat till detta e-post meddelande."
#: frontend/src/pages/Batches.vue:113
msgid "You can link courses and assessments to it."
msgstr "Du kan koppla kurser och bedömningar till den."
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:115
msgid "You cannot schedule evaluations after {0}."
msgstr "Du kan inte schemalägga utvärderingar efter {0}."
@@ -5147,7 +5233,7 @@ msgstr "Du har redan granskat denna kurs"
msgid "You have been enrolled in this batch"
msgstr "Du har blivit registrerad i denna omgång"
#: frontend/src/components/CourseCardOverlay.vue:164
#: frontend/src/components/CourseCardOverlay.vue:162
msgid "You have been enrolled in this course"
msgstr "Du har blivit registrerad på denna kurs"
@@ -5159,7 +5245,7 @@ msgstr "Du har valt att bli meddelad om denna kurs. Du kommer att få ett e-post
msgid "You haven't enrolled for any courses"
msgstr "Du är inte inskriven till någon kurs"
#: frontend/src/components/CourseCardOverlay.vue:144
#: frontend/src/components/CourseCardOverlay.vue:142
msgid "You need to login first to enroll for this course"
msgstr "Du måste logga in först för att registrera dig till denna kurs"
@@ -5277,7 +5363,7 @@ msgstr "stjärnor"
msgid "you can"
msgstr "du kan"
#: lms/lms/api.py:731 lms/lms/api.py:739
#: lms/lms/api.py:732 lms/lms/api.py:740
msgid "{0} Settings not found"
msgstr "{0} Inställningar hittades inte"
@@ -5313,7 +5399,7 @@ msgstr "{0} är redan certifierad för kurs {1}"
msgid "{0} is your evaluator"
msgstr "{0} är din utvärderare"
#: lms/lms/utils.py:690
#: lms/lms/utils.py:709
msgid "{0} mentioned you in a comment"
msgstr "{0} nämnde dig i en kommentar"
@@ -5321,11 +5407,11 @@ msgstr "{0} nämnde dig i en kommentar"
msgid "{0} mentioned you in a comment in your batch."
msgstr "{0} nämnde dig i en kommentar i din grupp."
#: lms/lms/utils.py:643 lms/lms/utils.py:649
#: lms/lms/utils.py:662 lms/lms/utils.py:668
msgid "{0} mentioned you in a comment in {1}"
msgstr "{0} hänvisade dig i kommentar i {1}"
#: lms/lms/utils.py:461
#: lms/lms/utils.py:480
msgid "{0}k"
msgstr "{0}k"

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-10-18 16:04+0000\n"
"PO-Revision-Date: 2024-11-01 13:30\n"
"POT-Creation-Date: 2024-11-01 16:04+0000\n"
"PO-Revision-Date: 2024-11-05 14:34\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Turkish\n"
"MIME-Version: 1.0\n"
@@ -62,6 +62,10 @@ msgstr ""
msgid "<span style=\"font-size: 18px;\"><b>Statistics</b></span>"
msgstr ""
#: frontend/src/pages/CourseForm.vue:32
msgid "A one line introduction to the course that appears on the course card"
msgstr ""
#: frontend/src/pages/ProfileAbout.vue:4
msgid "About"
msgstr "Hakkında"
@@ -102,7 +106,6 @@ msgstr "Ekle"
#: frontend/src/components/CourseOutline.vue:11
#: frontend/src/components/CreateOutline.vue:18
#: frontend/src/components/Modals/ChapterModal.vue:5
#: frontend/src/components/Modals/ChapterModal.vue:9
msgid "Add Chapter"
msgstr "Bölüm Ekle"
@@ -225,7 +228,7 @@ msgstr "Zaten kayıltı"
#. Label of the amount (Currency) field in DocType 'Web Form'
#. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the amount (Currency) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:198 lms/fixtures/custom_field.json
#: frontend/src/pages/BatchForm.vue:208 lms/fixtures/custom_field.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/public/js/common_functions.js:379
@@ -269,6 +272,14 @@ msgstr "Duyuru"
msgid "Answer"
msgstr "Cevap"
#: frontend/src/pages/CourseForm.vue:76 frontend/src/pages/CourseForm.vue:94
msgid "Appears on the course card in the course list"
msgstr ""
#: frontend/src/pages/BatchForm.vue:55 frontend/src/pages/BatchForm.vue:73
msgid "Appears when the batch URL is shared on any online platform"
msgstr ""
#: frontend/src/pages/JobDetail.vue:131
msgid "Applications Received"
msgstr "Alınan Başvurular"
@@ -467,7 +478,7 @@ msgid "Batch Description"
msgstr ""
#. Label of the batch_details (Text Editor) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:89 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:97 lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:349
#: lms/templates/emails/batch_confirmation.html:30
msgid "Batch Details"
@@ -634,8 +645,8 @@ msgstr ""
#. Label of the category (Link) field in DocType 'LMS Batch'
#. Label of the category (Data) field in DocType 'LMS Category'
#. Label of the category (Link) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:179 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:116 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/BatchForm.vue:189 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:139 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/JobDetail.vue:102
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json
@@ -936,7 +947,7 @@ msgstr "Kayıt İşlemini Tamamlayın"
msgid "Completed"
msgstr "Tamamlandı"
#: frontend/src/pages/CourseForm.vue:168
#: frontend/src/pages/CourseForm.vue:192
msgid "Completion Certificate"
msgstr ""
@@ -986,7 +997,7 @@ msgstr ""
msgid "Contract"
msgstr "Sözleşme"
#: lms/lms/utils.py:423
#: lms/lms/utils.py:442
msgid "Cookie Policy"
msgstr "Çerez Politikası"
@@ -1107,7 +1118,7 @@ msgstr ""
msgid "Course Data"
msgstr "Kurs Verileri"
#: frontend/src/pages/CourseForm.vue:34
#: frontend/src/pages/CourseForm.vue:41
msgid "Course Description"
msgstr "Kurs Açıklaması"
@@ -1116,7 +1127,7 @@ msgstr "Kurs Açıklaması"
msgid "Course Evaluator"
msgstr ""
#: frontend/src/pages/CourseForm.vue:64
#: frontend/src/pages/CourseForm.vue:54
msgid "Course Image"
msgstr "Kurs Resmi"
@@ -1139,7 +1150,7 @@ msgid "Course Name"
msgstr "Kurs Adı"
#. Label of the course_price (Currency) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:186
#: frontend/src/pages/CourseForm.vue:210
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Course Price"
msgstr "Kurs Fiyatı"
@@ -1172,7 +1183,7 @@ msgstr "Kurs Başlığı"
msgid "Course already added to the batch."
msgstr "Kurs zaten gruba eklendi."
#: frontend/src/pages/CourseForm.vue:433
#: frontend/src/pages/CourseForm.vue:457
msgid "Course price and currency are mandatory for paid courses"
msgstr ""
@@ -1210,6 +1221,10 @@ msgstr ""
msgid "Cover Image"
msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:9
msgid "Create"
msgstr "Oluştur"
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7
msgid "Create LMS Certificate"
msgstr "ÖYS Sertifikası Oluştur"
@@ -1218,7 +1233,11 @@ msgstr "ÖYS Sertifikası Oluştur"
msgid "Create LMS Certificate Evaluation"
msgstr "ÖYS Sertifika Değerlendirmesi Oluştur"
#: lms/templates/onboarding_header.html:19
#: frontend/src/pages/Batches.vue:110
msgid "Create a Batch"
msgstr ""
#: frontend/src/pages/Courses.vue:131 lms/templates/onboarding_header.html:19
msgid "Create a Course"
msgstr "Kurs Oluştur"
@@ -1234,7 +1253,7 @@ msgstr ""
#. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course'
#. Label of the currency (Link) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:206 frontend/src/pages/CourseForm.vue:193
#: frontend/src/pages/BatchForm.vue:216 frontend/src/pages/CourseForm.vue:217
#: lms/fixtures/custom_field.json lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_payment/lms_payment.json
@@ -1292,7 +1311,7 @@ msgstr "Tarih"
#. Label of the section_break_glxh (Section Break) field in DocType 'LMS Live
#. Class'
#: frontend/src/pages/BatchForm.vue:102
#: frontend/src/pages/BatchForm.vue:110
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Date and Time"
msgstr "Tarih ve Saat"
@@ -1340,7 +1359,6 @@ msgstr ""
#. Label of the description (Markdown Editor) field in DocType 'Cohort'
#. Label of the description (Markdown Editor) field in DocType 'Cohort
#. Subgroup'
#. Label of the description (Small Text) field in DocType 'Course Chapter'
#. Label of the description (Small Text) field in DocType 'LMS Badge'
#. Label of the description (Small Text) field in DocType 'LMS Batch'
#. Label of the description (Markdown Editor) field in DocType 'LMS Batch Old'
@@ -1349,12 +1367,11 @@ msgstr ""
#. Label of the description (Text) field in DocType 'LMS Live Class'
#. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:73
#: frontend/src/pages/BatchForm.vue:83 frontend/src/pages/JobCreation.vue:43
#: frontend/src/pages/BatchForm.vue:90 frontend/src/pages/JobCreation.vue:43
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/lms_badge/lms_badge.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -1376,7 +1393,7 @@ msgstr ""
msgid "Details"
msgstr "Ayrıntılar"
#: frontend/src/pages/CourseForm.vue:163
#: frontend/src/pages/CourseForm.vue:187
msgid "Disable Self Enrollment"
msgstr "Kendi Kendine Kayıt Olmayı Devre Dışı Bırak"
@@ -1451,13 +1468,14 @@ msgstr "E-Posta"
#: frontend/src/components/BatchOverlay.vue:93
#: frontend/src/components/CourseCardOverlay.vue:86
#: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:70
#: frontend/src/pages/Profile.vue:32
msgid "Edit"
msgstr "Düzenle"
#: frontend/src/components/CourseOutline.vue:106
#: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/components/Modals/ChapterModal.vue:5
msgid "Edit Chapter"
msgstr "Bölümü Düzenle"
@@ -1533,7 +1551,7 @@ msgstr "Etkin"
#. Label of the end_date (Date) field in DocType 'Cohort'
#. Label of the end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:114 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/BatchForm.vue:122 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:282
msgid "End Date"
@@ -1551,7 +1569,7 @@ msgstr "Bitiş Tarihi (veya beklenen)"
#. Label of the end_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the end_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the end_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:128
#: frontend/src/pages/BatchForm.vue:136
#: frontend/src/pages/ProfileEvaluator.vue:18
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1587,13 +1605,15 @@ msgstr "Sonraki Eğitim Grubu için Kayıt Onayı"
msgid "Enrollment Count"
msgstr "Kayıt Sayısı"
#: lms/lms/utils.py:1683
#: lms/lms/utils.py:1692
msgid "Enrollment Failed"
msgstr ""
#. Label of the enrollments (Data) field in DocType 'LMS Course'
#. Label of a chart in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/pages/Statistics.vue:45 lms/lms/workspace/lms/lms.json
#: frontend/src/pages/Statistics.vue:45
#: lms/lms/doctype/lms_course/lms_course.json lms/lms/workspace/lms/lms.json
msgid "Enrollments"
msgstr "Kayıtlar"
@@ -1635,7 +1655,7 @@ msgid "Evaluation Details"
msgstr "Değerlendirme Detayları"
#. Label of the evaluation_end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:155
#: frontend/src/pages/BatchForm.vue:165
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:333
msgid "Evaluation End Date"
@@ -1697,6 +1717,10 @@ msgstr ""
msgid "Event"
msgstr "Etkinlik"
#: frontend/src/pages/BatchForm.vue:144
msgid "Example: IST (+5:30)"
msgstr ""
#. Label of the exercise (Link) field in DocType 'Exercise Latest Submission'
#. Label of the exercise (Link) field in DocType 'Exercise Submission'
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
@@ -1767,7 +1791,7 @@ msgstr "Başarısız"
#. Label of the featured (Check) field in DocType 'LMS Course'
#: frontend/src/components/CourseCard.vue:16
#: frontend/src/pages/CourseForm.vue:156
#: frontend/src/pages/CourseForm.vue:180
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Featured"
msgstr "Öne Çıkan"
@@ -2030,6 +2054,10 @@ msgstr "ID"
msgid "Icon"
msgstr "Simge"
#: frontend/src/components/LessonHelp.vue:68
msgid "If Include in Preview is enabled for a lesson then the lesson will also be accessible to non logged in users."
msgstr ""
#: lms/templates/emails/mentor_request_creation_email.html:5
msgid "If you are not any more interested to mentor the course"
msgstr "Kursa rehberlik etmekle artık ilgilenmiyorsanız"
@@ -2166,7 +2194,7 @@ msgstr "Eğitmen Notları"
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch'
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:77 frontend/src/pages/CourseForm.vue:123
#: frontend/src/pages/BatchForm.vue:85 frontend/src/pages/CourseForm.vue:146
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Instructors"
@@ -2311,7 +2339,7 @@ msgstr "İş İlanı Başlığı"
msgid "Jobs"
msgstr "İşler"
#: frontend/src/components/LiveClass.vue:53
#: frontend/src/components/LiveClass.vue:54
#: lms/templates/upcoming_evals.html:15
msgid "Join"
msgstr "Katıl"
@@ -2325,6 +2353,10 @@ msgstr ""
msgid "Join URL"
msgstr "Katılma Bağlantısı"
#: frontend/src/pages/CourseForm.vue:128
msgid "Keywords for the course"
msgstr ""
#. Name of a Workspace
#: lms/lms/workspace/lms/lms.json
msgid "LMS"
@@ -2578,9 +2610,11 @@ msgstr "Ders Başlığı"
#. Label of the lessons (Table) field in DocType 'Course Chapter'
#. Group in Course Chapter's connections
#. Label of the lessons (Data) field in DocType 'LMS Course'
#: frontend/src/components/CourseCard.vue:34
#: frontend/src/components/CourseCardOverlay.vue:96
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Lessons"
msgstr "Dersler"
@@ -2753,7 +2787,7 @@ msgid "Maximun Attempts"
msgstr ""
#. Label of the medium (Select) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:174
#: frontend/src/pages/BatchForm.vue:184
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:309
msgid "Medium"
@@ -2901,7 +2935,7 @@ msgid "Mentors"
msgstr "Mentorlar"
#. Label of the meta_image (Attach Image) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:53 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:36 lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:362
msgid "Meta Image"
msgstr ""
@@ -2937,11 +2971,11 @@ msgstr "Moderatör"
msgid "Modified By"
msgstr "Değiştiren"
#: lms/lms/api.py:190
#: lms/lms/api.py:191
msgid "Module Name is incorrect or does not exist."
msgstr "Modül Adı yanlış veya mevcut değil."
#: lms/lms/api.py:186
#: lms/lms/api.py:187
msgid "Module is incorrect."
msgstr "Modül hatalı."
@@ -3008,11 +3042,11 @@ msgstr ""
msgid "New Sign Up"
msgstr "Yeni Kayıt"
#: lms/lms/utils.py:613
#: lms/lms/utils.py:632
msgid "New comment in batch {0}"
msgstr "Toplu işlerde yeni yorum {0}"
#: lms/lms/utils.py:606
#: lms/lms/utils.py:625
msgid "New reply on the topic {0} in course {1}"
msgstr "{1} dersinde {0} konusuna yeni yanıt"
@@ -3050,6 +3084,10 @@ msgstr "Yaklaşan Değerlendirme Yok"
msgid "No announcements"
msgstr "Hiçbir duyuru yok"
#: frontend/src/pages/Batches.vue:125
msgid "No batches found"
msgstr ""
#: lms/templates/certificates_section.html:23
msgid "No certificates"
msgstr "Sertifika yok"
@@ -3058,6 +3096,10 @@ msgstr "Sertifika yok"
msgid "No courses created"
msgstr "Hiçbir kurs oluşturulmadı"
#: frontend/src/pages/Courses.vue:146
msgid "No courses found"
msgstr ""
#: lms/templates/courses_under_review.html:14
msgid "No courses under review"
msgstr "İncelenmekte olan kurs yok"
@@ -3070,7 +3112,7 @@ msgstr "Tanıtım yok"
msgid "No jobs posted"
msgstr "Hiçbir iş ilanı yayınlanmadı"
#: frontend/src/components/LiveClass.vue:59
#: frontend/src/components/LiveClass.vue:60
msgid "No live classes scheduled"
msgstr "Planlanmış canlı ders yok"
@@ -3086,12 +3128,12 @@ msgstr "Yaklaşan değerlendirme yok."
msgid "No {0}"
msgstr "{0} Yok"
#: frontend/src/pages/Batches.vue:88
msgid "No {0} batches found"
#: frontend/src/pages/Batches.vue:84
msgid "No {0} batches"
msgstr ""
#: frontend/src/pages/Courses.vue:110
msgid "No {0} courses found"
#: frontend/src/pages/Courses.vue:106
msgid "No {0} courses"
msgstr ""
#: lms/templates/quiz/quiz.html:147
@@ -3146,6 +3188,10 @@ msgstr "Bildirimler"
msgid "Notify me when available"
msgstr "Kullanılabilir olduğundan bana bildir"
#: frontend/src/pages/BatchForm.vue:161
msgid "Number of seats available"
msgstr ""
#. Label of the sb_00 (Section Break) field in DocType 'Zoom Settings'
#: lms/lms/doctype/zoom_settings/zoom_settings.json
msgid "OAuth Client ID"
@@ -3178,7 +3224,7 @@ msgstr "Çevrimiçi"
msgid "Only files of type {0} will be accepted."
msgstr "Sadece {0} türündeki dosyalar kabul edilecektir."
#: frontend/src/pages/CourseForm.vue:449 frontend/src/utils/index.js:509
#: frontend/src/pages/CourseForm.vue:473 frontend/src/utils/index.js:518
msgid "Only image file is allowed."
msgstr ""
@@ -3286,14 +3332,14 @@ msgid "Pages"
msgstr "Sayfalar"
#. Label of the paid_batch (Check) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:194
#: frontend/src/pages/BatchForm.vue:204
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:373
msgid "Paid Batch"
msgstr ""
#. Label of the paid_course (Check) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:181
#: frontend/src/pages/CourseForm.vue:205
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Paid Course"
msgstr "Ücretli Kurs"
@@ -3335,9 +3381,13 @@ msgstr "Başarı Yüzdesi"
msgid "Password"
msgstr "Şifre"
#: frontend/src/pages/CourseForm.vue:104
msgid "Paste the youtube link of a short video introducing the course"
msgstr ""
#. Label of the payment (Link) field in DocType 'Batch Student'
#. Label of the payment (Link) field in DocType 'LMS Enrollment'
#: frontend/src/pages/BatchForm.vue:188
#: frontend/src/pages/BatchForm.vue:198
#: lms/lms/doctype/batch_student/batch_student.json
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
msgid "Payment"
@@ -3429,7 +3479,7 @@ msgstr "Yüzde (örn. %70)"
msgid "Phone Number"
msgstr "Telefon Numarası"
#: frontend/src/components/CourseCardOverlay.vue:143
#: frontend/src/components/CourseCardOverlay.vue:141
msgid "Please Login"
msgstr ""
@@ -3490,7 +3540,7 @@ msgstr "Teste erişmek için lütfen giriş yapın."
msgid "Please login to access this page."
msgstr "Bu sayfaya erişebilmek için lütfen giriş yapın."
#: lms/lms/api.py:182
#: lms/lms/api.py:183
msgid "Please login to continue with payment."
msgstr "Ödeme işlemine devam etmek için lütfen giriş yapın."
@@ -3580,7 +3630,7 @@ msgstr ""
msgid "Preview Image"
msgstr "Resim Önizleme"
#: frontend/src/pages/CourseForm.vue:86
#: frontend/src/pages/CourseForm.vue:102
msgid "Preview Video"
msgstr "Video Önzileme"
@@ -3590,7 +3640,7 @@ msgstr "Önceki"
#. Label of the pricing_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the pricing_tab (Tab Break) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:175
#: frontend/src/pages/CourseForm.vue:199
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:368
@@ -3608,7 +3658,7 @@ msgstr ""
msgid "Primary Subgroup"
msgstr "Birincil Alt Grup"
#: lms/lms/utils.py:422
#: lms/lms/utils.py:441
msgid "Privacy Policy"
msgstr ""
@@ -3660,7 +3710,7 @@ msgstr "Katılımcı Sayfasında Yayınla"
#. Label of the published (Check) field in DocType 'LMS Batch'
#. Label of the published (Check) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:108
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:138
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:162
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:266
@@ -3673,7 +3723,7 @@ msgid "Published Courses"
msgstr "Yayınlamış Kurslar"
#. Label of the published_on (Date) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:142
#: frontend/src/pages/CourseForm.vue:166
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Published On"
msgstr "Yayınlanma Zamanı"
@@ -3794,11 +3844,13 @@ msgid "Quizzes"
msgstr ""
#. Label of the rating (Rating) field in DocType 'LMS Certificate Evaluation'
#. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:109
#: frontend/src/components/CourseCardOverlay.vue:108
#: frontend/src/components/Modals/Event.vue:86
#: frontend/src/components/Modals/ReviewModal.vue:20
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_course_review/lms_course_review.json
#: lms/templates/reviews.html:125
msgid "Rating"
@@ -3869,6 +3921,10 @@ msgstr "Reddedildi"
msgid "Related Courses"
msgstr "İlgili Kurslar"
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/CourseForm.vue:91
msgid "Remove"
msgstr "Kaldır"
#: frontend/src/components/Modals/AnnouncementModal.vue:26
msgid "Reply To"
msgstr "Yanıtla"
@@ -4024,7 +4080,7 @@ msgid "Search for an icon"
msgstr "Bir simge arayın"
#. Label of the seat_count (Int) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:149
#: frontend/src/pages/BatchForm.vue:158
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:327
msgid "Seat Count"
@@ -4068,7 +4124,7 @@ msgid "Set your Password"
msgstr "Şifrenizi Ayarlayın"
#: frontend/src/components/Modals/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:143 frontend/src/pages/CourseForm.vue:128
#: frontend/src/pages/BatchForm.vue:152 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:78
msgid "Settings"
msgstr "Ayarlar"
@@ -4078,11 +4134,15 @@ msgid "Share on"
msgstr "Paylaş"
#. Label of the short_introduction (Small Text) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:29
#: frontend/src/pages/CourseForm.vue:30
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Short Introduction"
msgstr "Kısa Tanıtım"
#: frontend/src/pages/BatchForm.vue:93
msgid "Short description of the batch"
msgstr ""
#. Label of the show_answer (Check) field in DocType 'LMS Assignment'
#: lms/lms/doctype/lms_assignment/lms_assignment.json
msgid "Show Answer"
@@ -4235,7 +4295,7 @@ msgstr "Ekip"
msgid "Stage"
msgstr "Aşama"
#: frontend/src/components/LiveClass.vue:45 frontend/src/components/Quiz.vue:65
#: frontend/src/components/LiveClass.vue:46 frontend/src/components/Quiz.vue:65
#: lms/templates/quiz/quiz.html:39
msgid "Start"
msgstr "Başlangıç"
@@ -4243,7 +4303,7 @@ msgstr "Başlangıç"
#. Label of the start_date (Date) field in DocType 'Education Detail'
#. Label of the start_date (Date) field in DocType 'LMS Batch'
#. Label of the start_date (Date) field in DocType 'LMS Batch Old'
#: frontend/src/pages/BatchForm.vue:108
#: frontend/src/pages/BatchForm.vue:116
#: lms/lms/doctype/education_detail/education_detail.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -4264,7 +4324,7 @@ msgstr "Öğrenmeye Başlayın"
#. Label of the start_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the start_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the start_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:122
#: frontend/src/pages/BatchForm.vue:130
#: frontend/src/pages/ProfileEvaluator.vue:15
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -4303,7 +4363,9 @@ msgstr ""
msgid "State"
msgstr "Durum"
#. Label of the tab_4_tab (Tab Break) field in DocType 'LMS Course'
#. Label of the statistics (Check) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:133
msgid "Statistics"
msgstr "İstatistik"
@@ -4433,7 +4495,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/CourseCardOverlay.vue:163
#: frontend/src/components/CourseCardOverlay.vue:161
#: frontend/src/components/Modals/AssessmentModal.vue:73
#: frontend/src/components/Modals/Event.vue:255
#: frontend/src/components/Modals/Event.vue:310
@@ -4507,7 +4569,7 @@ msgid "System Manager"
msgstr "Sistem Yöneticisi"
#. Label of the tags (Data) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:91
#: frontend/src/pages/CourseForm.vue:112
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Tags"
msgstr "Etiketler"
@@ -4535,7 +4597,7 @@ msgstr "Şablon"
msgid "Temporarily Disabled"
msgstr "Geçici Olarak Devre Dışı"
#: lms/lms/utils.py:421
#: lms/lms/utils.py:440
msgid "Terms of Use"
msgstr ""
@@ -4587,10 +4649,18 @@ msgstr ""
msgid "The status of your application has changed."
msgstr ""
#: frontend/src/pages/Batches.vue:129
msgid "There are no batches available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr ""
#: frontend/src/components/CreateOutline.vue:12
msgid "There are no chapters in this course. Create and manage chapters from here."
msgstr ""
#: frontend/src/pages/Courses.vue:150
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:140
msgid "There are no seats available in this batch."
msgstr ""
@@ -4622,7 +4692,7 @@ msgstr ""
msgid "This course has:"
msgstr ""
#: lms/lms/utils.py:1563
#: lms/lms/utils.py:1572
msgid "This course is free."
msgstr "Bu kurs ücretsizdir."
@@ -4691,7 +4761,7 @@ msgstr ""
#. Label of the timezone (Data) field in DocType 'LMS Certificate Request'
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/LiveClassModal.vue:44
#: frontend/src/pages/BatchForm.vue:134
#: frontend/src/pages/BatchForm.vue:142
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -4757,7 +4827,7 @@ msgstr "Bitiş Tarihi"
msgid "To Date is mandatory in Work Experience."
msgstr ""
#: lms/lms/utils.py:1574
#: lms/lms/utils.py:1583
msgid "To join this batch, please contact the Administrator."
msgstr ""
@@ -4874,7 +4944,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Cohort'
#. Label of the upcoming (Check) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:151 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/CourseForm.vue:175 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming"
msgstr "Yaklaşanlar"
@@ -4898,6 +4968,10 @@ msgstr "Güncelle"
msgid "Update Password"
msgstr "Şifreyi Güncelle"
#: frontend/src/pages/BatchForm.vue:51 frontend/src/pages/CourseForm.vue:72
msgid "Upload"
msgstr "Yükle"
#: frontend/src/pages/AssignmentSubmission.vue:69
msgid "Upload File"
msgstr "Dosya Yükle"
@@ -5020,13 +5094,17 @@ msgstr "Çarşamba"
msgid "Welcome to {0}!"
msgstr "{0} Uygulamasına Hoş Geldiniz!"
#: frontend/src/components/LessonHelp.vue:63
msgid "What does include in preview mean?"
msgstr ""
#: lms/templates/courses_under_review.html:15
msgid "When a course gets submitted for review, it will be listed here."
msgstr "Bir kurs incelenmek üzere gönderildiğinde burada listelenecektir."
#: frontend/src/pages/Billing.vue:111
msgid "Where did you hear about us?"
msgstr ""
msgstr "Bizi nereden duydunuz?"
#: lms/templates/emails/certification.html:10
msgid "With this certification, you can now showcase your updated skills and share your achievement with your colleagues and on LinkedIn. To access your certificate, please click on the link provided below. Make sure you are logged in to the portal."
@@ -5040,19 +5118,19 @@ msgstr ""
#. Label of the work_environment (Section Break) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Work Environment"
msgstr ""
msgstr "Çalışma Ortamı"
#. Label of the work_experience (Table) field in DocType 'User'
#. Name of a DocType
#: lms/fixtures/custom_field.json
#: lms/lms/doctype/work_experience/work_experience.json
msgid "Work Experience"
msgstr ""
msgstr "İş Deneyimi"
#. Label of the work_experience_details (Section Break) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Work Experience Details"
msgstr ""
msgstr "İş Deneyimi Detayları"
#: frontend/src/components/CourseReviews.vue:8
#: frontend/src/components/Modals/ReviewModal.vue:5
@@ -5073,11 +5151,11 @@ msgstr "Cevabınızı buraya yazın"
msgid "You already have an evaluation on {0} at {1} for the course {2}."
msgstr ""
#: lms/lms/api.py:206
#: lms/lms/api.py:207
msgid "You are already enrolled for this batch."
msgstr "Bu gruba zaten kayıtlısınız."
#: lms/lms/api.py:198
#: lms/lms/api.py:199
msgid "You are already enrolled for this course."
msgstr "Bu kursa zaten kayıtlısınız."
@@ -5089,6 +5167,10 @@ msgstr "Bu sınıfın üyesi değilsiniz. Lütfen yaklaşan sınıflara göz at
msgid "You are not a mentor of the course {0}"
msgstr "Kursun mentoru değilsiniz {0}"
#: frontend/src/pages/Courses.vue:134
msgid "You can add chapters and lessons to it."
msgstr "İçerisine bölümler ve dersler ekleyebilirsiniz."
#: lms/templates/emails/lms_course_interest.html:13
#: lms/templates/emails/lms_invite_request_approved.html:11
msgid "You can also copy-paste following link in your browser"
@@ -5106,50 +5188,54 @@ msgstr ""
msgid "You can find their resume attached to this email."
msgstr ""
#: frontend/src/pages/Batches.vue:113
msgid "You can link courses and assessments to it."
msgstr "Dersleri ve değerlendirmeleri buna bağlayabilirsiniz."
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:115
msgid "You cannot schedule evaluations after {0}."
msgstr ""
msgstr "{0} tarihinden sonra değerlendirme planlayamazsınız."
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:104
msgid "You cannot schedule evaluations for past slots."
msgstr ""
msgstr "Geçmiş dönemler için değerlendirme planlayamazsınız."
#: frontend/src/components/NoPermission.vue:11
msgid "You do not have permission to access this page."
msgstr ""
msgstr "Bu sayfaya erişmek için izniniz yok."
#: lms/templates/notifications.html:27
msgid "You don't have any notifications."
msgstr ""
msgstr "Herhangi bir bildiriminiz yok."
#: lms/templates/quiz/quiz.js:137
msgid "You got"
msgstr ""
msgstr "Puanın"
#: frontend/src/components/Quiz.vue:234
#, python-format
msgid "You got {0}% correct answers with a score of {1} out of {2}"
msgstr ""
msgstr "{0}% doğru cevap verdiniz ve {2} üzerinden {1} puan aldınız"
#: lms/job/doctype/lms_job_application/lms_job_application.py:22
msgid "You have already applied for this job."
msgstr ""
msgstr "Bu iş için zaten başvurdunuz."
#: frontend/src/components/Quiz.vue:70 lms/templates/quiz/quiz.html:43
msgid "You have already exceeded the maximum number of attempts allowed for this quiz."
msgstr ""
msgstr "Bu sınav için izin verilen maksimum deneme sayısını zaten aştınız."
#: lms/lms/doctype/lms_course_review/lms_course_review.py:17
msgid "You have already reviewed this course"
msgstr ""
msgstr "Bu kursa zaten yorum eklediniz"
#: frontend/src/components/BatchOverlay.vue:136
msgid "You have been enrolled in this batch"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:164
#: frontend/src/components/CourseCardOverlay.vue:162
msgid "You have been enrolled in this course"
msgstr ""
msgstr "Bu kursa zaten kayıtlısınız"
#: lms/lms/widgets/NoPreviewModal.html:12 lms/public/js/common_functions.js:126
msgid "You have opted to be notified for this course. You will receive an email when the course becomes available."
@@ -5159,7 +5245,7 @@ msgstr ""
msgid "You haven't enrolled for any courses"
msgstr "Herhangi bir kursa kaydolmadınız"
#: frontend/src/components/CourseCardOverlay.vue:144
#: frontend/src/components/CourseCardOverlay.vue:142
msgid "You need to login first to enroll for this course"
msgstr ""
@@ -5277,7 +5363,7 @@ msgstr ""
msgid "you can"
msgstr ""
#: lms/lms/api.py:731 lms/lms/api.py:739
#: lms/lms/api.py:732 lms/lms/api.py:740
msgid "{0} Settings not found"
msgstr ""
@@ -5313,7 +5399,7 @@ msgstr ""
msgid "{0} is your evaluator"
msgstr ""
#: lms/lms/utils.py:690
#: lms/lms/utils.py:709
msgid "{0} mentioned you in a comment"
msgstr ""
@@ -5321,11 +5407,11 @@ msgstr ""
msgid "{0} mentioned you in a comment in your batch."
msgstr ""
#: lms/lms/utils.py:643 lms/lms/utils.py:649
#: lms/lms/utils.py:662 lms/lms/utils.py:668
msgid "{0} mentioned you in a comment in {1}"
msgstr ""
#: lms/lms/utils.py:461
#: lms/lms/utils.py:480
msgid "{0}k"
msgstr ""

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-10-18 16:04+0000\n"
"PO-Revision-Date: 2024-10-26 11:24\n"
"POT-Creation-Date: 2024-11-01 16:04+0000\n"
"PO-Revision-Date: 2024-11-05 14:34\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Chinese Simplified\n"
"MIME-Version: 1.0\n"
@@ -62,6 +62,10 @@ msgstr ""
msgid "<span style=\"font-size: 18px;\"><b>Statistics</b></span>"
msgstr ""
#: frontend/src/pages/CourseForm.vue:32
msgid "A one line introduction to the course that appears on the course card"
msgstr ""
#: frontend/src/pages/ProfileAbout.vue:4
msgid "About"
msgstr ""
@@ -102,7 +106,6 @@ msgstr "添加"
#: frontend/src/components/CourseOutline.vue:11
#: frontend/src/components/CreateOutline.vue:18
#: frontend/src/components/Modals/ChapterModal.vue:5
#: frontend/src/components/Modals/ChapterModal.vue:9
msgid "Add Chapter"
msgstr ""
@@ -225,7 +228,7 @@ msgstr "已注册"
#. Label of the amount (Currency) field in DocType 'Web Form'
#. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the amount (Currency) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:198 lms/fixtures/custom_field.json
#: frontend/src/pages/BatchForm.vue:208 lms/fixtures/custom_field.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/public/js/common_functions.js:379
@@ -269,6 +272,14 @@ msgstr ""
msgid "Answer"
msgstr ""
#: frontend/src/pages/CourseForm.vue:76 frontend/src/pages/CourseForm.vue:94
msgid "Appears on the course card in the course list"
msgstr ""
#: frontend/src/pages/BatchForm.vue:55 frontend/src/pages/BatchForm.vue:73
msgid "Appears when the batch URL is shared on any online platform"
msgstr ""
#: frontend/src/pages/JobDetail.vue:131
msgid "Applications Received"
msgstr ""
@@ -467,7 +478,7 @@ msgid "Batch Description"
msgstr ""
#. Label of the batch_details (Text Editor) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:89 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:97 lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:349
#: lms/templates/emails/batch_confirmation.html:30
msgid "Batch Details"
@@ -634,8 +645,8 @@ msgstr ""
#. Label of the category (Link) field in DocType 'LMS Batch'
#. Label of the category (Data) field in DocType 'LMS Category'
#. Label of the category (Link) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:179 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:116 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/BatchForm.vue:189 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:139 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/JobDetail.vue:102
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json
@@ -936,7 +947,7 @@ msgstr ""
msgid "Completed"
msgstr "已完成"
#: frontend/src/pages/CourseForm.vue:168
#: frontend/src/pages/CourseForm.vue:192
msgid "Completion Certificate"
msgstr ""
@@ -986,7 +997,7 @@ msgstr ""
msgid "Contract"
msgstr "合同"
#: lms/lms/utils.py:423
#: lms/lms/utils.py:442
msgid "Cookie Policy"
msgstr ""
@@ -1107,7 +1118,7 @@ msgstr ""
msgid "Course Data"
msgstr ""
#: frontend/src/pages/CourseForm.vue:34
#: frontend/src/pages/CourseForm.vue:41
msgid "Course Description"
msgstr ""
@@ -1116,7 +1127,7 @@ msgstr ""
msgid "Course Evaluator"
msgstr ""
#: frontend/src/pages/CourseForm.vue:64
#: frontend/src/pages/CourseForm.vue:54
msgid "Course Image"
msgstr ""
@@ -1139,7 +1150,7 @@ msgid "Course Name"
msgstr ""
#. Label of the course_price (Currency) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:186
#: frontend/src/pages/CourseForm.vue:210
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Course Price"
msgstr ""
@@ -1172,7 +1183,7 @@ msgstr ""
msgid "Course already added to the batch."
msgstr ""
#: frontend/src/pages/CourseForm.vue:433
#: frontend/src/pages/CourseForm.vue:457
msgid "Course price and currency are mandatory for paid courses"
msgstr ""
@@ -1210,6 +1221,10 @@ msgstr ""
msgid "Cover Image"
msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:9
msgid "Create"
msgstr "创建"
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7
msgid "Create LMS Certificate"
msgstr ""
@@ -1218,7 +1233,11 @@ msgstr ""
msgid "Create LMS Certificate Evaluation"
msgstr ""
#: lms/templates/onboarding_header.html:19
#: frontend/src/pages/Batches.vue:110
msgid "Create a Batch"
msgstr ""
#: frontend/src/pages/Courses.vue:131 lms/templates/onboarding_header.html:19
msgid "Create a Course"
msgstr ""
@@ -1234,7 +1253,7 @@ msgstr ""
#. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course'
#. Label of the currency (Link) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:206 frontend/src/pages/CourseForm.vue:193
#: frontend/src/pages/BatchForm.vue:216 frontend/src/pages/CourseForm.vue:217
#: lms/fixtures/custom_field.json lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_payment/lms_payment.json
@@ -1292,7 +1311,7 @@ msgstr "日期"
#. Label of the section_break_glxh (Section Break) field in DocType 'LMS Live
#. Class'
#: frontend/src/pages/BatchForm.vue:102
#: frontend/src/pages/BatchForm.vue:110
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Date and Time"
msgstr ""
@@ -1340,7 +1359,6 @@ msgstr ""
#. Label of the description (Markdown Editor) field in DocType 'Cohort'
#. Label of the description (Markdown Editor) field in DocType 'Cohort
#. Subgroup'
#. Label of the description (Small Text) field in DocType 'Course Chapter'
#. Label of the description (Small Text) field in DocType 'LMS Badge'
#. Label of the description (Small Text) field in DocType 'LMS Batch'
#. Label of the description (Markdown Editor) field in DocType 'LMS Batch Old'
@@ -1349,12 +1367,11 @@ msgstr ""
#. Label of the description (Text) field in DocType 'LMS Live Class'
#. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:73
#: frontend/src/pages/BatchForm.vue:83 frontend/src/pages/JobCreation.vue:43
#: frontend/src/pages/BatchForm.vue:90 frontend/src/pages/JobCreation.vue:43
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/lms_badge/lms_badge.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -1376,7 +1393,7 @@ msgstr ""
msgid "Details"
msgstr "详细信息"
#: frontend/src/pages/CourseForm.vue:163
#: frontend/src/pages/CourseForm.vue:187
msgid "Disable Self Enrollment"
msgstr ""
@@ -1451,13 +1468,14 @@ msgstr ""
#: frontend/src/components/BatchOverlay.vue:93
#: frontend/src/components/CourseCardOverlay.vue:86
#: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:70
#: frontend/src/pages/Profile.vue:32
msgid "Edit"
msgstr "编辑"
#: frontend/src/components/CourseOutline.vue:106
#: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/components/Modals/ChapterModal.vue:5
msgid "Edit Chapter"
msgstr ""
@@ -1533,7 +1551,7 @@ msgstr "已启用"
#. Label of the end_date (Date) field in DocType 'Cohort'
#. Label of the end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:114 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/BatchForm.vue:122 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:282
msgid "End Date"
@@ -1551,7 +1569,7 @@ msgstr ""
#. Label of the end_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the end_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the end_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:128
#: frontend/src/pages/BatchForm.vue:136
#: frontend/src/pages/ProfileEvaluator.vue:18
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1587,13 +1605,15 @@ msgstr ""
msgid "Enrollment Count"
msgstr ""
#: lms/lms/utils.py:1683
#: lms/lms/utils.py:1692
msgid "Enrollment Failed"
msgstr ""
#. Label of the enrollments (Data) field in DocType 'LMS Course'
#. Label of a chart in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/pages/Statistics.vue:45 lms/lms/workspace/lms/lms.json
#: frontend/src/pages/Statistics.vue:45
#: lms/lms/doctype/lms_course/lms_course.json lms/lms/workspace/lms/lms.json
msgid "Enrollments"
msgstr ""
@@ -1635,7 +1655,7 @@ msgid "Evaluation Details"
msgstr ""
#. Label of the evaluation_end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:155
#: frontend/src/pages/BatchForm.vue:165
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:333
msgid "Evaluation End Date"
@@ -1697,6 +1717,10 @@ msgstr ""
msgid "Event"
msgstr "事件"
#: frontend/src/pages/BatchForm.vue:144
msgid "Example: IST (+5:30)"
msgstr ""
#. Label of the exercise (Link) field in DocType 'Exercise Latest Submission'
#. Label of the exercise (Link) field in DocType 'Exercise Submission'
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
@@ -1767,7 +1791,7 @@ msgstr ""
#. Label of the featured (Check) field in DocType 'LMS Course'
#: frontend/src/components/CourseCard.vue:16
#: frontend/src/pages/CourseForm.vue:156
#: frontend/src/pages/CourseForm.vue:180
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Featured"
msgstr "精选"
@@ -2030,6 +2054,10 @@ msgstr "ID"
msgid "Icon"
msgstr "图标"
#: frontend/src/components/LessonHelp.vue:68
msgid "If Include in Preview is enabled for a lesson then the lesson will also be accessible to non logged in users."
msgstr ""
#: lms/templates/emails/mentor_request_creation_email.html:5
msgid "If you are not any more interested to mentor the course"
msgstr ""
@@ -2166,7 +2194,7 @@ msgstr ""
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch'
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:77 frontend/src/pages/CourseForm.vue:123
#: frontend/src/pages/BatchForm.vue:85 frontend/src/pages/CourseForm.vue:146
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Instructors"
@@ -2311,7 +2339,7 @@ msgstr ""
msgid "Jobs"
msgstr "工作"
#: frontend/src/components/LiveClass.vue:53
#: frontend/src/components/LiveClass.vue:54
#: lms/templates/upcoming_evals.html:15
msgid "Join"
msgstr "加入"
@@ -2325,6 +2353,10 @@ msgstr ""
msgid "Join URL"
msgstr ""
#: frontend/src/pages/CourseForm.vue:128
msgid "Keywords for the course"
msgstr ""
#. Name of a Workspace
#: lms/lms/workspace/lms/lms.json
msgid "LMS"
@@ -2578,9 +2610,11 @@ msgstr ""
#. Label of the lessons (Table) field in DocType 'Course Chapter'
#. Group in Course Chapter's connections
#. Label of the lessons (Data) field in DocType 'LMS Course'
#: frontend/src/components/CourseCard.vue:34
#: frontend/src/components/CourseCardOverlay.vue:96
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Lessons"
msgstr ""
@@ -2753,7 +2787,7 @@ msgid "Maximun Attempts"
msgstr ""
#. Label of the medium (Select) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:174
#: frontend/src/pages/BatchForm.vue:184
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:309
msgid "Medium"
@@ -2901,7 +2935,7 @@ msgid "Mentors"
msgstr ""
#. Label of the meta_image (Attach Image) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:53 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:36 lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:362
msgid "Meta Image"
msgstr "元图像"
@@ -2937,11 +2971,11 @@ msgstr ""
msgid "Modified By"
msgstr "修改者"
#: lms/lms/api.py:190
#: lms/lms/api.py:191
msgid "Module Name is incorrect or does not exist."
msgstr ""
#: lms/lms/api.py:186
#: lms/lms/api.py:187
msgid "Module is incorrect."
msgstr ""
@@ -3008,11 +3042,11 @@ msgstr ""
msgid "New Sign Up"
msgstr ""
#: lms/lms/utils.py:613
#: lms/lms/utils.py:632
msgid "New comment in batch {0}"
msgstr ""
#: lms/lms/utils.py:606
#: lms/lms/utils.py:625
msgid "New reply on the topic {0} in course {1}"
msgstr ""
@@ -3050,6 +3084,10 @@ msgstr ""
msgid "No announcements"
msgstr ""
#: frontend/src/pages/Batches.vue:125
msgid "No batches found"
msgstr ""
#: lms/templates/certificates_section.html:23
msgid "No certificates"
msgstr ""
@@ -3058,6 +3096,10 @@ msgstr ""
msgid "No courses created"
msgstr ""
#: frontend/src/pages/Courses.vue:146
msgid "No courses found"
msgstr ""
#: lms/templates/courses_under_review.html:14
msgid "No courses under review"
msgstr ""
@@ -3070,7 +3112,7 @@ msgstr ""
msgid "No jobs posted"
msgstr ""
#: frontend/src/components/LiveClass.vue:59
#: frontend/src/components/LiveClass.vue:60
msgid "No live classes scheduled"
msgstr ""
@@ -3086,12 +3128,12 @@ msgstr ""
msgid "No {0}"
msgstr ""
#: frontend/src/pages/Batches.vue:88
msgid "No {0} batches found"
#: frontend/src/pages/Batches.vue:84
msgid "No {0} batches"
msgstr ""
#: frontend/src/pages/Courses.vue:110
msgid "No {0} courses found"
#: frontend/src/pages/Courses.vue:106
msgid "No {0} courses"
msgstr ""
#: lms/templates/quiz/quiz.html:147
@@ -3146,6 +3188,10 @@ msgstr "通知"
msgid "Notify me when available"
msgstr ""
#: frontend/src/pages/BatchForm.vue:161
msgid "Number of seats available"
msgstr ""
#. Label of the sb_00 (Section Break) field in DocType 'Zoom Settings'
#: lms/lms/doctype/zoom_settings/zoom_settings.json
msgid "OAuth Client ID"
@@ -3178,7 +3224,7 @@ msgstr ""
msgid "Only files of type {0} will be accepted."
msgstr ""
#: frontend/src/pages/CourseForm.vue:449 frontend/src/utils/index.js:509
#: frontend/src/pages/CourseForm.vue:473 frontend/src/utils/index.js:518
msgid "Only image file is allowed."
msgstr ""
@@ -3286,14 +3332,14 @@ msgid "Pages"
msgstr ""
#. Label of the paid_batch (Check) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:194
#: frontend/src/pages/BatchForm.vue:204
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:373
msgid "Paid Batch"
msgstr ""
#. Label of the paid_course (Check) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:181
#: frontend/src/pages/CourseForm.vue:205
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Paid Course"
msgstr ""
@@ -3335,9 +3381,13 @@ msgstr ""
msgid "Password"
msgstr "密码"
#: frontend/src/pages/CourseForm.vue:104
msgid "Paste the youtube link of a short video introducing the course"
msgstr ""
#. Label of the payment (Link) field in DocType 'Batch Student'
#. Label of the payment (Link) field in DocType 'LMS Enrollment'
#: frontend/src/pages/BatchForm.vue:188
#: frontend/src/pages/BatchForm.vue:198
#: lms/lms/doctype/batch_student/batch_student.json
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
msgid "Payment"
@@ -3429,7 +3479,7 @@ msgstr ""
msgid "Phone Number"
msgstr "电话号码"
#: frontend/src/components/CourseCardOverlay.vue:143
#: frontend/src/components/CourseCardOverlay.vue:141
msgid "Please Login"
msgstr ""
@@ -3490,7 +3540,7 @@ msgstr ""
msgid "Please login to access this page."
msgstr ""
#: lms/lms/api.py:182
#: lms/lms/api.py:183
msgid "Please login to continue with payment."
msgstr ""
@@ -3580,7 +3630,7 @@ msgstr ""
msgid "Preview Image"
msgstr ""
#: frontend/src/pages/CourseForm.vue:86
#: frontend/src/pages/CourseForm.vue:102
msgid "Preview Video"
msgstr ""
@@ -3590,7 +3640,7 @@ msgstr "以前"
#. Label of the pricing_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the pricing_tab (Tab Break) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:175
#: frontend/src/pages/CourseForm.vue:199
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:368
@@ -3608,7 +3658,7 @@ msgstr ""
msgid "Primary Subgroup"
msgstr ""
#: lms/lms/utils.py:422
#: lms/lms/utils.py:441
msgid "Privacy Policy"
msgstr ""
@@ -3660,7 +3710,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Batch'
#. Label of the published (Check) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:108
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:138
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:162
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:266
@@ -3673,7 +3723,7 @@ msgid "Published Courses"
msgstr ""
#. Label of the published_on (Date) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:142
#: frontend/src/pages/CourseForm.vue:166
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Published On"
msgstr ""
@@ -3794,11 +3844,13 @@ msgid "Quizzes"
msgstr ""
#. Label of the rating (Rating) field in DocType 'LMS Certificate Evaluation'
#. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:109
#: frontend/src/components/CourseCardOverlay.vue:108
#: frontend/src/components/Modals/Event.vue:86
#: frontend/src/components/Modals/ReviewModal.vue:20
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_course_review/lms_course_review.json
#: lms/templates/reviews.html:125
msgid "Rating"
@@ -3869,6 +3921,10 @@ msgstr ""
msgid "Related Courses"
msgstr ""
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/CourseForm.vue:91
msgid "Remove"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:26
msgid "Reply To"
msgstr ""
@@ -4024,7 +4080,7 @@ msgid "Search for an icon"
msgstr ""
#. Label of the seat_count (Int) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:149
#: frontend/src/pages/BatchForm.vue:158
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:327
msgid "Seat Count"
@@ -4068,7 +4124,7 @@ msgid "Set your Password"
msgstr ""
#: frontend/src/components/Modals/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:143 frontend/src/pages/CourseForm.vue:128
#: frontend/src/pages/BatchForm.vue:152 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:78
msgid "Settings"
msgstr "设置"
@@ -4078,11 +4134,15 @@ msgid "Share on"
msgstr ""
#. Label of the short_introduction (Small Text) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:29
#: frontend/src/pages/CourseForm.vue:30
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Short Introduction"
msgstr ""
#: frontend/src/pages/BatchForm.vue:93
msgid "Short description of the batch"
msgstr ""
#. Label of the show_answer (Check) field in DocType 'LMS Assignment'
#: lms/lms/doctype/lms_assignment/lms_assignment.json
msgid "Show Answer"
@@ -4235,7 +4295,7 @@ msgstr ""
msgid "Stage"
msgstr ""
#: frontend/src/components/LiveClass.vue:45 frontend/src/components/Quiz.vue:65
#: frontend/src/components/LiveClass.vue:46 frontend/src/components/Quiz.vue:65
#: lms/templates/quiz/quiz.html:39
msgid "Start"
msgstr "开始"
@@ -4243,7 +4303,7 @@ msgstr "开始"
#. Label of the start_date (Date) field in DocType 'Education Detail'
#. Label of the start_date (Date) field in DocType 'LMS Batch'
#. Label of the start_date (Date) field in DocType 'LMS Batch Old'
#: frontend/src/pages/BatchForm.vue:108
#: frontend/src/pages/BatchForm.vue:116
#: lms/lms/doctype/education_detail/education_detail.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -4264,7 +4324,7 @@ msgstr ""
#. Label of the start_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the start_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the start_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:122
#: frontend/src/pages/BatchForm.vue:130
#: frontend/src/pages/ProfileEvaluator.vue:15
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -4303,7 +4363,9 @@ msgstr ""
msgid "State"
msgstr "州"
#. Label of the tab_4_tab (Tab Break) field in DocType 'LMS Course'
#. Label of the statistics (Check) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:133
msgid "Statistics"
msgstr ""
@@ -4433,7 +4495,7 @@ msgstr ""
#: frontend/src/components/BatchCourses.vue:150
#: frontend/src/components/BatchOverlay.vue:135
#: frontend/src/components/BatchStudents.vue:157
#: frontend/src/components/CourseCardOverlay.vue:163
#: frontend/src/components/CourseCardOverlay.vue:161
#: frontend/src/components/Modals/AssessmentModal.vue:73
#: frontend/src/components/Modals/Event.vue:255
#: frontend/src/components/Modals/Event.vue:310
@@ -4507,7 +4569,7 @@ msgid "System Manager"
msgstr "系统管理员"
#. Label of the tags (Data) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:91
#: frontend/src/pages/CourseForm.vue:112
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Tags"
msgstr "标签"
@@ -4535,7 +4597,7 @@ msgstr "模板"
msgid "Temporarily Disabled"
msgstr "暂时禁用"
#: lms/lms/utils.py:421
#: lms/lms/utils.py:440
msgid "Terms of Use"
msgstr ""
@@ -4587,10 +4649,18 @@ msgstr ""
msgid "The status of your application has changed."
msgstr ""
#: frontend/src/pages/Batches.vue:129
msgid "There are no batches available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr ""
#: frontend/src/components/CreateOutline.vue:12
msgid "There are no chapters in this course. Create and manage chapters from here."
msgstr ""
#: frontend/src/pages/Courses.vue:150
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:140
msgid "There are no seats available in this batch."
msgstr ""
@@ -4622,7 +4692,7 @@ msgstr ""
msgid "This course has:"
msgstr ""
#: lms/lms/utils.py:1563
#: lms/lms/utils.py:1572
msgid "This course is free."
msgstr ""
@@ -4691,7 +4761,7 @@ msgstr ""
#. Label of the timezone (Data) field in DocType 'LMS Certificate Request'
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/LiveClassModal.vue:44
#: frontend/src/pages/BatchForm.vue:134
#: frontend/src/pages/BatchForm.vue:142
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -4757,7 +4827,7 @@ msgstr "至今"
msgid "To Date is mandatory in Work Experience."
msgstr ""
#: lms/lms/utils.py:1574
#: lms/lms/utils.py:1583
msgid "To join this batch, please contact the Administrator."
msgstr ""
@@ -4874,7 +4944,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Cohort'
#. Label of the upcoming (Check) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:151 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/CourseForm.vue:175 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming"
msgstr ""
@@ -4898,6 +4968,10 @@ msgstr "更新"
msgid "Update Password"
msgstr ""
#: frontend/src/pages/BatchForm.vue:51 frontend/src/pages/CourseForm.vue:72
msgid "Upload"
msgstr "上传"
#: frontend/src/pages/AssignmentSubmission.vue:69
msgid "Upload File"
msgstr ""
@@ -5020,6 +5094,10 @@ msgstr ""
msgid "Welcome to {0}!"
msgstr "欢迎{0}!"
#: frontend/src/components/LessonHelp.vue:63
msgid "What does include in preview mean?"
msgstr ""
#: lms/templates/courses_under_review.html:15
msgid "When a course gets submitted for review, it will be listed here."
msgstr ""
@@ -5073,11 +5151,11 @@ msgstr ""
msgid "You already have an evaluation on {0} at {1} for the course {2}."
msgstr ""
#: lms/lms/api.py:206
#: lms/lms/api.py:207
msgid "You are already enrolled for this batch."
msgstr ""
#: lms/lms/api.py:198
#: lms/lms/api.py:199
msgid "You are already enrolled for this course."
msgstr ""
@@ -5089,6 +5167,10 @@ msgstr ""
msgid "You are not a mentor of the course {0}"
msgstr ""
#: frontend/src/pages/Courses.vue:134
msgid "You can add chapters and lessons to it."
msgstr ""
#: lms/templates/emails/lms_course_interest.html:13
#: lms/templates/emails/lms_invite_request_approved.html:11
msgid "You can also copy-paste following link in your browser"
@@ -5106,6 +5188,10 @@ msgstr ""
msgid "You can find their resume attached to this email."
msgstr ""
#: frontend/src/pages/Batches.vue:113
msgid "You can link courses and assessments to it."
msgstr ""
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:115
msgid "You cannot schedule evaluations after {0}."
msgstr ""
@@ -5147,7 +5233,7 @@ msgstr ""
msgid "You have been enrolled in this batch"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:164
#: frontend/src/components/CourseCardOverlay.vue:162
msgid "You have been enrolled in this course"
msgstr ""
@@ -5159,7 +5245,7 @@ msgstr ""
msgid "You haven't enrolled for any courses"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:144
#: frontend/src/components/CourseCardOverlay.vue:142
msgid "You need to login first to enroll for this course"
msgstr ""
@@ -5277,7 +5363,7 @@ msgstr ""
msgid "you can"
msgstr ""
#: lms/lms/api.py:731 lms/lms/api.py:739
#: lms/lms/api.py:732 lms/lms/api.py:740
msgid "{0} Settings not found"
msgstr ""
@@ -5313,7 +5399,7 @@ msgstr ""
msgid "{0} is your evaluator"
msgstr ""
#: lms/lms/utils.py:690
#: lms/lms/utils.py:709
msgid "{0} mentioned you in a comment"
msgstr ""
@@ -5321,11 +5407,11 @@ msgstr ""
msgid "{0} mentioned you in a comment in your batch."
msgstr ""
#: lms/lms/utils.py:643 lms/lms/utils.py:649
#: lms/lms/utils.py:662 lms/lms/utils.py:668
msgid "{0} mentioned you in a comment in {1}"
msgstr ""
#: lms/lms/utils.py:461
#: lms/lms/utils.py:480
msgid "{0}k"
msgstr ""

View File

@@ -91,4 +91,5 @@ lms.patches.v2_0.fix_progress_percentage
lms.patches.v2_0.add_discussion_topic_titles
lms.patches.v2_0.sidebar_settings
lms.patches.v2_0.delete_certificate_request_notification #18-09-2024
lms.patches.v2_0.add_course_statistics #21-10-2024
lms.patches.v2_0.add_course_statistics #21-10-2024
lms.patches.v2_0.give_discussions_permissions

View File

@@ -0,0 +1,6 @@
import frappe
from lms.lms.api import give_dicussions_permission
def execute():
give_dicussions_permission()