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 { usersStore } from '@/stores/user'
import { sessionStore } from '@/stores/session' import { sessionStore } from '@/stores/session'
import { useSidebar } from '@/stores/sidebar' import { useSidebar } from '@/stores/sidebar'
import { useSettings } from '@/stores/settings'
import { ChevronRight, Plus } from 'lucide-vue-next' import { ChevronRight, Plus } from 'lucide-vue-next'
import { createResource, Button } from 'frappe-ui' import { createResource, Button } from 'frappe-ui'
import PageModal from '@/components/Modals/PageModal.vue' import PageModal from '@/components/Modals/PageModal.vue'
@@ -114,6 +115,7 @@ const isModerator = ref(false)
const isInstructor = ref(false) const isInstructor = ref(false)
const pageToEdit = ref(null) const pageToEdit = ref(null)
const showWebPages = ref(false) const showWebPages = ref(false)
const settingsStore = useSettings()
onMounted(() => { onMounted(() => {
socket.on('publish_lms_notifications', (data) => { 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) => { const openPageModal = (link) => {
showPageModal.value = true showPageModal.value = true
pageToEdit.value = link pageToEdit.value = link
@@ -215,11 +239,11 @@ watch(userResource, () => {
isModerator.value = userResource.data.is_moderator isModerator.value = userResource.data.is_moderator
isInstructor.value = userResource.data.is_instructor isInstructor.value = userResource.data.is_instructor
addQuizzes() addQuizzes()
addPrograms()
} }
}) })
const toggleSidebar = () => { const toggleSidebar = () => {
console.log(sidebarStore.isSidebarCollapsed)
sidebarStore.isSidebarCollapsed = !sidebarStore.isSidebarCollapsed sidebarStore.isSidebarCollapsed = !sidebarStore.isSidebarCollapsed
} }
</script> </script>

View File

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

View File

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

View File

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

View File

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

View File

@@ -161,25 +161,34 @@ const submitLiveClass = (close) => {
return createLiveClass.submit(liveClass, { return createLiveClass.submit(liveClass, {
validate() { validate() {
if (!liveClass.title) { if (!liveClass.title) {
return 'Please enter a title.' return __('Please enter a title.')
} }
if (!liveClass.date) { if (!liveClass.date) {
return 'Please select a date.' return __('Please select a date.')
}
if (dayjs(liveClass.date).isSameOrBefore(dayjs(), 'day')) {
return 'Please select a future date.'
} }
if (!liveClass.time) { if (!liveClass.time) {
return 'Please select a 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.'
} }
if (!liveClass.timezone) { 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() { onSuccess() {

View File

@@ -12,9 +12,9 @@
id="existing" id="existing"
value="existing" value="existing"
v-model="questionType" 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') }} {{ __('Add an existing question') }}
</label> </label>
</div> </div>
@@ -25,9 +25,9 @@
id="new" id="new"
value="new" value="new"
v-model="questionType" 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') }} {{ __('Create a new question') }}
</label> </label>
</div> </div>
@@ -127,7 +127,7 @@ const populateFields = () => {
let counter = 1 let counter = 1
fields.forEach((field) => { fields.forEach((field) => {
while (counter <= 4) { while (counter <= 4) {
question[`${field}_${counter}`] = field === 'is_correct' ? false : '' question[`${field}_${counter}`] = field === 'is_correct' ? false : null
counter++ counter++
} }
}) })

View File

@@ -108,9 +108,31 @@ const tabsStructure = computed(() => {
hideLabel: true, hideLabel: true,
items: [ items: [
{ {
label: 'Members', label: 'General',
description: 'Manage the members of your learning system', icon: 'Wrench',
icon: 'UserRoundPlus', 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', label: 'Lists',
hideLabel: true, hideLabel: false,
items: [ items: [
{
label: 'Members',
description: 'Manage the members of your learning system',
icon: 'UserRoundPlus',
},
{ {
label: 'Categories', label: 'Categories',
description: 'Manage the members of your learning system', description: 'Manage the members of your learning system',

View File

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

View File

@@ -29,6 +29,7 @@
<script setup> <script setup>
import { Button, Badge } from 'frappe-ui' import { Button, Badge } from 'frappe-ui'
import SettingFields from '@/components/SettingFields.vue' import SettingFields from '@/components/SettingFields.vue'
import { showToast } from '@/utils'
const props = defineProps({ const props = defineProps({
fields: { fields: {
@@ -54,7 +55,14 @@ const update = () => {
props.data.doc[f.name] = f.value 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> </script>

View File

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

View File

@@ -7,7 +7,7 @@
> >
<div <div
class="flex items-center w-full duration-300 ease-in-out group" 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"> <Tooltip :text="link.label" placement="right">
<slot name="icon"> <slot name="icon">
@@ -29,7 +29,15 @@
> >
{{ __(link.label) }} {{ __(link.label) }}
</span> </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 }} {{ link.count }}
</span> </span>
<div <div

View File

@@ -30,6 +30,7 @@
</FormControl> </FormControl>
</div> </div>
<router-link <router-link
v-if="user.data?.is_moderator || user.data?.is_instructor"
:to="{ :to="{
name: 'CourseForm', name: 'CourseForm',
params: { params: {
@@ -37,7 +38,7 @@
}, },
}" }"
> >
<Button v-if="user.data?.is_moderator" variant="solid"> <Button variant="solid">
<template #prefix> <template #prefix>
<Plus class="h-4 w-4" /> <Plus class="h-4 w-4" />
</template> </template>
@@ -159,30 +160,45 @@
<script setup> <script setup>
import { import {
Breadcrumbs,
Tabs,
Badge, Badge,
Breadcrumbs,
Button, Button,
FormControl, call,
createResource, createResource,
FormControl,
Tabs,
} from 'frappe-ui' } from 'frappe-ui'
import CourseCard from '@/components/CourseCard.vue' import CourseCard from '@/components/CourseCard.vue'
import { BookOpen, Plus, Search } from 'lucide-vue-next' import { BookOpen, Plus, Search } from 'lucide-vue-next'
import { ref, computed, inject, onMounted, watch } from 'vue' import { ref, computed, inject, onMounted, watch } from 'vue'
import { updateDocumentTitle } from '@/utils' import { updateDocumentTitle } from '@/utils'
import { useRouter } from 'vue-router'
import { useSettings } from '@/stores/settings'
const user = inject('$user') const user = inject('$user')
const searchQuery = ref('') const searchQuery = ref('')
const currentCategory = ref(null) const currentCategory = ref(null)
const hasCourses = ref(false) const hasCourses = ref(false)
const router = useRouter()
const settings = useSettings()
onMounted(() => { onMounted(() => {
checkLearningPath()
let queries = new URLSearchParams(location.search) let queries = new URLSearchParams(location.search)
if (queries.has('category')) { if (queries.has('category')) {
currentCategory.value = queries.get('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({ const courses = createResource({
url: 'lms.lms.utils.get_courses', url: 'lms.lms.utils.get_courses',
cache: ['courses', user.data?.email], 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" 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" /> <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') }} {{ __('Save') }}
</Button> </Button>
</header> </header>
@@ -94,6 +98,7 @@ const instructorEditor = ref(null)
const user = inject('$user') const user = inject('$user')
const openInstructorEditor = ref(false) const openInstructorEditor = ref(false)
let autoSaveInterval let autoSaveInterval
let showSuccessMessage = false
const props = defineProps({ const props = defineProps({
courseName: { courseName: {
@@ -117,6 +122,7 @@ onMounted(() => {
capture('lesson_form_opened') capture('lesson_form_opened')
editor.value = renderEditor('content') editor.value = renderEditor('content')
instructorEditor.value = renderEditor('instructor-notes') instructorEditor.value = renderEditor('instructor-notes')
window.addEventListener('keydown', keyboardShortcut)
}) })
const renderEditor = (holder) => { const renderEditor = (holder) => {
@@ -186,12 +192,24 @@ const addInstructorNotes = (data) => {
const enableAutoSave = () => { const enableAutoSave = () => {
autoSaveInterval = setInterval(() => { autoSaveInterval = setInterval(() => {
saveLesson() saveLesson({ showSuccessMessage: false })
}, 10000) }, 10000)
} }
const keyboardShortcut = (e) => {
if (
e.key === 's' &&
(e.ctrlKey || e.metaKey) &&
!e.target.classList.contains('ProseMirror')
) {
saveLesson({ showSuccessMessage: true })
e.preventDefault()
}
}
onBeforeUnmount(() => { onBeforeUnmount(() => {
clearInterval(autoSaveInterval) clearInterval(autoSaveInterval)
window.removeEventListener('keydown', keyboardShortcut)
}) })
const newLessonResource = createResource({ const newLessonResource = createResource({
@@ -343,7 +361,11 @@ const convertToJSON = (lessonData) => {
return blocks return blocks
} }
const saveLesson = () => { const saveLesson = (e) => {
showSuccessMessage = false
if (typeof e != 'undefined' && e.showSuccessMessage) {
showSuccessMessage = true
}
editor.value.save().then((outputData) => { editor.value.save().then((outputData) => {
lesson.content = JSON.stringify(outputData) lesson.content = JSON.stringify(outputData)
instructorEditor.value.save().then((outputData) => { instructorEditor.value.save().then((outputData) => {
@@ -392,6 +414,11 @@ const editCurrentLesson = () => {
validate() { validate() {
return validateLesson() return validateLesson()
}, },
onSuccess() {
showSuccessMessage
? showToast('Success', 'Lesson updated successfully', 'check')
: ''
},
onError(err) { onError(err) {
showToast('Error', err.message, 'x') 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-slot="{ idx, column, item }"
v-for="row in quiz.questions" v-for="row in quiz.questions"
@click="openQuestionModal(row)" @click="openQuestionModal(row)"
class="cursor-pointer"
> >
<ListRowItem :item="item"> <ListRowItem :item="item">
<div <div

View File

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

View File

@@ -182,6 +182,17 @@ const routes = [
component: () => import('@/pages/QuizSubmission.vue'), component: () => import('@/pages/QuizSubmission.vue'),
props: true, 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({ let router = createRouter({

View File

@@ -1,12 +1,25 @@
import { defineStore } from 'pinia' import { defineStore } from 'pinia'
import { ref } from 'vue' import { ref } from 'vue'
import { createResource } from 'frappe-ui'
export const useSettings = defineStore('settings', () => { export const useSettings = defineStore('settings', () => {
const isSettingsOpen = ref(false) const isSettingsOpen = ref(false)
const activeTab = ref(null) 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 { return {
isSettingsOpen, isSettingsOpen,
activeTab, activeTab,
learningPaths,
} }
}) })

View File

@@ -5,6 +5,8 @@ import updateLocale from 'dayjs/esm/plugin/updateLocale'
import isToday from 'dayjs/esm/plugin/isToday' import isToday from 'dayjs/esm/plugin/isToday'
import isSameOrBefore from 'dayjs/esm/plugin/isSameOrBefore' import isSameOrBefore from 'dayjs/esm/plugin/isSameOrBefore'
import isSameOrAfter from 'dayjs/esm/plugin/isSameOrAfter' 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(updateLocale)
dayjs.extend(relativeTime) dayjs.extend(relativeTime)
@@ -12,5 +14,7 @@ dayjs.extend(localizedFormat)
dayjs.extend(isToday) dayjs.extend(isToday)
dayjs.extend(isSameOrBefore) dayjs.extend(isSameOrBefore)
dayjs.extend(isSameOrAfter) dayjs.extend(isSameOrAfter)
dayjs.extend(utc)
dayjs.extend(timezone)
export default dayjs 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) 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( if frappe.db.exists(
"LMS Course Progress", {"lesson": lesson, "member": frappe.session.user} "LMS Course Progress", {"lesson": lesson, "member": frappe.session.user}
): ):
return return
quiz_completed = get_quiz_progress(lesson)
if not quiz_completed:
return 0
frappe.get_doc( frappe.get_doc(
{ {
"doctype": "LMS Course Progress", "doctype": "LMS Course Progress",

View File

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

View File

@@ -28,6 +28,7 @@ class LMSBatch(Document):
self.validate_duplicate_courses() self.validate_duplicate_courses()
self.validate_duplicate_students() self.validate_duplicate_students()
self.validate_payments_app() self.validate_payments_app()
self.validate_amount_and_currency()
self.validate_duplicate_assessments() self.validate_duplicate_assessments()
self.validate_membership() self.validate_membership()
self.validate_timetable() self.validate_timetable()
@@ -64,6 +65,10 @@ class LMSBatch(Document):
if "payments" not in installed_apps: if "payments" not in installed_apps:
frappe.throw(_("Please install the Payments app to create a paid batches.")) 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): def validate_duplicate_assessments(self):
assessments = [row.assessment_name for row in self.assessment] assessments = [row.assessment_name for row in self.assessment]
for assessment in self.assessment: for assessment in self.assessment:

View File

@@ -19,6 +19,7 @@ class LMSCourse(Document):
self.validate_video_link() self.validate_video_link()
self.validate_status() self.validate_status()
self.validate_payments_app() self.validate_payments_app()
self.validate_amount_and_currency()
self.image = validate_image(self.image) self.image = validate_image(self.image)
def validate_published(self): def validate_published(self):
@@ -51,6 +52,10 @@ class LMSCourse(Document):
if "payments" not in installed_apps: if "payments" not in installed_apps:
frappe.throw(_("Please install the Payments app to create a paid courses.")) 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): def on_update(self):
if not self.upcoming and self.has_value_changed("upcoming"): if not self.upcoming and self.has_value_changed("upcoming"):
self.send_email_to_interested_users() self.send_email_to_interested_users()

View File

@@ -4,6 +4,7 @@
import frappe import frappe
from frappe import _ from frappe import _
from frappe.model.document import Document from frappe.model.document import Document
from frappe.utils import ceil
class LMSEnrollment(Document): class LMSEnrollment(Document):
@@ -11,6 +12,9 @@ class LMSEnrollment(Document):
self.validate_membership_in_same_batch() self.validate_membership_in_same_batch()
self.validate_membership_in_different_batch_same_course() self.validate_membership_in_different_batch_same_course()
def on_update(self):
self.update_program_progress()
def validate_membership_in_same_batch(self): def validate_membership_in_same_batch(self):
filters = {"member": self.member, "course": self.course, "name": ["!=", self.name]} filters = {"member": self.member, "course": self.course, "name": ["!=", self.name]}
if self.batch_old: 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() @frappe.whitelist()
def create_membership( 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): def validate_correct_answers(question):
if question.type == "Choices": if question.type == "Choices":
validate_duplicate_options(question) validate_duplicate_options(question)
validate_minimum_options(question)
validate_correct_options(question) validate_correct_options(question)
elif question.type == "User Input": elif question.type == "User Input":
validate_possible_answer(question) 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.")) 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): def validate_possible_answer(question):
possible_answers = [] possible_answers = []
possible_answers_fields = [ possible_answers_fields = [

View File

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

View File

@@ -1751,3 +1751,81 @@ def enroll_in_batch(batch, payment_name=None):
) )
student.save(ignore_permissions=True) 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": [ "charts": [
{ {
"chart_name": "New Signups", "chart_name": "New Signups",
@@ -145,7 +146,7 @@
"type": "Link" "type": "Link"
} }
], ],
"modified": "2024-08-09 13:19:06.273056", "modified": "2024-11-21 12:16:25.886431",
"modified_by": "Administrator", "modified_by": "Administrator",
"module": "LMS", "module": "LMS",
"name": "LMS", "name": "LMS",
@@ -212,5 +213,6 @@
"type": "DocType" "type": "DocType"
} }
], ],
"title": "LMS" "title": "LMS",
} "type": "Workspace"
}

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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