Merge pull request #1099 from frappe/develop

chore: merge 'develop' into 'main'
This commit is contained in:
Jannat Patel
2024-11-07 09:51:07 +05:30
committed by GitHub
36 changed files with 2584 additions and 1201 deletions

View File

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

View File

@@ -10,13 +10,13 @@
:style="{ backgroundImage: 'url(\'' + encodeURI(course.image) + '\')' }" :style="{ backgroundImage: 'url(\'' + encodeURI(course.image) + '\')' }"
> >
<div <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"> <Badge v-if="course.featured" variant="subtle" theme="green" size="md">
{{ __('Featured') }} {{ __('Featured') }}
</Badge> </Badge>
<Badge <Badge
variant="outline" variant="subtle"
theme="gray" theme="gray"
size="md" size="md"
v-for="tag in course.tags" v-for="tag in course.tags"

View File

@@ -48,7 +48,7 @@
<a <a
:href="cls.join_url" :href="cls.join_url"
target="_blank" 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" /> <Video class="h-4 w-4 stroke-1.5" />
{{ __('Join') }} {{ __('Join') }}

View File

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

View File

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

View File

@@ -7,6 +7,14 @@
> >
<Breadcrumbs class="h-7" :items="breadcrumbs" /> <Breadcrumbs class="h-7" :items="breadcrumbs" />
<div class="flex items-center mt-3 md:mt-0"> <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"> <Button variant="solid" @click="submitCourse()" class="ml-2">
<span> <span>
{{ __('Save') }} {{ __('Save') }}
@@ -247,15 +255,11 @@ import {
ref, ref,
reactive, reactive,
watch, watch,
getCurrentInstance,
} from 'vue' } from 'vue'
import { import { showToast, updateDocumentTitle } from '@/utils'
convertToTitleCase,
showToast,
getFileSize,
updateDocumentTitle,
} from '@/utils'
import Link from '@/components/Controls/Link.vue' 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 { useRouter } from 'vue-router'
import CourseOutline from '@/components/CourseOutline.vue' import CourseOutline from '@/components/CourseOutline.vue'
import MultiSelect from '@/components/Controls/MultiSelect.vue' import MultiSelect from '@/components/Controls/MultiSelect.vue'
@@ -267,6 +271,8 @@ const newTag = ref('')
const router = useRouter() const router = useRouter()
const instructors = ref([]) const instructors = ref([])
const settingsStore = useSettings() const settingsStore = useSettings()
const app = getCurrentInstance()
const { $dialog } = app.appContext.config.globalProperties
const props = defineProps({ const props = defineProps({
courseName: { courseName: {
@@ -439,23 +445,37 @@ const submitCourse = () => {
} }
} }
const validateMandatoryFields = () => { const deleteCourse = createResource({
const mandatory_fields = [ url: 'lms.lms.api.delete_course',
'title', makeParams(values) {
'short_introduction', return {
'description', course: props.courseName,
'video_link',
'course_image',
]
for (const field of mandatory_fields) {
if (!course[field]) {
let fieldLabel = convertToTitleCase(field.split('_').join(' '))
return `${fieldLabel} is mandatory`
} }
} },
if (course.paid_course && (!course.course_price || !course.currency)) { onSuccess() {
return __('Course price and currency are mandatory for paid courses') 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( watch(

View File

@@ -145,7 +145,7 @@
<div class="text-xl font-medium"> <div class="text-xl font-medium">
{{ __('No courses found') }} {{ __('No courses found') }}
</div> </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!' '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> </p>
<router-link <Button v-if="user.data" @click="enrollStudent()" variant="solid">
v-if="user.data" {{ __('Start Learning') }}
:to="{ name: 'CourseDetail', params: { courseName: courseName } }" </Button>
>
<Button variant="solid">
{{ __('Start Learning') }}
</Button>
</router-link>
<Button v-else @click="redirectToLogin()"> <Button v-else @click="redirectToLogin()">
{{ __('Login') }} {{ __('Login') }}
</Button> </Button>
@@ -194,7 +189,7 @@ import { createResource, Breadcrumbs, Button } from 'frappe-ui'
import { computed, watch, inject, ref, onMounted, onBeforeUnmount } from 'vue' import { computed, watch, inject, ref, onMounted, onBeforeUnmount } from 'vue'
import CourseOutline from '@/components/CourseOutline.vue' import CourseOutline from '@/components/CourseOutline.vue'
import UserAvatar from '@/components/UserAvatar.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 { ChevronLeft, ChevronRight } from 'lucide-vue-next'
import Discussions from '@/components/Discussions.vue' import Discussions from '@/components/Discussions.vue'
import { getEditorTools, updateDocumentTitle } from '../utils' import { getEditorTools, updateDocumentTitle } from '../utils'
@@ -204,6 +199,7 @@ import CourseInstructors from '@/components/CourseInstructors.vue'
import ProgressBar from '@/components/ProgressBar.vue' import ProgressBar from '@/components/ProgressBar.vue'
const user = inject('$user') const user = inject('$user')
const router = useRouter()
const route = useRoute() const route = useRoute()
const allowDiscussions = ref(false) const allowDiscussions = ref(false)
const editor = ref(null) const editor = ref(null)
@@ -243,6 +239,10 @@ const lesson = createResource({
}, },
auto: true, auto: true,
onSuccess(data) { onSuccess(data) {
if (Object.keys(data).length === 0) {
router.push({ name: 'Courses' })
return
}
lessonProgress.value = data.membership?.progress lessonProgress.value = data.membership?.progress
if (data.content) editor.value = renderEditor('editor', data.content) if (data.content) editor.value = renderEditor('editor', data.content)
if ( if (
@@ -379,6 +379,30 @@ const allowInstructorContent = () => {
return false 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 = () => { const redirectToLogin = () => {
window.location.href = `/login?redirect-to=/lms/courses/${props.courseName}` window.location.href = `/login?redirect-to=/lms/courses/${props.courseName}`
} }

View File

@@ -47,6 +47,22 @@
</ListRows> </ListRows>
</ListView> </ListView>
</div> </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> </template>
<script setup> <script setup>
import { import {
@@ -61,7 +77,7 @@ import {
} from 'frappe-ui' } from 'frappe-ui'
import { useRouter } from 'vue-router' import { useRouter } from 'vue-router'
import { computed, inject, onMounted } from 'vue' import { computed, inject, onMounted } from 'vue'
import { Plus } from 'lucide-vue-next' import { BookOpen, Plus } from 'lucide-vue-next'
import { updateDocumentTitle } from '@/utils' import { updateDocumentTitle } from '@/utils'
const user = inject('$user') const user = inject('$user')

View File

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

View File

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

View File

@@ -490,7 +490,15 @@ def delete_sidebar_item(webpage):
@frappe.whitelist() @frappe.whitelist()
def delete_lesson(lesson, chapter): 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) frappe.db.delete("Course Lesson", lesson)
@@ -781,3 +789,88 @@ def update_course_statistics():
course.name, course.name,
{"lessons": lessons, "enrollments": enrollments, "rating": avg_rating}, {"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): class BatchStudent(Document):
pass 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 # Copyright (c) 2021, FOSS United and contributors
# For license information, please see license.txt # For license information, please see license.txt
# import frappe import frappe
from frappe.model.document import Document 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): 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.validate_timetable()
self.send_confirmation_mail() self.send_confirmation_mail()
self.validate_evaluation_end_date() self.validate_evaluation_end_date()
self.add_students_to_live_class()
def validate_batch_end_date(self): def validate_batch_end_date(self):
if self.end_date < self.start_date: if self.end_date < self.start_date:
@@ -139,6 +140,27 @@ class LMSBatch(Document):
if cint(self.seat_count) < len(self.students): if cint(self.seat_count) < len(self.students):
frappe.throw(_("There are no seats available in this batch.")) 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): def validate_timetable(self):
for schedule in self.timetable: for schedule in self.timetable:
if schedule.start_time and schedule.end_time: if schedule.start_time and schedule.end_time:

View File

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

View File

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

View File

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

View File

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

View File

@@ -503,11 +503,6 @@ def first_lesson_exists(course):
return True return True
def redirect_to_courses_list():
frappe.local.flags.redirect_location = "/lms/courses"
raise frappe.Redirect
def has_course_instructor_role(member=None): def has_course_instructor_role(member=None):
return frappe.db.get_value( return frappe.db.get_value(
"Has Role", "Has Role",
@@ -1153,6 +1148,9 @@ def get_lesson(course, chapter, lesson):
lesson_details = frappe.db.get_value( lesson_details = frappe.db.get_value(
"Course Lesson", lesson_name, ["include_in_preview", "title"], as_dict=1 "Course Lesson", lesson_name, ["include_in_preview", "title"], as_dict=1
) )
if not lesson_details:
return {}
membership = get_membership(course) membership = get_membership(course)
course_title = frappe.db.get_value("LMS Course", course, "title") course_title = frappe.db.get_value("LMS Course", course, "title")
if ( if (

View File

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

View File

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

File diff suppressed because it is too large Load Diff

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-10-18 16:04+0000\n" "POT-Creation-Date: 2024-11-01 16:04+0000\n"
"PO-Revision-Date: 2024-10-25 11:05\n" "PO-Revision-Date: 2024-11-05 14:34\n"
"Last-Translator: jannat@frappe.io\n" "Last-Translator: jannat@frappe.io\n"
"Language-Team: Esperanto\n" "Language-Team: Esperanto\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -62,6 +62,10 @@ msgstr "crwdns149196:0crwdne149196:0"
msgid "<span style=\"font-size: 18px;\"><b>Statistics</b></span>" msgid "<span style=\"font-size: 18px;\"><b>Statistics</b></span>"
msgstr "crwdns149198:0crwdne149198:0" 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 #: frontend/src/pages/ProfileAbout.vue:4
msgid "About" msgid "About"
msgstr "crwdns149200:0crwdne149200:0" msgstr "crwdns149200:0crwdne149200:0"
@@ -102,7 +106,6 @@ msgstr "crwdns149212:0crwdne149212:0"
#: frontend/src/components/CourseOutline.vue:11 #: frontend/src/components/CourseOutline.vue:11
#: frontend/src/components/CreateOutline.vue:18 #: frontend/src/components/CreateOutline.vue:18
#: frontend/src/components/Modals/ChapterModal.vue:5 #: frontend/src/components/Modals/ChapterModal.vue:5
#: frontend/src/components/Modals/ChapterModal.vue:9
msgid "Add Chapter" msgid "Add Chapter"
msgstr "crwdns149214:0crwdne149214:0" 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 'Web Form'
#. Label of the amount (Currency) field in DocType 'LMS Batch' #. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the amount (Currency) field in DocType 'LMS Payment' #. 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_batch/lms_batch.json
#: lms/lms/doctype/lms_payment/lms_payment.json #: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/public/js/common_functions.js:379 #: lms/public/js/common_functions.js:379
@@ -269,6 +272,14 @@ msgstr "crwdns149278:0crwdne149278:0"
msgid "Answer" msgid "Answer"
msgstr "crwdns149280:0crwdne149280:0" 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 #: frontend/src/pages/JobDetail.vue:131
msgid "Applications Received" msgid "Applications Received"
msgstr "crwdns149282:0crwdne149282:0" msgstr "crwdns149282:0crwdne149282:0"
@@ -467,7 +478,7 @@ msgid "Batch Description"
msgstr "crwdns149354:0crwdne149354:0" msgstr "crwdns149354:0crwdne149354:0"
#. Label of the batch_details (Text Editor) field in DocType 'LMS Batch' #. 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/public/js/common_functions.js:349
#: lms/templates/emails/batch_confirmation.html:30 #: lms/templates/emails/batch_confirmation.html:30
msgid "Batch Details" 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 (Link) field in DocType 'LMS Batch'
#. Label of the category (Data) field in DocType 'LMS Category' #. Label of the category (Data) field in DocType 'LMS Category'
#. Label of the category (Link) field in DocType 'LMS Course' #. 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/BatchForm.vue:189 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:116 frontend/src/pages/Courses.vue:17 #: frontend/src/pages/CourseForm.vue:139 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/JobDetail.vue:102 #: frontend/src/pages/JobDetail.vue:102
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_category/lms_category.json
@@ -936,7 +947,7 @@ msgstr "crwdns149518:0crwdne149518:0"
msgid "Completed" msgid "Completed"
msgstr "crwdns149520:0crwdne149520:0" msgstr "crwdns149520:0crwdne149520:0"
#: frontend/src/pages/CourseForm.vue:168 #: frontend/src/pages/CourseForm.vue:192
msgid "Completion Certificate" msgid "Completion Certificate"
msgstr "crwdns149522:0crwdne149522:0" msgstr "crwdns149522:0crwdne149522:0"
@@ -986,7 +997,7 @@ msgstr "crwdns149540:0crwdne149540:0"
msgid "Contract" msgid "Contract"
msgstr "crwdns149542:0crwdne149542:0" msgstr "crwdns149542:0crwdne149542:0"
#: lms/lms/utils.py:423 #: lms/lms/utils.py:442
msgid "Cookie Policy" msgid "Cookie Policy"
msgstr "crwdns149544:0crwdne149544:0" msgstr "crwdns149544:0crwdne149544:0"
@@ -1107,7 +1118,7 @@ msgstr "crwdns149564:0crwdne149564:0"
msgid "Course Data" msgid "Course Data"
msgstr "crwdns149566:0crwdne149566:0" msgstr "crwdns149566:0crwdne149566:0"
#: frontend/src/pages/CourseForm.vue:34 #: frontend/src/pages/CourseForm.vue:41
msgid "Course Description" msgid "Course Description"
msgstr "crwdns149568:0crwdne149568:0" msgstr "crwdns149568:0crwdne149568:0"
@@ -1116,7 +1127,7 @@ msgstr "crwdns149568:0crwdne149568:0"
msgid "Course Evaluator" msgid "Course Evaluator"
msgstr "crwdns149570:0crwdne149570:0" msgstr "crwdns149570:0crwdne149570:0"
#: frontend/src/pages/CourseForm.vue:64 #: frontend/src/pages/CourseForm.vue:54
msgid "Course Image" msgid "Course Image"
msgstr "crwdns149572:0crwdne149572:0" msgstr "crwdns149572:0crwdne149572:0"
@@ -1139,7 +1150,7 @@ msgid "Course Name"
msgstr "crwdns149580:0crwdne149580:0" msgstr "crwdns149580:0crwdne149580:0"
#. Label of the course_price (Currency) field in DocType 'LMS Course' #. 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 #: lms/lms/doctype/lms_course/lms_course.json
msgid "Course Price" msgid "Course Price"
msgstr "crwdns149582:0crwdne149582:0" msgstr "crwdns149582:0crwdne149582:0"
@@ -1172,7 +1183,7 @@ msgstr "crwdns149590:0crwdne149590:0"
msgid "Course already added to the batch." msgid "Course already added to the batch."
msgstr "crwdns149592:0crwdne149592:0" 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" msgid "Course price and currency are mandatory for paid courses"
msgstr "crwdns149594:0crwdne149594:0" msgstr "crwdns149594:0crwdne149594:0"
@@ -1210,6 +1221,10 @@ msgstr "crwdns149604:0crwdne149604:0"
msgid "Cover Image" msgid "Cover Image"
msgstr "crwdns149606:0crwdne149606:0" 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 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7
msgid "Create LMS Certificate" msgid "Create LMS Certificate"
msgstr "crwdns149608:0crwdne149608:0" msgstr "crwdns149608:0crwdne149608:0"
@@ -1218,7 +1233,11 @@ msgstr "crwdns149608:0crwdne149608:0"
msgid "Create LMS Certificate Evaluation" msgid "Create LMS Certificate Evaluation"
msgstr "crwdns149610:0crwdne149610:0" 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" msgid "Create a Course"
msgstr "crwdns149612:0crwdne149612:0" 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 Batch'
#. Label of the currency (Link) field in DocType 'LMS Course' #. Label of the currency (Link) field in DocType 'LMS Course'
#. Label of the currency (Link) field in DocType 'LMS Payment' #. 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/fixtures/custom_field.json lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_payment/lms_payment.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 #. Label of the section_break_glxh (Section Break) field in DocType 'LMS Live
#. Class' #. Class'
#: frontend/src/pages/BatchForm.vue:102 #: frontend/src/pages/BatchForm.vue:110
#: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Date and Time" msgid "Date and Time"
msgstr "crwdns149634:0crwdne149634:0" 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'
#. Label of the description (Markdown Editor) field in DocType 'Cohort #. Label of the description (Markdown Editor) field in DocType 'Cohort
#. Subgroup' #. 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 Badge'
#. Label of the description (Small Text) field in DocType 'LMS Batch' #. Label of the description (Small Text) field in DocType 'LMS Batch'
#. Label of the description (Markdown Editor) field in DocType 'LMS Batch Old' #. 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 (Text) field in DocType 'LMS Live Class'
#. Label of the description (Small Text) field in DocType 'Work Experience' #. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:73 #: 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/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.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_badge/lms_badge.json
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -1376,7 +1393,7 @@ msgstr "crwdns149652:0crwdne149652:0"
msgid "Details" msgid "Details"
msgstr "crwdns149654:0crwdne149654:0" msgstr "crwdns149654:0crwdne149654:0"
#: frontend/src/pages/CourseForm.vue:163 #: frontend/src/pages/CourseForm.vue:187
msgid "Disable Self Enrollment" msgid "Disable Self Enrollment"
msgstr "crwdns149656:0crwdne149656:0" msgstr "crwdns149656:0crwdne149656:0"
@@ -1451,13 +1468,14 @@ msgstr "crwdns149680:0crwdne149680:0"
#: frontend/src/components/BatchOverlay.vue:93 #: frontend/src/components/BatchOverlay.vue:93
#: frontend/src/components/CourseCardOverlay.vue:86 #: 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/JobDetail.vue:31 frontend/src/pages/Lesson.vue:70
#: frontend/src/pages/Profile.vue:32 #: frontend/src/pages/Profile.vue:32
msgid "Edit" msgid "Edit"
msgstr "crwdns149682:0crwdne149682:0" msgstr "crwdns149682:0crwdne149682:0"
#: frontend/src/components/CourseOutline.vue:106 #: frontend/src/components/CourseOutline.vue:106
#: frontend/src/components/Modals/ChapterModal.vue:9 #: frontend/src/components/Modals/ChapterModal.vue:5
msgid "Edit Chapter" msgid "Edit Chapter"
msgstr "crwdns149684:0crwdne149684:0" 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 'Cohort'
#. Label of the end_date (Date) field in DocType 'LMS Batch' #. 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/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:282 #: lms/public/js/common_functions.js:282
msgid "End Date" 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 Evaluation'
#. Label of the end_time (Time) field in DocType 'LMS Certificate Request' #. Label of the end_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the end_time (Time) field in DocType 'Scheduled Flow' #. 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 #: frontend/src/pages/ProfileEvaluator.vue:18
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json #: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1587,13 +1605,15 @@ msgstr "crwdns149728:0crwdne149728:0"
msgid "Enrollment Count" msgid "Enrollment Count"
msgstr "crwdns149730:0crwdne149730:0" msgstr "crwdns149730:0crwdne149730:0"
#: lms/lms/utils.py:1683 #: lms/lms/utils.py:1692
msgid "Enrollment Failed" msgid "Enrollment Failed"
msgstr "crwdns149732:0crwdne149732:0" 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 chart in the LMS Workspace
#. Label of a shortcut 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" msgid "Enrollments"
msgstr "crwdns149734:0crwdne149734:0" msgstr "crwdns149734:0crwdne149734:0"
@@ -1635,7 +1655,7 @@ msgid "Evaluation Details"
msgstr "crwdns149748:0crwdne149748:0" msgstr "crwdns149748:0crwdne149748:0"
#. Label of the evaluation_end_date (Date) field in DocType 'LMS Batch' #. 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/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:333 #: lms/public/js/common_functions.js:333
msgid "Evaluation End Date" msgid "Evaluation End Date"
@@ -1697,6 +1717,10 @@ msgstr "crwdns149764:0crwdne149764:0"
msgid "Event" msgid "Event"
msgstr "crwdns149766:0crwdne149766:0" 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 Latest Submission'
#. Label of the exercise (Link) field in DocType 'Exercise Submission' #. Label of the exercise (Link) field in DocType 'Exercise Submission'
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: 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' #. Label of the featured (Check) field in DocType 'LMS Course'
#: frontend/src/components/CourseCard.vue:16 #: 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 #: lms/lms/doctype/lms_course/lms_course.json
msgid "Featured" msgid "Featured"
msgstr "crwdns149790:0crwdne149790:0" msgstr "crwdns149790:0crwdne149790:0"
@@ -2030,6 +2054,10 @@ msgstr "crwdns149896:0crwdne149896:0"
msgid "Icon" msgid "Icon"
msgstr "crwdns149898:0crwdne149898:0" 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 #: lms/templates/emails/mentor_request_creation_email.html:5
msgid "If you are not any more interested to mentor the course" msgid "If you are not any more interested to mentor the course"
msgstr "crwdns149900:0crwdne149900:0" 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 Batch'
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course' #. 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_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "Instructors" msgid "Instructors"
@@ -2311,7 +2339,7 @@ msgstr "crwdns149992:0crwdne149992:0"
msgid "Jobs" msgid "Jobs"
msgstr "crwdns149994:0crwdne149994:0" msgstr "crwdns149994:0crwdne149994:0"
#: frontend/src/components/LiveClass.vue:53 #: frontend/src/components/LiveClass.vue:54
#: lms/templates/upcoming_evals.html:15 #: lms/templates/upcoming_evals.html:15
msgid "Join" msgid "Join"
msgstr "crwdns149996:0crwdne149996:0" msgstr "crwdns149996:0crwdne149996:0"
@@ -2325,6 +2353,10 @@ msgstr "crwdns149998:0crwdne149998:0"
msgid "Join URL" msgid "Join URL"
msgstr "crwdns150000:0crwdne150000:0" msgstr "crwdns150000:0crwdne150000:0"
#: frontend/src/pages/CourseForm.vue:128
msgid "Keywords for the course"
msgstr "crwdns151476:0crwdne151476:0"
#. Name of a Workspace #. Name of a Workspace
#: lms/lms/workspace/lms/lms.json #: lms/lms/workspace/lms/lms.json
msgid "LMS" msgid "LMS"
@@ -2578,9 +2610,11 @@ msgstr "crwdns150084:0crwdne150084:0"
#. Label of the lessons (Table) field in DocType 'Course Chapter' #. Label of the lessons (Table) field in DocType 'Course Chapter'
#. Group in Course Chapter's connections #. 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/CourseCard.vue:34
#: frontend/src/components/CourseCardOverlay.vue:96 #: frontend/src/components/CourseCardOverlay.vue:96
#: lms/lms/doctype/course_chapter/course_chapter.json #: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Lessons" msgid "Lessons"
msgstr "crwdns150086:0crwdne150086:0" msgstr "crwdns150086:0crwdne150086:0"
@@ -2753,7 +2787,7 @@ msgid "Maximun Attempts"
msgstr "crwdns150152:0crwdne150152:0" msgstr "crwdns150152:0crwdne150152:0"
#. Label of the medium (Select) field in DocType 'LMS Batch' #. 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/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:309 #: lms/public/js/common_functions.js:309
msgid "Medium" msgid "Medium"
@@ -2901,7 +2935,7 @@ msgid "Mentors"
msgstr "crwdns150188:0crwdne150188:0" msgstr "crwdns150188:0crwdne150188:0"
#. Label of the meta_image (Attach Image) field in DocType 'LMS Batch' #. 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 #: lms/public/js/common_functions.js:362
msgid "Meta Image" msgid "Meta Image"
msgstr "crwdns150190:0crwdne150190:0" msgstr "crwdns150190:0crwdne150190:0"
@@ -2937,11 +2971,11 @@ msgstr "crwdns150196:0crwdne150196:0"
msgid "Modified By" msgid "Modified By"
msgstr "crwdns150198:0crwdne150198:0" msgstr "crwdns150198:0crwdne150198:0"
#: lms/lms/api.py:190 #: lms/lms/api.py:191
msgid "Module Name is incorrect or does not exist." msgid "Module Name is incorrect or does not exist."
msgstr "crwdns150200:0crwdne150200:0" msgstr "crwdns150200:0crwdne150200:0"
#: lms/lms/api.py:186 #: lms/lms/api.py:187
msgid "Module is incorrect." msgid "Module is incorrect."
msgstr "crwdns150202:0crwdne150202:0" msgstr "crwdns150202:0crwdne150202:0"
@@ -3008,11 +3042,11 @@ msgstr "crwdns150228:0crwdne150228:0"
msgid "New Sign Up" msgid "New Sign Up"
msgstr "crwdns150230:0crwdne150230:0" msgstr "crwdns150230:0crwdne150230:0"
#: lms/lms/utils.py:613 #: lms/lms/utils.py:632
msgid "New comment in batch {0}" msgid "New comment in batch {0}"
msgstr "crwdns150232:0{0}crwdne150232: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}" msgid "New reply on the topic {0} in course {1}"
msgstr "crwdns150234:0{0}crwdnd150234:0{1}crwdne150234:0" msgstr "crwdns150234:0{0}crwdnd150234:0{1}crwdne150234:0"
@@ -3050,6 +3084,10 @@ msgstr "crwdns150248:0crwdne150248:0"
msgid "No announcements" msgid "No announcements"
msgstr "crwdns150250:0crwdne150250:0" msgstr "crwdns150250:0crwdne150250:0"
#: frontend/src/pages/Batches.vue:125
msgid "No batches found"
msgstr "crwdns151478:0crwdne151478:0"
#: lms/templates/certificates_section.html:23 #: lms/templates/certificates_section.html:23
msgid "No certificates" msgid "No certificates"
msgstr "crwdns150252:0crwdne150252:0" msgstr "crwdns150252:0crwdne150252:0"
@@ -3058,6 +3096,10 @@ msgstr "crwdns150252:0crwdne150252:0"
msgid "No courses created" msgid "No courses created"
msgstr "crwdns150254:0crwdne150254:0" 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 #: lms/templates/courses_under_review.html:14
msgid "No courses under review" msgid "No courses under review"
msgstr "crwdns150256:0crwdne150256:0" msgstr "crwdns150256:0crwdne150256:0"
@@ -3070,7 +3112,7 @@ msgstr "crwdns150258:0crwdne150258:0"
msgid "No jobs posted" msgid "No jobs posted"
msgstr "crwdns150260:0crwdne150260:0" msgstr "crwdns150260:0crwdne150260:0"
#: frontend/src/components/LiveClass.vue:59 #: frontend/src/components/LiveClass.vue:60
msgid "No live classes scheduled" msgid "No live classes scheduled"
msgstr "crwdns150262:0crwdne150262:0" msgstr "crwdns150262:0crwdne150262:0"
@@ -3086,13 +3128,13 @@ msgstr "crwdns150266:0crwdne150266:0"
msgid "No {0}" msgid "No {0}"
msgstr "crwdns150268:0{0}crwdne150268:0" msgstr "crwdns150268:0{0}crwdne150268:0"
#: frontend/src/pages/Batches.vue:88 #: frontend/src/pages/Batches.vue:84
msgid "No {0} batches found" msgid "No {0} batches"
msgstr "crwdns150270:0{0}crwdne150270:0" msgstr "crwdns151482:0{0}crwdne151482:0"
#: frontend/src/pages/Courses.vue:110 #: frontend/src/pages/Courses.vue:106
msgid "No {0} courses found" msgid "No {0} courses"
msgstr "crwdns150272:0{0}crwdne150272:0" msgstr "crwdns151484:0{0}crwdne151484:0"
#: lms/templates/quiz/quiz.html:147 #: lms/templates/quiz/quiz.html:147
msgid "No." msgid "No."
@@ -3146,6 +3188,10 @@ msgstr "crwdns150292:0crwdne150292:0"
msgid "Notify me when available" msgid "Notify me when available"
msgstr "crwdns150294:0crwdne150294:0" 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' #. Label of the sb_00 (Section Break) field in DocType 'Zoom Settings'
#: lms/lms/doctype/zoom_settings/zoom_settings.json #: lms/lms/doctype/zoom_settings/zoom_settings.json
msgid "OAuth Client ID" msgid "OAuth Client ID"
@@ -3178,7 +3224,7 @@ msgstr "crwdns150306:0crwdne150306:0"
msgid "Only files of type {0} will be accepted." msgid "Only files of type {0} will be accepted."
msgstr "crwdns150308:0{0}crwdne150308:0" 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." msgid "Only image file is allowed."
msgstr "crwdns150310:0crwdne150310:0" msgstr "crwdns150310:0crwdne150310:0"
@@ -3286,14 +3332,14 @@ msgid "Pages"
msgstr "crwdns150350:0crwdne150350:0" msgstr "crwdns150350:0crwdne150350:0"
#. Label of the paid_batch (Check) field in DocType 'LMS Batch' #. 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/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:373 #: lms/public/js/common_functions.js:373
msgid "Paid Batch" msgid "Paid Batch"
msgstr "crwdns150352:0crwdne150352:0" msgstr "crwdns150352:0crwdne150352:0"
#. Label of the paid_course (Check) field in DocType 'LMS Course' #. 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 #: lms/lms/doctype/lms_course/lms_course.json
msgid "Paid Course" msgid "Paid Course"
msgstr "crwdns150354:0crwdne150354:0" msgstr "crwdns150354:0crwdne150354:0"
@@ -3335,9 +3381,13 @@ msgstr "crwdns150364:0crwdne150364:0"
msgid "Password" msgid "Password"
msgstr "crwdns150366:0crwdne150366:0" 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 'Batch Student'
#. Label of the payment (Link) field in DocType 'LMS Enrollment' #. 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/batch_student/batch_student.json
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json #: lms/lms/doctype/lms_enrollment/lms_enrollment.json
msgid "Payment" msgid "Payment"
@@ -3429,7 +3479,7 @@ msgstr "crwdns150394:0crwdne150394:0"
msgid "Phone Number" msgid "Phone Number"
msgstr "crwdns150396:0crwdne150396:0" msgstr "crwdns150396:0crwdne150396:0"
#: frontend/src/components/CourseCardOverlay.vue:143 #: frontend/src/components/CourseCardOverlay.vue:141
msgid "Please Login" msgid "Please Login"
msgstr "crwdns150398:0crwdne150398:0" msgstr "crwdns150398:0crwdne150398:0"
@@ -3490,7 +3540,7 @@ msgstr "crwdns150424:0crwdne150424:0"
msgid "Please login to access this page." msgid "Please login to access this page."
msgstr "crwdns150426:0crwdne150426:0" msgstr "crwdns150426:0crwdne150426:0"
#: lms/lms/api.py:182 #: lms/lms/api.py:183
msgid "Please login to continue with payment." msgid "Please login to continue with payment."
msgstr "crwdns150428:0crwdne150428:0" msgstr "crwdns150428:0crwdne150428:0"
@@ -3580,7 +3630,7 @@ msgstr "crwdns150462:0crwdne150462:0"
msgid "Preview Image" msgid "Preview Image"
msgstr "crwdns150464:0crwdne150464:0" msgstr "crwdns150464:0crwdne150464:0"
#: frontend/src/pages/CourseForm.vue:86 #: frontend/src/pages/CourseForm.vue:102
msgid "Preview Video" msgid "Preview Video"
msgstr "crwdns150466:0crwdne150466:0" 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 Batch'
#. Label of the pricing_tab (Tab Break) field in DocType 'LMS Course' #. 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_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:368 #: lms/public/js/common_functions.js:368
@@ -3608,7 +3658,7 @@ msgstr "crwdns150472:0crwdne150472:0"
msgid "Primary Subgroup" msgid "Primary Subgroup"
msgstr "crwdns150474:0crwdne150474:0" msgstr "crwdns150474:0crwdne150474:0"
#: lms/lms/utils.py:422 #: lms/lms/utils.py:441
msgid "Privacy Policy" msgid "Privacy Policy"
msgstr "crwdns150476:0crwdne150476:0" 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 Batch'
#. Label of the published (Check) field in DocType 'LMS Course' #. Label of the published (Check) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:108 #: 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_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:266 #: lms/public/js/common_functions.js:266
@@ -3673,7 +3723,7 @@ msgid "Published Courses"
msgstr "crwdns150498:0crwdne150498:0" msgstr "crwdns150498:0crwdne150498:0"
#. Label of the published_on (Date) field in DocType 'LMS Course' #. 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 #: lms/lms/doctype/lms_course/lms_course.json
msgid "Published On" msgid "Published On"
msgstr "crwdns150500:0crwdne150500:0" msgstr "crwdns150500:0crwdne150500:0"
@@ -3794,11 +3844,13 @@ msgid "Quizzes"
msgstr "crwdns150542:0crwdne150542:0" msgstr "crwdns150542:0crwdne150542:0"
#. Label of the rating (Rating) field in DocType 'LMS Certificate Evaluation' #. 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' #. 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/Event.vue:86
#: frontend/src/components/Modals/ReviewModal.vue:20 #: frontend/src/components/Modals/ReviewModal.vue:20
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: 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/lms/doctype/lms_course_review/lms_course_review.json
#: lms/templates/reviews.html:125 #: lms/templates/reviews.html:125
msgid "Rating" msgid "Rating"
@@ -3869,6 +3921,10 @@ msgstr "crwdns150566:0crwdne150566:0"
msgid "Related Courses" msgid "Related Courses"
msgstr "crwdns150568:0crwdne150568:0" 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 #: frontend/src/components/Modals/AnnouncementModal.vue:26
msgid "Reply To" msgid "Reply To"
msgstr "crwdns150570:0crwdne150570:0" msgstr "crwdns150570:0crwdne150570:0"
@@ -4024,7 +4080,7 @@ msgid "Search for an icon"
msgstr "crwdns150628:0crwdne150628:0" msgstr "crwdns150628:0crwdne150628:0"
#. Label of the seat_count (Int) field in DocType 'LMS Batch' #. 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/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:327 #: lms/public/js/common_functions.js:327
msgid "Seat Count" msgid "Seat Count"
@@ -4068,7 +4124,7 @@ msgid "Set your Password"
msgstr "crwdns150646:0crwdne150646:0" msgstr "crwdns150646:0crwdne150646:0"
#: frontend/src/components/Modals/Settings.vue:7 #: 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 #: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:78
msgid "Settings" msgid "Settings"
msgstr "crwdns150648:0crwdne150648:0" msgstr "crwdns150648:0crwdne150648:0"
@@ -4078,11 +4134,15 @@ msgid "Share on"
msgstr "crwdns150650:0crwdne150650:0" msgstr "crwdns150650:0crwdne150650:0"
#. Label of the short_introduction (Small Text) field in DocType 'LMS Course' #. 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 #: lms/lms/doctype/lms_course/lms_course.json
msgid "Short Introduction" msgid "Short Introduction"
msgstr "crwdns150652:0crwdne150652:0" 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' #. Label of the show_answer (Check) field in DocType 'LMS Assignment'
#: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment/lms_assignment.json
msgid "Show Answer" msgid "Show Answer"
@@ -4235,7 +4295,7 @@ msgstr "crwdns150708:0crwdne150708:0"
msgid "Stage" msgid "Stage"
msgstr "crwdns150710:0crwdne150710:0" 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 #: lms/templates/quiz/quiz.html:39
msgid "Start" msgid "Start"
msgstr "crwdns150712:0crwdne150712:0" 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 'Education Detail'
#. Label of the start_date (Date) field in DocType 'LMS Batch' #. Label of the start_date (Date) field in DocType 'LMS Batch'
#. Label of the start_date (Date) field in DocType 'LMS Batch Old' #. 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/education_detail/education_detail.json
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.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 Evaluation'
#. Label of the start_time (Time) field in DocType 'LMS Certificate Request' #. Label of the start_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the start_time (Time) field in DocType 'Scheduled Flow' #. 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 #: frontend/src/pages/ProfileEvaluator.vue:15
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json #: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
@@ -4303,7 +4363,9 @@ msgstr "crwdns150728:0crwdne150728:0"
msgid "State" msgid "State"
msgstr "crwdns150730:0crwdne150730:0" 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' #. 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 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:133
msgid "Statistics" msgid "Statistics"
msgstr "crwdns150732:0crwdne150732:0" msgstr "crwdns150732:0crwdne150732:0"
@@ -4433,7 +4495,7 @@ msgstr "crwdns150766:0{0}crwdne150766:0"
#: frontend/src/components/BatchCourses.vue:150 #: frontend/src/components/BatchCourses.vue:150
#: frontend/src/components/BatchOverlay.vue:135 #: frontend/src/components/BatchOverlay.vue:135
#: frontend/src/components/BatchStudents.vue:157 #: 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/AssessmentModal.vue:73
#: frontend/src/components/Modals/Event.vue:255 #: frontend/src/components/Modals/Event.vue:255
#: frontend/src/components/Modals/Event.vue:310 #: frontend/src/components/Modals/Event.vue:310
@@ -4507,7 +4569,7 @@ msgid "System Manager"
msgstr "crwdns150774:0crwdne150774:0" msgstr "crwdns150774:0crwdne150774:0"
#. Label of the tags (Data) field in DocType 'LMS Course' #. 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 #: lms/lms/doctype/lms_course/lms_course.json
msgid "Tags" msgid "Tags"
msgstr "crwdns150776:0crwdne150776:0" msgstr "crwdns150776:0crwdne150776:0"
@@ -4535,7 +4597,7 @@ msgstr "crwdns150782:0crwdne150782:0"
msgid "Temporarily Disabled" msgid "Temporarily Disabled"
msgstr "crwdns150784:0crwdne150784:0" msgstr "crwdns150784:0crwdne150784:0"
#: lms/lms/utils.py:421 #: lms/lms/utils.py:440
msgid "Terms of Use" msgid "Terms of Use"
msgstr "crwdns150786:0crwdne150786:0" msgstr "crwdns150786:0crwdne150786:0"
@@ -4587,10 +4649,18 @@ msgstr "crwdns150802:0crwdne150802:0"
msgid "The status of your application has changed." msgid "The status of your application has changed."
msgstr "crwdns150804:0crwdne150804:0" 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 #: frontend/src/components/CreateOutline.vue:12
msgid "There are no chapters in this course. Create and manage chapters from here." msgid "There are no chapters in this course. Create and manage chapters from here."
msgstr "crwdns150806:0crwdne150806:0" 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 #: lms/lms/doctype/lms_batch/lms_batch.py:140
msgid "There are no seats available in this batch." msgid "There are no seats available in this batch."
msgstr "crwdns150808:0crwdne150808:0" msgstr "crwdns150808:0crwdne150808:0"
@@ -4622,7 +4692,7 @@ msgstr "crwdns150818:0crwdne150818:0"
msgid "This course has:" msgid "This course has:"
msgstr "crwdns150820:0crwdne150820:0" msgstr "crwdns150820:0crwdne150820:0"
#: lms/lms/utils.py:1563 #: lms/lms/utils.py:1572
msgid "This course is free." msgid "This course is free."
msgstr "crwdns150822:0crwdne150822:0" 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 Certificate Request'
#. Label of the timezone (Data) field in DocType 'LMS Live Class' #. Label of the timezone (Data) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/LiveClassModal.vue:44 #: 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_batch/lms_batch.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_live_class/lms_live_class.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." msgid "To Date is mandatory in Work Experience."
msgstr "crwdns150856:0crwdne150856:0" msgstr "crwdns150856:0crwdne150856:0"
#: lms/lms/utils.py:1574 #: lms/lms/utils.py:1583
msgid "To join this batch, please contact the Administrator." msgid "To join this batch, please contact the Administrator."
msgstr "crwdns150858:0crwdne150858:0" msgstr "crwdns150858:0crwdne150858:0"
@@ -4874,7 +4944,7 @@ msgstr "crwdns150898:0crwdne150898:0"
#. Option for the 'Status' (Select) field in DocType 'Cohort' #. Option for the 'Status' (Select) field in DocType 'Cohort'
#. Label of the upcoming (Check) field in DocType 'LMS Course' #. 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 #: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming" msgid "Upcoming"
msgstr "crwdns150900:0crwdne150900:0" msgstr "crwdns150900:0crwdne150900:0"
@@ -4898,6 +4968,10 @@ msgstr "crwdns150906:0crwdne150906:0"
msgid "Update Password" msgid "Update Password"
msgstr "crwdns150908:0crwdne150908:0" 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 #: frontend/src/pages/AssignmentSubmission.vue:69
msgid "Upload File" msgid "Upload File"
msgstr "crwdns150910:0crwdne150910:0" msgstr "crwdns150910:0crwdne150910:0"
@@ -5020,6 +5094,10 @@ msgstr "crwdns150954:0crwdne150954:0"
msgid "Welcome to {0}!" msgid "Welcome to {0}!"
msgstr "crwdns150956:0{0}crwdne150956: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 #: lms/templates/courses_under_review.html:15
msgid "When a course gets submitted for review, it will be listed here." msgid "When a course gets submitted for review, it will be listed here."
msgstr "crwdns150958:0crwdne150958:0" 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}." 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" 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." msgid "You are already enrolled for this batch."
msgstr "crwdns150980:0crwdne150980:0" msgstr "crwdns150980:0crwdne150980:0"
#: lms/lms/api.py:198 #: lms/lms/api.py:199
msgid "You are already enrolled for this course." msgid "You are already enrolled for this course."
msgstr "crwdns150982:0crwdne150982:0" msgstr "crwdns150982:0crwdne150982:0"
@@ -5089,6 +5167,10 @@ msgstr "crwdns150984:0crwdne150984:0"
msgid "You are not a mentor of the course {0}" msgid "You are not a mentor of the course {0}"
msgstr "crwdns150986:0{0}crwdne150986: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_course_interest.html:13
#: lms/templates/emails/lms_invite_request_approved.html:11 #: lms/templates/emails/lms_invite_request_approved.html:11
msgid "You can also copy-paste following link in your browser" 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." msgid "You can find their resume attached to this email."
msgstr "crwdns150994:0crwdne150994:0" 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 #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:115
msgid "You cannot schedule evaluations after {0}." msgid "You cannot schedule evaluations after {0}."
msgstr "crwdns150996:0{0}crwdne150996:0" msgstr "crwdns150996:0{0}crwdne150996:0"
@@ -5147,7 +5233,7 @@ msgstr "crwdns151012:0crwdne151012:0"
msgid "You have been enrolled in this batch" msgid "You have been enrolled in this batch"
msgstr "crwdns151014:0crwdne151014:0" msgstr "crwdns151014:0crwdne151014:0"
#: frontend/src/components/CourseCardOverlay.vue:164 #: frontend/src/components/CourseCardOverlay.vue:162
msgid "You have been enrolled in this course" msgid "You have been enrolled in this course"
msgstr "crwdns151016:0crwdne151016:0" msgstr "crwdns151016:0crwdne151016:0"
@@ -5159,7 +5245,7 @@ msgstr "crwdns151018:0crwdne151018:0"
msgid "You haven't enrolled for any courses" msgid "You haven't enrolled for any courses"
msgstr "crwdns151020:0crwdne151020:0" 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" msgid "You need to login first to enroll for this course"
msgstr "crwdns151022:0crwdne151022:0" msgstr "crwdns151022:0crwdne151022:0"
@@ -5277,7 +5363,7 @@ msgstr "crwdns151074:0crwdne151074:0"
msgid "you can" msgid "you can"
msgstr "crwdns151076:0crwdne151076:0" 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" msgid "{0} Settings not found"
msgstr "crwdns151078:0{0}crwdne151078:0" msgstr "crwdns151078:0{0}crwdne151078:0"
@@ -5313,7 +5399,7 @@ msgstr "crwdns151092:0{0}crwdnd151092:0{1}crwdne151092:0"
msgid "{0} is your evaluator" msgid "{0} is your evaluator"
msgstr "crwdns151094:0{0}crwdne151094:0" msgstr "crwdns151094:0{0}crwdne151094:0"
#: lms/lms/utils.py:690 #: lms/lms/utils.py:709
msgid "{0} mentioned you in a comment" msgid "{0} mentioned you in a comment"
msgstr "crwdns151096:0{0}crwdne151096:0" 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." msgid "{0} mentioned you in a comment in your batch."
msgstr "crwdns151098:0{0}crwdne151098:0" 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}" msgid "{0} mentioned you in a comment in {1}"
msgstr "crwdns151100:0{0}crwdnd151100:0{1}crwdne151100:0" msgstr "crwdns151100:0{0}crwdnd151100:0{1}crwdne151100:0"
#: lms/lms/utils.py:461 #: lms/lms/utils.py:480
msgid "{0}k" msgid "{0}k"
msgstr "crwdns151102:0{0}crwdne151102:0" msgstr "crwdns151102:0{0}crwdne151102:0"

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-10-18 16:04+0000\n" "POT-Creation-Date: 2024-11-01 16:04+0000\n"
"PO-Revision-Date: 2024-10-26 11:24\n" "PO-Revision-Date: 2024-11-05 14:33\n"
"Last-Translator: jannat@frappe.io\n" "Last-Translator: jannat@frappe.io\n"
"Language-Team: Spanish\n" "Language-Team: Spanish\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -62,6 +62,10 @@ msgstr ""
msgid "<span style=\"font-size: 18px;\"><b>Statistics</b></span>" msgid "<span style=\"font-size: 18px;\"><b>Statistics</b></span>"
msgstr "" 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 #: frontend/src/pages/ProfileAbout.vue:4
msgid "About" msgid "About"
msgstr "Acerca de" msgstr "Acerca de"
@@ -102,7 +106,6 @@ msgstr "Agregar"
#: frontend/src/components/CourseOutline.vue:11 #: frontend/src/components/CourseOutline.vue:11
#: frontend/src/components/CreateOutline.vue:18 #: frontend/src/components/CreateOutline.vue:18
#: frontend/src/components/Modals/ChapterModal.vue:5 #: frontend/src/components/Modals/ChapterModal.vue:5
#: frontend/src/components/Modals/ChapterModal.vue:9
msgid "Add Chapter" msgid "Add Chapter"
msgstr "Añadir Capítulo" msgstr "Añadir Capítulo"
@@ -225,7 +228,7 @@ msgstr "Ya está Registrado"
#. Label of the amount (Currency) field in DocType 'Web Form' #. 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 Batch'
#. Label of the amount (Currency) field in DocType 'LMS Payment' #. 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_batch/lms_batch.json
#: lms/lms/doctype/lms_payment/lms_payment.json #: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/public/js/common_functions.js:379 #: lms/public/js/common_functions.js:379
@@ -269,6 +272,14 @@ msgstr "Anuncio"
msgid "Answer" msgid "Answer"
msgstr "Respuesta" msgstr "Respuesta"
#: 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 #: frontend/src/pages/JobDetail.vue:131
msgid "Applications Received" msgid "Applications Received"
msgstr "" msgstr ""
@@ -467,7 +478,7 @@ msgid "Batch Description"
msgstr "Descripción de Lotes" msgstr "Descripción de Lotes"
#. Label of the batch_details (Text Editor) field in DocType 'LMS Batch' #. 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/public/js/common_functions.js:349
#: lms/templates/emails/batch_confirmation.html:30 #: lms/templates/emails/batch_confirmation.html:30
msgid "Batch Details" msgid "Batch Details"
@@ -634,8 +645,8 @@ msgstr ""
#. Label of the category (Link) field in DocType 'LMS Batch' #. Label of the category (Link) field in DocType 'LMS Batch'
#. Label of the category (Data) field in DocType 'LMS Category' #. Label of the category (Data) field in DocType 'LMS Category'
#. Label of the category (Link) field in DocType 'LMS Course' #. 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/BatchForm.vue:189 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:116 frontend/src/pages/Courses.vue:17 #: frontend/src/pages/CourseForm.vue:139 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/JobDetail.vue:102 #: frontend/src/pages/JobDetail.vue:102
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_category/lms_category.json
@@ -936,7 +947,7 @@ msgstr "Completar registro"
msgid "Completed" msgid "Completed"
msgstr "Completado" msgstr "Completado"
#: frontend/src/pages/CourseForm.vue:168 #: frontend/src/pages/CourseForm.vue:192
msgid "Completion Certificate" msgid "Completion Certificate"
msgstr "" msgstr ""
@@ -986,7 +997,7 @@ msgstr ""
msgid "Contract" msgid "Contract"
msgstr "Contrato" msgstr "Contrato"
#: lms/lms/utils.py:423 #: lms/lms/utils.py:442
msgid "Cookie Policy" msgid "Cookie Policy"
msgstr "Política de cookies" msgstr "Política de cookies"
@@ -1107,7 +1118,7 @@ msgstr "Creador del curso"
msgid "Course Data" msgid "Course Data"
msgstr "Datos del Curso" msgstr "Datos del Curso"
#: frontend/src/pages/CourseForm.vue:34 #: frontend/src/pages/CourseForm.vue:41
msgid "Course Description" msgid "Course Description"
msgstr "Descripción del curso" msgstr "Descripción del curso"
@@ -1116,7 +1127,7 @@ msgstr "Descripción del curso"
msgid "Course Evaluator" msgid "Course Evaluator"
msgstr "Evaluador del curso" msgstr "Evaluador del curso"
#: frontend/src/pages/CourseForm.vue:64 #: frontend/src/pages/CourseForm.vue:54
msgid "Course Image" msgid "Course Image"
msgstr "Imagen del curso" msgstr "Imagen del curso"
@@ -1139,7 +1150,7 @@ msgid "Course Name"
msgstr "Nombre del Curso" msgstr "Nombre del Curso"
#. Label of the course_price (Currency) field in DocType 'LMS Course' #. 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 #: lms/lms/doctype/lms_course/lms_course.json
msgid "Course Price" msgid "Course Price"
msgstr "Precio del curso" msgstr "Precio del curso"
@@ -1172,7 +1183,7 @@ msgstr "Título del curso"
msgid "Course already added to the batch." msgid "Course already added to the batch."
msgstr "Curso ya agregado al lote." msgstr "Curso ya agregado al lote."
#: frontend/src/pages/CourseForm.vue:433 #: frontend/src/pages/CourseForm.vue:457
msgid "Course price and currency are mandatory for paid courses" msgid "Course price and currency are mandatory for paid courses"
msgstr "" msgstr ""
@@ -1210,6 +1221,10 @@ msgstr ""
msgid "Cover Image" msgid "Cover Image"
msgstr "" msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:9
msgid "Create"
msgstr "Crear"
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7
msgid "Create LMS Certificate" msgid "Create LMS Certificate"
msgstr "Crear certificado LMS" msgstr "Crear certificado LMS"
@@ -1218,7 +1233,11 @@ msgstr "Crear certificado LMS"
msgid "Create LMS Certificate Evaluation" msgid "Create LMS Certificate Evaluation"
msgstr "Crear evaluación de certificados LMS" msgstr "Crear evaluación de certificados 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" msgid "Create a Course"
msgstr "Crear un curso" msgstr "Crear un curso"
@@ -1234,7 +1253,7 @@ msgstr ""
#. Label of the currency (Link) field in DocType 'LMS Batch' #. 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 Course'
#. Label of the currency (Link) field in DocType 'LMS Payment' #. 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/fixtures/custom_field.json lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_payment/lms_payment.json #: lms/lms/doctype/lms_payment/lms_payment.json
@@ -1292,7 +1311,7 @@ msgstr "Fecha"
#. Label of the section_break_glxh (Section Break) field in DocType 'LMS Live #. Label of the section_break_glxh (Section Break) field in DocType 'LMS Live
#. Class' #. Class'
#: frontend/src/pages/BatchForm.vue:102 #: frontend/src/pages/BatchForm.vue:110
#: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Date and Time" msgid "Date and Time"
msgstr "Fecha y hora" msgstr "Fecha y hora"
@@ -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'
#. Label of the description (Markdown Editor) field in DocType 'Cohort #. Label of the description (Markdown Editor) field in DocType 'Cohort
#. Subgroup' #. 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 Badge'
#. Label of the description (Small Text) field in DocType 'LMS Batch' #. Label of the description (Small Text) field in DocType 'LMS Batch'
#. Label of the description (Markdown Editor) field in DocType 'LMS Batch Old' #. 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 (Text) field in DocType 'LMS Live Class'
#. Label of the description (Small Text) field in DocType 'Work Experience' #. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:73 #: 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/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.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_badge/lms_badge.json
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -1376,7 +1393,7 @@ msgstr ""
msgid "Details" msgid "Details"
msgstr "Detalles" msgstr "Detalles"
#: frontend/src/pages/CourseForm.vue:163 #: frontend/src/pages/CourseForm.vue:187
msgid "Disable Self Enrollment" msgid "Disable Self Enrollment"
msgstr "Deshabilitar la autoinscripción" msgstr "Deshabilitar la autoinscripción"
@@ -1451,13 +1468,14 @@ msgstr "Correo Electrónico"
#: frontend/src/components/BatchOverlay.vue:93 #: frontend/src/components/BatchOverlay.vue:93
#: frontend/src/components/CourseCardOverlay.vue:86 #: 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/JobDetail.vue:31 frontend/src/pages/Lesson.vue:70
#: frontend/src/pages/Profile.vue:32 #: frontend/src/pages/Profile.vue:32
msgid "Edit" msgid "Edit"
msgstr "Editar" msgstr "Editar"
#: frontend/src/components/CourseOutline.vue:106 #: frontend/src/components/CourseOutline.vue:106
#: frontend/src/components/Modals/ChapterModal.vue:9 #: frontend/src/components/Modals/ChapterModal.vue:5
msgid "Edit Chapter" msgid "Edit Chapter"
msgstr "Editar capítulo" msgstr "Editar capítulo"
@@ -1533,7 +1551,7 @@ msgstr "Habilitado"
#. Label of the end_date (Date) field in DocType 'Cohort' #. Label of the end_date (Date) field in DocType 'Cohort'
#. Label of the end_date (Date) field in DocType 'LMS Batch' #. 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/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:282 #: lms/public/js/common_functions.js:282
msgid "End Date" msgid "End Date"
@@ -1551,7 +1569,7 @@ msgstr "Fecha de finalización (o esperado)"
#. Label of the end_time (Time) field in DocType 'LMS Certificate Evaluation' #. 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 'LMS Certificate Request'
#. Label of the end_time (Time) field in DocType 'Scheduled Flow' #. 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 #: frontend/src/pages/ProfileEvaluator.vue:18
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json #: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1587,13 +1605,15 @@ msgstr "Confirmación de inscripción para el próximo Lote de Entrenamiento"
msgid "Enrollment Count" msgid "Enrollment Count"
msgstr "Recuento de inscripciones" msgstr "Recuento de inscripciones"
#: lms/lms/utils.py:1683 #: lms/lms/utils.py:1692
msgid "Enrollment Failed" msgid "Enrollment Failed"
msgstr "" msgstr ""
#. Label of the enrollments (Data) field in DocType 'LMS Course'
#. Label of a chart in the LMS Workspace #. Label of a chart in the LMS Workspace
#. Label of a shortcut 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" msgid "Enrollments"
msgstr "Inscripciones" msgstr "Inscripciones"
@@ -1635,7 +1655,7 @@ msgid "Evaluation Details"
msgstr "Detalles de evaluación" msgstr "Detalles de evaluación"
#. Label of the evaluation_end_date (Date) field in DocType 'LMS Batch' #. 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/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:333 #: lms/public/js/common_functions.js:333
msgid "Evaluation End Date" msgid "Evaluation End Date"
@@ -1697,6 +1717,10 @@ msgstr ""
msgid "Event" msgid "Event"
msgstr "Evento" msgstr "Evento"
#: 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 Latest Submission'
#. Label of the exercise (Link) field in DocType 'Exercise Submission' #. Label of the exercise (Link) field in DocType 'Exercise Submission'
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
@@ -1767,7 +1791,7 @@ msgstr "Falla"
#. Label of the featured (Check) field in DocType 'LMS Course' #. Label of the featured (Check) field in DocType 'LMS Course'
#: frontend/src/components/CourseCard.vue:16 #: 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 #: lms/lms/doctype/lms_course/lms_course.json
msgid "Featured" msgid "Featured"
msgstr "Destacados" msgstr "Destacados"
@@ -2030,6 +2054,10 @@ msgstr "Identificador"
msgid "Icon" msgid "Icon"
msgstr "Icono" msgstr "Icono"
#: 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 #: lms/templates/emails/mentor_request_creation_email.html:5
msgid "If you are not any more interested to mentor the course" msgid "If you are not any more interested to mentor the course"
msgstr "Si no estás más interesado en mentorar el curso" msgstr "Si no estás más interesado en mentorar el curso"
@@ -2166,7 +2194,7 @@ msgstr "Notas del instructor"
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch' #. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch'
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course' #. 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_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "Instructors" msgid "Instructors"
@@ -2311,7 +2339,7 @@ msgstr "Título del trabajo"
msgid "Jobs" msgid "Jobs"
msgstr "Trabajos" msgstr "Trabajos"
#: frontend/src/components/LiveClass.vue:53 #: frontend/src/components/LiveClass.vue:54
#: lms/templates/upcoming_evals.html:15 #: lms/templates/upcoming_evals.html:15
msgid "Join" msgid "Join"
msgstr "Unirse" msgstr "Unirse"
@@ -2325,6 +2353,10 @@ msgstr ""
msgid "Join URL" msgid "Join URL"
msgstr "Unirse a URL" msgstr "Unirse a URL"
#: frontend/src/pages/CourseForm.vue:128
msgid "Keywords for the course"
msgstr ""
#. Name of a Workspace #. Name of a Workspace
#: lms/lms/workspace/lms/lms.json #: lms/lms/workspace/lms/lms.json
msgid "LMS" msgid "LMS"
@@ -2578,9 +2610,11 @@ msgstr "Título de la lección"
#. Label of the lessons (Table) field in DocType 'Course Chapter' #. Label of the lessons (Table) field in DocType 'Course Chapter'
#. Group in Course Chapter's connections #. 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/CourseCard.vue:34
#: frontend/src/components/CourseCardOverlay.vue:96 #: frontend/src/components/CourseCardOverlay.vue:96
#: lms/lms/doctype/course_chapter/course_chapter.json #: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Lessons" msgid "Lessons"
msgstr "Lecciones" msgstr "Lecciones"
@@ -2753,7 +2787,7 @@ msgid "Maximun Attempts"
msgstr "" msgstr ""
#. Label of the medium (Select) field in DocType 'LMS Batch' #. 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/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:309 #: lms/public/js/common_functions.js:309
msgid "Medium" msgid "Medium"
@@ -2901,7 +2935,7 @@ msgid "Mentors"
msgstr "Mentores" msgstr "Mentores"
#. Label of the meta_image (Attach Image) field in DocType 'LMS Batch' #. 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 #: lms/public/js/common_functions.js:362
msgid "Meta Image" msgid "Meta Image"
msgstr "Meta imagen" msgstr "Meta imagen"
@@ -2937,11 +2971,11 @@ msgstr "Moderador"
msgid "Modified By" msgid "Modified By"
msgstr "Modificado por" msgstr "Modificado por"
#: lms/lms/api.py:190 #: lms/lms/api.py:191
msgid "Module Name is incorrect or does not exist." msgid "Module Name is incorrect or does not exist."
msgstr "El nombre del módulo es incorrecto o no existe." msgstr "El nombre del módulo es incorrecto o no existe."
#: lms/lms/api.py:186 #: lms/lms/api.py:187
msgid "Module is incorrect." msgid "Module is incorrect."
msgstr "Módulo incorrecto." msgstr "Módulo incorrecto."
@@ -3008,11 +3042,11 @@ msgstr ""
msgid "New Sign Up" msgid "New Sign Up"
msgstr "Nueva inscripción" msgstr "Nueva inscripción"
#: lms/lms/utils.py:613 #: lms/lms/utils.py:632
msgid "New comment in batch {0}" msgid "New comment in batch {0}"
msgstr "Nuevo comentario en lote {0}" msgstr "Nuevo comentario en lote {0}"
#: lms/lms/utils.py:606 #: lms/lms/utils.py:625
msgid "New reply on the topic {0} in course {1}" msgid "New reply on the topic {0} in course {1}"
msgstr "Nueva respuesta sobre el tema {0} en curso {1}" msgstr "Nueva respuesta sobre el tema {0} en curso {1}"
@@ -3050,6 +3084,10 @@ msgstr "No hay próximas evaluaciones"
msgid "No announcements" msgid "No announcements"
msgstr "Sin anuncios" msgstr "Sin anuncios"
#: frontend/src/pages/Batches.vue:125
msgid "No batches found"
msgstr ""
#: lms/templates/certificates_section.html:23 #: lms/templates/certificates_section.html:23
msgid "No certificates" msgid "No certificates"
msgstr "No hay certificados" msgstr "No hay certificados"
@@ -3058,6 +3096,10 @@ msgstr "No hay certificados"
msgid "No courses created" msgid "No courses created"
msgstr "No hay cursos creados" msgstr "No hay cursos creados"
#: frontend/src/pages/Courses.vue:146
msgid "No courses found"
msgstr ""
#: lms/templates/courses_under_review.html:14 #: lms/templates/courses_under_review.html:14
msgid "No courses under review" msgid "No courses under review"
msgstr "No hay cursos en revisión" msgstr "No hay cursos en revisión"
@@ -3070,7 +3112,7 @@ msgstr "No hay introducción"
msgid "No jobs posted" msgid "No jobs posted"
msgstr "No hay trabajos publicados" msgstr "No hay trabajos publicados"
#: frontend/src/components/LiveClass.vue:59 #: frontend/src/components/LiveClass.vue:60
msgid "No live classes scheduled" msgid "No live classes scheduled"
msgstr "No hay clases en vivo programadas" msgstr "No hay clases en vivo programadas"
@@ -3086,12 +3128,12 @@ msgstr "No hay próximas evaluaciones."
msgid "No {0}" msgid "No {0}"
msgstr "No {0}" msgstr "No {0}"
#: frontend/src/pages/Batches.vue:88 #: frontend/src/pages/Batches.vue:84
msgid "No {0} batches found" msgid "No {0} batches"
msgstr "" msgstr ""
#: frontend/src/pages/Courses.vue:110 #: frontend/src/pages/Courses.vue:106
msgid "No {0} courses found" msgid "No {0} courses"
msgstr "" msgstr ""
#: lms/templates/quiz/quiz.html:147 #: lms/templates/quiz/quiz.html:147
@@ -3146,6 +3188,10 @@ msgstr "Notificaciones"
msgid "Notify me when available" msgid "Notify me when available"
msgstr "Avísame cuando esté disponible" msgstr "Avísame cuando esté 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' #. Label of the sb_00 (Section Break) field in DocType 'Zoom Settings'
#: lms/lms/doctype/zoom_settings/zoom_settings.json #: lms/lms/doctype/zoom_settings/zoom_settings.json
msgid "OAuth Client ID" msgid "OAuth Client ID"
@@ -3178,7 +3224,7 @@ msgstr "En línea"
msgid "Only files of type {0} will be accepted." msgid "Only files of type {0} will be accepted."
msgstr "Sólo se aceptarán archivos del tipo {0}." msgstr "Sólo se aceptarán archivos del tipo {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." msgid "Only image file is allowed."
msgstr "" msgstr ""
@@ -3286,14 +3332,14 @@ msgid "Pages"
msgstr "Páginas" msgstr "Páginas"
#. Label of the paid_batch (Check) field in DocType 'LMS Batch' #. 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/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:373 #: lms/public/js/common_functions.js:373
msgid "Paid Batch" msgid "Paid Batch"
msgstr "Lote pagó" msgstr "Lote pagó"
#. Label of the paid_course (Check) field in DocType 'LMS Course' #. 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 #: lms/lms/doctype/lms_course/lms_course.json
msgid "Paid Course" msgid "Paid Course"
msgstr "Cursos Pagos" msgstr "Cursos Pagos"
@@ -3335,9 +3381,13 @@ msgstr "Porcentaje de aprobación"
msgid "Password" msgid "Password"
msgstr "Contraseña" msgstr "Contraseña"
#: 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 'Batch Student'
#. Label of the payment (Link) field in DocType 'LMS Enrollment' #. 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/batch_student/batch_student.json
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json #: lms/lms/doctype/lms_enrollment/lms_enrollment.json
msgid "Payment" msgid "Payment"
@@ -3429,7 +3479,7 @@ msgstr "Porcentaje (por ejemplo, 70%)"
msgid "Phone Number" msgid "Phone Number"
msgstr "Número de teléfono" msgstr "Número de teléfono"
#: frontend/src/components/CourseCardOverlay.vue:143 #: frontend/src/components/CourseCardOverlay.vue:141
msgid "Please Login" msgid "Please Login"
msgstr "" msgstr ""
@@ -3490,7 +3540,7 @@ msgstr "Inicie sesión para acceder al cuestionario."
msgid "Please login to access this page." msgid "Please login to access this page."
msgstr "Por favor inicie sesión para acceder a esta página." msgstr "Por favor inicie sesión para acceder a esta página."
#: lms/lms/api.py:182 #: lms/lms/api.py:183
msgid "Please login to continue with payment." msgid "Please login to continue with payment."
msgstr "Por favor inicie sesión para continuar con el pago." msgstr "Por favor inicie sesión para continuar con el pago."
@@ -3580,7 +3630,7 @@ msgstr ""
msgid "Preview Image" msgid "Preview Image"
msgstr "Previsualizar imagen" msgstr "Previsualizar imagen"
#: frontend/src/pages/CourseForm.vue:86 #: frontend/src/pages/CourseForm.vue:102
msgid "Preview Video" msgid "Preview Video"
msgstr "Vista previa del video" msgstr "Vista previa del video"
@@ -3590,7 +3640,7 @@ msgstr "Anterior"
#. Label of the pricing_tab (Tab Break) field in DocType 'LMS Batch' #. Label of the pricing_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the pricing_tab (Tab Break) field in DocType 'LMS Course' #. 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_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:368 #: lms/public/js/common_functions.js:368
@@ -3608,7 +3658,7 @@ msgstr ""
msgid "Primary Subgroup" msgid "Primary Subgroup"
msgstr "Subgrupo primario" msgstr "Subgrupo primario"
#: lms/lms/utils.py:422 #: lms/lms/utils.py:441
msgid "Privacy Policy" msgid "Privacy Policy"
msgstr "Política de privacidad" msgstr "Política de privacidad"
@@ -3660,7 +3710,7 @@ msgstr "Publicar en la página del participante"
#. Label of the published (Check) field in DocType 'LMS Batch' #. Label of the published (Check) field in DocType 'LMS Batch'
#. Label of the published (Check) field in DocType 'LMS Course' #. Label of the published (Check) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:108 #: 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_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:266 #: lms/public/js/common_functions.js:266
@@ -3673,7 +3723,7 @@ msgid "Published Courses"
msgstr "Cursos Publicados" msgstr "Cursos Publicados"
#. Label of the published_on (Date) field in DocType 'LMS Course' #. 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 #: lms/lms/doctype/lms_course/lms_course.json
msgid "Published On" msgid "Published On"
msgstr "Publicado el" msgstr "Publicado el"
@@ -3794,11 +3844,13 @@ msgid "Quizzes"
msgstr "" msgstr ""
#. Label of the rating (Rating) field in DocType 'LMS Certificate Evaluation' #. 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' #. 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/Event.vue:86
#: frontend/src/components/Modals/ReviewModal.vue:20 #: frontend/src/components/Modals/ReviewModal.vue:20
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: 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/lms/doctype/lms_course_review/lms_course_review.json
#: lms/templates/reviews.html:125 #: lms/templates/reviews.html:125
msgid "Rating" msgid "Rating"
@@ -3869,6 +3921,10 @@ msgstr "Rechazado"
msgid "Related Courses" msgid "Related Courses"
msgstr "Cursos relacionados" msgstr "Cursos relacionados"
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/CourseForm.vue:91
msgid "Remove"
msgstr "Eliminar"
#: frontend/src/components/Modals/AnnouncementModal.vue:26 #: frontend/src/components/Modals/AnnouncementModal.vue:26
msgid "Reply To" msgid "Reply To"
msgstr "Responder a" msgstr "Responder a"
@@ -4024,7 +4080,7 @@ msgid "Search for an icon"
msgstr "Buscar un icono" msgstr "Buscar un icono"
#. Label of the seat_count (Int) field in DocType 'LMS Batch' #. 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/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:327 #: lms/public/js/common_functions.js:327
msgid "Seat Count" msgid "Seat Count"
@@ -4068,7 +4124,7 @@ msgid "Set your Password"
msgstr "Establecer Contraseña" msgstr "Establecer Contraseña"
#: frontend/src/components/Modals/Settings.vue:7 #: 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 #: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:78
msgid "Settings" msgid "Settings"
msgstr "Configuración" msgstr "Configuración"
@@ -4078,11 +4134,15 @@ msgid "Share on"
msgstr "Compartir en" msgstr "Compartir en"
#. Label of the short_introduction (Small Text) field in DocType 'LMS Course' #. 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 #: lms/lms/doctype/lms_course/lms_course.json
msgid "Short Introduction" msgid "Short Introduction"
msgstr "Breve introducción" msgstr "Breve introducción"
#: frontend/src/pages/BatchForm.vue:93
msgid "Short description of the batch"
msgstr ""
#. Label of the show_answer (Check) field in DocType 'LMS Assignment' #. Label of the show_answer (Check) field in DocType 'LMS Assignment'
#: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment/lms_assignment.json
msgid "Show Answer" msgid "Show Answer"
@@ -4235,7 +4295,7 @@ msgstr "Personal"
msgid "Stage" msgid "Stage"
msgstr "Etapa" msgstr "Etapa"
#: 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 #: lms/templates/quiz/quiz.html:39
msgid "Start" msgid "Start"
msgstr "Iniciar" msgstr "Iniciar"
@@ -4243,7 +4303,7 @@ msgstr "Iniciar"
#. Label of the start_date (Date) field in DocType 'Education Detail' #. 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'
#. Label of the start_date (Date) field in DocType 'LMS Batch Old' #. 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/education_detail/education_detail.json
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -4264,7 +4324,7 @@ msgstr "Comienza a aprender"
#. Label of the start_time (Time) field in DocType 'LMS Certificate Evaluation' #. 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 'LMS Certificate Request'
#. Label of the start_time (Time) field in DocType 'Scheduled Flow' #. 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 #: frontend/src/pages/ProfileEvaluator.vue:15
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json #: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
@@ -4303,7 +4363,9 @@ msgstr ""
msgid "State" msgid "State"
msgstr "Estado" msgstr "Estado"
#. Label of the tab_4_tab (Tab Break) field in DocType 'LMS Course'
#. Label of the statistics (Check) field in DocType 'LMS Settings' #. 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 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:133
msgid "Statistics" msgid "Statistics"
msgstr "Estadísticas" msgstr "Estadísticas"
@@ -4433,7 +4495,7 @@ msgstr "Enviado {0}"
#: frontend/src/components/BatchCourses.vue:150 #: frontend/src/components/BatchCourses.vue:150
#: frontend/src/components/BatchOverlay.vue:135 #: frontend/src/components/BatchOverlay.vue:135
#: frontend/src/components/BatchStudents.vue:157 #: 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/AssessmentModal.vue:73
#: frontend/src/components/Modals/Event.vue:255 #: frontend/src/components/Modals/Event.vue:255
#: frontend/src/components/Modals/Event.vue:310 #: frontend/src/components/Modals/Event.vue:310
@@ -4507,7 +4569,7 @@ msgid "System Manager"
msgstr "Administrador del sistema" msgstr "Administrador del sistema"
#. Label of the tags (Data) field in DocType 'LMS Course' #. 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 #: lms/lms/doctype/lms_course/lms_course.json
msgid "Tags" msgid "Tags"
msgstr "Etiquetas" msgstr "Etiquetas"
@@ -4535,7 +4597,7 @@ msgstr "Plantilla"
msgid "Temporarily Disabled" msgid "Temporarily Disabled"
msgstr "Desactivado temporalmente" msgstr "Desactivado temporalmente"
#: lms/lms/utils.py:421 #: lms/lms/utils.py:440
msgid "Terms of Use" msgid "Terms of Use"
msgstr "Términos de Uso" msgstr "Términos de Uso"
@@ -4587,10 +4649,18 @@ msgstr "La plaza ya está reservada por otro participante."
msgid "The status of your application has changed." msgid "The status of your application has changed."
msgstr "El estado de su solicitud ha cambiado." msgstr "El estado de su solicitud ha cambiado."
#: 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 #: frontend/src/components/CreateOutline.vue:12
msgid "There are no chapters in this course. Create and manage chapters from here." msgid "There are no chapters in this course. Create and manage chapters from here."
msgstr "" 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 #: lms/lms/doctype/lms_batch/lms_batch.py:140
msgid "There are no seats available in this batch." msgid "There are no seats available in this batch."
msgstr "No hay asientos disponibles en este lote." msgstr "No hay asientos disponibles en este lote."
@@ -4622,7 +4692,7 @@ msgstr "Este certificado no caduca"
msgid "This course has:" msgid "This course has:"
msgstr "" msgstr ""
#: lms/lms/utils.py:1563 #: lms/lms/utils.py:1572
msgid "This course is free." msgid "This course is free."
msgstr "Este curso es gratuito." msgstr "Este curso es gratuito."
@@ -4691,7 +4761,7 @@ msgstr "Plantilla de horario"
#. Label of the timezone (Data) field in DocType 'LMS Certificate Request' #. Label of the timezone (Data) field in DocType 'LMS Certificate Request'
#. Label of the timezone (Data) field in DocType 'LMS Live Class' #. Label of the timezone (Data) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/LiveClassModal.vue:44 #: 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_batch/lms_batch.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -4757,7 +4827,7 @@ msgstr "Hasta la fecha"
msgid "To Date is mandatory in Work Experience." msgid "To Date is mandatory in Work Experience."
msgstr "Hasta la fecha es obligatorio en Experiencia laboral." msgstr "Hasta la fecha es obligatorio en Experiencia laboral."
#: lms/lms/utils.py:1574 #: lms/lms/utils.py:1583
msgid "To join this batch, please contact the Administrator." msgid "To join this batch, please contact the Administrator."
msgstr "Para unirse a este lote, comuníquese con el Administrador." msgstr "Para unirse a este lote, comuníquese con el Administrador."
@@ -4874,7 +4944,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Cohort' #. Option for the 'Status' (Select) field in DocType 'Cohort'
#. Label of the upcoming (Check) field in DocType 'LMS Course' #. 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 #: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming" msgid "Upcoming"
msgstr "Próximamente" msgstr "Próximamente"
@@ -4898,6 +4968,10 @@ msgstr "Actualizar"
msgid "Update Password" msgid "Update Password"
msgstr "Actualizar contraseña" msgstr "Actualizar contraseña"
#: frontend/src/pages/BatchForm.vue:51 frontend/src/pages/CourseForm.vue:72
msgid "Upload"
msgstr "Subir"
#: frontend/src/pages/AssignmentSubmission.vue:69 #: frontend/src/pages/AssignmentSubmission.vue:69
msgid "Upload File" msgid "Upload File"
msgstr "Subir archivo" msgstr "Subir archivo"
@@ -5020,6 +5094,10 @@ msgstr "Miércoles"
msgid "Welcome to {0}!" msgid "Welcome to {0}!"
msgstr "Bienvenido a {0}!" msgstr "Bienvenido a {0}!"
#: frontend/src/components/LessonHelp.vue:63
msgid "What does include in preview mean?"
msgstr ""
#: lms/templates/courses_under_review.html:15 #: lms/templates/courses_under_review.html:15
msgid "When a course gets submitted for review, it will be listed here." msgid "When a course gets submitted for review, it will be listed here."
msgstr "Cuando un curso se someta a revisión, aparecerá en esta lista." msgstr "Cuando un curso se someta a revisión, aparecerá en esta lista."
@@ -5073,11 +5151,11 @@ msgstr "Escriba su respuesta aquí"
msgid "You already have an evaluation on {0} at {1} for the course {2}." msgid "You already have an evaluation on {0} at {1} for the course {2}."
msgstr "Ya tiene una evaluación en {0} en {1} para el curso {2}." msgstr "Ya tiene una evaluación en {0} en {1} para el curso {2}."
#: lms/lms/api.py:206 #: lms/lms/api.py:207
msgid "You are already enrolled for this batch." msgid "You are already enrolled for this batch."
msgstr "Ya estás inscrito en este lote." msgstr "Ya estás inscrito en este lote."
#: lms/lms/api.py:198 #: lms/lms/api.py:199
msgid "You are already enrolled for this course." msgid "You are already enrolled for this course."
msgstr "Ya estás inscrito en este curso." msgstr "Ya estás inscrito en este curso."
@@ -5089,6 +5167,10 @@ msgstr "No eres miembro de este lote. Consulte nuestros próximos lotes."
msgid "You are not a mentor of the course {0}" msgid "You are not a mentor of the course {0}"
msgstr "No eres mentor del curso {0}" msgstr "No eres mentor del curso {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_course_interest.html:13
#: lms/templates/emails/lms_invite_request_approved.html:11 #: lms/templates/emails/lms_invite_request_approved.html:11
msgid "You can also copy-paste following link in your browser" msgid "You can also copy-paste following link in your browser"
@@ -5106,6 +5188,10 @@ msgstr "Puedes intentar este cuestionario {0}."
msgid "You can find their resume attached to this email." msgid "You can find their resume attached to this email."
msgstr "Puede encontrar su currículum vitae adjunto a este correo electrónico." msgstr "Puede encontrar su currículum vitae adjunto a este correo electrónico."
#: 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 #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:115
msgid "You cannot schedule evaluations after {0}." msgid "You cannot schedule evaluations after {0}."
msgstr "No puede programar evaluaciones después de {0}." msgstr "No puede programar evaluaciones después de {0}."
@@ -5147,7 +5233,7 @@ msgstr "Ya has revisado este curso"
msgid "You have been enrolled in this batch" msgid "You have been enrolled in this batch"
msgstr "" msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:164 #: frontend/src/components/CourseCardOverlay.vue:162
msgid "You have been enrolled in this course" msgid "You have been enrolled in this course"
msgstr "" msgstr ""
@@ -5159,7 +5245,7 @@ msgstr "Has optado por recibir notificaciones sobre este curso. Recibirás un co
msgid "You haven't enrolled for any courses" msgid "You haven't enrolled for any courses"
msgstr "No te has inscrito en ningún curso" msgstr "No te has inscrito en ningún curso"
#: frontend/src/components/CourseCardOverlay.vue:144 #: frontend/src/components/CourseCardOverlay.vue:142
msgid "You need to login first to enroll for this course" msgid "You need to login first to enroll for this course"
msgstr "" msgstr ""
@@ -5277,7 +5363,7 @@ msgstr "estrellas"
msgid "you can" msgid "you can"
msgstr "puedes" msgstr "puedes"
#: 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" msgid "{0} Settings not found"
msgstr "" msgstr ""
@@ -5313,7 +5399,7 @@ msgstr "{0} ya está certificado para el curso {1}"
msgid "{0} is your evaluator" msgid "{0} is your evaluator"
msgstr "" msgstr ""
#: lms/lms/utils.py:690 #: lms/lms/utils.py:709
msgid "{0} mentioned you in a comment" msgid "{0} mentioned you in a comment"
msgstr "{0} te mencionó en un comentario" msgstr "{0} te mencionó en un comentario"
@@ -5321,11 +5407,11 @@ msgstr "{0} te mencionó en un comentario"
msgid "{0} mentioned you in a comment in your batch." msgid "{0} mentioned you in a comment in your batch."
msgstr "{0} te mencionó en un comentario en tu lote." msgstr "{0} te mencionó en un comentario en tu lote."
#: 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}" msgid "{0} mentioned you in a comment in {1}"
msgstr "{0} te mencionó en un comentario en {1}" msgstr "{0} te mencionó en un comentario en {1}"
#: lms/lms/utils.py:461 #: lms/lms/utils.py:480
msgid "{0}k" msgid "{0}k"
msgstr "{0}k" msgstr "{0}k"

View File

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

View File

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

View File

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

View File

@@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Frappe LMS VERSION\n" "Project-Id-Version: Frappe LMS VERSION\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-10-18 16:04+0000\n" "POT-Creation-Date: 2024-11-01 16:04+0000\n"
"PO-Revision-Date: 2024-10-18 16:04+0000\n" "PO-Revision-Date: 2024-11-01 16:04+0000\n"
"Last-Translator: jannat@frappe.io\n" "Last-Translator: jannat@frappe.io\n"
"Language-Team: jannat@frappe.io\n" "Language-Team: jannat@frappe.io\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -60,6 +60,10 @@ msgstr ""
msgid "<span style=\"font-size: 18px;\"><b>Statistics</b></span>" msgid "<span style=\"font-size: 18px;\"><b>Statistics</b></span>"
msgstr "" 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 #: frontend/src/pages/ProfileAbout.vue:4
msgid "About" msgid "About"
msgstr "" msgstr ""
@@ -100,7 +104,6 @@ msgstr ""
#: frontend/src/components/CourseOutline.vue:11 #: frontend/src/components/CourseOutline.vue:11
#: frontend/src/components/CreateOutline.vue:18 #: frontend/src/components/CreateOutline.vue:18
#: frontend/src/components/Modals/ChapterModal.vue:5 #: frontend/src/components/Modals/ChapterModal.vue:5
#: frontend/src/components/Modals/ChapterModal.vue:9
msgid "Add Chapter" msgid "Add Chapter"
msgstr "" msgstr ""
@@ -223,7 +226,7 @@ msgstr ""
#. Label of the amount (Currency) field in DocType 'Web Form' #. 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 Batch'
#. Label of the amount (Currency) field in DocType 'LMS Payment' #. 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_batch/lms_batch.json
#: lms/lms/doctype/lms_payment/lms_payment.json #: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/public/js/common_functions.js:379 #: lms/public/js/common_functions.js:379
@@ -267,6 +270,14 @@ msgstr ""
msgid "Answer" msgid "Answer"
msgstr "" 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 #: frontend/src/pages/JobDetail.vue:131
msgid "Applications Received" msgid "Applications Received"
msgstr "" msgstr ""
@@ -465,7 +476,7 @@ msgid "Batch Description"
msgstr "" msgstr ""
#. Label of the batch_details (Text Editor) field in DocType 'LMS Batch' #. 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/public/js/common_functions.js:349
#: lms/templates/emails/batch_confirmation.html:30 #: lms/templates/emails/batch_confirmation.html:30
msgid "Batch Details" msgid "Batch Details"
@@ -632,8 +643,8 @@ msgstr ""
#. Label of the category (Link) field in DocType 'LMS Batch' #. Label of the category (Link) field in DocType 'LMS Batch'
#. Label of the category (Data) field in DocType 'LMS Category' #. Label of the category (Data) field in DocType 'LMS Category'
#. Label of the category (Link) field in DocType 'LMS Course' #. 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/BatchForm.vue:189 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:116 frontend/src/pages/Courses.vue:17 #: frontend/src/pages/CourseForm.vue:139 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/JobDetail.vue:102 #: frontend/src/pages/JobDetail.vue:102
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_category/lms_category.json
@@ -934,7 +945,7 @@ msgstr ""
msgid "Completed" msgid "Completed"
msgstr "" msgstr ""
#: frontend/src/pages/CourseForm.vue:168 #: frontend/src/pages/CourseForm.vue:192
msgid "Completion Certificate" msgid "Completion Certificate"
msgstr "" msgstr ""
@@ -984,7 +995,7 @@ msgstr ""
msgid "Contract" msgid "Contract"
msgstr "" msgstr ""
#: lms/lms/utils.py:423 #: lms/lms/utils.py:442
msgid "Cookie Policy" msgid "Cookie Policy"
msgstr "" msgstr ""
@@ -1105,7 +1116,7 @@ msgstr ""
msgid "Course Data" msgid "Course Data"
msgstr "" msgstr ""
#: frontend/src/pages/CourseForm.vue:34 #: frontend/src/pages/CourseForm.vue:41
msgid "Course Description" msgid "Course Description"
msgstr "" msgstr ""
@@ -1114,7 +1125,7 @@ msgstr ""
msgid "Course Evaluator" msgid "Course Evaluator"
msgstr "" msgstr ""
#: frontend/src/pages/CourseForm.vue:64 #: frontend/src/pages/CourseForm.vue:54
msgid "Course Image" msgid "Course Image"
msgstr "" msgstr ""
@@ -1137,7 +1148,7 @@ msgid "Course Name"
msgstr "" msgstr ""
#. Label of the course_price (Currency) field in DocType 'LMS Course' #. 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 #: lms/lms/doctype/lms_course/lms_course.json
msgid "Course Price" msgid "Course Price"
msgstr "" msgstr ""
@@ -1170,7 +1181,7 @@ msgstr ""
msgid "Course already added to the batch." msgid "Course already added to the batch."
msgstr "" msgstr ""
#: frontend/src/pages/CourseForm.vue:433 #: frontend/src/pages/CourseForm.vue:457
msgid "Course price and currency are mandatory for paid courses" msgid "Course price and currency are mandatory for paid courses"
msgstr "" msgstr ""
@@ -1208,6 +1219,10 @@ msgstr ""
msgid "Cover Image" msgid "Cover Image"
msgstr "" msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:9
msgid "Create"
msgstr ""
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7
msgid "Create LMS Certificate" msgid "Create LMS Certificate"
msgstr "" msgstr ""
@@ -1216,7 +1231,11 @@ msgstr ""
msgid "Create LMS Certificate Evaluation" msgid "Create LMS Certificate Evaluation"
msgstr "" 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" msgid "Create a Course"
msgstr "" msgstr ""
@@ -1232,7 +1251,7 @@ msgstr ""
#. Label of the currency (Link) field in DocType 'LMS Batch' #. 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 Course'
#. Label of the currency (Link) field in DocType 'LMS Payment' #. 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/fixtures/custom_field.json lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_payment/lms_payment.json #: lms/lms/doctype/lms_payment/lms_payment.json
@@ -1290,7 +1309,7 @@ msgstr ""
#. Label of the section_break_glxh (Section Break) field in DocType 'LMS Live #. Label of the section_break_glxh (Section Break) field in DocType 'LMS Live
#. Class' #. Class'
#: frontend/src/pages/BatchForm.vue:102 #: frontend/src/pages/BatchForm.vue:110
#: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Date and Time" msgid "Date and Time"
msgstr "" msgstr ""
@@ -1338,7 +1357,6 @@ msgstr ""
#. Label of the description (Markdown Editor) field in DocType 'Cohort' #. Label of the description (Markdown Editor) field in DocType 'Cohort'
#. Label of the description (Markdown Editor) field in DocType 'Cohort #. Label of the description (Markdown Editor) field in DocType 'Cohort
#. Subgroup' #. 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 Badge'
#. Label of the description (Small Text) field in DocType 'LMS Batch' #. Label of the description (Small Text) field in DocType 'LMS Batch'
#. Label of the description (Markdown Editor) field in DocType 'LMS Batch Old' #. Label of the description (Markdown Editor) field in DocType 'LMS Batch Old'
@@ -1347,12 +1365,11 @@ msgstr ""
#. Label of the description (Text) field in DocType 'LMS Live Class' #. Label of the description (Text) field in DocType 'LMS Live Class'
#. Label of the description (Small Text) field in DocType 'Work Experience' #. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:73 #: 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/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.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_badge/lms_badge.json
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -1374,7 +1391,7 @@ msgstr ""
msgid "Details" msgid "Details"
msgstr "" msgstr ""
#: frontend/src/pages/CourseForm.vue:163 #: frontend/src/pages/CourseForm.vue:187
msgid "Disable Self Enrollment" msgid "Disable Self Enrollment"
msgstr "" msgstr ""
@@ -1449,13 +1466,14 @@ msgstr ""
#: frontend/src/components/BatchOverlay.vue:93 #: frontend/src/components/BatchOverlay.vue:93
#: frontend/src/components/CourseCardOverlay.vue:86 #: 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/JobDetail.vue:31 frontend/src/pages/Lesson.vue:70
#: frontend/src/pages/Profile.vue:32 #: frontend/src/pages/Profile.vue:32
msgid "Edit" msgid "Edit"
msgstr "" msgstr ""
#: frontend/src/components/CourseOutline.vue:106 #: frontend/src/components/CourseOutline.vue:106
#: frontend/src/components/Modals/ChapterModal.vue:9 #: frontend/src/components/Modals/ChapterModal.vue:5
msgid "Edit Chapter" msgid "Edit Chapter"
msgstr "" msgstr ""
@@ -1531,7 +1549,7 @@ msgstr ""
#. Label of the end_date (Date) field in DocType 'Cohort' #. Label of the end_date (Date) field in DocType 'Cohort'
#. Label of the end_date (Date) field in DocType 'LMS Batch' #. 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/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:282 #: lms/public/js/common_functions.js:282
msgid "End Date" msgid "End Date"
@@ -1549,7 +1567,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 Evaluation'
#. Label of the end_time (Time) field in DocType 'LMS Certificate Request' #. Label of the end_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the end_time (Time) field in DocType 'Scheduled Flow' #. 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 #: frontend/src/pages/ProfileEvaluator.vue:18
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json #: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1585,13 +1603,15 @@ msgstr ""
msgid "Enrollment Count" msgid "Enrollment Count"
msgstr "" msgstr ""
#: lms/lms/utils.py:1683 #: lms/lms/utils.py:1692
msgid "Enrollment Failed" msgid "Enrollment Failed"
msgstr "" msgstr ""
#. Label of the enrollments (Data) field in DocType 'LMS Course'
#. Label of a chart in the LMS Workspace #. Label of a chart in the LMS Workspace
#. Label of a shortcut 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" msgid "Enrollments"
msgstr "" msgstr ""
@@ -1633,7 +1653,7 @@ msgid "Evaluation Details"
msgstr "" msgstr ""
#. Label of the evaluation_end_date (Date) field in DocType 'LMS Batch' #. 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/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:333 #: lms/public/js/common_functions.js:333
msgid "Evaluation End Date" msgid "Evaluation End Date"
@@ -1695,6 +1715,10 @@ msgstr ""
msgid "Event" msgid "Event"
msgstr "" 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 Latest Submission'
#. Label of the exercise (Link) field in DocType 'Exercise Submission' #. Label of the exercise (Link) field in DocType 'Exercise Submission'
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
@@ -1765,7 +1789,7 @@ msgstr ""
#. Label of the featured (Check) field in DocType 'LMS Course' #. Label of the featured (Check) field in DocType 'LMS Course'
#: frontend/src/components/CourseCard.vue:16 #: 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 #: lms/lms/doctype/lms_course/lms_course.json
msgid "Featured" msgid "Featured"
msgstr "" msgstr ""
@@ -2028,6 +2052,10 @@ msgstr ""
msgid "Icon" msgid "Icon"
msgstr "" 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 #: lms/templates/emails/mentor_request_creation_email.html:5
msgid "If you are not any more interested to mentor the course" msgid "If you are not any more interested to mentor the course"
msgstr "" msgstr ""
@@ -2164,7 +2192,7 @@ msgstr ""
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch' #. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch'
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course' #. 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_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "Instructors" msgid "Instructors"
@@ -2309,7 +2337,7 @@ msgstr ""
msgid "Jobs" msgid "Jobs"
msgstr "" msgstr ""
#: frontend/src/components/LiveClass.vue:53 #: frontend/src/components/LiveClass.vue:54
#: lms/templates/upcoming_evals.html:15 #: lms/templates/upcoming_evals.html:15
msgid "Join" msgid "Join"
msgstr "" msgstr ""
@@ -2323,6 +2351,10 @@ msgstr ""
msgid "Join URL" msgid "Join URL"
msgstr "" msgstr ""
#: frontend/src/pages/CourseForm.vue:128
msgid "Keywords for the course"
msgstr ""
#. Name of a Workspace #. Name of a Workspace
#: lms/lms/workspace/lms/lms.json #: lms/lms/workspace/lms/lms.json
msgid "LMS" msgid "LMS"
@@ -2576,9 +2608,11 @@ msgstr ""
#. Label of the lessons (Table) field in DocType 'Course Chapter' #. Label of the lessons (Table) field in DocType 'Course Chapter'
#. Group in Course Chapter's connections #. 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/CourseCard.vue:34
#: frontend/src/components/CourseCardOverlay.vue:96 #: frontend/src/components/CourseCardOverlay.vue:96
#: lms/lms/doctype/course_chapter/course_chapter.json #: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Lessons" msgid "Lessons"
msgstr "" msgstr ""
@@ -2751,7 +2785,7 @@ msgid "Maximun Attempts"
msgstr "" msgstr ""
#. Label of the medium (Select) field in DocType 'LMS Batch' #. 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/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:309 #: lms/public/js/common_functions.js:309
msgid "Medium" msgid "Medium"
@@ -2899,7 +2933,7 @@ msgid "Mentors"
msgstr "" msgstr ""
#. Label of the meta_image (Attach Image) field in DocType 'LMS Batch' #. 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 #: lms/public/js/common_functions.js:362
msgid "Meta Image" msgid "Meta Image"
msgstr "" msgstr ""
@@ -2935,11 +2969,11 @@ msgstr ""
msgid "Modified By" msgid "Modified By"
msgstr "" msgstr ""
#: lms/lms/api.py:190 #: lms/lms/api.py:191
msgid "Module Name is incorrect or does not exist." msgid "Module Name is incorrect or does not exist."
msgstr "" msgstr ""
#: lms/lms/api.py:186 #: lms/lms/api.py:187
msgid "Module is incorrect." msgid "Module is incorrect."
msgstr "" msgstr ""
@@ -3006,11 +3040,11 @@ msgstr ""
msgid "New Sign Up" msgid "New Sign Up"
msgstr "" msgstr ""
#: lms/lms/utils.py:613 #: lms/lms/utils.py:632
msgid "New comment in batch {0}" msgid "New comment in batch {0}"
msgstr "" msgstr ""
#: lms/lms/utils.py:606 #: lms/lms/utils.py:625
msgid "New reply on the topic {0} in course {1}" msgid "New reply on the topic {0} in course {1}"
msgstr "" msgstr ""
@@ -3048,6 +3082,10 @@ msgstr ""
msgid "No announcements" msgid "No announcements"
msgstr "" msgstr ""
#: frontend/src/pages/Batches.vue:125
msgid "No batches found"
msgstr ""
#: lms/templates/certificates_section.html:23 #: lms/templates/certificates_section.html:23
msgid "No certificates" msgid "No certificates"
msgstr "" msgstr ""
@@ -3056,6 +3094,10 @@ msgstr ""
msgid "No courses created" msgid "No courses created"
msgstr "" msgstr ""
#: frontend/src/pages/Courses.vue:146
msgid "No courses found"
msgstr ""
#: lms/templates/courses_under_review.html:14 #: lms/templates/courses_under_review.html:14
msgid "No courses under review" msgid "No courses under review"
msgstr "" msgstr ""
@@ -3068,7 +3110,7 @@ msgstr ""
msgid "No jobs posted" msgid "No jobs posted"
msgstr "" msgstr ""
#: frontend/src/components/LiveClass.vue:59 #: frontend/src/components/LiveClass.vue:60
msgid "No live classes scheduled" msgid "No live classes scheduled"
msgstr "" msgstr ""
@@ -3084,12 +3126,12 @@ msgstr ""
msgid "No {0}" msgid "No {0}"
msgstr "" msgstr ""
#: frontend/src/pages/Batches.vue:88 #: frontend/src/pages/Batches.vue:84
msgid "No {0} batches found" msgid "No {0} batches"
msgstr "" msgstr ""
#: frontend/src/pages/Courses.vue:110 #: frontend/src/pages/Courses.vue:106
msgid "No {0} courses found" msgid "No {0} courses"
msgstr "" msgstr ""
#: lms/templates/quiz/quiz.html:147 #: lms/templates/quiz/quiz.html:147
@@ -3144,6 +3186,10 @@ msgstr ""
msgid "Notify me when available" msgid "Notify me when available"
msgstr "" 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' #. Label of the sb_00 (Section Break) field in DocType 'Zoom Settings'
#: lms/lms/doctype/zoom_settings/zoom_settings.json #: lms/lms/doctype/zoom_settings/zoom_settings.json
msgid "OAuth Client ID" msgid "OAuth Client ID"
@@ -3176,7 +3222,7 @@ msgstr ""
msgid "Only files of type {0} will be accepted." msgid "Only files of type {0} will be accepted."
msgstr "" 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." msgid "Only image file is allowed."
msgstr "" msgstr ""
@@ -3284,14 +3330,14 @@ msgid "Pages"
msgstr "" msgstr ""
#. Label of the paid_batch (Check) field in DocType 'LMS Batch' #. 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/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:373 #: lms/public/js/common_functions.js:373
msgid "Paid Batch" msgid "Paid Batch"
msgstr "" msgstr ""
#. Label of the paid_course (Check) field in DocType 'LMS Course' #. 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 #: lms/lms/doctype/lms_course/lms_course.json
msgid "Paid Course" msgid "Paid Course"
msgstr "" msgstr ""
@@ -3333,9 +3379,13 @@ msgstr ""
msgid "Password" msgid "Password"
msgstr "" 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 'Batch Student'
#. Label of the payment (Link) field in DocType 'LMS Enrollment' #. 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/batch_student/batch_student.json
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json #: lms/lms/doctype/lms_enrollment/lms_enrollment.json
msgid "Payment" msgid "Payment"
@@ -3427,7 +3477,7 @@ msgstr ""
msgid "Phone Number" msgid "Phone Number"
msgstr "" msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:143 #: frontend/src/components/CourseCardOverlay.vue:141
msgid "Please Login" msgid "Please Login"
msgstr "" msgstr ""
@@ -3488,7 +3538,7 @@ msgstr ""
msgid "Please login to access this page." msgid "Please login to access this page."
msgstr "" msgstr ""
#: lms/lms/api.py:182 #: lms/lms/api.py:183
msgid "Please login to continue with payment." msgid "Please login to continue with payment."
msgstr "" msgstr ""
@@ -3578,7 +3628,7 @@ msgstr ""
msgid "Preview Image" msgid "Preview Image"
msgstr "" msgstr ""
#: frontend/src/pages/CourseForm.vue:86 #: frontend/src/pages/CourseForm.vue:102
msgid "Preview Video" msgid "Preview Video"
msgstr "" msgstr ""
@@ -3588,7 +3638,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 Batch'
#. Label of the pricing_tab (Tab Break) field in DocType 'LMS Course' #. 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_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:368 #: lms/public/js/common_functions.js:368
@@ -3606,7 +3656,7 @@ msgstr ""
msgid "Primary Subgroup" msgid "Primary Subgroup"
msgstr "" msgstr ""
#: lms/lms/utils.py:422 #: lms/lms/utils.py:441
msgid "Privacy Policy" msgid "Privacy Policy"
msgstr "" msgstr ""
@@ -3658,7 +3708,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Batch' #. Label of the published (Check) field in DocType 'LMS Batch'
#. Label of the published (Check) field in DocType 'LMS Course' #. Label of the published (Check) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:108 #: 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_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:266 #: lms/public/js/common_functions.js:266
@@ -3671,7 +3721,7 @@ msgid "Published Courses"
msgstr "" msgstr ""
#. Label of the published_on (Date) field in DocType 'LMS Course' #. 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 #: lms/lms/doctype/lms_course/lms_course.json
msgid "Published On" msgid "Published On"
msgstr "" msgstr ""
@@ -3792,11 +3842,13 @@ msgid "Quizzes"
msgstr "" msgstr ""
#. Label of the rating (Rating) field in DocType 'LMS Certificate Evaluation' #. 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' #. 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/Event.vue:86
#: frontend/src/components/Modals/ReviewModal.vue:20 #: frontend/src/components/Modals/ReviewModal.vue:20
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: 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/lms/doctype/lms_course_review/lms_course_review.json
#: lms/templates/reviews.html:125 #: lms/templates/reviews.html:125
msgid "Rating" msgid "Rating"
@@ -3867,6 +3919,10 @@ msgstr ""
msgid "Related Courses" msgid "Related Courses"
msgstr "" msgstr ""
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/CourseForm.vue:91
msgid "Remove"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:26 #: frontend/src/components/Modals/AnnouncementModal.vue:26
msgid "Reply To" msgid "Reply To"
msgstr "" msgstr ""
@@ -4022,7 +4078,7 @@ msgid "Search for an icon"
msgstr "" msgstr ""
#. Label of the seat_count (Int) field in DocType 'LMS Batch' #. 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/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:327 #: lms/public/js/common_functions.js:327
msgid "Seat Count" msgid "Seat Count"
@@ -4066,7 +4122,7 @@ msgid "Set your Password"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Settings.vue:7 #: 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 #: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:78
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
@@ -4076,11 +4132,15 @@ msgid "Share on"
msgstr "" msgstr ""
#. Label of the short_introduction (Small Text) field in DocType 'LMS Course' #. 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 #: lms/lms/doctype/lms_course/lms_course.json
msgid "Short Introduction" msgid "Short Introduction"
msgstr "" 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' #. Label of the show_answer (Check) field in DocType 'LMS Assignment'
#: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment/lms_assignment.json
msgid "Show Answer" msgid "Show Answer"
@@ -4233,7 +4293,7 @@ msgstr ""
msgid "Stage" msgid "Stage"
msgstr "" 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 #: lms/templates/quiz/quiz.html:39
msgid "Start" msgid "Start"
msgstr "" msgstr ""
@@ -4241,7 +4301,7 @@ msgstr ""
#. Label of the start_date (Date) field in DocType 'Education Detail' #. 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'
#. Label of the start_date (Date) field in DocType 'LMS Batch Old' #. 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/education_detail/education_detail.json
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -4262,7 +4322,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 Evaluation'
#. Label of the start_time (Time) field in DocType 'LMS Certificate Request' #. Label of the start_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the start_time (Time) field in DocType 'Scheduled Flow' #. 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 #: frontend/src/pages/ProfileEvaluator.vue:15
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json #: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
@@ -4301,7 +4361,9 @@ msgstr ""
msgid "State" msgid "State"
msgstr "" msgstr ""
#. Label of the tab_4_tab (Tab Break) field in DocType 'LMS Course'
#. Label of the statistics (Check) field in DocType 'LMS Settings' #. 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 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:133
msgid "Statistics" msgid "Statistics"
msgstr "" msgstr ""
@@ -4431,7 +4493,7 @@ msgstr ""
#: frontend/src/components/BatchCourses.vue:150 #: frontend/src/components/BatchCourses.vue:150
#: frontend/src/components/BatchOverlay.vue:135 #: frontend/src/components/BatchOverlay.vue:135
#: frontend/src/components/BatchStudents.vue:157 #: 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/AssessmentModal.vue:73
#: frontend/src/components/Modals/Event.vue:255 #: frontend/src/components/Modals/Event.vue:255
#: frontend/src/components/Modals/Event.vue:310 #: frontend/src/components/Modals/Event.vue:310
@@ -4505,7 +4567,7 @@ msgid "System Manager"
msgstr "" msgstr ""
#. Label of the tags (Data) field in DocType 'LMS Course' #. 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 #: lms/lms/doctype/lms_course/lms_course.json
msgid "Tags" msgid "Tags"
msgstr "" msgstr ""
@@ -4533,7 +4595,7 @@ msgstr ""
msgid "Temporarily Disabled" msgid "Temporarily Disabled"
msgstr "" msgstr ""
#: lms/lms/utils.py:421 #: lms/lms/utils.py:440
msgid "Terms of Use" msgid "Terms of Use"
msgstr "" msgstr ""
@@ -4585,10 +4647,18 @@ msgstr ""
msgid "The status of your application has changed." msgid "The status of your application has changed."
msgstr "" 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 #: frontend/src/components/CreateOutline.vue:12
msgid "There are no chapters in this course. Create and manage chapters from here." msgid "There are no chapters in this course. Create and manage chapters from here."
msgstr "" 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 #: lms/lms/doctype/lms_batch/lms_batch.py:140
msgid "There are no seats available in this batch." msgid "There are no seats available in this batch."
msgstr "" msgstr ""
@@ -4620,7 +4690,7 @@ msgstr ""
msgid "This course has:" msgid "This course has:"
msgstr "" msgstr ""
#: lms/lms/utils.py:1563 #: lms/lms/utils.py:1572
msgid "This course is free." msgid "This course is free."
msgstr "" msgstr ""
@@ -4689,7 +4759,7 @@ msgstr ""
#. Label of the timezone (Data) field in DocType 'LMS Certificate Request' #. Label of the timezone (Data) field in DocType 'LMS Certificate Request'
#. Label of the timezone (Data) field in DocType 'LMS Live Class' #. Label of the timezone (Data) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/LiveClassModal.vue:44 #: 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_batch/lms_batch.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -4755,7 +4825,7 @@ msgstr ""
msgid "To Date is mandatory in Work Experience." msgid "To Date is mandatory in Work Experience."
msgstr "" msgstr ""
#: lms/lms/utils.py:1574 #: lms/lms/utils.py:1583
msgid "To join this batch, please contact the Administrator." msgid "To join this batch, please contact the Administrator."
msgstr "" msgstr ""
@@ -4872,7 +4942,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Cohort' #. Option for the 'Status' (Select) field in DocType 'Cohort'
#. Label of the upcoming (Check) field in DocType 'LMS Course' #. 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 #: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming" msgid "Upcoming"
msgstr "" msgstr ""
@@ -4896,6 +4966,10 @@ msgstr ""
msgid "Update Password" msgid "Update Password"
msgstr "" msgstr ""
#: frontend/src/pages/BatchForm.vue:51 frontend/src/pages/CourseForm.vue:72
msgid "Upload"
msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:69 #: frontend/src/pages/AssignmentSubmission.vue:69
msgid "Upload File" msgid "Upload File"
msgstr "" msgstr ""
@@ -5018,6 +5092,10 @@ msgstr ""
msgid "Welcome to {0}!" msgid "Welcome to {0}!"
msgstr "" msgstr ""
#: frontend/src/components/LessonHelp.vue:63
msgid "What does include in preview mean?"
msgstr ""
#: lms/templates/courses_under_review.html:15 #: lms/templates/courses_under_review.html:15
msgid "When a course gets submitted for review, it will be listed here." msgid "When a course gets submitted for review, it will be listed here."
msgstr "" msgstr ""
@@ -5071,11 +5149,11 @@ msgstr ""
msgid "You already have an evaluation on {0} at {1} for the course {2}." msgid "You already have an evaluation on {0} at {1} for the course {2}."
msgstr "" msgstr ""
#: lms/lms/api.py:206 #: lms/lms/api.py:207
msgid "You are already enrolled for this batch." msgid "You are already enrolled for this batch."
msgstr "" msgstr ""
#: lms/lms/api.py:198 #: lms/lms/api.py:199
msgid "You are already enrolled for this course." msgid "You are already enrolled for this course."
msgstr "" msgstr ""
@@ -5087,6 +5165,10 @@ msgstr ""
msgid "You are not a mentor of the course {0}" msgid "You are not a mentor of the course {0}"
msgstr "" 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_course_interest.html:13
#: lms/templates/emails/lms_invite_request_approved.html:11 #: lms/templates/emails/lms_invite_request_approved.html:11
msgid "You can also copy-paste following link in your browser" msgid "You can also copy-paste following link in your browser"
@@ -5104,6 +5186,10 @@ msgstr ""
msgid "You can find their resume attached to this email." msgid "You can find their resume attached to this email."
msgstr "" 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 #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:115
msgid "You cannot schedule evaluations after {0}." msgid "You cannot schedule evaluations after {0}."
msgstr "" msgstr ""
@@ -5145,7 +5231,7 @@ msgstr ""
msgid "You have been enrolled in this batch" msgid "You have been enrolled in this batch"
msgstr "" msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:164 #: frontend/src/components/CourseCardOverlay.vue:162
msgid "You have been enrolled in this course" msgid "You have been enrolled in this course"
msgstr "" msgstr ""
@@ -5157,7 +5243,7 @@ msgstr ""
msgid "You haven't enrolled for any courses" msgid "You haven't enrolled for any courses"
msgstr "" msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:144 #: frontend/src/components/CourseCardOverlay.vue:142
msgid "You need to login first to enroll for this course" msgid "You need to login first to enroll for this course"
msgstr "" msgstr ""
@@ -5275,7 +5361,7 @@ msgstr ""
msgid "you can" msgid "you can"
msgstr "" 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" msgid "{0} Settings not found"
msgstr "" msgstr ""
@@ -5311,7 +5397,7 @@ msgstr ""
msgid "{0} is your evaluator" msgid "{0} is your evaluator"
msgstr "" msgstr ""
#: lms/lms/utils.py:690 #: lms/lms/utils.py:709
msgid "{0} mentioned you in a comment" msgid "{0} mentioned you in a comment"
msgstr "" msgstr ""
@@ -5319,11 +5405,11 @@ msgstr ""
msgid "{0} mentioned you in a comment in your batch." msgid "{0} mentioned you in a comment in your batch."
msgstr "" 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}" msgid "{0} mentioned you in a comment in {1}"
msgstr "" msgstr ""
#: lms/lms/utils.py:461 #: lms/lms/utils.py:480
msgid "{0}k" msgid "{0}k"
msgstr "" msgstr ""

View File

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

View File

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

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-10-18 16:04+0000\n" "POT-Creation-Date: 2024-11-01 16:04+0000\n"
"PO-Revision-Date: 2024-10-26 11:24\n" "PO-Revision-Date: 2024-11-05 14:34\n"
"Last-Translator: jannat@frappe.io\n" "Last-Translator: jannat@frappe.io\n"
"Language-Team: Swedish\n" "Language-Team: Swedish\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -62,6 +62,10 @@ msgstr "Inställningar"
msgid "<span style=\"font-size: 18px;\"><b>Statistics</b></span>" msgid "<span style=\"font-size: 18px;\"><b>Statistics</b></span>"
msgstr "<span style=\"font-size: 18px;\"><b>Statistik</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 #: frontend/src/pages/ProfileAbout.vue:4
msgid "About" msgid "About"
msgstr "Om" msgstr "Om"
@@ -102,7 +106,6 @@ msgstr "Lägg till"
#: frontend/src/components/CourseOutline.vue:11 #: frontend/src/components/CourseOutline.vue:11
#: frontend/src/components/CreateOutline.vue:18 #: frontend/src/components/CreateOutline.vue:18
#: frontend/src/components/Modals/ChapterModal.vue:5 #: frontend/src/components/Modals/ChapterModal.vue:5
#: frontend/src/components/Modals/ChapterModal.vue:9
msgid "Add Chapter" msgid "Add Chapter"
msgstr "Lägg till Kapitel" msgstr "Lägg till Kapitel"
@@ -167,11 +170,11 @@ msgstr "Adress"
#: frontend/src/pages/Billing.vue:79 #: frontend/src/pages/Billing.vue:79
msgid "Address Line 1" msgid "Address Line 1"
msgstr "Co/Box" msgstr "Adress Linje 1"
#: frontend/src/pages/Billing.vue:83 #: frontend/src/pages/Billing.vue:83
msgid "Address Line 2" msgid "Address Line 2"
msgstr "Gata och Nummer" msgstr "Adress Linje 2"
#. Option for the 'Role' (Select) field in DocType 'Cohort Staff' #. Option for the 'Role' (Select) field in DocType 'Cohort Staff'
#. Option for the 'Required Role' (Select) field in DocType 'Cohort Web Page' #. Option for the 'Required Role' (Select) field in DocType 'Cohort Web Page'
@@ -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 'Web Form'
#. Label of the amount (Currency) field in DocType 'LMS Batch' #. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the amount (Currency) field in DocType 'LMS Payment' #. 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_batch/lms_batch.json
#: lms/lms/doctype/lms_payment/lms_payment.json #: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/public/js/common_functions.js:379 #: lms/public/js/common_functions.js:379
@@ -269,6 +272,14 @@ msgstr "Meddelande"
msgid "Answer" msgid "Answer"
msgstr "Svara" 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 #: frontend/src/pages/JobDetail.vue:131
msgid "Applications Received" msgid "Applications Received"
msgstr "Ansökan Mottagen" msgstr "Ansökan Mottagen"
@@ -467,7 +478,7 @@ msgid "Batch Description"
msgstr "Parti Beskrivning" msgstr "Parti Beskrivning"
#. Label of the batch_details (Text Editor) field in DocType 'LMS Batch' #. 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/public/js/common_functions.js:349
#: lms/templates/emails/batch_confirmation.html:30 #: lms/templates/emails/batch_confirmation.html:30
msgid "Batch Details" msgid "Batch Details"
@@ -634,8 +645,8 @@ msgstr "Fritidskläder"
#. Label of the category (Link) field in DocType 'LMS Batch' #. Label of the category (Link) field in DocType 'LMS Batch'
#. Label of the category (Data) field in DocType 'LMS Category' #. Label of the category (Data) field in DocType 'LMS Category'
#. Label of the category (Link) field in DocType 'LMS Course' #. 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/BatchForm.vue:189 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:116 frontend/src/pages/Courses.vue:17 #: frontend/src/pages/CourseForm.vue:139 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/JobDetail.vue:102 #: frontend/src/pages/JobDetail.vue:102
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_category/lms_category.json
@@ -936,7 +947,7 @@ msgstr "Slutför Registrering"
msgid "Completed" msgid "Completed"
msgstr "Klar" msgstr "Klar"
#: frontend/src/pages/CourseForm.vue:168 #: frontend/src/pages/CourseForm.vue:192
msgid "Completion Certificate" msgid "Completion Certificate"
msgstr "Kompletterande Certifikat" msgstr "Kompletterande Certifikat"
@@ -986,7 +997,7 @@ msgstr "Fortsätt lära dig"
msgid "Contract" msgid "Contract"
msgstr "Avtal" msgstr "Avtal"
#: lms/lms/utils.py:423 #: lms/lms/utils.py:442
msgid "Cookie Policy" msgid "Cookie Policy"
msgstr "Princip för Kakor" msgstr "Princip för Kakor"
@@ -1107,7 +1118,7 @@ msgstr "Kurs Skapare"
msgid "Course Data" msgid "Course Data"
msgstr "Kursdata" msgstr "Kursdata"
#: frontend/src/pages/CourseForm.vue:34 #: frontend/src/pages/CourseForm.vue:41
msgid "Course Description" msgid "Course Description"
msgstr "Kursbeskrivning" msgstr "Kursbeskrivning"
@@ -1116,7 +1127,7 @@ msgstr "Kursbeskrivning"
msgid "Course Evaluator" msgid "Course Evaluator"
msgstr "Kursutvärderare" msgstr "Kursutvärderare"
#: frontend/src/pages/CourseForm.vue:64 #: frontend/src/pages/CourseForm.vue:54
msgid "Course Image" msgid "Course Image"
msgstr "Kursbild" msgstr "Kursbild"
@@ -1139,7 +1150,7 @@ msgid "Course Name"
msgstr "Kursnamn" msgstr "Kursnamn"
#. Label of the course_price (Currency) field in DocType 'LMS Course' #. 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 #: lms/lms/doctype/lms_course/lms_course.json
msgid "Course Price" msgid "Course Price"
msgstr "Kurspris" msgstr "Kurspris"
@@ -1172,7 +1183,7 @@ msgstr "Kurstitel"
msgid "Course already added to the batch." msgid "Course already added to the batch."
msgstr "Kursen har redan lagts till i omgång." 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" msgid "Course price and currency are mandatory for paid courses"
msgstr "Kurs pris och valuta erfordras för betalda kurser" msgstr "Kurs pris och valuta erfordras för betalda kurser"
@@ -1210,6 +1221,10 @@ msgstr "Kurser raderade"
msgid "Cover Image" msgid "Cover Image"
msgstr "Omslagsbild" msgstr "Omslagsbild"
#: frontend/src/components/Modals/ChapterModal.vue:9
msgid "Create"
msgstr "Skapa"
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7
msgid "Create LMS Certificate" msgid "Create LMS Certificate"
msgstr "Skapa LMS Certifikat" msgstr "Skapa LMS Certifikat"
@@ -1218,7 +1233,11 @@ msgstr "Skapa LMS Certifikat"
msgid "Create LMS Certificate Evaluation" msgid "Create LMS Certificate Evaluation"
msgstr "Skapa LMS Certifikat Utvärdering" 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" msgid "Create a Course"
msgstr "Skapa Kurs" 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 Batch'
#. Label of the currency (Link) field in DocType 'LMS Course' #. Label of the currency (Link) field in DocType 'LMS Course'
#. Label of the currency (Link) field in DocType 'LMS Payment' #. 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/fixtures/custom_field.json lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_payment/lms_payment.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 #. Label of the section_break_glxh (Section Break) field in DocType 'LMS Live
#. Class' #. Class'
#: frontend/src/pages/BatchForm.vue:102 #: frontend/src/pages/BatchForm.vue:110
#: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Date and Time" msgid "Date and Time"
msgstr "Datum och Tid" 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'
#. Label of the description (Markdown Editor) field in DocType 'Cohort #. Label of the description (Markdown Editor) field in DocType 'Cohort
#. Subgroup' #. 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 Badge'
#. Label of the description (Small Text) field in DocType 'LMS Batch' #. Label of the description (Small Text) field in DocType 'LMS Batch'
#. Label of the description (Markdown Editor) field in DocType 'LMS Batch Old' #. 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 (Text) field in DocType 'LMS Live Class'
#. Label of the description (Small Text) field in DocType 'Work Experience' #. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:73 #: 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/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.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_badge/lms_badge.json
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -1376,7 +1393,7 @@ msgstr "Skrivbord"
msgid "Details" msgid "Details"
msgstr "Detaljer" msgstr "Detaljer"
#: frontend/src/pages/CourseForm.vue:163 #: frontend/src/pages/CourseForm.vue:187
msgid "Disable Self Enrollment" msgid "Disable Self Enrollment"
msgstr "Inaktivera självregistrering" msgstr "Inaktivera självregistrering"
@@ -1451,13 +1468,14 @@ msgstr "E-post"
#: frontend/src/components/BatchOverlay.vue:93 #: frontend/src/components/BatchOverlay.vue:93
#: frontend/src/components/CourseCardOverlay.vue:86 #: 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/JobDetail.vue:31 frontend/src/pages/Lesson.vue:70
#: frontend/src/pages/Profile.vue:32 #: frontend/src/pages/Profile.vue:32
msgid "Edit" msgid "Edit"
msgstr "Redigera" msgstr "Redigera"
#: frontend/src/components/CourseOutline.vue:106 #: frontend/src/components/CourseOutline.vue:106
#: frontend/src/components/Modals/ChapterModal.vue:9 #: frontend/src/components/Modals/ChapterModal.vue:5
msgid "Edit Chapter" msgid "Edit Chapter"
msgstr "Redigera Kapitel" 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 'Cohort'
#. Label of the end_date (Date) field in DocType 'LMS Batch' #. 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/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:282 #: lms/public/js/common_functions.js:282
msgid "End Date" 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 Evaluation'
#. Label of the end_time (Time) field in DocType 'LMS Certificate Request' #. Label of the end_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the end_time (Time) field in DocType 'Scheduled Flow' #. 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 #: frontend/src/pages/ProfileEvaluator.vue:18
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json #: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.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" msgid "Enrollment Count"
msgstr "Antal Inskrivna" msgstr "Antal Inskrivna"
#: lms/lms/utils.py:1683 #: lms/lms/utils.py:1692
msgid "Enrollment Failed" msgid "Enrollment Failed"
msgstr "Registrering Misslyckad" msgstr "Registrering Misslyckad"
#. Label of the enrollments (Data) field in DocType 'LMS Course'
#. Label of a chart in the LMS Workspace #. Label of a chart in the LMS Workspace
#. Label of a shortcut 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" msgid "Enrollments"
msgstr "Inskrivningar" msgstr "Inskrivningar"
@@ -1635,7 +1655,7 @@ msgid "Evaluation Details"
msgstr "Utvärdering Detaljer" msgstr "Utvärdering Detaljer"
#. Label of the evaluation_end_date (Date) field in DocType 'LMS Batch' #. 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/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:333 #: lms/public/js/common_functions.js:333
msgid "Evaluation End Date" msgid "Evaluation End Date"
@@ -1697,6 +1717,10 @@ msgstr "Utvärderare är inte tillgänglig"
msgid "Event" msgid "Event"
msgstr "Händelse" 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 Latest Submission'
#. Label of the exercise (Link) field in DocType 'Exercise Submission' #. Label of the exercise (Link) field in DocType 'Exercise Submission'
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: 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' #. Label of the featured (Check) field in DocType 'LMS Course'
#: frontend/src/components/CourseCard.vue:16 #: 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 #: lms/lms/doctype/lms_course/lms_course.json
msgid "Featured" msgid "Featured"
msgstr "Utvald" msgstr "Utvald"
@@ -2030,6 +2054,10 @@ msgstr "ID"
msgid "Icon" msgid "Icon"
msgstr "Ikon" 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 #: lms/templates/emails/mentor_request_creation_email.html:5
msgid "If you are not any more interested to mentor the course" 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" 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 Batch'
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course' #. 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_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "Instructors" msgid "Instructors"
@@ -2311,7 +2339,7 @@ msgstr "Jobb Titel"
msgid "Jobs" msgid "Jobs"
msgstr "Jobb" msgstr "Jobb"
#: frontend/src/components/LiveClass.vue:53 #: frontend/src/components/LiveClass.vue:54
#: lms/templates/upcoming_evals.html:15 #: lms/templates/upcoming_evals.html:15
msgid "Join" msgid "Join"
msgstr "Anslut" msgstr "Anslut"
@@ -2325,6 +2353,10 @@ msgstr "Delta i Möte"
msgid "Join URL" msgid "Join URL"
msgstr "Gå med 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 #. Name of a Workspace
#: lms/lms/workspace/lms/lms.json #: lms/lms/workspace/lms/lms.json
msgid "LMS" msgid "LMS"
@@ -2578,9 +2610,11 @@ msgstr "Lektion Titel"
#. Label of the lessons (Table) field in DocType 'Course Chapter' #. Label of the lessons (Table) field in DocType 'Course Chapter'
#. Group in Course Chapter's connections #. 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/CourseCard.vue:34
#: frontend/src/components/CourseCardOverlay.vue:96 #: frontend/src/components/CourseCardOverlay.vue:96
#: lms/lms/doctype/course_chapter/course_chapter.json #: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Lessons" msgid "Lessons"
msgstr "Lektioner" msgstr "Lektioner"
@@ -2753,7 +2787,7 @@ msgid "Maximun Attempts"
msgstr "Maximalt antal försök" msgstr "Maximalt antal försök"
#. Label of the medium (Select) field in DocType 'LMS Batch' #. 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/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:309 #: lms/public/js/common_functions.js:309
msgid "Medium" msgid "Medium"
@@ -2901,7 +2935,7 @@ msgid "Mentors"
msgstr "Mentorer" msgstr "Mentorer"
#. Label of the meta_image (Attach Image) field in DocType 'LMS Batch' #. 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 #: lms/public/js/common_functions.js:362
msgid "Meta Image" msgid "Meta Image"
msgstr "Meta Bild" msgstr "Meta Bild"
@@ -2937,11 +2971,11 @@ msgstr "Moderator"
msgid "Modified By" msgid "Modified By"
msgstr "Modifierad Av" msgstr "Modifierad Av"
#: lms/lms/api.py:190 #: lms/lms/api.py:191
msgid "Module Name is incorrect or does not exist." msgid "Module Name is incorrect or does not exist."
msgstr "Modul Namn är felaktigt eller existerar inte." msgstr "Modul Namn är felaktigt eller existerar inte."
#: lms/lms/api.py:186 #: lms/lms/api.py:187
msgid "Module is incorrect." msgid "Module is incorrect."
msgstr "Modul är felaktig." msgstr "Modul är felaktig."
@@ -3008,11 +3042,11 @@ msgstr "Nytt Frågesport"
msgid "New Sign Up" msgid "New Sign Up"
msgstr "Ny Registrering" msgstr "Ny Registrering"
#: lms/lms/utils.py:613 #: lms/lms/utils.py:632
msgid "New comment in batch {0}" msgid "New comment in batch {0}"
msgstr "Ny kommentar i omgång {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}" msgid "New reply on the topic {0} in course {1}"
msgstr "Nytt svar i ämne {0} i kurs {1}" msgstr "Nytt svar i ämne {0} i kurs {1}"
@@ -3050,6 +3084,10 @@ msgstr "Inga Kommande Utvärderingar"
msgid "No announcements" msgid "No announcements"
msgstr "Inga tillkännagivanden" 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 #: lms/templates/certificates_section.html:23
msgid "No certificates" msgid "No certificates"
msgstr "Inga certifikat" msgstr "Inga certifikat"
@@ -3058,6 +3096,10 @@ msgstr "Inga certifikat"
msgid "No courses created" msgid "No courses created"
msgstr "Inga kurser skapade" 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 #: lms/templates/courses_under_review.html:14
msgid "No courses under review" msgid "No courses under review"
msgstr "Inga kurser under granskning" msgstr "Inga kurser under granskning"
@@ -3070,7 +3112,7 @@ msgstr "Ingen introduktion"
msgid "No jobs posted" msgid "No jobs posted"
msgstr "Inga jobb utannonserade" msgstr "Inga jobb utannonserade"
#: frontend/src/components/LiveClass.vue:59 #: frontend/src/components/LiveClass.vue:60
msgid "No live classes scheduled" msgid "No live classes scheduled"
msgstr "Inga live lektioner schemalagda" msgstr "Inga live lektioner schemalagda"
@@ -3086,13 +3128,13 @@ msgstr "Inga kommande utvärderingar."
msgid "No {0}" msgid "No {0}"
msgstr "Ingen {0}" msgstr "Ingen {0}"
#: frontend/src/pages/Batches.vue:88 #: frontend/src/pages/Batches.vue:84
msgid "No {0} batches found" msgid "No {0} batches"
msgstr "Inga {0} omgångar hittades" msgstr "Inga {0} omgångar"
#: frontend/src/pages/Courses.vue:110 #: frontend/src/pages/Courses.vue:106
msgid "No {0} courses found" msgid "No {0} courses"
msgstr "Inga {0} kurser hittades" msgstr "Inga {0} kurser"
#: lms/templates/quiz/quiz.html:147 #: lms/templates/quiz/quiz.html:147
msgid "No." msgid "No."
@@ -3146,6 +3188,10 @@ msgstr "Aviseringar"
msgid "Notify me when available" msgid "Notify me when available"
msgstr "Meddela mig när den är tillgänglig" 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' #. Label of the sb_00 (Section Break) field in DocType 'Zoom Settings'
#: lms/lms/doctype/zoom_settings/zoom_settings.json #: lms/lms/doctype/zoom_settings/zoom_settings.json
msgid "OAuth Client ID" msgid "OAuth Client ID"
@@ -3178,7 +3224,7 @@ msgstr "Uppkopplad"
msgid "Only files of type {0} will be accepted." msgid "Only files of type {0} will be accepted."
msgstr "Endast filer av typ {0} kommer att accepteras." 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." msgid "Only image file is allowed."
msgstr "Endast bildfiler är tillåtna." msgstr "Endast bildfiler är tillåtna."
@@ -3286,14 +3332,14 @@ msgid "Pages"
msgstr "Sidor" msgstr "Sidor"
#. Label of the paid_batch (Check) field in DocType 'LMS Batch' #. 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/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:373 #: lms/public/js/common_functions.js:373
msgid "Paid Batch" msgid "Paid Batch"
msgstr "Betald Parti" msgstr "Betald Parti"
#. Label of the paid_course (Check) field in DocType 'LMS Course' #. 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 #: lms/lms/doctype/lms_course/lms_course.json
msgid "Paid Course" msgid "Paid Course"
msgstr "Betald Kurs" msgstr "Betald Kurs"
@@ -3335,9 +3381,13 @@ msgstr "Passerande Procent"
msgid "Password" msgid "Password"
msgstr "Lösenord" 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 'Batch Student'
#. Label of the payment (Link) field in DocType 'LMS Enrollment' #. 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/batch_student/batch_student.json
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json #: lms/lms/doctype/lms_enrollment/lms_enrollment.json
msgid "Payment" msgid "Payment"
@@ -3429,7 +3479,7 @@ msgstr "Procent (t.ex. 70%)"
msgid "Phone Number" msgid "Phone Number"
msgstr "Telefon Nummer" msgstr "Telefon Nummer"
#: frontend/src/components/CourseCardOverlay.vue:143 #: frontend/src/components/CourseCardOverlay.vue:141
msgid "Please Login" msgid "Please Login"
msgstr "Logga in" msgstr "Logga in"
@@ -3490,7 +3540,7 @@ msgstr "Logga in för att komma åt frågesport."
msgid "Please login to access this page." msgid "Please login to access this page."
msgstr "Logga in för att komma till denna sida." 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." msgid "Please login to continue with payment."
msgstr "Logga in för att fortsätta med betalning." msgstr "Logga in för att fortsätta med betalning."
@@ -3580,7 +3630,7 @@ msgstr "Föredragen Plats"
msgid "Preview Image" msgid "Preview Image"
msgstr "Förhandsgranska Bild" msgstr "Förhandsgranska Bild"
#: frontend/src/pages/CourseForm.vue:86 #: frontend/src/pages/CourseForm.vue:102
msgid "Preview Video" msgid "Preview Video"
msgstr "Förhandsgranska 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 Batch'
#. Label of the pricing_tab (Tab Break) field in DocType 'LMS Course' #. 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_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:368 #: lms/public/js/common_functions.js:368
@@ -3608,7 +3658,7 @@ msgstr "Primära Länder"
msgid "Primary Subgroup" msgid "Primary Subgroup"
msgstr "Primär Undergrupp" msgstr "Primär Undergrupp"
#: lms/lms/utils.py:422 #: lms/lms/utils.py:441
msgid "Privacy Policy" msgid "Privacy Policy"
msgstr "Integritet Princip" 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 Batch'
#. Label of the published (Check) field in DocType 'LMS Course' #. Label of the published (Check) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:108 #: 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_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:266 #: lms/public/js/common_functions.js:266
@@ -3673,7 +3723,7 @@ msgid "Published Courses"
msgstr "Publicerade Kurser" msgstr "Publicerade Kurser"
#. Label of the published_on (Date) field in DocType 'LMS Course' #. 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 #: lms/lms/doctype/lms_course/lms_course.json
msgid "Published On" msgid "Published On"
msgstr "Publicerad" msgstr "Publicerad"
@@ -3794,11 +3844,13 @@ msgid "Quizzes"
msgstr "Frågesporter" msgstr "Frågesporter"
#. Label of the rating (Rating) field in DocType 'LMS Certificate Evaluation' #. 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' #. 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/Event.vue:86
#: frontend/src/components/Modals/ReviewModal.vue:20 #: frontend/src/components/Modals/ReviewModal.vue:20
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: 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/lms/doctype/lms_course_review/lms_course_review.json
#: lms/templates/reviews.html:125 #: lms/templates/reviews.html:125
msgid "Rating" msgid "Rating"
@@ -3869,6 +3921,10 @@ msgstr "Avvisad"
msgid "Related Courses" msgid "Related Courses"
msgstr "Relaterade Kurser" 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 #: frontend/src/components/Modals/AnnouncementModal.vue:26
msgid "Reply To" msgid "Reply To"
msgstr "Svara till" msgstr "Svara till"
@@ -4024,7 +4080,7 @@ msgid "Search for an icon"
msgstr "Sök efter ikon" msgstr "Sök efter ikon"
#. Label of the seat_count (Int) field in DocType 'LMS Batch' #. 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/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:327 #: lms/public/js/common_functions.js:327
msgid "Seat Count" msgid "Seat Count"
@@ -4068,7 +4124,7 @@ msgid "Set your Password"
msgstr "Ange Lösenord" msgstr "Ange Lösenord"
#: frontend/src/components/Modals/Settings.vue:7 #: 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 #: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:78
msgid "Settings" msgid "Settings"
msgstr "Inställningar" msgstr "Inställningar"
@@ -4078,11 +4134,15 @@ msgid "Share on"
msgstr "Dela på" msgstr "Dela på"
#. Label of the short_introduction (Small Text) field in DocType 'LMS Course' #. 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 #: lms/lms/doctype/lms_course/lms_course.json
msgid "Short Introduction" msgid "Short Introduction"
msgstr "Kort Introduktion" 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' #. Label of the show_answer (Check) field in DocType 'LMS Assignment'
#: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment/lms_assignment.json
msgid "Show Answer" msgid "Show Answer"
@@ -4235,7 +4295,7 @@ msgstr "Personal"
msgid "Stage" msgid "Stage"
msgstr "Stadie" 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 #: lms/templates/quiz/quiz.html:39
msgid "Start" msgid "Start"
msgstr "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 'Education Detail'
#. Label of the start_date (Date) field in DocType 'LMS Batch' #. Label of the start_date (Date) field in DocType 'LMS Batch'
#. Label of the start_date (Date) field in DocType 'LMS Batch Old' #. 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/education_detail/education_detail.json
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.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 Evaluation'
#. Label of the start_time (Time) field in DocType 'LMS Certificate Request' #. Label of the start_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the start_time (Time) field in DocType 'Scheduled Flow' #. 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 #: frontend/src/pages/ProfileEvaluator.vue:15
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json #: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
@@ -4303,7 +4363,9 @@ msgstr "Uppstart Organisation"
msgid "State" msgid "State"
msgstr "Län" 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' #. 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 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:133
msgid "Statistics" msgid "Statistics"
msgstr "Statistik" msgstr "Statistik"
@@ -4433,7 +4495,7 @@ msgstr "Inskickad {0}"
#: frontend/src/components/BatchCourses.vue:150 #: frontend/src/components/BatchCourses.vue:150
#: frontend/src/components/BatchOverlay.vue:135 #: frontend/src/components/BatchOverlay.vue:135
#: frontend/src/components/BatchStudents.vue:157 #: 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/AssessmentModal.vue:73
#: frontend/src/components/Modals/Event.vue:255 #: frontend/src/components/Modals/Event.vue:255
#: frontend/src/components/Modals/Event.vue:310 #: frontend/src/components/Modals/Event.vue:310
@@ -4507,7 +4569,7 @@ msgid "System Manager"
msgstr "System Ansvarig" msgstr "System Ansvarig"
#. Label of the tags (Data) field in DocType 'LMS Course' #. 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 #: lms/lms/doctype/lms_course/lms_course.json
msgid "Tags" msgid "Tags"
msgstr "Taggar" msgstr "Taggar"
@@ -4535,7 +4597,7 @@ msgstr "Mall"
msgid "Temporarily Disabled" msgid "Temporarily Disabled"
msgstr "Tillfälligt Inaktiverad" msgstr "Tillfälligt Inaktiverad"
#: lms/lms/utils.py:421 #: lms/lms/utils.py:440
msgid "Terms of Use" msgid "Terms of Use"
msgstr "Villkor" msgstr "Villkor"
@@ -4587,10 +4649,18 @@ msgstr "Tiden är redan bokad av en annan deltagare."
msgid "The status of your application has changed." msgid "The status of your application has changed."
msgstr "Status för din ansökan har förändrats." 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 #: frontend/src/components/CreateOutline.vue:12
msgid "There are no chapters in this course. Create and manage chapters from here." 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." 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 #: lms/lms/doctype/lms_batch/lms_batch.py:140
msgid "There are no seats available in this batch." msgid "There are no seats available in this batch."
msgstr "Det finns inga platser tillgängliga i denna omgång." 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:" msgid "This course has:"
msgstr "Denna kurs har:" msgstr "Denna kurs har:"
#: lms/lms/utils.py:1563 #: lms/lms/utils.py:1572
msgid "This course is free." msgid "This course is free."
msgstr "Denna kurs är gratis." 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 Certificate Request'
#. Label of the timezone (Data) field in DocType 'LMS Live Class' #. Label of the timezone (Data) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/LiveClassModal.vue:44 #: 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_batch/lms_batch.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_live_class/lms_live_class.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." msgid "To Date is mandatory in Work Experience."
msgstr "Till Datum erfordras i Arbetslivserfarenhet." 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." msgid "To join this batch, please contact the Administrator."
msgstr "För att gå med i denna omgång, kontakta Administratör." 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' #. Option for the 'Status' (Select) field in DocType 'Cohort'
#. Label of the upcoming (Check) field in DocType 'LMS Course' #. 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 #: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming" msgid "Upcoming"
msgstr "Kommande" msgstr "Kommande"
@@ -4898,6 +4968,10 @@ msgstr "Uppdatera"
msgid "Update Password" msgid "Update Password"
msgstr "Uppdatera lösenord" 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 #: frontend/src/pages/AssignmentSubmission.vue:69
msgid "Upload File" msgid "Upload File"
msgstr "Ladda upp fil" msgstr "Ladda upp fil"
@@ -5020,6 +5094,10 @@ msgstr "Onsdag"
msgid "Welcome to {0}!" msgid "Welcome to {0}!"
msgstr "Välkommen till {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 #: lms/templates/courses_under_review.html:15
msgid "When a course gets submitted for review, it will be listed here." 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." 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}." 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}." 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." msgid "You are already enrolled for this batch."
msgstr "Du är redan inskriven för denna omgång." 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." msgid "You are already enrolled for this course."
msgstr "Du är redan inskriven på denna kurs." 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}" msgid "You are not a mentor of the course {0}"
msgstr "Du är inte mentor för kurs {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_course_interest.html:13
#: lms/templates/emails/lms_invite_request_approved.html:11 #: lms/templates/emails/lms_invite_request_approved.html:11
msgid "You can also copy-paste following link in your browser" 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." msgid "You can find their resume attached to this email."
msgstr "Du kan hitta deras CV bifogat till detta e-post meddelande." 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 #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:115
msgid "You cannot schedule evaluations after {0}." msgid "You cannot schedule evaluations after {0}."
msgstr "Du kan inte schemalägga utvärderingar efter {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" msgid "You have been enrolled in this batch"
msgstr "Du har blivit registrerad i denna omgång" 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" msgid "You have been enrolled in this course"
msgstr "Du har blivit registrerad på denna kurs" 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" msgid "You haven't enrolled for any courses"
msgstr "Du är inte inskriven till någon kurs" 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" 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" 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" msgid "you can"
msgstr "du kan" 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" msgid "{0} Settings not found"
msgstr "{0} Inställningar hittades inte" msgstr "{0} Inställningar hittades inte"
@@ -5313,7 +5399,7 @@ msgstr "{0} är redan certifierad för kurs {1}"
msgid "{0} is your evaluator" msgid "{0} is your evaluator"
msgstr "{0} är din utvärderare" msgstr "{0} är din utvärderare"
#: lms/lms/utils.py:690 #: lms/lms/utils.py:709
msgid "{0} mentioned you in a comment" msgid "{0} mentioned you in a comment"
msgstr "{0} nämnde dig i en kommentar" 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." msgid "{0} mentioned you in a comment in your batch."
msgstr "{0} nämnde dig i en kommentar i din grupp." 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}" msgid "{0} mentioned you in a comment in {1}"
msgstr "{0} hänvisade dig i kommentar i {1}" msgstr "{0} hänvisade dig i kommentar i {1}"
#: lms/lms/utils.py:461 #: lms/lms/utils.py:480
msgid "{0}k" msgid "{0}k"
msgstr "{0}k" msgstr "{0}k"

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-10-18 16:04+0000\n" "POT-Creation-Date: 2024-11-01 16:04+0000\n"
"PO-Revision-Date: 2024-10-26 11:24\n" "PO-Revision-Date: 2024-11-05 14:34\n"
"Last-Translator: jannat@frappe.io\n" "Last-Translator: jannat@frappe.io\n"
"Language-Team: Turkish\n" "Language-Team: Turkish\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -62,6 +62,10 @@ msgstr ""
msgid "<span style=\"font-size: 18px;\"><b>Statistics</b></span>" msgid "<span style=\"font-size: 18px;\"><b>Statistics</b></span>"
msgstr "" 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 #: frontend/src/pages/ProfileAbout.vue:4
msgid "About" msgid "About"
msgstr "Hakkında" msgstr "Hakkında"
@@ -102,7 +106,6 @@ msgstr "Ekle"
#: frontend/src/components/CourseOutline.vue:11 #: frontend/src/components/CourseOutline.vue:11
#: frontend/src/components/CreateOutline.vue:18 #: frontend/src/components/CreateOutline.vue:18
#: frontend/src/components/Modals/ChapterModal.vue:5 #: frontend/src/components/Modals/ChapterModal.vue:5
#: frontend/src/components/Modals/ChapterModal.vue:9
msgid "Add Chapter" msgid "Add Chapter"
msgstr "Bölüm Ekle" 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 'Web Form'
#. Label of the amount (Currency) field in DocType 'LMS Batch' #. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the amount (Currency) field in DocType 'LMS Payment' #. 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_batch/lms_batch.json
#: lms/lms/doctype/lms_payment/lms_payment.json #: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/public/js/common_functions.js:379 #: lms/public/js/common_functions.js:379
@@ -269,6 +272,14 @@ msgstr "Duyuru"
msgid "Answer" msgid "Answer"
msgstr "Cevap" 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 #: frontend/src/pages/JobDetail.vue:131
msgid "Applications Received" msgid "Applications Received"
msgstr "Alınan Başvurular" msgstr "Alınan Başvurular"
@@ -464,14 +475,14 @@ msgstr "Toplu İş Oluşturuldu"
#. Old' #. Old'
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
msgid "Batch Description" msgid "Batch Description"
msgstr "Bölüm Açıklaması" msgstr ""
#. Label of the batch_details (Text Editor) field in DocType 'LMS Batch' #. 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/public/js/common_functions.js:349
#: lms/templates/emails/batch_confirmation.html:30 #: lms/templates/emails/batch_confirmation.html:30
msgid "Batch Details" msgid "Batch Details"
msgstr "Batch Ayrıntıları" msgstr ""
#. Label of the batch_details_raw (HTML Editor) field in DocType 'LMS Batch' #. Label of the batch_details_raw (HTML Editor) field in DocType 'LMS Batch'
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
@@ -634,8 +645,8 @@ msgstr ""
#. Label of the category (Link) field in DocType 'LMS Batch' #. Label of the category (Link) field in DocType 'LMS Batch'
#. Label of the category (Data) field in DocType 'LMS Category' #. Label of the category (Data) field in DocType 'LMS Category'
#. Label of the category (Link) field in DocType 'LMS Course' #. 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/BatchForm.vue:189 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:116 frontend/src/pages/Courses.vue:17 #: frontend/src/pages/CourseForm.vue:139 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/JobDetail.vue:102 #: frontend/src/pages/JobDetail.vue:102
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_category/lms_category.json
@@ -936,7 +947,7 @@ msgstr "Kayıt İşlemini Tamamlayın"
msgid "Completed" msgid "Completed"
msgstr "Tamamlandı" msgstr "Tamamlandı"
#: frontend/src/pages/CourseForm.vue:168 #: frontend/src/pages/CourseForm.vue:192
msgid "Completion Certificate" msgid "Completion Certificate"
msgstr "" msgstr ""
@@ -986,7 +997,7 @@ msgstr ""
msgid "Contract" msgid "Contract"
msgstr "Sözleşme" msgstr "Sözleşme"
#: lms/lms/utils.py:423 #: lms/lms/utils.py:442
msgid "Cookie Policy" msgid "Cookie Policy"
msgstr "Çerez Politikası" msgstr "Çerez Politikası"
@@ -1107,7 +1118,7 @@ msgstr ""
msgid "Course Data" msgid "Course Data"
msgstr "Kurs Verileri" msgstr "Kurs Verileri"
#: frontend/src/pages/CourseForm.vue:34 #: frontend/src/pages/CourseForm.vue:41
msgid "Course Description" msgid "Course Description"
msgstr "Kurs Açıklaması" msgstr "Kurs Açıklaması"
@@ -1116,7 +1127,7 @@ msgstr "Kurs Açıklaması"
msgid "Course Evaluator" msgid "Course Evaluator"
msgstr "" msgstr ""
#: frontend/src/pages/CourseForm.vue:64 #: frontend/src/pages/CourseForm.vue:54
msgid "Course Image" msgid "Course Image"
msgstr "Kurs Resmi" msgstr "Kurs Resmi"
@@ -1139,7 +1150,7 @@ msgid "Course Name"
msgstr "Kurs Adı" msgstr "Kurs Adı"
#. Label of the course_price (Currency) field in DocType 'LMS Course' #. 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 #: lms/lms/doctype/lms_course/lms_course.json
msgid "Course Price" msgid "Course Price"
msgstr "Kurs Fiyatı" msgstr "Kurs Fiyatı"
@@ -1172,7 +1183,7 @@ msgstr "Kurs Başlığı"
msgid "Course already added to the batch." msgid "Course already added to the batch."
msgstr "Kurs zaten gruba eklendi." 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" msgid "Course price and currency are mandatory for paid courses"
msgstr "" msgstr ""
@@ -1210,6 +1221,10 @@ msgstr ""
msgid "Cover Image" msgid "Cover Image"
msgstr "" msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:9
msgid "Create"
msgstr "Oluştur"
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7
msgid "Create LMS Certificate" msgid "Create LMS Certificate"
msgstr "ÖYS Sertifikası Oluştur" msgstr "ÖYS Sertifikası Oluştur"
@@ -1218,7 +1233,11 @@ msgstr "ÖYS Sertifikası Oluştur"
msgid "Create LMS Certificate Evaluation" msgid "Create LMS Certificate Evaluation"
msgstr "ÖYS Sertifika Değerlendirmesi Oluştur" 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" msgid "Create a Course"
msgstr "Kurs Oluştur" 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 Batch'
#. Label of the currency (Link) field in DocType 'LMS Course' #. Label of the currency (Link) field in DocType 'LMS Course'
#. Label of the currency (Link) field in DocType 'LMS Payment' #. 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/fixtures/custom_field.json lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_payment/lms_payment.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 #. Label of the section_break_glxh (Section Break) field in DocType 'LMS Live
#. Class' #. Class'
#: frontend/src/pages/BatchForm.vue:102 #: frontend/src/pages/BatchForm.vue:110
#: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Date and Time" msgid "Date and Time"
msgstr "Tarih ve Saat" 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'
#. Label of the description (Markdown Editor) field in DocType 'Cohort #. Label of the description (Markdown Editor) field in DocType 'Cohort
#. Subgroup' #. 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 Badge'
#. Label of the description (Small Text) field in DocType 'LMS Batch' #. Label of the description (Small Text) field in DocType 'LMS Batch'
#. Label of the description (Markdown Editor) field in DocType 'LMS Batch Old' #. 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 (Text) field in DocType 'LMS Live Class'
#. Label of the description (Small Text) field in DocType 'Work Experience' #. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:73 #: 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/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.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_badge/lms_badge.json
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -1376,7 +1393,7 @@ msgstr ""
msgid "Details" msgid "Details"
msgstr "Ayrıntılar" msgstr "Ayrıntılar"
#: frontend/src/pages/CourseForm.vue:163 #: frontend/src/pages/CourseForm.vue:187
msgid "Disable Self Enrollment" msgid "Disable Self Enrollment"
msgstr "Kendi Kendine Kayıt Olmayı Devre Dışı Bırak" 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/BatchOverlay.vue:93
#: frontend/src/components/CourseCardOverlay.vue:86 #: 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/JobDetail.vue:31 frontend/src/pages/Lesson.vue:70
#: frontend/src/pages/Profile.vue:32 #: frontend/src/pages/Profile.vue:32
msgid "Edit" msgid "Edit"
msgstr "Düzenle" msgstr "Düzenle"
#: frontend/src/components/CourseOutline.vue:106 #: frontend/src/components/CourseOutline.vue:106
#: frontend/src/components/Modals/ChapterModal.vue:9 #: frontend/src/components/Modals/ChapterModal.vue:5
msgid "Edit Chapter" msgid "Edit Chapter"
msgstr "Bölümü Düzenle" 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 'Cohort'
#. Label of the end_date (Date) field in DocType 'LMS Batch' #. 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/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:282 #: lms/public/js/common_functions.js:282
msgid "End Date" 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 Evaluation'
#. Label of the end_time (Time) field in DocType 'LMS Certificate Request' #. Label of the end_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the end_time (Time) field in DocType 'Scheduled Flow' #. 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 #: frontend/src/pages/ProfileEvaluator.vue:18
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json #: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.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" msgid "Enrollment Count"
msgstr "Kayıt Sayısı" msgstr "Kayıt Sayısı"
#: lms/lms/utils.py:1683 #: lms/lms/utils.py:1692
msgid "Enrollment Failed" msgid "Enrollment Failed"
msgstr "" msgstr ""
#. Label of the enrollments (Data) field in DocType 'LMS Course'
#. Label of a chart in the LMS Workspace #. Label of a chart in the LMS Workspace
#. Label of a shortcut 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" msgid "Enrollments"
msgstr "Kayıtlar" msgstr "Kayıtlar"
@@ -1635,7 +1655,7 @@ msgid "Evaluation Details"
msgstr "Değerlendirme Detayları" msgstr "Değerlendirme Detayları"
#. Label of the evaluation_end_date (Date) field in DocType 'LMS Batch' #. 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/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:333 #: lms/public/js/common_functions.js:333
msgid "Evaluation End Date" msgid "Evaluation End Date"
@@ -1697,6 +1717,10 @@ msgstr ""
msgid "Event" msgid "Event"
msgstr "Etkinlik" 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 Latest Submission'
#. Label of the exercise (Link) field in DocType 'Exercise Submission' #. Label of the exercise (Link) field in DocType 'Exercise Submission'
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: 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' #. Label of the featured (Check) field in DocType 'LMS Course'
#: frontend/src/components/CourseCard.vue:16 #: 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 #: lms/lms/doctype/lms_course/lms_course.json
msgid "Featured" msgid "Featured"
msgstr "Öne Çıkan" msgstr "Öne Çıkan"
@@ -2030,6 +2054,10 @@ msgstr "ID"
msgid "Icon" msgid "Icon"
msgstr "Simge" 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 #: lms/templates/emails/mentor_request_creation_email.html:5
msgid "If you are not any more interested to mentor the course" msgid "If you are not any more interested to mentor the course"
msgstr "Kursa rehberlik etmekle artık ilgilenmiyorsanız" msgstr "Kursa rehberlik etmekle artık ilgilenmiyorsanız"
@@ -2089,7 +2117,7 @@ msgstr "Resim: Bozuk Veri Akışı"
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "In Progress" msgid "In Progress"
msgstr "Devam Ediyor" msgstr "İşlemde"
#. Option for the 'Status' (Select) field in DocType 'LMS Batch Old' #. Option for the 'Status' (Select) field in DocType 'LMS Batch Old'
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -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 Batch'
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course' #. 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_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "Instructors" msgid "Instructors"
@@ -2311,7 +2339,7 @@ msgstr "İş İlanı Başlığı"
msgid "Jobs" msgid "Jobs"
msgstr "İşler" msgstr "İşler"
#: frontend/src/components/LiveClass.vue:53 #: frontend/src/components/LiveClass.vue:54
#: lms/templates/upcoming_evals.html:15 #: lms/templates/upcoming_evals.html:15
msgid "Join" msgid "Join"
msgstr "Katıl" msgstr "Katıl"
@@ -2325,6 +2353,10 @@ msgstr ""
msgid "Join URL" msgid "Join URL"
msgstr "Katılma Bağlantısı" msgstr "Katılma Bağlantısı"
#: frontend/src/pages/CourseForm.vue:128
msgid "Keywords for the course"
msgstr ""
#. Name of a Workspace #. Name of a Workspace
#: lms/lms/workspace/lms/lms.json #: lms/lms/workspace/lms/lms.json
msgid "LMS" msgid "LMS"
@@ -2578,9 +2610,11 @@ msgstr "Ders Başlığı"
#. Label of the lessons (Table) field in DocType 'Course Chapter' #. Label of the lessons (Table) field in DocType 'Course Chapter'
#. Group in Course Chapter's connections #. 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/CourseCard.vue:34
#: frontend/src/components/CourseCardOverlay.vue:96 #: frontend/src/components/CourseCardOverlay.vue:96
#: lms/lms/doctype/course_chapter/course_chapter.json #: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Lessons" msgid "Lessons"
msgstr "Dersler" msgstr "Dersler"
@@ -2679,7 +2713,7 @@ msgstr "Giriş"
#: frontend/src/pages/JobDetail.vue:48 #: frontend/src/pages/JobDetail.vue:48
msgid "Login to apply" msgid "Login to apply"
msgstr "" msgstr "Başvurmak için giriş yapın"
#. Label of the default_home (Check) field in DocType 'LMS Settings' #. Label of the default_home (Check) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -2753,7 +2787,7 @@ msgid "Maximun Attempts"
msgstr "" msgstr ""
#. Label of the medium (Select) field in DocType 'LMS Batch' #. 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/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:309 #: lms/public/js/common_functions.js:309
msgid "Medium" msgid "Medium"
@@ -2901,7 +2935,7 @@ msgid "Mentors"
msgstr "Mentorlar" msgstr "Mentorlar"
#. Label of the meta_image (Attach Image) field in DocType 'LMS Batch' #. 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 #: lms/public/js/common_functions.js:362
msgid "Meta Image" msgid "Meta Image"
msgstr "" msgstr ""
@@ -2937,11 +2971,11 @@ msgstr "Moderatör"
msgid "Modified By" msgid "Modified By"
msgstr "Değiştiren" msgstr "Değiştiren"
#: lms/lms/api.py:190 #: lms/lms/api.py:191
msgid "Module Name is incorrect or does not exist." msgid "Module Name is incorrect or does not exist."
msgstr "Modül Adı yanlış veya mevcut değil." msgstr "Modül Adı yanlış veya mevcut değil."
#: lms/lms/api.py:186 #: lms/lms/api.py:187
msgid "Module is incorrect." msgid "Module is incorrect."
msgstr "Modül hatalı." msgstr "Modül hatalı."
@@ -3008,11 +3042,11 @@ msgstr ""
msgid "New Sign Up" msgid "New Sign Up"
msgstr "Yeni Kayıt" msgstr "Yeni Kayıt"
#: lms/lms/utils.py:613 #: lms/lms/utils.py:632
msgid "New comment in batch {0}" msgid "New comment in batch {0}"
msgstr "Toplu işlerde yeni yorum {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}" msgid "New reply on the topic {0} in course {1}"
msgstr "{1} dersinde {0} konusuna yeni yanıt" msgstr "{1} dersinde {0} konusuna yeni yanıt"
@@ -3050,6 +3084,10 @@ msgstr "Yaklaşan Değerlendirme Yok"
msgid "No announcements" msgid "No announcements"
msgstr "Hiçbir duyuru yok" msgstr "Hiçbir duyuru yok"
#: frontend/src/pages/Batches.vue:125
msgid "No batches found"
msgstr ""
#: lms/templates/certificates_section.html:23 #: lms/templates/certificates_section.html:23
msgid "No certificates" msgid "No certificates"
msgstr "Sertifika yok" msgstr "Sertifika yok"
@@ -3058,6 +3096,10 @@ msgstr "Sertifika yok"
msgid "No courses created" msgid "No courses created"
msgstr "Hiçbir kurs oluşturulmadı" msgstr "Hiçbir kurs oluşturulmadı"
#: frontend/src/pages/Courses.vue:146
msgid "No courses found"
msgstr ""
#: lms/templates/courses_under_review.html:14 #: lms/templates/courses_under_review.html:14
msgid "No courses under review" msgid "No courses under review"
msgstr "İncelenmekte olan kurs yok" msgstr "İncelenmekte olan kurs yok"
@@ -3070,7 +3112,7 @@ msgstr "Tanıtım yok"
msgid "No jobs posted" msgid "No jobs posted"
msgstr "Hiçbir iş ilanı yayınlanmadı" msgstr "Hiçbir iş ilanı yayınlanmadı"
#: frontend/src/components/LiveClass.vue:59 #: frontend/src/components/LiveClass.vue:60
msgid "No live classes scheduled" msgid "No live classes scheduled"
msgstr "Planlanmış canlı ders yok" msgstr "Planlanmış canlı ders yok"
@@ -3086,12 +3128,12 @@ msgstr "Yaklaşan değerlendirme yok."
msgid "No {0}" msgid "No {0}"
msgstr "{0} Yok" msgstr "{0} Yok"
#: frontend/src/pages/Batches.vue:88 #: frontend/src/pages/Batches.vue:84
msgid "No {0} batches found" msgid "No {0} batches"
msgstr "" msgstr ""
#: frontend/src/pages/Courses.vue:110 #: frontend/src/pages/Courses.vue:106
msgid "No {0} courses found" msgid "No {0} courses"
msgstr "" msgstr ""
#: lms/templates/quiz/quiz.html:147 #: lms/templates/quiz/quiz.html:147
@@ -3146,6 +3188,10 @@ msgstr "Bildirimler"
msgid "Notify me when available" msgid "Notify me when available"
msgstr "Kullanılabilir olduğundan bana bildir" 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' #. Label of the sb_00 (Section Break) field in DocType 'Zoom Settings'
#: lms/lms/doctype/zoom_settings/zoom_settings.json #: lms/lms/doctype/zoom_settings/zoom_settings.json
msgid "OAuth Client ID" msgid "OAuth Client ID"
@@ -3178,7 +3224,7 @@ msgstr "Çevrimiçi"
msgid "Only files of type {0} will be accepted." msgid "Only files of type {0} will be accepted."
msgstr "Sadece {0} türündeki dosyalar kabul edilecektir." 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." msgid "Only image file is allowed."
msgstr "" msgstr ""
@@ -3286,14 +3332,14 @@ msgid "Pages"
msgstr "Sayfalar" msgstr "Sayfalar"
#. Label of the paid_batch (Check) field in DocType 'LMS Batch' #. 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/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:373 #: lms/public/js/common_functions.js:373
msgid "Paid Batch" msgid "Paid Batch"
msgstr "" msgstr ""
#. Label of the paid_course (Check) field in DocType 'LMS Course' #. 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 #: lms/lms/doctype/lms_course/lms_course.json
msgid "Paid Course" msgid "Paid Course"
msgstr "Ücretli Kurs" msgstr "Ücretli Kurs"
@@ -3335,9 +3381,13 @@ msgstr "Başarı Yüzdesi"
msgid "Password" msgid "Password"
msgstr "Şifre" 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 'Batch Student'
#. Label of the payment (Link) field in DocType 'LMS Enrollment' #. 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/batch_student/batch_student.json
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json #: lms/lms/doctype/lms_enrollment/lms_enrollment.json
msgid "Payment" msgid "Payment"
@@ -3429,7 +3479,7 @@ msgstr "Yüzde (örn. %70)"
msgid "Phone Number" msgid "Phone Number"
msgstr "Telefon Numarası" msgstr "Telefon Numarası"
#: frontend/src/components/CourseCardOverlay.vue:143 #: frontend/src/components/CourseCardOverlay.vue:141
msgid "Please Login" msgid "Please Login"
msgstr "" msgstr ""
@@ -3490,7 +3540,7 @@ msgstr "Teste erişmek için lütfen giriş yapın."
msgid "Please login to access this page." msgid "Please login to access this page."
msgstr "Bu sayfaya erişebilmek için lütfen giriş yapın." 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." msgid "Please login to continue with payment."
msgstr "Ödeme işlemine devam etmek için lütfen giriş yapın." msgstr "Ödeme işlemine devam etmek için lütfen giriş yapın."
@@ -3580,7 +3630,7 @@ msgstr ""
msgid "Preview Image" msgid "Preview Image"
msgstr "Resim Önizleme" msgstr "Resim Önizleme"
#: frontend/src/pages/CourseForm.vue:86 #: frontend/src/pages/CourseForm.vue:102
msgid "Preview Video" msgid "Preview Video"
msgstr "Video Önzileme" 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 Batch'
#. Label of the pricing_tab (Tab Break) field in DocType 'LMS Course' #. 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_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:368 #: lms/public/js/common_functions.js:368
@@ -3608,7 +3658,7 @@ msgstr ""
msgid "Primary Subgroup" msgid "Primary Subgroup"
msgstr "Birincil Alt Grup" msgstr "Birincil Alt Grup"
#: lms/lms/utils.py:422 #: lms/lms/utils.py:441
msgid "Privacy Policy" msgid "Privacy Policy"
msgstr "" 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 Batch'
#. Label of the published (Check) field in DocType 'LMS Course' #. Label of the published (Check) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:108 #: 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_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:266 #: lms/public/js/common_functions.js:266
@@ -3673,7 +3723,7 @@ msgid "Published Courses"
msgstr "Yayınlamış Kurslar" msgstr "Yayınlamış Kurslar"
#. Label of the published_on (Date) field in DocType 'LMS Course' #. 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 #: lms/lms/doctype/lms_course/lms_course.json
msgid "Published On" msgid "Published On"
msgstr "Yayınlanma Zamanı" msgstr "Yayınlanma Zamanı"
@@ -3794,11 +3844,13 @@ msgid "Quizzes"
msgstr "" msgstr ""
#. Label of the rating (Rating) field in DocType 'LMS Certificate Evaluation' #. 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' #. 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/Event.vue:86
#: frontend/src/components/Modals/ReviewModal.vue:20 #: frontend/src/components/Modals/ReviewModal.vue:20
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: 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/lms/doctype/lms_course_review/lms_course_review.json
#: lms/templates/reviews.html:125 #: lms/templates/reviews.html:125
msgid "Rating" msgid "Rating"
@@ -3869,6 +3921,10 @@ msgstr "Reddedildi"
msgid "Related Courses" msgid "Related Courses"
msgstr "İlgili Kurslar" 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 #: frontend/src/components/Modals/AnnouncementModal.vue:26
msgid "Reply To" msgid "Reply To"
msgstr "Yanıtla" msgstr "Yanıtla"
@@ -4024,7 +4080,7 @@ msgid "Search for an icon"
msgstr "Bir simge arayın" msgstr "Bir simge arayın"
#. Label of the seat_count (Int) field in DocType 'LMS Batch' #. 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/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:327 #: lms/public/js/common_functions.js:327
msgid "Seat Count" msgid "Seat Count"
@@ -4068,7 +4124,7 @@ msgid "Set your Password"
msgstr "Şifrenizi Ayarlayın" msgstr "Şifrenizi Ayarlayın"
#: frontend/src/components/Modals/Settings.vue:7 #: 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 #: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:78
msgid "Settings" msgid "Settings"
msgstr "Ayarlar" msgstr "Ayarlar"
@@ -4078,11 +4134,15 @@ msgid "Share on"
msgstr "Paylaş" msgstr "Paylaş"
#. Label of the short_introduction (Small Text) field in DocType 'LMS Course' #. 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 #: lms/lms/doctype/lms_course/lms_course.json
msgid "Short Introduction" msgid "Short Introduction"
msgstr "Kısa Tanıtım" 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' #. Label of the show_answer (Check) field in DocType 'LMS Assignment'
#: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment/lms_assignment.json
msgid "Show Answer" msgid "Show Answer"
@@ -4235,7 +4295,7 @@ msgstr "Ekip"
msgid "Stage" msgid "Stage"
msgstr "Aşama" 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 #: lms/templates/quiz/quiz.html:39
msgid "Start" msgid "Start"
msgstr "Başlangıç" 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 'Education Detail'
#. Label of the start_date (Date) field in DocType 'LMS Batch' #. Label of the start_date (Date) field in DocType 'LMS Batch'
#. Label of the start_date (Date) field in DocType 'LMS Batch Old' #. 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/education_detail/education_detail.json
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.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 Evaluation'
#. Label of the start_time (Time) field in DocType 'LMS Certificate Request' #. Label of the start_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the start_time (Time) field in DocType 'Scheduled Flow' #. 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 #: frontend/src/pages/ProfileEvaluator.vue:15
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json #: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
@@ -4303,7 +4363,9 @@ msgstr ""
msgid "State" msgid "State"
msgstr "Durum" 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' #. 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 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:133
msgid "Statistics" msgid "Statistics"
msgstr "İstatistik" msgstr "İstatistik"
@@ -4433,7 +4495,7 @@ msgstr "Kaydedildi {0}"
#: frontend/src/components/BatchCourses.vue:150 #: frontend/src/components/BatchCourses.vue:150
#: frontend/src/components/BatchOverlay.vue:135 #: frontend/src/components/BatchOverlay.vue:135
#: frontend/src/components/BatchStudents.vue:157 #: 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/AssessmentModal.vue:73
#: frontend/src/components/Modals/Event.vue:255 #: frontend/src/components/Modals/Event.vue:255
#: frontend/src/components/Modals/Event.vue:310 #: frontend/src/components/Modals/Event.vue:310
@@ -4507,7 +4569,7 @@ msgid "System Manager"
msgstr "Sistem Yöneticisi" msgstr "Sistem Yöneticisi"
#. Label of the tags (Data) field in DocType 'LMS Course' #. 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 #: lms/lms/doctype/lms_course/lms_course.json
msgid "Tags" msgid "Tags"
msgstr "Etiketler" msgstr "Etiketler"
@@ -4535,7 +4597,7 @@ msgstr "Şablon"
msgid "Temporarily Disabled" msgid "Temporarily Disabled"
msgstr "Geçici Olarak Devre Dışı" msgstr "Geçici Olarak Devre Dışı"
#: lms/lms/utils.py:421 #: lms/lms/utils.py:440
msgid "Terms of Use" msgid "Terms of Use"
msgstr "" msgstr ""
@@ -4587,10 +4649,18 @@ msgstr ""
msgid "The status of your application has changed." msgid "The status of your application has changed."
msgstr "" 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 #: frontend/src/components/CreateOutline.vue:12
msgid "There are no chapters in this course. Create and manage chapters from here." msgid "There are no chapters in this course. Create and manage chapters from here."
msgstr "" 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 #: lms/lms/doctype/lms_batch/lms_batch.py:140
msgid "There are no seats available in this batch." msgid "There are no seats available in this batch."
msgstr "" msgstr ""
@@ -4622,7 +4692,7 @@ msgstr ""
msgid "This course has:" msgid "This course has:"
msgstr "" msgstr ""
#: lms/lms/utils.py:1563 #: lms/lms/utils.py:1572
msgid "This course is free." msgid "This course is free."
msgstr "Bu kurs ücretsizdir." 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 Certificate Request'
#. Label of the timezone (Data) field in DocType 'LMS Live Class' #. Label of the timezone (Data) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/LiveClassModal.vue:44 #: 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_batch/lms_batch.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_live_class/lms_live_class.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." msgid "To Date is mandatory in Work Experience."
msgstr "" msgstr ""
#: lms/lms/utils.py:1574 #: lms/lms/utils.py:1583
msgid "To join this batch, please contact the Administrator." msgid "To join this batch, please contact the Administrator."
msgstr "" msgstr ""
@@ -4874,7 +4944,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Cohort' #. Option for the 'Status' (Select) field in DocType 'Cohort'
#. Label of the upcoming (Check) field in DocType 'LMS Course' #. 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 #: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming" msgid "Upcoming"
msgstr "Yaklaşanlar" msgstr "Yaklaşanlar"
@@ -4898,6 +4968,10 @@ msgstr "Güncelle"
msgid "Update Password" msgid "Update Password"
msgstr "Şifreyi Güncelle" 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 #: frontend/src/pages/AssignmentSubmission.vue:69
msgid "Upload File" msgid "Upload File"
msgstr "Dosya Yükle" msgstr "Dosya Yükle"
@@ -5020,13 +5094,17 @@ msgstr "Çarşamba"
msgid "Welcome to {0}!" msgid "Welcome to {0}!"
msgstr "{0} Uygulamasına Hoş Geldiniz!" 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 #: lms/templates/courses_under_review.html:15
msgid "When a course gets submitted for review, it will be listed here." msgid "When a course gets submitted for review, it will be listed here."
msgstr "Bir kurs incelenmek üzere gönderildiğinde burada listelenecektir." msgstr "Bir kurs incelenmek üzere gönderildiğinde burada listelenecektir."
#: frontend/src/pages/Billing.vue:111 #: frontend/src/pages/Billing.vue:111
msgid "Where did you hear about us?" msgid "Where did you hear about us?"
msgstr "" msgstr "Bizi nereden duydunuz?"
#: lms/templates/emails/certification.html:10 #: 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." 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' #. Label of the work_environment (Section Break) field in DocType 'User'
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
msgid "Work Environment" msgid "Work Environment"
msgstr "" msgstr "Çalışma Ortamı"
#. Label of the work_experience (Table) field in DocType 'User' #. Label of the work_experience (Table) field in DocType 'User'
#. Name of a DocType #. Name of a DocType
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
#: lms/lms/doctype/work_experience/work_experience.json #: lms/lms/doctype/work_experience/work_experience.json
msgid "Work Experience" msgid "Work Experience"
msgstr "" msgstr "İş Deneyimi"
#. Label of the work_experience_details (Section Break) field in DocType 'User' #. Label of the work_experience_details (Section Break) field in DocType 'User'
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
msgid "Work Experience Details" msgid "Work Experience Details"
msgstr "" msgstr "İş Deneyimi Detayları"
#: frontend/src/components/CourseReviews.vue:8 #: frontend/src/components/CourseReviews.vue:8
#: frontend/src/components/Modals/ReviewModal.vue:5 #: 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}." msgid "You already have an evaluation on {0} at {1} for the course {2}."
msgstr "" msgstr ""
#: lms/lms/api.py:206 #: lms/lms/api.py:207
msgid "You are already enrolled for this batch." msgid "You are already enrolled for this batch."
msgstr "Bu gruba zaten kayıtlısınız." 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." msgid "You are already enrolled for this course."
msgstr "Bu kursa zaten kayıtlısınız." 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}" msgid "You are not a mentor of the course {0}"
msgstr "Kursun mentoru değilsiniz {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_course_interest.html:13
#: lms/templates/emails/lms_invite_request_approved.html:11 #: lms/templates/emails/lms_invite_request_approved.html:11
msgid "You can also copy-paste following link in your browser" 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." msgid "You can find their resume attached to this email."
msgstr "" 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 #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:115
msgid "You cannot schedule evaluations after {0}." 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 #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:104
msgid "You cannot schedule evaluations for past slots." 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 #: frontend/src/components/NoPermission.vue:11
msgid "You do not have permission to access this page." 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 #: lms/templates/notifications.html:27
msgid "You don't have any notifications." msgid "You don't have any notifications."
msgstr "" msgstr "Herhangi bir bildiriminiz yok."
#: lms/templates/quiz/quiz.js:137 #: lms/templates/quiz/quiz.js:137
msgid "You got" msgid "You got"
msgstr "" msgstr "Puanın"
#: frontend/src/components/Quiz.vue:234 #: frontend/src/components/Quiz.vue:234
#, python-format #, python-format
msgid "You got {0}% correct answers with a score of {1} out of {2}" 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 #: lms/job/doctype/lms_job_application/lms_job_application.py:22
msgid "You have already applied for this job." 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 #: 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." 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 #: lms/lms/doctype/lms_course_review/lms_course_review.py:17
msgid "You have already reviewed this course" msgid "You have already reviewed this course"
msgstr "" msgstr "Bu kursa zaten yorum eklediniz"
#: frontend/src/components/BatchOverlay.vue:136 #: frontend/src/components/BatchOverlay.vue:136
msgid "You have been enrolled in this batch" msgid "You have been enrolled in this batch"
msgstr "" msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:164 #: frontend/src/components/CourseCardOverlay.vue:162
msgid "You have been enrolled in this course" 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 #: 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." 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" msgid "You haven't enrolled for any courses"
msgstr "Herhangi bir kursa kaydolmadınız" 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" msgid "You need to login first to enroll for this course"
msgstr "" msgstr ""
@@ -5277,7 +5363,7 @@ msgstr ""
msgid "you can" msgid "you can"
msgstr "" 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" msgid "{0} Settings not found"
msgstr "" msgstr ""
@@ -5313,7 +5399,7 @@ msgstr ""
msgid "{0} is your evaluator" msgid "{0} is your evaluator"
msgstr "" msgstr ""
#: lms/lms/utils.py:690 #: lms/lms/utils.py:709
msgid "{0} mentioned you in a comment" msgid "{0} mentioned you in a comment"
msgstr "" msgstr ""
@@ -5321,11 +5407,11 @@ msgstr ""
msgid "{0} mentioned you in a comment in your batch." msgid "{0} mentioned you in a comment in your batch."
msgstr "" 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}" msgid "{0} mentioned you in a comment in {1}"
msgstr "" msgstr ""
#: lms/lms/utils.py:461 #: lms/lms/utils.py:480
msgid "{0}k" msgid "{0}k"
msgstr "" msgstr ""

View File

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