Merge branch 'develop' into develop

This commit is contained in:
沨沄极客
2024-11-22 15:29:15 +08:00
committed by GitHub
56 changed files with 3646 additions and 1538 deletions

View File

@@ -99,6 +99,7 @@ import { getSidebarLinks } from '../utils'
import { usersStore } from '@/stores/user'
import { sessionStore } from '@/stores/session'
import { useSidebar } from '@/stores/sidebar'
import { useSettings } from '@/stores/settings'
import { ChevronRight, Plus } from 'lucide-vue-next'
import { createResource, Button } from 'frappe-ui'
import PageModal from '@/components/Modals/PageModal.vue'
@@ -114,6 +115,7 @@ const isModerator = ref(false)
const isInstructor = ref(false)
const pageToEdit = ref(null)
const showWebPages = ref(false)
const settingsStore = useSettings()
onMounted(() => {
socket.on('publish_lms_notifications', (data) => {
@@ -183,6 +185,28 @@ const addQuizzes = () => {
}
}
const addPrograms = () => {
if (settingsStore.learningPaths.data) {
let activeFor = ['Programs', 'ProgramForm']
let index = 1
if (!isInstructor.value && !isModerator.value) {
sidebarLinks.value = sidebarLinks.value.filter(
(link) => link.label !== 'Courses'
)
activeFor.push('CourseDetail')
activeFor.push('Lesson')
index = 0
}
sidebarLinks.value.splice(index, 0, {
label: 'Programs',
icon: 'Route',
to: 'Programs',
activeFor: activeFor,
})
}
}
const openPageModal = (link) => {
showPageModal.value = true
pageToEdit.value = link
@@ -215,11 +239,11 @@ watch(userResource, () => {
isModerator.value = userResource.data.is_moderator
isInstructor.value = userResource.data.is_instructor
addQuizzes()
addPrograms()
}
})
const toggleSidebar = () => {
console.log(sidebarStore.isSidebarCollapsed)
sidebarStore.isSidebarCollapsed = !sidebarStore.isSidebarCollapsed
}
</script>

View File

@@ -92,7 +92,7 @@
{{ option.label }}
</div>
<div
v-if="option.label != option.description"
v-if="option.description"
class="text-xs text-gray-700"
v-html="option.description"
></div>

View File

@@ -44,6 +44,7 @@
</div>
</template>
</Autocomplete>
<p v-if="description" class="text-sm text-gray-600">{{ description }}</p>
</div>
</template>
@@ -67,6 +68,10 @@ const props = defineProps({
type: String,
default: '',
},
description: {
type: String,
default: '',
},
})
const emit = defineEmits(['update:modelValue', 'change'])
@@ -118,7 +123,7 @@ const options = createResource({
transform: (data) => {
return data.map((option) => {
return {
label: option.value,
label: option.label || option.value,
value: option.value,
description: option.description,
}

View File

@@ -303,9 +303,9 @@ const trashChapter = (chapterName) => {
}
const redirectToChapter = (chapter) => {
if (!chapter.is_scorm_package) return
event.preventDefault()
if (props.allowEdit) return
if (!chapter.is_scorm_package) return
if (!user.data) {
showToast(
__('You are not enrolled'),

View File

@@ -16,16 +16,16 @@
>
<template #body-content>
<div class="space-y-4 text-base">
<FormControl
ref="chapterInput"
label="Title"
v-model="chapter.title"
:required="true"
/>
<FormControl
:label="__('Is SCORM Package')"
<FormControl label="Title" v-model="chapter.title" :required="true" />
<Switch
size="sm"
:label="__('SCORM Package')"
:description="
__(
'Enable this only if you want to upload a SCORM package as a chapter.'
)
"
v-model="chapter.is_scorm_package"
type="checkbox"
/>
<div v-if="chapter.is_scorm_package">
<FileUploader
@@ -75,15 +75,15 @@ import {
Dialog,
FileUploader,
FormControl,
Switch,
} from 'frappe-ui'
import { defineModel, reactive, watch, ref } from 'vue'
import { defineModel, reactive, watch } from 'vue'
import { showToast, getFileSize } from '@/utils/'
import { capture } from '@/telemetry'
import { FileText, X } from 'lucide-vue-next'
const show = defineModel()
const outline = defineModel('outline')
const chapterInput = ref(null)
const props = defineProps({
course: {
@@ -209,14 +209,6 @@ watch(
}
)
/* watch(show, () => {
if (show.value) {
setTimeout(() => {
chapterInput.value.$el.querySelector('input').focus()
}, 100)
}
}) */
const validateFile = (file) => {
let extension = file.name.split('.').pop().toLowerCase()
if (extension !== 'zip') {

View File

@@ -161,25 +161,34 @@ const submitLiveClass = (close) => {
return createLiveClass.submit(liveClass, {
validate() {
if (!liveClass.title) {
return 'Please enter a title.'
return __('Please enter a title.')
}
if (!liveClass.date) {
return 'Please select a date.'
}
if (dayjs(liveClass.date).isSameOrBefore(dayjs(), 'day')) {
return 'Please select a future date.'
return __('Please select a date.')
}
if (!liveClass.time) {
return 'Please select a time.'
}
if (!valideTime()) {
return 'Please enter a valid time in the format HH:mm.'
}
if (!liveClass.duration) {
return 'Please select a duration.'
return __('Please select a time.')
}
if (!liveClass.timezone) {
return 'Please select a timezone.'
return __('Please select a timezone.')
}
if (!valideTime()) {
return __('Please enter a valid time in the format HH:mm.')
}
const liveClassDateTime = dayjs(`${liveClass.date}T${liveClass.time}`).tz(
liveClass.timezone,
true
)
if (
liveClassDateTime.isSameOrBefore(
dayjs().tz(liveClass.timezone, false),
'minute'
)
) {
return __('Please select a future date and time.')
}
if (!liveClass.duration) {
return __('Please select a duration.')
}
},
onSuccess() {

View File

@@ -12,9 +12,9 @@
id="existing"
value="existing"
v-model="questionType"
class="w-3 h-3 accent-gray-900"
class="w-3 h-3 cursor-pointer"
/>
<label for="existing">
<label for="existing" class="cursor-pointer">
{{ __('Add an existing question') }}
</label>
</div>
@@ -25,9 +25,9 @@
id="new"
value="new"
v-model="questionType"
class="w-3 h-3"
class="w-3 h-3 cursor-pointer"
/>
<label for="new">
<label for="new" class="cursor-pointer">
{{ __('Create a new question') }}
</label>
</div>
@@ -127,7 +127,7 @@ const populateFields = () => {
let counter = 1
fields.forEach((field) => {
while (counter <= 4) {
question[`${field}_${counter}`] = field === 'is_correct' ? false : ''
question[`${field}_${counter}`] = field === 'is_correct' ? false : null
counter++
}
})

View File

@@ -108,9 +108,31 @@ const tabsStructure = computed(() => {
hideLabel: true,
items: [
{
label: 'Members',
description: 'Manage the members of your learning system',
icon: 'UserRoundPlus',
label: 'General',
icon: 'Wrench',
fields: [
{
label: 'Enable Learning Paths',
name: 'enable_learning_paths',
description:
'This will enforce students to go through programs assigned to them in the correct order.',
type: 'checkbox',
},
{
label: 'Send calendar invite for evaluations',
name: 'send_calendar_invite_for_evaluations',
description:
'If enabled, it sends google calendar invite to the student for evaluations.',
type: 'checkbox',
},
{
label: 'Unsplash Access Key',
name: 'unsplash_access_key',
description:
'Optional. If this is set, students can pick a cover image from the unsplash library for their profile page. https://unsplash.com/documentation#getting-started.',
type: 'text',
},
],
},
],
},
@@ -156,9 +178,14 @@ const tabsStructure = computed(() => {
],
},
{
label: 'Settings',
hideLabel: true,
label: 'Lists',
hideLabel: false,
items: [
{
label: 'Members',
description: 'Manage the members of your learning system',
icon: 'UserRoundPlus',
},
{
label: 'Categories',
description: 'Manage the members of your learning system',

View File

@@ -397,6 +397,9 @@ const attempts = createResource({
watch(
() => quiz.data,
() => {
if (quiz.data) {
populateQuestions()
}
if (quiz.data && quiz.data.max_attempts) {
attempts.reload()
resetQuiz()

View File

@@ -29,6 +29,7 @@
<script setup>
import { Button, Badge } from 'frappe-ui'
import SettingFields from '@/components/SettingFields.vue'
import { showToast } from '@/utils'
const props = defineProps({
fields: {
@@ -54,7 +55,14 @@ const update = () => {
props.data.doc[f.name] = f.value
}
})
props.data.save.submit()
props.data.save.submit(
{},
{
onError(err) {
showToast('Error', err.messages?.[0] || err, 'x')
},
}
)
}
</script>

View File

@@ -90,6 +90,7 @@
:type="field.type"
:rows="field.rows"
:options="field.options"
:description="field.description"
/>
</div>
</div>
@@ -100,7 +101,7 @@
import { FormControl, FileUploader, Button, Switch } from 'frappe-ui'
import { computed } from 'vue'
import { getFileSize, validateFile } from '@/utils'
import { X, FileText } from 'lucide-vue-next'
import { X } from 'lucide-vue-next'
import Link from '@/components/Controls/Link.vue'
import CodeEditor from '@/components/Controls/CodeEditor.vue'

View File

@@ -7,7 +7,7 @@
>
<div
class="flex items-center w-full duration-300 ease-in-out group"
:class="isCollapsed ? 'p-1' : 'px-2 py-1'"
:class="isCollapsed ? 'p-1 relative' : 'px-2 py-1'"
>
<Tooltip :text="link.label" placement="right">
<slot name="icon">
@@ -29,7 +29,15 @@
>
{{ __(link.label) }}
</span>
<span v-if="link.count" class="!ml-auto block text-xs text-gray-600">
<span
v-if="link.count"
class="!ml-auto block text-xs text-gray-600"
:class="
isCollapsed && link.count > 9
? 'absolute top-[2px] right-0 bg-white'
: ''
"
>
{{ link.count }}
</span>
<div

View File

@@ -30,6 +30,7 @@
</FormControl>
</div>
<router-link
v-if="user.data?.is_moderator || user.data?.is_instructor"
:to="{
name: 'CourseForm',
params: {
@@ -37,7 +38,7 @@
},
}"
>
<Button v-if="user.data?.is_moderator" variant="solid">
<Button variant="solid">
<template #prefix>
<Plus class="h-4 w-4" />
</template>
@@ -159,30 +160,45 @@
<script setup>
import {
Breadcrumbs,
Tabs,
Badge,
Breadcrumbs,
Button,
FormControl,
call,
createResource,
FormControl,
Tabs,
} from 'frappe-ui'
import CourseCard from '@/components/CourseCard.vue'
import { BookOpen, Plus, Search } from 'lucide-vue-next'
import { ref, computed, inject, onMounted, watch } from 'vue'
import { updateDocumentTitle } from '@/utils'
import { useRouter } from 'vue-router'
import { useSettings } from '@/stores/settings'
const user = inject('$user')
const searchQuery = ref('')
const currentCategory = ref(null)
const hasCourses = ref(false)
const router = useRouter()
const settings = useSettings()
onMounted(() => {
checkLearningPath()
let queries = new URLSearchParams(location.search)
if (queries.has('category')) {
currentCategory.value = queries.get('category')
}
})
const checkLearningPath = () => {
if (
settings.learningPaths.data &&
(!user.data?.is_moderator || !user.data?.is_instructor)
) {
router.push({ name: 'Programs' })
}
}
const courses = createResource({
url: 'lms.lms.utils.get_courses',
cache: ['courses', user.data?.email],

View File

@@ -6,7 +6,11 @@
class="sticky top-0 z-10 flex flex-col md:flex-row md:items-center justify-between border-b overflow-hidden bg-white px-3 py-2.5 sm:px-5"
>
<Breadcrumbs class="text-ellipsis" :items="breadcrumbs" />
<Button variant="solid" @click="saveLesson()" class="mt-3 md:mt-0">
<Button
variant="solid"
@click="saveLesson({ showSuccessMessage: true })"
class="mt-3 md:mt-0"
>
{{ __('Save') }}
</Button>
</header>
@@ -94,6 +98,7 @@ const instructorEditor = ref(null)
const user = inject('$user')
const openInstructorEditor = ref(false)
let autoSaveInterval
let showSuccessMessage = false
const props = defineProps({
courseName: {
@@ -117,6 +122,7 @@ onMounted(() => {
capture('lesson_form_opened')
editor.value = renderEditor('content')
instructorEditor.value = renderEditor('instructor-notes')
window.addEventListener('keydown', keyboardShortcut)
})
const renderEditor = (holder) => {
@@ -186,12 +192,24 @@ const addInstructorNotes = (data) => {
const enableAutoSave = () => {
autoSaveInterval = setInterval(() => {
saveLesson()
saveLesson({ showSuccessMessage: false })
}, 10000)
}
const keyboardShortcut = (e) => {
if (
e.key === 's' &&
(e.ctrlKey || e.metaKey) &&
!e.target.classList.contains('ProseMirror')
) {
saveLesson({ showSuccessMessage: true })
e.preventDefault()
}
}
onBeforeUnmount(() => {
clearInterval(autoSaveInterval)
window.removeEventListener('keydown', keyboardShortcut)
})
const newLessonResource = createResource({
@@ -343,7 +361,11 @@ const convertToJSON = (lessonData) => {
return blocks
}
const saveLesson = () => {
const saveLesson = (e) => {
showSuccessMessage = false
if (typeof e != 'undefined' && e.showSuccessMessage) {
showSuccessMessage = true
}
editor.value.save().then((outputData) => {
lesson.content = JSON.stringify(outputData)
instructorEditor.value.save().then((outputData) => {
@@ -392,6 +414,11 @@ const editCurrentLesson = () => {
validate() {
return validateLesson()
},
onSuccess() {
showSuccessMessage
? showToast('Success', 'Lesson updated successfully', 'check')
: ''
},
onError(err) {
showToast('Error', err.message, 'x')
},

View File

@@ -0,0 +1,354 @@
<template>
<header
class="sticky top-0 z-10 flex flex-col md:flex-row md:items-center justify-between border-b bg-white px-3 py-2.5 sm:px-5"
>
<Breadcrumbs :items="breadbrumbs" />
<Button variant="solid">
{{ __('Save') }}
</Button>
</header>
<div v-if="program.doc" class="pt-5 px-5 w-3/4 mx-auto space-y-10">
<FormControl v-model="program.doc.title" :label="__('Title')" />
<!-- Courses -->
<div>
<div class="flex items-center justify-between mb-2">
<div class="text-lg font-semibold">
{{ __('Program Courses') }}
</div>
<Button
@click="
() => {
currentForm = 'course'
showDialog = true
}
"
>
<template #prefix>
<Plus class="w-4 h-4" />
</template>
{{ __('Add') }}
</Button>
</div>
<ListView
:columns="courseColumns"
:rows="program.doc.program_courses"
row-key="name"
:options="{
showTooltip: false,
}"
>
<ListHeader
class="mb-2 grid items-center space-x-4 rounded bg-gray-100 p-2"
>
<ListHeaderItem :item="item" v-for="item in courseColumns" />
</ListHeader>
<ListRows>
<Draggable
:list="program.doc.program_courses"
item-key="name"
group="items"
@end="updateOrder"
>
<template #item="{ element: row }">
<ListRow :row="row" />
</template>
</Draggable>
</ListRows>
<ListSelectBanner>
<template #actions="{ unselectAll, selections }">
<div class="flex gap-2">
<Button
variant="ghost"
@click="remove(selections, unselectAll, 'program_courses')"
>
<Trash2 class="h-4 w-4 stroke-1.5" />
</Button>
</div>
</template>
</ListSelectBanner>
</ListView>
</div>
<!-- Members -->
<div>
<div class="flex items-center justify-between mb-2">
<div class="text-lg font-semibold">
{{ __('Program Members') }}
</div>
<Button
@click="
() => {
currentForm = 'member'
showDialog = true
}
"
>
<template #prefix>
<Plus class="w-4 h-4" />
</template>
{{ __('Add') }}
</Button>
</div>
<ListView
:columns="memberColumns"
:rows="program.doc.program_members"
row-key="name"
:options="{
showTooltip: false,
}"
>
<ListHeader
class="mb-2 grid items-center space-x-4 rounded bg-gray-100 p-2"
>
<ListHeaderItem :item="item" v-for="item in memberColumns" />
</ListHeader>
<ListRows>
<ListRow :row="row" v-for="row in program.doc.program_members" />
</ListRows>
<ListSelectBanner>
<template #actions="{ unselectAll, selections }">
<div class="flex gap-2">
<Button
variant="ghost"
@click="remove(selections, unselectAll, 'program_members')"
>
<Trash2 class="h-4 w-4 stroke-1.5" />
</Button>
</div>
</template>
</ListSelectBanner>
</ListView>
</div>
</div>
<Dialog
v-model="showDialog"
:options="{
title:
currentForm == 'course'
? __('New Program Course')
: __('New Program Member'),
actions: [
{
label: __('Add'),
variant: 'solid',
onClick: () =>
currentForm == 'course'
? addProgramCourse(close)
: addProgramMember(close),
},
],
}"
>
<template #body-content>
<Link
v-if="currentForm == 'course'"
v-model="course"
doctype="LMS Course"
:filters="{
disable_self_learning: 1,
}"
:label="__('Program Course')"
:description="
__(
'Only courses for which self learning is disabled can be added to program.'
)
"
/>
<Link
v-if="currentForm == 'member'"
v-model="member"
doctype="User"
:filters="{
ignore_user_type: 1,
}"
:label="__('Program Member')"
/>
</template>
</Dialog>
</template>
<script setup>
import {
Breadcrumbs,
Button,
call,
createDocumentResource,
Dialog,
FormControl,
ListView,
ListRows,
ListRow,
ListHeader,
ListHeaderItem,
ListSelectBanner,
} from 'frappe-ui'
import { computed, ref } from 'vue'
import { Plus, Trash2 } from 'lucide-vue-next'
import Link from '@/components/Controls/Link.vue'
import { showToast } from '@/utils/'
import Draggable from 'vuedraggable'
const showDialog = ref(false)
const currentForm = ref(null)
const course = ref(null)
const member = ref(null)
const props = defineProps({
programName: {
type: String,
required: true,
},
})
const program = createDocumentResource({
doctype: 'LMS Program',
name: props.programName,
auto: true,
cache: ['program', props.programName],
})
const addProgramCourse = () => {
program.setValue.submit(
{
program_courses: [
...program.doc.program_courses,
{ course: course.value },
],
},
{
onSuccess(data) {
showDialog.value = false
course.value = null
showToast(__('Success'), __('Course added to program'), 'check')
program.reload()
},
onError(err) {
showToast('Error', err.messages?.[0] || err, 'x')
},
}
)
}
const addProgramMember = () => {
program.setValue.submit(
{
program_members: [
...program.doc.program_members,
{ member: member.value },
],
},
{
onSuccess(data) {
showDialog.value = false
member.value = null
showToast(__('Success'), __('Member added to program'), 'check')
program.reload()
},
onError(err) {
showToast('Error', err.messages?.[0] || err, 'x')
},
}
)
}
const remove = (selections, unselectAll, doctype) => {
selections = Array.from(selections)
program.setValue.submit(
{
[doctype]: program.doc[doctype].filter(
(row) => !selections.includes(row.name)
),
},
{
onSuccess(data) {
unselectAll()
showToast(__('Success'), __('Items removed successfully'), 'check')
program.reload()
},
onError(err) {
showToast('Error', err.messages?.[0] || err, 'x')
},
}
)
}
const updateOrder = (e) => {
let sourceIdx = e.from.dataset.idx
let targetIdx = e.to.dataset.idx
let courses = program.doc.program_courses
courses.splice(targetIdx, 0, courses.splice(sourceIdx, 1)[0])
courses.forEach((course, index) => {
course.idx = index + 1
})
program.setValue.submit(
{
program_courses: courses,
},
{
onSuccess(data) {
showToast(__('Success'), __('Course moved successfully'), 'check')
program.reload()
},
onError(err) {
showToast('Error', err.messages?.[0] || err, 'x')
},
}
)
}
const courseColumns = computed(() => {
return [
{
label: 'Title',
key: 'course_title',
width: 3,
},
{
label: 'ID',
key: 'course',
width: 3,
},
]
})
const memberColumns = computed(() => {
return [
{
label: 'Member',
key: 'member',
width: 3,
align: 'left',
},
{
label: 'Full Name',
key: 'full_name',
width: 3,
align: 'left',
},
{
label: 'Progress',
key: 'progress',
width: 3,
align: 'left',
},
]
})
const breadbrumbs = computed(() => {
return [
{
label: 'Programs',
route: { name: 'Programs' },
},
{
label: props.programName === 'new' ? 'New Program' : props.programName,
},
]
})
</script>

View File

@@ -0,0 +1,185 @@
<template>
<header
class="sticky top-0 z-10 flex items-center justify-between border-b bg-white px-3 py-2.5 sm:px-5"
>
<Breadcrumbs :items="breadbrumbs" />
<Button
v-if="user.data?.is_moderator || user.data?.is_instructor"
@click="showDialog = true"
variant="solid"
>
<template #prefix>
<Plus class="h-4 w-4 stroke-1.5" />
</template>
{{ __('New') }}
</Button>
</header>
<div v-if="programs.data?.length" class="pt-5 px-5">
<div v-for="program in programs.data" class="mb-20">
<div class="flex items-center justify-between">
<div class="text-xl font-semibold">
{{ program.name }}
</div>
<div class="flex items-center space-x-2">
<Badge
v-if="program.members"
variant="subtle"
theme="green"
size="lg"
>
{{ program.members }}
{{
program.members == 1 ? __(singularize('members')) : __('members')
}}
</Badge>
<Badge
v-if="program.progress"
variant="subtle"
theme="blue"
size="lg"
>
{{ program.progress }}{{ __('% completed') }}
</Badge>
<router-link
v-if="user.data?.is_moderator || user.data?.is_instructor"
:to="{
name: 'ProgramForm',
params: { programName: program.name },
}"
>
<Button>
<template #prefix>
<Edit class="h-4 w-4 stroke-1.5" />
</template>
{{ __('Edit') }}
</Button>
</router-link>
</div>
</div>
<div
v-if="program.courses?.length"
class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-5 mt-5"
>
<CourseCard
v-for="course in program.courses"
:course="course"
@click="enrollMember(program.name, course.name)"
class="cursor-pointer"
/>
</div>
<div v-else class="text-sm italic text-gray-600 mt-4">
{{ __('No courses in this program') }}
</div>
</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 programs found') }}
</div>
<div class="leading-5">
{{
__(
'There are no programs available at the moment. Keep an eye out, fresh learning experiences are on the way soon!'
)
}}
</div>
</div>
<Dialog
v-model="showDialog"
:options="{
title: __('New Program'),
actions: [
{
label: __('Create'),
variant: 'solid',
onClick: () => createProgram(close),
},
],
}"
>
<template #body-content>
<FormControl :label="__('Title')" v-model="title" />
</template>
</Dialog>
</template>
<script setup>
import {
Badge,
Breadcrumbs,
Button,
call,
createResource,
Dialog,
FormControl,
} from 'frappe-ui'
import { computed, inject, ref } from 'vue'
import { BookOpen, Edit, Plus } from 'lucide-vue-next'
import CourseCard from '@/components/CourseCard.vue'
import { useRouter } from 'vue-router'
import { showToast, singularize } from '@/utils'
const user = inject('$user')
const showDialog = ref(false)
const router = useRouter()
const title = ref('')
const programs = createResource({
url: 'lms.lms.utils.get_programs',
auto: true,
cache: 'programs',
})
const createProgram = (close) => {
call('frappe.client.insert', {
doc: {
doctype: 'LMS Program',
title: title.value,
},
}).then((res) => {
router.push({ name: 'ProgramForm', params: { programName: res.name } })
})
}
const enrollMember = (program, course) => {
call('lms.lms.utils.enroll_in_program_course', {
program: program,
course: course,
})
.then((data) => {
if (data.current_lesson) {
router.push({
name: 'Lesson',
params: {
courseName: course,
chapterNumber: data.current_lesson.split('-')[0],
lessonNumber: data.current_lesson.split('-')[1],
},
})
} else if (data) {
router.push({
name: 'Lesson',
params: {
courseName: course,
chapterNumber: 1,
lessonNumber: 1,
},
})
}
})
.catch((err) => {
showToast('Error', err.messages?.[0] || err, 'x')
})
}
const breadbrumbs = computed(() => [
{
label: 'Programs',
},
])
</script>

View File

@@ -141,6 +141,7 @@
v-slot="{ idx, column, item }"
v-for="row in quiz.questions"
@click="openQuestionModal(row)"
class="cursor-pointer"
>
<ListRowItem :item="item">
<div

View File

@@ -65,11 +65,11 @@ onBeforeMount(() => {
Initialize: () => 'true',
Terminate: () => 'true',
GetValue: (key) => {
console.log(`GetValue called for key: ${key}`)
console.log(`GET: ${key}`)
return getDataFromLMS(key)
},
SetValue: (key, value) => {
console.log(`SetValue called for key: ${key} to value: ${value}`)
console.log(`SET: ${key} to value: ${value}`)
saveDataToLMS(key, value)
return 'true'
@@ -96,7 +96,6 @@ onBeforeMount(() => {
LMSGetErrorString: () => '',
LMSGetDiagnostic: () => '',
}
console.log(window.API_1484_11)
})
const getDataFromLMS = (key) => {

View File

@@ -182,6 +182,17 @@ const routes = [
component: () => import('@/pages/QuizSubmission.vue'),
props: true,
},
{
path: '/programs/:programName',
name: 'ProgramForm',
component: () => import('@/pages/ProgramForm.vue'),
props: true,
},
{
path: '/programs',
name: 'Programs',
component: () => import('@/pages/Programs.vue'),
},
]
let router = createRouter({

View File

@@ -1,12 +1,25 @@
import { defineStore } from 'pinia'
import { ref } from 'vue'
import { createResource } from 'frappe-ui'
export const useSettings = defineStore('settings', () => {
const isSettingsOpen = ref(false)
const activeTab = ref(null)
const learningPaths = createResource({
url: 'frappe.client.get_single_value',
makeParams(values) {
return {
doctype: 'LMS Settings',
field: 'enable_learning_paths',
}
},
auto: true,
cache: ['learningPaths'],
})
return {
isSettingsOpen,
activeTab,
learningPaths,
}
})

View File

@@ -5,6 +5,8 @@ import updateLocale from 'dayjs/esm/plugin/updateLocale'
import isToday from 'dayjs/esm/plugin/isToday'
import isSameOrBefore from 'dayjs/esm/plugin/isSameOrBefore'
import isSameOrAfter from 'dayjs/esm/plugin/isSameOrAfter'
import utc from 'dayjs/esm/plugin/utc'
import timezone from 'dayjs/esm/plugin/timezone'
dayjs.extend(updateLocale)
dayjs.extend(relativeTime)
@@ -12,5 +14,7 @@ dayjs.extend(localizedFormat)
dayjs.extend(isToday)
dayjs.extend(isSameOrBefore)
dayjs.extend(isSameOrAfter)
dayjs.extend(utc)
dayjs.extend(timezone)
export default dayjs

View File

@@ -1 +1 @@
__version__ = "2.11.0"
__version__ = "2.12.0"

View File

@@ -93,15 +93,15 @@ def save_progress(lesson, course):
frappe.db.set_value("LMS Enrollment", membership, "current_lesson", lesson)
quiz_completed = get_quiz_progress(lesson)
if not quiz_completed:
return 0
if frappe.db.exists(
"LMS Course Progress", {"lesson": lesson, "member": frappe.session.user}
):
return
quiz_completed = get_quiz_progress(lesson)
if not quiz_completed:
return 0
frappe.get_doc(
{
"doctype": "LMS Course Progress",

View File

@@ -193,13 +193,15 @@
"depends_on": "paid_batch",
"fieldname": "amount",
"fieldtype": "Currency",
"label": "Amount"
"label": "Amount",
"mandatory_depends_on": "paid_batch"
},
{
"depends_on": "paid_batch",
"fieldname": "currency",
"fieldtype": "Link",
"label": "Currency",
"mandatory_depends_on": "paid_batch",
"options": "Currency"
},
{
@@ -328,7 +330,7 @@
],
"index_web_pages_for_search": 1,
"links": [],
"modified": "2024-07-18 18:06:37.229885",
"modified": "2024-11-18 16:28:41.336928",
"modified_by": "Administrator",
"module": "LMS",
"name": "LMS Batch",

View File

@@ -28,6 +28,7 @@ class LMSBatch(Document):
self.validate_duplicate_courses()
self.validate_duplicate_students()
self.validate_payments_app()
self.validate_amount_and_currency()
self.validate_duplicate_assessments()
self.validate_membership()
self.validate_timetable()
@@ -64,6 +65,10 @@ class LMSBatch(Document):
if "payments" not in installed_apps:
frappe.throw(_("Please install the Payments app to create a paid batches."))
def validate_amount_and_currency(self):
if self.paid_batch and (not self.amount or not self.currency):
frappe.throw(_("Amount and currency are required for paid batches."))
def validate_duplicate_assessments(self):
assessments = [row.assessment_name for row in self.assessment]
for assessment in self.assessment:

View File

@@ -19,6 +19,7 @@ class LMSCourse(Document):
self.validate_video_link()
self.validate_status()
self.validate_payments_app()
self.validate_amount_and_currency()
self.image = validate_image(self.image)
def validate_published(self):
@@ -51,6 +52,10 @@ class LMSCourse(Document):
if "payments" not in installed_apps:
frappe.throw(_("Please install the Payments app to create a paid courses."))
def validate_amount_and_currency(self):
if self.paid_course and (not self.amount and not self.currency):
frappe.throw(_("Amount and currency are required for paid courses."))
def on_update(self):
if not self.upcoming and self.has_value_changed("upcoming"):
self.send_email_to_interested_users()

View File

@@ -4,6 +4,7 @@
import frappe
from frappe import _
from frappe.model.document import Document
from frappe.utils import ceil
class LMSEnrollment(Document):
@@ -11,6 +12,9 @@ class LMSEnrollment(Document):
self.validate_membership_in_same_batch()
self.validate_membership_in_different_batch_same_course()
def on_update(self):
self.update_program_progress()
def validate_membership_in_same_batch(self):
filters = {"member": self.member, "course": self.course, "name": ["!=", self.name]}
if self.batch_old:
@@ -55,6 +59,26 @@ class LMSEnrollment(Document):
)
)
def update_program_progress(self):
programs = frappe.get_all(
"LMS Program Member", {"member": self.member}, ["parent", "name"]
)
for program in programs:
total_progress = 0
courses = frappe.get_all(
"LMS Program Course", {"parent": program.parent}, pluck="course"
)
for course in courses:
progress = frappe.db.get_value(
"LMS Enrollment", {"course": course, "member": self.member}, "progress"
)
progress = progress or 0
total_progress += progress
average_progress = ceil(total_progress / len(courses))
frappe.db.set_value("LMS Program Member", program.name, "progress", average_progress)
@frappe.whitelist()
def create_membership(

View File

View File

@@ -0,0 +1,8 @@
// Copyright (c) 2024, Frappe and contributors
// For license information, please see license.txt
// frappe.ui.form.on("LMS Program", {
// refresh(frm) {
// },
// });

View File

@@ -0,0 +1,84 @@
{
"actions": [],
"allow_rename": 1,
"autoname": "field:title",
"creation": "2024-11-18 12:27:13.283169",
"doctype": "DocType",
"engine": "InnoDB",
"field_order": [
"title",
"program_courses",
"program_members"
],
"fields": [
{
"fieldname": "program_courses",
"fieldtype": "Table",
"label": "Program Courses",
"options": "LMS Program Course"
},
{
"fieldname": "program_members",
"fieldtype": "Table",
"label": "Program Members",
"options": "LMS Program Member"
},
{
"fieldname": "title",
"fieldtype": "Data",
"in_list_view": 1,
"label": "Title",
"reqd": 1,
"unique": 1
}
],
"index_web_pages_for_search": 1,
"links": [],
"modified": "2024-11-20 12:26:02.214628",
"modified_by": "Administrator",
"module": "LMS",
"name": "LMS Program",
"naming_rule": "By fieldname",
"owner": "Administrator",
"permissions": [
{
"create": 1,
"delete": 1,
"email": 1,
"export": 1,
"print": 1,
"read": 1,
"report": 1,
"role": "System Manager",
"share": 1,
"write": 1
},
{
"create": 1,
"delete": 1,
"email": 1,
"export": 1,
"print": 1,
"read": 1,
"report": 1,
"role": "Moderator",
"share": 1,
"write": 1
},
{
"create": 1,
"delete": 1,
"email": 1,
"export": 1,
"print": 1,
"read": 1,
"report": 1,
"role": "Course Creator",
"share": 1,
"write": 1
}
],
"sort_field": "creation",
"sort_order": "DESC",
"states": []
}

View File

@@ -0,0 +1,32 @@
# Copyright (c) 2024, Frappe and contributors
# For license information, please see license.txt
import frappe
from frappe import _
from frappe.model.document import Document
class LMSProgram(Document):
def validate(self):
self.validate_program_courses()
self.validate_program_members()
def validate_program_courses(self):
courses = [row.course for row in self.program_courses]
duplicates = {course for course in courses if courses.count(course) > 1}
if len(duplicates):
frappe.throw(
_("Course {0} has already been added to this batch.").format(
frappe.bold(next(iter(duplicates)))
)
)
def validate_program_members(self):
members = [row.member for row in self.program_members]
duplicates = {member for member in members if members.count(member) > 1}
if len(duplicates):
frappe.throw(
_("Member {0} has already been added to this batch.").format(
frappe.bold(next(iter(duplicates)))
)
)

View File

@@ -0,0 +1,21 @@
# Copyright (c) 2024, Frappe and Contributors
# See license.txt
# import frappe
from frappe.tests import IntegrationTestCase, UnitTestCase
# On IntegrationTestCase, the doctype test records and all
# link-field test record depdendencies are recursively loaded
# Use these module variables to add/remove to/from that list
EXTRA_TEST_RECORD_DEPENDENCIES = [] # eg. ["User"]
IGNORE_TEST_RECORD_DEPENDENCIES = [] # eg. ["User"]
class TestLMSProgram(UnitTestCase):
"""
Unit tests for LMSProgram.
Use this class for testing individual functions and methods.
"""
pass

View File

@@ -0,0 +1,42 @@
{
"actions": [],
"allow_rename": 1,
"creation": "2024-11-18 12:27:37.030302",
"doctype": "DocType",
"editable_grid": 1,
"engine": "InnoDB",
"field_order": [
"course",
"course_title"
],
"fields": [
{
"fieldname": "course",
"fieldtype": "Link",
"in_list_view": 1,
"label": "Course",
"options": "LMS Course",
"reqd": 1
},
{
"fetch_from": "course.title",
"fieldname": "course_title",
"fieldtype": "Data",
"in_list_view": 1,
"label": "Course Title",
"read_only": 1
}
],
"index_web_pages_for_search": 1,
"istable": 1,
"links": [],
"modified": "2024-11-18 12:43:46.800199",
"modified_by": "Administrator",
"module": "LMS",
"name": "LMS Program Course",
"owner": "Administrator",
"permissions": [],
"sort_field": "creation",
"sort_order": "DESC",
"states": []
}

View File

@@ -0,0 +1,9 @@
# Copyright (c) 2024, Frappe and contributors
# For license information, please see license.txt
# import frappe
from frappe.model.document import Document
class LMSProgramCourse(Document):
pass

View File

@@ -0,0 +1,50 @@
{
"actions": [],
"allow_rename": 1,
"creation": "2024-11-18 12:29:13.615014",
"doctype": "DocType",
"editable_grid": 1,
"engine": "InnoDB",
"field_order": [
"member",
"full_name",
"progress"
],
"fields": [
{
"fieldname": "member",
"fieldtype": "Link",
"in_list_view": 1,
"label": "Member",
"options": "User",
"reqd": 1
},
{
"fetch_from": "member.full_name",
"fieldname": "full_name",
"fieldtype": "Data",
"in_list_view": 1,
"label": "Full Name",
"read_only": 1
},
{
"default": "0",
"fieldname": "progress",
"fieldtype": "Int",
"in_list_view": 1,
"label": "Progress"
}
],
"index_web_pages_for_search": 1,
"istable": 1,
"links": [],
"modified": "2024-11-21 12:51:31.882576",
"modified_by": "Administrator",
"module": "LMS",
"name": "LMS Program Member",
"owner": "Administrator",
"permissions": [],
"sort_field": "creation",
"sort_order": "DESC",
"states": []
}

View File

@@ -0,0 +1,9 @@
# Copyright (c) 2024, Frappe and contributors
# For license information, please see license.txt
# import frappe
from frappe.model.document import Document
class LMSProgramMember(Document):
pass

View File

@@ -16,6 +16,7 @@ class LMSQuestion(Document):
def validate_correct_answers(question):
if question.type == "Choices":
validate_duplicate_options(question)
validate_minimum_options(question)
validate_correct_options(question)
elif question.type == "User Input":
validate_possible_answer(question)
@@ -42,6 +43,11 @@ def validate_correct_options(question):
frappe.throw(_("At least one option must be correct for this question."))
def validate_minimum_options(question):
if question.type == "Choices" and (not question.option_1 or not question.option_2):
frappe.throw(_("Minimum two options are required for multiple choice questions."))
def validate_possible_answer(question):
possible_answers = []
possible_answers_fields = [

View File

@@ -5,13 +5,15 @@
"editable_grid": 1,
"engine": "InnoDB",
"field_order": [
"general_tab",
"default_home",
"send_calendar_invite_for_evaluations",
"is_onboarding_complete",
"column_break_zdel",
"enable_learning_paths",
"unsplash_access_key",
"livecode_url",
"section_break_szgq",
"send_calendar_invite_for_evaluations",
"show_day_view",
"column_break_2",
"show_dashboard",
@@ -80,6 +82,7 @@
{
"fieldname": "mentor_request_section",
"fieldtype": "Section Break",
"hidden": 1,
"label": "Mentor Request"
},
{
@@ -127,6 +130,7 @@
{
"fieldname": "section_break_szgq",
"fieldtype": "Section Break",
"hidden": 1,
"label": "Batch Settings"
},
{
@@ -336,12 +340,23 @@
"fieldname": "payments_app_is_not_installed",
"fieldtype": "HTML",
"label": "Payments app is not installed"
},
{
"default": "0",
"fieldname": "enable_learning_paths",
"fieldtype": "Check",
"label": "Enable Learning Paths"
},
{
"fieldname": "general_tab",
"fieldtype": "Tab Break",
"label": "General"
}
],
"index_web_pages_for_search": 1,
"issingle": 1,
"links": [],
"modified": "2024-10-01 12:15:49.800242",
"modified": "2024-11-20 11:55:05.358421",
"modified_by": "Administrator",
"module": "LMS",
"name": "LMS Settings",
@@ -356,6 +371,13 @@
"role": "System Manager",
"share": 1,
"write": 1
},
{
"email": 1,
"print": 1,
"read": 1,
"role": "LMS Student",
"share": 1
}
],
"sort_field": "modified",

View File

@@ -1751,3 +1751,81 @@ def enroll_in_batch(batch, payment_name=None):
)
student.save(ignore_permissions=True)
@frappe.whitelist()
def get_programs():
if (
has_course_moderator_role()
or has_course_instructor_role()
or has_course_evaluator_role()
):
programs = frappe.get_all("LMS Program", fields=["name"])
else:
programs = frappe.get_all(
"LMS Program Member", {"member": frappe.session.user}, ["parent as name", "progress"]
)
for program in programs:
program_courses = frappe.get_all(
"LMS Program Course", {"parent": program.name}, ["course"], order_by="idx"
)
program.courses = []
for course in program_courses:
program.courses.append(get_course_details(course.course))
program.members = frappe.db.count("LMS Program Member", {"parent": program.name})
return programs
@frappe.whitelist()
def enroll_in_program_course(program, course):
enrollment = frappe.db.exists(
"LMS Enrollment", {"member": frappe.session.user, "course": course}
)
if enrollment:
enrollment = frappe.db.get_value(
"LMS Enrollment", enrollment, ["name", "current_lesson"], as_dict=1
)
enrollment.current_lesson = get_lesson_index(enrollment.current_lesson)
return enrollment
program_courses = frappe.get_all(
"LMS Program Course", {"parent": program}, ["course", "idx"], order_by="idx"
)
current_course_idx = [
program_course.idx
for program_course in program_courses
if program_course.course == course
][0]
for program_course in program_courses:
if program_course.idx < current_course_idx:
enrollment = frappe.db.get_value(
"LMS Enrollment",
{"member": frappe.session.user, "course": program_course.course},
["name", "progress"],
as_dict=1,
)
if enrollment and enrollment.progress != 100:
frappe.throw(
_("Please complete the previous courses in the program to enroll in this course.")
)
elif not enrollment:
frappe.throw(
_("Please complete the previous courses in the program to enroll in this course.")
)
else:
continue
enrollment = frappe.new_doc("LMS Enrollment")
enrollment.update(
{
"member": frappe.session.user,
"course": course,
}
)
enrollment.save()
return enrollment

View File

@@ -1,4 +1,5 @@
{
"app": "lms",
"charts": [
{
"chart_name": "New Signups",
@@ -145,7 +146,7 @@
"type": "Link"
}
],
"modified": "2024-08-09 13:19:06.273056",
"modified": "2024-11-21 12:16:25.886431",
"modified_by": "Administrator",
"module": "LMS",
"name": "LMS",
@@ -212,5 +213,6 @@
"type": "DocType"
}
],
"title": "LMS"
}
"title": "LMS",
"type": "Workspace"
}

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-11-08 16:04+0000\n"
"PO-Revision-Date: 2024-11-11 15:23\n"
"POT-Creation-Date: 2024-11-15 16:04+0000\n"
"PO-Revision-Date: 2024-11-18 17:31\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Arabic\n"
"MIME-Version: 1.0\n"
@@ -109,7 +109,7 @@ msgstr "إضافة"
msgid "Add Chapter"
msgstr ""
#: frontend/src/components/CourseOutline.vue:102
#: frontend/src/components/CourseOutline.vue:124
msgid "Add Lesson"
msgstr ""
@@ -217,7 +217,7 @@ msgstr ""
msgid "Allow accessing future dates"
msgstr ""
#: frontend/src/pages/BatchForm.vue:29
#: frontend/src/pages/BatchForm.vue:33
msgid "Allow self enrollment"
msgstr ""
@@ -228,7 +228,7 @@ msgstr "مسجل بالفعل"
#. Label of the amount (Currency) field in DocType 'Web Form'
#. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the amount (Currency) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:209 lms/fixtures/custom_field.json
#: frontend/src/pages/BatchForm.vue:221 lms/fixtures/custom_field.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/public/js/common_functions.js:379
@@ -258,11 +258,11 @@ msgstr ""
msgid "Amount with GST"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:32
#: frontend/src/components/Modals/AnnouncementModal.vue:33
msgid "Announcement"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:99
#: frontend/src/components/Modals/AnnouncementModal.vue:100
msgid "Announcement has been sent successfully"
msgstr ""
@@ -280,7 +280,7 @@ msgstr ""
msgid "Appears on the course card in the course list"
msgstr ""
#: frontend/src/pages/BatchForm.vue:55 frontend/src/pages/BatchForm.vue:73
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/BatchForm.vue:77
msgid "Appears when the batch URL is shared on any online platform"
msgstr ""
@@ -319,10 +319,6 @@ msgstr ""
msgid "Apps"
msgstr ""
#: frontend/src/components/CourseOutline.vue:209
msgid "Are you sure you want to delete this lesson?"
msgstr ""
#. Label of the user_category (Check) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Ask User Category during Signup"
@@ -420,7 +416,7 @@ msgid "Auto Assign"
msgstr ""
#. Label of the auto_recording (Select) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/LiveClassModal.vue:66
#: frontend/src/components/Modals/LiveClassModal.vue:71
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Auto Recording"
msgstr ""
@@ -482,7 +478,8 @@ msgid "Batch Description"
msgstr "وصف الباتش"
#. Label of the batch_details (Text Editor) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:98 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:104
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:349
#: lms/templates/emails/batch_confirmation.html:30
msgid "Batch Details"
@@ -547,10 +544,6 @@ msgstr ""
msgid "Batch end date cannot be before the batch start date"
msgstr ""
#: lms/lms/web_form/add_a_new_batch/add_a_new_batch.js:6
msgid "Batch {0} has been successfully created!"
msgstr ""
#. Group in LMS Course's connections
#. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue:8 lms/lms/doctype/lms_course/lms_course.json
@@ -581,7 +574,7 @@ msgstr "تفاصيل الفاتورة"
msgid "Billing Name"
msgstr ""
#: frontend/src/components/Modals/EditProfile.vue:72
#: frontend/src/components/Modals/EditProfile.vue:75
msgid "Bio"
msgstr "نبذة"
@@ -649,7 +642,7 @@ msgstr ""
#. Label of the category (Link) field in DocType 'LMS Batch'
#. Label of the category (Data) field in DocType 'LMS Category'
#. Label of the category (Link) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/BatchForm.vue:202 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/JobDetail.vue:102
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -734,6 +727,14 @@ msgstr ""
msgid "Chapter Reference"
msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:149
msgid "Chapter added successfully"
msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:193
msgid "Chapter updated successfully"
msgstr ""
#. Label of the chapters (Table) field in DocType 'LMS Course'
#. Group in LMS Course's connections
#: lms/lms/doctype/lms_course/lms_course.json
@@ -987,7 +988,7 @@ msgid "Contact the Administrator to enroll for this course."
msgstr ""
#. Label of the content (Text) field in DocType 'Course Lesson'
#: frontend/src/pages/LessonForm.vue:53
#: frontend/src/pages/LessonForm.vue:58
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Content"
msgstr "محتوى"
@@ -997,6 +998,7 @@ msgid "Continue Learning"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:117
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Contract"
msgstr "عقد"
@@ -1060,7 +1062,7 @@ msgstr "الدولة"
#. Label of the course (Link) field in DocType 'Related Courses'
#. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/BatchCourseModal.vue:17
#: frontend/src/components/Modals/BatchCourseModal.vue:20
#: frontend/src/components/Modals/EvaluationModal.vue:20
#: frontend/src/components/Modals/Event.vue:24
#: lms/lms/doctype/batch_course/batch_course.json
@@ -1153,6 +1155,10 @@ msgstr ""
msgid "Course Name"
msgstr ""
#: frontend/src/pages/CourseDetail.vue:74
msgid "Course Outline"
msgstr ""
#. Label of the course_price (Currency) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:219
#: lms/lms/doctype/lms_course/lms_course.json
@@ -1175,9 +1181,11 @@ msgid "Course Stats"
msgstr ""
#. Label of the title (Data) field in DocType 'Batch Course'
#. Label of the course_title (Data) field in DocType 'Course Chapter'
#. Label of the course_title (Data) field in DocType 'LMS Certificate'
#. Label of the course_title (Data) field in DocType 'LMS Certificate Request'
#: lms/lms/doctype/batch_course/batch_course.json
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
msgid "Course Title"
@@ -1257,7 +1265,7 @@ msgstr ""
#. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course'
#. Label of the currency (Link) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:226
#: frontend/src/pages/BatchForm.vue:229 frontend/src/pages/CourseForm.vue:226
#: lms/fixtures/custom_field.json lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_payment/lms_payment.json
@@ -1303,7 +1311,7 @@ msgstr "لوحة القيادة"
#. Label of the date (Date) field in DocType 'Scheduled Flow'
#: frontend/src/components/Modals/EvaluationModal.vue:26
#: frontend/src/components/Modals/Event.vue:40
#: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Modals/LiveClassModal.vue:55
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
@@ -1315,7 +1323,7 @@ msgstr "تاريخ"
#. Label of the section_break_glxh (Section Break) field in DocType 'LMS Live
#. Class'
#: frontend/src/pages/BatchForm.vue:111
#: frontend/src/pages/BatchForm.vue:118
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Date and Time"
msgstr ""
@@ -1350,23 +1358,40 @@ msgstr "العملة الافتراضية"
msgid "Degree Type"
msgstr ""
#: frontend/src/components/CourseOutline.vue:212
#: frontend/src/components/CourseOutline.vue:235
#: frontend/src/components/CourseOutline.vue:293
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:470
msgid "Delete"
msgstr "حذف"
#: frontend/src/components/CourseOutline.vue:52
msgid "Delete Chapter"
msgstr ""
#: frontend/src/pages/CourseForm.vue:464
msgid "Delete Course"
msgstr ""
#: frontend/src/components/CourseOutline.vue:208
msgid "Delete Lesson"
#: frontend/src/components/CourseOutline.vue:287
msgid "Delete this chapter?"
msgstr ""
#: frontend/src/components/CourseOutline.vue:229
msgid "Delete this lesson?"
msgstr ""
#: frontend/src/pages/CourseForm.vue:465
msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?"
msgstr ""
#: frontend/src/components/CourseOutline.vue:288
msgid "Deleting this chapter will also delete all its lessons and permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?"
msgstr ""
#: frontend/src/components/CourseOutline.vue:230
msgid "Deleting this lesson will permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?"
msgstr ""
#. Label of the description (Text Editor) field in DocType 'Job Opportunity'
#. Label of the description (Small Text) field in DocType 'Certification'
#. Label of the description (Markdown Editor) field in DocType 'Cohort'
@@ -1379,8 +1404,8 @@ msgstr ""
#. Label of the description (Small Text) field in DocType 'LMS Exercise'
#. Label of the description (Text) field in DocType 'LMS Live Class'
#. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:73
#: frontend/src/pages/BatchForm.vue:91 frontend/src/pages/JobCreation.vue:43
#: frontend/src/components/Modals/LiveClassModal.vue:78
#: frontend/src/pages/BatchForm.vue:96 frontend/src/pages/JobCreation.vue:43
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json
@@ -1426,7 +1451,7 @@ msgid "Discard"
msgstr "تجاهل"
#. Label of the show_discussions (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batch.vue:69
#: frontend/src/pages/Batch.vue:73
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Discussions"
msgstr ""
@@ -1453,7 +1478,7 @@ msgstr ""
#. Label of the duration (Data) field in DocType 'LMS Batch Timetable'
#. Label of the duration (Int) field in DocType 'LMS Live Class'
#. Label of the duration (Duration) field in DocType 'LMS Quiz'
#: frontend/src/components/Modals/LiveClassModal.vue:58
#: frontend/src/components/Modals/LiveClassModal.vue:62
#: lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -1465,7 +1490,7 @@ msgstr "المدة الزمنية"
msgid "Duration (in minutes)"
msgstr ""
#: frontend/src/components/Modals/LiveClassModal.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:58
msgid "Duration of the live class in minutes"
msgstr ""
@@ -1487,7 +1512,7 @@ msgstr ""
msgid "Edit"
msgstr "تصحيح"
#: frontend/src/components/CourseOutline.vue:106
#: frontend/src/components/CourseOutline.vue:45
#: frontend/src/components/Modals/ChapterModal.vue:5
msgid "Edit Chapter"
msgstr ""
@@ -1564,7 +1589,7 @@ msgstr "تمكين"
#. Label of the end_date (Date) field in DocType 'Cohort'
#. Label of the end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:123 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/BatchForm.vue:131 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:282
msgid "End Date"
@@ -1582,7 +1607,7 @@ msgstr ""
#. Label of the end_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the end_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the end_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:137
#: frontend/src/pages/BatchForm.vue:147
#: frontend/src/pages/ProfileEvaluator.vue:18
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1618,7 +1643,7 @@ msgstr ""
msgid "Enrollment Count"
msgstr ""
#: lms/lms/utils.py:1690
#: lms/lms/utils.py:1702
msgid "Enrollment Failed"
msgstr ""
@@ -1646,7 +1671,10 @@ msgstr ""
msgid "Enter the correct answer"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:104
#: frontend/src/components/Modals/AnnouncementModal.vue:105
#: frontend/src/components/Modals/ChapterModal.vue:154
#: frontend/src/components/Modals/ChapterModal.vue:161
#: frontend/src/components/Modals/ChapterModal.vue:197
#: frontend/src/components/Modals/Question.vue:246
#: frontend/src/components/Modals/Question.vue:266
#: frontend/src/components/Modals/Question.vue:323
@@ -1669,7 +1697,7 @@ msgid "Evaluation Details"
msgstr ""
#. Label of the evaluation_end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:166
#: frontend/src/pages/BatchForm.vue:178
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:333
msgid "Evaluation End Date"
@@ -1694,7 +1722,7 @@ msgstr ""
#. Label of the evaluator (Link) field in DocType 'LMS Certificate'
#. Label of the evaluator (Link) field in DocType 'LMS Certificate Evaluation'
#. Label of the evaluator (Link) field in DocType 'LMS Certificate Request'
#: frontend/src/components/Modals/BatchCourseModal.vue:21
#: frontend/src/components/Modals/BatchCourseModal.vue:26
#: frontend/src/pages/ProfileRoles.vue:22
#: lms/lms/doctype/batch_course/batch_course.json
#: lms/lms/doctype/course_evaluator/course_evaluator.json
@@ -1733,7 +1761,7 @@ msgstr ""
msgid "Event"
msgstr "حدث"
#: frontend/src/pages/BatchForm.vue:145
#: frontend/src/pages/BatchForm.vue:156
msgid "Example: IST (+5:30)"
msgstr ""
@@ -1860,6 +1888,7 @@ msgid "Free"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:118
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Freelance"
msgstr ""
@@ -1899,6 +1928,7 @@ msgid "Full Name"
msgstr "الاسم الكامل"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:115
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Full Time"
msgstr ""
@@ -1981,11 +2011,6 @@ msgstr ""
msgid "Hello"
msgstr ""
#. Label of the help_section (Section Break) field in DocType 'Course Lesson'
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Help"
msgstr "مساعدة"
#: lms/templates/courses_created.html:15
msgid "Help others learn something new by creating a course."
msgstr ""
@@ -2164,9 +2189,7 @@ msgstr ""
msgid "Index"
msgstr "مؤشر"
#. Label of the index_label (Data) field in DocType 'Course Lesson'
#. Label of the index_label (Data) field in DocType 'LMS Exercise'
#: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_exercise/lms_exercise.json
msgid "Index Label"
msgstr ""
@@ -2203,14 +2226,14 @@ msgstr ""
#. Label of the instructor_notes (Markdown Editor) field in DocType 'Course
#. Lesson'
#: frontend/src/pages/Lesson.vue:125 frontend/src/pages/LessonForm.vue:33
#: frontend/src/pages/Lesson.vue:128 frontend/src/pages/LessonForm.vue:38
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Instructor Notes"
msgstr ""
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch'
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:85 frontend/src/pages/CourseForm.vue:154
#: frontend/src/pages/BatchForm.vue:89 frontend/src/pages/CourseForm.vue:154
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Instructors"
@@ -2238,10 +2261,6 @@ msgstr ""
msgid "Invalid Quiz ID"
msgstr ""
#: lms/lms/web_form/add_a_new_batch/add_a_new_batch.js:38
msgid "Invalid Start or End Time."
msgstr ""
#. Label of the invite_code (Data) field in DocType 'Cohort Subgroup'
#. Label of the invite_code (Data) field in DocType 'Invite Request'
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
@@ -2281,6 +2300,14 @@ msgstr ""
msgid "Is Onboarding Complete"
msgstr ""
#. Label of the is_scorm_package (Check) field in DocType 'Course Chapter'
#. Label of the is_scorm_package (Check) field in DocType 'Course Lesson'
#: frontend/src/components/Modals/ChapterModal.vue:26
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Is SCORM Package"
msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/Event.vue:121
@@ -2355,7 +2382,7 @@ msgstr "المسمى الوظيفي"
msgid "Jobs"
msgstr "وظائف"
#: frontend/src/components/LiveClass.vue:54
#: frontend/src/components/LiveClass.vue:55
#: lms/templates/upcoming_evals.html:15
msgid "Join"
msgstr "انضم"
@@ -2593,6 +2620,11 @@ msgstr "اسم العائلة"
msgid "Latest Submission"
msgstr ""
#. Label of the launch_file (Code) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "Launch File"
msgstr ""
#. Label of the lesson (Link) field in DocType 'Exercise Latest Submission'
#. Label of the lesson (Link) field in DocType 'Exercise Submission'
#. Label of the lesson (Link) field in DocType 'Lesson Reference'
@@ -2722,7 +2754,7 @@ msgid "Location Preference"
msgstr ""
#: frontend/src/components/NoPermission.vue:28
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:163
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:167
#: frontend/src/pages/Lesson.vue:24
msgid "Login"
msgstr "دخول"
@@ -2759,6 +2791,11 @@ msgstr ""
msgid "Manager (Sales/Marketing/Customer)"
msgstr ""
#. Label of the manifest_file (Code) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "Manifest File"
msgstr ""
#: frontend/src/components/Quiz.vue:94
msgid "Mark"
msgstr ""
@@ -2803,7 +2840,7 @@ msgid "Maximun Attempts"
msgstr ""
#. Label of the medium (Select) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:185
#: frontend/src/pages/BatchForm.vue:197
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:309
msgid "Medium"
@@ -2951,7 +2988,7 @@ msgid "Mentors"
msgstr ""
#. Label of the meta_image (Attach Image) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:36 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:40 lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:362
msgid "Meta Image"
msgstr "صورة ميتا"
@@ -2987,11 +3024,11 @@ msgstr ""
msgid "Modified By"
msgstr "عدل من قبل"
#: lms/lms/api.py:191
#: lms/lms/api.py:197
msgid "Module Name is incorrect or does not exist."
msgstr ""
#: lms/lms/api.py:187
#: lms/lms/api.py:193
msgid "Module is incorrect."
msgstr ""
@@ -3037,7 +3074,7 @@ msgstr ""
msgid "New Course"
msgstr ""
#: frontend/src/pages/Jobs.vue:24
#: frontend/src/pages/Jobs.vue:39
msgid "New Job"
msgstr ""
@@ -3124,11 +3161,11 @@ msgstr ""
msgid "No introduction"
msgstr ""
#: frontend/src/pages/Jobs.vue:45
#: frontend/src/pages/Jobs.vue:60
msgid "No jobs posted"
msgstr ""
#: frontend/src/components/LiveClass.vue:60
#: frontend/src/components/LiveClass.vue:61
msgid "No live classes scheduled"
msgstr ""
@@ -3184,7 +3221,7 @@ msgstr ""
msgid "Not Graded"
msgstr ""
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:131
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:135
msgid "Not Permitted"
msgstr "لا يسمح"
@@ -3208,7 +3245,7 @@ msgstr "إخطارات"
msgid "Notify me when available"
msgstr ""
#: frontend/src/pages/BatchForm.vue:162
#: frontend/src/pages/BatchForm.vue:174
msgid "Number of seats available"
msgstr ""
@@ -3248,6 +3285,10 @@ msgstr ""
msgid "Only image file is allowed."
msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:223
msgid "Only zip files are allowed"
msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Job Opportunity'
#. Option for the 'Membership' (Select) field in DocType 'LMS Batch Old'
#: frontend/src/pages/QuizForm.vue:17
@@ -3352,7 +3393,7 @@ msgid "Pages"
msgstr ""
#. Label of the paid_batch (Check) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:205
#: frontend/src/pages/BatchForm.vue:217
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:373
msgid "Paid Batch"
@@ -3369,6 +3410,7 @@ msgid "Pan Number"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:116
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Part Time"
msgstr ""
@@ -3407,7 +3449,7 @@ msgstr ""
#. Label of the payment (Link) field in DocType 'Batch Student'
#. Label of the payment (Link) field in DocType 'LMS Enrollment'
#: frontend/src/pages/BatchForm.vue:199
#: frontend/src/pages/BatchForm.vue:211
#: lms/lms/doctype/batch_student/batch_student.json
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
msgid "Payment"
@@ -3523,6 +3565,10 @@ msgstr ""
msgid "Please enable Zoom Settings to use this feature."
msgstr ""
#: frontend/src/components/CourseOutline.vue:312
msgid "Please enroll for this course to view this lesson"
msgstr ""
#: frontend/src/components/Quiz.vue:13
msgid "Please ensure that you complete all the questions in {0} minutes."
msgstr ""
@@ -3556,11 +3602,11 @@ msgstr ""
msgid "Please login to access the quiz."
msgstr ""
#: frontend/src/components/NoPermission.vue:25 frontend/src/pages/Batch.vue:142
#: frontend/src/components/NoPermission.vue:25 frontend/src/pages/Batch.vue:146
msgid "Please login to access this page."
msgstr ""
#: lms/lms/api.py:183
#: lms/lms/api.py:189
msgid "Please login to continue with payment."
msgstr ""
@@ -3573,6 +3619,10 @@ msgstr ""
msgid "Please take appropriate action at {0}"
msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:172
msgid "Please upload a SCORM package"
msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:95
msgid "Please upload the assignment file."
msgstr ""
@@ -3730,7 +3780,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Batch'
#. Label of the published (Check) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:108
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:171
#: frontend/src/pages/BatchForm.vue:28 frontend/src/pages/CourseForm.vue:171
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:266
@@ -3941,11 +3991,11 @@ msgstr "مرفوض"
msgid "Related Courses"
msgstr ""
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/CourseForm.vue:99
#: frontend/src/pages/BatchForm.vue:73 frontend/src/pages/CourseForm.vue:99
msgid "Remove"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:26
#: frontend/src/components/Modals/AnnouncementModal.vue:27
msgid "Reply To"
msgstr ""
@@ -4039,6 +4089,21 @@ msgstr ""
msgid "Run"
msgstr ""
#. Label of the scorm_section (Section Break) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "SCORM"
msgstr ""
#. Label of the scorm_package (Link) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "SCORM Package"
msgstr ""
#. Label of the scorm_package_path (Code) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "SCORM Package Path"
msgstr ""
#. Option for the 'Day' (Select) field in DocType 'Evaluator Schedule'
#. Option for the 'Day' (Select) field in DocType 'LMS Certificate Request'
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
@@ -4100,7 +4165,7 @@ msgid "Search for an icon"
msgstr ""
#. Label of the seat_count (Int) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:159
#: frontend/src/pages/BatchForm.vue:171
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:327
msgid "Seat Count"
@@ -4144,7 +4209,7 @@ msgid "Set your Password"
msgstr ""
#: frontend/src/components/Modals/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:153 frontend/src/pages/CourseForm.vue:161
#: frontend/src/pages/BatchForm.vue:165 frontend/src/pages/CourseForm.vue:161
#: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:78
msgid "Settings"
msgstr "إعدادات"
@@ -4159,7 +4224,7 @@ msgstr ""
msgid "Short Introduction"
msgstr ""
#: frontend/src/pages/BatchForm.vue:94
#: frontend/src/pages/BatchForm.vue:99
msgid "Short description of the batch"
msgstr ""
@@ -4323,7 +4388,7 @@ msgstr "بداية"
#. Label of the start_date (Date) field in DocType 'Education Detail'
#. Label of the start_date (Date) field in DocType 'LMS Batch'
#. Label of the start_date (Date) field in DocType 'LMS Batch Old'
#: frontend/src/pages/BatchForm.vue:117
#: frontend/src/pages/BatchForm.vue:124
#: lms/lms/doctype/education_detail/education_detail.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -4332,7 +4397,7 @@ msgid "Start Date"
msgstr "تاريخ البدء"
#: frontend/src/components/CourseCardOverlay.vue:63
#: frontend/src/pages/Lesson.vue:21
#: frontend/src/pages/Lesson.vue:21 frontend/src/pages/SCORMChapter.vue:28
#: lms/templates/emails/lms_course_interest.html:9
msgid "Start Learning"
msgstr ""
@@ -4344,7 +4409,7 @@ msgstr ""
#. Label of the start_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the start_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the start_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:131
#: frontend/src/pages/BatchForm.vue:140
#: frontend/src/pages/ProfileEvaluator.vue:15
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -4361,19 +4426,11 @@ msgstr "بداية الوقت"
msgid "Start Time cannot be greater than End Time"
msgstr ""
#: lms/lms/web_form/add_a_new_batch/add_a_new_batch.js:43
msgid "Start Time should be less than End Time."
msgstr ""
#. Label of the start_url (Small Text) field in DocType 'LMS Live Class'
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Start URL"
msgstr ""
#: lms/lms/web_form/add_a_new_batch/add_a_new_batch.js:30
msgid "Start date cannot be a past date."
msgstr ""
#. Option for the 'Company Type' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Startup Organization"
@@ -4516,8 +4573,10 @@ msgstr ""
#: frontend/src/components/BatchOverlay.vue:135
#: frontend/src/components/BatchStudents.vue:157
#: frontend/src/components/CourseCardOverlay.vue:161
#: frontend/src/components/Modals/AnnouncementModal.vue:98
#: frontend/src/components/Modals/AnnouncementModal.vue:99
#: frontend/src/components/Modals/AssessmentModal.vue:73
#: frontend/src/components/Modals/ChapterModal.vue:148
#: frontend/src/components/Modals/ChapterModal.vue:193
#: frontend/src/components/Modals/Event.vue:255
#: frontend/src/components/Modals/Event.vue:310
#: frontend/src/components/Modals/Question.vue:261
@@ -4713,10 +4772,14 @@ msgstr ""
msgid "This course has:"
msgstr ""
#: lms/lms/utils.py:1570
#: lms/lms/utils.py:1582
msgid "This course is free."
msgstr ""
#: frontend/src/pages/SCORMChapter.vue:198
msgid "This is a chapter in the course {0}"
msgstr ""
#: lms/lms/widgets/CourseOutline.html:62
msgid "This lesson is not available for preview. As you are the Instructor of the course only you can see it."
msgstr ""
@@ -4742,7 +4805,7 @@ msgstr "الخميس"
#. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48
#: frontend/src/components/Modals/LiveClassModal.vue:36
#: frontend/src/components/Modals/LiveClassModal.vue:37
#: frontend/src/components/Quiz.vue:44
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Time"
@@ -4753,7 +4816,7 @@ msgstr "زمن"
msgid "Time Preference"
msgstr ""
#: frontend/src/components/Modals/LiveClassModal.vue:28
#: frontend/src/components/Modals/LiveClassModal.vue:29
msgid "Time must be in 24 hour format (HH:mm). Example 11:30 or 22:00"
msgstr ""
@@ -4781,8 +4844,8 @@ msgstr ""
#. Label of the timezone (Data) field in DocType 'LMS Batch'
#. Label of the timezone (Data) field in DocType 'LMS Certificate Request'
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/LiveClassModal.vue:44
#: frontend/src/pages/BatchForm.vue:143
#: frontend/src/components/Modals/LiveClassModal.vue:46
#: frontend/src/pages/BatchForm.vue:154
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -4811,7 +4874,7 @@ msgstr ""
#. Label of the title (Data) field in DocType 'Work Experience'
#: frontend/src/components/Modals/DiscussionModal.vue:18
#: frontend/src/components/Modals/LiveClassModal.vue:23
#: frontend/src/pages/BatchForm.vue:18 frontend/src/pages/CourseForm.vue:32
#: frontend/src/pages/BatchForm.vue:20 frontend/src/pages/CourseForm.vue:32
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/QuizForm.vue:48
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
@@ -4833,6 +4896,10 @@ msgstr ""
msgid "Title"
msgstr "اللقب"
#: frontend/src/components/Modals/ChapterModal.vue:169
msgid "Title is required"
msgstr ""
#. Label of the unavailable_to (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:98
#: lms/lms/doctype/course_evaluator/course_evaluator.json
@@ -4844,11 +4911,7 @@ msgstr "إلى"
msgid "To Date"
msgstr "إلى تاريخ"
#: lms/lms/web_form/profile/profile.js:19
msgid "To Date is mandatory in Work Experience."
msgstr ""
#: lms/lms/utils.py:1581
#: lms/lms/utils.py:1593
msgid "To join this batch, please contact the Administrator."
msgstr ""
@@ -4902,7 +4965,7 @@ msgstr ""
#. Label of the type (Select) field in DocType 'LMS Quiz Question'
#: frontend/src/components/Modals/AssessmentModal.vue:22
#: frontend/src/components/Modals/Question.vue:54
#: frontend/src/pages/JobCreation.vue:28
#: frontend/src/pages/JobCreation.vue:28 frontend/src/pages/Jobs.vue:16
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/lms_assignment/lms_assignment.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
@@ -4970,7 +5033,7 @@ msgstr ""
msgid "Upcoming"
msgstr ""
#: frontend/src/pages/Batch.vue:154
#: frontend/src/pages/Batch.vue:158
msgid "Upcoming Batches"
msgstr ""
@@ -4989,7 +5052,7 @@ msgstr "تحديث"
msgid "Update Password"
msgstr ""
#: frontend/src/pages/BatchForm.vue:51 frontend/src/pages/CourseForm.vue:80
#: frontend/src/pages/BatchForm.vue:55 frontend/src/pages/CourseForm.vue:80
msgid "Upload"
msgstr "تحميل"
@@ -5172,15 +5235,15 @@ msgstr ""
msgid "You already have an evaluation on {0} at {1} for the course {2}."
msgstr ""
#: lms/lms/api.py:207
#: lms/lms/api.py:213
msgid "You are already enrolled for this batch."
msgstr ""
#: lms/lms/api.py:199
#: lms/lms/api.py:205
msgid "You are already enrolled for this course."
msgstr ""
#: frontend/src/pages/Batch.vue:136
#: frontend/src/pages/Batch.vue:140
msgid "You are not a member of this batch. Please checkout our upcoming batches."
msgstr ""
@@ -5188,6 +5251,14 @@ msgstr ""
msgid "You are not a mentor of the course {0}"
msgstr ""
#: frontend/src/components/CourseOutline.vue:311
msgid "You are not enrolled"
msgstr ""
#: frontend/src/pages/SCORMChapter.vue:22
msgid "You are not enrolled in this course. Please enroll to access this lesson."
msgstr ""
#: frontend/src/pages/Courses.vue:134
msgid "You can add chapters and lessons to it."
msgstr ""
@@ -5340,7 +5411,7 @@ msgstr ""
msgid "cancel your application"
msgstr ""
#: frontend/src/pages/Lesson.vue:170
#: frontend/src/pages/Lesson.vue:174
msgid "completed"
msgstr "أكتمل"
@@ -5388,7 +5459,7 @@ msgstr ""
msgid "you can"
msgstr ""
#: lms/lms/api.py:740 lms/lms/api.py:748
#: lms/lms/api.py:747 lms/lms/api.py:755
msgid "{0} Settings not found"
msgstr ""

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-11-08 16:04+0000\n"
"PO-Revision-Date: 2024-11-11 15:23\n"
"POT-Creation-Date: 2024-11-15 16:04+0000\n"
"PO-Revision-Date: 2024-11-18 17:32\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Bosnian\n"
"MIME-Version: 1.0\n"
@@ -109,7 +109,7 @@ msgstr "Dodaj"
msgid "Add Chapter"
msgstr ""
#: frontend/src/components/CourseOutline.vue:102
#: frontend/src/components/CourseOutline.vue:124
msgid "Add Lesson"
msgstr ""
@@ -217,7 +217,7 @@ msgstr ""
msgid "Allow accessing future dates"
msgstr ""
#: frontend/src/pages/BatchForm.vue:29
#: frontend/src/pages/BatchForm.vue:33
msgid "Allow self enrollment"
msgstr ""
@@ -228,7 +228,7 @@ msgstr "Već registrovan"
#. Label of the amount (Currency) field in DocType 'Web Form'
#. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the amount (Currency) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:209 lms/fixtures/custom_field.json
#: frontend/src/pages/BatchForm.vue:221 lms/fixtures/custom_field.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/public/js/common_functions.js:379
@@ -258,11 +258,11 @@ msgstr ""
msgid "Amount with GST"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:32
#: frontend/src/components/Modals/AnnouncementModal.vue:33
msgid "Announcement"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:99
#: frontend/src/components/Modals/AnnouncementModal.vue:100
msgid "Announcement has been sent successfully"
msgstr ""
@@ -280,7 +280,7 @@ msgstr ""
msgid "Appears on the course card in the course list"
msgstr ""
#: frontend/src/pages/BatchForm.vue:55 frontend/src/pages/BatchForm.vue:73
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/BatchForm.vue:77
msgid "Appears when the batch URL is shared on any online platform"
msgstr ""
@@ -319,10 +319,6 @@ msgstr ""
msgid "Apps"
msgstr ""
#: frontend/src/components/CourseOutline.vue:209
msgid "Are you sure you want to delete this lesson?"
msgstr ""
#. Label of the user_category (Check) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Ask User Category during Signup"
@@ -420,7 +416,7 @@ msgid "Auto Assign"
msgstr ""
#. Label of the auto_recording (Select) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/LiveClassModal.vue:66
#: frontend/src/components/Modals/LiveClassModal.vue:71
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Auto Recording"
msgstr ""
@@ -482,7 +478,8 @@ msgid "Batch Description"
msgstr ""
#. Label of the batch_details (Text Editor) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:98 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:104
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:349
#: lms/templates/emails/batch_confirmation.html:30
msgid "Batch Details"
@@ -547,10 +544,6 @@ msgstr ""
msgid "Batch end date cannot be before the batch start date"
msgstr ""
#: lms/lms/web_form/add_a_new_batch/add_a_new_batch.js:6
msgid "Batch {0} has been successfully created!"
msgstr ""
#. Group in LMS Course's connections
#. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue:8 lms/lms/doctype/lms_course/lms_course.json
@@ -581,7 +574,7 @@ msgstr ""
msgid "Billing Name"
msgstr ""
#: frontend/src/components/Modals/EditProfile.vue:72
#: frontend/src/components/Modals/EditProfile.vue:75
msgid "Bio"
msgstr "Bio"
@@ -649,7 +642,7 @@ msgstr ""
#. Label of the category (Link) field in DocType 'LMS Batch'
#. Label of the category (Data) field in DocType 'LMS Category'
#. Label of the category (Link) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/BatchForm.vue:202 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/JobDetail.vue:102
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -734,6 +727,14 @@ msgstr ""
msgid "Chapter Reference"
msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:149
msgid "Chapter added successfully"
msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:193
msgid "Chapter updated successfully"
msgstr ""
#. Label of the chapters (Table) field in DocType 'LMS Course'
#. Group in LMS Course's connections
#: lms/lms/doctype/lms_course/lms_course.json
@@ -987,7 +988,7 @@ msgid "Contact the Administrator to enroll for this course."
msgstr ""
#. Label of the content (Text) field in DocType 'Course Lesson'
#: frontend/src/pages/LessonForm.vue:53
#: frontend/src/pages/LessonForm.vue:58
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Content"
msgstr "Sadržaj"
@@ -997,6 +998,7 @@ msgid "Continue Learning"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:117
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Contract"
msgstr ""
@@ -1060,7 +1062,7 @@ msgstr "Država"
#. Label of the course (Link) field in DocType 'Related Courses'
#. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/BatchCourseModal.vue:17
#: frontend/src/components/Modals/BatchCourseModal.vue:20
#: frontend/src/components/Modals/EvaluationModal.vue:20
#: frontend/src/components/Modals/Event.vue:24
#: lms/lms/doctype/batch_course/batch_course.json
@@ -1153,6 +1155,10 @@ msgstr ""
msgid "Course Name"
msgstr ""
#: frontend/src/pages/CourseDetail.vue:74
msgid "Course Outline"
msgstr ""
#. Label of the course_price (Currency) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:219
#: lms/lms/doctype/lms_course/lms_course.json
@@ -1175,9 +1181,11 @@ msgid "Course Stats"
msgstr ""
#. Label of the title (Data) field in DocType 'Batch Course'
#. Label of the course_title (Data) field in DocType 'Course Chapter'
#. Label of the course_title (Data) field in DocType 'LMS Certificate'
#. Label of the course_title (Data) field in DocType 'LMS Certificate Request'
#: lms/lms/doctype/batch_course/batch_course.json
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
msgid "Course Title"
@@ -1257,7 +1265,7 @@ msgstr ""
#. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course'
#. Label of the currency (Link) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:226
#: frontend/src/pages/BatchForm.vue:229 frontend/src/pages/CourseForm.vue:226
#: lms/fixtures/custom_field.json lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_payment/lms_payment.json
@@ -1303,7 +1311,7 @@ msgstr "Nadzorna ploča"
#. Label of the date (Date) field in DocType 'Scheduled Flow'
#: frontend/src/components/Modals/EvaluationModal.vue:26
#: frontend/src/components/Modals/Event.vue:40
#: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Modals/LiveClassModal.vue:55
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
@@ -1315,7 +1323,7 @@ msgstr "Datum"
#. Label of the section_break_glxh (Section Break) field in DocType 'LMS Live
#. Class'
#: frontend/src/pages/BatchForm.vue:111
#: frontend/src/pages/BatchForm.vue:118
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Date and Time"
msgstr ""
@@ -1350,23 +1358,40 @@ msgstr ""
msgid "Degree Type"
msgstr ""
#: frontend/src/components/CourseOutline.vue:212
#: frontend/src/components/CourseOutline.vue:235
#: frontend/src/components/CourseOutline.vue:293
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:470
msgid "Delete"
msgstr "Izbriši"
#: frontend/src/components/CourseOutline.vue:52
msgid "Delete Chapter"
msgstr ""
#: frontend/src/pages/CourseForm.vue:464
msgid "Delete Course"
msgstr ""
#: frontend/src/components/CourseOutline.vue:208
msgid "Delete Lesson"
#: frontend/src/components/CourseOutline.vue:287
msgid "Delete this chapter?"
msgstr ""
#: frontend/src/components/CourseOutline.vue:229
msgid "Delete this lesson?"
msgstr ""
#: frontend/src/pages/CourseForm.vue:465
msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?"
msgstr ""
#: frontend/src/components/CourseOutline.vue:288
msgid "Deleting this chapter will also delete all its lessons and permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?"
msgstr ""
#: frontend/src/components/CourseOutline.vue:230
msgid "Deleting this lesson will permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?"
msgstr ""
#. Label of the description (Text Editor) field in DocType 'Job Opportunity'
#. Label of the description (Small Text) field in DocType 'Certification'
#. Label of the description (Markdown Editor) field in DocType 'Cohort'
@@ -1379,8 +1404,8 @@ msgstr ""
#. Label of the description (Small Text) field in DocType 'LMS Exercise'
#. Label of the description (Text) field in DocType 'LMS Live Class'
#. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:73
#: frontend/src/pages/BatchForm.vue:91 frontend/src/pages/JobCreation.vue:43
#: frontend/src/components/Modals/LiveClassModal.vue:78
#: frontend/src/pages/BatchForm.vue:96 frontend/src/pages/JobCreation.vue:43
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json
@@ -1426,7 +1451,7 @@ msgid "Discard"
msgstr "Odbaci"
#. Label of the show_discussions (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batch.vue:69
#: frontend/src/pages/Batch.vue:73
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Discussions"
msgstr ""
@@ -1453,7 +1478,7 @@ msgstr ""
#. Label of the duration (Data) field in DocType 'LMS Batch Timetable'
#. Label of the duration (Int) field in DocType 'LMS Live Class'
#. Label of the duration (Duration) field in DocType 'LMS Quiz'
#: frontend/src/components/Modals/LiveClassModal.vue:58
#: frontend/src/components/Modals/LiveClassModal.vue:62
#: lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -1465,7 +1490,7 @@ msgstr "Trajanje"
msgid "Duration (in minutes)"
msgstr ""
#: frontend/src/components/Modals/LiveClassModal.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:58
msgid "Duration of the live class in minutes"
msgstr ""
@@ -1487,7 +1512,7 @@ msgstr ""
msgid "Edit"
msgstr "Uredi"
#: frontend/src/components/CourseOutline.vue:106
#: frontend/src/components/CourseOutline.vue:45
#: frontend/src/components/Modals/ChapterModal.vue:5
msgid "Edit Chapter"
msgstr ""
@@ -1564,7 +1589,7 @@ msgstr "Omogućeno"
#. Label of the end_date (Date) field in DocType 'Cohort'
#. Label of the end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:123 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/BatchForm.vue:131 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:282
msgid "End Date"
@@ -1582,7 +1607,7 @@ msgstr ""
#. Label of the end_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the end_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the end_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:137
#: frontend/src/pages/BatchForm.vue:147
#: frontend/src/pages/ProfileEvaluator.vue:18
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1618,7 +1643,7 @@ msgstr ""
msgid "Enrollment Count"
msgstr ""
#: lms/lms/utils.py:1690
#: lms/lms/utils.py:1702
msgid "Enrollment Failed"
msgstr ""
@@ -1646,7 +1671,10 @@ msgstr ""
msgid "Enter the correct answer"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:104
#: frontend/src/components/Modals/AnnouncementModal.vue:105
#: frontend/src/components/Modals/ChapterModal.vue:154
#: frontend/src/components/Modals/ChapterModal.vue:161
#: frontend/src/components/Modals/ChapterModal.vue:197
#: frontend/src/components/Modals/Question.vue:246
#: frontend/src/components/Modals/Question.vue:266
#: frontend/src/components/Modals/Question.vue:323
@@ -1669,7 +1697,7 @@ msgid "Evaluation Details"
msgstr ""
#. Label of the evaluation_end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:166
#: frontend/src/pages/BatchForm.vue:178
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:333
msgid "Evaluation End Date"
@@ -1694,7 +1722,7 @@ msgstr ""
#. Label of the evaluator (Link) field in DocType 'LMS Certificate'
#. Label of the evaluator (Link) field in DocType 'LMS Certificate Evaluation'
#. Label of the evaluator (Link) field in DocType 'LMS Certificate Request'
#: frontend/src/components/Modals/BatchCourseModal.vue:21
#: frontend/src/components/Modals/BatchCourseModal.vue:26
#: frontend/src/pages/ProfileRoles.vue:22
#: lms/lms/doctype/batch_course/batch_course.json
#: lms/lms/doctype/course_evaluator/course_evaluator.json
@@ -1733,7 +1761,7 @@ msgstr ""
msgid "Event"
msgstr "Događaj"
#: frontend/src/pages/BatchForm.vue:145
#: frontend/src/pages/BatchForm.vue:156
msgid "Example: IST (+5:30)"
msgstr ""
@@ -1860,6 +1888,7 @@ msgid "Free"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:118
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Freelance"
msgstr ""
@@ -1899,6 +1928,7 @@ msgid "Full Name"
msgstr "Puno ime"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:115
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Full Time"
msgstr ""
@@ -1981,11 +2011,6 @@ msgstr ""
msgid "Hello"
msgstr "Zdravo"
#. Label of the help_section (Section Break) field in DocType 'Course Lesson'
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Help"
msgstr "Pomoć"
#: lms/templates/courses_created.html:15
msgid "Help others learn something new by creating a course."
msgstr ""
@@ -2164,9 +2189,7 @@ msgstr ""
msgid "Index"
msgstr "Indeks"
#. Label of the index_label (Data) field in DocType 'Course Lesson'
#. Label of the index_label (Data) field in DocType 'LMS Exercise'
#: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_exercise/lms_exercise.json
msgid "Index Label"
msgstr ""
@@ -2203,14 +2226,14 @@ msgstr ""
#. Label of the instructor_notes (Markdown Editor) field in DocType 'Course
#. Lesson'
#: frontend/src/pages/Lesson.vue:125 frontend/src/pages/LessonForm.vue:33
#: frontend/src/pages/Lesson.vue:128 frontend/src/pages/LessonForm.vue:38
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Instructor Notes"
msgstr ""
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch'
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:85 frontend/src/pages/CourseForm.vue:154
#: frontend/src/pages/BatchForm.vue:89 frontend/src/pages/CourseForm.vue:154
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Instructors"
@@ -2238,10 +2261,6 @@ msgstr ""
msgid "Invalid Quiz ID"
msgstr ""
#: lms/lms/web_form/add_a_new_batch/add_a_new_batch.js:38
msgid "Invalid Start or End Time."
msgstr ""
#. Label of the invite_code (Data) field in DocType 'Cohort Subgroup'
#. Label of the invite_code (Data) field in DocType 'Invite Request'
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
@@ -2281,6 +2300,14 @@ msgstr ""
msgid "Is Onboarding Complete"
msgstr ""
#. Label of the is_scorm_package (Check) field in DocType 'Course Chapter'
#. Label of the is_scorm_package (Check) field in DocType 'Course Lesson'
#: frontend/src/components/Modals/ChapterModal.vue:26
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Is SCORM Package"
msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/Event.vue:121
@@ -2355,7 +2382,7 @@ msgstr ""
msgid "Jobs"
msgstr ""
#: frontend/src/components/LiveClass.vue:54
#: frontend/src/components/LiveClass.vue:55
#: lms/templates/upcoming_evals.html:15
msgid "Join"
msgstr ""
@@ -2593,6 +2620,11 @@ msgstr "Prezime"
msgid "Latest Submission"
msgstr ""
#. Label of the launch_file (Code) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "Launch File"
msgstr ""
#. Label of the lesson (Link) field in DocType 'Exercise Latest Submission'
#. Label of the lesson (Link) field in DocType 'Exercise Submission'
#. Label of the lesson (Link) field in DocType 'Lesson Reference'
@@ -2722,7 +2754,7 @@ msgid "Location Preference"
msgstr ""
#: frontend/src/components/NoPermission.vue:28
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:163
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:167
#: frontend/src/pages/Lesson.vue:24
msgid "Login"
msgstr "Prijava"
@@ -2759,6 +2791,11 @@ msgstr ""
msgid "Manager (Sales/Marketing/Customer)"
msgstr ""
#. Label of the manifest_file (Code) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "Manifest File"
msgstr ""
#: frontend/src/components/Quiz.vue:94
msgid "Mark"
msgstr ""
@@ -2803,7 +2840,7 @@ msgid "Maximun Attempts"
msgstr ""
#. Label of the medium (Select) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:185
#: frontend/src/pages/BatchForm.vue:197
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:309
msgid "Medium"
@@ -2951,7 +2988,7 @@ msgid "Mentors"
msgstr ""
#. Label of the meta_image (Attach Image) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:36 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:40 lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:362
msgid "Meta Image"
msgstr "Meta slika"
@@ -2987,11 +3024,11 @@ msgstr ""
msgid "Modified By"
msgstr "Izmijenio"
#: lms/lms/api.py:191
#: lms/lms/api.py:197
msgid "Module Name is incorrect or does not exist."
msgstr ""
#: lms/lms/api.py:187
#: lms/lms/api.py:193
msgid "Module is incorrect."
msgstr ""
@@ -3037,7 +3074,7 @@ msgstr ""
msgid "New Course"
msgstr ""
#: frontend/src/pages/Jobs.vue:24
#: frontend/src/pages/Jobs.vue:39
msgid "New Job"
msgstr ""
@@ -3124,11 +3161,11 @@ msgstr ""
msgid "No introduction"
msgstr ""
#: frontend/src/pages/Jobs.vue:45
#: frontend/src/pages/Jobs.vue:60
msgid "No jobs posted"
msgstr ""
#: frontend/src/components/LiveClass.vue:60
#: frontend/src/components/LiveClass.vue:61
msgid "No live classes scheduled"
msgstr ""
@@ -3184,7 +3221,7 @@ msgstr ""
msgid "Not Graded"
msgstr ""
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:131
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:135
msgid "Not Permitted"
msgstr "Nije dozvoljeno"
@@ -3208,7 +3245,7 @@ msgstr "Obavijesti"
msgid "Notify me when available"
msgstr ""
#: frontend/src/pages/BatchForm.vue:162
#: frontend/src/pages/BatchForm.vue:174
msgid "Number of seats available"
msgstr ""
@@ -3248,6 +3285,10 @@ msgstr ""
msgid "Only image file is allowed."
msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:223
msgid "Only zip files are allowed"
msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Job Opportunity'
#. Option for the 'Membership' (Select) field in DocType 'LMS Batch Old'
#: frontend/src/pages/QuizForm.vue:17
@@ -3352,7 +3393,7 @@ msgid "Pages"
msgstr ""
#. Label of the paid_batch (Check) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:205
#: frontend/src/pages/BatchForm.vue:217
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:373
msgid "Paid Batch"
@@ -3369,6 +3410,7 @@ msgid "Pan Number"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:116
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Part Time"
msgstr ""
@@ -3407,7 +3449,7 @@ msgstr ""
#. Label of the payment (Link) field in DocType 'Batch Student'
#. Label of the payment (Link) field in DocType 'LMS Enrollment'
#: frontend/src/pages/BatchForm.vue:199
#: frontend/src/pages/BatchForm.vue:211
#: lms/lms/doctype/batch_student/batch_student.json
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
msgid "Payment"
@@ -3523,6 +3565,10 @@ msgstr ""
msgid "Please enable Zoom Settings to use this feature."
msgstr ""
#: frontend/src/components/CourseOutline.vue:312
msgid "Please enroll for this course to view this lesson"
msgstr ""
#: frontend/src/components/Quiz.vue:13
msgid "Please ensure that you complete all the questions in {0} minutes."
msgstr ""
@@ -3556,11 +3602,11 @@ msgstr ""
msgid "Please login to access the quiz."
msgstr ""
#: frontend/src/components/NoPermission.vue:25 frontend/src/pages/Batch.vue:142
#: frontend/src/components/NoPermission.vue:25 frontend/src/pages/Batch.vue:146
msgid "Please login to access this page."
msgstr ""
#: lms/lms/api.py:183
#: lms/lms/api.py:189
msgid "Please login to continue with payment."
msgstr ""
@@ -3573,6 +3619,10 @@ msgstr ""
msgid "Please take appropriate action at {0}"
msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:172
msgid "Please upload a SCORM package"
msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:95
msgid "Please upload the assignment file."
msgstr ""
@@ -3730,7 +3780,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Batch'
#. Label of the published (Check) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:108
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:171
#: frontend/src/pages/BatchForm.vue:28 frontend/src/pages/CourseForm.vue:171
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:266
@@ -3941,11 +3991,11 @@ msgstr ""
msgid "Related Courses"
msgstr ""
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/CourseForm.vue:99
#: frontend/src/pages/BatchForm.vue:73 frontend/src/pages/CourseForm.vue:99
msgid "Remove"
msgstr "Ukloni"
#: frontend/src/components/Modals/AnnouncementModal.vue:26
#: frontend/src/components/Modals/AnnouncementModal.vue:27
msgid "Reply To"
msgstr ""
@@ -4039,6 +4089,21 @@ msgstr ""
msgid "Run"
msgstr ""
#. Label of the scorm_section (Section Break) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "SCORM"
msgstr ""
#. Label of the scorm_package (Link) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "SCORM Package"
msgstr ""
#. Label of the scorm_package_path (Code) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "SCORM Package Path"
msgstr ""
#. Option for the 'Day' (Select) field in DocType 'Evaluator Schedule'
#. Option for the 'Day' (Select) field in DocType 'LMS Certificate Request'
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
@@ -4100,7 +4165,7 @@ msgid "Search for an icon"
msgstr ""
#. Label of the seat_count (Int) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:159
#: frontend/src/pages/BatchForm.vue:171
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:327
msgid "Seat Count"
@@ -4144,7 +4209,7 @@ msgid "Set your Password"
msgstr ""
#: frontend/src/components/Modals/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:153 frontend/src/pages/CourseForm.vue:161
#: frontend/src/pages/BatchForm.vue:165 frontend/src/pages/CourseForm.vue:161
#: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:78
msgid "Settings"
msgstr ""
@@ -4159,7 +4224,7 @@ msgstr ""
msgid "Short Introduction"
msgstr ""
#: frontend/src/pages/BatchForm.vue:94
#: frontend/src/pages/BatchForm.vue:99
msgid "Short description of the batch"
msgstr ""
@@ -4323,7 +4388,7 @@ msgstr ""
#. Label of the start_date (Date) field in DocType 'Education Detail'
#. Label of the start_date (Date) field in DocType 'LMS Batch'
#. Label of the start_date (Date) field in DocType 'LMS Batch Old'
#: frontend/src/pages/BatchForm.vue:117
#: frontend/src/pages/BatchForm.vue:124
#: lms/lms/doctype/education_detail/education_detail.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -4332,7 +4397,7 @@ msgid "Start Date"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:63
#: frontend/src/pages/Lesson.vue:21
#: frontend/src/pages/Lesson.vue:21 frontend/src/pages/SCORMChapter.vue:28
#: lms/templates/emails/lms_course_interest.html:9
msgid "Start Learning"
msgstr ""
@@ -4344,7 +4409,7 @@ msgstr ""
#. Label of the start_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the start_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the start_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:131
#: frontend/src/pages/BatchForm.vue:140
#: frontend/src/pages/ProfileEvaluator.vue:15
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -4361,19 +4426,11 @@ msgstr ""
msgid "Start Time cannot be greater than End Time"
msgstr ""
#: lms/lms/web_form/add_a_new_batch/add_a_new_batch.js:43
msgid "Start Time should be less than End Time."
msgstr ""
#. Label of the start_url (Small Text) field in DocType 'LMS Live Class'
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Start URL"
msgstr ""
#: lms/lms/web_form/add_a_new_batch/add_a_new_batch.js:30
msgid "Start date cannot be a past date."
msgstr ""
#. Option for the 'Company Type' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Startup Organization"
@@ -4516,8 +4573,10 @@ msgstr ""
#: frontend/src/components/BatchOverlay.vue:135
#: frontend/src/components/BatchStudents.vue:157
#: frontend/src/components/CourseCardOverlay.vue:161
#: frontend/src/components/Modals/AnnouncementModal.vue:98
#: frontend/src/components/Modals/AnnouncementModal.vue:99
#: frontend/src/components/Modals/AssessmentModal.vue:73
#: frontend/src/components/Modals/ChapterModal.vue:148
#: frontend/src/components/Modals/ChapterModal.vue:193
#: frontend/src/components/Modals/Event.vue:255
#: frontend/src/components/Modals/Event.vue:310
#: frontend/src/components/Modals/Question.vue:261
@@ -4713,10 +4772,14 @@ msgstr ""
msgid "This course has:"
msgstr ""
#: lms/lms/utils.py:1570
#: lms/lms/utils.py:1582
msgid "This course is free."
msgstr ""
#: frontend/src/pages/SCORMChapter.vue:198
msgid "This is a chapter in the course {0}"
msgstr ""
#: lms/lms/widgets/CourseOutline.html:62
msgid "This lesson is not available for preview. As you are the Instructor of the course only you can see it."
msgstr ""
@@ -4742,7 +4805,7 @@ msgstr ""
#. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48
#: frontend/src/components/Modals/LiveClassModal.vue:36
#: frontend/src/components/Modals/LiveClassModal.vue:37
#: frontend/src/components/Quiz.vue:44
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Time"
@@ -4753,7 +4816,7 @@ msgstr ""
msgid "Time Preference"
msgstr ""
#: frontend/src/components/Modals/LiveClassModal.vue:28
#: frontend/src/components/Modals/LiveClassModal.vue:29
msgid "Time must be in 24 hour format (HH:mm). Example 11:30 or 22:00"
msgstr ""
@@ -4781,8 +4844,8 @@ msgstr ""
#. Label of the timezone (Data) field in DocType 'LMS Batch'
#. Label of the timezone (Data) field in DocType 'LMS Certificate Request'
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/LiveClassModal.vue:44
#: frontend/src/pages/BatchForm.vue:143
#: frontend/src/components/Modals/LiveClassModal.vue:46
#: frontend/src/pages/BatchForm.vue:154
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -4811,7 +4874,7 @@ msgstr ""
#. Label of the title (Data) field in DocType 'Work Experience'
#: frontend/src/components/Modals/DiscussionModal.vue:18
#: frontend/src/components/Modals/LiveClassModal.vue:23
#: frontend/src/pages/BatchForm.vue:18 frontend/src/pages/CourseForm.vue:32
#: frontend/src/pages/BatchForm.vue:20 frontend/src/pages/CourseForm.vue:32
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/QuizForm.vue:48
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
@@ -4833,6 +4896,10 @@ msgstr ""
msgid "Title"
msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:169
msgid "Title is required"
msgstr ""
#. Label of the unavailable_to (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:98
#: lms/lms/doctype/course_evaluator/course_evaluator.json
@@ -4844,11 +4911,7 @@ msgstr ""
msgid "To Date"
msgstr ""
#: lms/lms/web_form/profile/profile.js:19
msgid "To Date is mandatory in Work Experience."
msgstr ""
#: lms/lms/utils.py:1581
#: lms/lms/utils.py:1593
msgid "To join this batch, please contact the Administrator."
msgstr ""
@@ -4902,7 +4965,7 @@ msgstr ""
#. Label of the type (Select) field in DocType 'LMS Quiz Question'
#: frontend/src/components/Modals/AssessmentModal.vue:22
#: frontend/src/components/Modals/Question.vue:54
#: frontend/src/pages/JobCreation.vue:28
#: frontend/src/pages/JobCreation.vue:28 frontend/src/pages/Jobs.vue:16
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/lms_assignment/lms_assignment.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
@@ -4970,7 +5033,7 @@ msgstr ""
msgid "Upcoming"
msgstr ""
#: frontend/src/pages/Batch.vue:154
#: frontend/src/pages/Batch.vue:158
msgid "Upcoming Batches"
msgstr ""
@@ -4989,7 +5052,7 @@ msgstr ""
msgid "Update Password"
msgstr ""
#: frontend/src/pages/BatchForm.vue:51 frontend/src/pages/CourseForm.vue:80
#: frontend/src/pages/BatchForm.vue:55 frontend/src/pages/CourseForm.vue:80
msgid "Upload"
msgstr "Učitaj"
@@ -5172,15 +5235,15 @@ msgstr ""
msgid "You already have an evaluation on {0} at {1} for the course {2}."
msgstr ""
#: lms/lms/api.py:207
#: lms/lms/api.py:213
msgid "You are already enrolled for this batch."
msgstr ""
#: lms/lms/api.py:199
#: lms/lms/api.py:205
msgid "You are already enrolled for this course."
msgstr ""
#: frontend/src/pages/Batch.vue:136
#: frontend/src/pages/Batch.vue:140
msgid "You are not a member of this batch. Please checkout our upcoming batches."
msgstr ""
@@ -5188,6 +5251,14 @@ msgstr ""
msgid "You are not a mentor of the course {0}"
msgstr ""
#: frontend/src/components/CourseOutline.vue:311
msgid "You are not enrolled"
msgstr ""
#: frontend/src/pages/SCORMChapter.vue:22
msgid "You are not enrolled in this course. Please enroll to access this lesson."
msgstr ""
#: frontend/src/pages/Courses.vue:134
msgid "You can add chapters and lessons to it."
msgstr ""
@@ -5340,7 +5411,7 @@ msgstr ""
msgid "cancel your application"
msgstr ""
#: frontend/src/pages/Lesson.vue:170
#: frontend/src/pages/Lesson.vue:174
msgid "completed"
msgstr "završeno"
@@ -5388,7 +5459,7 @@ msgstr ""
msgid "you can"
msgstr ""
#: lms/lms/api.py:740 lms/lms/api.py:748
#: lms/lms/api.py:747 lms/lms/api.py:755
msgid "{0} Settings not found"
msgstr ""

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-11-08 16:04+0000\n"
"PO-Revision-Date: 2024-11-11 15:23\n"
"POT-Creation-Date: 2024-11-15 16:04+0000\n"
"PO-Revision-Date: 2024-11-18 17:31\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: German\n"
"MIME-Version: 1.0\n"
@@ -109,7 +109,7 @@ msgstr "Hinzufügen"
msgid "Add Chapter"
msgstr "Kapitel hinzufügen"
#: frontend/src/components/CourseOutline.vue:102
#: frontend/src/components/CourseOutline.vue:124
msgid "Add Lesson"
msgstr "Lektion hinzufügen"
@@ -217,7 +217,7 @@ msgstr "Selbstregistrierung zulassen"
msgid "Allow accessing future dates"
msgstr "Zugriff auf zukünftige Daten zulassen"
#: frontend/src/pages/BatchForm.vue:29
#: frontend/src/pages/BatchForm.vue:33
msgid "Allow self enrollment"
msgstr "Selbstregistrierung zulassen"
@@ -228,7 +228,7 @@ msgstr "Bereits registriert"
#. Label of the amount (Currency) field in DocType 'Web Form'
#. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the amount (Currency) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:209 lms/fixtures/custom_field.json
#: frontend/src/pages/BatchForm.vue:221 lms/fixtures/custom_field.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/public/js/common_functions.js:379
@@ -258,11 +258,11 @@ msgstr ""
msgid "Amount with GST"
msgstr "Betrag inkl. MwSt."
#: frontend/src/components/Modals/AnnouncementModal.vue:32
#: frontend/src/components/Modals/AnnouncementModal.vue:33
msgid "Announcement"
msgstr "Ankündigung"
#: frontend/src/components/Modals/AnnouncementModal.vue:99
#: frontend/src/components/Modals/AnnouncementModal.vue:100
msgid "Announcement has been sent successfully"
msgstr ""
@@ -280,7 +280,7 @@ msgstr "Antwort"
msgid "Appears on the course card in the course list"
msgstr ""
#: frontend/src/pages/BatchForm.vue:55 frontend/src/pages/BatchForm.vue:73
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/BatchForm.vue:77
msgid "Appears when the batch URL is shared on any online platform"
msgstr ""
@@ -319,10 +319,6 @@ msgstr "Genehmigt"
msgid "Apps"
msgstr "Apps"
#: frontend/src/components/CourseOutline.vue:209
msgid "Are you sure you want to delete this lesson?"
msgstr ""
#. Label of the user_category (Check) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Ask User Category during Signup"
@@ -420,7 +416,7 @@ msgid "Auto Assign"
msgstr "Automatische Zuweisung"
#. Label of the auto_recording (Select) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/LiveClassModal.vue:66
#: frontend/src/components/Modals/LiveClassModal.vue:71
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Auto Recording"
msgstr ""
@@ -482,7 +478,8 @@ msgid "Batch Description"
msgstr "Chargenbeschreibung"
#. Label of the batch_details (Text Editor) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:98 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:104
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:349
#: lms/templates/emails/batch_confirmation.html:30
msgid "Batch Details"
@@ -547,10 +544,6 @@ msgstr ""
msgid "Batch end date cannot be before the batch start date"
msgstr ""
#: lms/lms/web_form/add_a_new_batch/add_a_new_batch.js:6
msgid "Batch {0} has been successfully created!"
msgstr ""
#. Group in LMS Course's connections
#. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue:8 lms/lms/doctype/lms_course/lms_course.json
@@ -581,7 +574,7 @@ msgstr "Rechnungsdetails"
msgid "Billing Name"
msgstr "Rechnungsname"
#: frontend/src/components/Modals/EditProfile.vue:72
#: frontend/src/components/Modals/EditProfile.vue:75
msgid "Bio"
msgstr "Lebenslauf"
@@ -649,7 +642,7 @@ msgstr ""
#. Label of the category (Link) field in DocType 'LMS Batch'
#. Label of the category (Data) field in DocType 'LMS Category'
#. Label of the category (Link) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/BatchForm.vue:202 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/JobDetail.vue:102
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -734,6 +727,14 @@ msgstr "Kapitel"
msgid "Chapter Reference"
msgstr "Kapitelreferenz"
#: frontend/src/components/Modals/ChapterModal.vue:149
msgid "Chapter added successfully"
msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:193
msgid "Chapter updated successfully"
msgstr ""
#. Label of the chapters (Table) field in DocType 'LMS Course'
#. Group in LMS Course's connections
#: lms/lms/doctype/lms_course/lms_course.json
@@ -987,7 +988,7 @@ msgid "Contact the Administrator to enroll for this course."
msgstr ""
#. Label of the content (Text) field in DocType 'Course Lesson'
#: frontend/src/pages/LessonForm.vue:53
#: frontend/src/pages/LessonForm.vue:58
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Content"
msgstr "Inhalt"
@@ -997,6 +998,7 @@ msgid "Continue Learning"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:117
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Contract"
msgstr "Vertrag"
@@ -1060,7 +1062,7 @@ msgstr "Land"
#. Label of the course (Link) field in DocType 'Related Courses'
#. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/BatchCourseModal.vue:17
#: frontend/src/components/Modals/BatchCourseModal.vue:20
#: frontend/src/components/Modals/EvaluationModal.vue:20
#: frontend/src/components/Modals/Event.vue:24
#: lms/lms/doctype/batch_course/batch_course.json
@@ -1153,6 +1155,10 @@ msgstr "Kursliste"
msgid "Course Name"
msgstr "Kursname"
#: frontend/src/pages/CourseDetail.vue:74
msgid "Course Outline"
msgstr ""
#. Label of the course_price (Currency) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:219
#: lms/lms/doctype/lms_course/lms_course.json
@@ -1175,9 +1181,11 @@ msgid "Course Stats"
msgstr "Kurs-Statistiken"
#. Label of the title (Data) field in DocType 'Batch Course'
#. Label of the course_title (Data) field in DocType 'Course Chapter'
#. Label of the course_title (Data) field in DocType 'LMS Certificate'
#. Label of the course_title (Data) field in DocType 'LMS Certificate Request'
#: lms/lms/doctype/batch_course/batch_course.json
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
msgid "Course Title"
@@ -1257,7 +1265,7 @@ msgstr ""
#. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course'
#. Label of the currency (Link) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:226
#: frontend/src/pages/BatchForm.vue:229 frontend/src/pages/CourseForm.vue:226
#: lms/fixtures/custom_field.json lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_payment/lms_payment.json
@@ -1303,7 +1311,7 @@ msgstr "Dashboard"
#. Label of the date (Date) field in DocType 'Scheduled Flow'
#: frontend/src/components/Modals/EvaluationModal.vue:26
#: frontend/src/components/Modals/Event.vue:40
#: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Modals/LiveClassModal.vue:55
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
@@ -1315,7 +1323,7 @@ msgstr "Datum"
#. Label of the section_break_glxh (Section Break) field in DocType 'LMS Live
#. Class'
#: frontend/src/pages/BatchForm.vue:111
#: frontend/src/pages/BatchForm.vue:118
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Date and Time"
msgstr "Datum und Uhrzeit"
@@ -1350,23 +1358,40 @@ msgstr "Standardwährung"
msgid "Degree Type"
msgstr "Abschlussart"
#: frontend/src/components/CourseOutline.vue:212
#: frontend/src/components/CourseOutline.vue:235
#: frontend/src/components/CourseOutline.vue:293
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:470
msgid "Delete"
msgstr "Löschen"
#: frontend/src/components/CourseOutline.vue:52
msgid "Delete Chapter"
msgstr ""
#: frontend/src/pages/CourseForm.vue:464
msgid "Delete Course"
msgstr ""
#: frontend/src/components/CourseOutline.vue:208
msgid "Delete Lesson"
#: frontend/src/components/CourseOutline.vue:287
msgid "Delete this chapter?"
msgstr ""
#: frontend/src/components/CourseOutline.vue:229
msgid "Delete this lesson?"
msgstr ""
#: frontend/src/pages/CourseForm.vue:465
msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?"
msgstr ""
#: frontend/src/components/CourseOutline.vue:288
msgid "Deleting this chapter will also delete all its lessons and permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?"
msgstr ""
#: frontend/src/components/CourseOutline.vue:230
msgid "Deleting this lesson will permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?"
msgstr ""
#. Label of the description (Text Editor) field in DocType 'Job Opportunity'
#. Label of the description (Small Text) field in DocType 'Certification'
#. Label of the description (Markdown Editor) field in DocType 'Cohort'
@@ -1379,8 +1404,8 @@ msgstr ""
#. Label of the description (Small Text) field in DocType 'LMS Exercise'
#. Label of the description (Text) field in DocType 'LMS Live Class'
#. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:73
#: frontend/src/pages/BatchForm.vue:91 frontend/src/pages/JobCreation.vue:43
#: frontend/src/components/Modals/LiveClassModal.vue:78
#: frontend/src/pages/BatchForm.vue:96 frontend/src/pages/JobCreation.vue:43
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json
@@ -1426,7 +1451,7 @@ msgid "Discard"
msgstr "Verwerfen"
#. Label of the show_discussions (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batch.vue:69
#: frontend/src/pages/Batch.vue:73
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Discussions"
msgstr "Diskussionen"
@@ -1453,7 +1478,7 @@ msgstr "Doppelte Optionen für diese Frage gefunden."
#. Label of the duration (Data) field in DocType 'LMS Batch Timetable'
#. Label of the duration (Int) field in DocType 'LMS Live Class'
#. Label of the duration (Duration) field in DocType 'LMS Quiz'
#: frontend/src/components/Modals/LiveClassModal.vue:58
#: frontend/src/components/Modals/LiveClassModal.vue:62
#: lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -1465,7 +1490,7 @@ msgstr "Dauer"
msgid "Duration (in minutes)"
msgstr ""
#: frontend/src/components/Modals/LiveClassModal.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:58
msgid "Duration of the live class in minutes"
msgstr "Dauer des Live-Kurses in Minuten"
@@ -1487,7 +1512,7 @@ msgstr "E-Mail"
msgid "Edit"
msgstr "Bearbeiten"
#: frontend/src/components/CourseOutline.vue:106
#: frontend/src/components/CourseOutline.vue:45
#: frontend/src/components/Modals/ChapterModal.vue:5
msgid "Edit Chapter"
msgstr "Kapitel bearbeiten"
@@ -1564,7 +1589,7 @@ msgstr "Aktiviert"
#. Label of the end_date (Date) field in DocType 'Cohort'
#. Label of the end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:123 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/BatchForm.vue:131 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:282
msgid "End Date"
@@ -1582,7 +1607,7 @@ msgstr "Enddatum (oder voraussichtlich)"
#. Label of the end_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the end_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the end_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:137
#: frontend/src/pages/BatchForm.vue:147
#: frontend/src/pages/ProfileEvaluator.vue:18
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1618,7 +1643,7 @@ msgstr ""
msgid "Enrollment Count"
msgstr "Anzahl der Einschreibungen"
#: lms/lms/utils.py:1690
#: lms/lms/utils.py:1702
msgid "Enrollment Failed"
msgstr ""
@@ -1646,7 +1671,10 @@ msgstr ""
msgid "Enter the correct answer"
msgstr "Geben Sie die richtige Antwort ein"
#: frontend/src/components/Modals/AnnouncementModal.vue:104
#: frontend/src/components/Modals/AnnouncementModal.vue:105
#: frontend/src/components/Modals/ChapterModal.vue:154
#: frontend/src/components/Modals/ChapterModal.vue:161
#: frontend/src/components/Modals/ChapterModal.vue:197
#: frontend/src/components/Modals/Question.vue:246
#: frontend/src/components/Modals/Question.vue:266
#: frontend/src/components/Modals/Question.vue:323
@@ -1669,7 +1697,7 @@ msgid "Evaluation Details"
msgstr ""
#. Label of the evaluation_end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:166
#: frontend/src/pages/BatchForm.vue:178
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:333
msgid "Evaluation End Date"
@@ -1694,7 +1722,7 @@ msgstr ""
#. Label of the evaluator (Link) field in DocType 'LMS Certificate'
#. Label of the evaluator (Link) field in DocType 'LMS Certificate Evaluation'
#. Label of the evaluator (Link) field in DocType 'LMS Certificate Request'
#: frontend/src/components/Modals/BatchCourseModal.vue:21
#: frontend/src/components/Modals/BatchCourseModal.vue:26
#: frontend/src/pages/ProfileRoles.vue:22
#: lms/lms/doctype/batch_course/batch_course.json
#: lms/lms/doctype/course_evaluator/course_evaluator.json
@@ -1733,7 +1761,7 @@ msgstr ""
msgid "Event"
msgstr "Ereignis"
#: frontend/src/pages/BatchForm.vue:145
#: frontend/src/pages/BatchForm.vue:156
msgid "Example: IST (+5:30)"
msgstr ""
@@ -1860,6 +1888,7 @@ msgid "Free"
msgstr "Frei"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:118
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Freelance"
msgstr ""
@@ -1899,6 +1928,7 @@ msgid "Full Name"
msgstr "Vollständiger Name"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:115
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Full Time"
msgstr "Vollzeit"
@@ -1981,11 +2011,6 @@ msgstr "Überschrift"
msgid "Hello"
msgstr "Hallo"
#. Label of the help_section (Section Break) field in DocType 'Course Lesson'
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Help"
msgstr "Hilfe"
#: lms/templates/courses_created.html:15
msgid "Help others learn something new by creating a course."
msgstr "Helfen Sie anderen, etwas Neues zu lernen, indem Sie einen Kurs erstellen."
@@ -2164,9 +2189,7 @@ msgstr "Falsch"
msgid "Index"
msgstr "Pos"
#. Label of the index_label (Data) field in DocType 'Course Lesson'
#. Label of the index_label (Data) field in DocType 'LMS Exercise'
#: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_exercise/lms_exercise.json
msgid "Index Label"
msgstr ""
@@ -2203,14 +2226,14 @@ msgstr ""
#. Label of the instructor_notes (Markdown Editor) field in DocType 'Course
#. Lesson'
#: frontend/src/pages/Lesson.vue:125 frontend/src/pages/LessonForm.vue:33
#: frontend/src/pages/Lesson.vue:128 frontend/src/pages/LessonForm.vue:38
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Instructor Notes"
msgstr ""
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch'
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:85 frontend/src/pages/CourseForm.vue:154
#: frontend/src/pages/BatchForm.vue:89 frontend/src/pages/CourseForm.vue:154
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Instructors"
@@ -2238,10 +2261,6 @@ msgstr "Ungültiger Einladungscode."
msgid "Invalid Quiz ID"
msgstr "Ungültige Quiz-ID"
#: lms/lms/web_form/add_a_new_batch/add_a_new_batch.js:38
msgid "Invalid Start or End Time."
msgstr "Ungültige Start- oder Endzeit."
#. Label of the invite_code (Data) field in DocType 'Cohort Subgroup'
#. Label of the invite_code (Data) field in DocType 'Invite Request'
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
@@ -2281,6 +2300,14 @@ msgstr "Ist Korrekt"
msgid "Is Onboarding Complete"
msgstr ""
#. Label of the is_scorm_package (Check) field in DocType 'Course Chapter'
#. Label of the is_scorm_package (Check) field in DocType 'Course Lesson'
#: frontend/src/components/Modals/ChapterModal.vue:26
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Is SCORM Package"
msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/Event.vue:121
@@ -2355,7 +2382,7 @@ msgstr "Stellenbezeichnung"
msgid "Jobs"
msgstr "freie Stellen"
#: frontend/src/components/LiveClass.vue:54
#: frontend/src/components/LiveClass.vue:55
#: lms/templates/upcoming_evals.html:15
msgid "Join"
msgstr "Beitreten"
@@ -2593,6 +2620,11 @@ msgstr "Nachname"
msgid "Latest Submission"
msgstr ""
#. Label of the launch_file (Code) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "Launch File"
msgstr ""
#. Label of the lesson (Link) field in DocType 'Exercise Latest Submission'
#. Label of the lesson (Link) field in DocType 'Exercise Submission'
#. Label of the lesson (Link) field in DocType 'Lesson Reference'
@@ -2722,7 +2754,7 @@ msgid "Location Preference"
msgstr ""
#: frontend/src/components/NoPermission.vue:28
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:163
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:167
#: frontend/src/pages/Lesson.vue:24
msgid "Login"
msgstr "Anmelden"
@@ -2759,6 +2791,11 @@ msgstr "Manager:in"
msgid "Manager (Sales/Marketing/Customer)"
msgstr ""
#. Label of the manifest_file (Code) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "Manifest File"
msgstr ""
#: frontend/src/components/Quiz.vue:94
msgid "Mark"
msgstr ""
@@ -2803,7 +2840,7 @@ msgid "Maximun Attempts"
msgstr ""
#. Label of the medium (Select) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:185
#: frontend/src/pages/BatchForm.vue:197
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:309
msgid "Medium"
@@ -2951,7 +2988,7 @@ msgid "Mentors"
msgstr ""
#. Label of the meta_image (Attach Image) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:36 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:40 lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:362
msgid "Meta Image"
msgstr "Meta-Bild"
@@ -2987,11 +3024,11 @@ msgstr ""
msgid "Modified By"
msgstr "Geändert von"
#: lms/lms/api.py:191
#: lms/lms/api.py:197
msgid "Module Name is incorrect or does not exist."
msgstr ""
#: lms/lms/api.py:187
#: lms/lms/api.py:193
msgid "Module is incorrect."
msgstr ""
@@ -3037,7 +3074,7 @@ msgstr ""
msgid "New Course"
msgstr "Neuer Kurs"
#: frontend/src/pages/Jobs.vue:24
#: frontend/src/pages/Jobs.vue:39
msgid "New Job"
msgstr ""
@@ -3124,11 +3161,11 @@ msgstr "Keine Kurse in Überprüfung"
msgid "No introduction"
msgstr "Keine Einführung"
#: frontend/src/pages/Jobs.vue:45
#: frontend/src/pages/Jobs.vue:60
msgid "No jobs posted"
msgstr "Keine Stellen ausgeschrieben"
#: frontend/src/components/LiveClass.vue:60
#: frontend/src/components/LiveClass.vue:61
msgid "No live classes scheduled"
msgstr "Keine Live-Kurse geplant"
@@ -3184,7 +3221,7 @@ msgstr "Nicht für die Vorschau verfügbar"
msgid "Not Graded"
msgstr "Nicht bewertet"
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:131
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:135
msgid "Not Permitted"
msgstr "Nicht zulässig"
@@ -3208,7 +3245,7 @@ msgstr "Benachrichtigungen"
msgid "Notify me when available"
msgstr "Benachrichtige mich, wenn verfügbar"
#: frontend/src/pages/BatchForm.vue:162
#: frontend/src/pages/BatchForm.vue:174
msgid "Number of seats available"
msgstr ""
@@ -3248,6 +3285,10 @@ msgstr "Es werden nur Dateien vom Typ {0} akzeptiert."
msgid "Only image file is allowed."
msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:223
msgid "Only zip files are allowed"
msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Job Opportunity'
#. Option for the 'Membership' (Select) field in DocType 'LMS Batch Old'
#: frontend/src/pages/QuizForm.vue:17
@@ -3352,7 +3393,7 @@ msgid "Pages"
msgstr "Seiten"
#. Label of the paid_batch (Check) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:205
#: frontend/src/pages/BatchForm.vue:217
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:373
msgid "Paid Batch"
@@ -3369,6 +3410,7 @@ msgid "Pan Number"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:116
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Part Time"
msgstr "Teilzeit"
@@ -3407,7 +3449,7 @@ msgstr ""
#. Label of the payment (Link) field in DocType 'Batch Student'
#. Label of the payment (Link) field in DocType 'LMS Enrollment'
#: frontend/src/pages/BatchForm.vue:199
#: frontend/src/pages/BatchForm.vue:211
#: lms/lms/doctype/batch_student/batch_student.json
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
msgid "Payment"
@@ -3523,6 +3565,10 @@ msgstr "Bitte klicken Sie auf die folgende Schaltfläche, um Ihr neues Passwort
msgid "Please enable Zoom Settings to use this feature."
msgstr "Bitte aktivieren Sie die Zoom-Einstellungen, um diese Funktion zu nutzen."
#: frontend/src/components/CourseOutline.vue:312
msgid "Please enroll for this course to view this lesson"
msgstr ""
#: frontend/src/components/Quiz.vue:13
msgid "Please ensure that you complete all the questions in {0} minutes."
msgstr ""
@@ -3556,11 +3602,11 @@ msgstr ""
msgid "Please login to access the quiz."
msgstr "Bitte melden Sie sich an, um auf das Quiz zuzugreifen."
#: frontend/src/components/NoPermission.vue:25 frontend/src/pages/Batch.vue:142
#: frontend/src/components/NoPermission.vue:25 frontend/src/pages/Batch.vue:146
msgid "Please login to access this page."
msgstr "Bitte melden Sie sich an, um auf diese Seite zuzugreifen."
#: lms/lms/api.py:183
#: lms/lms/api.py:189
msgid "Please login to continue with payment."
msgstr "Bitte loggen Sie sich ein, um mit der Zahlung fortzufahren."
@@ -3573,6 +3619,10 @@ msgstr "Bitte bereiten Sie sich gut vor und erscheinen Sie pünktlich zu den Pr
msgid "Please take appropriate action at {0}"
msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:172
msgid "Please upload a SCORM package"
msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:95
msgid "Please upload the assignment file."
msgstr ""
@@ -3730,7 +3780,7 @@ msgstr "Auf der Teilnehmerseite veröffentlichen"
#. Label of the published (Check) field in DocType 'LMS Batch'
#. Label of the published (Check) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:108
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:171
#: frontend/src/pages/BatchForm.vue:28 frontend/src/pages/CourseForm.vue:171
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:266
@@ -3941,11 +3991,11 @@ msgstr "Abgelehnt"
msgid "Related Courses"
msgstr "Ähnliche Kurse"
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/CourseForm.vue:99
#: frontend/src/pages/BatchForm.vue:73 frontend/src/pages/CourseForm.vue:99
msgid "Remove"
msgstr "Entfernen"
#: frontend/src/components/Modals/AnnouncementModal.vue:26
#: frontend/src/components/Modals/AnnouncementModal.vue:27
msgid "Reply To"
msgstr "Antworten auf"
@@ -4039,6 +4089,21 @@ msgstr ""
msgid "Run"
msgstr ""
#. Label of the scorm_section (Section Break) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "SCORM"
msgstr ""
#. Label of the scorm_package (Link) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "SCORM Package"
msgstr ""
#. Label of the scorm_package_path (Code) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "SCORM Package Path"
msgstr ""
#. Option for the 'Day' (Select) field in DocType 'Evaluator Schedule'
#. Option for the 'Day' (Select) field in DocType 'LMS Certificate Request'
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
@@ -4100,7 +4165,7 @@ msgid "Search for an icon"
msgstr ""
#. Label of the seat_count (Int) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:159
#: frontend/src/pages/BatchForm.vue:171
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:327
msgid "Seat Count"
@@ -4144,7 +4209,7 @@ msgid "Set your Password"
msgstr ""
#: frontend/src/components/Modals/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:153 frontend/src/pages/CourseForm.vue:161
#: frontend/src/pages/BatchForm.vue:165 frontend/src/pages/CourseForm.vue:161
#: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:78
msgid "Settings"
msgstr "Einstellungen"
@@ -4159,7 +4224,7 @@ msgstr ""
msgid "Short Introduction"
msgstr ""
#: frontend/src/pages/BatchForm.vue:94
#: frontend/src/pages/BatchForm.vue:99
msgid "Short description of the batch"
msgstr ""
@@ -4323,7 +4388,7 @@ msgstr "Starten"
#. Label of the start_date (Date) field in DocType 'Education Detail'
#. Label of the start_date (Date) field in DocType 'LMS Batch'
#. Label of the start_date (Date) field in DocType 'LMS Batch Old'
#: frontend/src/pages/BatchForm.vue:117
#: frontend/src/pages/BatchForm.vue:124
#: lms/lms/doctype/education_detail/education_detail.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -4332,7 +4397,7 @@ msgid "Start Date"
msgstr "Startdatum"
#: frontend/src/components/CourseCardOverlay.vue:63
#: frontend/src/pages/Lesson.vue:21
#: frontend/src/pages/Lesson.vue:21 frontend/src/pages/SCORMChapter.vue:28
#: lms/templates/emails/lms_course_interest.html:9
msgid "Start Learning"
msgstr "Mit dem Lernen beginnen"
@@ -4344,7 +4409,7 @@ msgstr "Mit dem Lernen beginnen"
#. Label of the start_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the start_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the start_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:131
#: frontend/src/pages/BatchForm.vue:140
#: frontend/src/pages/ProfileEvaluator.vue:15
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -4361,19 +4426,11 @@ msgstr "Startzeit"
msgid "Start Time cannot be greater than End Time"
msgstr "Die Startzeit darf nicht nach der Endzeit liegen"
#: lms/lms/web_form/add_a_new_batch/add_a_new_batch.js:43
msgid "Start Time should be less than End Time."
msgstr "Startzeit sollte vor der Endzeit liegen."
#. Label of the start_url (Small Text) field in DocType 'LMS Live Class'
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Start URL"
msgstr "Start-URL"
#: lms/lms/web_form/add_a_new_batch/add_a_new_batch.js:30
msgid "Start date cannot be a past date."
msgstr "Das Startdatum darf nicht in der Vergangenheit liegen."
#. Option for the 'Company Type' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Startup Organization"
@@ -4516,8 +4573,10 @@ msgstr ""
#: frontend/src/components/BatchOverlay.vue:135
#: frontend/src/components/BatchStudents.vue:157
#: frontend/src/components/CourseCardOverlay.vue:161
#: frontend/src/components/Modals/AnnouncementModal.vue:98
#: frontend/src/components/Modals/AnnouncementModal.vue:99
#: frontend/src/components/Modals/AssessmentModal.vue:73
#: frontend/src/components/Modals/ChapterModal.vue:148
#: frontend/src/components/Modals/ChapterModal.vue:193
#: frontend/src/components/Modals/Event.vue:255
#: frontend/src/components/Modals/Event.vue:310
#: frontend/src/components/Modals/Question.vue:261
@@ -4713,10 +4772,14 @@ msgstr "Dieses Zertifikat läuft nicht ab"
msgid "This course has:"
msgstr ""
#: lms/lms/utils.py:1570
#: lms/lms/utils.py:1582
msgid "This course is free."
msgstr "Dieser Kurs ist kostenlos."
#: frontend/src/pages/SCORMChapter.vue:198
msgid "This is a chapter in the course {0}"
msgstr ""
#: lms/lms/widgets/CourseOutline.html:62
msgid "This lesson is not available for preview. As you are the Instructor of the course only you can see it."
msgstr ""
@@ -4742,7 +4805,7 @@ msgstr "Donnerstag"
#. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48
#: frontend/src/components/Modals/LiveClassModal.vue:36
#: frontend/src/components/Modals/LiveClassModal.vue:37
#: frontend/src/components/Quiz.vue:44
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Time"
@@ -4753,7 +4816,7 @@ msgstr "Zeit"
msgid "Time Preference"
msgstr ""
#: frontend/src/components/Modals/LiveClassModal.vue:28
#: frontend/src/components/Modals/LiveClassModal.vue:29
msgid "Time must be in 24 hour format (HH:mm). Example 11:30 or 22:00"
msgstr ""
@@ -4781,8 +4844,8 @@ msgstr "Stundenplan-Vorlage"
#. Label of the timezone (Data) field in DocType 'LMS Batch'
#. Label of the timezone (Data) field in DocType 'LMS Certificate Request'
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/LiveClassModal.vue:44
#: frontend/src/pages/BatchForm.vue:143
#: frontend/src/components/Modals/LiveClassModal.vue:46
#: frontend/src/pages/BatchForm.vue:154
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -4811,7 +4874,7 @@ msgstr ""
#. Label of the title (Data) field in DocType 'Work Experience'
#: frontend/src/components/Modals/DiscussionModal.vue:18
#: frontend/src/components/Modals/LiveClassModal.vue:23
#: frontend/src/pages/BatchForm.vue:18 frontend/src/pages/CourseForm.vue:32
#: frontend/src/pages/BatchForm.vue:20 frontend/src/pages/CourseForm.vue:32
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/QuizForm.vue:48
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
@@ -4833,6 +4896,10 @@ msgstr ""
msgid "Title"
msgstr "Bezeichnung"
#: frontend/src/components/Modals/ChapterModal.vue:169
msgid "Title is required"
msgstr ""
#. Label of the unavailable_to (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:98
#: lms/lms/doctype/course_evaluator/course_evaluator.json
@@ -4844,11 +4911,7 @@ msgstr "An"
msgid "To Date"
msgstr "Bis-Datum"
#: lms/lms/web_form/profile/profile.js:19
msgid "To Date is mandatory in Work Experience."
msgstr ""
#: lms/lms/utils.py:1581
#: lms/lms/utils.py:1593
msgid "To join this batch, please contact the Administrator."
msgstr "Um dieser Gruppe beizutreten, wenden Sie sich bitte an den Administrator."
@@ -4902,7 +4965,7 @@ msgstr "Twitter"
#. Label of the type (Select) field in DocType 'LMS Quiz Question'
#: frontend/src/components/Modals/AssessmentModal.vue:22
#: frontend/src/components/Modals/Question.vue:54
#: frontend/src/pages/JobCreation.vue:28
#: frontend/src/pages/JobCreation.vue:28 frontend/src/pages/Jobs.vue:16
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/lms_assignment/lms_assignment.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
@@ -4970,7 +5033,7 @@ msgstr ""
msgid "Upcoming"
msgstr ""
#: frontend/src/pages/Batch.vue:154
#: frontend/src/pages/Batch.vue:158
msgid "Upcoming Batches"
msgstr ""
@@ -4989,7 +5052,7 @@ msgstr "Aktualisieren"
msgid "Update Password"
msgstr "Passwort ändern"
#: frontend/src/pages/BatchForm.vue:51 frontend/src/pages/CourseForm.vue:80
#: frontend/src/pages/BatchForm.vue:55 frontend/src/pages/CourseForm.vue:80
msgid "Upload"
msgstr "Hochladen"
@@ -5172,15 +5235,15 @@ msgstr "Schreiben Sie hier Ihre Antwort"
msgid "You already have an evaluation on {0} at {1} for the course {2}."
msgstr ""
#: lms/lms/api.py:207
#: lms/lms/api.py:213
msgid "You are already enrolled for this batch."
msgstr ""
#: lms/lms/api.py:199
#: lms/lms/api.py:205
msgid "You are already enrolled for this course."
msgstr "Sie sind bereits in diesem Kurs eingeschrieben."
#: frontend/src/pages/Batch.vue:136
#: frontend/src/pages/Batch.vue:140
msgid "You are not a member of this batch. Please checkout our upcoming batches."
msgstr ""
@@ -5188,6 +5251,14 @@ msgstr ""
msgid "You are not a mentor of the course {0}"
msgstr "Sie sind kein Mentor des Kurses {0}"
#: frontend/src/components/CourseOutline.vue:311
msgid "You are not enrolled"
msgstr ""
#: frontend/src/pages/SCORMChapter.vue:22
msgid "You are not enrolled in this course. Please enroll to access this lesson."
msgstr ""
#: frontend/src/pages/Courses.vue:134
msgid "You can add chapters and lessons to it."
msgstr ""
@@ -5340,7 +5411,7 @@ msgstr "Zoom-Einstellungen"
msgid "cancel your application"
msgstr "stornieren Sie Ihre Bewerbung"
#: frontend/src/pages/Lesson.vue:170
#: frontend/src/pages/Lesson.vue:174
msgid "completed"
msgstr "abgeschlossen"
@@ -5388,7 +5459,7 @@ msgstr ""
msgid "you can"
msgstr "Sie können"
#: lms/lms/api.py:740 lms/lms/api.py:748
#: lms/lms/api.py:747 lms/lms/api.py:755
msgid "{0} Settings not found"
msgstr ""

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-11-08 16:04+0000\n"
"PO-Revision-Date: 2024-11-11 15:23\n"
"POT-Creation-Date: 2024-11-15 16:04+0000\n"
"PO-Revision-Date: 2024-11-18 17:32\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Esperanto\n"
"MIME-Version: 1.0\n"
@@ -109,7 +109,7 @@ msgstr "crwdns149212:0crwdne149212:0"
msgid "Add Chapter"
msgstr "crwdns149214:0crwdne149214:0"
#: frontend/src/components/CourseOutline.vue:102
#: frontend/src/components/CourseOutline.vue:124
msgid "Add Lesson"
msgstr "crwdns149216:0crwdne149216:0"
@@ -217,7 +217,7 @@ msgstr "crwdns149260:0crwdne149260:0"
msgid "Allow accessing future dates"
msgstr "crwdns149262:0crwdne149262:0"
#: frontend/src/pages/BatchForm.vue:29
#: frontend/src/pages/BatchForm.vue:33
msgid "Allow self enrollment"
msgstr "crwdns149264:0crwdne149264:0"
@@ -228,7 +228,7 @@ msgstr "crwdns149266:0crwdne149266:0"
#. Label of the amount (Currency) field in DocType 'Web Form'
#. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the amount (Currency) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:209 lms/fixtures/custom_field.json
#: frontend/src/pages/BatchForm.vue:221 lms/fixtures/custom_field.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/public/js/common_functions.js:379
@@ -258,11 +258,11 @@ msgstr "crwdns149274:0crwdne149274:0"
msgid "Amount with GST"
msgstr "crwdns149276:0crwdne149276:0"
#: frontend/src/components/Modals/AnnouncementModal.vue:32
#: frontend/src/components/Modals/AnnouncementModal.vue:33
msgid "Announcement"
msgstr "crwdns149278:0crwdne149278:0"
#: frontend/src/components/Modals/AnnouncementModal.vue:99
#: frontend/src/components/Modals/AnnouncementModal.vue:100
msgid "Announcement has been sent successfully"
msgstr "crwdns151584:0crwdne151584:0"
@@ -280,7 +280,7 @@ msgstr "crwdns149280:0crwdne149280:0"
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
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/BatchForm.vue:77
msgid "Appears when the batch URL is shared on any online platform"
msgstr "crwdns151466:0crwdne151466:0"
@@ -319,10 +319,6 @@ msgstr "crwdns149292:0crwdne149292:0"
msgid "Apps"
msgstr "crwdns149294:0crwdne149294:0"
#: frontend/src/components/CourseOutline.vue:209
msgid "Are you sure you want to delete this lesson?"
msgstr "crwdns149296:0crwdne149296:0"
#. Label of the user_category (Check) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Ask User Category during Signup"
@@ -420,7 +416,7 @@ msgid "Auto Assign"
msgstr "crwdns149332:0crwdne149332:0"
#. Label of the auto_recording (Select) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/LiveClassModal.vue:66
#: frontend/src/components/Modals/LiveClassModal.vue:71
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Auto Recording"
msgstr "crwdns149334:0crwdne149334:0"
@@ -482,7 +478,8 @@ msgid "Batch Description"
msgstr "crwdns149354:0crwdne149354:0"
#. Label of the batch_details (Text Editor) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:98 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:104
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:349
#: lms/templates/emails/batch_confirmation.html:30
msgid "Batch Details"
@@ -547,10 +544,6 @@ msgstr "crwdns149374:0crwdne149374:0"
msgid "Batch end date cannot be before the batch start date"
msgstr "crwdns149376:0crwdne149376:0"
#: lms/lms/web_form/add_a_new_batch/add_a_new_batch.js:6
msgid "Batch {0} has been successfully created!"
msgstr "crwdns149378:0{0}crwdne149378:0"
#. Group in LMS Course's connections
#. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue:8 lms/lms/doctype/lms_course/lms_course.json
@@ -581,7 +574,7 @@ msgstr "crwdns149386:0crwdne149386:0"
msgid "Billing Name"
msgstr "crwdns149388:0crwdne149388:0"
#: frontend/src/components/Modals/EditProfile.vue:72
#: frontend/src/components/Modals/EditProfile.vue:75
msgid "Bio"
msgstr "crwdns149390:0crwdne149390:0"
@@ -649,7 +642,7 @@ msgstr "crwdns149414:0crwdne149414:0"
#. Label of the category (Link) field in DocType 'LMS Batch'
#. Label of the category (Data) field in DocType 'LMS Category'
#. Label of the category (Link) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/BatchForm.vue:202 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/JobDetail.vue:102
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -734,6 +727,14 @@ msgstr "crwdns149442:0crwdne149442:0"
msgid "Chapter Reference"
msgstr "crwdns149444:0crwdne149444:0"
#: frontend/src/components/Modals/ChapterModal.vue:149
msgid "Chapter added successfully"
msgstr "crwdns151620:0crwdne151620:0"
#: frontend/src/components/Modals/ChapterModal.vue:193
msgid "Chapter updated successfully"
msgstr "crwdns151622:0crwdne151622:0"
#. Label of the chapters (Table) field in DocType 'LMS Course'
#. Group in LMS Course's connections
#: lms/lms/doctype/lms_course/lms_course.json
@@ -987,7 +988,7 @@ msgid "Contact the Administrator to enroll for this course."
msgstr "crwdns149536:0crwdne149536:0"
#. Label of the content (Text) field in DocType 'Course Lesson'
#: frontend/src/pages/LessonForm.vue:53
#: frontend/src/pages/LessonForm.vue:58
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Content"
msgstr "crwdns149538:0crwdne149538:0"
@@ -997,6 +998,7 @@ msgid "Continue Learning"
msgstr "crwdns149540:0crwdne149540:0"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:117
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Contract"
msgstr "crwdns149542:0crwdne149542:0"
@@ -1060,7 +1062,7 @@ msgstr "crwdns149554:0crwdne149554:0"
#. Label of the course (Link) field in DocType 'Related Courses'
#. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/BatchCourseModal.vue:17
#: frontend/src/components/Modals/BatchCourseModal.vue:20
#: frontend/src/components/Modals/EvaluationModal.vue:20
#: frontend/src/components/Modals/Event.vue:24
#: lms/lms/doctype/batch_course/batch_course.json
@@ -1153,6 +1155,10 @@ msgstr "crwdns149578:0crwdne149578:0"
msgid "Course Name"
msgstr "crwdns149580:0crwdne149580:0"
#: frontend/src/pages/CourseDetail.vue:74
msgid "Course Outline"
msgstr "crwdns151624:0crwdne151624:0"
#. Label of the course_price (Currency) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:219
#: lms/lms/doctype/lms_course/lms_course.json
@@ -1175,9 +1181,11 @@ msgid "Course Stats"
msgstr "crwdns149588:0crwdne149588:0"
#. Label of the title (Data) field in DocType 'Batch Course'
#. Label of the course_title (Data) field in DocType 'Course Chapter'
#. Label of the course_title (Data) field in DocType 'LMS Certificate'
#. Label of the course_title (Data) field in DocType 'LMS Certificate Request'
#: lms/lms/doctype/batch_course/batch_course.json
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
msgid "Course Title"
@@ -1257,7 +1265,7 @@ msgstr "crwdns149616:0crwdne149616:0"
#. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course'
#. Label of the currency (Link) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:226
#: frontend/src/pages/BatchForm.vue:229 frontend/src/pages/CourseForm.vue:226
#: lms/fixtures/custom_field.json lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_payment/lms_payment.json
@@ -1303,7 +1311,7 @@ msgstr "crwdns149630:0crwdne149630:0"
#. Label of the date (Date) field in DocType 'Scheduled Flow'
#: frontend/src/components/Modals/EvaluationModal.vue:26
#: frontend/src/components/Modals/Event.vue:40
#: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Modals/LiveClassModal.vue:55
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
@@ -1315,7 +1323,7 @@ msgstr "crwdns149632:0crwdne149632:0"
#. Label of the section_break_glxh (Section Break) field in DocType 'LMS Live
#. Class'
#: frontend/src/pages/BatchForm.vue:111
#: frontend/src/pages/BatchForm.vue:118
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Date and Time"
msgstr "crwdns149634:0crwdne149634:0"
@@ -1350,23 +1358,40 @@ msgstr "crwdns149642:0crwdne149642:0"
msgid "Degree Type"
msgstr "crwdns149644:0crwdne149644:0"
#: frontend/src/components/CourseOutline.vue:212
#: frontend/src/components/CourseOutline.vue:235
#: frontend/src/components/CourseOutline.vue:293
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:470
msgid "Delete"
msgstr "crwdns149646:0crwdne149646:0"
#: frontend/src/components/CourseOutline.vue:52
msgid "Delete Chapter"
msgstr "crwdns151626:0crwdne151626:0"
#: frontend/src/pages/CourseForm.vue:464
msgid "Delete Course"
msgstr "crwdns151588:0crwdne151588:0"
#: frontend/src/components/CourseOutline.vue:208
msgid "Delete Lesson"
msgstr "crwdns149648:0crwdne149648:0"
#: frontend/src/components/CourseOutline.vue:287
msgid "Delete this chapter?"
msgstr "crwdns151628:0crwdne151628:0"
#: frontend/src/components/CourseOutline.vue:229
msgid "Delete this lesson?"
msgstr "crwdns151630:0crwdne151630:0"
#: frontend/src/pages/CourseForm.vue:465
msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?"
msgstr "crwdns151590:0crwdne151590:0"
#: frontend/src/components/CourseOutline.vue:288
msgid "Deleting this chapter will also delete all its lessons and permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?"
msgstr "crwdns151632:0crwdne151632:0"
#: frontend/src/components/CourseOutline.vue:230
msgid "Deleting this lesson will permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?"
msgstr "crwdns151634:0crwdne151634:0"
#. Label of the description (Text Editor) field in DocType 'Job Opportunity'
#. Label of the description (Small Text) field in DocType 'Certification'
#. Label of the description (Markdown Editor) field in DocType 'Cohort'
@@ -1379,8 +1404,8 @@ msgstr "crwdns151590:0crwdne151590:0"
#. Label of the description (Small Text) field in DocType 'LMS Exercise'
#. Label of the description (Text) field in DocType 'LMS Live Class'
#. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:73
#: frontend/src/pages/BatchForm.vue:91 frontend/src/pages/JobCreation.vue:43
#: frontend/src/components/Modals/LiveClassModal.vue:78
#: frontend/src/pages/BatchForm.vue:96 frontend/src/pages/JobCreation.vue:43
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json
@@ -1426,7 +1451,7 @@ msgid "Discard"
msgstr "crwdns149662:0crwdne149662:0"
#. Label of the show_discussions (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batch.vue:69
#: frontend/src/pages/Batch.vue:73
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Discussions"
msgstr "crwdns149664:0crwdne149664:0"
@@ -1453,7 +1478,7 @@ msgstr "crwdns149670:0crwdne149670:0"
#. Label of the duration (Data) field in DocType 'LMS Batch Timetable'
#. Label of the duration (Int) field in DocType 'LMS Live Class'
#. Label of the duration (Duration) field in DocType 'LMS Quiz'
#: frontend/src/components/Modals/LiveClassModal.vue:58
#: frontend/src/components/Modals/LiveClassModal.vue:62
#: lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -1465,7 +1490,7 @@ msgstr "crwdns149672:0crwdne149672:0"
msgid "Duration (in minutes)"
msgstr "crwdns149674:0crwdne149674:0"
#: frontend/src/components/Modals/LiveClassModal.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:58
msgid "Duration of the live class in minutes"
msgstr "crwdns149676:0crwdne149676:0"
@@ -1487,7 +1512,7 @@ msgstr "crwdns149680:0crwdne149680:0"
msgid "Edit"
msgstr "crwdns149682:0crwdne149682:0"
#: frontend/src/components/CourseOutline.vue:106
#: frontend/src/components/CourseOutline.vue:45
#: frontend/src/components/Modals/ChapterModal.vue:5
msgid "Edit Chapter"
msgstr "crwdns149684:0crwdne149684:0"
@@ -1564,7 +1589,7 @@ msgstr "crwdns149714:0crwdne149714:0"
#. Label of the end_date (Date) field in DocType 'Cohort'
#. Label of the end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:123 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/BatchForm.vue:131 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:282
msgid "End Date"
@@ -1582,7 +1607,7 @@ msgstr "crwdns149718:0crwdne149718:0"
#. Label of the end_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the end_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the end_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:137
#: frontend/src/pages/BatchForm.vue:147
#: frontend/src/pages/ProfileEvaluator.vue:18
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1618,7 +1643,7 @@ msgstr "crwdns149728:0crwdne149728:0"
msgid "Enrollment Count"
msgstr "crwdns149730:0crwdne149730:0"
#: lms/lms/utils.py:1690
#: lms/lms/utils.py:1702
msgid "Enrollment Failed"
msgstr "crwdns149732:0crwdne149732:0"
@@ -1646,7 +1671,10 @@ msgstr "crwdns149740:0crwdne149740:0"
msgid "Enter the correct answer"
msgstr "crwdns149742:0crwdne149742:0"
#: frontend/src/components/Modals/AnnouncementModal.vue:104
#: frontend/src/components/Modals/AnnouncementModal.vue:105
#: frontend/src/components/Modals/ChapterModal.vue:154
#: frontend/src/components/Modals/ChapterModal.vue:161
#: frontend/src/components/Modals/ChapterModal.vue:197
#: frontend/src/components/Modals/Question.vue:246
#: frontend/src/components/Modals/Question.vue:266
#: frontend/src/components/Modals/Question.vue:323
@@ -1669,7 +1697,7 @@ msgid "Evaluation Details"
msgstr "crwdns149748:0crwdne149748:0"
#. Label of the evaluation_end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:166
#: frontend/src/pages/BatchForm.vue:178
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:333
msgid "Evaluation End Date"
@@ -1694,7 +1722,7 @@ msgstr "crwdns149756:0crwdne149756:0"
#. Label of the evaluator (Link) field in DocType 'LMS Certificate'
#. Label of the evaluator (Link) field in DocType 'LMS Certificate Evaluation'
#. Label of the evaluator (Link) field in DocType 'LMS Certificate Request'
#: frontend/src/components/Modals/BatchCourseModal.vue:21
#: frontend/src/components/Modals/BatchCourseModal.vue:26
#: frontend/src/pages/ProfileRoles.vue:22
#: lms/lms/doctype/batch_course/batch_course.json
#: lms/lms/doctype/course_evaluator/course_evaluator.json
@@ -1733,7 +1761,7 @@ msgstr "crwdns149764:0crwdne149764:0"
msgid "Event"
msgstr "crwdns149766:0crwdne149766:0"
#: frontend/src/pages/BatchForm.vue:145
#: frontend/src/pages/BatchForm.vue:156
msgid "Example: IST (+5:30)"
msgstr "crwdns151472:0crwdne151472:0"
@@ -1860,6 +1888,7 @@ msgid "Free"
msgstr "crwdns149810:0crwdne149810:0"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:118
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Freelance"
msgstr "crwdns149812:0crwdne149812:0"
@@ -1899,6 +1928,7 @@ msgid "Full Name"
msgstr "crwdns149824:0crwdne149824:0"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:115
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Full Time"
msgstr "crwdns149826:0crwdne149826:0"
@@ -1981,11 +2011,6 @@ msgstr "crwdns149856:0crwdne149856:0"
msgid "Hello"
msgstr "crwdns149858:0crwdne149858:0"
#. Label of the help_section (Section Break) field in DocType 'Course Lesson'
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Help"
msgstr "crwdns149860:0crwdne149860:0"
#: lms/templates/courses_created.html:15
msgid "Help others learn something new by creating a course."
msgstr "crwdns149862:0crwdne149862:0"
@@ -2164,9 +2189,7 @@ msgstr "crwdns149924:0crwdne149924:0"
msgid "Index"
msgstr "crwdns149926:0crwdne149926:0"
#. Label of the index_label (Data) field in DocType 'Course Lesson'
#. Label of the index_label (Data) field in DocType 'LMS Exercise'
#: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_exercise/lms_exercise.json
msgid "Index Label"
msgstr "crwdns149928:0crwdne149928:0"
@@ -2203,14 +2226,14 @@ msgstr "crwdns149938:0crwdne149938:0"
#. Label of the instructor_notes (Markdown Editor) field in DocType 'Course
#. Lesson'
#: frontend/src/pages/Lesson.vue:125 frontend/src/pages/LessonForm.vue:33
#: frontend/src/pages/Lesson.vue:128 frontend/src/pages/LessonForm.vue:38
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Instructor Notes"
msgstr "crwdns149940:0crwdne149940:0"
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch'
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:85 frontend/src/pages/CourseForm.vue:154
#: frontend/src/pages/BatchForm.vue:89 frontend/src/pages/CourseForm.vue:154
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Instructors"
@@ -2238,10 +2261,6 @@ msgstr "crwdns149950:0crwdne149950:0"
msgid "Invalid Quiz ID"
msgstr "crwdns149952:0crwdne149952:0"
#: lms/lms/web_form/add_a_new_batch/add_a_new_batch.js:38
msgid "Invalid Start or End Time."
msgstr "crwdns149954:0crwdne149954:0"
#. Label of the invite_code (Data) field in DocType 'Cohort Subgroup'
#. Label of the invite_code (Data) field in DocType 'Invite Request'
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
@@ -2281,6 +2300,14 @@ msgstr "crwdns149964:0crwdne149964:0"
msgid "Is Onboarding Complete"
msgstr "crwdns149966:0crwdne149966:0"
#. Label of the is_scorm_package (Check) field in DocType 'Course Chapter'
#. Label of the is_scorm_package (Check) field in DocType 'Course Lesson'
#: frontend/src/components/Modals/ChapterModal.vue:26
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Is SCORM Package"
msgstr "crwdns151636:0crwdne151636:0"
#. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/Event.vue:121
@@ -2355,7 +2382,7 @@ msgstr "crwdns149992:0crwdne149992:0"
msgid "Jobs"
msgstr "crwdns149994:0crwdne149994:0"
#: frontend/src/components/LiveClass.vue:54
#: frontend/src/components/LiveClass.vue:55
#: lms/templates/upcoming_evals.html:15
msgid "Join"
msgstr "crwdns149996:0crwdne149996:0"
@@ -2593,6 +2620,11 @@ msgstr "crwdns150076:0crwdne150076:0"
msgid "Latest Submission"
msgstr "crwdns150078:0crwdne150078:0"
#. Label of the launch_file (Code) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "Launch File"
msgstr "crwdns151638:0crwdne151638:0"
#. Label of the lesson (Link) field in DocType 'Exercise Latest Submission'
#. Label of the lesson (Link) field in DocType 'Exercise Submission'
#. Label of the lesson (Link) field in DocType 'Lesson Reference'
@@ -2722,7 +2754,7 @@ msgid "Location Preference"
msgstr "crwdns150120:0crwdne150120:0"
#: frontend/src/components/NoPermission.vue:28
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:163
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:167
#: frontend/src/pages/Lesson.vue:24
msgid "Login"
msgstr "crwdns150122:0crwdne150122:0"
@@ -2759,6 +2791,11 @@ msgstr "crwdns150134:0crwdne150134:0"
msgid "Manager (Sales/Marketing/Customer)"
msgstr "crwdns150136:0crwdne150136:0"
#. Label of the manifest_file (Code) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "Manifest File"
msgstr "crwdns151640:0crwdne151640:0"
#: frontend/src/components/Quiz.vue:94
msgid "Mark"
msgstr "crwdns150138:0crwdne150138:0"
@@ -2803,7 +2840,7 @@ msgid "Maximun Attempts"
msgstr "crwdns150152:0crwdne150152:0"
#. Label of the medium (Select) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:185
#: frontend/src/pages/BatchForm.vue:197
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:309
msgid "Medium"
@@ -2951,7 +2988,7 @@ msgid "Mentors"
msgstr "crwdns150188:0crwdne150188:0"
#. Label of the meta_image (Attach Image) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:36 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:40 lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:362
msgid "Meta Image"
msgstr "crwdns150190:0crwdne150190:0"
@@ -2987,11 +3024,11 @@ msgstr "crwdns150196:0crwdne150196:0"
msgid "Modified By"
msgstr "crwdns150198:0crwdne150198:0"
#: lms/lms/api.py:191
#: lms/lms/api.py:197
msgid "Module Name is incorrect or does not exist."
msgstr "crwdns150200:0crwdne150200:0"
#: lms/lms/api.py:187
#: lms/lms/api.py:193
msgid "Module is incorrect."
msgstr "crwdns150202:0crwdne150202:0"
@@ -3037,7 +3074,7 @@ msgstr "crwdns150218:0crwdne150218:0"
msgid "New Course"
msgstr "crwdns150220:0crwdne150220:0"
#: frontend/src/pages/Jobs.vue:24
#: frontend/src/pages/Jobs.vue:39
msgid "New Job"
msgstr "crwdns150222:0crwdne150222:0"
@@ -3124,11 +3161,11 @@ msgstr "crwdns150256:0crwdne150256:0"
msgid "No introduction"
msgstr "crwdns150258:0crwdne150258:0"
#: frontend/src/pages/Jobs.vue:45
#: frontend/src/pages/Jobs.vue:60
msgid "No jobs posted"
msgstr "crwdns150260:0crwdne150260:0"
#: frontend/src/components/LiveClass.vue:60
#: frontend/src/components/LiveClass.vue:61
msgid "No live classes scheduled"
msgstr "crwdns150262:0crwdne150262:0"
@@ -3184,7 +3221,7 @@ msgstr "crwdns150282:0crwdne150282:0"
msgid "Not Graded"
msgstr "crwdns150284:0crwdne150284:0"
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:131
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:135
msgid "Not Permitted"
msgstr "crwdns150286:0crwdne150286:0"
@@ -3208,7 +3245,7 @@ msgstr "crwdns150292:0crwdne150292:0"
msgid "Notify me when available"
msgstr "crwdns150294:0crwdne150294:0"
#: frontend/src/pages/BatchForm.vue:162
#: frontend/src/pages/BatchForm.vue:174
msgid "Number of seats available"
msgstr "crwdns151486:0crwdne151486:0"
@@ -3248,6 +3285,10 @@ msgstr "crwdns150308:0{0}crwdne150308:0"
msgid "Only image file is allowed."
msgstr "crwdns150310:0crwdne150310:0"
#: frontend/src/components/Modals/ChapterModal.vue:223
msgid "Only zip files are allowed"
msgstr "crwdns151642:0crwdne151642:0"
#. Option for the 'Status' (Select) field in DocType 'Job Opportunity'
#. Option for the 'Membership' (Select) field in DocType 'LMS Batch Old'
#: frontend/src/pages/QuizForm.vue:17
@@ -3352,7 +3393,7 @@ msgid "Pages"
msgstr "crwdns150350:0crwdne150350:0"
#. Label of the paid_batch (Check) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:205
#: frontend/src/pages/BatchForm.vue:217
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:373
msgid "Paid Batch"
@@ -3369,6 +3410,7 @@ msgid "Pan Number"
msgstr "crwdns150356:0crwdne150356:0"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:116
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Part Time"
msgstr "crwdns150358:0crwdne150358:0"
@@ -3407,7 +3449,7 @@ msgstr "crwdns151488:0crwdne151488:0"
#. Label of the payment (Link) field in DocType 'Batch Student'
#. Label of the payment (Link) field in DocType 'LMS Enrollment'
#: frontend/src/pages/BatchForm.vue:199
#: frontend/src/pages/BatchForm.vue:211
#: lms/lms/doctype/batch_student/batch_student.json
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
msgid "Payment"
@@ -3523,6 +3565,10 @@ msgstr "crwdns150406:0crwdne150406:0"
msgid "Please enable Zoom Settings to use this feature."
msgstr "crwdns150408:0crwdne150408:0"
#: frontend/src/components/CourseOutline.vue:312
msgid "Please enroll for this course to view this lesson"
msgstr "crwdns151644:0crwdne151644:0"
#: frontend/src/components/Quiz.vue:13
msgid "Please ensure that you complete all the questions in {0} minutes."
msgstr "crwdns150410:0{0}crwdne150410:0"
@@ -3556,11 +3602,11 @@ msgstr "crwdns150422:0crwdne150422:0"
msgid "Please login to access the quiz."
msgstr "crwdns150424:0crwdne150424:0"
#: frontend/src/components/NoPermission.vue:25 frontend/src/pages/Batch.vue:142
#: frontend/src/components/NoPermission.vue:25 frontend/src/pages/Batch.vue:146
msgid "Please login to access this page."
msgstr "crwdns150426:0crwdne150426:0"
#: lms/lms/api.py:183
#: lms/lms/api.py:189
msgid "Please login to continue with payment."
msgstr "crwdns150428:0crwdne150428:0"
@@ -3573,6 +3619,10 @@ msgstr "crwdns150430:0crwdne150430:0"
msgid "Please take appropriate action at {0}"
msgstr "crwdns150432:0{0}crwdne150432:0"
#: frontend/src/components/Modals/ChapterModal.vue:172
msgid "Please upload a SCORM package"
msgstr "crwdns151646:0crwdne151646:0"
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:95
msgid "Please upload the assignment file."
msgstr "crwdns150434:0crwdne150434:0"
@@ -3730,7 +3780,7 @@ msgstr "crwdns150494:0crwdne150494:0"
#. Label of the published (Check) field in DocType 'LMS Batch'
#. Label of the published (Check) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:108
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:171
#: frontend/src/pages/BatchForm.vue:28 frontend/src/pages/CourseForm.vue:171
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:266
@@ -3941,11 +3991,11 @@ msgstr "crwdns150566:0crwdne150566:0"
msgid "Related Courses"
msgstr "crwdns150568:0crwdne150568:0"
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/CourseForm.vue:99
#: frontend/src/pages/BatchForm.vue:73 frontend/src/pages/CourseForm.vue:99
msgid "Remove"
msgstr "crwdns151490:0crwdne151490:0"
#: frontend/src/components/Modals/AnnouncementModal.vue:26
#: frontend/src/components/Modals/AnnouncementModal.vue:27
msgid "Reply To"
msgstr "crwdns150570:0crwdne150570:0"
@@ -4039,6 +4089,21 @@ msgstr "crwdns150606:0{0}crwdne150606:0"
msgid "Run"
msgstr "crwdns150608:0crwdne150608:0"
#. Label of the scorm_section (Section Break) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "SCORM"
msgstr "crwdns151648:0crwdne151648:0"
#. Label of the scorm_package (Link) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "SCORM Package"
msgstr "crwdns151650:0crwdne151650:0"
#. Label of the scorm_package_path (Code) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "SCORM Package Path"
msgstr "crwdns151652:0crwdne151652:0"
#. Option for the 'Day' (Select) field in DocType 'Evaluator Schedule'
#. Option for the 'Day' (Select) field in DocType 'LMS Certificate Request'
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
@@ -4100,7 +4165,7 @@ msgid "Search for an icon"
msgstr "crwdns150628:0crwdne150628:0"
#. Label of the seat_count (Int) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:159
#: frontend/src/pages/BatchForm.vue:171
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:327
msgid "Seat Count"
@@ -4144,7 +4209,7 @@ msgid "Set your Password"
msgstr "crwdns150646:0crwdne150646:0"
#: frontend/src/components/Modals/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:153 frontend/src/pages/CourseForm.vue:161
#: frontend/src/pages/BatchForm.vue:165 frontend/src/pages/CourseForm.vue:161
#: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:78
msgid "Settings"
msgstr "crwdns150648:0crwdne150648:0"
@@ -4159,7 +4224,7 @@ msgstr "crwdns150650:0crwdne150650:0"
msgid "Short Introduction"
msgstr "crwdns150652:0crwdne150652:0"
#: frontend/src/pages/BatchForm.vue:94
#: frontend/src/pages/BatchForm.vue:99
msgid "Short description of the batch"
msgstr "crwdns151492:0crwdne151492:0"
@@ -4323,7 +4388,7 @@ msgstr "crwdns150712:0crwdne150712:0"
#. Label of the start_date (Date) field in DocType 'Education Detail'
#. Label of the start_date (Date) field in DocType 'LMS Batch'
#. Label of the start_date (Date) field in DocType 'LMS Batch Old'
#: frontend/src/pages/BatchForm.vue:117
#: frontend/src/pages/BatchForm.vue:124
#: lms/lms/doctype/education_detail/education_detail.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -4332,7 +4397,7 @@ msgid "Start Date"
msgstr "crwdns150714:0crwdne150714:0"
#: frontend/src/components/CourseCardOverlay.vue:63
#: frontend/src/pages/Lesson.vue:21
#: frontend/src/pages/Lesson.vue:21 frontend/src/pages/SCORMChapter.vue:28
#: lms/templates/emails/lms_course_interest.html:9
msgid "Start Learning"
msgstr "crwdns150716:0crwdne150716:0"
@@ -4344,7 +4409,7 @@ msgstr "crwdns150716:0crwdne150716:0"
#. Label of the start_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the start_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the start_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:131
#: frontend/src/pages/BatchForm.vue:140
#: frontend/src/pages/ProfileEvaluator.vue:15
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -4361,19 +4426,11 @@ msgstr "crwdns150718:0crwdne150718:0"
msgid "Start Time cannot be greater than End Time"
msgstr "crwdns150720:0crwdne150720:0"
#: lms/lms/web_form/add_a_new_batch/add_a_new_batch.js:43
msgid "Start Time should be less than End Time."
msgstr "crwdns150722:0crwdne150722:0"
#. Label of the start_url (Small Text) field in DocType 'LMS Live Class'
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Start URL"
msgstr "crwdns150724:0crwdne150724:0"
#: lms/lms/web_form/add_a_new_batch/add_a_new_batch.js:30
msgid "Start date cannot be a past date."
msgstr "crwdns150726:0crwdne150726:0"
#. Option for the 'Company Type' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Startup Organization"
@@ -4516,8 +4573,10 @@ msgstr "crwdns150766:0{0}crwdne150766:0"
#: frontend/src/components/BatchOverlay.vue:135
#: frontend/src/components/BatchStudents.vue:157
#: frontend/src/components/CourseCardOverlay.vue:161
#: frontend/src/components/Modals/AnnouncementModal.vue:98
#: frontend/src/components/Modals/AnnouncementModal.vue:99
#: frontend/src/components/Modals/AssessmentModal.vue:73
#: frontend/src/components/Modals/ChapterModal.vue:148
#: frontend/src/components/Modals/ChapterModal.vue:193
#: frontend/src/components/Modals/Event.vue:255
#: frontend/src/components/Modals/Event.vue:310
#: frontend/src/components/Modals/Question.vue:261
@@ -4713,10 +4772,14 @@ msgstr "crwdns150818:0crwdne150818:0"
msgid "This course has:"
msgstr "crwdns150820:0crwdne150820:0"
#: lms/lms/utils.py:1570
#: lms/lms/utils.py:1582
msgid "This course is free."
msgstr "crwdns150822:0crwdne150822:0"
#: frontend/src/pages/SCORMChapter.vue:198
msgid "This is a chapter in the course {0}"
msgstr "crwdns151654:0{0}crwdne151654:0"
#: lms/lms/widgets/CourseOutline.html:62
msgid "This lesson is not available for preview. As you are the Instructor of the course only you can see it."
msgstr "crwdns150824:0crwdne150824:0"
@@ -4742,7 +4805,7 @@ msgstr "crwdns150832:0crwdne150832:0"
#. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48
#: frontend/src/components/Modals/LiveClassModal.vue:36
#: frontend/src/components/Modals/LiveClassModal.vue:37
#: frontend/src/components/Quiz.vue:44
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Time"
@@ -4753,7 +4816,7 @@ msgstr "crwdns150834:0crwdne150834:0"
msgid "Time Preference"
msgstr "crwdns150836:0crwdne150836:0"
#: frontend/src/components/Modals/LiveClassModal.vue:28
#: frontend/src/components/Modals/LiveClassModal.vue:29
msgid "Time must be in 24 hour format (HH:mm). Example 11:30 or 22:00"
msgstr "crwdns150838:0crwdne150838:0"
@@ -4781,8 +4844,8 @@ msgstr "crwdns150844:0crwdne150844:0"
#. Label of the timezone (Data) field in DocType 'LMS Batch'
#. Label of the timezone (Data) field in DocType 'LMS Certificate Request'
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/LiveClassModal.vue:44
#: frontend/src/pages/BatchForm.vue:143
#: frontend/src/components/Modals/LiveClassModal.vue:46
#: frontend/src/pages/BatchForm.vue:154
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -4811,7 +4874,7 @@ msgstr "crwdns150848:0crwdne150848:0"
#. Label of the title (Data) field in DocType 'Work Experience'
#: frontend/src/components/Modals/DiscussionModal.vue:18
#: frontend/src/components/Modals/LiveClassModal.vue:23
#: frontend/src/pages/BatchForm.vue:18 frontend/src/pages/CourseForm.vue:32
#: frontend/src/pages/BatchForm.vue:20 frontend/src/pages/CourseForm.vue:32
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/QuizForm.vue:48
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
@@ -4833,6 +4896,10 @@ msgstr "crwdns150848:0crwdne150848:0"
msgid "Title"
msgstr "crwdns150850:0crwdne150850:0"
#: frontend/src/components/Modals/ChapterModal.vue:169
msgid "Title is required"
msgstr "crwdns151656:0crwdne151656:0"
#. Label of the unavailable_to (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:98
#: lms/lms/doctype/course_evaluator/course_evaluator.json
@@ -4844,11 +4911,7 @@ msgstr "crwdns150852:0crwdne150852:0"
msgid "To Date"
msgstr "crwdns150854:0crwdne150854:0"
#: lms/lms/web_form/profile/profile.js:19
msgid "To Date is mandatory in Work Experience."
msgstr "crwdns150856:0crwdne150856:0"
#: lms/lms/utils.py:1581
#: lms/lms/utils.py:1593
msgid "To join this batch, please contact the Administrator."
msgstr "crwdns150858:0crwdne150858:0"
@@ -4902,7 +4965,7 @@ msgstr "crwdns150876:0crwdne150876:0"
#. Label of the type (Select) field in DocType 'LMS Quiz Question'
#: frontend/src/components/Modals/AssessmentModal.vue:22
#: frontend/src/components/Modals/Question.vue:54
#: frontend/src/pages/JobCreation.vue:28
#: frontend/src/pages/JobCreation.vue:28 frontend/src/pages/Jobs.vue:16
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/lms_assignment/lms_assignment.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
@@ -4970,7 +5033,7 @@ msgstr "crwdns150898:0crwdne150898:0"
msgid "Upcoming"
msgstr "crwdns150900:0crwdne150900:0"
#: frontend/src/pages/Batch.vue:154
#: frontend/src/pages/Batch.vue:158
msgid "Upcoming Batches"
msgstr "crwdns150902:0crwdne150902:0"
@@ -4989,7 +5052,7 @@ msgstr "crwdns150906:0crwdne150906:0"
msgid "Update Password"
msgstr "crwdns150908:0crwdne150908:0"
#: frontend/src/pages/BatchForm.vue:51 frontend/src/pages/CourseForm.vue:80
#: frontend/src/pages/BatchForm.vue:55 frontend/src/pages/CourseForm.vue:80
msgid "Upload"
msgstr "crwdns151498:0crwdne151498:0"
@@ -5172,15 +5235,15 @@ msgstr "crwdns150976:0crwdne150976:0"
msgid "You already have an evaluation on {0} at {1} for the course {2}."
msgstr "crwdns150978:0{0}crwdnd150978:0{1}crwdnd150978:0{2}crwdne150978:0"
#: lms/lms/api.py:207
#: lms/lms/api.py:213
msgid "You are already enrolled for this batch."
msgstr "crwdns150980:0crwdne150980:0"
#: lms/lms/api.py:199
#: lms/lms/api.py:205
msgid "You are already enrolled for this course."
msgstr "crwdns150982:0crwdne150982:0"
#: frontend/src/pages/Batch.vue:136
#: frontend/src/pages/Batch.vue:140
msgid "You are not a member of this batch. Please checkout our upcoming batches."
msgstr "crwdns150984:0crwdne150984:0"
@@ -5188,6 +5251,14 @@ msgstr "crwdns150984:0crwdne150984:0"
msgid "You are not a mentor of the course {0}"
msgstr "crwdns150986:0{0}crwdne150986:0"
#: frontend/src/components/CourseOutline.vue:311
msgid "You are not enrolled"
msgstr "crwdns151658:0crwdne151658:0"
#: frontend/src/pages/SCORMChapter.vue:22
msgid "You are not enrolled in this course. Please enroll to access this lesson."
msgstr "crwdns151660:0crwdne151660:0"
#: frontend/src/pages/Courses.vue:134
msgid "You can add chapters and lessons to it."
msgstr "crwdns151502:0crwdne151502:0"
@@ -5340,7 +5411,7 @@ msgstr "crwdns151050:0crwdne151050:0"
msgid "cancel your application"
msgstr "crwdns151052:0crwdne151052:0"
#: frontend/src/pages/Lesson.vue:170
#: frontend/src/pages/Lesson.vue:174
msgid "completed"
msgstr "crwdns151054:0crwdne151054:0"
@@ -5388,7 +5459,7 @@ msgstr "crwdns151074:0crwdne151074:0"
msgid "you can"
msgstr "crwdns151076:0crwdne151076:0"
#: lms/lms/api.py:740 lms/lms/api.py:748
#: lms/lms/api.py:747 lms/lms/api.py:755
msgid "{0} Settings not found"
msgstr "crwdns151078:0{0}crwdne151078:0"

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-11-08 16:04+0000\n"
"PO-Revision-Date: 2024-11-11 15:23\n"
"POT-Creation-Date: 2024-11-15 16:04+0000\n"
"PO-Revision-Date: 2024-11-18 17:31\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Spanish\n"
"MIME-Version: 1.0\n"
@@ -109,7 +109,7 @@ msgstr "Agregar"
msgid "Add Chapter"
msgstr "Añadir Capítulo"
#: frontend/src/components/CourseOutline.vue:102
#: frontend/src/components/CourseOutline.vue:124
msgid "Add Lesson"
msgstr "Añadir una clase"
@@ -217,7 +217,7 @@ msgstr "Permitir la autoinscripción"
msgid "Allow accessing future dates"
msgstr "Permitir acceder a fechas futuras"
#: frontend/src/pages/BatchForm.vue:29
#: frontend/src/pages/BatchForm.vue:33
msgid "Allow self enrollment"
msgstr "Permitir autoinscripción"
@@ -228,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 'LMS Batch'
#. Label of the amount (Currency) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:209 lms/fixtures/custom_field.json
#: frontend/src/pages/BatchForm.vue:221 lms/fixtures/custom_field.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/public/js/common_functions.js:379
@@ -258,11 +258,11 @@ msgstr "Campo cantidad"
msgid "Amount with GST"
msgstr "Importe con GST"
#: frontend/src/components/Modals/AnnouncementModal.vue:32
#: frontend/src/components/Modals/AnnouncementModal.vue:33
msgid "Announcement"
msgstr "Anuncio"
#: frontend/src/components/Modals/AnnouncementModal.vue:99
#: frontend/src/components/Modals/AnnouncementModal.vue:100
msgid "Announcement has been sent successfully"
msgstr ""
@@ -280,7 +280,7 @@ msgstr "Respuesta"
msgid "Appears on the course card in the course list"
msgstr "Aparece en la tarjeta del curso en la lista de cursos."
#: frontend/src/pages/BatchForm.vue:55 frontend/src/pages/BatchForm.vue:73
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/BatchForm.vue:77
msgid "Appears when the batch URL is shared on any online platform"
msgstr "Aparece cuando la URL del grupo se comparte en cualquier plataforma en línea"
@@ -319,10 +319,6 @@ msgstr "Aprobado"
msgid "Apps"
msgstr "Apps"
#: frontend/src/components/CourseOutline.vue:209
msgid "Are you sure you want to delete this lesson?"
msgstr "¿Estás seguro de que deseas eliminar esta lección?"
#. Label of the user_category (Check) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Ask User Category during Signup"
@@ -420,7 +416,7 @@ msgid "Auto Assign"
msgstr "Autoasignar"
#. Label of the auto_recording (Select) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/LiveClassModal.vue:66
#: frontend/src/components/Modals/LiveClassModal.vue:71
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Auto Recording"
msgstr "Grabación Automática"
@@ -482,7 +478,8 @@ msgid "Batch Description"
msgstr "Descripción de Lotes"
#. Label of the batch_details (Text Editor) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:98 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:104
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:349
#: lms/templates/emails/batch_confirmation.html:30
msgid "Batch Details"
@@ -547,10 +544,6 @@ msgstr "Lote actualizado"
msgid "Batch end date cannot be before the batch start date"
msgstr "La fecha de finalización del grupo no puede ser anterior a la fecha de inicio del lote"
#: lms/lms/web_form/add_a_new_batch/add_a_new_batch.js:6
msgid "Batch {0} has been successfully created!"
msgstr "¡El lote {0} se ha creado correctamente!"
#. Group in LMS Course's connections
#. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue:8 lms/lms/doctype/lms_course/lms_course.json
@@ -581,7 +574,7 @@ msgstr "Detalles de facturación"
msgid "Billing Name"
msgstr "Nombre de Facturación"
#: frontend/src/components/Modals/EditProfile.vue:72
#: frontend/src/components/Modals/EditProfile.vue:75
msgid "Bio"
msgstr "Biografía"
@@ -649,7 +642,7 @@ msgstr "Ropa casual"
#. Label of the category (Link) field in DocType 'LMS Batch'
#. Label of the category (Data) field in DocType 'LMS Category'
#. Label of the category (Link) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/BatchForm.vue:202 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/JobDetail.vue:102
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -734,6 +727,14 @@ msgstr "Capítulo"
msgid "Chapter Reference"
msgstr "Referencia del capítulo"
#: frontend/src/components/Modals/ChapterModal.vue:149
msgid "Chapter added successfully"
msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:193
msgid "Chapter updated successfully"
msgstr ""
#. Label of the chapters (Table) field in DocType 'LMS Course'
#. Group in LMS Course's connections
#: lms/lms/doctype/lms_course/lms_course.json
@@ -987,7 +988,7 @@ msgid "Contact the Administrator to enroll for this course."
msgstr "Póngase en contacto con el administrador para inscribirse en este curso."
#. Label of the content (Text) field in DocType 'Course Lesson'
#: frontend/src/pages/LessonForm.vue:53
#: frontend/src/pages/LessonForm.vue:58
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Content"
msgstr "Contenido"
@@ -997,6 +998,7 @@ msgid "Continue Learning"
msgstr "Continuar aprendiendo"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:117
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Contract"
msgstr "Contrato"
@@ -1060,7 +1062,7 @@ msgstr "País"
#. Label of the course (Link) field in DocType 'Related Courses'
#. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/BatchCourseModal.vue:17
#: frontend/src/components/Modals/BatchCourseModal.vue:20
#: frontend/src/components/Modals/EvaluationModal.vue:20
#: frontend/src/components/Modals/Event.vue:24
#: lms/lms/doctype/batch_course/batch_course.json
@@ -1153,6 +1155,10 @@ msgstr "Lista de Cursos"
msgid "Course Name"
msgstr "Nombre del Curso"
#: frontend/src/pages/CourseDetail.vue:74
msgid "Course Outline"
msgstr ""
#. Label of the course_price (Currency) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:219
#: lms/lms/doctype/lms_course/lms_course.json
@@ -1175,9 +1181,11 @@ msgid "Course Stats"
msgstr "Estadísticas del curso"
#. Label of the title (Data) field in DocType 'Batch Course'
#. Label of the course_title (Data) field in DocType 'Course Chapter'
#. Label of the course_title (Data) field in DocType 'LMS Certificate'
#. Label of the course_title (Data) field in DocType 'LMS Certificate Request'
#: lms/lms/doctype/batch_course/batch_course.json
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
msgid "Course Title"
@@ -1257,7 +1265,7 @@ msgstr "Crear una nueva pregunta"
#. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course'
#. Label of the currency (Link) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:226
#: frontend/src/pages/BatchForm.vue:229 frontend/src/pages/CourseForm.vue:226
#: lms/fixtures/custom_field.json lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_payment/lms_payment.json
@@ -1303,7 +1311,7 @@ msgstr "Tablero"
#. Label of the date (Date) field in DocType 'Scheduled Flow'
#: frontend/src/components/Modals/EvaluationModal.vue:26
#: frontend/src/components/Modals/Event.vue:40
#: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Modals/LiveClassModal.vue:55
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
@@ -1315,7 +1323,7 @@ msgstr "Fecha"
#. Label of the section_break_glxh (Section Break) field in DocType 'LMS Live
#. Class'
#: frontend/src/pages/BatchForm.vue:111
#: frontend/src/pages/BatchForm.vue:118
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Date and Time"
msgstr "Fecha y hora"
@@ -1350,23 +1358,40 @@ msgstr "Divisa / modena predeterminada"
msgid "Degree Type"
msgstr "Tipo de Grado"
#: frontend/src/components/CourseOutline.vue:212
#: frontend/src/components/CourseOutline.vue:235
#: frontend/src/components/CourseOutline.vue:293
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:470
msgid "Delete"
msgstr "Eliminar"
#: frontend/src/components/CourseOutline.vue:52
msgid "Delete Chapter"
msgstr ""
#: frontend/src/pages/CourseForm.vue:464
msgid "Delete Course"
msgstr ""
#: frontend/src/components/CourseOutline.vue:208
msgid "Delete Lesson"
msgstr "Eliminar lección"
#: frontend/src/components/CourseOutline.vue:287
msgid "Delete this chapter?"
msgstr ""
#: frontend/src/components/CourseOutline.vue:229
msgid "Delete this lesson?"
msgstr ""
#: frontend/src/pages/CourseForm.vue:465
msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?"
msgstr ""
#: frontend/src/components/CourseOutline.vue:288
msgid "Deleting this chapter will also delete all its lessons and permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?"
msgstr ""
#: frontend/src/components/CourseOutline.vue:230
msgid "Deleting this lesson will permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?"
msgstr ""
#. Label of the description (Text Editor) field in DocType 'Job Opportunity'
#. Label of the description (Small Text) field in DocType 'Certification'
#. Label of the description (Markdown Editor) field in DocType 'Cohort'
@@ -1379,8 +1404,8 @@ msgstr ""
#. Label of the description (Small Text) field in DocType 'LMS Exercise'
#. Label of the description (Text) field in DocType 'LMS Live Class'
#. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:73
#: frontend/src/pages/BatchForm.vue:91 frontend/src/pages/JobCreation.vue:43
#: frontend/src/components/Modals/LiveClassModal.vue:78
#: frontend/src/pages/BatchForm.vue:96 frontend/src/pages/JobCreation.vue:43
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json
@@ -1426,7 +1451,7 @@ msgid "Discard"
msgstr "Descartar"
#. Label of the show_discussions (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batch.vue:69
#: frontend/src/pages/Batch.vue:73
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Discussions"
msgstr "Discusiones"
@@ -1453,7 +1478,7 @@ msgstr "Se encontraron opciones duplicadas para esta pregunta."
#. Label of the duration (Data) field in DocType 'LMS Batch Timetable'
#. Label of the duration (Int) field in DocType 'LMS Live Class'
#. Label of the duration (Duration) field in DocType 'LMS Quiz'
#: frontend/src/components/Modals/LiveClassModal.vue:58
#: frontend/src/components/Modals/LiveClassModal.vue:62
#: lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -1465,7 +1490,7 @@ msgstr "Duración"
msgid "Duration (in minutes)"
msgstr "Duración (en minutos)"
#: frontend/src/components/Modals/LiveClassModal.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:58
msgid "Duration of the live class in minutes"
msgstr "Duración de la clase en vivo en minutos"
@@ -1487,7 +1512,7 @@ msgstr "Correo Electrónico"
msgid "Edit"
msgstr "Editar"
#: frontend/src/components/CourseOutline.vue:106
#: frontend/src/components/CourseOutline.vue:45
#: frontend/src/components/Modals/ChapterModal.vue:5
msgid "Edit Chapter"
msgstr "Editar capítulo"
@@ -1564,7 +1589,7 @@ msgstr "Habilitado"
#. Label of the end_date (Date) field in DocType 'Cohort'
#. Label of the end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:123 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/BatchForm.vue:131 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:282
msgid "End Date"
@@ -1582,7 +1607,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 Request'
#. Label of the end_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:137
#: frontend/src/pages/BatchForm.vue:147
#: frontend/src/pages/ProfileEvaluator.vue:18
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1618,7 +1643,7 @@ msgstr "Confirmación de inscripción para el próximo Lote de Entrenamiento"
msgid "Enrollment Count"
msgstr "Recuento de inscripciones"
#: lms/lms/utils.py:1690
#: lms/lms/utils.py:1702
msgid "Enrollment Failed"
msgstr "Error al inscribirse"
@@ -1646,7 +1671,10 @@ msgstr "Ingrese un título y guarde el cuestionario para continuar."
msgid "Enter the correct answer"
msgstr "Ingrese la respuesta correcta"
#: frontend/src/components/Modals/AnnouncementModal.vue:104
#: frontend/src/components/Modals/AnnouncementModal.vue:105
#: frontend/src/components/Modals/ChapterModal.vue:154
#: frontend/src/components/Modals/ChapterModal.vue:161
#: frontend/src/components/Modals/ChapterModal.vue:197
#: frontend/src/components/Modals/Question.vue:246
#: frontend/src/components/Modals/Question.vue:266
#: frontend/src/components/Modals/Question.vue:323
@@ -1669,7 +1697,7 @@ msgid "Evaluation Details"
msgstr "Detalles de evaluación"
#. Label of the evaluation_end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:166
#: frontend/src/pages/BatchForm.vue:178
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:333
msgid "Evaluation End Date"
@@ -1694,7 +1722,7 @@ msgstr "La evaluación se guardó correctamente"
#. Label of the evaluator (Link) field in DocType 'LMS Certificate'
#. Label of the evaluator (Link) field in DocType 'LMS Certificate Evaluation'
#. Label of the evaluator (Link) field in DocType 'LMS Certificate Request'
#: frontend/src/components/Modals/BatchCourseModal.vue:21
#: frontend/src/components/Modals/BatchCourseModal.vue:26
#: frontend/src/pages/ProfileRoles.vue:22
#: lms/lms/doctype/batch_course/batch_course.json
#: lms/lms/doctype/course_evaluator/course_evaluator.json
@@ -1733,7 +1761,7 @@ msgstr "El evaluador no está disponible"
msgid "Event"
msgstr "Evento"
#: frontend/src/pages/BatchForm.vue:145
#: frontend/src/pages/BatchForm.vue:156
msgid "Example: IST (+5:30)"
msgstr "Ejemplo: IST (+5:30)"
@@ -1860,6 +1888,7 @@ msgid "Free"
msgstr "Gratis"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:118
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Freelance"
msgstr "Freelance"
@@ -1899,6 +1928,7 @@ msgid "Full Name"
msgstr "Nombre completo"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:115
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Full Time"
msgstr "Tiempo completo"
@@ -1981,11 +2011,6 @@ msgstr "Titular"
msgid "Hello"
msgstr "Hola"
#. Label of the help_section (Section Break) field in DocType 'Course Lesson'
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Help"
msgstr "Ayuda"
#: lms/templates/courses_created.html:15
msgid "Help others learn something new by creating a course."
msgstr "Ayude a otros a aprender algo nuevo creando un curso."
@@ -2164,9 +2189,7 @@ msgstr "Incorrecto"
msgid "Index"
msgstr "Índice"
#. Label of the index_label (Data) field in DocType 'Course Lesson'
#. Label of the index_label (Data) field in DocType 'LMS Exercise'
#: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_exercise/lms_exercise.json
msgid "Index Label"
msgstr "Etiqueta índice"
@@ -2203,14 +2226,14 @@ msgstr "Contenido del instructor"
#. Label of the instructor_notes (Markdown Editor) field in DocType 'Course
#. Lesson'
#: frontend/src/pages/Lesson.vue:125 frontend/src/pages/LessonForm.vue:33
#: frontend/src/pages/Lesson.vue:128 frontend/src/pages/LessonForm.vue:38
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Instructor Notes"
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 Course'
#: frontend/src/pages/BatchForm.vue:85 frontend/src/pages/CourseForm.vue:154
#: frontend/src/pages/BatchForm.vue:89 frontend/src/pages/CourseForm.vue:154
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Instructors"
@@ -2238,10 +2261,6 @@ msgstr "Código de invitación inválido."
msgid "Invalid Quiz ID"
msgstr "ID de cuestionario no válido"
#: lms/lms/web_form/add_a_new_batch/add_a_new_batch.js:38
msgid "Invalid Start or End Time."
msgstr "Hora de inicio o finalización inválida."
#. Label of the invite_code (Data) field in DocType 'Cohort Subgroup'
#. Label of the invite_code (Data) field in DocType 'Invite Request'
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
@@ -2281,6 +2300,14 @@ msgstr "Es correcto"
msgid "Is Onboarding Complete"
msgstr "¿Se ha completado la incorporación?"
#. Label of the is_scorm_package (Check) field in DocType 'Course Chapter'
#. Label of the is_scorm_package (Check) field in DocType 'Course Lesson'
#: frontend/src/components/Modals/ChapterModal.vue:26
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Is SCORM Package"
msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/Event.vue:121
@@ -2355,7 +2382,7 @@ msgstr "Título del trabajo"
msgid "Jobs"
msgstr "Trabajos"
#: frontend/src/components/LiveClass.vue:54
#: frontend/src/components/LiveClass.vue:55
#: lms/templates/upcoming_evals.html:15
msgid "Join"
msgstr "Unirse"
@@ -2593,6 +2620,11 @@ msgstr "Apellido"
msgid "Latest Submission"
msgstr "Última presentación"
#. Label of the launch_file (Code) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "Launch File"
msgstr ""
#. Label of the lesson (Link) field in DocType 'Exercise Latest Submission'
#. Label of the lesson (Link) field in DocType 'Exercise Submission'
#. Label of the lesson (Link) field in DocType 'Lesson Reference'
@@ -2722,7 +2754,7 @@ msgid "Location Preference"
msgstr "Preferencia de ubicación"
#: frontend/src/components/NoPermission.vue:28
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:163
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:167
#: frontend/src/pages/Lesson.vue:24
msgid "Login"
msgstr "Iniciar sesión"
@@ -2759,6 +2791,11 @@ msgstr "Administrador"
msgid "Manager (Sales/Marketing/Customer)"
msgstr "Gerente (Ventas/Marketing/Cliente)"
#. Label of the manifest_file (Code) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "Manifest File"
msgstr ""
#: frontend/src/components/Quiz.vue:94
msgid "Mark"
msgstr "Marcar"
@@ -2803,7 +2840,7 @@ msgid "Maximun Attempts"
msgstr "Intentos máximos"
#. Label of the medium (Select) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:185
#: frontend/src/pages/BatchForm.vue:197
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:309
msgid "Medium"
@@ -2951,7 +2988,7 @@ msgid "Mentors"
msgstr "Mentores"
#. Label of the meta_image (Attach Image) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:36 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:40 lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:362
msgid "Meta Image"
msgstr "Meta imagen"
@@ -2987,11 +3024,11 @@ msgstr "Moderador"
msgid "Modified By"
msgstr "Modificado por"
#: lms/lms/api.py:191
#: lms/lms/api.py:197
msgid "Module Name is incorrect or does not exist."
msgstr "El nombre del módulo es incorrecto o no existe."
#: lms/lms/api.py:187
#: lms/lms/api.py:193
msgid "Module is incorrect."
msgstr "Módulo incorrecto."
@@ -3037,7 +3074,7 @@ msgstr "Nuevo lote"
msgid "New Course"
msgstr "Nuevo curso"
#: frontend/src/pages/Jobs.vue:24
#: frontend/src/pages/Jobs.vue:39
msgid "New Job"
msgstr "Nuevo trabajo"
@@ -3124,11 +3161,11 @@ msgstr "No hay cursos en revisión"
msgid "No introduction"
msgstr "No hay introducción"
#: frontend/src/pages/Jobs.vue:45
#: frontend/src/pages/Jobs.vue:60
msgid "No jobs posted"
msgstr "No hay trabajos publicados"
#: frontend/src/components/LiveClass.vue:60
#: frontend/src/components/LiveClass.vue:61
msgid "No live classes scheduled"
msgstr "No hay clases en vivo programadas"
@@ -3184,7 +3221,7 @@ msgstr "No disponible para vista previa"
msgid "Not Graded"
msgstr "Sin calificar"
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:131
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:135
msgid "Not Permitted"
msgstr "No permitido"
@@ -3208,7 +3245,7 @@ msgstr "Notificaciones"
msgid "Notify me when available"
msgstr "Avísame cuando esté disponible"
#: frontend/src/pages/BatchForm.vue:162
#: frontend/src/pages/BatchForm.vue:174
msgid "Number of seats available"
msgstr "Número de plazas disponibles"
@@ -3248,6 +3285,10 @@ msgstr "Sólo se aceptarán archivos del tipo {0}."
msgid "Only image file is allowed."
msgstr "Sólo se permiten archivos de imagen."
#: frontend/src/components/Modals/ChapterModal.vue:223
msgid "Only zip files are allowed"
msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Job Opportunity'
#. Option for the 'Membership' (Select) field in DocType 'LMS Batch Old'
#: frontend/src/pages/QuizForm.vue:17
@@ -3352,7 +3393,7 @@ msgid "Pages"
msgstr "Páginas"
#. Label of the paid_batch (Check) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:205
#: frontend/src/pages/BatchForm.vue:217
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:373
msgid "Paid Batch"
@@ -3369,6 +3410,7 @@ msgid "Pan Number"
msgstr "Número NIF"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:116
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Part Time"
msgstr "Tiempo parcial"
@@ -3407,7 +3449,7 @@ msgstr "Pegue el enlace de YouTube de un video corto que presenta el curso."
#. Label of the payment (Link) field in DocType 'Batch Student'
#. Label of the payment (Link) field in DocType 'LMS Enrollment'
#: frontend/src/pages/BatchForm.vue:199
#: frontend/src/pages/BatchForm.vue:211
#: lms/lms/doctype/batch_student/batch_student.json
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
msgid "Payment"
@@ -3523,6 +3565,10 @@ msgstr "Haga clic en el siguiente botón para establecer su nueva contraseña"
msgid "Please enable Zoom Settings to use this feature."
msgstr "Habilite la configuración de Zoom para utilizar esta funcionalidad."
#: frontend/src/components/CourseOutline.vue:312
msgid "Please enroll for this course to view this lesson"
msgstr ""
#: frontend/src/components/Quiz.vue:13
msgid "Please ensure that you complete all the questions in {0} minutes."
msgstr "Asegúrese de completar todas las preguntas en {0} minutos."
@@ -3556,11 +3602,11 @@ msgstr "Por favor, háganos saber dónde se enteró de nosotros."
msgid "Please login to access the quiz."
msgstr "Inicie sesión para acceder al cuestionario."
#: frontend/src/components/NoPermission.vue:25 frontend/src/pages/Batch.vue:142
#: frontend/src/components/NoPermission.vue:25 frontend/src/pages/Batch.vue:146
msgid "Please login to access this page."
msgstr "Por favor inicie sesión para acceder a esta página."
#: lms/lms/api.py:183
#: lms/lms/api.py:189
msgid "Please login to continue with payment."
msgstr "Por favor inicie sesión para continuar con el pago."
@@ -3573,6 +3619,10 @@ msgstr "Por favor, prepárese bien y llegue a tiempo a las evaluaciones."
msgid "Please take appropriate action at {0}"
msgstr "Tome las medidas adecuadas en {0}"
#: frontend/src/components/Modals/ChapterModal.vue:172
msgid "Please upload a SCORM package"
msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:95
msgid "Please upload the assignment file."
msgstr "Por favor, suba el archivo de la tarea."
@@ -3730,7 +3780,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 Course'
#: frontend/src/components/Modals/Event.vue:108
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:171
#: frontend/src/pages/BatchForm.vue:28 frontend/src/pages/CourseForm.vue:171
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:266
@@ -3941,11 +3991,11 @@ msgstr "Rechazado"
msgid "Related Courses"
msgstr "Cursos relacionados"
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/CourseForm.vue:99
#: frontend/src/pages/BatchForm.vue:73 frontend/src/pages/CourseForm.vue:99
msgid "Remove"
msgstr "Eliminar"
#: frontend/src/components/Modals/AnnouncementModal.vue:26
#: frontend/src/components/Modals/AnnouncementModal.vue:27
msgid "Reply To"
msgstr "Responder a"
@@ -4039,6 +4089,21 @@ msgstr "Las filas {0} tienen preguntas duplicadas."
msgid "Run"
msgstr "Ejecutar"
#. Label of the scorm_section (Section Break) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "SCORM"
msgstr ""
#. Label of the scorm_package (Link) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "SCORM Package"
msgstr ""
#. Label of the scorm_package_path (Code) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "SCORM Package Path"
msgstr ""
#. Option for the 'Day' (Select) field in DocType 'Evaluator Schedule'
#. Option for the 'Day' (Select) field in DocType 'LMS Certificate Request'
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
@@ -4100,7 +4165,7 @@ msgid "Search for an icon"
msgstr "Buscar un icono"
#. Label of the seat_count (Int) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:159
#: frontend/src/pages/BatchForm.vue:171
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:327
msgid "Seat Count"
@@ -4144,7 +4209,7 @@ msgid "Set your Password"
msgstr "Establecer Contraseña"
#: frontend/src/components/Modals/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:153 frontend/src/pages/CourseForm.vue:161
#: frontend/src/pages/BatchForm.vue:165 frontend/src/pages/CourseForm.vue:161
#: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:78
msgid "Settings"
msgstr "Configuración"
@@ -4159,7 +4224,7 @@ msgstr "Compartir en"
msgid "Short Introduction"
msgstr "Breve introducción"
#: frontend/src/pages/BatchForm.vue:94
#: frontend/src/pages/BatchForm.vue:99
msgid "Short description of the batch"
msgstr "Breve descripción del grupo"
@@ -4323,7 +4388,7 @@ msgstr "Iniciar"
#. Label of the start_date (Date) field in DocType 'Education Detail'
#. Label of the start_date (Date) field in DocType 'LMS Batch'
#. Label of the start_date (Date) field in DocType 'LMS Batch Old'
#: frontend/src/pages/BatchForm.vue:117
#: frontend/src/pages/BatchForm.vue:124
#: lms/lms/doctype/education_detail/education_detail.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -4332,7 +4397,7 @@ msgid "Start Date"
msgstr "Fecha de inicio"
#: frontend/src/components/CourseCardOverlay.vue:63
#: frontend/src/pages/Lesson.vue:21
#: frontend/src/pages/Lesson.vue:21 frontend/src/pages/SCORMChapter.vue:28
#: lms/templates/emails/lms_course_interest.html:9
msgid "Start Learning"
msgstr "Comienza a aprender"
@@ -4344,7 +4409,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 Request'
#. Label of the start_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:131
#: frontend/src/pages/BatchForm.vue:140
#: frontend/src/pages/ProfileEvaluator.vue:15
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -4361,19 +4426,11 @@ msgstr "Hora de inicio"
msgid "Start Time cannot be greater than End Time"
msgstr "La hora de inicio no puede ser mayor que la hora de finalización"
#: lms/lms/web_form/add_a_new_batch/add_a_new_batch.js:43
msgid "Start Time should be less than End Time."
msgstr "Hora de comienzo debe ser menor que la Hora de finalización."
#. Label of the start_url (Small Text) field in DocType 'LMS Live Class'
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Start URL"
msgstr "URL de inicio"
#: lms/lms/web_form/add_a_new_batch/add_a_new_batch.js:30
msgid "Start date cannot be a past date."
msgstr "La fecha de inicio no puede ser una fecha pasada."
#. Option for the 'Company Type' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Startup Organization"
@@ -4516,8 +4573,10 @@ msgstr "Enviado {0}"
#: frontend/src/components/BatchOverlay.vue:135
#: frontend/src/components/BatchStudents.vue:157
#: frontend/src/components/CourseCardOverlay.vue:161
#: frontend/src/components/Modals/AnnouncementModal.vue:98
#: frontend/src/components/Modals/AnnouncementModal.vue:99
#: frontend/src/components/Modals/AssessmentModal.vue:73
#: frontend/src/components/Modals/ChapterModal.vue:148
#: frontend/src/components/Modals/ChapterModal.vue:193
#: frontend/src/components/Modals/Event.vue:255
#: frontend/src/components/Modals/Event.vue:310
#: frontend/src/components/Modals/Question.vue:261
@@ -4713,10 +4772,14 @@ msgstr "Este certificado no caduca"
msgid "This course has:"
msgstr "Este curso tiene:"
#: lms/lms/utils.py:1570
#: lms/lms/utils.py:1582
msgid "This course is free."
msgstr "Este curso es gratuito."
#: frontend/src/pages/SCORMChapter.vue:198
msgid "This is a chapter in the course {0}"
msgstr ""
#: lms/lms/widgets/CourseOutline.html:62
msgid "This lesson is not available for preview. As you are the Instructor of the course only you can see it."
msgstr "Esta lección no está disponible para la vista previa. Como usted es el Instructor del curso sólo usted puede verla."
@@ -4742,7 +4805,7 @@ msgstr "Jueves"
#. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48
#: frontend/src/components/Modals/LiveClassModal.vue:36
#: frontend/src/components/Modals/LiveClassModal.vue:37
#: frontend/src/components/Quiz.vue:44
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Time"
@@ -4753,7 +4816,7 @@ msgstr "Hora"
msgid "Time Preference"
msgstr "Preferencia horaria"
#: frontend/src/components/Modals/LiveClassModal.vue:28
#: frontend/src/components/Modals/LiveClassModal.vue:29
msgid "Time must be in 24 hour format (HH:mm). Example 11:30 or 22:00"
msgstr "La hora debe estar en formato de 24 horas (HH:mm). Ejemplo 11:30 o 22:00"
@@ -4781,8 +4844,8 @@ msgstr "Plantilla de horario"
#. Label of the timezone (Data) field in DocType 'LMS Batch'
#. Label of the timezone (Data) field in DocType 'LMS Certificate Request'
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/LiveClassModal.vue:44
#: frontend/src/pages/BatchForm.vue:143
#: frontend/src/components/Modals/LiveClassModal.vue:46
#: frontend/src/pages/BatchForm.vue:154
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -4811,7 +4874,7 @@ msgstr "Horarios:"
#. Label of the title (Data) field in DocType 'Work Experience'
#: frontend/src/components/Modals/DiscussionModal.vue:18
#: frontend/src/components/Modals/LiveClassModal.vue:23
#: frontend/src/pages/BatchForm.vue:18 frontend/src/pages/CourseForm.vue:32
#: frontend/src/pages/BatchForm.vue:20 frontend/src/pages/CourseForm.vue:32
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/QuizForm.vue:48
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
@@ -4833,6 +4896,10 @@ msgstr "Horarios:"
msgid "Title"
msgstr "Nombre"
#: frontend/src/components/Modals/ChapterModal.vue:169
msgid "Title is required"
msgstr ""
#. Label of the unavailable_to (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:98
#: lms/lms/doctype/course_evaluator/course_evaluator.json
@@ -4844,11 +4911,7 @@ msgstr "A"
msgid "To Date"
msgstr "Hasta la fecha"
#: lms/lms/web_form/profile/profile.js:19
msgid "To Date is mandatory in Work Experience."
msgstr "Hasta la fecha es obligatorio en Experiencia laboral."
#: lms/lms/utils.py:1581
#: lms/lms/utils.py:1593
msgid "To join this batch, please contact the Administrator."
msgstr "Para unirse a este lote, comuníquese con el Administrador."
@@ -4902,7 +4965,7 @@ msgstr "Twitter"
#. Label of the type (Select) field in DocType 'LMS Quiz Question'
#: frontend/src/components/Modals/AssessmentModal.vue:22
#: frontend/src/components/Modals/Question.vue:54
#: frontend/src/pages/JobCreation.vue:28
#: frontend/src/pages/JobCreation.vue:28 frontend/src/pages/Jobs.vue:16
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/lms_assignment/lms_assignment.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
@@ -4970,7 +5033,7 @@ msgstr "Rol no estructurado"
msgid "Upcoming"
msgstr "Próximamente"
#: frontend/src/pages/Batch.vue:154
#: frontend/src/pages/Batch.vue:158
msgid "Upcoming Batches"
msgstr "Próximos lotes"
@@ -4989,7 +5052,7 @@ msgstr "Actualizar"
msgid "Update Password"
msgstr "Actualizar contraseña"
#: frontend/src/pages/BatchForm.vue:51 frontend/src/pages/CourseForm.vue:80
#: frontend/src/pages/BatchForm.vue:55 frontend/src/pages/CourseForm.vue:80
msgid "Upload"
msgstr "Subir"
@@ -5172,15 +5235,15 @@ msgstr "Escriba su respuesta aquí"
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}."
#: lms/lms/api.py:207
#: lms/lms/api.py:213
msgid "You are already enrolled for this batch."
msgstr "Ya estás inscrito en este lote."
#: lms/lms/api.py:199
#: lms/lms/api.py:205
msgid "You are already enrolled for this course."
msgstr "Ya estás inscrito en este curso."
#: frontend/src/pages/Batch.vue:136
#: frontend/src/pages/Batch.vue:140
msgid "You are not a member of this batch. Please checkout our upcoming batches."
msgstr "No eres miembro de este lote. Consulte nuestros próximos lotes."
@@ -5188,6 +5251,14 @@ msgstr "No eres miembro de este lote. Consulte nuestros próximos lotes."
msgid "You are not a mentor of the course {0}"
msgstr "No eres mentor del curso {0}"
#: frontend/src/components/CourseOutline.vue:311
msgid "You are not enrolled"
msgstr ""
#: frontend/src/pages/SCORMChapter.vue:22
msgid "You are not enrolled in this course. Please enroll to access this lesson."
msgstr ""
#: frontend/src/pages/Courses.vue:134
msgid "You can add chapters and lessons to it."
msgstr "Puedes añadir capítulos y lecciones a él."
@@ -5340,7 +5411,7 @@ msgstr "Configuración de Zoom"
msgid "cancel your application"
msgstr "cancelar su solicitud"
#: frontend/src/pages/Lesson.vue:170
#: frontend/src/pages/Lesson.vue:174
msgid "completed"
msgstr "completado"
@@ -5388,7 +5459,7 @@ msgstr "estrellas"
msgid "you can"
msgstr "puedes"
#: lms/lms/api.py:740 lms/lms/api.py:748
#: lms/lms/api.py:747 lms/lms/api.py:755
msgid "{0} Settings not found"
msgstr "Configuraciones {0} no encontradas"

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-11-08 16:04+0000\n"
"PO-Revision-Date: 2024-11-11 15:23\n"
"POT-Creation-Date: 2024-11-15 16:04+0000\n"
"PO-Revision-Date: 2024-11-20 17:38\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Persian\n"
"MIME-Version: 1.0\n"
@@ -109,7 +109,7 @@ msgstr "اضافه کردن"
msgid "Add Chapter"
msgstr "افزودن فصل"
#: frontend/src/components/CourseOutline.vue:102
#: frontend/src/components/CourseOutline.vue:124
msgid "Add Lesson"
msgstr "افزودن درس"
@@ -183,7 +183,7 @@ msgstr "آدرس خط 2"
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
msgid "Admin"
msgstr "اَدمین"
msgstr "ادمین"
#. Name of a role
#: lms/lms/doctype/lms_badge/lms_badge.json
@@ -217,7 +217,7 @@ msgstr "اجازه ثبت نام خود"
msgid "Allow accessing future dates"
msgstr "اجازه دسترسی به تاریخ های آینده"
#: frontend/src/pages/BatchForm.vue:29
#: frontend/src/pages/BatchForm.vue:33
msgid "Allow self enrollment"
msgstr "اجازه ثبت نام خود"
@@ -228,7 +228,7 @@ msgstr "قبلا ثبت شده است"
#. Label of the amount (Currency) field in DocType 'Web Form'
#. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the amount (Currency) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:209 lms/fixtures/custom_field.json
#: frontend/src/pages/BatchForm.vue:221 lms/fixtures/custom_field.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/public/js/common_functions.js:379
@@ -258,11 +258,11 @@ msgstr ""
msgid "Amount with GST"
msgstr "مبلغ با GST"
#: frontend/src/components/Modals/AnnouncementModal.vue:32
#: frontend/src/components/Modals/AnnouncementModal.vue:33
msgid "Announcement"
msgstr "اطلاعیه"
#: frontend/src/components/Modals/AnnouncementModal.vue:99
#: frontend/src/components/Modals/AnnouncementModal.vue:100
msgid "Announcement has been sent successfully"
msgstr ""
@@ -280,7 +280,7 @@ msgstr "پاسخ"
msgid "Appears on the course card in the course list"
msgstr ""
#: frontend/src/pages/BatchForm.vue:55 frontend/src/pages/BatchForm.vue:73
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/BatchForm.vue:77
msgid "Appears when the batch URL is shared on any online platform"
msgstr ""
@@ -319,10 +319,6 @@ msgstr "تایید شده"
msgid "Apps"
msgstr "برنامه ها"
#: frontend/src/components/CourseOutline.vue:209
msgid "Are you sure you want to delete this lesson?"
msgstr ""
#. Label of the user_category (Check) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Ask User Category during Signup"
@@ -420,7 +416,7 @@ msgid "Auto Assign"
msgstr ""
#. Label of the auto_recording (Select) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/LiveClassModal.vue:66
#: frontend/src/components/Modals/LiveClassModal.vue:71
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Auto Recording"
msgstr ""
@@ -482,7 +478,8 @@ msgid "Batch Description"
msgstr "توضیحات دسته"
#. Label of the batch_details (Text Editor) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:98 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:104
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:349
#: lms/templates/emails/batch_confirmation.html:30
msgid "Batch Details"
@@ -547,10 +544,6 @@ msgstr ""
msgid "Batch end date cannot be before the batch start date"
msgstr ""
#: lms/lms/web_form/add_a_new_batch/add_a_new_batch.js:6
msgid "Batch {0} has been successfully created!"
msgstr "دسته {0} با موفقیت ایجاد شد!"
#. Group in LMS Course's connections
#. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue:8 lms/lms/doctype/lms_course/lms_course.json
@@ -581,7 +574,7 @@ msgstr "جزئیات صورتحساب"
msgid "Billing Name"
msgstr "نام صورتحساب:"
#: frontend/src/components/Modals/EditProfile.vue:72
#: frontend/src/components/Modals/EditProfile.vue:75
msgid "Bio"
msgstr "بیوگرافی"
@@ -649,7 +642,7 @@ msgstr ""
#. Label of the category (Link) field in DocType 'LMS Batch'
#. Label of the category (Data) field in DocType 'LMS Category'
#. Label of the category (Link) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/BatchForm.vue:202 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/JobDetail.vue:102
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -734,6 +727,14 @@ msgstr "فصل"
msgid "Chapter Reference"
msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:149
msgid "Chapter added successfully"
msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:193
msgid "Chapter updated successfully"
msgstr ""
#. Label of the chapters (Table) field in DocType 'LMS Course'
#. Group in LMS Course's connections
#: lms/lms/doctype/lms_course/lms_course.json
@@ -962,7 +963,7 @@ msgstr ""
#. Label of the condition (Code) field in DocType 'LMS Badge'
#: lms/lms/doctype/lms_badge/lms_badge.json
msgid "Condition"
msgstr "وضعیت"
msgstr ""
#: lms/lms/doctype/lms_badge/lms_badge.py:16
msgid "Condition must be in valid JSON format."
@@ -987,7 +988,7 @@ msgid "Contact the Administrator to enroll for this course."
msgstr ""
#. Label of the content (Text) field in DocType 'Course Lesson'
#: frontend/src/pages/LessonForm.vue:53
#: frontend/src/pages/LessonForm.vue:58
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Content"
msgstr "محتوا"
@@ -997,6 +998,7 @@ msgid "Continue Learning"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:117
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Contract"
msgstr "قرارداد"
@@ -1060,7 +1062,7 @@ msgstr "کشور"
#. Label of the course (Link) field in DocType 'Related Courses'
#. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/BatchCourseModal.vue:17
#: frontend/src/components/Modals/BatchCourseModal.vue:20
#: frontend/src/components/Modals/EvaluationModal.vue:20
#: frontend/src/components/Modals/Event.vue:24
#: lms/lms/doctype/batch_course/batch_course.json
@@ -1153,6 +1155,10 @@ msgstr ""
msgid "Course Name"
msgstr "اسم دوره"
#: frontend/src/pages/CourseDetail.vue:74
msgid "Course Outline"
msgstr ""
#. Label of the course_price (Currency) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:219
#: lms/lms/doctype/lms_course/lms_course.json
@@ -1175,9 +1181,11 @@ msgid "Course Stats"
msgstr ""
#. Label of the title (Data) field in DocType 'Batch Course'
#. Label of the course_title (Data) field in DocType 'Course Chapter'
#. Label of the course_title (Data) field in DocType 'LMS Certificate'
#. Label of the course_title (Data) field in DocType 'LMS Certificate Request'
#: lms/lms/doctype/batch_course/batch_course.json
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
msgid "Course Title"
@@ -1257,7 +1265,7 @@ msgstr ""
#. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course'
#. Label of the currency (Link) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:226
#: frontend/src/pages/BatchForm.vue:229 frontend/src/pages/CourseForm.vue:226
#: lms/fixtures/custom_field.json lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_payment/lms_payment.json
@@ -1303,7 +1311,7 @@ msgstr "داشبورد"
#. Label of the date (Date) field in DocType 'Scheduled Flow'
#: frontend/src/components/Modals/EvaluationModal.vue:26
#: frontend/src/components/Modals/Event.vue:40
#: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Modals/LiveClassModal.vue:55
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
@@ -1315,7 +1323,7 @@ msgstr "تاریخ"
#. Label of the section_break_glxh (Section Break) field in DocType 'LMS Live
#. Class'
#: frontend/src/pages/BatchForm.vue:111
#: frontend/src/pages/BatchForm.vue:118
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Date and Time"
msgstr "تاریخ و زمان"
@@ -1350,23 +1358,40 @@ msgstr "ارز پیش فرض"
msgid "Degree Type"
msgstr "نوع مدرک"
#: frontend/src/components/CourseOutline.vue:212
#: frontend/src/components/CourseOutline.vue:235
#: frontend/src/components/CourseOutline.vue:293
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:470
msgid "Delete"
msgstr "حذف"
#: frontend/src/components/CourseOutline.vue:52
msgid "Delete Chapter"
msgstr ""
#: frontend/src/pages/CourseForm.vue:464
msgid "Delete Course"
msgstr ""
#: frontend/src/components/CourseOutline.vue:208
msgid "Delete Lesson"
#: frontend/src/components/CourseOutline.vue:287
msgid "Delete this chapter?"
msgstr ""
#: frontend/src/components/CourseOutline.vue:229
msgid "Delete this lesson?"
msgstr ""
#: frontend/src/pages/CourseForm.vue:465
msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?"
msgstr ""
#: frontend/src/components/CourseOutline.vue:288
msgid "Deleting this chapter will also delete all its lessons and permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?"
msgstr ""
#: frontend/src/components/CourseOutline.vue:230
msgid "Deleting this lesson will permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?"
msgstr ""
#. Label of the description (Text Editor) field in DocType 'Job Opportunity'
#. Label of the description (Small Text) field in DocType 'Certification'
#. Label of the description (Markdown Editor) field in DocType 'Cohort'
@@ -1379,8 +1404,8 @@ msgstr ""
#. Label of the description (Small Text) field in DocType 'LMS Exercise'
#. Label of the description (Text) field in DocType 'LMS Live Class'
#. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:73
#: frontend/src/pages/BatchForm.vue:91 frontend/src/pages/JobCreation.vue:43
#: frontend/src/components/Modals/LiveClassModal.vue:78
#: frontend/src/pages/BatchForm.vue:96 frontend/src/pages/JobCreation.vue:43
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json
@@ -1426,7 +1451,7 @@ msgid "Discard"
msgstr "دور انداختن"
#. Label of the show_discussions (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batch.vue:69
#: frontend/src/pages/Batch.vue:73
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Discussions"
msgstr ""
@@ -1453,7 +1478,7 @@ msgstr "گزینه های تکراری برای این سوال پیدا شد."
#. Label of the duration (Data) field in DocType 'LMS Batch Timetable'
#. Label of the duration (Int) field in DocType 'LMS Live Class'
#. Label of the duration (Duration) field in DocType 'LMS Quiz'
#: frontend/src/components/Modals/LiveClassModal.vue:58
#: frontend/src/components/Modals/LiveClassModal.vue:62
#: lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -1465,7 +1490,7 @@ msgstr "مدت زمان"
msgid "Duration (in minutes)"
msgstr ""
#: frontend/src/components/Modals/LiveClassModal.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:58
msgid "Duration of the live class in minutes"
msgstr ""
@@ -1487,7 +1512,7 @@ msgstr "ایمیل"
msgid "Edit"
msgstr "ویرایش"
#: frontend/src/components/CourseOutline.vue:106
#: frontend/src/components/CourseOutline.vue:45
#: frontend/src/components/Modals/ChapterModal.vue:5
msgid "Edit Chapter"
msgstr "ویرایش فصل"
@@ -1564,7 +1589,7 @@ msgstr "فعال"
#. Label of the end_date (Date) field in DocType 'Cohort'
#. Label of the end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:123 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/BatchForm.vue:131 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:282
msgid "End Date"
@@ -1582,7 +1607,7 @@ msgstr "تاریخ پایان (یا مورد انتظار)"
#. Label of the end_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the end_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the end_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:137
#: frontend/src/pages/BatchForm.vue:147
#: frontend/src/pages/ProfileEvaluator.vue:18
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1618,7 +1643,7 @@ msgstr ""
msgid "Enrollment Count"
msgstr ""
#: lms/lms/utils.py:1690
#: lms/lms/utils.py:1702
msgid "Enrollment Failed"
msgstr ""
@@ -1646,7 +1671,10 @@ msgstr ""
msgid "Enter the correct answer"
msgstr "پاسخ صحیح را وارد کنید"
#: frontend/src/components/Modals/AnnouncementModal.vue:104
#: frontend/src/components/Modals/AnnouncementModal.vue:105
#: frontend/src/components/Modals/ChapterModal.vue:154
#: frontend/src/components/Modals/ChapterModal.vue:161
#: frontend/src/components/Modals/ChapterModal.vue:197
#: frontend/src/components/Modals/Question.vue:246
#: frontend/src/components/Modals/Question.vue:266
#: frontend/src/components/Modals/Question.vue:323
@@ -1669,7 +1697,7 @@ msgid "Evaluation Details"
msgstr ""
#. Label of the evaluation_end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:166
#: frontend/src/pages/BatchForm.vue:178
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:333
msgid "Evaluation End Date"
@@ -1694,7 +1722,7 @@ msgstr ""
#. Label of the evaluator (Link) field in DocType 'LMS Certificate'
#. Label of the evaluator (Link) field in DocType 'LMS Certificate Evaluation'
#. Label of the evaluator (Link) field in DocType 'LMS Certificate Request'
#: frontend/src/components/Modals/BatchCourseModal.vue:21
#: frontend/src/components/Modals/BatchCourseModal.vue:26
#: frontend/src/pages/ProfileRoles.vue:22
#: lms/lms/doctype/batch_course/batch_course.json
#: lms/lms/doctype/course_evaluator/course_evaluator.json
@@ -1733,7 +1761,7 @@ msgstr ""
msgid "Event"
msgstr "رویداد"
#: frontend/src/pages/BatchForm.vue:145
#: frontend/src/pages/BatchForm.vue:156
msgid "Example: IST (+5:30)"
msgstr ""
@@ -1860,6 +1888,7 @@ msgid "Free"
msgstr "رایگان"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:118
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Freelance"
msgstr ""
@@ -1899,6 +1928,7 @@ msgid "Full Name"
msgstr "نام و نام خانوادگی"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:115
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Full Time"
msgstr "تمام وقت"
@@ -1981,11 +2011,6 @@ msgstr ""
msgid "Hello"
msgstr "سلام"
#. Label of the help_section (Section Break) field in DocType 'Course Lesson'
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Help"
msgstr "کمک"
#: lms/templates/courses_created.html:15
msgid "Help others learn something new by creating a course."
msgstr "با ایجاد دوره آموزشی به دیگران کمک کنید چیز جدیدی یاد بگیرند."
@@ -2164,9 +2189,7 @@ msgstr "نادرست"
msgid "Index"
msgstr "فهرست مطالب"
#. Label of the index_label (Data) field in DocType 'Course Lesson'
#. Label of the index_label (Data) field in DocType 'LMS Exercise'
#: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_exercise/lms_exercise.json
msgid "Index Label"
msgstr ""
@@ -2203,14 +2226,14 @@ msgstr ""
#. Label of the instructor_notes (Markdown Editor) field in DocType 'Course
#. Lesson'
#: frontend/src/pages/Lesson.vue:125 frontend/src/pages/LessonForm.vue:33
#: frontend/src/pages/Lesson.vue:128 frontend/src/pages/LessonForm.vue:38
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Instructor Notes"
msgstr "یادداشت های مدرس"
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch'
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:85 frontend/src/pages/CourseForm.vue:154
#: frontend/src/pages/BatchForm.vue:89 frontend/src/pages/CourseForm.vue:154
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Instructors"
@@ -2238,10 +2261,6 @@ msgstr ""
msgid "Invalid Quiz ID"
msgstr ""
#: lms/lms/web_form/add_a_new_batch/add_a_new_batch.js:38
msgid "Invalid Start or End Time."
msgstr ""
#. Label of the invite_code (Data) field in DocType 'Cohort Subgroup'
#. Label of the invite_code (Data) field in DocType 'Invite Request'
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
@@ -2281,6 +2300,14 @@ msgstr ""
msgid "Is Onboarding Complete"
msgstr ""
#. Label of the is_scorm_package (Check) field in DocType 'Course Chapter'
#. Label of the is_scorm_package (Check) field in DocType 'Course Lesson'
#: frontend/src/components/Modals/ChapterModal.vue:26
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Is SCORM Package"
msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/Event.vue:121
@@ -2355,7 +2382,7 @@ msgstr "عنوان شغلی"
msgid "Jobs"
msgstr "شغل ها"
#: frontend/src/components/LiveClass.vue:54
#: frontend/src/components/LiveClass.vue:55
#: lms/templates/upcoming_evals.html:15
msgid "Join"
msgstr "پیوستن"
@@ -2593,6 +2620,11 @@ msgstr "نام خانوادگی"
msgid "Latest Submission"
msgstr ""
#. Label of the launch_file (Code) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "Launch File"
msgstr ""
#. Label of the lesson (Link) field in DocType 'Exercise Latest Submission'
#. Label of the lesson (Link) field in DocType 'Exercise Submission'
#. Label of the lesson (Link) field in DocType 'Lesson Reference'
@@ -2722,7 +2754,7 @@ msgid "Location Preference"
msgstr ""
#: frontend/src/components/NoPermission.vue:28
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:163
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:167
#: frontend/src/pages/Lesson.vue:24
msgid "Login"
msgstr "وارد شدن"
@@ -2759,6 +2791,11 @@ msgstr "مدیر"
msgid "Manager (Sales/Marketing/Customer)"
msgstr ""
#. Label of the manifest_file (Code) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "Manifest File"
msgstr ""
#: frontend/src/components/Quiz.vue:94
msgid "Mark"
msgstr ""
@@ -2803,7 +2840,7 @@ msgid "Maximun Attempts"
msgstr ""
#. Label of the medium (Select) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:185
#: frontend/src/pages/BatchForm.vue:197
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:309
msgid "Medium"
@@ -2951,7 +2988,7 @@ msgid "Mentors"
msgstr "مربیان"
#. Label of the meta_image (Attach Image) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:36 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:40 lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:362
msgid "Meta Image"
msgstr "تصویر متا"
@@ -2987,11 +3024,11 @@ msgstr ""
msgid "Modified By"
msgstr "تغییر داده شده توسط"
#: lms/lms/api.py:191
#: lms/lms/api.py:197
msgid "Module Name is incorrect or does not exist."
msgstr ""
#: lms/lms/api.py:187
#: lms/lms/api.py:193
msgid "Module is incorrect."
msgstr ""
@@ -3037,7 +3074,7 @@ msgstr "دسته جدید"
msgid "New Course"
msgstr "دوره جدید"
#: frontend/src/pages/Jobs.vue:24
#: frontend/src/pages/Jobs.vue:39
msgid "New Job"
msgstr "شغل جدید"
@@ -3124,11 +3161,11 @@ msgstr ""
msgid "No introduction"
msgstr ""
#: frontend/src/pages/Jobs.vue:45
#: frontend/src/pages/Jobs.vue:60
msgid "No jobs posted"
msgstr ""
#: frontend/src/components/LiveClass.vue:60
#: frontend/src/components/LiveClass.vue:61
msgid "No live classes scheduled"
msgstr ""
@@ -3184,7 +3221,7 @@ msgstr ""
msgid "Not Graded"
msgstr ""
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:131
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:135
msgid "Not Permitted"
msgstr "غیر مجاز"
@@ -3208,7 +3245,7 @@ msgstr "اعلان‌ها"
msgid "Notify me when available"
msgstr ""
#: frontend/src/pages/BatchForm.vue:162
#: frontend/src/pages/BatchForm.vue:174
msgid "Number of seats available"
msgstr ""
@@ -3248,6 +3285,10 @@ msgstr "فقط فایل هایی از نوع {0} پذیرفته می شوند."
msgid "Only image file is allowed."
msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:223
msgid "Only zip files are allowed"
msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Job Opportunity'
#. Option for the 'Membership' (Select) field in DocType 'LMS Batch Old'
#: frontend/src/pages/QuizForm.vue:17
@@ -3352,7 +3393,7 @@ msgid "Pages"
msgstr "صفحات"
#. Label of the paid_batch (Check) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:205
#: frontend/src/pages/BatchForm.vue:217
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:373
msgid "Paid Batch"
@@ -3369,6 +3410,7 @@ msgid "Pan Number"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:116
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Part Time"
msgstr "پاره وقت"
@@ -3407,7 +3449,7 @@ msgstr ""
#. Label of the payment (Link) field in DocType 'Batch Student'
#. Label of the payment (Link) field in DocType 'LMS Enrollment'
#: frontend/src/pages/BatchForm.vue:199
#: frontend/src/pages/BatchForm.vue:211
#: lms/lms/doctype/batch_student/batch_student.json
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
msgid "Payment"
@@ -3509,7 +3551,7 @@ msgstr ""
#: lms/overrides/user.py:240
msgid "Please ask your administrator to verify your sign-up"
msgstr "لطفاً از سرپرست خود بخواهید ثبت نام شما را تأیید کند"
msgstr "لطفاً از ادمین خود بخواهید ثبت نام شما را تأیید کند"
#: lms/overrides/user.py:238
msgid "Please check your email for verification"
@@ -3523,6 +3565,10 @@ msgstr ""
msgid "Please enable Zoom Settings to use this feature."
msgstr ""
#: frontend/src/components/CourseOutline.vue:312
msgid "Please enroll for this course to view this lesson"
msgstr ""
#: frontend/src/components/Quiz.vue:13
msgid "Please ensure that you complete all the questions in {0} minutes."
msgstr ""
@@ -3556,11 +3602,11 @@ msgstr ""
msgid "Please login to access the quiz."
msgstr ""
#: frontend/src/components/NoPermission.vue:25 frontend/src/pages/Batch.vue:142
#: frontend/src/components/NoPermission.vue:25 frontend/src/pages/Batch.vue:146
msgid "Please login to access this page."
msgstr ""
#: lms/lms/api.py:183
#: lms/lms/api.py:189
msgid "Please login to continue with payment."
msgstr ""
@@ -3573,6 +3619,10 @@ msgstr ""
msgid "Please take appropriate action at {0}"
msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:172
msgid "Please upload a SCORM package"
msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:95
msgid "Please upload the assignment file."
msgstr "لطفا فایل تکلیف را آپلود کنید."
@@ -3730,7 +3780,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Batch'
#. Label of the published (Check) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:108
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:171
#: frontend/src/pages/BatchForm.vue:28 frontend/src/pages/CourseForm.vue:171
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:266
@@ -3941,11 +3991,11 @@ msgstr "رد شده"
msgid "Related Courses"
msgstr ""
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/CourseForm.vue:99
#: frontend/src/pages/BatchForm.vue:73 frontend/src/pages/CourseForm.vue:99
msgid "Remove"
msgstr "برداشتن"
#: frontend/src/components/Modals/AnnouncementModal.vue:26
#: frontend/src/components/Modals/AnnouncementModal.vue:27
msgid "Reply To"
msgstr ""
@@ -4039,6 +4089,21 @@ msgstr ""
msgid "Run"
msgstr ""
#. Label of the scorm_section (Section Break) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "SCORM"
msgstr ""
#. Label of the scorm_package (Link) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "SCORM Package"
msgstr ""
#. Label of the scorm_package_path (Code) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "SCORM Package Path"
msgstr ""
#. Option for the 'Day' (Select) field in DocType 'Evaluator Schedule'
#. Option for the 'Day' (Select) field in DocType 'LMS Certificate Request'
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
@@ -4100,7 +4165,7 @@ msgid "Search for an icon"
msgstr ""
#. Label of the seat_count (Int) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:159
#: frontend/src/pages/BatchForm.vue:171
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:327
msgid "Seat Count"
@@ -4144,7 +4209,7 @@ msgid "Set your Password"
msgstr ""
#: frontend/src/components/Modals/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:153 frontend/src/pages/CourseForm.vue:161
#: frontend/src/pages/BatchForm.vue:165 frontend/src/pages/CourseForm.vue:161
#: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:78
msgid "Settings"
msgstr "تنظیمات"
@@ -4159,7 +4224,7 @@ msgstr ""
msgid "Short Introduction"
msgstr ""
#: frontend/src/pages/BatchForm.vue:94
#: frontend/src/pages/BatchForm.vue:99
msgid "Short description of the batch"
msgstr ""
@@ -4323,7 +4388,7 @@ msgstr "شروع"
#. Label of the start_date (Date) field in DocType 'Education Detail'
#. Label of the start_date (Date) field in DocType 'LMS Batch'
#. Label of the start_date (Date) field in DocType 'LMS Batch Old'
#: frontend/src/pages/BatchForm.vue:117
#: frontend/src/pages/BatchForm.vue:124
#: lms/lms/doctype/education_detail/education_detail.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -4332,7 +4397,7 @@ msgid "Start Date"
msgstr "تاریخ شروع"
#: frontend/src/components/CourseCardOverlay.vue:63
#: frontend/src/pages/Lesson.vue:21
#: frontend/src/pages/Lesson.vue:21 frontend/src/pages/SCORMChapter.vue:28
#: lms/templates/emails/lms_course_interest.html:9
msgid "Start Learning"
msgstr ""
@@ -4344,7 +4409,7 @@ msgstr ""
#. Label of the start_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the start_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the start_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:131
#: frontend/src/pages/BatchForm.vue:140
#: frontend/src/pages/ProfileEvaluator.vue:15
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -4361,19 +4426,11 @@ msgstr "زمان شروع"
msgid "Start Time cannot be greater than End Time"
msgstr ""
#: lms/lms/web_form/add_a_new_batch/add_a_new_batch.js:43
msgid "Start Time should be less than End Time."
msgstr ""
#. Label of the start_url (Small Text) field in DocType 'LMS Live Class'
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Start URL"
msgstr ""
#: lms/lms/web_form/add_a_new_batch/add_a_new_batch.js:30
msgid "Start date cannot be a past date."
msgstr ""
#. Option for the 'Company Type' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Startup Organization"
@@ -4516,8 +4573,10 @@ msgstr ""
#: frontend/src/components/BatchOverlay.vue:135
#: frontend/src/components/BatchStudents.vue:157
#: frontend/src/components/CourseCardOverlay.vue:161
#: frontend/src/components/Modals/AnnouncementModal.vue:98
#: frontend/src/components/Modals/AnnouncementModal.vue:99
#: frontend/src/components/Modals/AssessmentModal.vue:73
#: frontend/src/components/Modals/ChapterModal.vue:148
#: frontend/src/components/Modals/ChapterModal.vue:193
#: frontend/src/components/Modals/Event.vue:255
#: frontend/src/components/Modals/Event.vue:310
#: frontend/src/components/Modals/Question.vue:261
@@ -4713,10 +4772,14 @@ msgstr ""
msgid "This course has:"
msgstr ""
#: lms/lms/utils.py:1570
#: lms/lms/utils.py:1582
msgid "This course is free."
msgstr ""
#: frontend/src/pages/SCORMChapter.vue:198
msgid "This is a chapter in the course {0}"
msgstr ""
#: lms/lms/widgets/CourseOutline.html:62
msgid "This lesson is not available for preview. As you are the Instructor of the course only you can see it."
msgstr ""
@@ -4742,7 +4805,7 @@ msgstr "پنج شنبه"
#. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48
#: frontend/src/components/Modals/LiveClassModal.vue:36
#: frontend/src/components/Modals/LiveClassModal.vue:37
#: frontend/src/components/Quiz.vue:44
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Time"
@@ -4753,7 +4816,7 @@ msgstr "زمان"
msgid "Time Preference"
msgstr ""
#: frontend/src/components/Modals/LiveClassModal.vue:28
#: frontend/src/components/Modals/LiveClassModal.vue:29
msgid "Time must be in 24 hour format (HH:mm). Example 11:30 or 22:00"
msgstr ""
@@ -4781,8 +4844,8 @@ msgstr "الگوی جدول زمانی"
#. Label of the timezone (Data) field in DocType 'LMS Batch'
#. Label of the timezone (Data) field in DocType 'LMS Certificate Request'
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/LiveClassModal.vue:44
#: frontend/src/pages/BatchForm.vue:143
#: frontend/src/components/Modals/LiveClassModal.vue:46
#: frontend/src/pages/BatchForm.vue:154
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -4811,7 +4874,7 @@ msgstr ""
#. Label of the title (Data) field in DocType 'Work Experience'
#: frontend/src/components/Modals/DiscussionModal.vue:18
#: frontend/src/components/Modals/LiveClassModal.vue:23
#: frontend/src/pages/BatchForm.vue:18 frontend/src/pages/CourseForm.vue:32
#: frontend/src/pages/BatchForm.vue:20 frontend/src/pages/CourseForm.vue:32
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/QuizForm.vue:48
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
@@ -4833,6 +4896,10 @@ msgstr ""
msgid "Title"
msgstr "عنوان"
#: frontend/src/components/Modals/ChapterModal.vue:169
msgid "Title is required"
msgstr ""
#. Label of the unavailable_to (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:98
#: lms/lms/doctype/course_evaluator/course_evaluator.json
@@ -4844,11 +4911,7 @@ msgstr "به"
msgid "To Date"
msgstr "تا تاریخ"
#: lms/lms/web_form/profile/profile.js:19
msgid "To Date is mandatory in Work Experience."
msgstr ""
#: lms/lms/utils.py:1581
#: lms/lms/utils.py:1593
msgid "To join this batch, please contact the Administrator."
msgstr ""
@@ -4902,7 +4965,7 @@ msgstr "توییتر"
#. Label of the type (Select) field in DocType 'LMS Quiz Question'
#: frontend/src/components/Modals/AssessmentModal.vue:22
#: frontend/src/components/Modals/Question.vue:54
#: frontend/src/pages/JobCreation.vue:28
#: frontend/src/pages/JobCreation.vue:28 frontend/src/pages/Jobs.vue:16
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/lms_assignment/lms_assignment.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
@@ -4970,7 +5033,7 @@ msgstr ""
msgid "Upcoming"
msgstr ""
#: frontend/src/pages/Batch.vue:154
#: frontend/src/pages/Batch.vue:158
msgid "Upcoming Batches"
msgstr ""
@@ -4989,7 +5052,7 @@ msgstr "به روز رسانی"
msgid "Update Password"
msgstr "به‌روزرسانی گذرواژه"
#: frontend/src/pages/BatchForm.vue:51 frontend/src/pages/CourseForm.vue:80
#: frontend/src/pages/BatchForm.vue:55 frontend/src/pages/CourseForm.vue:80
msgid "Upload"
msgstr "آپلود"
@@ -5172,15 +5235,15 @@ msgstr ""
msgid "You already have an evaluation on {0} at {1} for the course {2}."
msgstr ""
#: lms/lms/api.py:207
#: lms/lms/api.py:213
msgid "You are already enrolled for this batch."
msgstr ""
#: lms/lms/api.py:199
#: lms/lms/api.py:205
msgid "You are already enrolled for this course."
msgstr ""
#: frontend/src/pages/Batch.vue:136
#: frontend/src/pages/Batch.vue:140
msgid "You are not a member of this batch. Please checkout our upcoming batches."
msgstr ""
@@ -5188,6 +5251,14 @@ msgstr ""
msgid "You are not a mentor of the course {0}"
msgstr ""
#: frontend/src/components/CourseOutline.vue:311
msgid "You are not enrolled"
msgstr ""
#: frontend/src/pages/SCORMChapter.vue:22
msgid "You are not enrolled in this course. Please enroll to access this lesson."
msgstr ""
#: frontend/src/pages/Courses.vue:134
msgid "You can add chapters and lessons to it."
msgstr ""
@@ -5340,7 +5411,7 @@ msgstr ""
msgid "cancel your application"
msgstr ""
#: frontend/src/pages/Lesson.vue:170
#: frontend/src/pages/Lesson.vue:174
msgid "completed"
msgstr "تکمیل شده"
@@ -5388,7 +5459,7 @@ msgstr "ستاره ها"
msgid "you can"
msgstr ""
#: lms/lms/api.py:740 lms/lms/api.py:748
#: lms/lms/api.py:747 lms/lms/api.py:755
msgid "{0} Settings not found"
msgstr ""

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-11-08 16:04+0000\n"
"PO-Revision-Date: 2024-11-11 15:23\n"
"POT-Creation-Date: 2024-11-15 16:04+0000\n"
"PO-Revision-Date: 2024-11-18 17:31\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: French\n"
"MIME-Version: 1.0\n"
@@ -109,7 +109,7 @@ msgstr "Ajouter"
msgid "Add Chapter"
msgstr "Ajouter un chapitre"
#: frontend/src/components/CourseOutline.vue:102
#: frontend/src/components/CourseOutline.vue:124
msgid "Add Lesson"
msgstr "Ajouter une leçon"
@@ -217,7 +217,7 @@ msgstr "Autoriser l'auto-inscription"
msgid "Allow accessing future dates"
msgstr "Autoriser l'accès aux dates futures"
#: frontend/src/pages/BatchForm.vue:29
#: frontend/src/pages/BatchForm.vue:33
msgid "Allow self enrollment"
msgstr "Autoriser l'auto-inscription"
@@ -228,7 +228,7 @@ msgstr "Déjà Inscrit"
#. Label of the amount (Currency) field in DocType 'Web Form'
#. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the amount (Currency) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:209 lms/fixtures/custom_field.json
#: frontend/src/pages/BatchForm.vue:221 lms/fixtures/custom_field.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/public/js/common_functions.js:379
@@ -258,11 +258,11 @@ msgstr ""
msgid "Amount with GST"
msgstr "Montant avec taxe"
#: frontend/src/components/Modals/AnnouncementModal.vue:32
#: frontend/src/components/Modals/AnnouncementModal.vue:33
msgid "Announcement"
msgstr "Information"
#: frontend/src/components/Modals/AnnouncementModal.vue:99
#: frontend/src/components/Modals/AnnouncementModal.vue:100
msgid "Announcement has been sent successfully"
msgstr ""
@@ -280,7 +280,7 @@ msgstr "Réponse"
msgid "Appears on the course card in the course list"
msgstr ""
#: frontend/src/pages/BatchForm.vue:55 frontend/src/pages/BatchForm.vue:73
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/BatchForm.vue:77
msgid "Appears when the batch URL is shared on any online platform"
msgstr ""
@@ -319,10 +319,6 @@ msgstr "Approuvé"
msgid "Apps"
msgstr ""
#: frontend/src/components/CourseOutline.vue:209
msgid "Are you sure you want to delete this lesson?"
msgstr ""
#. Label of the user_category (Check) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Ask User Category during Signup"
@@ -420,7 +416,7 @@ msgid "Auto Assign"
msgstr "Affectation automatique"
#. Label of the auto_recording (Select) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/LiveClassModal.vue:66
#: frontend/src/components/Modals/LiveClassModal.vue:71
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Auto Recording"
msgstr "Enregistrement automatique"
@@ -482,7 +478,8 @@ msgid "Batch Description"
msgstr "Description du Lot"
#. Label of the batch_details (Text Editor) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:98 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:104
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:349
#: lms/templates/emails/batch_confirmation.html:30
msgid "Batch Details"
@@ -547,10 +544,6 @@ msgstr "Lot mis à jour"
msgid "Batch end date cannot be before the batch start date"
msgstr ""
#: lms/lms/web_form/add_a_new_batch/add_a_new_batch.js:6
msgid "Batch {0} has been successfully created!"
msgstr "Le lot {0} a été créé avec succès !"
#. Group in LMS Course's connections
#. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue:8 lms/lms/doctype/lms_course/lms_course.json
@@ -581,7 +574,7 @@ msgstr "Détails de la Facturation"
msgid "Billing Name"
msgstr "Nom de facturation"
#: frontend/src/components/Modals/EditProfile.vue:72
#: frontend/src/components/Modals/EditProfile.vue:75
msgid "Bio"
msgstr "Biographie"
@@ -649,7 +642,7 @@ msgstr ""
#. Label of the category (Link) field in DocType 'LMS Batch'
#. Label of the category (Data) field in DocType 'LMS Category'
#. Label of the category (Link) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/BatchForm.vue:202 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/JobDetail.vue:102
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -734,6 +727,14 @@ msgstr "Chapitre"
msgid "Chapter Reference"
msgstr "Référence de chapitre"
#: frontend/src/components/Modals/ChapterModal.vue:149
msgid "Chapter added successfully"
msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:193
msgid "Chapter updated successfully"
msgstr ""
#. Label of the chapters (Table) field in DocType 'LMS Course'
#. Group in LMS Course's connections
#: lms/lms/doctype/lms_course/lms_course.json
@@ -987,7 +988,7 @@ msgid "Contact the Administrator to enroll for this course."
msgstr ""
#. Label of the content (Text) field in DocType 'Course Lesson'
#: frontend/src/pages/LessonForm.vue:53
#: frontend/src/pages/LessonForm.vue:58
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Content"
msgstr "Contenu"
@@ -997,6 +998,7 @@ msgid "Continue Learning"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:117
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Contract"
msgstr "Contrat"
@@ -1060,7 +1062,7 @@ msgstr "Pays"
#. Label of the course (Link) field in DocType 'Related Courses'
#. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/BatchCourseModal.vue:17
#: frontend/src/components/Modals/BatchCourseModal.vue:20
#: frontend/src/components/Modals/EvaluationModal.vue:20
#: frontend/src/components/Modals/Event.vue:24
#: lms/lms/doctype/batch_course/batch_course.json
@@ -1153,6 +1155,10 @@ msgstr "Liste de cours"
msgid "Course Name"
msgstr "Nom du cours"
#: frontend/src/pages/CourseDetail.vue:74
msgid "Course Outline"
msgstr ""
#. Label of the course_price (Currency) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:219
#: lms/lms/doctype/lms_course/lms_course.json
@@ -1175,9 +1181,11 @@ msgid "Course Stats"
msgstr "Statistiques du cours"
#. Label of the title (Data) field in DocType 'Batch Course'
#. Label of the course_title (Data) field in DocType 'Course Chapter'
#. Label of the course_title (Data) field in DocType 'LMS Certificate'
#. Label of the course_title (Data) field in DocType 'LMS Certificate Request'
#: lms/lms/doctype/batch_course/batch_course.json
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
msgid "Course Title"
@@ -1257,7 +1265,7 @@ msgstr ""
#. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course'
#. Label of the currency (Link) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:226
#: frontend/src/pages/BatchForm.vue:229 frontend/src/pages/CourseForm.vue:226
#: lms/fixtures/custom_field.json lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_payment/lms_payment.json
@@ -1303,7 +1311,7 @@ msgstr "Tableau de bord"
#. Label of the date (Date) field in DocType 'Scheduled Flow'
#: frontend/src/components/Modals/EvaluationModal.vue:26
#: frontend/src/components/Modals/Event.vue:40
#: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Modals/LiveClassModal.vue:55
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
@@ -1315,7 +1323,7 @@ msgstr ""
#. Label of the section_break_glxh (Section Break) field in DocType 'LMS Live
#. Class'
#: frontend/src/pages/BatchForm.vue:111
#: frontend/src/pages/BatchForm.vue:118
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Date and Time"
msgstr "Date et heure"
@@ -1350,23 +1358,40 @@ msgstr "Devise par Défaut"
msgid "Degree Type"
msgstr "Type de diplôme"
#: frontend/src/components/CourseOutline.vue:212
#: frontend/src/components/CourseOutline.vue:235
#: frontend/src/components/CourseOutline.vue:293
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:470
msgid "Delete"
msgstr "Supprimer"
#: frontend/src/components/CourseOutline.vue:52
msgid "Delete Chapter"
msgstr ""
#: frontend/src/pages/CourseForm.vue:464
msgid "Delete Course"
msgstr ""
#: frontend/src/components/CourseOutline.vue:208
msgid "Delete Lesson"
#: frontend/src/components/CourseOutline.vue:287
msgid "Delete this chapter?"
msgstr ""
#: frontend/src/components/CourseOutline.vue:229
msgid "Delete this lesson?"
msgstr ""
#: frontend/src/pages/CourseForm.vue:465
msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?"
msgstr ""
#: frontend/src/components/CourseOutline.vue:288
msgid "Deleting this chapter will also delete all its lessons and permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?"
msgstr ""
#: frontend/src/components/CourseOutline.vue:230
msgid "Deleting this lesson will permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?"
msgstr ""
#. Label of the description (Text Editor) field in DocType 'Job Opportunity'
#. Label of the description (Small Text) field in DocType 'Certification'
#. Label of the description (Markdown Editor) field in DocType 'Cohort'
@@ -1379,8 +1404,8 @@ msgstr ""
#. Label of the description (Small Text) field in DocType 'LMS Exercise'
#. Label of the description (Text) field in DocType 'LMS Live Class'
#. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:73
#: frontend/src/pages/BatchForm.vue:91 frontend/src/pages/JobCreation.vue:43
#: frontend/src/components/Modals/LiveClassModal.vue:78
#: frontend/src/pages/BatchForm.vue:96 frontend/src/pages/JobCreation.vue:43
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json
@@ -1426,7 +1451,7 @@ msgid "Discard"
msgstr "Ignorer"
#. Label of the show_discussions (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batch.vue:69
#: frontend/src/pages/Batch.vue:73
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Discussions"
msgstr ""
@@ -1453,7 +1478,7 @@ msgstr ""
#. Label of the duration (Data) field in DocType 'LMS Batch Timetable'
#. Label of the duration (Int) field in DocType 'LMS Live Class'
#. Label of the duration (Duration) field in DocType 'LMS Quiz'
#: frontend/src/components/Modals/LiveClassModal.vue:58
#: frontend/src/components/Modals/LiveClassModal.vue:62
#: lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -1465,7 +1490,7 @@ msgstr "Durée"
msgid "Duration (in minutes)"
msgstr ""
#: frontend/src/components/Modals/LiveClassModal.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:58
msgid "Duration of the live class in minutes"
msgstr ""
@@ -1487,7 +1512,7 @@ msgstr ""
msgid "Edit"
msgstr "modifier"
#: frontend/src/components/CourseOutline.vue:106
#: frontend/src/components/CourseOutline.vue:45
#: frontend/src/components/Modals/ChapterModal.vue:5
msgid "Edit Chapter"
msgstr ""
@@ -1564,7 +1589,7 @@ msgstr "Activé"
#. Label of the end_date (Date) field in DocType 'Cohort'
#. Label of the end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:123 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/BatchForm.vue:131 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:282
msgid "End Date"
@@ -1582,7 +1607,7 @@ msgstr ""
#. Label of the end_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the end_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the end_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:137
#: frontend/src/pages/BatchForm.vue:147
#: frontend/src/pages/ProfileEvaluator.vue:18
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1618,7 +1643,7 @@ msgstr ""
msgid "Enrollment Count"
msgstr ""
#: lms/lms/utils.py:1690
#: lms/lms/utils.py:1702
msgid "Enrollment Failed"
msgstr ""
@@ -1646,7 +1671,10 @@ msgstr ""
msgid "Enter the correct answer"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:104
#: frontend/src/components/Modals/AnnouncementModal.vue:105
#: frontend/src/components/Modals/ChapterModal.vue:154
#: frontend/src/components/Modals/ChapterModal.vue:161
#: frontend/src/components/Modals/ChapterModal.vue:197
#: frontend/src/components/Modals/Question.vue:246
#: frontend/src/components/Modals/Question.vue:266
#: frontend/src/components/Modals/Question.vue:323
@@ -1669,7 +1697,7 @@ msgid "Evaluation Details"
msgstr ""
#. Label of the evaluation_end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:166
#: frontend/src/pages/BatchForm.vue:178
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:333
msgid "Evaluation End Date"
@@ -1694,7 +1722,7 @@ msgstr ""
#. Label of the evaluator (Link) field in DocType 'LMS Certificate'
#. Label of the evaluator (Link) field in DocType 'LMS Certificate Evaluation'
#. Label of the evaluator (Link) field in DocType 'LMS Certificate Request'
#: frontend/src/components/Modals/BatchCourseModal.vue:21
#: frontend/src/components/Modals/BatchCourseModal.vue:26
#: frontend/src/pages/ProfileRoles.vue:22
#: lms/lms/doctype/batch_course/batch_course.json
#: lms/lms/doctype/course_evaluator/course_evaluator.json
@@ -1733,7 +1761,7 @@ msgstr ""
msgid "Event"
msgstr "Événement"
#: frontend/src/pages/BatchForm.vue:145
#: frontend/src/pages/BatchForm.vue:156
msgid "Example: IST (+5:30)"
msgstr ""
@@ -1860,6 +1888,7 @@ msgid "Free"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:118
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Freelance"
msgstr ""
@@ -1899,6 +1928,7 @@ msgid "Full Name"
msgstr "Nom Complet"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:115
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Full Time"
msgstr ""
@@ -1981,11 +2011,6 @@ msgstr ""
msgid "Hello"
msgstr "Bonjour"
#. Label of the help_section (Section Break) field in DocType 'Course Lesson'
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Help"
msgstr "Aidez-moi"
#: lms/templates/courses_created.html:15
msgid "Help others learn something new by creating a course."
msgstr ""
@@ -2164,9 +2189,7 @@ msgstr ""
msgid "Index"
msgstr ""
#. Label of the index_label (Data) field in DocType 'Course Lesson'
#. Label of the index_label (Data) field in DocType 'LMS Exercise'
#: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_exercise/lms_exercise.json
msgid "Index Label"
msgstr ""
@@ -2203,14 +2226,14 @@ msgstr ""
#. Label of the instructor_notes (Markdown Editor) field in DocType 'Course
#. Lesson'
#: frontend/src/pages/Lesson.vue:125 frontend/src/pages/LessonForm.vue:33
#: frontend/src/pages/Lesson.vue:128 frontend/src/pages/LessonForm.vue:38
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Instructor Notes"
msgstr ""
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch'
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:85 frontend/src/pages/CourseForm.vue:154
#: frontend/src/pages/BatchForm.vue:89 frontend/src/pages/CourseForm.vue:154
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Instructors"
@@ -2238,10 +2261,6 @@ msgstr ""
msgid "Invalid Quiz ID"
msgstr ""
#: lms/lms/web_form/add_a_new_batch/add_a_new_batch.js:38
msgid "Invalid Start or End Time."
msgstr ""
#. Label of the invite_code (Data) field in DocType 'Cohort Subgroup'
#. Label of the invite_code (Data) field in DocType 'Invite Request'
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
@@ -2281,6 +2300,14 @@ msgstr ""
msgid "Is Onboarding Complete"
msgstr ""
#. Label of the is_scorm_package (Check) field in DocType 'Course Chapter'
#. Label of the is_scorm_package (Check) field in DocType 'Course Lesson'
#: frontend/src/components/Modals/ChapterModal.vue:26
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Is SCORM Package"
msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/Event.vue:121
@@ -2355,7 +2382,7 @@ msgstr "Titre de l'Emploi"
msgid "Jobs"
msgstr "Emplois"
#: frontend/src/components/LiveClass.vue:54
#: frontend/src/components/LiveClass.vue:55
#: lms/templates/upcoming_evals.html:15
msgid "Join"
msgstr "Joindre"
@@ -2593,6 +2620,11 @@ msgstr "Nom de Famille"
msgid "Latest Submission"
msgstr ""
#. Label of the launch_file (Code) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "Launch File"
msgstr ""
#. Label of the lesson (Link) field in DocType 'Exercise Latest Submission'
#. Label of the lesson (Link) field in DocType 'Exercise Submission'
#. Label of the lesson (Link) field in DocType 'Lesson Reference'
@@ -2722,7 +2754,7 @@ msgid "Location Preference"
msgstr ""
#: frontend/src/components/NoPermission.vue:28
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:163
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:167
#: frontend/src/pages/Lesson.vue:24
msgid "Login"
msgstr "Connexion"
@@ -2759,6 +2791,11 @@ msgstr ""
msgid "Manager (Sales/Marketing/Customer)"
msgstr ""
#. Label of the manifest_file (Code) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "Manifest File"
msgstr ""
#: frontend/src/components/Quiz.vue:94
msgid "Mark"
msgstr ""
@@ -2803,7 +2840,7 @@ msgid "Maximun Attempts"
msgstr ""
#. Label of the medium (Select) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:185
#: frontend/src/pages/BatchForm.vue:197
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:309
msgid "Medium"
@@ -2951,7 +2988,7 @@ msgid "Mentors"
msgstr ""
#. Label of the meta_image (Attach Image) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:36 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:40 lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:362
msgid "Meta Image"
msgstr ""
@@ -2987,11 +3024,11 @@ msgstr ""
msgid "Modified By"
msgstr "Modifié Par"
#: lms/lms/api.py:191
#: lms/lms/api.py:197
msgid "Module Name is incorrect or does not exist."
msgstr ""
#: lms/lms/api.py:187
#: lms/lms/api.py:193
msgid "Module is incorrect."
msgstr ""
@@ -3037,7 +3074,7 @@ msgstr ""
msgid "New Course"
msgstr ""
#: frontend/src/pages/Jobs.vue:24
#: frontend/src/pages/Jobs.vue:39
msgid "New Job"
msgstr ""
@@ -3124,11 +3161,11 @@ msgstr ""
msgid "No introduction"
msgstr ""
#: frontend/src/pages/Jobs.vue:45
#: frontend/src/pages/Jobs.vue:60
msgid "No jobs posted"
msgstr ""
#: frontend/src/components/LiveClass.vue:60
#: frontend/src/components/LiveClass.vue:61
msgid "No live classes scheduled"
msgstr ""
@@ -3184,7 +3221,7 @@ msgstr "Non disponible pour l'aperçu"
msgid "Not Graded"
msgstr ""
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:131
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:135
msgid "Not Permitted"
msgstr "Non Autorisé"
@@ -3208,7 +3245,7 @@ msgstr ""
msgid "Notify me when available"
msgstr "M'avertir si disponible"
#: frontend/src/pages/BatchForm.vue:162
#: frontend/src/pages/BatchForm.vue:174
msgid "Number of seats available"
msgstr ""
@@ -3248,6 +3285,10 @@ msgstr ""
msgid "Only image file is allowed."
msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:223
msgid "Only zip files are allowed"
msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Job Opportunity'
#. Option for the 'Membership' (Select) field in DocType 'LMS Batch Old'
#: frontend/src/pages/QuizForm.vue:17
@@ -3352,7 +3393,7 @@ msgid "Pages"
msgstr ""
#. Label of the paid_batch (Check) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:205
#: frontend/src/pages/BatchForm.vue:217
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:373
msgid "Paid Batch"
@@ -3369,6 +3410,7 @@ msgid "Pan Number"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:116
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Part Time"
msgstr ""
@@ -3407,7 +3449,7 @@ msgstr ""
#. Label of the payment (Link) field in DocType 'Batch Student'
#. Label of the payment (Link) field in DocType 'LMS Enrollment'
#: frontend/src/pages/BatchForm.vue:199
#: frontend/src/pages/BatchForm.vue:211
#: lms/lms/doctype/batch_student/batch_student.json
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
msgid "Payment"
@@ -3523,6 +3565,10 @@ msgstr ""
msgid "Please enable Zoom Settings to use this feature."
msgstr ""
#: frontend/src/components/CourseOutline.vue:312
msgid "Please enroll for this course to view this lesson"
msgstr ""
#: frontend/src/components/Quiz.vue:13
msgid "Please ensure that you complete all the questions in {0} minutes."
msgstr ""
@@ -3556,11 +3602,11 @@ msgstr ""
msgid "Please login to access the quiz."
msgstr ""
#: frontend/src/components/NoPermission.vue:25 frontend/src/pages/Batch.vue:142
#: frontend/src/components/NoPermission.vue:25 frontend/src/pages/Batch.vue:146
msgid "Please login to access this page."
msgstr ""
#: lms/lms/api.py:183
#: lms/lms/api.py:189
msgid "Please login to continue with payment."
msgstr ""
@@ -3573,6 +3619,10 @@ msgstr "Veuillez bien vous préparer et être à temps pour les évaluations."
msgid "Please take appropriate action at {0}"
msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:172
msgid "Please upload a SCORM package"
msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:95
msgid "Please upload the assignment file."
msgstr ""
@@ -3730,7 +3780,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Batch'
#. Label of the published (Check) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:108
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:171
#: frontend/src/pages/BatchForm.vue:28 frontend/src/pages/CourseForm.vue:171
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:266
@@ -3941,11 +3991,11 @@ msgstr "Rejeté"
msgid "Related Courses"
msgstr ""
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/CourseForm.vue:99
#: frontend/src/pages/BatchForm.vue:73 frontend/src/pages/CourseForm.vue:99
msgid "Remove"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:26
#: frontend/src/components/Modals/AnnouncementModal.vue:27
msgid "Reply To"
msgstr ""
@@ -4039,6 +4089,21 @@ msgstr ""
msgid "Run"
msgstr ""
#. Label of the scorm_section (Section Break) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "SCORM"
msgstr ""
#. Label of the scorm_package (Link) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "SCORM Package"
msgstr ""
#. Label of the scorm_package_path (Code) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "SCORM Package Path"
msgstr ""
#. Option for the 'Day' (Select) field in DocType 'Evaluator Schedule'
#. Option for the 'Day' (Select) field in DocType 'LMS Certificate Request'
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
@@ -4100,7 +4165,7 @@ msgid "Search for an icon"
msgstr ""
#. Label of the seat_count (Int) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:159
#: frontend/src/pages/BatchForm.vue:171
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:327
msgid "Seat Count"
@@ -4144,7 +4209,7 @@ msgid "Set your Password"
msgstr ""
#: frontend/src/components/Modals/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:153 frontend/src/pages/CourseForm.vue:161
#: frontend/src/pages/BatchForm.vue:165 frontend/src/pages/CourseForm.vue:161
#: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:78
msgid "Settings"
msgstr "Paramètres"
@@ -4159,7 +4224,7 @@ msgstr ""
msgid "Short Introduction"
msgstr ""
#: frontend/src/pages/BatchForm.vue:94
#: frontend/src/pages/BatchForm.vue:99
msgid "Short description of the batch"
msgstr ""
@@ -4323,7 +4388,7 @@ msgstr "Démarrer"
#. Label of the start_date (Date) field in DocType 'Education Detail'
#. Label of the start_date (Date) field in DocType 'LMS Batch'
#. Label of the start_date (Date) field in DocType 'LMS Batch Old'
#: frontend/src/pages/BatchForm.vue:117
#: frontend/src/pages/BatchForm.vue:124
#: lms/lms/doctype/education_detail/education_detail.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -4332,7 +4397,7 @@ msgid "Start Date"
msgstr "Date de Début"
#: frontend/src/components/CourseCardOverlay.vue:63
#: frontend/src/pages/Lesson.vue:21
#: frontend/src/pages/Lesson.vue:21 frontend/src/pages/SCORMChapter.vue:28
#: lms/templates/emails/lms_course_interest.html:9
msgid "Start Learning"
msgstr ""
@@ -4344,7 +4409,7 @@ msgstr ""
#. Label of the start_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the start_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the start_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:131
#: frontend/src/pages/BatchForm.vue:140
#: frontend/src/pages/ProfileEvaluator.vue:15
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -4361,19 +4426,11 @@ msgstr "Heure de Début"
msgid "Start Time cannot be greater than End Time"
msgstr ""
#: lms/lms/web_form/add_a_new_batch/add_a_new_batch.js:43
msgid "Start Time should be less than End Time."
msgstr ""
#. Label of the start_url (Small Text) field in DocType 'LMS Live Class'
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Start URL"
msgstr ""
#: lms/lms/web_form/add_a_new_batch/add_a_new_batch.js:30
msgid "Start date cannot be a past date."
msgstr ""
#. Option for the 'Company Type' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Startup Organization"
@@ -4516,8 +4573,10 @@ msgstr ""
#: frontend/src/components/BatchOverlay.vue:135
#: frontend/src/components/BatchStudents.vue:157
#: frontend/src/components/CourseCardOverlay.vue:161
#: frontend/src/components/Modals/AnnouncementModal.vue:98
#: frontend/src/components/Modals/AnnouncementModal.vue:99
#: frontend/src/components/Modals/AssessmentModal.vue:73
#: frontend/src/components/Modals/ChapterModal.vue:148
#: frontend/src/components/Modals/ChapterModal.vue:193
#: frontend/src/components/Modals/Event.vue:255
#: frontend/src/components/Modals/Event.vue:310
#: frontend/src/components/Modals/Question.vue:261
@@ -4713,10 +4772,14 @@ msgstr ""
msgid "This course has:"
msgstr ""
#: lms/lms/utils.py:1570
#: lms/lms/utils.py:1582
msgid "This course is free."
msgstr ""
#: frontend/src/pages/SCORMChapter.vue:198
msgid "This is a chapter in the course {0}"
msgstr ""
#: lms/lms/widgets/CourseOutline.html:62
msgid "This lesson is not available for preview. As you are the Instructor of the course only you can see it."
msgstr "Cette leçon n'est pas disponible en prévisualisation. Comme vous êtes l'instructeur du cours, vous seul pouvez la voir."
@@ -4742,7 +4805,7 @@ msgstr "Jeudi"
#. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48
#: frontend/src/components/Modals/LiveClassModal.vue:36
#: frontend/src/components/Modals/LiveClassModal.vue:37
#: frontend/src/components/Quiz.vue:44
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Time"
@@ -4753,7 +4816,7 @@ msgstr "Temps"
msgid "Time Preference"
msgstr ""
#: frontend/src/components/Modals/LiveClassModal.vue:28
#: frontend/src/components/Modals/LiveClassModal.vue:29
msgid "Time must be in 24 hour format (HH:mm). Example 11:30 or 22:00"
msgstr ""
@@ -4781,8 +4844,8 @@ msgstr ""
#. Label of the timezone (Data) field in DocType 'LMS Batch'
#. Label of the timezone (Data) field in DocType 'LMS Certificate Request'
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/LiveClassModal.vue:44
#: frontend/src/pages/BatchForm.vue:143
#: frontend/src/components/Modals/LiveClassModal.vue:46
#: frontend/src/pages/BatchForm.vue:154
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -4811,7 +4874,7 @@ msgstr ""
#. Label of the title (Data) field in DocType 'Work Experience'
#: frontend/src/components/Modals/DiscussionModal.vue:18
#: frontend/src/components/Modals/LiveClassModal.vue:23
#: frontend/src/pages/BatchForm.vue:18 frontend/src/pages/CourseForm.vue:32
#: frontend/src/pages/BatchForm.vue:20 frontend/src/pages/CourseForm.vue:32
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/QuizForm.vue:48
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
@@ -4833,6 +4896,10 @@ msgstr ""
msgid "Title"
msgstr "Titre"
#: frontend/src/components/Modals/ChapterModal.vue:169
msgid "Title is required"
msgstr ""
#. Label of the unavailable_to (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:98
#: lms/lms/doctype/course_evaluator/course_evaluator.json
@@ -4844,11 +4911,7 @@ msgstr "À"
msgid "To Date"
msgstr "Jusqu'au"
#: lms/lms/web_form/profile/profile.js:19
msgid "To Date is mandatory in Work Experience."
msgstr ""
#: lms/lms/utils.py:1581
#: lms/lms/utils.py:1593
msgid "To join this batch, please contact the Administrator."
msgstr ""
@@ -4902,7 +4965,7 @@ msgstr ""
#. Label of the type (Select) field in DocType 'LMS Quiz Question'
#: frontend/src/components/Modals/AssessmentModal.vue:22
#: frontend/src/components/Modals/Question.vue:54
#: frontend/src/pages/JobCreation.vue:28
#: frontend/src/pages/JobCreation.vue:28 frontend/src/pages/Jobs.vue:16
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/lms_assignment/lms_assignment.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
@@ -4970,7 +5033,7 @@ msgstr ""
msgid "Upcoming"
msgstr ""
#: frontend/src/pages/Batch.vue:154
#: frontend/src/pages/Batch.vue:158
msgid "Upcoming Batches"
msgstr ""
@@ -4989,7 +5052,7 @@ msgstr "Mettre à Jour"
msgid "Update Password"
msgstr ""
#: frontend/src/pages/BatchForm.vue:51 frontend/src/pages/CourseForm.vue:80
#: frontend/src/pages/BatchForm.vue:55 frontend/src/pages/CourseForm.vue:80
msgid "Upload"
msgstr "Charger"
@@ -5172,15 +5235,15 @@ msgstr ""
msgid "You already have an evaluation on {0} at {1} for the course {2}."
msgstr ""
#: lms/lms/api.py:207
#: lms/lms/api.py:213
msgid "You are already enrolled for this batch."
msgstr ""
#: lms/lms/api.py:199
#: lms/lms/api.py:205
msgid "You are already enrolled for this course."
msgstr ""
#: frontend/src/pages/Batch.vue:136
#: frontend/src/pages/Batch.vue:140
msgid "You are not a member of this batch. Please checkout our upcoming batches."
msgstr ""
@@ -5188,6 +5251,14 @@ msgstr ""
msgid "You are not a mentor of the course {0}"
msgstr ""
#: frontend/src/components/CourseOutline.vue:311
msgid "You are not enrolled"
msgstr ""
#: frontend/src/pages/SCORMChapter.vue:22
msgid "You are not enrolled in this course. Please enroll to access this lesson."
msgstr ""
#: frontend/src/pages/Courses.vue:134
msgid "You can add chapters and lessons to it."
msgstr ""
@@ -5340,7 +5411,7 @@ msgstr ""
msgid "cancel your application"
msgstr ""
#: frontend/src/pages/Lesson.vue:170
#: frontend/src/pages/Lesson.vue:174
msgid "completed"
msgstr "complété"
@@ -5388,7 +5459,7 @@ msgstr ""
msgid "you can"
msgstr ""
#: lms/lms/api.py:740 lms/lms/api.py:748
#: lms/lms/api.py:747 lms/lms/api.py:755
msgid "{0} Settings not found"
msgstr ""

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-11-08 16:04+0000\n"
"PO-Revision-Date: 2024-11-11 15:23\n"
"POT-Creation-Date: 2024-11-15 16:04+0000\n"
"PO-Revision-Date: 2024-11-18 17:31\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Hungarian\n"
"MIME-Version: 1.0\n"
@@ -109,7 +109,7 @@ msgstr ""
msgid "Add Chapter"
msgstr ""
#: frontend/src/components/CourseOutline.vue:102
#: frontend/src/components/CourseOutline.vue:124
msgid "Add Lesson"
msgstr ""
@@ -217,7 +217,7 @@ msgstr ""
msgid "Allow accessing future dates"
msgstr ""
#: frontend/src/pages/BatchForm.vue:29
#: frontend/src/pages/BatchForm.vue:33
msgid "Allow self enrollment"
msgstr ""
@@ -228,7 +228,7 @@ msgstr "Már regisztrált"
#. Label of the amount (Currency) field in DocType 'Web Form'
#. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the amount (Currency) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:209 lms/fixtures/custom_field.json
#: frontend/src/pages/BatchForm.vue:221 lms/fixtures/custom_field.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/public/js/common_functions.js:379
@@ -258,11 +258,11 @@ msgstr ""
msgid "Amount with GST"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:32
#: frontend/src/components/Modals/AnnouncementModal.vue:33
msgid "Announcement"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:99
#: frontend/src/components/Modals/AnnouncementModal.vue:100
msgid "Announcement has been sent successfully"
msgstr ""
@@ -280,7 +280,7 @@ msgstr ""
msgid "Appears on the course card in the course list"
msgstr ""
#: frontend/src/pages/BatchForm.vue:55 frontend/src/pages/BatchForm.vue:73
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/BatchForm.vue:77
msgid "Appears when the batch URL is shared on any online platform"
msgstr ""
@@ -319,10 +319,6 @@ msgstr ""
msgid "Apps"
msgstr ""
#: frontend/src/components/CourseOutline.vue:209
msgid "Are you sure you want to delete this lesson?"
msgstr ""
#. Label of the user_category (Check) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Ask User Category during Signup"
@@ -420,7 +416,7 @@ msgid "Auto Assign"
msgstr ""
#. Label of the auto_recording (Select) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/LiveClassModal.vue:66
#: frontend/src/components/Modals/LiveClassModal.vue:71
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Auto Recording"
msgstr ""
@@ -482,7 +478,8 @@ msgid "Batch Description"
msgstr ""
#. Label of the batch_details (Text Editor) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:98 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:104
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:349
#: lms/templates/emails/batch_confirmation.html:30
msgid "Batch Details"
@@ -547,10 +544,6 @@ msgstr ""
msgid "Batch end date cannot be before the batch start date"
msgstr ""
#: lms/lms/web_form/add_a_new_batch/add_a_new_batch.js:6
msgid "Batch {0} has been successfully created!"
msgstr ""
#. Group in LMS Course's connections
#. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue:8 lms/lms/doctype/lms_course/lms_course.json
@@ -581,7 +574,7 @@ msgstr ""
msgid "Billing Name"
msgstr ""
#: frontend/src/components/Modals/EditProfile.vue:72
#: frontend/src/components/Modals/EditProfile.vue:75
msgid "Bio"
msgstr ""
@@ -649,7 +642,7 @@ msgstr ""
#. Label of the category (Link) field in DocType 'LMS Batch'
#. Label of the category (Data) field in DocType 'LMS Category'
#. Label of the category (Link) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/BatchForm.vue:202 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/JobDetail.vue:102
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -734,6 +727,14 @@ msgstr ""
msgid "Chapter Reference"
msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:149
msgid "Chapter added successfully"
msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:193
msgid "Chapter updated successfully"
msgstr ""
#. Label of the chapters (Table) field in DocType 'LMS Course'
#. Group in LMS Course's connections
#: lms/lms/doctype/lms_course/lms_course.json
@@ -987,7 +988,7 @@ msgid "Contact the Administrator to enroll for this course."
msgstr ""
#. Label of the content (Text) field in DocType 'Course Lesson'
#: frontend/src/pages/LessonForm.vue:53
#: frontend/src/pages/LessonForm.vue:58
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Content"
msgstr "Tartalom"
@@ -997,6 +998,7 @@ msgid "Continue Learning"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:117
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Contract"
msgstr ""
@@ -1060,7 +1062,7 @@ msgstr ""
#. Label of the course (Link) field in DocType 'Related Courses'
#. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/BatchCourseModal.vue:17
#: frontend/src/components/Modals/BatchCourseModal.vue:20
#: frontend/src/components/Modals/EvaluationModal.vue:20
#: frontend/src/components/Modals/Event.vue:24
#: lms/lms/doctype/batch_course/batch_course.json
@@ -1153,6 +1155,10 @@ msgstr ""
msgid "Course Name"
msgstr ""
#: frontend/src/pages/CourseDetail.vue:74
msgid "Course Outline"
msgstr ""
#. Label of the course_price (Currency) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:219
#: lms/lms/doctype/lms_course/lms_course.json
@@ -1175,9 +1181,11 @@ msgid "Course Stats"
msgstr ""
#. Label of the title (Data) field in DocType 'Batch Course'
#. Label of the course_title (Data) field in DocType 'Course Chapter'
#. Label of the course_title (Data) field in DocType 'LMS Certificate'
#. Label of the course_title (Data) field in DocType 'LMS Certificate Request'
#: lms/lms/doctype/batch_course/batch_course.json
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
msgid "Course Title"
@@ -1257,7 +1265,7 @@ msgstr ""
#. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course'
#. Label of the currency (Link) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:226
#: frontend/src/pages/BatchForm.vue:229 frontend/src/pages/CourseForm.vue:226
#: lms/fixtures/custom_field.json lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_payment/lms_payment.json
@@ -1303,7 +1311,7 @@ msgstr "Irányítópult"
#. Label of the date (Date) field in DocType 'Scheduled Flow'
#: frontend/src/components/Modals/EvaluationModal.vue:26
#: frontend/src/components/Modals/Event.vue:40
#: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Modals/LiveClassModal.vue:55
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
@@ -1315,7 +1323,7 @@ msgstr ""
#. Label of the section_break_glxh (Section Break) field in DocType 'LMS Live
#. Class'
#: frontend/src/pages/BatchForm.vue:111
#: frontend/src/pages/BatchForm.vue:118
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Date and Time"
msgstr ""
@@ -1350,23 +1358,40 @@ msgstr ""
msgid "Degree Type"
msgstr ""
#: frontend/src/components/CourseOutline.vue:212
#: frontend/src/components/CourseOutline.vue:235
#: frontend/src/components/CourseOutline.vue:293
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:470
msgid "Delete"
msgstr ""
#: frontend/src/components/CourseOutline.vue:52
msgid "Delete Chapter"
msgstr ""
#: frontend/src/pages/CourseForm.vue:464
msgid "Delete Course"
msgstr ""
#: frontend/src/components/CourseOutline.vue:208
msgid "Delete Lesson"
#: frontend/src/components/CourseOutline.vue:287
msgid "Delete this chapter?"
msgstr ""
#: frontend/src/components/CourseOutline.vue:229
msgid "Delete this lesson?"
msgstr ""
#: frontend/src/pages/CourseForm.vue:465
msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?"
msgstr ""
#: frontend/src/components/CourseOutline.vue:288
msgid "Deleting this chapter will also delete all its lessons and permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?"
msgstr ""
#: frontend/src/components/CourseOutline.vue:230
msgid "Deleting this lesson will permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?"
msgstr ""
#. Label of the description (Text Editor) field in DocType 'Job Opportunity'
#. Label of the description (Small Text) field in DocType 'Certification'
#. Label of the description (Markdown Editor) field in DocType 'Cohort'
@@ -1379,8 +1404,8 @@ msgstr ""
#. Label of the description (Small Text) field in DocType 'LMS Exercise'
#. Label of the description (Text) field in DocType 'LMS Live Class'
#. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:73
#: frontend/src/pages/BatchForm.vue:91 frontend/src/pages/JobCreation.vue:43
#: frontend/src/components/Modals/LiveClassModal.vue:78
#: frontend/src/pages/BatchForm.vue:96 frontend/src/pages/JobCreation.vue:43
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json
@@ -1426,7 +1451,7 @@ msgid "Discard"
msgstr "Elvet"
#. Label of the show_discussions (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batch.vue:69
#: frontend/src/pages/Batch.vue:73
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Discussions"
msgstr ""
@@ -1453,7 +1478,7 @@ msgstr ""
#. Label of the duration (Data) field in DocType 'LMS Batch Timetable'
#. Label of the duration (Int) field in DocType 'LMS Live Class'
#. Label of the duration (Duration) field in DocType 'LMS Quiz'
#: frontend/src/components/Modals/LiveClassModal.vue:58
#: frontend/src/components/Modals/LiveClassModal.vue:62
#: lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -1465,7 +1490,7 @@ msgstr ""
msgid "Duration (in minutes)"
msgstr ""
#: frontend/src/components/Modals/LiveClassModal.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:58
msgid "Duration of the live class in minutes"
msgstr ""
@@ -1487,7 +1512,7 @@ msgstr ""
msgid "Edit"
msgstr ""
#: frontend/src/components/CourseOutline.vue:106
#: frontend/src/components/CourseOutline.vue:45
#: frontend/src/components/Modals/ChapterModal.vue:5
msgid "Edit Chapter"
msgstr ""
@@ -1564,7 +1589,7 @@ msgstr "Engedélyezve"
#. Label of the end_date (Date) field in DocType 'Cohort'
#. Label of the end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:123 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/BatchForm.vue:131 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:282
msgid "End Date"
@@ -1582,7 +1607,7 @@ msgstr ""
#. Label of the end_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the end_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the end_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:137
#: frontend/src/pages/BatchForm.vue:147
#: frontend/src/pages/ProfileEvaluator.vue:18
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1618,7 +1643,7 @@ msgstr ""
msgid "Enrollment Count"
msgstr ""
#: lms/lms/utils.py:1690
#: lms/lms/utils.py:1702
msgid "Enrollment Failed"
msgstr ""
@@ -1646,7 +1671,10 @@ msgstr ""
msgid "Enter the correct answer"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:104
#: frontend/src/components/Modals/AnnouncementModal.vue:105
#: frontend/src/components/Modals/ChapterModal.vue:154
#: frontend/src/components/Modals/ChapterModal.vue:161
#: frontend/src/components/Modals/ChapterModal.vue:197
#: frontend/src/components/Modals/Question.vue:246
#: frontend/src/components/Modals/Question.vue:266
#: frontend/src/components/Modals/Question.vue:323
@@ -1669,7 +1697,7 @@ msgid "Evaluation Details"
msgstr ""
#. Label of the evaluation_end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:166
#: frontend/src/pages/BatchForm.vue:178
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:333
msgid "Evaluation End Date"
@@ -1694,7 +1722,7 @@ msgstr ""
#. Label of the evaluator (Link) field in DocType 'LMS Certificate'
#. Label of the evaluator (Link) field in DocType 'LMS Certificate Evaluation'
#. Label of the evaluator (Link) field in DocType 'LMS Certificate Request'
#: frontend/src/components/Modals/BatchCourseModal.vue:21
#: frontend/src/components/Modals/BatchCourseModal.vue:26
#: frontend/src/pages/ProfileRoles.vue:22
#: lms/lms/doctype/batch_course/batch_course.json
#: lms/lms/doctype/course_evaluator/course_evaluator.json
@@ -1733,7 +1761,7 @@ msgstr ""
msgid "Event"
msgstr "Esemény"
#: frontend/src/pages/BatchForm.vue:145
#: frontend/src/pages/BatchForm.vue:156
msgid "Example: IST (+5:30)"
msgstr ""
@@ -1860,6 +1888,7 @@ msgid "Free"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:118
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Freelance"
msgstr "Szabadúszó"
@@ -1899,6 +1928,7 @@ msgid "Full Name"
msgstr "Teljes név"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:115
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Full Time"
msgstr "Teljes munkaidőben"
@@ -1981,11 +2011,6 @@ msgstr ""
msgid "Hello"
msgstr ""
#. Label of the help_section (Section Break) field in DocType 'Course Lesson'
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Help"
msgstr ""
#: lms/templates/courses_created.html:15
msgid "Help others learn something new by creating a course."
msgstr ""
@@ -2164,9 +2189,7 @@ msgstr ""
msgid "Index"
msgstr ""
#. Label of the index_label (Data) field in DocType 'Course Lesson'
#. Label of the index_label (Data) field in DocType 'LMS Exercise'
#: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_exercise/lms_exercise.json
msgid "Index Label"
msgstr ""
@@ -2203,14 +2226,14 @@ msgstr ""
#. Label of the instructor_notes (Markdown Editor) field in DocType 'Course
#. Lesson'
#: frontend/src/pages/Lesson.vue:125 frontend/src/pages/LessonForm.vue:33
#: frontend/src/pages/Lesson.vue:128 frontend/src/pages/LessonForm.vue:38
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Instructor Notes"
msgstr ""
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch'
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:85 frontend/src/pages/CourseForm.vue:154
#: frontend/src/pages/BatchForm.vue:89 frontend/src/pages/CourseForm.vue:154
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Instructors"
@@ -2238,10 +2261,6 @@ msgstr ""
msgid "Invalid Quiz ID"
msgstr ""
#: lms/lms/web_form/add_a_new_batch/add_a_new_batch.js:38
msgid "Invalid Start or End Time."
msgstr ""
#. Label of the invite_code (Data) field in DocType 'Cohort Subgroup'
#. Label of the invite_code (Data) field in DocType 'Invite Request'
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
@@ -2281,6 +2300,14 @@ msgstr ""
msgid "Is Onboarding Complete"
msgstr ""
#. Label of the is_scorm_package (Check) field in DocType 'Course Chapter'
#. Label of the is_scorm_package (Check) field in DocType 'Course Lesson'
#: frontend/src/components/Modals/ChapterModal.vue:26
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Is SCORM Package"
msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/Event.vue:121
@@ -2355,7 +2382,7 @@ msgstr "Beosztás"
msgid "Jobs"
msgstr ""
#: frontend/src/components/LiveClass.vue:54
#: frontend/src/components/LiveClass.vue:55
#: lms/templates/upcoming_evals.html:15
msgid "Join"
msgstr ""
@@ -2593,6 +2620,11 @@ msgstr "Keresztnév"
msgid "Latest Submission"
msgstr ""
#. Label of the launch_file (Code) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "Launch File"
msgstr ""
#. Label of the lesson (Link) field in DocType 'Exercise Latest Submission'
#. Label of the lesson (Link) field in DocType 'Exercise Submission'
#. Label of the lesson (Link) field in DocType 'Lesson Reference'
@@ -2722,7 +2754,7 @@ msgid "Location Preference"
msgstr ""
#: frontend/src/components/NoPermission.vue:28
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:163
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:167
#: frontend/src/pages/Lesson.vue:24
msgid "Login"
msgstr "Bejelentkezés"
@@ -2759,6 +2791,11 @@ msgstr ""
msgid "Manager (Sales/Marketing/Customer)"
msgstr ""
#. Label of the manifest_file (Code) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "Manifest File"
msgstr ""
#: frontend/src/components/Quiz.vue:94
msgid "Mark"
msgstr ""
@@ -2803,7 +2840,7 @@ msgid "Maximun Attempts"
msgstr ""
#. Label of the medium (Select) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:185
#: frontend/src/pages/BatchForm.vue:197
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:309
msgid "Medium"
@@ -2951,7 +2988,7 @@ msgid "Mentors"
msgstr ""
#. Label of the meta_image (Attach Image) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:36 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:40 lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:362
msgid "Meta Image"
msgstr "Meta kép"
@@ -2987,11 +3024,11 @@ msgstr ""
msgid "Modified By"
msgstr "Módosította"
#: lms/lms/api.py:191
#: lms/lms/api.py:197
msgid "Module Name is incorrect or does not exist."
msgstr ""
#: lms/lms/api.py:187
#: lms/lms/api.py:193
msgid "Module is incorrect."
msgstr ""
@@ -3037,7 +3074,7 @@ msgstr ""
msgid "New Course"
msgstr ""
#: frontend/src/pages/Jobs.vue:24
#: frontend/src/pages/Jobs.vue:39
msgid "New Job"
msgstr ""
@@ -3124,11 +3161,11 @@ msgstr ""
msgid "No introduction"
msgstr ""
#: frontend/src/pages/Jobs.vue:45
#: frontend/src/pages/Jobs.vue:60
msgid "No jobs posted"
msgstr ""
#: frontend/src/components/LiveClass.vue:60
#: frontend/src/components/LiveClass.vue:61
msgid "No live classes scheduled"
msgstr ""
@@ -3184,7 +3221,7 @@ msgstr ""
msgid "Not Graded"
msgstr ""
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:131
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:135
msgid "Not Permitted"
msgstr ""
@@ -3208,7 +3245,7 @@ msgstr "Értesítések"
msgid "Notify me when available"
msgstr ""
#: frontend/src/pages/BatchForm.vue:162
#: frontend/src/pages/BatchForm.vue:174
msgid "Number of seats available"
msgstr ""
@@ -3248,6 +3285,10 @@ msgstr ""
msgid "Only image file is allowed."
msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:223
msgid "Only zip files are allowed"
msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Job Opportunity'
#. Option for the 'Membership' (Select) field in DocType 'LMS Batch Old'
#: frontend/src/pages/QuizForm.vue:17
@@ -3352,7 +3393,7 @@ msgid "Pages"
msgstr ""
#. Label of the paid_batch (Check) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:205
#: frontend/src/pages/BatchForm.vue:217
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:373
msgid "Paid Batch"
@@ -3369,6 +3410,7 @@ msgid "Pan Number"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:116
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Part Time"
msgstr "Részmunkaidő"
@@ -3407,7 +3449,7 @@ msgstr ""
#. Label of the payment (Link) field in DocType 'Batch Student'
#. Label of the payment (Link) field in DocType 'LMS Enrollment'
#: frontend/src/pages/BatchForm.vue:199
#: frontend/src/pages/BatchForm.vue:211
#: lms/lms/doctype/batch_student/batch_student.json
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
msgid "Payment"
@@ -3523,6 +3565,10 @@ msgstr ""
msgid "Please enable Zoom Settings to use this feature."
msgstr ""
#: frontend/src/components/CourseOutline.vue:312
msgid "Please enroll for this course to view this lesson"
msgstr ""
#: frontend/src/components/Quiz.vue:13
msgid "Please ensure that you complete all the questions in {0} minutes."
msgstr ""
@@ -3556,11 +3602,11 @@ msgstr ""
msgid "Please login to access the quiz."
msgstr ""
#: frontend/src/components/NoPermission.vue:25 frontend/src/pages/Batch.vue:142
#: frontend/src/components/NoPermission.vue:25 frontend/src/pages/Batch.vue:146
msgid "Please login to access this page."
msgstr ""
#: lms/lms/api.py:183
#: lms/lms/api.py:189
msgid "Please login to continue with payment."
msgstr ""
@@ -3573,6 +3619,10 @@ msgstr ""
msgid "Please take appropriate action at {0}"
msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:172
msgid "Please upload a SCORM package"
msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:95
msgid "Please upload the assignment file."
msgstr ""
@@ -3730,7 +3780,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Batch'
#. Label of the published (Check) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:108
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:171
#: frontend/src/pages/BatchForm.vue:28 frontend/src/pages/CourseForm.vue:171
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:266
@@ -3941,11 +3991,11 @@ msgstr "Elutasítva"
msgid "Related Courses"
msgstr ""
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/CourseForm.vue:99
#: frontend/src/pages/BatchForm.vue:73 frontend/src/pages/CourseForm.vue:99
msgid "Remove"
msgstr "eltávolítás"
#: frontend/src/components/Modals/AnnouncementModal.vue:26
#: frontend/src/components/Modals/AnnouncementModal.vue:27
msgid "Reply To"
msgstr ""
@@ -4039,6 +4089,21 @@ msgstr ""
msgid "Run"
msgstr ""
#. Label of the scorm_section (Section Break) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "SCORM"
msgstr ""
#. Label of the scorm_package (Link) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "SCORM Package"
msgstr ""
#. Label of the scorm_package_path (Code) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "SCORM Package Path"
msgstr ""
#. Option for the 'Day' (Select) field in DocType 'Evaluator Schedule'
#. Option for the 'Day' (Select) field in DocType 'LMS Certificate Request'
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
@@ -4100,7 +4165,7 @@ msgid "Search for an icon"
msgstr ""
#. Label of the seat_count (Int) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:159
#: frontend/src/pages/BatchForm.vue:171
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:327
msgid "Seat Count"
@@ -4144,7 +4209,7 @@ msgid "Set your Password"
msgstr ""
#: frontend/src/components/Modals/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:153 frontend/src/pages/CourseForm.vue:161
#: frontend/src/pages/BatchForm.vue:165 frontend/src/pages/CourseForm.vue:161
#: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:78
msgid "Settings"
msgstr ""
@@ -4159,7 +4224,7 @@ msgstr ""
msgid "Short Introduction"
msgstr ""
#: frontend/src/pages/BatchForm.vue:94
#: frontend/src/pages/BatchForm.vue:99
msgid "Short description of the batch"
msgstr ""
@@ -4323,7 +4388,7 @@ msgstr ""
#. Label of the start_date (Date) field in DocType 'Education Detail'
#. Label of the start_date (Date) field in DocType 'LMS Batch'
#. Label of the start_date (Date) field in DocType 'LMS Batch Old'
#: frontend/src/pages/BatchForm.vue:117
#: frontend/src/pages/BatchForm.vue:124
#: lms/lms/doctype/education_detail/education_detail.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -4332,7 +4397,7 @@ msgid "Start Date"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:63
#: frontend/src/pages/Lesson.vue:21
#: frontend/src/pages/Lesson.vue:21 frontend/src/pages/SCORMChapter.vue:28
#: lms/templates/emails/lms_course_interest.html:9
msgid "Start Learning"
msgstr ""
@@ -4344,7 +4409,7 @@ msgstr ""
#. Label of the start_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the start_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the start_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:131
#: frontend/src/pages/BatchForm.vue:140
#: frontend/src/pages/ProfileEvaluator.vue:15
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -4361,19 +4426,11 @@ msgstr "Kezdés ideje"
msgid "Start Time cannot be greater than End Time"
msgstr ""
#: lms/lms/web_form/add_a_new_batch/add_a_new_batch.js:43
msgid "Start Time should be less than End Time."
msgstr ""
#. Label of the start_url (Small Text) field in DocType 'LMS Live Class'
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Start URL"
msgstr ""
#: lms/lms/web_form/add_a_new_batch/add_a_new_batch.js:30
msgid "Start date cannot be a past date."
msgstr ""
#. Option for the 'Company Type' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Startup Organization"
@@ -4516,8 +4573,10 @@ msgstr ""
#: frontend/src/components/BatchOverlay.vue:135
#: frontend/src/components/BatchStudents.vue:157
#: frontend/src/components/CourseCardOverlay.vue:161
#: frontend/src/components/Modals/AnnouncementModal.vue:98
#: frontend/src/components/Modals/AnnouncementModal.vue:99
#: frontend/src/components/Modals/AssessmentModal.vue:73
#: frontend/src/components/Modals/ChapterModal.vue:148
#: frontend/src/components/Modals/ChapterModal.vue:193
#: frontend/src/components/Modals/Event.vue:255
#: frontend/src/components/Modals/Event.vue:310
#: frontend/src/components/Modals/Question.vue:261
@@ -4713,10 +4772,14 @@ msgstr ""
msgid "This course has:"
msgstr ""
#: lms/lms/utils.py:1570
#: lms/lms/utils.py:1582
msgid "This course is free."
msgstr ""
#: frontend/src/pages/SCORMChapter.vue:198
msgid "This is a chapter in the course {0}"
msgstr ""
#: lms/lms/widgets/CourseOutline.html:62
msgid "This lesson is not available for preview. As you are the Instructor of the course only you can see it."
msgstr ""
@@ -4742,7 +4805,7 @@ msgstr "Csütörtök"
#. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48
#: frontend/src/components/Modals/LiveClassModal.vue:36
#: frontend/src/components/Modals/LiveClassModal.vue:37
#: frontend/src/components/Quiz.vue:44
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Time"
@@ -4753,7 +4816,7 @@ msgstr "Idő"
msgid "Time Preference"
msgstr ""
#: frontend/src/components/Modals/LiveClassModal.vue:28
#: frontend/src/components/Modals/LiveClassModal.vue:29
msgid "Time must be in 24 hour format (HH:mm). Example 11:30 or 22:00"
msgstr ""
@@ -4781,8 +4844,8 @@ msgstr ""
#. Label of the timezone (Data) field in DocType 'LMS Batch'
#. Label of the timezone (Data) field in DocType 'LMS Certificate Request'
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/LiveClassModal.vue:44
#: frontend/src/pages/BatchForm.vue:143
#: frontend/src/components/Modals/LiveClassModal.vue:46
#: frontend/src/pages/BatchForm.vue:154
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -4811,7 +4874,7 @@ msgstr ""
#. Label of the title (Data) field in DocType 'Work Experience'
#: frontend/src/components/Modals/DiscussionModal.vue:18
#: frontend/src/components/Modals/LiveClassModal.vue:23
#: frontend/src/pages/BatchForm.vue:18 frontend/src/pages/CourseForm.vue:32
#: frontend/src/pages/BatchForm.vue:20 frontend/src/pages/CourseForm.vue:32
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/QuizForm.vue:48
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
@@ -4833,6 +4896,10 @@ msgstr ""
msgid "Title"
msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:169
msgid "Title is required"
msgstr ""
#. Label of the unavailable_to (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:98
#: lms/lms/doctype/course_evaluator/course_evaluator.json
@@ -4844,11 +4911,7 @@ msgstr ""
msgid "To Date"
msgstr ""
#: lms/lms/web_form/profile/profile.js:19
msgid "To Date is mandatory in Work Experience."
msgstr ""
#: lms/lms/utils.py:1581
#: lms/lms/utils.py:1593
msgid "To join this batch, please contact the Administrator."
msgstr ""
@@ -4902,7 +4965,7 @@ msgstr ""
#. Label of the type (Select) field in DocType 'LMS Quiz Question'
#: frontend/src/components/Modals/AssessmentModal.vue:22
#: frontend/src/components/Modals/Question.vue:54
#: frontend/src/pages/JobCreation.vue:28
#: frontend/src/pages/JobCreation.vue:28 frontend/src/pages/Jobs.vue:16
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/lms_assignment/lms_assignment.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
@@ -4970,7 +5033,7 @@ msgstr ""
msgid "Upcoming"
msgstr ""
#: frontend/src/pages/Batch.vue:154
#: frontend/src/pages/Batch.vue:158
msgid "Upcoming Batches"
msgstr ""
@@ -4989,7 +5052,7 @@ msgstr ""
msgid "Update Password"
msgstr ""
#: frontend/src/pages/BatchForm.vue:51 frontend/src/pages/CourseForm.vue:80
#: frontend/src/pages/BatchForm.vue:55 frontend/src/pages/CourseForm.vue:80
msgid "Upload"
msgstr "Feltöltés"
@@ -5172,15 +5235,15 @@ msgstr ""
msgid "You already have an evaluation on {0} at {1} for the course {2}."
msgstr ""
#: lms/lms/api.py:207
#: lms/lms/api.py:213
msgid "You are already enrolled for this batch."
msgstr ""
#: lms/lms/api.py:199
#: lms/lms/api.py:205
msgid "You are already enrolled for this course."
msgstr ""
#: frontend/src/pages/Batch.vue:136
#: frontend/src/pages/Batch.vue:140
msgid "You are not a member of this batch. Please checkout our upcoming batches."
msgstr ""
@@ -5188,6 +5251,14 @@ msgstr ""
msgid "You are not a mentor of the course {0}"
msgstr ""
#: frontend/src/components/CourseOutline.vue:311
msgid "You are not enrolled"
msgstr ""
#: frontend/src/pages/SCORMChapter.vue:22
msgid "You are not enrolled in this course. Please enroll to access this lesson."
msgstr ""
#: frontend/src/pages/Courses.vue:134
msgid "You can add chapters and lessons to it."
msgstr ""
@@ -5340,7 +5411,7 @@ msgstr ""
msgid "cancel your application"
msgstr ""
#: frontend/src/pages/Lesson.vue:170
#: frontend/src/pages/Lesson.vue:174
msgid "completed"
msgstr "befejezve"
@@ -5388,7 +5459,7 @@ msgstr ""
msgid "you can"
msgstr ""
#: lms/lms/api.py:740 lms/lms/api.py:748
#: lms/lms/api.py:747 lms/lms/api.py:755
msgid "{0} Settings not found"
msgstr ""

View File

@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Frappe LMS VERSION\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-11-08 16:04+0000\n"
"PO-Revision-Date: 2024-11-08 16:04+0000\n"
"POT-Creation-Date: 2024-11-15 16:04+0000\n"
"PO-Revision-Date: 2024-11-15 16:04+0000\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: jannat@frappe.io\n"
"MIME-Version: 1.0\n"
@@ -107,7 +107,7 @@ msgstr ""
msgid "Add Chapter"
msgstr ""
#: frontend/src/components/CourseOutline.vue:102
#: frontend/src/components/CourseOutline.vue:124
msgid "Add Lesson"
msgstr ""
@@ -215,7 +215,7 @@ msgstr ""
msgid "Allow accessing future dates"
msgstr ""
#: frontend/src/pages/BatchForm.vue:29
#: frontend/src/pages/BatchForm.vue:33
msgid "Allow self enrollment"
msgstr ""
@@ -226,7 +226,7 @@ msgstr ""
#. Label of the amount (Currency) field in DocType 'Web Form'
#. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the amount (Currency) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:209 lms/fixtures/custom_field.json
#: frontend/src/pages/BatchForm.vue:221 lms/fixtures/custom_field.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/public/js/common_functions.js:379
@@ -256,11 +256,11 @@ msgstr ""
msgid "Amount with GST"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:32
#: frontend/src/components/Modals/AnnouncementModal.vue:33
msgid "Announcement"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:99
#: frontend/src/components/Modals/AnnouncementModal.vue:100
msgid "Announcement has been sent successfully"
msgstr ""
@@ -278,7 +278,7 @@ msgstr ""
msgid "Appears on the course card in the course list"
msgstr ""
#: frontend/src/pages/BatchForm.vue:55 frontend/src/pages/BatchForm.vue:73
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/BatchForm.vue:77
msgid "Appears when the batch URL is shared on any online platform"
msgstr ""
@@ -317,10 +317,6 @@ msgstr ""
msgid "Apps"
msgstr ""
#: frontend/src/components/CourseOutline.vue:209
msgid "Are you sure you want to delete this lesson?"
msgstr ""
#. Label of the user_category (Check) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Ask User Category during Signup"
@@ -418,7 +414,7 @@ msgid "Auto Assign"
msgstr ""
#. Label of the auto_recording (Select) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/LiveClassModal.vue:66
#: frontend/src/components/Modals/LiveClassModal.vue:71
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Auto Recording"
msgstr ""
@@ -480,7 +476,8 @@ msgid "Batch Description"
msgstr ""
#. Label of the batch_details (Text Editor) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:98 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:104
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:349
#: lms/templates/emails/batch_confirmation.html:30
msgid "Batch Details"
@@ -545,10 +542,6 @@ msgstr ""
msgid "Batch end date cannot be before the batch start date"
msgstr ""
#: lms/lms/web_form/add_a_new_batch/add_a_new_batch.js:6
msgid "Batch {0} has been successfully created!"
msgstr ""
#. Group in LMS Course's connections
#. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue:8 lms/lms/doctype/lms_course/lms_course.json
@@ -579,7 +572,7 @@ msgstr ""
msgid "Billing Name"
msgstr ""
#: frontend/src/components/Modals/EditProfile.vue:72
#: frontend/src/components/Modals/EditProfile.vue:75
msgid "Bio"
msgstr ""
@@ -647,7 +640,7 @@ msgstr ""
#. Label of the category (Link) field in DocType 'LMS Batch'
#. Label of the category (Data) field in DocType 'LMS Category'
#. Label of the category (Link) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/BatchForm.vue:202 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/JobDetail.vue:102
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -732,6 +725,14 @@ msgstr ""
msgid "Chapter Reference"
msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:149
msgid "Chapter added successfully"
msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:193
msgid "Chapter updated successfully"
msgstr ""
#. Label of the chapters (Table) field in DocType 'LMS Course'
#. Group in LMS Course's connections
#: lms/lms/doctype/lms_course/lms_course.json
@@ -985,7 +986,7 @@ msgid "Contact the Administrator to enroll for this course."
msgstr ""
#. Label of the content (Text) field in DocType 'Course Lesson'
#: frontend/src/pages/LessonForm.vue:53
#: frontend/src/pages/LessonForm.vue:58
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Content"
msgstr ""
@@ -995,6 +996,7 @@ msgid "Continue Learning"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:117
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Contract"
msgstr ""
@@ -1058,7 +1060,7 @@ msgstr ""
#. Label of the course (Link) field in DocType 'Related Courses'
#. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/BatchCourseModal.vue:17
#: frontend/src/components/Modals/BatchCourseModal.vue:20
#: frontend/src/components/Modals/EvaluationModal.vue:20
#: frontend/src/components/Modals/Event.vue:24
#: lms/lms/doctype/batch_course/batch_course.json
@@ -1151,6 +1153,10 @@ msgstr ""
msgid "Course Name"
msgstr ""
#: frontend/src/pages/CourseDetail.vue:74
msgid "Course Outline"
msgstr ""
#. Label of the course_price (Currency) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:219
#: lms/lms/doctype/lms_course/lms_course.json
@@ -1173,9 +1179,11 @@ msgid "Course Stats"
msgstr ""
#. Label of the title (Data) field in DocType 'Batch Course'
#. Label of the course_title (Data) field in DocType 'Course Chapter'
#. Label of the course_title (Data) field in DocType 'LMS Certificate'
#. Label of the course_title (Data) field in DocType 'LMS Certificate Request'
#: lms/lms/doctype/batch_course/batch_course.json
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
msgid "Course Title"
@@ -1255,7 +1263,7 @@ msgstr ""
#. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course'
#. Label of the currency (Link) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:226
#: frontend/src/pages/BatchForm.vue:229 frontend/src/pages/CourseForm.vue:226
#: lms/fixtures/custom_field.json lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_payment/lms_payment.json
@@ -1301,7 +1309,7 @@ msgstr ""
#. Label of the date (Date) field in DocType 'Scheduled Flow'
#: frontend/src/components/Modals/EvaluationModal.vue:26
#: frontend/src/components/Modals/Event.vue:40
#: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Modals/LiveClassModal.vue:55
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
@@ -1313,7 +1321,7 @@ msgstr ""
#. Label of the section_break_glxh (Section Break) field in DocType 'LMS Live
#. Class'
#: frontend/src/pages/BatchForm.vue:111
#: frontend/src/pages/BatchForm.vue:118
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Date and Time"
msgstr ""
@@ -1348,23 +1356,40 @@ msgstr ""
msgid "Degree Type"
msgstr ""
#: frontend/src/components/CourseOutline.vue:212
#: frontend/src/components/CourseOutline.vue:235
#: frontend/src/components/CourseOutline.vue:293
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:470
msgid "Delete"
msgstr ""
#: frontend/src/components/CourseOutline.vue:52
msgid "Delete Chapter"
msgstr ""
#: frontend/src/pages/CourseForm.vue:464
msgid "Delete Course"
msgstr ""
#: frontend/src/components/CourseOutline.vue:208
msgid "Delete Lesson"
#: frontend/src/components/CourseOutline.vue:287
msgid "Delete this chapter?"
msgstr ""
#: frontend/src/components/CourseOutline.vue:229
msgid "Delete this lesson?"
msgstr ""
#: frontend/src/pages/CourseForm.vue:465
msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?"
msgstr ""
#: frontend/src/components/CourseOutline.vue:288
msgid "Deleting this chapter will also delete all its lessons and permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?"
msgstr ""
#: frontend/src/components/CourseOutline.vue:230
msgid "Deleting this lesson will permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?"
msgstr ""
#. Label of the description (Text Editor) field in DocType 'Job Opportunity'
#. Label of the description (Small Text) field in DocType 'Certification'
#. Label of the description (Markdown Editor) field in DocType 'Cohort'
@@ -1377,8 +1402,8 @@ msgstr ""
#. Label of the description (Small Text) field in DocType 'LMS Exercise'
#. Label of the description (Text) field in DocType 'LMS Live Class'
#. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:73
#: frontend/src/pages/BatchForm.vue:91 frontend/src/pages/JobCreation.vue:43
#: frontend/src/components/Modals/LiveClassModal.vue:78
#: frontend/src/pages/BatchForm.vue:96 frontend/src/pages/JobCreation.vue:43
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json
@@ -1424,7 +1449,7 @@ msgid "Discard"
msgstr ""
#. Label of the show_discussions (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batch.vue:69
#: frontend/src/pages/Batch.vue:73
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Discussions"
msgstr ""
@@ -1451,7 +1476,7 @@ msgstr ""
#. Label of the duration (Data) field in DocType 'LMS Batch Timetable'
#. Label of the duration (Int) field in DocType 'LMS Live Class'
#. Label of the duration (Duration) field in DocType 'LMS Quiz'
#: frontend/src/components/Modals/LiveClassModal.vue:58
#: frontend/src/components/Modals/LiveClassModal.vue:62
#: lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -1463,7 +1488,7 @@ msgstr ""
msgid "Duration (in minutes)"
msgstr ""
#: frontend/src/components/Modals/LiveClassModal.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:58
msgid "Duration of the live class in minutes"
msgstr ""
@@ -1485,7 +1510,7 @@ msgstr ""
msgid "Edit"
msgstr ""
#: frontend/src/components/CourseOutline.vue:106
#: frontend/src/components/CourseOutline.vue:45
#: frontend/src/components/Modals/ChapterModal.vue:5
msgid "Edit Chapter"
msgstr ""
@@ -1562,7 +1587,7 @@ msgstr ""
#. Label of the end_date (Date) field in DocType 'Cohort'
#. Label of the end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:123 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/BatchForm.vue:131 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:282
msgid "End Date"
@@ -1580,7 +1605,7 @@ msgstr ""
#. Label of the end_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the end_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the end_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:137
#: frontend/src/pages/BatchForm.vue:147
#: frontend/src/pages/ProfileEvaluator.vue:18
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1616,7 +1641,7 @@ msgstr ""
msgid "Enrollment Count"
msgstr ""
#: lms/lms/utils.py:1690
#: lms/lms/utils.py:1702
msgid "Enrollment Failed"
msgstr ""
@@ -1644,7 +1669,10 @@ msgstr ""
msgid "Enter the correct answer"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:104
#: frontend/src/components/Modals/AnnouncementModal.vue:105
#: frontend/src/components/Modals/ChapterModal.vue:154
#: frontend/src/components/Modals/ChapterModal.vue:161
#: frontend/src/components/Modals/ChapterModal.vue:197
#: frontend/src/components/Modals/Question.vue:246
#: frontend/src/components/Modals/Question.vue:266
#: frontend/src/components/Modals/Question.vue:323
@@ -1667,7 +1695,7 @@ msgid "Evaluation Details"
msgstr ""
#. Label of the evaluation_end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:166
#: frontend/src/pages/BatchForm.vue:178
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:333
msgid "Evaluation End Date"
@@ -1692,7 +1720,7 @@ msgstr ""
#. Label of the evaluator (Link) field in DocType 'LMS Certificate'
#. Label of the evaluator (Link) field in DocType 'LMS Certificate Evaluation'
#. Label of the evaluator (Link) field in DocType 'LMS Certificate Request'
#: frontend/src/components/Modals/BatchCourseModal.vue:21
#: frontend/src/components/Modals/BatchCourseModal.vue:26
#: frontend/src/pages/ProfileRoles.vue:22
#: lms/lms/doctype/batch_course/batch_course.json
#: lms/lms/doctype/course_evaluator/course_evaluator.json
@@ -1731,7 +1759,7 @@ msgstr ""
msgid "Event"
msgstr ""
#: frontend/src/pages/BatchForm.vue:145
#: frontend/src/pages/BatchForm.vue:156
msgid "Example: IST (+5:30)"
msgstr ""
@@ -1858,6 +1886,7 @@ msgid "Free"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:118
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Freelance"
msgstr ""
@@ -1897,6 +1926,7 @@ msgid "Full Name"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:115
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Full Time"
msgstr ""
@@ -1979,11 +2009,6 @@ msgstr ""
msgid "Hello"
msgstr ""
#. Label of the help_section (Section Break) field in DocType 'Course Lesson'
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Help"
msgstr ""
#: lms/templates/courses_created.html:15
msgid "Help others learn something new by creating a course."
msgstr ""
@@ -2162,9 +2187,7 @@ msgstr ""
msgid "Index"
msgstr ""
#. Label of the index_label (Data) field in DocType 'Course Lesson'
#. Label of the index_label (Data) field in DocType 'LMS Exercise'
#: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_exercise/lms_exercise.json
msgid "Index Label"
msgstr ""
@@ -2201,14 +2224,14 @@ msgstr ""
#. Label of the instructor_notes (Markdown Editor) field in DocType 'Course
#. Lesson'
#: frontend/src/pages/Lesson.vue:125 frontend/src/pages/LessonForm.vue:33
#: frontend/src/pages/Lesson.vue:128 frontend/src/pages/LessonForm.vue:38
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Instructor Notes"
msgstr ""
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch'
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:85 frontend/src/pages/CourseForm.vue:154
#: frontend/src/pages/BatchForm.vue:89 frontend/src/pages/CourseForm.vue:154
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Instructors"
@@ -2236,10 +2259,6 @@ msgstr ""
msgid "Invalid Quiz ID"
msgstr ""
#: lms/lms/web_form/add_a_new_batch/add_a_new_batch.js:38
msgid "Invalid Start or End Time."
msgstr ""
#. Label of the invite_code (Data) field in DocType 'Cohort Subgroup'
#. Label of the invite_code (Data) field in DocType 'Invite Request'
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
@@ -2279,6 +2298,14 @@ msgstr ""
msgid "Is Onboarding Complete"
msgstr ""
#. Label of the is_scorm_package (Check) field in DocType 'Course Chapter'
#. Label of the is_scorm_package (Check) field in DocType 'Course Lesson'
#: frontend/src/components/Modals/ChapterModal.vue:26
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Is SCORM Package"
msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/Event.vue:121
@@ -2353,7 +2380,7 @@ msgstr ""
msgid "Jobs"
msgstr ""
#: frontend/src/components/LiveClass.vue:54
#: frontend/src/components/LiveClass.vue:55
#: lms/templates/upcoming_evals.html:15
msgid "Join"
msgstr ""
@@ -2591,6 +2618,11 @@ msgstr ""
msgid "Latest Submission"
msgstr ""
#. Label of the launch_file (Code) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "Launch File"
msgstr ""
#. Label of the lesson (Link) field in DocType 'Exercise Latest Submission'
#. Label of the lesson (Link) field in DocType 'Exercise Submission'
#. Label of the lesson (Link) field in DocType 'Lesson Reference'
@@ -2720,7 +2752,7 @@ msgid "Location Preference"
msgstr ""
#: frontend/src/components/NoPermission.vue:28
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:163
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:167
#: frontend/src/pages/Lesson.vue:24
msgid "Login"
msgstr ""
@@ -2757,6 +2789,11 @@ msgstr ""
msgid "Manager (Sales/Marketing/Customer)"
msgstr ""
#. Label of the manifest_file (Code) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "Manifest File"
msgstr ""
#: frontend/src/components/Quiz.vue:94
msgid "Mark"
msgstr ""
@@ -2801,7 +2838,7 @@ msgid "Maximun Attempts"
msgstr ""
#. Label of the medium (Select) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:185
#: frontend/src/pages/BatchForm.vue:197
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:309
msgid "Medium"
@@ -2949,7 +2986,7 @@ msgid "Mentors"
msgstr ""
#. Label of the meta_image (Attach Image) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:36 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:40 lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:362
msgid "Meta Image"
msgstr ""
@@ -2985,11 +3022,11 @@ msgstr ""
msgid "Modified By"
msgstr ""
#: lms/lms/api.py:191
#: lms/lms/api.py:197
msgid "Module Name is incorrect or does not exist."
msgstr ""
#: lms/lms/api.py:187
#: lms/lms/api.py:193
msgid "Module is incorrect."
msgstr ""
@@ -3035,7 +3072,7 @@ msgstr ""
msgid "New Course"
msgstr ""
#: frontend/src/pages/Jobs.vue:24
#: frontend/src/pages/Jobs.vue:39
msgid "New Job"
msgstr ""
@@ -3122,11 +3159,11 @@ msgstr ""
msgid "No introduction"
msgstr ""
#: frontend/src/pages/Jobs.vue:45
#: frontend/src/pages/Jobs.vue:60
msgid "No jobs posted"
msgstr ""
#: frontend/src/components/LiveClass.vue:60
#: frontend/src/components/LiveClass.vue:61
msgid "No live classes scheduled"
msgstr ""
@@ -3182,7 +3219,7 @@ msgstr ""
msgid "Not Graded"
msgstr ""
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:131
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:135
msgid "Not Permitted"
msgstr ""
@@ -3206,7 +3243,7 @@ msgstr ""
msgid "Notify me when available"
msgstr ""
#: frontend/src/pages/BatchForm.vue:162
#: frontend/src/pages/BatchForm.vue:174
msgid "Number of seats available"
msgstr ""
@@ -3246,6 +3283,10 @@ msgstr ""
msgid "Only image file is allowed."
msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:223
msgid "Only zip files are allowed"
msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Job Opportunity'
#. Option for the 'Membership' (Select) field in DocType 'LMS Batch Old'
#: frontend/src/pages/QuizForm.vue:17
@@ -3350,7 +3391,7 @@ msgid "Pages"
msgstr ""
#. Label of the paid_batch (Check) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:205
#: frontend/src/pages/BatchForm.vue:217
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:373
msgid "Paid Batch"
@@ -3367,6 +3408,7 @@ msgid "Pan Number"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:116
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Part Time"
msgstr ""
@@ -3405,7 +3447,7 @@ msgstr ""
#. Label of the payment (Link) field in DocType 'Batch Student'
#. Label of the payment (Link) field in DocType 'LMS Enrollment'
#: frontend/src/pages/BatchForm.vue:199
#: frontend/src/pages/BatchForm.vue:211
#: lms/lms/doctype/batch_student/batch_student.json
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
msgid "Payment"
@@ -3521,6 +3563,10 @@ msgstr ""
msgid "Please enable Zoom Settings to use this feature."
msgstr ""
#: frontend/src/components/CourseOutline.vue:312
msgid "Please enroll for this course to view this lesson"
msgstr ""
#: frontend/src/components/Quiz.vue:13
msgid "Please ensure that you complete all the questions in {0} minutes."
msgstr ""
@@ -3554,11 +3600,11 @@ msgstr ""
msgid "Please login to access the quiz."
msgstr ""
#: frontend/src/components/NoPermission.vue:25 frontend/src/pages/Batch.vue:142
#: frontend/src/components/NoPermission.vue:25 frontend/src/pages/Batch.vue:146
msgid "Please login to access this page."
msgstr ""
#: lms/lms/api.py:183
#: lms/lms/api.py:189
msgid "Please login to continue with payment."
msgstr ""
@@ -3571,6 +3617,10 @@ msgstr ""
msgid "Please take appropriate action at {0}"
msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:172
msgid "Please upload a SCORM package"
msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:95
msgid "Please upload the assignment file."
msgstr ""
@@ -3728,7 +3778,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Batch'
#. Label of the published (Check) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:108
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:171
#: frontend/src/pages/BatchForm.vue:28 frontend/src/pages/CourseForm.vue:171
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:266
@@ -3939,11 +3989,11 @@ msgstr ""
msgid "Related Courses"
msgstr ""
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/CourseForm.vue:99
#: frontend/src/pages/BatchForm.vue:73 frontend/src/pages/CourseForm.vue:99
msgid "Remove"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:26
#: frontend/src/components/Modals/AnnouncementModal.vue:27
msgid "Reply To"
msgstr ""
@@ -4037,6 +4087,21 @@ msgstr ""
msgid "Run"
msgstr ""
#. Label of the scorm_section (Section Break) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "SCORM"
msgstr ""
#. Label of the scorm_package (Link) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "SCORM Package"
msgstr ""
#. Label of the scorm_package_path (Code) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "SCORM Package Path"
msgstr ""
#. Option for the 'Day' (Select) field in DocType 'Evaluator Schedule'
#. Option for the 'Day' (Select) field in DocType 'LMS Certificate Request'
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
@@ -4098,7 +4163,7 @@ msgid "Search for an icon"
msgstr ""
#. Label of the seat_count (Int) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:159
#: frontend/src/pages/BatchForm.vue:171
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:327
msgid "Seat Count"
@@ -4142,7 +4207,7 @@ msgid "Set your Password"
msgstr ""
#: frontend/src/components/Modals/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:153 frontend/src/pages/CourseForm.vue:161
#: frontend/src/pages/BatchForm.vue:165 frontend/src/pages/CourseForm.vue:161
#: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:78
msgid "Settings"
msgstr ""
@@ -4157,7 +4222,7 @@ msgstr ""
msgid "Short Introduction"
msgstr ""
#: frontend/src/pages/BatchForm.vue:94
#: frontend/src/pages/BatchForm.vue:99
msgid "Short description of the batch"
msgstr ""
@@ -4321,7 +4386,7 @@ msgstr ""
#. Label of the start_date (Date) field in DocType 'Education Detail'
#. Label of the start_date (Date) field in DocType 'LMS Batch'
#. Label of the start_date (Date) field in DocType 'LMS Batch Old'
#: frontend/src/pages/BatchForm.vue:117
#: frontend/src/pages/BatchForm.vue:124
#: lms/lms/doctype/education_detail/education_detail.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -4330,7 +4395,7 @@ msgid "Start Date"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:63
#: frontend/src/pages/Lesson.vue:21
#: frontend/src/pages/Lesson.vue:21 frontend/src/pages/SCORMChapter.vue:28
#: lms/templates/emails/lms_course_interest.html:9
msgid "Start Learning"
msgstr ""
@@ -4342,7 +4407,7 @@ msgstr ""
#. Label of the start_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the start_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the start_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:131
#: frontend/src/pages/BatchForm.vue:140
#: frontend/src/pages/ProfileEvaluator.vue:15
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -4359,19 +4424,11 @@ msgstr ""
msgid "Start Time cannot be greater than End Time"
msgstr ""
#: lms/lms/web_form/add_a_new_batch/add_a_new_batch.js:43
msgid "Start Time should be less than End Time."
msgstr ""
#. Label of the start_url (Small Text) field in DocType 'LMS Live Class'
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Start URL"
msgstr ""
#: lms/lms/web_form/add_a_new_batch/add_a_new_batch.js:30
msgid "Start date cannot be a past date."
msgstr ""
#. Option for the 'Company Type' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Startup Organization"
@@ -4514,8 +4571,10 @@ msgstr ""
#: frontend/src/components/BatchOverlay.vue:135
#: frontend/src/components/BatchStudents.vue:157
#: frontend/src/components/CourseCardOverlay.vue:161
#: frontend/src/components/Modals/AnnouncementModal.vue:98
#: frontend/src/components/Modals/AnnouncementModal.vue:99
#: frontend/src/components/Modals/AssessmentModal.vue:73
#: frontend/src/components/Modals/ChapterModal.vue:148
#: frontend/src/components/Modals/ChapterModal.vue:193
#: frontend/src/components/Modals/Event.vue:255
#: frontend/src/components/Modals/Event.vue:310
#: frontend/src/components/Modals/Question.vue:261
@@ -4711,10 +4770,14 @@ msgstr ""
msgid "This course has:"
msgstr ""
#: lms/lms/utils.py:1570
#: lms/lms/utils.py:1582
msgid "This course is free."
msgstr ""
#: frontend/src/pages/SCORMChapter.vue:198
msgid "This is a chapter in the course {0}"
msgstr ""
#: lms/lms/widgets/CourseOutline.html:62
msgid "This lesson is not available for preview. As you are the Instructor of the course only you can see it."
msgstr ""
@@ -4740,7 +4803,7 @@ msgstr ""
#. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48
#: frontend/src/components/Modals/LiveClassModal.vue:36
#: frontend/src/components/Modals/LiveClassModal.vue:37
#: frontend/src/components/Quiz.vue:44
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Time"
@@ -4751,7 +4814,7 @@ msgstr ""
msgid "Time Preference"
msgstr ""
#: frontend/src/components/Modals/LiveClassModal.vue:28
#: frontend/src/components/Modals/LiveClassModal.vue:29
msgid "Time must be in 24 hour format (HH:mm). Example 11:30 or 22:00"
msgstr ""
@@ -4779,8 +4842,8 @@ msgstr ""
#. Label of the timezone (Data) field in DocType 'LMS Batch'
#. Label of the timezone (Data) field in DocType 'LMS Certificate Request'
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/LiveClassModal.vue:44
#: frontend/src/pages/BatchForm.vue:143
#: frontend/src/components/Modals/LiveClassModal.vue:46
#: frontend/src/pages/BatchForm.vue:154
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -4809,7 +4872,7 @@ msgstr ""
#. Label of the title (Data) field in DocType 'Work Experience'
#: frontend/src/components/Modals/DiscussionModal.vue:18
#: frontend/src/components/Modals/LiveClassModal.vue:23
#: frontend/src/pages/BatchForm.vue:18 frontend/src/pages/CourseForm.vue:32
#: frontend/src/pages/BatchForm.vue:20 frontend/src/pages/CourseForm.vue:32
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/QuizForm.vue:48
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
@@ -4831,6 +4894,10 @@ msgstr ""
msgid "Title"
msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:169
msgid "Title is required"
msgstr ""
#. Label of the unavailable_to (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:98
#: lms/lms/doctype/course_evaluator/course_evaluator.json
@@ -4842,11 +4909,7 @@ msgstr ""
msgid "To Date"
msgstr ""
#: lms/lms/web_form/profile/profile.js:19
msgid "To Date is mandatory in Work Experience."
msgstr ""
#: lms/lms/utils.py:1581
#: lms/lms/utils.py:1593
msgid "To join this batch, please contact the Administrator."
msgstr ""
@@ -4900,7 +4963,7 @@ msgstr ""
#. Label of the type (Select) field in DocType 'LMS Quiz Question'
#: frontend/src/components/Modals/AssessmentModal.vue:22
#: frontend/src/components/Modals/Question.vue:54
#: frontend/src/pages/JobCreation.vue:28
#: frontend/src/pages/JobCreation.vue:28 frontend/src/pages/Jobs.vue:16
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/lms_assignment/lms_assignment.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
@@ -4968,7 +5031,7 @@ msgstr ""
msgid "Upcoming"
msgstr ""
#: frontend/src/pages/Batch.vue:154
#: frontend/src/pages/Batch.vue:158
msgid "Upcoming Batches"
msgstr ""
@@ -4987,7 +5050,7 @@ msgstr ""
msgid "Update Password"
msgstr ""
#: frontend/src/pages/BatchForm.vue:51 frontend/src/pages/CourseForm.vue:80
#: frontend/src/pages/BatchForm.vue:55 frontend/src/pages/CourseForm.vue:80
msgid "Upload"
msgstr ""
@@ -5170,15 +5233,15 @@ msgstr ""
msgid "You already have an evaluation on {0} at {1} for the course {2}."
msgstr ""
#: lms/lms/api.py:207
#: lms/lms/api.py:213
msgid "You are already enrolled for this batch."
msgstr ""
#: lms/lms/api.py:199
#: lms/lms/api.py:205
msgid "You are already enrolled for this course."
msgstr ""
#: frontend/src/pages/Batch.vue:136
#: frontend/src/pages/Batch.vue:140
msgid "You are not a member of this batch. Please checkout our upcoming batches."
msgstr ""
@@ -5186,6 +5249,14 @@ msgstr ""
msgid "You are not a mentor of the course {0}"
msgstr ""
#: frontend/src/components/CourseOutline.vue:311
msgid "You are not enrolled"
msgstr ""
#: frontend/src/pages/SCORMChapter.vue:22
msgid "You are not enrolled in this course. Please enroll to access this lesson."
msgstr ""
#: frontend/src/pages/Courses.vue:134
msgid "You can add chapters and lessons to it."
msgstr ""
@@ -5338,7 +5409,7 @@ msgstr ""
msgid "cancel your application"
msgstr ""
#: frontend/src/pages/Lesson.vue:170
#: frontend/src/pages/Lesson.vue:174
msgid "completed"
msgstr ""
@@ -5386,7 +5457,7 @@ msgstr ""
msgid "you can"
msgstr ""
#: lms/lms/api.py:740 lms/lms/api.py:748
#: lms/lms/api.py:747 lms/lms/api.py:755
msgid "{0} Settings not found"
msgstr ""

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-11-08 16:04+0000\n"
"PO-Revision-Date: 2024-11-11 15:23\n"
"POT-Creation-Date: 2024-11-15 16:04+0000\n"
"PO-Revision-Date: 2024-11-18 17:31\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Polish\n"
"MIME-Version: 1.0\n"
@@ -109,7 +109,7 @@ msgstr ""
msgid "Add Chapter"
msgstr ""
#: frontend/src/components/CourseOutline.vue:102
#: frontend/src/components/CourseOutline.vue:124
msgid "Add Lesson"
msgstr ""
@@ -217,7 +217,7 @@ msgstr ""
msgid "Allow accessing future dates"
msgstr ""
#: frontend/src/pages/BatchForm.vue:29
#: frontend/src/pages/BatchForm.vue:33
msgid "Allow self enrollment"
msgstr ""
@@ -228,7 +228,7 @@ msgstr ""
#. Label of the amount (Currency) field in DocType 'Web Form'
#. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the amount (Currency) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:209 lms/fixtures/custom_field.json
#: frontend/src/pages/BatchForm.vue:221 lms/fixtures/custom_field.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/public/js/common_functions.js:379
@@ -258,11 +258,11 @@ msgstr ""
msgid "Amount with GST"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:32
#: frontend/src/components/Modals/AnnouncementModal.vue:33
msgid "Announcement"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:99
#: frontend/src/components/Modals/AnnouncementModal.vue:100
msgid "Announcement has been sent successfully"
msgstr ""
@@ -280,7 +280,7 @@ msgstr ""
msgid "Appears on the course card in the course list"
msgstr ""
#: frontend/src/pages/BatchForm.vue:55 frontend/src/pages/BatchForm.vue:73
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/BatchForm.vue:77
msgid "Appears when the batch URL is shared on any online platform"
msgstr ""
@@ -319,10 +319,6 @@ msgstr ""
msgid "Apps"
msgstr ""
#: frontend/src/components/CourseOutline.vue:209
msgid "Are you sure you want to delete this lesson?"
msgstr ""
#. Label of the user_category (Check) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Ask User Category during Signup"
@@ -420,7 +416,7 @@ msgid "Auto Assign"
msgstr ""
#. Label of the auto_recording (Select) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/LiveClassModal.vue:66
#: frontend/src/components/Modals/LiveClassModal.vue:71
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Auto Recording"
msgstr ""
@@ -482,7 +478,8 @@ msgid "Batch Description"
msgstr ""
#. Label of the batch_details (Text Editor) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:98 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:104
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:349
#: lms/templates/emails/batch_confirmation.html:30
msgid "Batch Details"
@@ -547,10 +544,6 @@ msgstr ""
msgid "Batch end date cannot be before the batch start date"
msgstr ""
#: lms/lms/web_form/add_a_new_batch/add_a_new_batch.js:6
msgid "Batch {0} has been successfully created!"
msgstr ""
#. Group in LMS Course's connections
#. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue:8 lms/lms/doctype/lms_course/lms_course.json
@@ -581,7 +574,7 @@ msgstr ""
msgid "Billing Name"
msgstr ""
#: frontend/src/components/Modals/EditProfile.vue:72
#: frontend/src/components/Modals/EditProfile.vue:75
msgid "Bio"
msgstr ""
@@ -649,7 +642,7 @@ msgstr ""
#. Label of the category (Link) field in DocType 'LMS Batch'
#. Label of the category (Data) field in DocType 'LMS Category'
#. Label of the category (Link) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/BatchForm.vue:202 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/JobDetail.vue:102
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -734,6 +727,14 @@ msgstr ""
msgid "Chapter Reference"
msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:149
msgid "Chapter added successfully"
msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:193
msgid "Chapter updated successfully"
msgstr ""
#. Label of the chapters (Table) field in DocType 'LMS Course'
#. Group in LMS Course's connections
#: lms/lms/doctype/lms_course/lms_course.json
@@ -987,7 +988,7 @@ msgid "Contact the Administrator to enroll for this course."
msgstr ""
#. Label of the content (Text) field in DocType 'Course Lesson'
#: frontend/src/pages/LessonForm.vue:53
#: frontend/src/pages/LessonForm.vue:58
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Content"
msgstr ""
@@ -997,6 +998,7 @@ msgid "Continue Learning"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:117
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Contract"
msgstr ""
@@ -1060,7 +1062,7 @@ msgstr ""
#. Label of the course (Link) field in DocType 'Related Courses'
#. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/BatchCourseModal.vue:17
#: frontend/src/components/Modals/BatchCourseModal.vue:20
#: frontend/src/components/Modals/EvaluationModal.vue:20
#: frontend/src/components/Modals/Event.vue:24
#: lms/lms/doctype/batch_course/batch_course.json
@@ -1153,6 +1155,10 @@ msgstr ""
msgid "Course Name"
msgstr ""
#: frontend/src/pages/CourseDetail.vue:74
msgid "Course Outline"
msgstr ""
#. Label of the course_price (Currency) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:219
#: lms/lms/doctype/lms_course/lms_course.json
@@ -1175,9 +1181,11 @@ msgid "Course Stats"
msgstr ""
#. Label of the title (Data) field in DocType 'Batch Course'
#. Label of the course_title (Data) field in DocType 'Course Chapter'
#. Label of the course_title (Data) field in DocType 'LMS Certificate'
#. Label of the course_title (Data) field in DocType 'LMS Certificate Request'
#: lms/lms/doctype/batch_course/batch_course.json
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
msgid "Course Title"
@@ -1257,7 +1265,7 @@ msgstr ""
#. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course'
#. Label of the currency (Link) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:226
#: frontend/src/pages/BatchForm.vue:229 frontend/src/pages/CourseForm.vue:226
#: lms/fixtures/custom_field.json lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_payment/lms_payment.json
@@ -1303,7 +1311,7 @@ msgstr ""
#. Label of the date (Date) field in DocType 'Scheduled Flow'
#: frontend/src/components/Modals/EvaluationModal.vue:26
#: frontend/src/components/Modals/Event.vue:40
#: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Modals/LiveClassModal.vue:55
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
@@ -1315,7 +1323,7 @@ msgstr ""
#. Label of the section_break_glxh (Section Break) field in DocType 'LMS Live
#. Class'
#: frontend/src/pages/BatchForm.vue:111
#: frontend/src/pages/BatchForm.vue:118
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Date and Time"
msgstr ""
@@ -1350,23 +1358,40 @@ msgstr ""
msgid "Degree Type"
msgstr ""
#: frontend/src/components/CourseOutline.vue:212
#: frontend/src/components/CourseOutline.vue:235
#: frontend/src/components/CourseOutline.vue:293
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:470
msgid "Delete"
msgstr ""
#: frontend/src/components/CourseOutline.vue:52
msgid "Delete Chapter"
msgstr ""
#: frontend/src/pages/CourseForm.vue:464
msgid "Delete Course"
msgstr ""
#: frontend/src/components/CourseOutline.vue:208
msgid "Delete Lesson"
#: frontend/src/components/CourseOutline.vue:287
msgid "Delete this chapter?"
msgstr ""
#: frontend/src/components/CourseOutline.vue:229
msgid "Delete this lesson?"
msgstr ""
#: frontend/src/pages/CourseForm.vue:465
msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?"
msgstr ""
#: frontend/src/components/CourseOutline.vue:288
msgid "Deleting this chapter will also delete all its lessons and permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?"
msgstr ""
#: frontend/src/components/CourseOutline.vue:230
msgid "Deleting this lesson will permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?"
msgstr ""
#. Label of the description (Text Editor) field in DocType 'Job Opportunity'
#. Label of the description (Small Text) field in DocType 'Certification'
#. Label of the description (Markdown Editor) field in DocType 'Cohort'
@@ -1379,8 +1404,8 @@ msgstr ""
#. Label of the description (Small Text) field in DocType 'LMS Exercise'
#. Label of the description (Text) field in DocType 'LMS Live Class'
#. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:73
#: frontend/src/pages/BatchForm.vue:91 frontend/src/pages/JobCreation.vue:43
#: frontend/src/components/Modals/LiveClassModal.vue:78
#: frontend/src/pages/BatchForm.vue:96 frontend/src/pages/JobCreation.vue:43
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json
@@ -1426,7 +1451,7 @@ msgid "Discard"
msgstr ""
#. Label of the show_discussions (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batch.vue:69
#: frontend/src/pages/Batch.vue:73
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Discussions"
msgstr ""
@@ -1453,7 +1478,7 @@ msgstr ""
#. Label of the duration (Data) field in DocType 'LMS Batch Timetable'
#. Label of the duration (Int) field in DocType 'LMS Live Class'
#. Label of the duration (Duration) field in DocType 'LMS Quiz'
#: frontend/src/components/Modals/LiveClassModal.vue:58
#: frontend/src/components/Modals/LiveClassModal.vue:62
#: lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -1465,7 +1490,7 @@ msgstr ""
msgid "Duration (in minutes)"
msgstr ""
#: frontend/src/components/Modals/LiveClassModal.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:58
msgid "Duration of the live class in minutes"
msgstr ""
@@ -1487,7 +1512,7 @@ msgstr ""
msgid "Edit"
msgstr ""
#: frontend/src/components/CourseOutline.vue:106
#: frontend/src/components/CourseOutline.vue:45
#: frontend/src/components/Modals/ChapterModal.vue:5
msgid "Edit Chapter"
msgstr ""
@@ -1564,7 +1589,7 @@ msgstr ""
#. Label of the end_date (Date) field in DocType 'Cohort'
#. Label of the end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:123 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/BatchForm.vue:131 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:282
msgid "End Date"
@@ -1582,7 +1607,7 @@ msgstr ""
#. Label of the end_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the end_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the end_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:137
#: frontend/src/pages/BatchForm.vue:147
#: frontend/src/pages/ProfileEvaluator.vue:18
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1618,7 +1643,7 @@ msgstr ""
msgid "Enrollment Count"
msgstr ""
#: lms/lms/utils.py:1690
#: lms/lms/utils.py:1702
msgid "Enrollment Failed"
msgstr ""
@@ -1646,7 +1671,10 @@ msgstr ""
msgid "Enter the correct answer"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:104
#: frontend/src/components/Modals/AnnouncementModal.vue:105
#: frontend/src/components/Modals/ChapterModal.vue:154
#: frontend/src/components/Modals/ChapterModal.vue:161
#: frontend/src/components/Modals/ChapterModal.vue:197
#: frontend/src/components/Modals/Question.vue:246
#: frontend/src/components/Modals/Question.vue:266
#: frontend/src/components/Modals/Question.vue:323
@@ -1669,7 +1697,7 @@ msgid "Evaluation Details"
msgstr ""
#. Label of the evaluation_end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:166
#: frontend/src/pages/BatchForm.vue:178
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:333
msgid "Evaluation End Date"
@@ -1694,7 +1722,7 @@ msgstr ""
#. Label of the evaluator (Link) field in DocType 'LMS Certificate'
#. Label of the evaluator (Link) field in DocType 'LMS Certificate Evaluation'
#. Label of the evaluator (Link) field in DocType 'LMS Certificate Request'
#: frontend/src/components/Modals/BatchCourseModal.vue:21
#: frontend/src/components/Modals/BatchCourseModal.vue:26
#: frontend/src/pages/ProfileRoles.vue:22
#: lms/lms/doctype/batch_course/batch_course.json
#: lms/lms/doctype/course_evaluator/course_evaluator.json
@@ -1733,7 +1761,7 @@ msgstr ""
msgid "Event"
msgstr ""
#: frontend/src/pages/BatchForm.vue:145
#: frontend/src/pages/BatchForm.vue:156
msgid "Example: IST (+5:30)"
msgstr ""
@@ -1860,6 +1888,7 @@ msgid "Free"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:118
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Freelance"
msgstr ""
@@ -1899,6 +1928,7 @@ msgid "Full Name"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:115
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Full Time"
msgstr ""
@@ -1981,11 +2011,6 @@ msgstr ""
msgid "Hello"
msgstr ""
#. Label of the help_section (Section Break) field in DocType 'Course Lesson'
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Help"
msgstr ""
#: lms/templates/courses_created.html:15
msgid "Help others learn something new by creating a course."
msgstr ""
@@ -2164,9 +2189,7 @@ msgstr ""
msgid "Index"
msgstr ""
#. Label of the index_label (Data) field in DocType 'Course Lesson'
#. Label of the index_label (Data) field in DocType 'LMS Exercise'
#: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_exercise/lms_exercise.json
msgid "Index Label"
msgstr ""
@@ -2203,14 +2226,14 @@ msgstr ""
#. Label of the instructor_notes (Markdown Editor) field in DocType 'Course
#. Lesson'
#: frontend/src/pages/Lesson.vue:125 frontend/src/pages/LessonForm.vue:33
#: frontend/src/pages/Lesson.vue:128 frontend/src/pages/LessonForm.vue:38
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Instructor Notes"
msgstr ""
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch'
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:85 frontend/src/pages/CourseForm.vue:154
#: frontend/src/pages/BatchForm.vue:89 frontend/src/pages/CourseForm.vue:154
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Instructors"
@@ -2238,10 +2261,6 @@ msgstr ""
msgid "Invalid Quiz ID"
msgstr ""
#: lms/lms/web_form/add_a_new_batch/add_a_new_batch.js:38
msgid "Invalid Start or End Time."
msgstr ""
#. Label of the invite_code (Data) field in DocType 'Cohort Subgroup'
#. Label of the invite_code (Data) field in DocType 'Invite Request'
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
@@ -2281,6 +2300,14 @@ msgstr ""
msgid "Is Onboarding Complete"
msgstr ""
#. Label of the is_scorm_package (Check) field in DocType 'Course Chapter'
#. Label of the is_scorm_package (Check) field in DocType 'Course Lesson'
#: frontend/src/components/Modals/ChapterModal.vue:26
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Is SCORM Package"
msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/Event.vue:121
@@ -2355,7 +2382,7 @@ msgstr ""
msgid "Jobs"
msgstr ""
#: frontend/src/components/LiveClass.vue:54
#: frontend/src/components/LiveClass.vue:55
#: lms/templates/upcoming_evals.html:15
msgid "Join"
msgstr ""
@@ -2593,6 +2620,11 @@ msgstr ""
msgid "Latest Submission"
msgstr ""
#. Label of the launch_file (Code) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "Launch File"
msgstr ""
#. Label of the lesson (Link) field in DocType 'Exercise Latest Submission'
#. Label of the lesson (Link) field in DocType 'Exercise Submission'
#. Label of the lesson (Link) field in DocType 'Lesson Reference'
@@ -2722,7 +2754,7 @@ msgid "Location Preference"
msgstr ""
#: frontend/src/components/NoPermission.vue:28
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:163
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:167
#: frontend/src/pages/Lesson.vue:24
msgid "Login"
msgstr ""
@@ -2759,6 +2791,11 @@ msgstr ""
msgid "Manager (Sales/Marketing/Customer)"
msgstr ""
#. Label of the manifest_file (Code) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "Manifest File"
msgstr ""
#: frontend/src/components/Quiz.vue:94
msgid "Mark"
msgstr ""
@@ -2803,7 +2840,7 @@ msgid "Maximun Attempts"
msgstr ""
#. Label of the medium (Select) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:185
#: frontend/src/pages/BatchForm.vue:197
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:309
msgid "Medium"
@@ -2951,7 +2988,7 @@ msgid "Mentors"
msgstr ""
#. Label of the meta_image (Attach Image) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:36 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:40 lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:362
msgid "Meta Image"
msgstr ""
@@ -2987,11 +3024,11 @@ msgstr ""
msgid "Modified By"
msgstr ""
#: lms/lms/api.py:191
#: lms/lms/api.py:197
msgid "Module Name is incorrect or does not exist."
msgstr ""
#: lms/lms/api.py:187
#: lms/lms/api.py:193
msgid "Module is incorrect."
msgstr ""
@@ -3037,7 +3074,7 @@ msgstr ""
msgid "New Course"
msgstr ""
#: frontend/src/pages/Jobs.vue:24
#: frontend/src/pages/Jobs.vue:39
msgid "New Job"
msgstr ""
@@ -3124,11 +3161,11 @@ msgstr ""
msgid "No introduction"
msgstr ""
#: frontend/src/pages/Jobs.vue:45
#: frontend/src/pages/Jobs.vue:60
msgid "No jobs posted"
msgstr ""
#: frontend/src/components/LiveClass.vue:60
#: frontend/src/components/LiveClass.vue:61
msgid "No live classes scheduled"
msgstr ""
@@ -3184,7 +3221,7 @@ msgstr ""
msgid "Not Graded"
msgstr ""
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:131
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:135
msgid "Not Permitted"
msgstr ""
@@ -3208,7 +3245,7 @@ msgstr ""
msgid "Notify me when available"
msgstr ""
#: frontend/src/pages/BatchForm.vue:162
#: frontend/src/pages/BatchForm.vue:174
msgid "Number of seats available"
msgstr ""
@@ -3248,6 +3285,10 @@ msgstr ""
msgid "Only image file is allowed."
msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:223
msgid "Only zip files are allowed"
msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Job Opportunity'
#. Option for the 'Membership' (Select) field in DocType 'LMS Batch Old'
#: frontend/src/pages/QuizForm.vue:17
@@ -3352,7 +3393,7 @@ msgid "Pages"
msgstr ""
#. Label of the paid_batch (Check) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:205
#: frontend/src/pages/BatchForm.vue:217
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:373
msgid "Paid Batch"
@@ -3369,6 +3410,7 @@ msgid "Pan Number"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:116
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Part Time"
msgstr ""
@@ -3407,7 +3449,7 @@ msgstr ""
#. Label of the payment (Link) field in DocType 'Batch Student'
#. Label of the payment (Link) field in DocType 'LMS Enrollment'
#: frontend/src/pages/BatchForm.vue:199
#: frontend/src/pages/BatchForm.vue:211
#: lms/lms/doctype/batch_student/batch_student.json
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
msgid "Payment"
@@ -3523,6 +3565,10 @@ msgstr ""
msgid "Please enable Zoom Settings to use this feature."
msgstr ""
#: frontend/src/components/CourseOutline.vue:312
msgid "Please enroll for this course to view this lesson"
msgstr ""
#: frontend/src/components/Quiz.vue:13
msgid "Please ensure that you complete all the questions in {0} minutes."
msgstr ""
@@ -3556,11 +3602,11 @@ msgstr ""
msgid "Please login to access the quiz."
msgstr ""
#: frontend/src/components/NoPermission.vue:25 frontend/src/pages/Batch.vue:142
#: frontend/src/components/NoPermission.vue:25 frontend/src/pages/Batch.vue:146
msgid "Please login to access this page."
msgstr ""
#: lms/lms/api.py:183
#: lms/lms/api.py:189
msgid "Please login to continue with payment."
msgstr ""
@@ -3573,6 +3619,10 @@ msgstr ""
msgid "Please take appropriate action at {0}"
msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:172
msgid "Please upload a SCORM package"
msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:95
msgid "Please upload the assignment file."
msgstr ""
@@ -3730,7 +3780,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Batch'
#. Label of the published (Check) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:108
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:171
#: frontend/src/pages/BatchForm.vue:28 frontend/src/pages/CourseForm.vue:171
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:266
@@ -3941,11 +3991,11 @@ msgstr ""
msgid "Related Courses"
msgstr ""
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/CourseForm.vue:99
#: frontend/src/pages/BatchForm.vue:73 frontend/src/pages/CourseForm.vue:99
msgid "Remove"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:26
#: frontend/src/components/Modals/AnnouncementModal.vue:27
msgid "Reply To"
msgstr ""
@@ -4039,6 +4089,21 @@ msgstr ""
msgid "Run"
msgstr ""
#. Label of the scorm_section (Section Break) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "SCORM"
msgstr ""
#. Label of the scorm_package (Link) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "SCORM Package"
msgstr ""
#. Label of the scorm_package_path (Code) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "SCORM Package Path"
msgstr ""
#. Option for the 'Day' (Select) field in DocType 'Evaluator Schedule'
#. Option for the 'Day' (Select) field in DocType 'LMS Certificate Request'
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
@@ -4100,7 +4165,7 @@ msgid "Search for an icon"
msgstr ""
#. Label of the seat_count (Int) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:159
#: frontend/src/pages/BatchForm.vue:171
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:327
msgid "Seat Count"
@@ -4144,7 +4209,7 @@ msgid "Set your Password"
msgstr ""
#: frontend/src/components/Modals/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:153 frontend/src/pages/CourseForm.vue:161
#: frontend/src/pages/BatchForm.vue:165 frontend/src/pages/CourseForm.vue:161
#: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:78
msgid "Settings"
msgstr ""
@@ -4159,7 +4224,7 @@ msgstr ""
msgid "Short Introduction"
msgstr ""
#: frontend/src/pages/BatchForm.vue:94
#: frontend/src/pages/BatchForm.vue:99
msgid "Short description of the batch"
msgstr ""
@@ -4323,7 +4388,7 @@ msgstr ""
#. Label of the start_date (Date) field in DocType 'Education Detail'
#. Label of the start_date (Date) field in DocType 'LMS Batch'
#. Label of the start_date (Date) field in DocType 'LMS Batch Old'
#: frontend/src/pages/BatchForm.vue:117
#: frontend/src/pages/BatchForm.vue:124
#: lms/lms/doctype/education_detail/education_detail.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -4332,7 +4397,7 @@ msgid "Start Date"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:63
#: frontend/src/pages/Lesson.vue:21
#: frontend/src/pages/Lesson.vue:21 frontend/src/pages/SCORMChapter.vue:28
#: lms/templates/emails/lms_course_interest.html:9
msgid "Start Learning"
msgstr ""
@@ -4344,7 +4409,7 @@ msgstr ""
#. Label of the start_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the start_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the start_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:131
#: frontend/src/pages/BatchForm.vue:140
#: frontend/src/pages/ProfileEvaluator.vue:15
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -4361,19 +4426,11 @@ msgstr ""
msgid "Start Time cannot be greater than End Time"
msgstr ""
#: lms/lms/web_form/add_a_new_batch/add_a_new_batch.js:43
msgid "Start Time should be less than End Time."
msgstr ""
#. Label of the start_url (Small Text) field in DocType 'LMS Live Class'
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Start URL"
msgstr ""
#: lms/lms/web_form/add_a_new_batch/add_a_new_batch.js:30
msgid "Start date cannot be a past date."
msgstr ""
#. Option for the 'Company Type' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Startup Organization"
@@ -4516,8 +4573,10 @@ msgstr ""
#: frontend/src/components/BatchOverlay.vue:135
#: frontend/src/components/BatchStudents.vue:157
#: frontend/src/components/CourseCardOverlay.vue:161
#: frontend/src/components/Modals/AnnouncementModal.vue:98
#: frontend/src/components/Modals/AnnouncementModal.vue:99
#: frontend/src/components/Modals/AssessmentModal.vue:73
#: frontend/src/components/Modals/ChapterModal.vue:148
#: frontend/src/components/Modals/ChapterModal.vue:193
#: frontend/src/components/Modals/Event.vue:255
#: frontend/src/components/Modals/Event.vue:310
#: frontend/src/components/Modals/Question.vue:261
@@ -4713,10 +4772,14 @@ msgstr ""
msgid "This course has:"
msgstr ""
#: lms/lms/utils.py:1570
#: lms/lms/utils.py:1582
msgid "This course is free."
msgstr ""
#: frontend/src/pages/SCORMChapter.vue:198
msgid "This is a chapter in the course {0}"
msgstr ""
#: lms/lms/widgets/CourseOutline.html:62
msgid "This lesson is not available for preview. As you are the Instructor of the course only you can see it."
msgstr ""
@@ -4742,7 +4805,7 @@ msgstr "czwartek"
#. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48
#: frontend/src/components/Modals/LiveClassModal.vue:36
#: frontend/src/components/Modals/LiveClassModal.vue:37
#: frontend/src/components/Quiz.vue:44
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Time"
@@ -4753,7 +4816,7 @@ msgstr "Czas"
msgid "Time Preference"
msgstr ""
#: frontend/src/components/Modals/LiveClassModal.vue:28
#: frontend/src/components/Modals/LiveClassModal.vue:29
msgid "Time must be in 24 hour format (HH:mm). Example 11:30 or 22:00"
msgstr ""
@@ -4781,8 +4844,8 @@ msgstr ""
#. Label of the timezone (Data) field in DocType 'LMS Batch'
#. Label of the timezone (Data) field in DocType 'LMS Certificate Request'
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/LiveClassModal.vue:44
#: frontend/src/pages/BatchForm.vue:143
#: frontend/src/components/Modals/LiveClassModal.vue:46
#: frontend/src/pages/BatchForm.vue:154
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -4811,7 +4874,7 @@ msgstr ""
#. Label of the title (Data) field in DocType 'Work Experience'
#: frontend/src/components/Modals/DiscussionModal.vue:18
#: frontend/src/components/Modals/LiveClassModal.vue:23
#: frontend/src/pages/BatchForm.vue:18 frontend/src/pages/CourseForm.vue:32
#: frontend/src/pages/BatchForm.vue:20 frontend/src/pages/CourseForm.vue:32
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/QuizForm.vue:48
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
@@ -4833,6 +4896,10 @@ msgstr ""
msgid "Title"
msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:169
msgid "Title is required"
msgstr ""
#. Label of the unavailable_to (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:98
#: lms/lms/doctype/course_evaluator/course_evaluator.json
@@ -4844,11 +4911,7 @@ msgstr ""
msgid "To Date"
msgstr ""
#: lms/lms/web_form/profile/profile.js:19
msgid "To Date is mandatory in Work Experience."
msgstr ""
#: lms/lms/utils.py:1581
#: lms/lms/utils.py:1593
msgid "To join this batch, please contact the Administrator."
msgstr ""
@@ -4902,7 +4965,7 @@ msgstr ""
#. Label of the type (Select) field in DocType 'LMS Quiz Question'
#: frontend/src/components/Modals/AssessmentModal.vue:22
#: frontend/src/components/Modals/Question.vue:54
#: frontend/src/pages/JobCreation.vue:28
#: frontend/src/pages/JobCreation.vue:28 frontend/src/pages/Jobs.vue:16
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/lms_assignment/lms_assignment.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
@@ -4970,7 +5033,7 @@ msgstr ""
msgid "Upcoming"
msgstr ""
#: frontend/src/pages/Batch.vue:154
#: frontend/src/pages/Batch.vue:158
msgid "Upcoming Batches"
msgstr ""
@@ -4989,7 +5052,7 @@ msgstr ""
msgid "Update Password"
msgstr ""
#: frontend/src/pages/BatchForm.vue:51 frontend/src/pages/CourseForm.vue:80
#: frontend/src/pages/BatchForm.vue:55 frontend/src/pages/CourseForm.vue:80
msgid "Upload"
msgstr ""
@@ -5172,15 +5235,15 @@ msgstr ""
msgid "You already have an evaluation on {0} at {1} for the course {2}."
msgstr ""
#: lms/lms/api.py:207
#: lms/lms/api.py:213
msgid "You are already enrolled for this batch."
msgstr ""
#: lms/lms/api.py:199
#: lms/lms/api.py:205
msgid "You are already enrolled for this course."
msgstr ""
#: frontend/src/pages/Batch.vue:136
#: frontend/src/pages/Batch.vue:140
msgid "You are not a member of this batch. Please checkout our upcoming batches."
msgstr ""
@@ -5188,6 +5251,14 @@ msgstr ""
msgid "You are not a mentor of the course {0}"
msgstr ""
#: frontend/src/components/CourseOutline.vue:311
msgid "You are not enrolled"
msgstr ""
#: frontend/src/pages/SCORMChapter.vue:22
msgid "You are not enrolled in this course. Please enroll to access this lesson."
msgstr ""
#: frontend/src/pages/Courses.vue:134
msgid "You can add chapters and lessons to it."
msgstr ""
@@ -5340,7 +5411,7 @@ msgstr ""
msgid "cancel your application"
msgstr ""
#: frontend/src/pages/Lesson.vue:170
#: frontend/src/pages/Lesson.vue:174
msgid "completed"
msgstr "zakończono"
@@ -5388,7 +5459,7 @@ msgstr ""
msgid "you can"
msgstr ""
#: lms/lms/api.py:740 lms/lms/api.py:748
#: lms/lms/api.py:747 lms/lms/api.py:755
msgid "{0} Settings not found"
msgstr ""

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-11-08 16:04+0000\n"
"PO-Revision-Date: 2024-11-11 15:23\n"
"POT-Creation-Date: 2024-11-15 16:04+0000\n"
"PO-Revision-Date: 2024-11-18 17:31\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Russian\n"
"MIME-Version: 1.0\n"
@@ -109,7 +109,7 @@ msgstr ""
msgid "Add Chapter"
msgstr "Добавить главу"
#: frontend/src/components/CourseOutline.vue:102
#: frontend/src/components/CourseOutline.vue:124
msgid "Add Lesson"
msgstr "Добавить урок"
@@ -217,7 +217,7 @@ msgstr "Разрешить самостоятельную регистрацию
msgid "Allow accessing future dates"
msgstr "Разрешить доступ к будущим датам"
#: frontend/src/pages/BatchForm.vue:29
#: frontend/src/pages/BatchForm.vue:33
msgid "Allow self enrollment"
msgstr "Разрешить самостоятельную регистрацию"
@@ -228,7 +228,7 @@ msgstr "Уже зарегистрирован"
#. Label of the amount (Currency) field in DocType 'Web Form'
#. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the amount (Currency) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:209 lms/fixtures/custom_field.json
#: frontend/src/pages/BatchForm.vue:221 lms/fixtures/custom_field.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/public/js/common_functions.js:379
@@ -258,11 +258,11 @@ msgstr ""
msgid "Amount with GST"
msgstr "Сумма с НДС"
#: frontend/src/components/Modals/AnnouncementModal.vue:32
#: frontend/src/components/Modals/AnnouncementModal.vue:33
msgid "Announcement"
msgstr "Объявление"
#: frontend/src/components/Modals/AnnouncementModal.vue:99
#: frontend/src/components/Modals/AnnouncementModal.vue:100
msgid "Announcement has been sent successfully"
msgstr ""
@@ -280,7 +280,7 @@ msgstr "Отвечать"
msgid "Appears on the course card in the course list"
msgstr ""
#: frontend/src/pages/BatchForm.vue:55 frontend/src/pages/BatchForm.vue:73
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/BatchForm.vue:77
msgid "Appears when the batch URL is shared on any online platform"
msgstr ""
@@ -319,10 +319,6 @@ msgstr "Утвержден"
msgid "Apps"
msgstr ""
#: frontend/src/components/CourseOutline.vue:209
msgid "Are you sure you want to delete this lesson?"
msgstr ""
#. Label of the user_category (Check) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Ask User Category during Signup"
@@ -420,7 +416,7 @@ msgid "Auto Assign"
msgstr "Автоназначение"
#. Label of the auto_recording (Select) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/LiveClassModal.vue:66
#: frontend/src/components/Modals/LiveClassModal.vue:71
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Auto Recording"
msgstr "Авто. запись"
@@ -482,7 +478,8 @@ msgid "Batch Description"
msgstr "Описание группы"
#. Label of the batch_details (Text Editor) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:98 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:104
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:349
#: lms/templates/emails/batch_confirmation.html:30
msgid "Batch Details"
@@ -547,10 +544,6 @@ msgstr "Группа обновлена"
msgid "Batch end date cannot be before the batch start date"
msgstr ""
#: lms/lms/web_form/add_a_new_batch/add_a_new_batch.js:6
msgid "Batch {0} has been successfully created!"
msgstr "Группа {0} успешно создана!"
#. Group in LMS Course's connections
#. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue:8 lms/lms/doctype/lms_course/lms_course.json
@@ -581,7 +574,7 @@ msgstr "Платёжные реквизиты"
msgid "Billing Name"
msgstr "Имя плательщика"
#: frontend/src/components/Modals/EditProfile.vue:72
#: frontend/src/components/Modals/EditProfile.vue:75
msgid "Bio"
msgstr "О себе"
@@ -649,7 +642,7 @@ msgstr ""
#. Label of the category (Link) field in DocType 'LMS Batch'
#. Label of the category (Data) field in DocType 'LMS Category'
#. Label of the category (Link) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/BatchForm.vue:202 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/JobDetail.vue:102
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -734,6 +727,14 @@ msgstr "Глава"
msgid "Chapter Reference"
msgstr "Ссылка на главу"
#: frontend/src/components/Modals/ChapterModal.vue:149
msgid "Chapter added successfully"
msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:193
msgid "Chapter updated successfully"
msgstr ""
#. Label of the chapters (Table) field in DocType 'LMS Course'
#. Group in LMS Course's connections
#: lms/lms/doctype/lms_course/lms_course.json
@@ -987,7 +988,7 @@ msgid "Contact the Administrator to enroll for this course."
msgstr ""
#. Label of the content (Text) field in DocType 'Course Lesson'
#: frontend/src/pages/LessonForm.vue:53
#: frontend/src/pages/LessonForm.vue:58
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Content"
msgstr "Содержание"
@@ -997,6 +998,7 @@ msgid "Continue Learning"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:117
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Contract"
msgstr ""
@@ -1060,7 +1062,7 @@ msgstr ""
#. Label of the course (Link) field in DocType 'Related Courses'
#. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/BatchCourseModal.vue:17
#: frontend/src/components/Modals/BatchCourseModal.vue:20
#: frontend/src/components/Modals/EvaluationModal.vue:20
#: frontend/src/components/Modals/Event.vue:24
#: lms/lms/doctype/batch_course/batch_course.json
@@ -1153,6 +1155,10 @@ msgstr "Список курсов"
msgid "Course Name"
msgstr "Название курса"
#: frontend/src/pages/CourseDetail.vue:74
msgid "Course Outline"
msgstr ""
#. Label of the course_price (Currency) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:219
#: lms/lms/doctype/lms_course/lms_course.json
@@ -1175,9 +1181,11 @@ msgid "Course Stats"
msgstr "Статистика курса"
#. Label of the title (Data) field in DocType 'Batch Course'
#. Label of the course_title (Data) field in DocType 'Course Chapter'
#. Label of the course_title (Data) field in DocType 'LMS Certificate'
#. Label of the course_title (Data) field in DocType 'LMS Certificate Request'
#: lms/lms/doctype/batch_course/batch_course.json
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
msgid "Course Title"
@@ -1257,7 +1265,7 @@ msgstr ""
#. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course'
#. Label of the currency (Link) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:226
#: frontend/src/pages/BatchForm.vue:229 frontend/src/pages/CourseForm.vue:226
#: lms/fixtures/custom_field.json lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_payment/lms_payment.json
@@ -1303,7 +1311,7 @@ msgstr "Панель"
#. Label of the date (Date) field in DocType 'Scheduled Flow'
#: frontend/src/components/Modals/EvaluationModal.vue:26
#: frontend/src/components/Modals/Event.vue:40
#: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Modals/LiveClassModal.vue:55
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
@@ -1315,7 +1323,7 @@ msgstr ""
#. Label of the section_break_glxh (Section Break) field in DocType 'LMS Live
#. Class'
#: frontend/src/pages/BatchForm.vue:111
#: frontend/src/pages/BatchForm.vue:118
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Date and Time"
msgstr "Дата и время"
@@ -1350,23 +1358,40 @@ msgstr "Валюта по умолчания"
msgid "Degree Type"
msgstr "Тип степени"
#: frontend/src/components/CourseOutline.vue:212
#: frontend/src/components/CourseOutline.vue:235
#: frontend/src/components/CourseOutline.vue:293
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:470
msgid "Delete"
msgstr ""
#: frontend/src/components/CourseOutline.vue:52
msgid "Delete Chapter"
msgstr ""
#: frontend/src/pages/CourseForm.vue:464
msgid "Delete Course"
msgstr ""
#: frontend/src/components/CourseOutline.vue:208
msgid "Delete Lesson"
#: frontend/src/components/CourseOutline.vue:287
msgid "Delete this chapter?"
msgstr ""
#: frontend/src/components/CourseOutline.vue:229
msgid "Delete this lesson?"
msgstr ""
#: frontend/src/pages/CourseForm.vue:465
msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?"
msgstr ""
#: frontend/src/components/CourseOutline.vue:288
msgid "Deleting this chapter will also delete all its lessons and permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?"
msgstr ""
#: frontend/src/components/CourseOutline.vue:230
msgid "Deleting this lesson will permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?"
msgstr ""
#. Label of the description (Text Editor) field in DocType 'Job Opportunity'
#. Label of the description (Small Text) field in DocType 'Certification'
#. Label of the description (Markdown Editor) field in DocType 'Cohort'
@@ -1379,8 +1404,8 @@ msgstr ""
#. Label of the description (Small Text) field in DocType 'LMS Exercise'
#. Label of the description (Text) field in DocType 'LMS Live Class'
#. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:73
#: frontend/src/pages/BatchForm.vue:91 frontend/src/pages/JobCreation.vue:43
#: frontend/src/components/Modals/LiveClassModal.vue:78
#: frontend/src/pages/BatchForm.vue:96 frontend/src/pages/JobCreation.vue:43
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json
@@ -1426,7 +1451,7 @@ msgid "Discard"
msgstr "Отменить"
#. Label of the show_discussions (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batch.vue:69
#: frontend/src/pages/Batch.vue:73
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Discussions"
msgstr "Обсуждения"
@@ -1453,7 +1478,7 @@ msgstr "Для этого вопроса найдены дубликаты ва
#. Label of the duration (Data) field in DocType 'LMS Batch Timetable'
#. Label of the duration (Int) field in DocType 'LMS Live Class'
#. Label of the duration (Duration) field in DocType 'LMS Quiz'
#: frontend/src/components/Modals/LiveClassModal.vue:58
#: frontend/src/components/Modals/LiveClassModal.vue:62
#: lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -1465,7 +1490,7 @@ msgstr ""
msgid "Duration (in minutes)"
msgstr ""
#: frontend/src/components/Modals/LiveClassModal.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:58
msgid "Duration of the live class in minutes"
msgstr "Продолжительность живого занятия в минутах"
@@ -1487,7 +1512,7 @@ msgstr "E-mail"
msgid "Edit"
msgstr ""
#: frontend/src/components/CourseOutline.vue:106
#: frontend/src/components/CourseOutline.vue:45
#: frontend/src/components/Modals/ChapterModal.vue:5
msgid "Edit Chapter"
msgstr "Редактировать главу"
@@ -1564,7 +1589,7 @@ msgstr "Включено"
#. Label of the end_date (Date) field in DocType 'Cohort'
#. Label of the end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:123 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/BatchForm.vue:131 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:282
msgid "End Date"
@@ -1582,7 +1607,7 @@ msgstr "Дата окончания (или ожидаемая)"
#. Label of the end_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the end_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the end_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:137
#: frontend/src/pages/BatchForm.vue:147
#: frontend/src/pages/ProfileEvaluator.vue:18
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1618,7 +1643,7 @@ msgstr "Подтверждение регистрации на следующу
msgid "Enrollment Count"
msgstr "Количество регистраций"
#: lms/lms/utils.py:1690
#: lms/lms/utils.py:1702
msgid "Enrollment Failed"
msgstr ""
@@ -1646,7 +1671,10 @@ msgstr ""
msgid "Enter the correct answer"
msgstr "Введите правильный ответ"
#: frontend/src/components/Modals/AnnouncementModal.vue:104
#: frontend/src/components/Modals/AnnouncementModal.vue:105
#: frontend/src/components/Modals/ChapterModal.vue:154
#: frontend/src/components/Modals/ChapterModal.vue:161
#: frontend/src/components/Modals/ChapterModal.vue:197
#: frontend/src/components/Modals/Question.vue:246
#: frontend/src/components/Modals/Question.vue:266
#: frontend/src/components/Modals/Question.vue:323
@@ -1669,7 +1697,7 @@ msgid "Evaluation Details"
msgstr "Подробности оценки"
#. Label of the evaluation_end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:166
#: frontend/src/pages/BatchForm.vue:178
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:333
msgid "Evaluation End Date"
@@ -1694,7 +1722,7 @@ msgstr ""
#. Label of the evaluator (Link) field in DocType 'LMS Certificate'
#. Label of the evaluator (Link) field in DocType 'LMS Certificate Evaluation'
#. Label of the evaluator (Link) field in DocType 'LMS Certificate Request'
#: frontend/src/components/Modals/BatchCourseModal.vue:21
#: frontend/src/components/Modals/BatchCourseModal.vue:26
#: frontend/src/pages/ProfileRoles.vue:22
#: lms/lms/doctype/batch_course/batch_course.json
#: lms/lms/doctype/course_evaluator/course_evaluator.json
@@ -1733,7 +1761,7 @@ msgstr ""
msgid "Event"
msgstr "Событие"
#: frontend/src/pages/BatchForm.vue:145
#: frontend/src/pages/BatchForm.vue:156
msgid "Example: IST (+5:30)"
msgstr ""
@@ -1860,6 +1888,7 @@ msgid "Free"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:118
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Freelance"
msgstr "Фриланс"
@@ -1899,6 +1928,7 @@ msgid "Full Name"
msgstr "Полное имя"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:115
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Full Time"
msgstr "Полная занятость"
@@ -1981,11 +2011,6 @@ msgstr "Заголовок"
msgid "Hello"
msgstr "Привет"
#. Label of the help_section (Section Break) field in DocType 'Course Lesson'
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Help"
msgstr ""
#: lms/templates/courses_created.html:15
msgid "Help others learn something new by creating a course."
msgstr "Помогите другим узнать что-то новое, создав курс."
@@ -2164,9 +2189,7 @@ msgstr "Неправильно"
msgid "Index"
msgstr "Индекс"
#. Label of the index_label (Data) field in DocType 'Course Lesson'
#. Label of the index_label (Data) field in DocType 'LMS Exercise'
#: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_exercise/lms_exercise.json
msgid "Index Label"
msgstr "Индексная метка"
@@ -2203,14 +2226,14 @@ msgstr "Содержание инструктора"
#. Label of the instructor_notes (Markdown Editor) field in DocType 'Course
#. Lesson'
#: frontend/src/pages/Lesson.vue:125 frontend/src/pages/LessonForm.vue:33
#: frontend/src/pages/Lesson.vue:128 frontend/src/pages/LessonForm.vue:38
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Instructor Notes"
msgstr "Заметки инструктора"
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch'
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:85 frontend/src/pages/CourseForm.vue:154
#: frontend/src/pages/BatchForm.vue:89 frontend/src/pages/CourseForm.vue:154
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Instructors"
@@ -2238,10 +2261,6 @@ msgstr "Неверный код приглашения."
msgid "Invalid Quiz ID"
msgstr "Неверный идентификатор теста"
#: lms/lms/web_form/add_a_new_batch/add_a_new_batch.js:38
msgid "Invalid Start or End Time."
msgstr "Неверное время начала или окончания."
#. Label of the invite_code (Data) field in DocType 'Cohort Subgroup'
#. Label of the invite_code (Data) field in DocType 'Invite Request'
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
@@ -2281,6 +2300,14 @@ msgstr "Правильно"
msgid "Is Onboarding Complete"
msgstr "Завершена ли адаптация?"
#. Label of the is_scorm_package (Check) field in DocType 'Course Chapter'
#. Label of the is_scorm_package (Check) field in DocType 'Course Lesson'
#: frontend/src/components/Modals/ChapterModal.vue:26
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Is SCORM Package"
msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/Event.vue:121
@@ -2355,7 +2382,7 @@ msgstr "Должность"
msgid "Jobs"
msgstr "Вакансии"
#: frontend/src/components/LiveClass.vue:54
#: frontend/src/components/LiveClass.vue:55
#: lms/templates/upcoming_evals.html:15
msgid "Join"
msgstr ""
@@ -2593,6 +2620,11 @@ msgstr "Фамилия"
msgid "Latest Submission"
msgstr "Последняя подача"
#. Label of the launch_file (Code) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "Launch File"
msgstr ""
#. Label of the lesson (Link) field in DocType 'Exercise Latest Submission'
#. Label of the lesson (Link) field in DocType 'Exercise Submission'
#. Label of the lesson (Link) field in DocType 'Lesson Reference'
@@ -2722,7 +2754,7 @@ msgid "Location Preference"
msgstr ""
#: frontend/src/components/NoPermission.vue:28
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:163
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:167
#: frontend/src/pages/Lesson.vue:24
msgid "Login"
msgstr "Логин"
@@ -2759,6 +2791,11 @@ msgstr ""
msgid "Manager (Sales/Marketing/Customer)"
msgstr "Менеджер (продажи/маркетинг/работа с клиентами)"
#. Label of the manifest_file (Code) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "Manifest File"
msgstr ""
#: frontend/src/components/Quiz.vue:94
msgid "Mark"
msgstr "Отметка"
@@ -2803,7 +2840,7 @@ msgid "Maximun Attempts"
msgstr ""
#. Label of the medium (Select) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:185
#: frontend/src/pages/BatchForm.vue:197
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:309
msgid "Medium"
@@ -2951,7 +2988,7 @@ msgid "Mentors"
msgstr "Наставник"
#. Label of the meta_image (Attach Image) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:36 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:40 lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:362
msgid "Meta Image"
msgstr "Мета изображение"
@@ -2987,11 +3024,11 @@ msgstr "Модератор"
msgid "Modified By"
msgstr "Изменено"
#: lms/lms/api.py:191
#: lms/lms/api.py:197
msgid "Module Name is incorrect or does not exist."
msgstr "Имя модуля неверно или не существует."
#: lms/lms/api.py:187
#: lms/lms/api.py:193
msgid "Module is incorrect."
msgstr "Модуль неверный."
@@ -3037,7 +3074,7 @@ msgstr "Новая группа"
msgid "New Course"
msgstr "Новый курс"
#: frontend/src/pages/Jobs.vue:24
#: frontend/src/pages/Jobs.vue:39
msgid "New Job"
msgstr "Новая Вакансия"
@@ -3124,11 +3161,11 @@ msgstr "Нет рассматриваемых курсов"
msgid "No introduction"
msgstr "Без введения"
#: frontend/src/pages/Jobs.vue:45
#: frontend/src/pages/Jobs.vue:60
msgid "No jobs posted"
msgstr "Вакансии не опубликованы"
#: frontend/src/components/LiveClass.vue:60
#: frontend/src/components/LiveClass.vue:61
msgid "No live classes scheduled"
msgstr "Не запланированы онлайн-курсы"
@@ -3184,7 +3221,7 @@ msgstr "Недоступно для предварительного просм
msgid "Not Graded"
msgstr "Нет оценки"
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:131
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:135
msgid "Not Permitted"
msgstr ""
@@ -3208,7 +3245,7 @@ msgstr "Уведомления"
msgid "Notify me when available"
msgstr "Сообщите мне, когда появится"
#: frontend/src/pages/BatchForm.vue:162
#: frontend/src/pages/BatchForm.vue:174
msgid "Number of seats available"
msgstr ""
@@ -3248,6 +3285,10 @@ msgstr "Принимаются только файлы типа {0} ."
msgid "Only image file is allowed."
msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:223
msgid "Only zip files are allowed"
msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Job Opportunity'
#. Option for the 'Membership' (Select) field in DocType 'LMS Batch Old'
#: frontend/src/pages/QuizForm.vue:17
@@ -3352,7 +3393,7 @@ msgid "Pages"
msgstr "Страницы"
#. Label of the paid_batch (Check) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:205
#: frontend/src/pages/BatchForm.vue:217
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:373
msgid "Paid Batch"
@@ -3369,6 +3410,7 @@ msgid "Pan Number"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:116
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Part Time"
msgstr "Неполная занятость"
@@ -3407,7 +3449,7 @@ msgstr ""
#. Label of the payment (Link) field in DocType 'Batch Student'
#. Label of the payment (Link) field in DocType 'LMS Enrollment'
#: frontend/src/pages/BatchForm.vue:199
#: frontend/src/pages/BatchForm.vue:211
#: lms/lms/doctype/batch_student/batch_student.json
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
msgid "Payment"
@@ -3523,6 +3565,10 @@ msgstr "Нажмите на следующую кнопку, чтобы уста
msgid "Please enable Zoom Settings to use this feature."
msgstr "Чтобы использовать эту функцию, включите настройки Zoom."
#: frontend/src/components/CourseOutline.vue:312
msgid "Please enroll for this course to view this lesson"
msgstr ""
#: frontend/src/components/Quiz.vue:13
msgid "Please ensure that you complete all the questions in {0} minutes."
msgstr ""
@@ -3556,11 +3602,11 @@ msgstr ""
msgid "Please login to access the quiz."
msgstr "Пожалуйста, войдите в систему, чтобы получить доступ к тесту."
#: frontend/src/components/NoPermission.vue:25 frontend/src/pages/Batch.vue:142
#: frontend/src/components/NoPermission.vue:25 frontend/src/pages/Batch.vue:146
msgid "Please login to access this page."
msgstr "Пожалуйста, войдите в систему, чтобы получить доступ к этой странице."
#: lms/lms/api.py:183
#: lms/lms/api.py:189
msgid "Please login to continue with payment."
msgstr "Пожалуйста, войдите в систему, чтобы продолжить оплату."
@@ -3573,6 +3619,10 @@ msgstr "Пожалуйста, хорошо подготовьтесь и при
msgid "Please take appropriate action at {0}"
msgstr "Пожалуйста, примите соответствующие меры в {0}"
#: frontend/src/components/Modals/ChapterModal.vue:172
msgid "Please upload a SCORM package"
msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:95
msgid "Please upload the assignment file."
msgstr "Пожалуйста, загрузите файл задания."
@@ -3730,7 +3780,7 @@ msgstr "Опубликовать на странице участника"
#. Label of the published (Check) field in DocType 'LMS Batch'
#. Label of the published (Check) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:108
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:171
#: frontend/src/pages/BatchForm.vue:28 frontend/src/pages/CourseForm.vue:171
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:266
@@ -3941,11 +3991,11 @@ msgstr "Отклонено"
msgid "Related Courses"
msgstr "Похожие курсы"
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/CourseForm.vue:99
#: frontend/src/pages/BatchForm.vue:73 frontend/src/pages/CourseForm.vue:99
msgid "Remove"
msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:26
#: frontend/src/components/Modals/AnnouncementModal.vue:27
msgid "Reply To"
msgstr "Ответить"
@@ -4039,6 +4089,21 @@ msgstr "В строках {0} есть повторяющиеся вопросы
msgid "Run"
msgstr "Запуск"
#. Label of the scorm_section (Section Break) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "SCORM"
msgstr ""
#. Label of the scorm_package (Link) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "SCORM Package"
msgstr ""
#. Label of the scorm_package_path (Code) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "SCORM Package Path"
msgstr ""
#. Option for the 'Day' (Select) field in DocType 'Evaluator Schedule'
#. Option for the 'Day' (Select) field in DocType 'LMS Certificate Request'
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
@@ -4100,7 +4165,7 @@ msgid "Search for an icon"
msgstr "Поиск значка"
#. Label of the seat_count (Int) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:159
#: frontend/src/pages/BatchForm.vue:171
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:327
msgid "Seat Count"
@@ -4144,7 +4209,7 @@ msgid "Set your Password"
msgstr "Введите свой пароль"
#: frontend/src/components/Modals/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:153 frontend/src/pages/CourseForm.vue:161
#: frontend/src/pages/BatchForm.vue:165 frontend/src/pages/CourseForm.vue:161
#: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:78
msgid "Settings"
msgstr ""
@@ -4159,7 +4224,7 @@ msgstr "Поделиться"
msgid "Short Introduction"
msgstr "Краткое введение"
#: frontend/src/pages/BatchForm.vue:94
#: frontend/src/pages/BatchForm.vue:99
msgid "Short description of the batch"
msgstr ""
@@ -4323,7 +4388,7 @@ msgstr ""
#. Label of the start_date (Date) field in DocType 'Education Detail'
#. Label of the start_date (Date) field in DocType 'LMS Batch'
#. Label of the start_date (Date) field in DocType 'LMS Batch Old'
#: frontend/src/pages/BatchForm.vue:117
#: frontend/src/pages/BatchForm.vue:124
#: lms/lms/doctype/education_detail/education_detail.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -4332,7 +4397,7 @@ msgid "Start Date"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:63
#: frontend/src/pages/Lesson.vue:21
#: frontend/src/pages/Lesson.vue:21 frontend/src/pages/SCORMChapter.vue:28
#: lms/templates/emails/lms_course_interest.html:9
msgid "Start Learning"
msgstr "Начать изучение"
@@ -4344,7 +4409,7 @@ msgstr "Начать изучение"
#. Label of the start_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the start_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the start_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:131
#: frontend/src/pages/BatchForm.vue:140
#: frontend/src/pages/ProfileEvaluator.vue:15
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -4361,19 +4426,11 @@ msgstr "Время начала"
msgid "Start Time cannot be greater than End Time"
msgstr "Время начала не может быть позже времени окончания"
#: lms/lms/web_form/add_a_new_batch/add_a_new_batch.js:43
msgid "Start Time should be less than End Time."
msgstr "Время начала должно быть меньше времени окончания"
#. Label of the start_url (Small Text) field in DocType 'LMS Live Class'
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Start URL"
msgstr "Стартовый URL"
#: lms/lms/web_form/add_a_new_batch/add_a_new_batch.js:30
msgid "Start date cannot be a past date."
msgstr ""
#. Option for the 'Company Type' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Startup Organization"
@@ -4516,8 +4573,10 @@ msgstr "Отправлено {0}"
#: frontend/src/components/BatchOverlay.vue:135
#: frontend/src/components/BatchStudents.vue:157
#: frontend/src/components/CourseCardOverlay.vue:161
#: frontend/src/components/Modals/AnnouncementModal.vue:98
#: frontend/src/components/Modals/AnnouncementModal.vue:99
#: frontend/src/components/Modals/AssessmentModal.vue:73
#: frontend/src/components/Modals/ChapterModal.vue:148
#: frontend/src/components/Modals/ChapterModal.vue:193
#: frontend/src/components/Modals/Event.vue:255
#: frontend/src/components/Modals/Event.vue:310
#: frontend/src/components/Modals/Question.vue:261
@@ -4713,10 +4772,14 @@ msgstr "Этот сертификат является бессрочным"
msgid "This course has:"
msgstr ""
#: lms/lms/utils.py:1570
#: lms/lms/utils.py:1582
msgid "This course is free."
msgstr "Этот курс бесплатный."
#: frontend/src/pages/SCORMChapter.vue:198
msgid "This is a chapter in the course {0}"
msgstr ""
#: lms/lms/widgets/CourseOutline.html:62
msgid "This lesson is not available for preview. As you are the Instructor of the course only you can see it."
msgstr "Этот урок недоступен для предварительного просмотра. Так как вы являетесь инструктором курса, только вы можете его увидеть."
@@ -4742,7 +4805,7 @@ msgstr "Четверг"
#. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48
#: frontend/src/components/Modals/LiveClassModal.vue:36
#: frontend/src/components/Modals/LiveClassModal.vue:37
#: frontend/src/components/Quiz.vue:44
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Time"
@@ -4753,7 +4816,7 @@ msgstr "Время "
msgid "Time Preference"
msgstr ""
#: frontend/src/components/Modals/LiveClassModal.vue:28
#: frontend/src/components/Modals/LiveClassModal.vue:29
msgid "Time must be in 24 hour format (HH:mm). Example 11:30 or 22:00"
msgstr "Время должно быть в 24-часовом формате (ЧЧ:мм). Например, 11:30 или 22:00"
@@ -4781,8 +4844,8 @@ msgstr "Шаблон расписания"
#. Label of the timezone (Data) field in DocType 'LMS Batch'
#. Label of the timezone (Data) field in DocType 'LMS Certificate Request'
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/LiveClassModal.vue:44
#: frontend/src/pages/BatchForm.vue:143
#: frontend/src/components/Modals/LiveClassModal.vue:46
#: frontend/src/pages/BatchForm.vue:154
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -4811,7 +4874,7 @@ msgstr "Сроки:"
#. Label of the title (Data) field in DocType 'Work Experience'
#: frontend/src/components/Modals/DiscussionModal.vue:18
#: frontend/src/components/Modals/LiveClassModal.vue:23
#: frontend/src/pages/BatchForm.vue:18 frontend/src/pages/CourseForm.vue:32
#: frontend/src/pages/BatchForm.vue:20 frontend/src/pages/CourseForm.vue:32
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/QuizForm.vue:48
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
@@ -4833,6 +4896,10 @@ msgstr "Сроки:"
msgid "Title"
msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:169
msgid "Title is required"
msgstr ""
#. Label of the unavailable_to (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:98
#: lms/lms/doctype/course_evaluator/course_evaluator.json
@@ -4844,11 +4911,7 @@ msgstr ""
msgid "To Date"
msgstr ""
#: lms/lms/web_form/profile/profile.js:19
msgid "To Date is mandatory in Work Experience."
msgstr "В графе «Опыт работы» обязательно должно быть указано «На сегодняшний день»."
#: lms/lms/utils.py:1581
#: lms/lms/utils.py:1593
msgid "To join this batch, please contact the Administrator."
msgstr "Чтобы присоединиться к этой группе, свяжитесь с администратором."
@@ -4902,7 +4965,7 @@ msgstr "Twitter"
#. Label of the type (Select) field in DocType 'LMS Quiz Question'
#: frontend/src/components/Modals/AssessmentModal.vue:22
#: frontend/src/components/Modals/Question.vue:54
#: frontend/src/pages/JobCreation.vue:28
#: frontend/src/pages/JobCreation.vue:28 frontend/src/pages/Jobs.vue:16
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/lms_assignment/lms_assignment.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
@@ -4970,7 +5033,7 @@ msgstr ""
msgid "Upcoming"
msgstr "Предстоящие"
#: frontend/src/pages/Batch.vue:154
#: frontend/src/pages/Batch.vue:158
msgid "Upcoming Batches"
msgstr "Предстоящие группы"
@@ -4989,7 +5052,7 @@ msgstr ""
msgid "Update Password"
msgstr ""
#: frontend/src/pages/BatchForm.vue:51 frontend/src/pages/CourseForm.vue:80
#: frontend/src/pages/BatchForm.vue:55 frontend/src/pages/CourseForm.vue:80
msgid "Upload"
msgstr ""
@@ -5172,15 +5235,15 @@ msgstr "Напишите свой ответ здесь"
msgid "You already have an evaluation on {0} at {1} for the course {2}."
msgstr "У вас уже есть оценка {0} в {1} для курса {2}."
#: lms/lms/api.py:207
#: lms/lms/api.py:213
msgid "You are already enrolled for this batch."
msgstr "Вы уже зачислены в эту группу."
#: lms/lms/api.py:199
#: lms/lms/api.py:205
msgid "You are already enrolled for this course."
msgstr "Вы уже зачислены на этот курс."
#: frontend/src/pages/Batch.vue:136
#: frontend/src/pages/Batch.vue:140
msgid "You are not a member of this batch. Please checkout our upcoming batches."
msgstr "Вы не являетесь участником этой группы. Пожалуйста, ознакомьтесь с нашими группами."
@@ -5188,6 +5251,14 @@ msgstr "Вы не являетесь участником этой группы.
msgid "You are not a mentor of the course {0}"
msgstr "Вы не являетесь наставником курса {0}"
#: frontend/src/components/CourseOutline.vue:311
msgid "You are not enrolled"
msgstr ""
#: frontend/src/pages/SCORMChapter.vue:22
msgid "You are not enrolled in this course. Please enroll to access this lesson."
msgstr ""
#: frontend/src/pages/Courses.vue:134
msgid "You can add chapters and lessons to it."
msgstr ""
@@ -5340,7 +5411,7 @@ msgstr "Настройки Zoom"
msgid "cancel your application"
msgstr "отменить заявку"
#: frontend/src/pages/Lesson.vue:170
#: frontend/src/pages/Lesson.vue:174
msgid "completed"
msgstr "завершенно"
@@ -5388,7 +5459,7 @@ msgstr "звезды"
msgid "you can"
msgstr "вы можете"
#: lms/lms/api.py:740 lms/lms/api.py:748
#: lms/lms/api.py:747 lms/lms/api.py:755
msgid "{0} Settings not found"
msgstr ""

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-11-08 16:04+0000\n"
"PO-Revision-Date: 2024-11-11 15:23\n"
"POT-Creation-Date: 2024-11-15 16:04+0000\n"
"PO-Revision-Date: 2024-11-18 17:31\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Swedish\n"
"MIME-Version: 1.0\n"
@@ -109,7 +109,7 @@ msgstr "Lägg till"
msgid "Add Chapter"
msgstr "Lägg till Kapitel"
#: frontend/src/components/CourseOutline.vue:102
#: frontend/src/components/CourseOutline.vue:124
msgid "Add Lesson"
msgstr "Lägg till Lektion"
@@ -217,7 +217,7 @@ msgstr "Tillåt självregistrering"
msgid "Allow accessing future dates"
msgstr "Tillåt åtkomst till framtida datum"
#: frontend/src/pages/BatchForm.vue:29
#: frontend/src/pages/BatchForm.vue:33
msgid "Allow self enrollment"
msgstr "Tillåt självregistrering"
@@ -228,7 +228,7 @@ msgstr "Redan Registrerad"
#. Label of the amount (Currency) field in DocType 'Web Form'
#. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the amount (Currency) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:209 lms/fixtures/custom_field.json
#: frontend/src/pages/BatchForm.vue:221 lms/fixtures/custom_field.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/public/js/common_functions.js:379
@@ -258,11 +258,11 @@ msgstr "Belopp Fält"
msgid "Amount with GST"
msgstr "Belopp med Moms"
#: frontend/src/components/Modals/AnnouncementModal.vue:32
#: frontend/src/components/Modals/AnnouncementModal.vue:33
msgid "Announcement"
msgstr "Meddelande"
#: frontend/src/components/Modals/AnnouncementModal.vue:99
#: frontend/src/components/Modals/AnnouncementModal.vue:100
msgid "Announcement has been sent successfully"
msgstr "Tillkännagivande är skickad"
@@ -280,7 +280,7 @@ msgstr "Svara"
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
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/BatchForm.vue:77
msgid "Appears when the batch URL is shared on any online platform"
msgstr "Visas när omgång URL delas på valfri online plattform"
@@ -319,10 +319,6 @@ msgstr "Godkänd"
msgid "Apps"
msgstr "Appar"
#: frontend/src/components/CourseOutline.vue:209
msgid "Are you sure you want to delete this lesson?"
msgstr "Är du säker på att du vill ta bort denna lektion?"
#. Label of the user_category (Check) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Ask User Category during Signup"
@@ -420,7 +416,7 @@ msgid "Auto Assign"
msgstr "Automatiskt Tilldela"
#. Label of the auto_recording (Select) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/LiveClassModal.vue:66
#: frontend/src/components/Modals/LiveClassModal.vue:71
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Auto Recording"
msgstr "Automatisk Inspelning"
@@ -482,7 +478,8 @@ msgid "Batch Description"
msgstr "Parti Beskrivning"
#. Label of the batch_details (Text Editor) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:98 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:104
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:349
#: lms/templates/emails/batch_confirmation.html:30
msgid "Batch Details"
@@ -547,10 +544,6 @@ msgstr "Grupp Uppdaterad"
msgid "Batch end date cannot be before the batch start date"
msgstr "Omgång slutdatum får inte vara före omgång startdatum"
#: lms/lms/web_form/add_a_new_batch/add_a_new_batch.js:6
msgid "Batch {0} has been successfully created!"
msgstr "Grupp {0} skapad!"
#. Group in LMS Course's connections
#. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue:8 lms/lms/doctype/lms_course/lms_course.json
@@ -581,7 +574,7 @@ msgstr "Faktura Detaljer"
msgid "Billing Name"
msgstr "Faktura Namn"
#: frontend/src/components/Modals/EditProfile.vue:72
#: frontend/src/components/Modals/EditProfile.vue:75
msgid "Bio"
msgstr "Resume"
@@ -649,7 +642,7 @@ msgstr "Fritidskläder"
#. Label of the category (Link) field in DocType 'LMS Batch'
#. Label of the category (Data) field in DocType 'LMS Category'
#. Label of the category (Link) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/BatchForm.vue:202 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/JobDetail.vue:102
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -734,6 +727,14 @@ msgstr "Kapitel"
msgid "Chapter Reference"
msgstr "Kapitel Referens"
#: frontend/src/components/Modals/ChapterModal.vue:149
msgid "Chapter added successfully"
msgstr "Kapitel tillagt"
#: frontend/src/components/Modals/ChapterModal.vue:193
msgid "Chapter updated successfully"
msgstr "Kapitel uppdaterad"
#. Label of the chapters (Table) field in DocType 'LMS Course'
#. Group in LMS Course's connections
#: lms/lms/doctype/lms_course/lms_course.json
@@ -987,7 +988,7 @@ msgid "Contact the Administrator to enroll for this course."
msgstr "Kontakta administratör för att registrera dig till denna kurs."
#. Label of the content (Text) field in DocType 'Course Lesson'
#: frontend/src/pages/LessonForm.vue:53
#: frontend/src/pages/LessonForm.vue:58
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Content"
msgstr "Innehåll "
@@ -997,6 +998,7 @@ msgid "Continue Learning"
msgstr "Fortsätt lära dig"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:117
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Contract"
msgstr "Avtal"
@@ -1060,7 +1062,7 @@ msgstr "Land"
#. Label of the course (Link) field in DocType 'Related Courses'
#. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/BatchCourseModal.vue:17
#: frontend/src/components/Modals/BatchCourseModal.vue:20
#: frontend/src/components/Modals/EvaluationModal.vue:20
#: frontend/src/components/Modals/Event.vue:24
#: lms/lms/doctype/batch_course/batch_course.json
@@ -1153,6 +1155,10 @@ msgstr "Kurslista"
msgid "Course Name"
msgstr "Kursnamn"
#: frontend/src/pages/CourseDetail.vue:74
msgid "Course Outline"
msgstr "Kursöversikt"
#. Label of the course_price (Currency) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:219
#: lms/lms/doctype/lms_course/lms_course.json
@@ -1175,9 +1181,11 @@ msgid "Course Stats"
msgstr "Kursstatistik"
#. Label of the title (Data) field in DocType 'Batch Course'
#. Label of the course_title (Data) field in DocType 'Course Chapter'
#. Label of the course_title (Data) field in DocType 'LMS Certificate'
#. Label of the course_title (Data) field in DocType 'LMS Certificate Request'
#: lms/lms/doctype/batch_course/batch_course.json
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
msgid "Course Title"
@@ -1257,7 +1265,7 @@ msgstr "Skapa ny fråga"
#. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course'
#. Label of the currency (Link) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:226
#: frontend/src/pages/BatchForm.vue:229 frontend/src/pages/CourseForm.vue:226
#: lms/fixtures/custom_field.json lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_payment/lms_payment.json
@@ -1303,7 +1311,7 @@ msgstr "Översikt Panel"
#. Label of the date (Date) field in DocType 'Scheduled Flow'
#: frontend/src/components/Modals/EvaluationModal.vue:26
#: frontend/src/components/Modals/Event.vue:40
#: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Modals/LiveClassModal.vue:55
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
@@ -1315,7 +1323,7 @@ msgstr "Datum"
#. Label of the section_break_glxh (Section Break) field in DocType 'LMS Live
#. Class'
#: frontend/src/pages/BatchForm.vue:111
#: frontend/src/pages/BatchForm.vue:118
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Date and Time"
msgstr "Datum och Tid"
@@ -1350,23 +1358,40 @@ msgstr "Standard Valuta"
msgid "Degree Type"
msgstr "Examen Typ"
#: frontend/src/components/CourseOutline.vue:212
#: frontend/src/components/CourseOutline.vue:235
#: frontend/src/components/CourseOutline.vue:293
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:470
msgid "Delete"
msgstr "Ta bort"
#: frontend/src/components/CourseOutline.vue:52
msgid "Delete Chapter"
msgstr "Ta bort Kapitel"
#: frontend/src/pages/CourseForm.vue:464
msgid "Delete Course"
msgstr "Ta bort kurs"
#: frontend/src/components/CourseOutline.vue:208
msgid "Delete Lesson"
msgstr "Ta bort Lektion"
#: frontend/src/components/CourseOutline.vue:287
msgid "Delete this chapter?"
msgstr "Ta bort detta kapitel?"
#: frontend/src/components/CourseOutline.vue:229
msgid "Delete this lesson?"
msgstr "Ta bort denna lektion?"
#: frontend/src/pages/CourseForm.vue:465
msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?"
msgstr "Om du tar bort kurs raderas också alla dess kapitel och lektioner. Är du säker på att du vill ta bort denna kurs?"
#: frontend/src/components/CourseOutline.vue:288
msgid "Deleting this chapter will also delete all its lessons and permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?"
msgstr "Borttagning av detta kapitel tar också bort alla dess lektioner och de tas bort permanent från kurs. Denna åtgärd kan inte ångras. Är du säker på att du vill fortsätta?"
#: frontend/src/components/CourseOutline.vue:230
msgid "Deleting this lesson will permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?"
msgstr "Borttagning av denna lektion kommer att ta bort den permanent från kurs. Denna åtgärd kan inte ångras. Är du säker på att du vill fortsätta?"
#. Label of the description (Text Editor) field in DocType 'Job Opportunity'
#. Label of the description (Small Text) field in DocType 'Certification'
#. Label of the description (Markdown Editor) field in DocType 'Cohort'
@@ -1379,8 +1404,8 @@ msgstr "Om du tar bort kurs raderas också alla dess kapitel och lektioner. Är
#. Label of the description (Small Text) field in DocType 'LMS Exercise'
#. Label of the description (Text) field in DocType 'LMS Live Class'
#. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:73
#: frontend/src/pages/BatchForm.vue:91 frontend/src/pages/JobCreation.vue:43
#: frontend/src/components/Modals/LiveClassModal.vue:78
#: frontend/src/pages/BatchForm.vue:96 frontend/src/pages/JobCreation.vue:43
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json
@@ -1426,7 +1451,7 @@ msgid "Discard"
msgstr "Avvisa"
#. Label of the show_discussions (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batch.vue:69
#: frontend/src/pages/Batch.vue:73
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Discussions"
msgstr "Diskussioner"
@@ -1453,7 +1478,7 @@ msgstr "Duplicerade alternativ hittades för denna fråga."
#. Label of the duration (Data) field in DocType 'LMS Batch Timetable'
#. Label of the duration (Int) field in DocType 'LMS Live Class'
#. Label of the duration (Duration) field in DocType 'LMS Quiz'
#: frontend/src/components/Modals/LiveClassModal.vue:58
#: frontend/src/components/Modals/LiveClassModal.vue:62
#: lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -1465,7 +1490,7 @@ msgstr "Varaktighet"
msgid "Duration (in minutes)"
msgstr "Varaktighet (i minuter)"
#: frontend/src/components/Modals/LiveClassModal.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:58
msgid "Duration of the live class in minutes"
msgstr "Livelektion varaktighet i minuter"
@@ -1487,7 +1512,7 @@ msgstr "E-post"
msgid "Edit"
msgstr "Redigera"
#: frontend/src/components/CourseOutline.vue:106
#: frontend/src/components/CourseOutline.vue:45
#: frontend/src/components/Modals/ChapterModal.vue:5
msgid "Edit Chapter"
msgstr "Redigera Kapitel"
@@ -1564,7 +1589,7 @@ msgstr "Aktiverad"
#. Label of the end_date (Date) field in DocType 'Cohort'
#. Label of the end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:123 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/BatchForm.vue:131 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:282
msgid "End Date"
@@ -1582,7 +1607,7 @@ msgstr "Slutdatum (eller förväntat)"
#. Label of the end_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the end_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the end_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:137
#: frontend/src/pages/BatchForm.vue:147
#: frontend/src/pages/ProfileEvaluator.vue:18
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1618,7 +1643,7 @@ msgstr "Inskrivining bekräftelse för nästa omgång utbildning"
msgid "Enrollment Count"
msgstr "Antal Inskrivna"
#: lms/lms/utils.py:1690
#: lms/lms/utils.py:1702
msgid "Enrollment Failed"
msgstr "Registrering Misslyckad"
@@ -1646,7 +1671,10 @@ msgstr "Ange titel och spara frågesport för att fortsätta"
msgid "Enter the correct answer"
msgstr "Ange korrekt svar"
#: frontend/src/components/Modals/AnnouncementModal.vue:104
#: frontend/src/components/Modals/AnnouncementModal.vue:105
#: frontend/src/components/Modals/ChapterModal.vue:154
#: frontend/src/components/Modals/ChapterModal.vue:161
#: frontend/src/components/Modals/ChapterModal.vue:197
#: frontend/src/components/Modals/Question.vue:246
#: frontend/src/components/Modals/Question.vue:266
#: frontend/src/components/Modals/Question.vue:323
@@ -1669,7 +1697,7 @@ msgid "Evaluation Details"
msgstr "Utvärdering Detaljer"
#. Label of the evaluation_end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:166
#: frontend/src/pages/BatchForm.vue:178
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:333
msgid "Evaluation End Date"
@@ -1694,7 +1722,7 @@ msgstr "Utvärdering sparad"
#. Label of the evaluator (Link) field in DocType 'LMS Certificate'
#. Label of the evaluator (Link) field in DocType 'LMS Certificate Evaluation'
#. Label of the evaluator (Link) field in DocType 'LMS Certificate Request'
#: frontend/src/components/Modals/BatchCourseModal.vue:21
#: frontend/src/components/Modals/BatchCourseModal.vue:26
#: frontend/src/pages/ProfileRoles.vue:22
#: lms/lms/doctype/batch_course/batch_course.json
#: lms/lms/doctype/course_evaluator/course_evaluator.json
@@ -1733,7 +1761,7 @@ msgstr "Utvärderare är inte tillgänglig"
msgid "Event"
msgstr "Händelse"
#: frontend/src/pages/BatchForm.vue:145
#: frontend/src/pages/BatchForm.vue:156
msgid "Example: IST (+5:30)"
msgstr "Exempel: IST (+5:30)"
@@ -1860,6 +1888,7 @@ msgid "Free"
msgstr "Gratis"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:118
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Freelance"
msgstr "Frilansare"
@@ -1899,6 +1928,7 @@ msgid "Full Name"
msgstr "Fullständig Namn"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:115
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Full Time"
msgstr "Heltid"
@@ -1981,11 +2011,6 @@ msgstr "Huvudrubrik"
msgid "Hello"
msgstr "Hej"
#. Label of the help_section (Section Break) field in DocType 'Course Lesson'
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Help"
msgstr "Hjälp"
#: lms/templates/courses_created.html:15
msgid "Help others learn something new by creating a course."
msgstr "Hjälp andra att lära sig något nytt genom att skapa kurs."
@@ -2164,9 +2189,7 @@ msgstr "Inkorrekt"
msgid "Index"
msgstr "Index"
#. Label of the index_label (Data) field in DocType 'Course Lesson'
#. Label of the index_label (Data) field in DocType 'LMS Exercise'
#: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_exercise/lms_exercise.json
msgid "Index Label"
msgstr "Index Etikett"
@@ -2203,14 +2226,14 @@ msgstr "Lärares Innehåll"
#. Label of the instructor_notes (Markdown Editor) field in DocType 'Course
#. Lesson'
#: frontend/src/pages/Lesson.vue:125 frontend/src/pages/LessonForm.vue:33
#: frontend/src/pages/Lesson.vue:128 frontend/src/pages/LessonForm.vue:38
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Instructor Notes"
msgstr "Lärare Anteckningar"
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch'
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:85 frontend/src/pages/CourseForm.vue:154
#: frontend/src/pages/BatchForm.vue:89 frontend/src/pages/CourseForm.vue:154
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Instructors"
@@ -2238,10 +2261,6 @@ msgstr "Ogiltig Inbjudan Kod."
msgid "Invalid Quiz ID"
msgstr "Ogiltigt Frågesport ID"
#: lms/lms/web_form/add_a_new_batch/add_a_new_batch.js:38
msgid "Invalid Start or End Time."
msgstr "Ogiltig Start eller Sluttid."
#. Label of the invite_code (Data) field in DocType 'Cohort Subgroup'
#. Label of the invite_code (Data) field in DocType 'Invite Request'
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
@@ -2281,6 +2300,14 @@ msgstr "Är korrekt"
msgid "Is Onboarding Complete"
msgstr "Är Introduktion Klar"
#. Label of the is_scorm_package (Check) field in DocType 'Course Chapter'
#. Label of the is_scorm_package (Check) field in DocType 'Course Lesson'
#: frontend/src/components/Modals/ChapterModal.vue:26
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Is SCORM Package"
msgstr "Är SCORM App"
#. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/Event.vue:121
@@ -2355,7 +2382,7 @@ msgstr "Jobb Titel"
msgid "Jobs"
msgstr "Jobb"
#: frontend/src/components/LiveClass.vue:54
#: frontend/src/components/LiveClass.vue:55
#: lms/templates/upcoming_evals.html:15
msgid "Join"
msgstr "Anslut"
@@ -2593,6 +2620,11 @@ msgstr "Efternamn"
msgid "Latest Submission"
msgstr "Senaste Inlämning"
#. Label of the launch_file (Code) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "Launch File"
msgstr "Startfil"
#. Label of the lesson (Link) field in DocType 'Exercise Latest Submission'
#. Label of the lesson (Link) field in DocType 'Exercise Submission'
#. Label of the lesson (Link) field in DocType 'Lesson Reference'
@@ -2722,7 +2754,7 @@ msgid "Location Preference"
msgstr "Platspreferens"
#: frontend/src/components/NoPermission.vue:28
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:163
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:167
#: frontend/src/pages/Lesson.vue:24
msgid "Login"
msgstr "Logga In"
@@ -2759,6 +2791,11 @@ msgstr "Ansvarig"
msgid "Manager (Sales/Marketing/Customer)"
msgstr "Ansvarig (Försäljning/Marknadsföring/Kund)"
#. Label of the manifest_file (Code) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "Manifest File"
msgstr "Manifestfil"
#: frontend/src/components/Quiz.vue:94
msgid "Mark"
msgstr "Markera"
@@ -2803,7 +2840,7 @@ msgid "Maximun Attempts"
msgstr "Maximalt antal försök"
#. Label of the medium (Select) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:185
#: frontend/src/pages/BatchForm.vue:197
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:309
msgid "Medium"
@@ -2951,7 +2988,7 @@ msgid "Mentors"
msgstr "Mentorer"
#. Label of the meta_image (Attach Image) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:36 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:40 lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:362
msgid "Meta Image"
msgstr "Meta Bild"
@@ -2987,11 +3024,11 @@ msgstr "Moderator"
msgid "Modified By"
msgstr "Modifierad Av"
#: lms/lms/api.py:191
#: lms/lms/api.py:197
msgid "Module Name is incorrect or does not exist."
msgstr "Modul Namn är felaktigt eller existerar inte."
#: lms/lms/api.py:187
#: lms/lms/api.py:193
msgid "Module is incorrect."
msgstr "Modul är felaktig."
@@ -3037,7 +3074,7 @@ msgstr "Ny Grupp"
msgid "New Course"
msgstr "Ny Kurs"
#: frontend/src/pages/Jobs.vue:24
#: frontend/src/pages/Jobs.vue:39
msgid "New Job"
msgstr "Nya Jobb"
@@ -3124,11 +3161,11 @@ msgstr "Inga kurser under granskning"
msgid "No introduction"
msgstr "Ingen introduktion"
#: frontend/src/pages/Jobs.vue:45
#: frontend/src/pages/Jobs.vue:60
msgid "No jobs posted"
msgstr "Inga jobb utannonserade"
#: frontend/src/components/LiveClass.vue:60
#: frontend/src/components/LiveClass.vue:61
msgid "No live classes scheduled"
msgstr "Inga live lektioner schemalagda"
@@ -3184,7 +3221,7 @@ msgstr "Inte tillgänglig för förhandsgranskning"
msgid "Not Graded"
msgstr "Ej Betygsatt"
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:131
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:135
msgid "Not Permitted"
msgstr "Ej Tillåtet"
@@ -3208,7 +3245,7 @@ msgstr "Aviseringar"
msgid "Notify me when available"
msgstr "Meddela mig när den är tillgänglig"
#: frontend/src/pages/BatchForm.vue:162
#: frontend/src/pages/BatchForm.vue:174
msgid "Number of seats available"
msgstr "Antal platser tillgängliga"
@@ -3248,6 +3285,10 @@ msgstr "Endast filer av typ {0} kommer att accepteras."
msgid "Only image file is allowed."
msgstr "Endast bildfiler är tillåtna."
#: frontend/src/components/Modals/ChapterModal.vue:223
msgid "Only zip files are allowed"
msgstr "Endast zip filer är tillåtna"
#. Option for the 'Status' (Select) field in DocType 'Job Opportunity'
#. Option for the 'Membership' (Select) field in DocType 'LMS Batch Old'
#: frontend/src/pages/QuizForm.vue:17
@@ -3352,7 +3393,7 @@ msgid "Pages"
msgstr "Sidor"
#. Label of the paid_batch (Check) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:205
#: frontend/src/pages/BatchForm.vue:217
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:373
msgid "Paid Batch"
@@ -3369,6 +3410,7 @@ msgid "Pan Number"
msgstr "Pan Nummer"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:116
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Part Time"
msgstr "Deltid"
@@ -3407,7 +3449,7 @@ msgstr "Klistra in youtube länk i kort video för kursintroduktion"
#. Label of the payment (Link) field in DocType 'Batch Student'
#. Label of the payment (Link) field in DocType 'LMS Enrollment'
#: frontend/src/pages/BatchForm.vue:199
#: frontend/src/pages/BatchForm.vue:211
#: lms/lms/doctype/batch_student/batch_student.json
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
msgid "Payment"
@@ -3523,6 +3565,10 @@ msgstr "Klicka på följande knapp för att ange ditt nya lösenord"
msgid "Please enable Zoom Settings to use this feature."
msgstr "Aktivera Zoom Inställningar för att använda denna funktion."
#: frontend/src/components/CourseOutline.vue:312
msgid "Please enroll for this course to view this lesson"
msgstr "Anmäl dig till denna kurs för att se denna lektion"
#: frontend/src/components/Quiz.vue:13
msgid "Please ensure that you complete all the questions in {0} minutes."
msgstr "Se till att besvara alla frågor på {0} minuter."
@@ -3556,11 +3602,11 @@ msgstr "Låt oss veta varifrån du hörde talas om oss."
msgid "Please login to access the quiz."
msgstr "Logga in för att komma åt frågesport."
#: frontend/src/components/NoPermission.vue:25 frontend/src/pages/Batch.vue:142
#: frontend/src/components/NoPermission.vue:25 frontend/src/pages/Batch.vue:146
msgid "Please login to access this page."
msgstr "Logga in för att komma till denna sida."
#: lms/lms/api.py:183
#: lms/lms/api.py:189
msgid "Please login to continue with payment."
msgstr "Logga in för att fortsätta med betalning."
@@ -3573,6 +3619,10 @@ msgstr "Förbered dig väl och kom i tid till utvärderingarna."
msgid "Please take appropriate action at {0}"
msgstr "Vidta lämpliga åtgärder {0}"
#: frontend/src/components/Modals/ChapterModal.vue:172
msgid "Please upload a SCORM package"
msgstr "Ladda upp SCORM App"
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:95
msgid "Please upload the assignment file."
msgstr "Ladda upp tilldelning fil."
@@ -3730,7 +3780,7 @@ msgstr "Publicera på deltagarsidan"
#. Label of the published (Check) field in DocType 'LMS Batch'
#. Label of the published (Check) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:108
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:171
#: frontend/src/pages/BatchForm.vue:28 frontend/src/pages/CourseForm.vue:171
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:266
@@ -3941,11 +3991,11 @@ msgstr "Avvisad"
msgid "Related Courses"
msgstr "Relaterade Kurser"
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/CourseForm.vue:99
#: frontend/src/pages/BatchForm.vue:73 frontend/src/pages/CourseForm.vue:99
msgid "Remove"
msgstr "Ta bort"
#: frontend/src/components/Modals/AnnouncementModal.vue:26
#: frontend/src/components/Modals/AnnouncementModal.vue:27
msgid "Reply To"
msgstr "Svara till"
@@ -4039,6 +4089,21 @@ msgstr "Rader {0} har duplicerade frågor."
msgid "Run"
msgstr "Kör"
#. Label of the scorm_section (Section Break) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "SCORM"
msgstr "SCORM"
#. Label of the scorm_package (Link) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "SCORM Package"
msgstr "SCORM App"
#. Label of the scorm_package_path (Code) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "SCORM Package Path"
msgstr "SCORM App Sökväg"
#. Option for the 'Day' (Select) field in DocType 'Evaluator Schedule'
#. Option for the 'Day' (Select) field in DocType 'LMS Certificate Request'
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
@@ -4100,7 +4165,7 @@ msgid "Search for an icon"
msgstr "Sök efter ikon"
#. Label of the seat_count (Int) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:159
#: frontend/src/pages/BatchForm.vue:171
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:327
msgid "Seat Count"
@@ -4144,7 +4209,7 @@ msgid "Set your Password"
msgstr "Ange Lösenord"
#: frontend/src/components/Modals/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:153 frontend/src/pages/CourseForm.vue:161
#: frontend/src/pages/BatchForm.vue:165 frontend/src/pages/CourseForm.vue:161
#: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:78
msgid "Settings"
msgstr "Inställningar"
@@ -4159,7 +4224,7 @@ msgstr "Dela på"
msgid "Short Introduction"
msgstr "Kort Introduktion"
#: frontend/src/pages/BatchForm.vue:94
#: frontend/src/pages/BatchForm.vue:99
msgid "Short description of the batch"
msgstr "Kort beskrivning av omgång"
@@ -4323,7 +4388,7 @@ msgstr "Start"
#. Label of the start_date (Date) field in DocType 'Education Detail'
#. Label of the start_date (Date) field in DocType 'LMS Batch'
#. Label of the start_date (Date) field in DocType 'LMS Batch Old'
#: frontend/src/pages/BatchForm.vue:117
#: frontend/src/pages/BatchForm.vue:124
#: lms/lms/doctype/education_detail/education_detail.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -4332,7 +4397,7 @@ msgid "Start Date"
msgstr "Start Datum"
#: frontend/src/components/CourseCardOverlay.vue:63
#: frontend/src/pages/Lesson.vue:21
#: frontend/src/pages/Lesson.vue:21 frontend/src/pages/SCORMChapter.vue:28
#: lms/templates/emails/lms_course_interest.html:9
msgid "Start Learning"
msgstr "Börja lära dig"
@@ -4344,7 +4409,7 @@ msgstr "Börja lära dig"
#. Label of the start_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the start_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the start_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:131
#: frontend/src/pages/BatchForm.vue:140
#: frontend/src/pages/ProfileEvaluator.vue:15
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -4361,19 +4426,11 @@ msgstr "Start Tid"
msgid "Start Time cannot be greater than End Time"
msgstr "Starttid kan inte vara senare än sluttid"
#: lms/lms/web_form/add_a_new_batch/add_a_new_batch.js:43
msgid "Start Time should be less than End Time."
msgstr "Starttid ska vara tidigare än Sluttid."
#. Label of the start_url (Small Text) field in DocType 'LMS Live Class'
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Start URL"
msgstr "Start URL"
#: lms/lms/web_form/add_a_new_batch/add_a_new_batch.js:30
msgid "Start date cannot be a past date."
msgstr "Start Datum kan inte vara förflutet datum."
#. Option for the 'Company Type' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Startup Organization"
@@ -4516,8 +4573,10 @@ msgstr "Inskickad {0}"
#: frontend/src/components/BatchOverlay.vue:135
#: frontend/src/components/BatchStudents.vue:157
#: frontend/src/components/CourseCardOverlay.vue:161
#: frontend/src/components/Modals/AnnouncementModal.vue:98
#: frontend/src/components/Modals/AnnouncementModal.vue:99
#: frontend/src/components/Modals/AssessmentModal.vue:73
#: frontend/src/components/Modals/ChapterModal.vue:148
#: frontend/src/components/Modals/ChapterModal.vue:193
#: frontend/src/components/Modals/Event.vue:255
#: frontend/src/components/Modals/Event.vue:310
#: frontend/src/components/Modals/Question.vue:261
@@ -4713,10 +4772,14 @@ msgstr "Detta certifikat upphör inte att gälla"
msgid "This course has:"
msgstr "Denna kurs har:"
#: lms/lms/utils.py:1570
#: lms/lms/utils.py:1582
msgid "This course is free."
msgstr "Denna kurs är gratis."
#: frontend/src/pages/SCORMChapter.vue:198
msgid "This is a chapter in the course {0}"
msgstr "Detta är kapitel i kurs {0}"
#: lms/lms/widgets/CourseOutline.html:62
msgid "This lesson is not available for preview. As you are the Instructor of the course only you can see it."
msgstr "Denna lektion är inte tillgänglig för förhandsgranskning. Eftersom du är Lärare för kurs och bara du kan se den."
@@ -4742,7 +4805,7 @@ msgstr "Torsdag"
#. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48
#: frontend/src/components/Modals/LiveClassModal.vue:36
#: frontend/src/components/Modals/LiveClassModal.vue:37
#: frontend/src/components/Quiz.vue:44
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Time"
@@ -4753,7 +4816,7 @@ msgstr "Tid"
msgid "Time Preference"
msgstr "Tidspreferens"
#: frontend/src/components/Modals/LiveClassModal.vue:28
#: frontend/src/components/Modals/LiveClassModal.vue:29
msgid "Time must be in 24 hour format (HH:mm). Example 11:30 or 22:00"
msgstr "Tid måste vara i 24 timmars format (HH:mm). Exempel 11:30 eller 22:00"
@@ -4781,8 +4844,8 @@ msgstr "Tidtabell Mall"
#. Label of the timezone (Data) field in DocType 'LMS Batch'
#. Label of the timezone (Data) field in DocType 'LMS Certificate Request'
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/LiveClassModal.vue:44
#: frontend/src/pages/BatchForm.vue:143
#: frontend/src/components/Modals/LiveClassModal.vue:46
#: frontend/src/pages/BatchForm.vue:154
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -4811,7 +4874,7 @@ msgstr "Tidpunkter:"
#. Label of the title (Data) field in DocType 'Work Experience'
#: frontend/src/components/Modals/DiscussionModal.vue:18
#: frontend/src/components/Modals/LiveClassModal.vue:23
#: frontend/src/pages/BatchForm.vue:18 frontend/src/pages/CourseForm.vue:32
#: frontend/src/pages/BatchForm.vue:20 frontend/src/pages/CourseForm.vue:32
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/QuizForm.vue:48
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
@@ -4833,6 +4896,10 @@ msgstr "Tidpunkter:"
msgid "Title"
msgstr "Titel"
#: frontend/src/components/Modals/ChapterModal.vue:169
msgid "Title is required"
msgstr "Titel erfordras"
#. Label of the unavailable_to (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:98
#: lms/lms/doctype/course_evaluator/course_evaluator.json
@@ -4844,11 +4911,7 @@ msgstr "Till"
msgid "To Date"
msgstr "Till Datum"
#: lms/lms/web_form/profile/profile.js:19
msgid "To Date is mandatory in Work Experience."
msgstr "Till Datum erfordras i Arbetslivserfarenhet."
#: lms/lms/utils.py:1581
#: lms/lms/utils.py:1593
msgid "To join this batch, please contact the Administrator."
msgstr "För att gå med i denna omgång, kontakta Administratör."
@@ -4902,7 +4965,7 @@ msgstr "Twitter"
#. Label of the type (Select) field in DocType 'LMS Quiz Question'
#: frontend/src/components/Modals/AssessmentModal.vue:22
#: frontend/src/components/Modals/Question.vue:54
#: frontend/src/pages/JobCreation.vue:28
#: frontend/src/pages/JobCreation.vue:28 frontend/src/pages/Jobs.vue:16
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/lms_assignment/lms_assignment.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
@@ -4970,7 +5033,7 @@ msgstr "Ostrukturerad Roll"
msgid "Upcoming"
msgstr "Kommande"
#: frontend/src/pages/Batch.vue:154
#: frontend/src/pages/Batch.vue:158
msgid "Upcoming Batches"
msgstr "Kommande omgångar"
@@ -4989,7 +5052,7 @@ msgstr "Uppdatera"
msgid "Update Password"
msgstr "Uppdatera lösenord"
#: frontend/src/pages/BatchForm.vue:51 frontend/src/pages/CourseForm.vue:80
#: frontend/src/pages/BatchForm.vue:55 frontend/src/pages/CourseForm.vue:80
msgid "Upload"
msgstr "Ladda upp"
@@ -5172,15 +5235,15 @@ msgstr "Skriv ditt svar här"
msgid "You already have an evaluation on {0} at {1} for the course {2}."
msgstr "Du har redan utvärdering {0} kl. {1} för kurs {2}."
#: lms/lms/api.py:207
#: lms/lms/api.py:213
msgid "You are already enrolled for this batch."
msgstr "Du är redan inskriven för denna omgång."
#: lms/lms/api.py:199
#: lms/lms/api.py:205
msgid "You are already enrolled for this course."
msgstr "Du är redan inskriven på denna kurs."
#: frontend/src/pages/Batch.vue:136
#: frontend/src/pages/Batch.vue:140
msgid "You are not a member of this batch. Please checkout our upcoming batches."
msgstr "Du är inte i denna omgång. Kolla in våra kommande omgångar."
@@ -5188,6 +5251,14 @@ msgstr "Du är inte i denna omgång. Kolla in våra kommande omgångar."
msgid "You are not a mentor of the course {0}"
msgstr "Du är inte mentor för kurs {0}"
#: frontend/src/components/CourseOutline.vue:311
msgid "You are not enrolled"
msgstr "Du är inte inskriven"
#: frontend/src/pages/SCORMChapter.vue:22
msgid "You are not enrolled in this course. Please enroll to access this lesson."
msgstr "Du är inte inskriven i denna kurs. Anmäl dig för att få tillgång till denna lektion."
#: 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."
@@ -5340,7 +5411,7 @@ msgstr "Zoom Inställningar"
msgid "cancel your application"
msgstr "avbryt din ansökan"
#: frontend/src/pages/Lesson.vue:170
#: frontend/src/pages/Lesson.vue:174
msgid "completed"
msgstr "slutförd"
@@ -5388,7 +5459,7 @@ msgstr "stjärnor"
msgid "you can"
msgstr "du kan"
#: lms/lms/api.py:740 lms/lms/api.py:748
#: lms/lms/api.py:747 lms/lms/api.py:755
msgid "{0} Settings not found"
msgstr "{0} Inställningar hittades inte"

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-11-08 16:04+0000\n"
"PO-Revision-Date: 2024-11-13 15:54\n"
"POT-Creation-Date: 2024-11-15 16:04+0000\n"
"PO-Revision-Date: 2024-11-18 17:31\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Turkish\n"
"MIME-Version: 1.0\n"
@@ -109,7 +109,7 @@ msgstr "Ekle"
msgid "Add Chapter"
msgstr "Bölüm Ekle"
#: frontend/src/components/CourseOutline.vue:102
#: frontend/src/components/CourseOutline.vue:124
msgid "Add Lesson"
msgstr "Ders Ekle"
@@ -217,7 +217,7 @@ msgstr "Kendi Kendine Kayıt Olmaya İzin Ver"
msgid "Allow accessing future dates"
msgstr "Gelecekteki tarihlere erişime izin ver"
#: frontend/src/pages/BatchForm.vue:29
#: frontend/src/pages/BatchForm.vue:33
msgid "Allow self enrollment"
msgstr "Kendi Kendine Kayıt Olmaya İzin Ver"
@@ -228,7 +228,7 @@ msgstr "Zaten kayıltı"
#. Label of the amount (Currency) field in DocType 'Web Form'
#. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the amount (Currency) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:209 lms/fixtures/custom_field.json
#: frontend/src/pages/BatchForm.vue:221 lms/fixtures/custom_field.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/public/js/common_functions.js:379
@@ -258,11 +258,11 @@ msgstr ""
msgid "Amount with GST"
msgstr "GST ile Tutar"
#: frontend/src/components/Modals/AnnouncementModal.vue:32
#: frontend/src/components/Modals/AnnouncementModal.vue:33
msgid "Announcement"
msgstr "Duyuru"
#: frontend/src/components/Modals/AnnouncementModal.vue:99
#: frontend/src/components/Modals/AnnouncementModal.vue:100
msgid "Announcement has been sent successfully"
msgstr ""
@@ -280,7 +280,7 @@ msgstr "Cevap"
msgid "Appears on the course card in the course list"
msgstr ""
#: frontend/src/pages/BatchForm.vue:55 frontend/src/pages/BatchForm.vue:73
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/BatchForm.vue:77
msgid "Appears when the batch URL is shared on any online platform"
msgstr ""
@@ -319,10 +319,6 @@ msgstr "Onaylandı"
msgid "Apps"
msgstr "Uygulamalar"
#: frontend/src/components/CourseOutline.vue:209
msgid "Are you sure you want to delete this lesson?"
msgstr ""
#. Label of the user_category (Check) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Ask User Category during Signup"
@@ -420,7 +416,7 @@ msgid "Auto Assign"
msgstr "Otomatik Atama"
#. Label of the auto_recording (Select) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/LiveClassModal.vue:66
#: frontend/src/components/Modals/LiveClassModal.vue:71
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Auto Recording"
msgstr "Otomatik Kayıt"
@@ -482,7 +478,8 @@ msgid "Batch Description"
msgstr ""
#. Label of the batch_details (Text Editor) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:98 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:104
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:349
#: lms/templates/emails/batch_confirmation.html:30
msgid "Batch Details"
@@ -547,10 +544,6 @@ msgstr ""
msgid "Batch end date cannot be before the batch start date"
msgstr ""
#: lms/lms/web_form/add_a_new_batch/add_a_new_batch.js:6
msgid "Batch {0} has been successfully created!"
msgstr ""
#. Group in LMS Course's connections
#. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue:8 lms/lms/doctype/lms_course/lms_course.json
@@ -581,7 +574,7 @@ msgstr "Fatura Detayları"
msgid "Billing Name"
msgstr "Fatura İsmi"
#: frontend/src/components/Modals/EditProfile.vue:72
#: frontend/src/components/Modals/EditProfile.vue:75
msgid "Bio"
msgstr "Hakkında"
@@ -649,7 +642,7 @@ msgstr "Günlük Giyim"
#. Label of the category (Link) field in DocType 'LMS Batch'
#. Label of the category (Data) field in DocType 'LMS Category'
#. Label of the category (Link) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/BatchForm.vue:202 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/JobDetail.vue:102
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -734,6 +727,14 @@ msgstr "Bölüm"
msgid "Chapter Reference"
msgstr "Bölüm Referansı"
#: frontend/src/components/Modals/ChapterModal.vue:149
msgid "Chapter added successfully"
msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:193
msgid "Chapter updated successfully"
msgstr ""
#. Label of the chapters (Table) field in DocType 'LMS Course'
#. Group in LMS Course's connections
#: lms/lms/doctype/lms_course/lms_course.json
@@ -987,7 +988,7 @@ msgid "Contact the Administrator to enroll for this course."
msgstr "Bu kursa kayıt olmak için Yönetici ile iletişime geçin."
#. Label of the content (Text) field in DocType 'Course Lesson'
#: frontend/src/pages/LessonForm.vue:53
#: frontend/src/pages/LessonForm.vue:58
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Content"
msgstr "İçerik"
@@ -997,6 +998,7 @@ msgid "Continue Learning"
msgstr "Öğrenmeye Devam Et"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:117
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Contract"
msgstr "Sözleşme"
@@ -1060,7 +1062,7 @@ msgstr "Ülke"
#. Label of the course (Link) field in DocType 'Related Courses'
#. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/BatchCourseModal.vue:17
#: frontend/src/components/Modals/BatchCourseModal.vue:20
#: frontend/src/components/Modals/EvaluationModal.vue:20
#: frontend/src/components/Modals/Event.vue:24
#: lms/lms/doctype/batch_course/batch_course.json
@@ -1153,6 +1155,10 @@ msgstr "Kurs Listesi"
msgid "Course Name"
msgstr "Kurs Adı"
#: frontend/src/pages/CourseDetail.vue:74
msgid "Course Outline"
msgstr ""
#. Label of the course_price (Currency) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:219
#: lms/lms/doctype/lms_course/lms_course.json
@@ -1175,9 +1181,11 @@ msgid "Course Stats"
msgstr "Kurs İstatistikleri"
#. Label of the title (Data) field in DocType 'Batch Course'
#. Label of the course_title (Data) field in DocType 'Course Chapter'
#. Label of the course_title (Data) field in DocType 'LMS Certificate'
#. Label of the course_title (Data) field in DocType 'LMS Certificate Request'
#: lms/lms/doctype/batch_course/batch_course.json
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
msgid "Course Title"
@@ -1257,7 +1265,7 @@ msgstr "Yeni bir soru oluştur"
#. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course'
#. Label of the currency (Link) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:226
#: frontend/src/pages/BatchForm.vue:229 frontend/src/pages/CourseForm.vue:226
#: lms/fixtures/custom_field.json lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_payment/lms_payment.json
@@ -1303,7 +1311,7 @@ msgstr "Gösterge Paneli"
#. Label of the date (Date) field in DocType 'Scheduled Flow'
#: frontend/src/components/Modals/EvaluationModal.vue:26
#: frontend/src/components/Modals/Event.vue:40
#: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Modals/LiveClassModal.vue:55
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
@@ -1315,7 +1323,7 @@ msgstr "Tarih"
#. Label of the section_break_glxh (Section Break) field in DocType 'LMS Live
#. Class'
#: frontend/src/pages/BatchForm.vue:111
#: frontend/src/pages/BatchForm.vue:118
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Date and Time"
msgstr "Tarih ve Saat"
@@ -1350,23 +1358,40 @@ msgstr "Varsayılan Para Birimi"
msgid "Degree Type"
msgstr "Derece Türü"
#: frontend/src/components/CourseOutline.vue:212
#: frontend/src/components/CourseOutline.vue:235
#: frontend/src/components/CourseOutline.vue:293
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:470
msgid "Delete"
msgstr "Sil"
#: frontend/src/components/CourseOutline.vue:52
msgid "Delete Chapter"
msgstr ""
#: frontend/src/pages/CourseForm.vue:464
msgid "Delete Course"
msgstr "Kursu Sil"
#: frontend/src/components/CourseOutline.vue:208
msgid "Delete Lesson"
msgstr "Dersi Sil"
#: frontend/src/components/CourseOutline.vue:287
msgid "Delete this chapter?"
msgstr ""
#: frontend/src/components/CourseOutline.vue:229
msgid "Delete this lesson?"
msgstr ""
#: frontend/src/pages/CourseForm.vue:465
msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?"
msgstr "Kursu silmek, tüm bölümlerini ve derslerini de silecektir. Bu kursu silmek istediğinizden emin misiniz?"
#: frontend/src/components/CourseOutline.vue:288
msgid "Deleting this chapter will also delete all its lessons and permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?"
msgstr ""
#: frontend/src/components/CourseOutline.vue:230
msgid "Deleting this lesson will permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?"
msgstr ""
#. Label of the description (Text Editor) field in DocType 'Job Opportunity'
#. Label of the description (Small Text) field in DocType 'Certification'
#. Label of the description (Markdown Editor) field in DocType 'Cohort'
@@ -1379,8 +1404,8 @@ msgstr "Kursu silmek, tüm bölümlerini ve derslerini de silecektir. Bu kursu s
#. Label of the description (Small Text) field in DocType 'LMS Exercise'
#. Label of the description (Text) field in DocType 'LMS Live Class'
#. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:73
#: frontend/src/pages/BatchForm.vue:91 frontend/src/pages/JobCreation.vue:43
#: frontend/src/components/Modals/LiveClassModal.vue:78
#: frontend/src/pages/BatchForm.vue:96 frontend/src/pages/JobCreation.vue:43
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json
@@ -1426,7 +1451,7 @@ msgid "Discard"
msgstr "Vazgeç"
#. Label of the show_discussions (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batch.vue:69
#: frontend/src/pages/Batch.vue:73
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Discussions"
msgstr "Tartışma"
@@ -1453,7 +1478,7 @@ msgstr "Bu soru için yinelenen seçenekler bulundu."
#. Label of the duration (Data) field in DocType 'LMS Batch Timetable'
#. Label of the duration (Int) field in DocType 'LMS Live Class'
#. Label of the duration (Duration) field in DocType 'LMS Quiz'
#: frontend/src/components/Modals/LiveClassModal.vue:58
#: frontend/src/components/Modals/LiveClassModal.vue:62
#: lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -1465,7 +1490,7 @@ msgstr "Süre"
msgid "Duration (in minutes)"
msgstr "Süre (dk)"
#: frontend/src/components/Modals/LiveClassModal.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:58
msgid "Duration of the live class in minutes"
msgstr "Canlı dersin dakika cinsinden süresi"
@@ -1487,7 +1512,7 @@ msgstr "E-Posta"
msgid "Edit"
msgstr "Düzenle"
#: frontend/src/components/CourseOutline.vue:106
#: frontend/src/components/CourseOutline.vue:45
#: frontend/src/components/Modals/ChapterModal.vue:5
msgid "Edit Chapter"
msgstr "Bölümü Düzenle"
@@ -1564,7 +1589,7 @@ msgstr "Etkin"
#. Label of the end_date (Date) field in DocType 'Cohort'
#. Label of the end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:123 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/BatchForm.vue:131 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:282
msgid "End Date"
@@ -1582,7 +1607,7 @@ msgstr "Bitiş Tarihi (veya beklenen)"
#. Label of the end_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the end_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the end_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:137
#: frontend/src/pages/BatchForm.vue:147
#: frontend/src/pages/ProfileEvaluator.vue:18
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1618,7 +1643,7 @@ msgstr "Sonraki Eğitim Grubu için Kayıt Onayı"
msgid "Enrollment Count"
msgstr "Kayıt Sayısı"
#: lms/lms/utils.py:1690
#: lms/lms/utils.py:1702
msgid "Enrollment Failed"
msgstr "Kayıt Başarısız"
@@ -1646,7 +1671,10 @@ msgstr ""
msgid "Enter the correct answer"
msgstr "Doğru cevabı girin"
#: frontend/src/components/Modals/AnnouncementModal.vue:104
#: frontend/src/components/Modals/AnnouncementModal.vue:105
#: frontend/src/components/Modals/ChapterModal.vue:154
#: frontend/src/components/Modals/ChapterModal.vue:161
#: frontend/src/components/Modals/ChapterModal.vue:197
#: frontend/src/components/Modals/Question.vue:246
#: frontend/src/components/Modals/Question.vue:266
#: frontend/src/components/Modals/Question.vue:323
@@ -1669,7 +1697,7 @@ msgid "Evaluation Details"
msgstr "Değerlendirme Detayları"
#. Label of the evaluation_end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:166
#: frontend/src/pages/BatchForm.vue:178
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:333
msgid "Evaluation End Date"
@@ -1694,7 +1722,7 @@ msgstr ""
#. Label of the evaluator (Link) field in DocType 'LMS Certificate'
#. Label of the evaluator (Link) field in DocType 'LMS Certificate Evaluation'
#. Label of the evaluator (Link) field in DocType 'LMS Certificate Request'
#: frontend/src/components/Modals/BatchCourseModal.vue:21
#: frontend/src/components/Modals/BatchCourseModal.vue:26
#: frontend/src/pages/ProfileRoles.vue:22
#: lms/lms/doctype/batch_course/batch_course.json
#: lms/lms/doctype/course_evaluator/course_evaluator.json
@@ -1733,7 +1761,7 @@ msgstr ""
msgid "Event"
msgstr "Etkinlik"
#: frontend/src/pages/BatchForm.vue:145
#: frontend/src/pages/BatchForm.vue:156
msgid "Example: IST (+5:30)"
msgstr ""
@@ -1860,6 +1888,7 @@ msgid "Free"
msgstr "Serbest"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:118
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Freelance"
msgstr "Serbest çalışan"
@@ -1899,6 +1928,7 @@ msgid "Full Name"
msgstr "Tam Adı"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:115
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Full Time"
msgstr "Tam Zamanlı"
@@ -1981,11 +2011,6 @@ msgstr "Başlık"
msgid "Hello"
msgstr "Merhaba"
#. Label of the help_section (Section Break) field in DocType 'Course Lesson'
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Help"
msgstr "Yardım"
#: lms/templates/courses_created.html:15
msgid "Help others learn something new by creating a course."
msgstr "Bir kurs oluşturarak başkalarının yeni bir şeyler öğrenmesine yardımcı olun."
@@ -2164,9 +2189,7 @@ msgstr "Yanlış"
msgid "Index"
msgstr "Dizin"
#. Label of the index_label (Data) field in DocType 'Course Lesson'
#. Label of the index_label (Data) field in DocType 'LMS Exercise'
#: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_exercise/lms_exercise.json
msgid "Index Label"
msgstr "Dizin Etiketi"
@@ -2203,14 +2226,14 @@ msgstr "Eğitmen İçeriği"
#. Label of the instructor_notes (Markdown Editor) field in DocType 'Course
#. Lesson'
#: frontend/src/pages/Lesson.vue:125 frontend/src/pages/LessonForm.vue:33
#: frontend/src/pages/Lesson.vue:128 frontend/src/pages/LessonForm.vue:38
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Instructor Notes"
msgstr "Eğitmen Notları"
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch'
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:85 frontend/src/pages/CourseForm.vue:154
#: frontend/src/pages/BatchForm.vue:89 frontend/src/pages/CourseForm.vue:154
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Instructors"
@@ -2238,10 +2261,6 @@ msgstr "Geçersiz Davetiye Kodu."
msgid "Invalid Quiz ID"
msgstr "Geçersiz Sınav Kimliği"
#: lms/lms/web_form/add_a_new_batch/add_a_new_batch.js:38
msgid "Invalid Start or End Time."
msgstr "Geçersiz Başlangıç veya Bitiş Saati."
#. Label of the invite_code (Data) field in DocType 'Cohort Subgroup'
#. Label of the invite_code (Data) field in DocType 'Invite Request'
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
@@ -2281,6 +2300,14 @@ msgstr "Doğru"
msgid "Is Onboarding Complete"
msgstr "Tanıtım Tamamlandı"
#. Label of the is_scorm_package (Check) field in DocType 'Course Chapter'
#. Label of the is_scorm_package (Check) field in DocType 'Course Lesson'
#: frontend/src/components/Modals/ChapterModal.vue:26
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Is SCORM Package"
msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/Event.vue:121
@@ -2355,7 +2382,7 @@ msgstr "İş İlanı Başlığı"
msgid "Jobs"
msgstr "İşler"
#: frontend/src/components/LiveClass.vue:54
#: frontend/src/components/LiveClass.vue:55
#: lms/templates/upcoming_evals.html:15
msgid "Join"
msgstr "Katıl"
@@ -2593,6 +2620,11 @@ msgstr "Soyadı"
msgid "Latest Submission"
msgstr ""
#. Label of the launch_file (Code) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "Launch File"
msgstr ""
#. Label of the lesson (Link) field in DocType 'Exercise Latest Submission'
#. Label of the lesson (Link) field in DocType 'Exercise Submission'
#. Label of the lesson (Link) field in DocType 'Lesson Reference'
@@ -2722,7 +2754,7 @@ msgid "Location Preference"
msgstr "Konum Tercihi"
#: frontend/src/components/NoPermission.vue:28
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:163
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:167
#: frontend/src/pages/Lesson.vue:24
msgid "Login"
msgstr "Giriş"
@@ -2759,6 +2791,11 @@ msgstr "Müdür"
msgid "Manager (Sales/Marketing/Customer)"
msgstr "Yönetici (Satış/Pazarlama/Müşteri)"
#. Label of the manifest_file (Code) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "Manifest File"
msgstr ""
#: frontend/src/components/Quiz.vue:94
msgid "Mark"
msgstr "İşaretle"
@@ -2803,7 +2840,7 @@ msgid "Maximun Attempts"
msgstr ""
#. Label of the medium (Select) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:185
#: frontend/src/pages/BatchForm.vue:197
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:309
msgid "Medium"
@@ -2951,7 +2988,7 @@ msgid "Mentors"
msgstr "Mentorlar"
#. Label of the meta_image (Attach Image) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:36 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:40 lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:362
msgid "Meta Image"
msgstr ""
@@ -2987,11 +3024,11 @@ msgstr "Moderatör"
msgid "Modified By"
msgstr "Değiştiren"
#: lms/lms/api.py:191
#: lms/lms/api.py:197
msgid "Module Name is incorrect or does not exist."
msgstr "Modül Adı yanlış veya mevcut değil."
#: lms/lms/api.py:187
#: lms/lms/api.py:193
msgid "Module is incorrect."
msgstr "Modül hatalı."
@@ -3037,7 +3074,7 @@ msgstr "Yeni Parti"
msgid "New Course"
msgstr "Yeni Kurs"
#: frontend/src/pages/Jobs.vue:24
#: frontend/src/pages/Jobs.vue:39
msgid "New Job"
msgstr "Yeni İş"
@@ -3124,11 +3161,11 @@ msgstr "İncelenmekte olan kurs yok"
msgid "No introduction"
msgstr "Tanıtım yok"
#: frontend/src/pages/Jobs.vue:45
#: frontend/src/pages/Jobs.vue:60
msgid "No jobs posted"
msgstr "Hiçbir iş ilanı yayınlanmadı"
#: frontend/src/components/LiveClass.vue:60
#: frontend/src/components/LiveClass.vue:61
msgid "No live classes scheduled"
msgstr "Planlanmış canlı ders yok"
@@ -3184,7 +3221,7 @@ msgstr "Önizleme için uygun değil"
msgid "Not Graded"
msgstr "Not Verilmedi"
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:131
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:135
msgid "Not Permitted"
msgstr "İzin Verilmedi"
@@ -3208,7 +3245,7 @@ msgstr "Bildirimler"
msgid "Notify me when available"
msgstr "Kullanılabilir olduğundan bana bildir"
#: frontend/src/pages/BatchForm.vue:162
#: frontend/src/pages/BatchForm.vue:174
msgid "Number of seats available"
msgstr ""
@@ -3248,6 +3285,10 @@ msgstr "Sadece {0} türündeki dosyalar kabul edilecektir."
msgid "Only image file is allowed."
msgstr "Sadece resim dosyasına izin verilir."
#: frontend/src/components/Modals/ChapterModal.vue:223
msgid "Only zip files are allowed"
msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Job Opportunity'
#. Option for the 'Membership' (Select) field in DocType 'LMS Batch Old'
#: frontend/src/pages/QuizForm.vue:17
@@ -3352,7 +3393,7 @@ msgid "Pages"
msgstr "Sayfalar"
#. Label of the paid_batch (Check) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:205
#: frontend/src/pages/BatchForm.vue:217
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:373
msgid "Paid Batch"
@@ -3369,6 +3410,7 @@ msgid "Pan Number"
msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:116
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Part Time"
msgstr "Yarı Zamanlı"
@@ -3407,7 +3449,7 @@ msgstr ""
#. Label of the payment (Link) field in DocType 'Batch Student'
#. Label of the payment (Link) field in DocType 'LMS Enrollment'
#: frontend/src/pages/BatchForm.vue:199
#: frontend/src/pages/BatchForm.vue:211
#: lms/lms/doctype/batch_student/batch_student.json
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
msgid "Payment"
@@ -3523,6 +3565,10 @@ msgstr "Yeni şifrenizi belirlemek için lütfen aşağıdaki linke tıklayını
msgid "Please enable Zoom Settings to use this feature."
msgstr "Bu özelliği kullanmak için lütfen Zoom Ayarlarını etkinleştirin."
#: frontend/src/components/CourseOutline.vue:312
msgid "Please enroll for this course to view this lesson"
msgstr ""
#: frontend/src/components/Quiz.vue:13
msgid "Please ensure that you complete all the questions in {0} minutes."
msgstr "Lütfen tüm soruları {0} dakika içinde yanıtladığınızdan emin olun."
@@ -3556,11 +3602,11 @@ msgstr "Lütfen bizi nereden duyduğunuzu belirtin."
msgid "Please login to access the quiz."
msgstr "Teste erişmek için lütfen giriş yapın."
#: frontend/src/components/NoPermission.vue:25 frontend/src/pages/Batch.vue:142
#: frontend/src/components/NoPermission.vue:25 frontend/src/pages/Batch.vue:146
msgid "Please login to access this page."
msgstr "Bu sayfaya erişebilmek için lütfen giriş yapın."
#: lms/lms/api.py:183
#: lms/lms/api.py:189
msgid "Please login to continue with payment."
msgstr "Ödeme işlemine devam etmek için lütfen giriş yapın."
@@ -3573,6 +3619,10 @@ msgstr "Lütfen iyi hazırlanın ve değerlendirmelere zamanında katılın."
msgid "Please take appropriate action at {0}"
msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:172
msgid "Please upload a SCORM package"
msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:95
msgid "Please upload the assignment file."
msgstr "Lütfen ödev dosyasını yükleyin."
@@ -3730,7 +3780,7 @@ msgstr "Katılımcı Sayfasında Yayınla"
#. Label of the published (Check) field in DocType 'LMS Batch'
#. Label of the published (Check) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:108
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:171
#: frontend/src/pages/BatchForm.vue:28 frontend/src/pages/CourseForm.vue:171
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:266
@@ -3941,11 +3991,11 @@ msgstr "Reddedildi"
msgid "Related Courses"
msgstr "İlgili Kurslar"
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/CourseForm.vue:99
#: frontend/src/pages/BatchForm.vue:73 frontend/src/pages/CourseForm.vue:99
msgid "Remove"
msgstr "Kaldır"
#: frontend/src/components/Modals/AnnouncementModal.vue:26
#: frontend/src/components/Modals/AnnouncementModal.vue:27
msgid "Reply To"
msgstr "Yanıtla"
@@ -4039,6 +4089,21 @@ msgstr "{0} satırlarında yinelenen sorular var."
msgid "Run"
msgstr "Çalıştır"
#. Label of the scorm_section (Section Break) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "SCORM"
msgstr ""
#. Label of the scorm_package (Link) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "SCORM Package"
msgstr ""
#. Label of the scorm_package_path (Code) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "SCORM Package Path"
msgstr ""
#. Option for the 'Day' (Select) field in DocType 'Evaluator Schedule'
#. Option for the 'Day' (Select) field in DocType 'LMS Certificate Request'
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
@@ -4100,7 +4165,7 @@ msgid "Search for an icon"
msgstr "Bir simge arayın"
#. Label of the seat_count (Int) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:159
#: frontend/src/pages/BatchForm.vue:171
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:327
msgid "Seat Count"
@@ -4144,7 +4209,7 @@ msgid "Set your Password"
msgstr "Şifrenizi Ayarlayın"
#: frontend/src/components/Modals/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:153 frontend/src/pages/CourseForm.vue:161
#: frontend/src/pages/BatchForm.vue:165 frontend/src/pages/CourseForm.vue:161
#: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:78
msgid "Settings"
msgstr "Ayarlar"
@@ -4159,7 +4224,7 @@ msgstr "Paylaş"
msgid "Short Introduction"
msgstr "Kısa Tanıtım"
#: frontend/src/pages/BatchForm.vue:94
#: frontend/src/pages/BatchForm.vue:99
msgid "Short description of the batch"
msgstr ""
@@ -4323,7 +4388,7 @@ msgstr "Başlangıç"
#. Label of the start_date (Date) field in DocType 'Education Detail'
#. Label of the start_date (Date) field in DocType 'LMS Batch'
#. Label of the start_date (Date) field in DocType 'LMS Batch Old'
#: frontend/src/pages/BatchForm.vue:117
#: frontend/src/pages/BatchForm.vue:124
#: lms/lms/doctype/education_detail/education_detail.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -4332,7 +4397,7 @@ msgid "Start Date"
msgstr "Başlangıç Tarihi"
#: frontend/src/components/CourseCardOverlay.vue:63
#: frontend/src/pages/Lesson.vue:21
#: frontend/src/pages/Lesson.vue:21 frontend/src/pages/SCORMChapter.vue:28
#: lms/templates/emails/lms_course_interest.html:9
msgid "Start Learning"
msgstr "Öğrenmeye Başlayın"
@@ -4344,7 +4409,7 @@ msgstr "Öğrenmeye Başlayın"
#. Label of the start_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the start_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the start_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:131
#: frontend/src/pages/BatchForm.vue:140
#: frontend/src/pages/ProfileEvaluator.vue:15
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -4361,19 +4426,11 @@ msgstr "Başlangıç Zamanı"
msgid "Start Time cannot be greater than End Time"
msgstr "Başlangıç Saati Bitiş Saatinden büyük olamaz"
#: lms/lms/web_form/add_a_new_batch/add_a_new_batch.js:43
msgid "Start Time should be less than End Time."
msgstr "Başlangıç Saati Bitiş Saatinden küçük olmalıdır."
#. Label of the start_url (Small Text) field in DocType 'LMS Live Class'
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Start URL"
msgstr ""
#: lms/lms/web_form/add_a_new_batch/add_a_new_batch.js:30
msgid "Start date cannot be a past date."
msgstr "Başlangıç tarihi geçmiş bir tarih olamaz."
#. Option for the 'Company Type' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Startup Organization"
@@ -4516,8 +4573,10 @@ msgstr "Kaydedildi {0}"
#: frontend/src/components/BatchOverlay.vue:135
#: frontend/src/components/BatchStudents.vue:157
#: frontend/src/components/CourseCardOverlay.vue:161
#: frontend/src/components/Modals/AnnouncementModal.vue:98
#: frontend/src/components/Modals/AnnouncementModal.vue:99
#: frontend/src/components/Modals/AssessmentModal.vue:73
#: frontend/src/components/Modals/ChapterModal.vue:148
#: frontend/src/components/Modals/ChapterModal.vue:193
#: frontend/src/components/Modals/Event.vue:255
#: frontend/src/components/Modals/Event.vue:310
#: frontend/src/components/Modals/Question.vue:261
@@ -4713,10 +4772,14 @@ msgstr ""
msgid "This course has:"
msgstr "Bu kursta:"
#: lms/lms/utils.py:1570
#: lms/lms/utils.py:1582
msgid "This course is free."
msgstr "Bu kurs ücretsizdir."
#: frontend/src/pages/SCORMChapter.vue:198
msgid "This is a chapter in the course {0}"
msgstr ""
#: lms/lms/widgets/CourseOutline.html:62
msgid "This lesson is not available for preview. As you are the Instructor of the course only you can see it."
msgstr "Bu ders önizleme için mevcut değildir. Dersin Eğitmeni siz olduğunuz için sadece siz görebilirsiniz."
@@ -4742,7 +4805,7 @@ msgstr "Perşembe"
#. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48
#: frontend/src/components/Modals/LiveClassModal.vue:36
#: frontend/src/components/Modals/LiveClassModal.vue:37
#: frontend/src/components/Quiz.vue:44
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Time"
@@ -4753,7 +4816,7 @@ msgstr "Zaman"
msgid "Time Preference"
msgstr "Zaman Tercihi"
#: frontend/src/components/Modals/LiveClassModal.vue:28
#: frontend/src/components/Modals/LiveClassModal.vue:29
msgid "Time must be in 24 hour format (HH:mm). Example 11:30 or 22:00"
msgstr "Saat 24 saat formatında (HH:mm) olmalıdır. Örnek 11:30 veya 22:00"
@@ -4781,8 +4844,8 @@ msgstr ""
#. Label of the timezone (Data) field in DocType 'LMS Batch'
#. Label of the timezone (Data) field in DocType 'LMS Certificate Request'
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/LiveClassModal.vue:44
#: frontend/src/pages/BatchForm.vue:143
#: frontend/src/components/Modals/LiveClassModal.vue:46
#: frontend/src/pages/BatchForm.vue:154
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -4811,7 +4874,7 @@ msgstr ""
#. Label of the title (Data) field in DocType 'Work Experience'
#: frontend/src/components/Modals/DiscussionModal.vue:18
#: frontend/src/components/Modals/LiveClassModal.vue:23
#: frontend/src/pages/BatchForm.vue:18 frontend/src/pages/CourseForm.vue:32
#: frontend/src/pages/BatchForm.vue:20 frontend/src/pages/CourseForm.vue:32
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/QuizForm.vue:48
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
@@ -4833,6 +4896,10 @@ msgstr ""
msgid "Title"
msgstr "Başlık"
#: frontend/src/components/Modals/ChapterModal.vue:169
msgid "Title is required"
msgstr ""
#. Label of the unavailable_to (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:98
#: lms/lms/doctype/course_evaluator/course_evaluator.json
@@ -4844,11 +4911,7 @@ msgstr "Alıcı"
msgid "To Date"
msgstr "Bitiş Tarihi"
#: lms/lms/web_form/profile/profile.js:19
msgid "To Date is mandatory in Work Experience."
msgstr ""
#: lms/lms/utils.py:1581
#: lms/lms/utils.py:1593
msgid "To join this batch, please contact the Administrator."
msgstr ""
@@ -4902,7 +4965,7 @@ msgstr ""
#. Label of the type (Select) field in DocType 'LMS Quiz Question'
#: frontend/src/components/Modals/AssessmentModal.vue:22
#: frontend/src/components/Modals/Question.vue:54
#: frontend/src/pages/JobCreation.vue:28
#: frontend/src/pages/JobCreation.vue:28 frontend/src/pages/Jobs.vue:16
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/lms_assignment/lms_assignment.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
@@ -4970,7 +5033,7 @@ msgstr "Ayarlanmamış Rol"
msgid "Upcoming"
msgstr "Yaklaşanlar"
#: frontend/src/pages/Batch.vue:154
#: frontend/src/pages/Batch.vue:158
msgid "Upcoming Batches"
msgstr "Yaklaşan Sınıflar"
@@ -4989,7 +5052,7 @@ msgstr "Güncelle"
msgid "Update Password"
msgstr "Şifreyi Güncelle"
#: frontend/src/pages/BatchForm.vue:51 frontend/src/pages/CourseForm.vue:80
#: frontend/src/pages/BatchForm.vue:55 frontend/src/pages/CourseForm.vue:80
msgid "Upload"
msgstr "Yükle"
@@ -5172,15 +5235,15 @@ msgstr "Cevabınızı buraya yazın"
msgid "You already have an evaluation on {0} at {1} for the course {2}."
msgstr ""
#: lms/lms/api.py:207
#: lms/lms/api.py:213
msgid "You are already enrolled for this batch."
msgstr "Bu gruba zaten kayıtlısınız."
#: lms/lms/api.py:199
#: lms/lms/api.py:205
msgid "You are already enrolled for this course."
msgstr "Bu kursa zaten kayıtlısınız."
#: frontend/src/pages/Batch.vue:136
#: frontend/src/pages/Batch.vue:140
msgid "You are not a member of this batch. Please checkout our upcoming batches."
msgstr "Bu sınıfın üyesi değilsiniz. Lütfen yaklaşan sınıflara göz atın."
@@ -5188,6 +5251,14 @@ msgstr "Bu sınıfın üyesi değilsiniz. Lütfen yaklaşan sınıflara göz at
msgid "You are not a mentor of the course {0}"
msgstr "Kursun mentoru değilsiniz {0}"
#: frontend/src/components/CourseOutline.vue:311
msgid "You are not enrolled"
msgstr ""
#: frontend/src/pages/SCORMChapter.vue:22
msgid "You are not enrolled in this course. Please enroll to access this lesson."
msgstr ""
#: frontend/src/pages/Courses.vue:134
msgid "You can add chapters and lessons to it."
msgstr "İçerisine bölümler ve dersler ekleyebilirsiniz."
@@ -5340,7 +5411,7 @@ msgstr "Zoom Ayarları"
msgid "cancel your application"
msgstr "başvurunuzu iptal edin"
#: frontend/src/pages/Lesson.vue:170
#: frontend/src/pages/Lesson.vue:174
msgid "completed"
msgstr "Tamamlandı"
@@ -5388,7 +5459,7 @@ msgstr ""
msgid "you can"
msgstr ""
#: lms/lms/api.py:740 lms/lms/api.py:748
#: lms/lms/api.py:747 lms/lms/api.py:755
msgid "{0} Settings not found"
msgstr "{0} Ayarları bulunamadı"

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-11-14 16:57+0000\n"
"PO-Revision-Date: 2024-11-14 16:57\n"
"POT-Creation-Date: 2024-11-15 16:04+0000\n"
"PO-Revision-Date: 2024-11-19 17:31\n"
"Last-Translator: yarinzhang@outlook.com\n"
"Language-Team: Chinese Simplified\n"
"MIME-Version: 1.0\n"
@@ -109,7 +109,7 @@ msgstr "添加"
msgid "Add Chapter"
msgstr "添加章节"
#: frontend/src/components/CourseOutline.vue:102
#: frontend/src/components/CourseOutline.vue:124
msgid "Add Lesson"
msgstr "添加课程"
@@ -217,7 +217,7 @@ msgstr "允许自行注册"
msgid "Allow accessing future dates"
msgstr "允许访问的日期"
#: frontend/src/pages/BatchForm.vue:29
#: frontend/src/pages/BatchForm.vue:33
msgid "Allow self enrollment"
msgstr "允许自行注册"
@@ -228,7 +228,7 @@ msgstr "已注册"
#. Label of the amount (Currency) field in DocType 'Web Form'
#. Label of the amount (Currency) field in DocType 'LMS Batch'
#. Label of the amount (Currency) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:209 lms/fixtures/custom_field.json
#: frontend/src/pages/BatchForm.vue:221 lms/fixtures/custom_field.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_payment/lms_payment.json
#: lms/public/js/common_functions.js:379
@@ -258,11 +258,11 @@ msgstr "金额字段"
msgid "Amount with GST"
msgstr "含税金额"
#: frontend/src/components/Modals/AnnouncementModal.vue:32
#: frontend/src/components/Modals/AnnouncementModal.vue:33
msgid "Announcement"
msgstr "公告"
#: frontend/src/components/Modals/AnnouncementModal.vue:99
#: frontend/src/components/Modals/AnnouncementModal.vue:100
msgid "Announcement has been sent successfully"
msgstr ""
@@ -280,7 +280,7 @@ msgstr "答案"
msgid "Appears on the course card in the course list"
msgstr "显示在课程列表中的课程卡片上"
#: frontend/src/pages/BatchForm.vue:55 frontend/src/pages/BatchForm.vue:73
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/BatchForm.vue:77
msgid "Appears when the batch URL is shared on any online platform"
msgstr "当培训课 URL 在任何在线平台上共享时显示"
@@ -420,7 +420,7 @@ msgid "Auto Assign"
msgstr "自动分配"
#. Label of the auto_recording (Select) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/LiveClassModal.vue:66
#: frontend/src/components/Modals/LiveClassModal.vue:71
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Auto Recording"
msgstr "自动录制"
@@ -482,7 +482,8 @@ msgid "Batch Description"
msgstr "培训课描述"
#. Label of the batch_details (Text Editor) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:98 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:104
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:349
#: lms/templates/emails/batch_confirmation.html:30
msgid "Batch Details"
@@ -581,7 +582,7 @@ msgstr "账单详情"
msgid "Billing Name"
msgstr "账单名称"
#: frontend/src/components/Modals/EditProfile.vue:72
#: frontend/src/components/Modals/EditProfile.vue:75
msgid "Bio"
msgstr "简介"
@@ -649,7 +650,7 @@ msgstr ""
#. Label of the category (Link) field in DocType 'LMS Batch'
#. Label of the category (Data) field in DocType 'LMS Category'
#. Label of the category (Link) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:190 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/BatchForm.vue:202 frontend/src/pages/Batches.vue:16
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:17
#: frontend/src/pages/JobDetail.vue:102
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -734,6 +735,14 @@ msgstr "章节"
msgid "Chapter Reference"
msgstr "章节参考"
#: frontend/src/components/Modals/ChapterModal.vue:149
msgid "Chapter added successfully"
msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:193
msgid "Chapter updated successfully"
msgstr ""
#. Label of the chapters (Table) field in DocType 'LMS Course'
#. Group in LMS Course's connections
#: lms/lms/doctype/lms_course/lms_course.json
@@ -987,7 +996,7 @@ msgid "Contact the Administrator to enroll for this course."
msgstr "请联系管理员以注册此课程。"
#. Label of the content (Text) field in DocType 'Course Lesson'
#: frontend/src/pages/LessonForm.vue:53
#: frontend/src/pages/LessonForm.vue:58
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Content"
msgstr "内容"
@@ -997,6 +1006,7 @@ msgid "Continue Learning"
msgstr "继续学习"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:117
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Contract"
msgstr "合同"
@@ -1060,7 +1070,7 @@ msgstr "国家"
#. Label of the course (Link) field in DocType 'Related Courses'
#. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/BatchCourseModal.vue:17
#: frontend/src/components/Modals/BatchCourseModal.vue:20
#: frontend/src/components/Modals/EvaluationModal.vue:20
#: frontend/src/components/Modals/Event.vue:24
#: lms/lms/doctype/batch_course/batch_course.json
@@ -1153,6 +1163,10 @@ msgstr "课程列表"
msgid "Course Name"
msgstr "课程名称"
#: frontend/src/pages/CourseDetail.vue:74
msgid "Course Outline"
msgstr ""
#. Label of the course_price (Currency) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:219
#: lms/lms/doctype/lms_course/lms_course.json
@@ -1175,9 +1189,11 @@ msgid "Course Stats"
msgstr "课程统计"
#. Label of the title (Data) field in DocType 'Batch Course'
#. Label of the course_title (Data) field in DocType 'Course Chapter'
#. Label of the course_title (Data) field in DocType 'LMS Certificate'
#. Label of the course_title (Data) field in DocType 'LMS Certificate Request'
#: lms/lms/doctype/batch_course/batch_course.json
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
msgid "Course Title"
@@ -1261,7 +1277,7 @@ msgstr "创建新题目"
#. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course'
#. Label of the currency (Link) field in DocType 'LMS Payment'
#: frontend/src/pages/BatchForm.vue:217 frontend/src/pages/CourseForm.vue:226
#: frontend/src/pages/BatchForm.vue:229 frontend/src/pages/CourseForm.vue:226
#: lms/fixtures/custom_field.json lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_payment/lms_payment.json
@@ -1307,7 +1323,7 @@ msgstr "仪表板"
#. Label of the date (Date) field in DocType 'Scheduled Flow'
#: frontend/src/components/Modals/EvaluationModal.vue:26
#: frontend/src/components/Modals/Event.vue:40
#: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Modals/LiveClassModal.vue:55
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
@@ -1319,7 +1335,7 @@ msgstr "日期"
#. Label of the section_break_glxh (Section Break) field in DocType 'LMS Live
#. Class'
#: frontend/src/pages/BatchForm.vue:111
#: frontend/src/pages/BatchForm.vue:118
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Date and Time"
msgstr "日期和时间"
@@ -1354,23 +1370,44 @@ msgstr "默认货币"
msgid "Degree Type"
msgstr "学位类型"
#: frontend/src/components/CourseOutline.vue:212
#: frontend/src/components/CourseOutline.vue:235
#: frontend/src/components/CourseOutline.vue:293
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:470
msgid "Delete"
msgstr "删除"
#: frontend/src/components/CourseOutline.vue:52
msgid "Delete Chapter"
msgstr "删除章节"
#: frontend/src/pages/CourseForm.vue:464
msgid "Delete Course"
msgstr ""
msgstr "删除课程"
#: frontend/src/components/CourseOutline.vue:208
msgid "Delete Lesson"
msgstr "删除课时"
#: frontend/src/components/CourseOutline.vue:287
msgid "Delete this chapter?"
msgstr "确定要删除这个章节吗?"
#: frontend/src/components/CourseOutline.vue:229
msgid "Delete this lesson?"
msgstr "确定要删除这个课时吗?"
#: frontend/src/pages/CourseForm.vue:465
msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?"
msgstr ""
#: frontend/src/components/CourseOutline.vue:288
msgid "Deleting this chapter will also delete all its lessons and permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?"
msgstr ""
#: frontend/src/components/CourseOutline.vue:230
msgid "Deleting this lesson will permanently remove it from the course. This action cannot be undone. Are you sure you want to continue?"
msgstr ""
#. Label of the description (Text Editor) field in DocType 'Job Opportunity'
#. Label of the description (Small Text) field in DocType 'Certification'
#. Label of the description (Markdown Editor) field in DocType 'Cohort'
@@ -1383,8 +1420,8 @@ msgstr ""
#. Label of the description (Small Text) field in DocType 'LMS Exercise'
#. Label of the description (Text) field in DocType 'LMS Live Class'
#. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:73
#: frontend/src/pages/BatchForm.vue:91 frontend/src/pages/JobCreation.vue:43
#: frontend/src/components/Modals/LiveClassModal.vue:78
#: frontend/src/pages/BatchForm.vue:96 frontend/src/pages/JobCreation.vue:43
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/cohort/cohort.json
@@ -1430,7 +1467,7 @@ msgid "Discard"
msgstr "丢弃"
#. Label of the show_discussions (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batch.vue:69
#: frontend/src/pages/Batch.vue:73
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Discussions"
msgstr "讨论"
@@ -1457,7 +1494,7 @@ msgstr "此题目中存在重复选项。"
#. Label of the duration (Data) field in DocType 'LMS Batch Timetable'
#. Label of the duration (Int) field in DocType 'LMS Live Class'
#. Label of the duration (Duration) field in DocType 'LMS Quiz'
#: frontend/src/components/Modals/LiveClassModal.vue:58
#: frontend/src/components/Modals/LiveClassModal.vue:62
#: lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -1469,7 +1506,7 @@ msgstr "持续时间"
msgid "Duration (in minutes)"
msgstr "持续时间 (分钟)"
#: frontend/src/components/Modals/LiveClassModal.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:58
msgid "Duration of the live class in minutes"
msgstr "直播课程的持续时间 (分钟)"
@@ -1491,7 +1528,7 @@ msgstr "电子邮件"
msgid "Edit"
msgstr "编辑"
#: frontend/src/components/CourseOutline.vue:106
#: frontend/src/components/CourseOutline.vue:45
#: frontend/src/components/Modals/ChapterModal.vue:5
msgid "Edit Chapter"
msgstr "编辑章节"
@@ -1568,7 +1605,7 @@ msgstr "已启用"
#. Label of the end_date (Date) field in DocType 'Cohort'
#. Label of the end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:123 lms/lms/doctype/cohort/cohort.json
#: frontend/src/pages/BatchForm.vue:131 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:282
msgid "End Date"
@@ -1586,7 +1623,7 @@ msgstr "结束日期 (或预期)"
#. Label of the end_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the end_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the end_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:137
#: frontend/src/pages/BatchForm.vue:147
#: frontend/src/pages/ProfileEvaluator.vue:18
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1622,7 +1659,7 @@ msgstr "下一个培训培训课的注册确认"
msgid "Enrollment Count"
msgstr "注册人数"
#: lms/lms/utils.py:1690
#: lms/lms/utils.py:1702
msgid "Enrollment Failed"
msgstr "注册失败"
@@ -1650,7 +1687,10 @@ msgstr "输入标题并保存测验以继续"
msgid "Enter the correct answer"
msgstr "输入正确答案"
#: frontend/src/components/Modals/AnnouncementModal.vue:104
#: frontend/src/components/Modals/AnnouncementModal.vue:105
#: frontend/src/components/Modals/ChapterModal.vue:154
#: frontend/src/components/Modals/ChapterModal.vue:161
#: frontend/src/components/Modals/ChapterModal.vue:197
#: frontend/src/components/Modals/Question.vue:246
#: frontend/src/components/Modals/Question.vue:266
#: frontend/src/components/Modals/Question.vue:323
@@ -1673,7 +1713,7 @@ msgid "Evaluation Details"
msgstr "测验详情"
#. Label of the evaluation_end_date (Date) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:166
#: frontend/src/pages/BatchForm.vue:178
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:333
msgid "Evaluation End Date"
@@ -1698,7 +1738,7 @@ msgstr "测验保存成功"
#. Label of the evaluator (Link) field in DocType 'LMS Certificate'
#. Label of the evaluator (Link) field in DocType 'LMS Certificate Evaluation'
#. Label of the evaluator (Link) field in DocType 'LMS Certificate Request'
#: frontend/src/components/Modals/BatchCourseModal.vue:21
#: frontend/src/components/Modals/BatchCourseModal.vue:26
#: frontend/src/pages/ProfileRoles.vue:22
#: lms/lms/doctype/batch_course/batch_course.json
#: lms/lms/doctype/course_evaluator/course_evaluator.json
@@ -1737,7 +1777,7 @@ msgstr "测验人不可用"
msgid "Event"
msgstr "事件"
#: frontend/src/pages/BatchForm.vue:145
#: frontend/src/pages/BatchForm.vue:156
msgid "Example: IST (+5:30)"
msgstr "示例IST (+5:30)"
@@ -1864,6 +1904,7 @@ msgid "Free"
msgstr "免费"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:118
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Freelance"
msgstr "自由职业者"
@@ -1903,6 +1944,7 @@ msgid "Full Name"
msgstr "全名"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:115
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Full Time"
msgstr "全职"
@@ -1985,11 +2027,6 @@ msgstr "头条"
msgid "Hello"
msgstr "你好"
#. Label of the help_section (Section Break) field in DocType 'Course Lesson'
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Help"
msgstr "帮助"
#: lms/templates/courses_created.html:15
msgid "Help others learn something new by creating a course."
msgstr "通过创建课程帮助他人学习新知识。"
@@ -2168,9 +2205,7 @@ msgstr "错误"
msgid "Index"
msgstr "索引"
#. Label of the index_label (Data) field in DocType 'Course Lesson'
#. Label of the index_label (Data) field in DocType 'LMS Exercise'
#: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_exercise/lms_exercise.json
msgid "Index Label"
msgstr "索引标签"
@@ -2207,14 +2242,14 @@ msgstr "导师内容"
#. Label of the instructor_notes (Markdown Editor) field in DocType 'Course
#. Lesson'
#: frontend/src/pages/Lesson.vue:125 frontend/src/pages/LessonForm.vue:33
#: frontend/src/pages/Lesson.vue:128 frontend/src/pages/LessonForm.vue:38
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Instructor Notes"
msgstr "导师笔记"
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch'
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course'
#: frontend/src/pages/BatchForm.vue:85 frontend/src/pages/CourseForm.vue:154
#: frontend/src/pages/BatchForm.vue:89 frontend/src/pages/CourseForm.vue:154
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Instructors"
@@ -2285,6 +2320,14 @@ msgstr "正确"
msgid "Is Onboarding Complete"
msgstr "是否完成入职"
#. Label of the is_scorm_package (Check) field in DocType 'Course Chapter'
#. Label of the is_scorm_package (Check) field in DocType 'Course Lesson'
#: frontend/src/components/Modals/ChapterModal.vue:26
#: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Is SCORM Package"
msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/Event.vue:121
@@ -2359,7 +2402,7 @@ msgstr "工作标题"
msgid "Jobs"
msgstr "工作"
#: frontend/src/components/LiveClass.vue:54
#: frontend/src/components/LiveClass.vue:55
#: lms/templates/upcoming_evals.html:15
msgid "Join"
msgstr "加入"
@@ -2597,6 +2640,11 @@ msgstr "姓"
msgid "Latest Submission"
msgstr "最新提交"
#. Label of the launch_file (Code) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "Launch File"
msgstr ""
#. Label of the lesson (Link) field in DocType 'Exercise Latest Submission'
#. Label of the lesson (Link) field in DocType 'Exercise Submission'
#. Label of the lesson (Link) field in DocType 'Lesson Reference'
@@ -2726,7 +2774,7 @@ msgid "Location Preference"
msgstr "位置偏好"
#: frontend/src/components/NoPermission.vue:28
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:163
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:167
#: frontend/src/pages/Lesson.vue:24
msgid "Login"
msgstr "登录"
@@ -2763,6 +2811,11 @@ msgstr "经理"
msgid "Manager (Sales/Marketing/Customer)"
msgstr "经理(销售/营销/客户)"
#. Label of the manifest_file (Code) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "Manifest File"
msgstr ""
#: frontend/src/components/Quiz.vue:94
msgid "Mark"
msgstr "分"
@@ -2807,7 +2860,7 @@ msgid "Maximun Attempts"
msgstr "最大尝试次数"
#. Label of the medium (Select) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:185
#: frontend/src/pages/BatchForm.vue:197
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:309
msgid "Medium"
@@ -2955,7 +3008,7 @@ msgid "Mentors"
msgstr "导师"
#. Label of the meta_image (Attach Image) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:36 lms/lms/doctype/lms_batch/lms_batch.json
#: frontend/src/pages/BatchForm.vue:40 lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:362
msgid "Meta Image"
msgstr "图片"
@@ -2991,11 +3044,11 @@ msgstr "主持人"
msgid "Modified By"
msgstr "修改者"
#: lms/lms/api.py:191
#: lms/lms/api.py:197
msgid "Module Name is incorrect or does not exist."
msgstr "模块名称不正确或不存在。"
#: lms/lms/api.py:187
#: lms/lms/api.py:193
msgid "Module is incorrect."
msgstr "模块不正确。"
@@ -3044,7 +3097,7 @@ msgstr "新培训课"
msgid "New Course"
msgstr "新课程"
#: frontend/src/pages/Jobs.vue:24
#: frontend/src/pages/Jobs.vue:39
msgid "New Job"
msgstr "新工作"
@@ -3131,11 +3184,11 @@ msgstr "没有课程正在审核"
msgid "No introduction"
msgstr "没有介绍"
#: frontend/src/pages/Jobs.vue:45
#: frontend/src/pages/Jobs.vue:60
msgid "No jobs posted"
msgstr "没有发布的工作"
#: frontend/src/components/LiveClass.vue:60
#: frontend/src/components/LiveClass.vue:61
msgid "No live classes scheduled"
msgstr "没有安排的在线课程"
@@ -3191,7 +3244,7 @@ msgstr "不可用于预览"
msgid "Not Graded"
msgstr "未评分"
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:131
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:135
msgid "Not Permitted"
msgstr "不允许"
@@ -3215,7 +3268,7 @@ msgstr "通知"
msgid "Notify me when available"
msgstr "当我可用时通知我"
#: frontend/src/pages/BatchForm.vue:162
#: frontend/src/pages/BatchForm.vue:174
msgid "Number of seats available"
msgstr "可参加的人数"
@@ -3255,6 +3308,10 @@ msgstr "只有类型为 {0} 的文件将被接受。"
msgid "Only image file is allowed."
msgstr "只有图像文件被允许。"
#: frontend/src/components/Modals/ChapterModal.vue:223
msgid "Only zip files are allowed"
msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Job Opportunity'
#. Option for the 'Membership' (Select) field in DocType 'LMS Batch Old'
#: frontend/src/pages/QuizForm.vue:17
@@ -3359,7 +3416,7 @@ msgid "Pages"
msgstr "页数"
#. Label of the paid_batch (Check) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:205
#: frontend/src/pages/BatchForm.vue:217
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:373
msgid "Paid Batch"
@@ -3376,6 +3433,7 @@ msgid "Pan Number"
msgstr "PAN 号码"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:116
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Part Time"
msgstr "兼职"
@@ -3414,7 +3472,7 @@ msgstr "粘贴一个简短的视频链接,介绍课程"
#. Label of the payment (Link) field in DocType 'Batch Student'
#. Label of the payment (Link) field in DocType 'LMS Enrollment'
#: frontend/src/pages/BatchForm.vue:199
#: frontend/src/pages/BatchForm.vue:211
#: lms/lms/doctype/batch_student/batch_student.json
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
msgid "Payment"
@@ -3530,6 +3588,10 @@ msgstr "请点击以下按钮设置您的新密码"
msgid "Please enable Zoom Settings to use this feature."
msgstr "请启用 Zoom 设置以使用此功能。"
#: frontend/src/components/CourseOutline.vue:312
msgid "Please enroll for this course to view this lesson"
msgstr ""
#: frontend/src/components/Quiz.vue:13
msgid "Please ensure that you complete all the questions in {0} minutes."
msgstr "请确保在 {0} 分钟内完成所有题目。"
@@ -3563,11 +3625,11 @@ msgstr "请让我们知道您是从哪里了解到我们的。"
msgid "Please login to access the quiz."
msgstr "请登录以访问测验。"
#: frontend/src/components/NoPermission.vue:25 frontend/src/pages/Batch.vue:142
#: frontend/src/components/NoPermission.vue:25 frontend/src/pages/Batch.vue:146
msgid "Please login to access this page."
msgstr "请登录以访问此页面。"
#: lms/lms/api.py:183
#: lms/lms/api.py:189
msgid "Please login to continue with payment."
msgstr "请登录以继续付款。"
@@ -3580,6 +3642,10 @@ msgstr "请做好准备,准时参加测验。"
msgid "Please take appropriate action at {0}"
msgstr "请在 {0} 采取适当行动"
#: frontend/src/components/Modals/ChapterModal.vue:172
msgid "Please upload a SCORM package"
msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:95
msgid "Please upload the assignment file."
msgstr "请上传作业文件。"
@@ -3737,7 +3803,7 @@ msgstr "在参与者页面上发布"
#. Label of the published (Check) field in DocType 'LMS Batch'
#. Label of the published (Check) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:108
#: frontend/src/pages/BatchForm.vue:24 frontend/src/pages/CourseForm.vue:171
#: frontend/src/pages/BatchForm.vue:28 frontend/src/pages/CourseForm.vue:171
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/public/js/common_functions.js:266
@@ -3948,11 +4014,11 @@ msgstr "已拒绝"
msgid "Related Courses"
msgstr "相关课程"
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/CourseForm.vue:99
#: frontend/src/pages/BatchForm.vue:73 frontend/src/pages/CourseForm.vue:99
msgid "Remove"
msgstr "删除"
#: frontend/src/components/Modals/AnnouncementModal.vue:26
#: frontend/src/components/Modals/AnnouncementModal.vue:27
msgid "Reply To"
msgstr "回复"
@@ -4046,6 +4112,21 @@ msgstr "第 {0} 行包含重复的题目。"
msgid "Run"
msgstr "运行"
#. Label of the scorm_section (Section Break) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "SCORM"
msgstr ""
#. Label of the scorm_package (Link) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "SCORM Package"
msgstr ""
#. Label of the scorm_package_path (Code) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
msgid "SCORM Package Path"
msgstr ""
#. Option for the 'Day' (Select) field in DocType 'Evaluator Schedule'
#. Option for the 'Day' (Select) field in DocType 'LMS Certificate Request'
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
@@ -4107,7 +4188,7 @@ msgid "Search for an icon"
msgstr "搜索图标"
#. Label of the seat_count (Int) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:159
#: frontend/src/pages/BatchForm.vue:171
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/public/js/common_functions.js:327
msgid "Seat Count"
@@ -4151,7 +4232,7 @@ msgid "Set your Password"
msgstr "设置密码"
#: frontend/src/components/Modals/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:153 frontend/src/pages/CourseForm.vue:161
#: frontend/src/pages/BatchForm.vue:165 frontend/src/pages/CourseForm.vue:161
#: frontend/src/pages/ProfileRoles.vue:4 frontend/src/pages/QuizForm.vue:78
msgid "Settings"
msgstr "设置"
@@ -4166,7 +4247,7 @@ msgstr "分享"
msgid "Short Introduction"
msgstr "简短介绍"
#: frontend/src/pages/BatchForm.vue:94
#: frontend/src/pages/BatchForm.vue:99
msgid "Short description of the batch"
msgstr "培训课简短描述"
@@ -4330,7 +4411,7 @@ msgstr "开始"
#. Label of the start_date (Date) field in DocType 'Education Detail'
#. Label of the start_date (Date) field in DocType 'LMS Batch'
#. Label of the start_date (Date) field in DocType 'LMS Batch Old'
#: frontend/src/pages/BatchForm.vue:117
#: frontend/src/pages/BatchForm.vue:124
#: lms/lms/doctype/education_detail/education_detail.json
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -4339,7 +4420,7 @@ msgid "Start Date"
msgstr "开始日期"
#: frontend/src/components/CourseCardOverlay.vue:63
#: frontend/src/pages/Lesson.vue:21
#: frontend/src/pages/Lesson.vue:21 frontend/src/pages/SCORMChapter.vue:28
#: lms/templates/emails/lms_course_interest.html:9
msgid "Start Learning"
msgstr "开始学习"
@@ -4351,7 +4432,7 @@ msgstr "开始学习"
#. Label of the start_time (Time) field in DocType 'LMS Certificate Evaluation'
#. Label of the start_time (Time) field in DocType 'LMS Certificate Request'
#. Label of the start_time (Time) field in DocType 'Scheduled Flow'
#: frontend/src/pages/BatchForm.vue:131
#: frontend/src/pages/BatchForm.vue:140
#: frontend/src/pages/ProfileEvaluator.vue:15
#: lms/lms/doctype/evaluator_schedule/evaluator_schedule.json
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -4523,8 +4604,10 @@ msgstr "已提交 {0}"
#: frontend/src/components/BatchOverlay.vue:135
#: frontend/src/components/BatchStudents.vue:157
#: frontend/src/components/CourseCardOverlay.vue:161
#: frontend/src/components/Modals/AnnouncementModal.vue:98
#: frontend/src/components/Modals/AnnouncementModal.vue:99
#: frontend/src/components/Modals/AssessmentModal.vue:73
#: frontend/src/components/Modals/ChapterModal.vue:148
#: frontend/src/components/Modals/ChapterModal.vue:193
#: frontend/src/components/Modals/Event.vue:255
#: frontend/src/components/Modals/Event.vue:310
#: frontend/src/components/Modals/Question.vue:261
@@ -4720,10 +4803,14 @@ msgstr "此证书不会过期"
msgid "This course has:"
msgstr "此课程有:"
#: lms/lms/utils.py:1570
#: lms/lms/utils.py:1582
msgid "This course is free."
msgstr "此课程免费。"
#: frontend/src/pages/SCORMChapter.vue:198
msgid "This is a chapter in the course {0}"
msgstr ""
#: lms/lms/widgets/CourseOutline.html:62
msgid "This lesson is not available for preview. As you are the Instructor of the course only you can see it."
msgstr "此课程不提供预览。由于您是课程的讲师,只有您可以看到它。"
@@ -4749,7 +4836,7 @@ msgstr "星期四"
#. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48
#: frontend/src/components/Modals/LiveClassModal.vue:36
#: frontend/src/components/Modals/LiveClassModal.vue:37
#: frontend/src/components/Quiz.vue:44
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Time"
@@ -4760,7 +4847,7 @@ msgstr "时间"
msgid "Time Preference"
msgstr "时间偏好"
#: frontend/src/components/Modals/LiveClassModal.vue:28
#: frontend/src/components/Modals/LiveClassModal.vue:29
msgid "Time must be in 24 hour format (HH:mm). Example 11:30 or 22:00"
msgstr "时间必须采用24小时格式HH:mm。例如 11:30 或 22:00"
@@ -4788,8 +4875,8 @@ msgstr "时间表模板"
#. Label of the timezone (Data) field in DocType 'LMS Batch'
#. Label of the timezone (Data) field in DocType 'LMS Certificate Request'
#. Label of the timezone (Data) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/LiveClassModal.vue:44
#: frontend/src/pages/BatchForm.vue:143
#: frontend/src/components/Modals/LiveClassModal.vue:46
#: frontend/src/pages/BatchForm.vue:154
#: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -4818,7 +4905,7 @@ msgstr "计时"
#. Label of the title (Data) field in DocType 'Work Experience'
#: frontend/src/components/Modals/DiscussionModal.vue:18
#: frontend/src/components/Modals/LiveClassModal.vue:23
#: frontend/src/pages/BatchForm.vue:18 frontend/src/pages/CourseForm.vue:32
#: frontend/src/pages/BatchForm.vue:20 frontend/src/pages/CourseForm.vue:32
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/QuizForm.vue:48
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
@@ -4840,6 +4927,10 @@ msgstr "计时"
msgid "Title"
msgstr "标题"
#: frontend/src/components/Modals/ChapterModal.vue:169
msgid "Title is required"
msgstr ""
#. Label of the unavailable_to (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:98
#: lms/lms/doctype/course_evaluator/course_evaluator.json
@@ -4855,7 +4946,7 @@ msgstr "至今"
msgid "To Date is mandatory in Work Experience."
msgstr "工作经历中必须填写结束日期。"
#: lms/lms/utils.py:1581
#: lms/lms/utils.py:1593
msgid "To join this batch, please contact the Administrator."
msgstr "要加入此培训课,请联系管理员。"
@@ -4909,7 +5000,7 @@ msgstr "推特"
#. Label of the type (Select) field in DocType 'LMS Quiz Question'
#: frontend/src/components/Modals/AssessmentModal.vue:22
#: frontend/src/components/Modals/Question.vue:54
#: frontend/src/pages/JobCreation.vue:28
#: frontend/src/pages/JobCreation.vue:28 frontend/src/pages/Jobs.vue:16
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/lms_assignment/lms_assignment.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
@@ -4977,7 +5068,7 @@ msgstr "非结构化角色"
msgid "Upcoming"
msgstr "预定"
#: frontend/src/pages/Batch.vue:154
#: frontend/src/pages/Batch.vue:158
msgid "Upcoming Batches"
msgstr "预定的培训课"
@@ -4996,7 +5087,7 @@ msgstr "更新"
msgid "Update Password"
msgstr "更新密码"
#: frontend/src/pages/BatchForm.vue:51 frontend/src/pages/CourseForm.vue:80
#: frontend/src/pages/BatchForm.vue:55 frontend/src/pages/CourseForm.vue:80
msgid "Upload"
msgstr "上传"
@@ -5179,15 +5270,15 @@ msgstr "在这里输入您的答案"
msgid "You already have an evaluation on {0} at {1} for the course {2}."
msgstr "您已经在 {0} 的 {1} 为课程 {2} 安排了测验。"
#: lms/lms/api.py:207
#: lms/lms/api.py:213
msgid "You are already enrolled for this batch."
msgstr "您已经在培训课中注册。"
#: lms/lms/api.py:199
#: lms/lms/api.py:205
msgid "You are already enrolled for this course."
msgstr "您已经在课程中注册。"
#: frontend/src/pages/Batch.vue:136
#: frontend/src/pages/Batch.vue:140
msgid "You are not a member of this batch. Please checkout our upcoming batches."
msgstr "您不是此培训课的成员。请查看我们预定的培训课。"
@@ -5195,6 +5286,14 @@ msgstr "您不是此培训课的成员。请查看我们预定的培训课。"
msgid "You are not a mentor of the course {0}"
msgstr "您不是课程 {0} 的导师"
#: frontend/src/components/CourseOutline.vue:311
msgid "You are not enrolled"
msgstr ""
#: frontend/src/pages/SCORMChapter.vue:22
msgid "You are not enrolled in this course. Please enroll to access this lesson."
msgstr ""
#: frontend/src/pages/Courses.vue:134
msgid "You can add chapters and lessons to it."
msgstr "您可以向其添加章节和课程。"
@@ -5347,7 +5446,7 @@ msgstr "Zoom 设置"
msgid "cancel your application"
msgstr "取消您的申请"
#: frontend/src/pages/Lesson.vue:170
#: frontend/src/pages/Lesson.vue:174
msgid "completed"
msgstr "已完成"
@@ -5395,7 +5494,7 @@ msgstr "星级"
msgid "you can"
msgstr "您可以"
#: lms/lms/api.py:740 lms/lms/api.py:748
#: lms/lms/api.py:747 lms/lms/api.py:755
msgid "{0} Settings not found"
msgstr "{0} 设置未找到"