Compare commits

..

35 Commits

Author SHA1 Message Date
Frappe PR Bot
0b7ff1dff3 chore(release): Bumped to Version 2.15.0 2024-12-04 08:52:51 +00:00
Jannat Patel
9ac4efe9dc Merge pull request #1162 from frappe/l10n_develop2
chore: sync translations from crowdin
2024-12-03 10:24:05 +05:30
Jannat Patel
e278e1ed35 chore: Esperanto translations 2024-12-03 03:41:08 +05:30
Jannat Patel
9db203d74f chore: Bosnian translations 2024-12-03 03:41:06 +05:30
Jannat Patel
c6366835d2 chore: Persian translations 2024-12-03 03:41:05 +05:30
Jannat Patel
5e8ad81ff3 chore: Chinese Simplified translations 2024-12-03 03:41:04 +05:30
Jannat Patel
ac24a353b0 chore: Turkish translations 2024-12-03 03:41:02 +05:30
Jannat Patel
8a3c681a6f chore: Swedish translations 2024-12-03 03:41:00 +05:30
Jannat Patel
2da946236d chore: Russian translations 2024-12-03 03:40:59 +05:30
Jannat Patel
d4641c9135 chore: Polish translations 2024-12-03 03:40:57 +05:30
Jannat Patel
cf710d7be5 chore: Hungarian translations 2024-12-03 03:40:55 +05:30
Jannat Patel
e56b8928f7 chore: German translations 2024-12-03 03:40:54 +05:30
Jannat Patel
66121e6cce chore: Arabic translations 2024-12-03 03:40:53 +05:30
Jannat Patel
cd824631bb chore: Spanish translations 2024-12-03 03:40:51 +05:30
Jannat Patel
115b72f2f0 chore: French translations 2024-12-03 03:40:50 +05:30
Jannat Patel
8d17b35160 Merge pull request #1158 from frappe/l10n_develop2
chore: sync translations from crowdin
2024-12-02 10:07:09 +05:30
Jannat Patel
4c21ce2caa Merge pull request #1157 from frappe/pot_develop_2024-11-29
chore: update POT file
2024-12-02 10:06:56 +05:30
Jannat Patel
0057467acf Merge pull request #1159 from pateljannat/issues-53
fix: check standard in patch when deleting web forms
2024-12-02 10:06:43 +05:30
Jannat Patel
7048b22df0 fix: check standard in patch when deleting web forms 2024-12-01 12:32:44 +05:30
Jannat Patel
ddc3352b4b chore: Swedish translations 2024-12-01 02:22:10 +05:30
Jannat Patel
060a2808de chore: Turkish translations 2024-11-30 01:49:24 +05:30
frappe-pr-bot
d8f8a8e559 chore: update POT file 2024-11-29 16:04:32 +00:00
Jannat Patel
c471d39ba8 Merge pull request #1156 from pateljannat/program-saving-issue
fix: misc issues
2024-11-29 16:59:49 +05:30
Jannat Patel
55ec813f82 chore: removed unused file 2024-11-29 16:48:30 +05:30
Jannat Patel
727f7b032c fix: check for payments app before importing gateway controller 2024-11-29 16:41:00 +05:30
Jannat Patel
d1b613c0bb chore: removed unused file 2024-11-29 16:21:16 +05:30
Jannat Patel
c3af65e535 chore: removed unused imports 2024-11-29 16:07:48 +05:30
Jannat Patel
d688d5cdd9 fix: program title rename and program overlay 2024-11-29 15:53:50 +05:30
Jannat Patel
97543a43eb fix: misc quiz submission issues 2024-11-28 22:32:23 +05:30
Jannat Patel
0e6df83961 fix: patched quiz submission data 2024-11-27 22:47:45 +05:30
Jannat Patel
6329d9c917 Merge pull request #1108 from iamejaaz/required-indicator-job
feat: add required indicator in jobs and quiz
2024-11-27 22:26:08 +05:30
Jannat Patel
a64b0f734a fix: misc issues 2024-11-27 15:45:26 +05:30
Ejaaz Khan
8e1db293db refactor: change possibility to require only one option 2024-11-19 23:52:46 +05:30
Ejaaz Khan
08261c804f refactor: mark two options as required in choices 2024-11-18 23:27:54 +05:30
Ejaaz Khan
26f1e228a9 feat: add required indicator in jobs 2024-11-09 00:58:03 +05:30
37 changed files with 1605 additions and 1499 deletions

View File

@@ -186,18 +186,27 @@ const addQuizzes = () => {
} }
const addPrograms = () => { const addPrograms = () => {
if (settingsStore.learningPaths.data) { let activeFor = ['Programs', 'ProgramForm']
let activeFor = ['Programs', 'ProgramForm'] let index = 1
let index = 1 let canAddProgram = false
if (!isInstructor.value && !isModerator.value) {
sidebarLinks.value = sidebarLinks.value.filter(
(link) => link.label !== 'Courses'
)
activeFor.push('CourseDetail')
activeFor.push('Lesson')
index = 0
}
if (
!isInstructor.value &&
!isModerator.value &&
settingsStore.learningPaths.data
) {
sidebarLinks.value = sidebarLinks.value.filter(
(link) => link.label !== 'Courses'
)
activeFor.push('CourseDetail')
activeFor.push('Lesson')
index = 0
canAddProgram = true
} else if (isInstructor.value || isModerator.value) {
canAddProgram = true
}
if (canAddProgram) {
sidebarLinks.value.splice(index, 0, { sidebarLinks.value.splice(index, 0, {
label: 'Programs', label: 'Programs',
icon: 'Route', icon: 'Route',

View File

@@ -8,7 +8,6 @@
<AppSidebar /> <AppSidebar />
</div> </div>
<div class="w-full overflow-auto" id="scrollContainer"> <div class="w-full overflow-auto" id="scrollContainer">
<OnboardingBanner />
<slot /> <slot />
</div> </div>
</div> </div>
@@ -17,5 +16,4 @@
</template> </template>
<script setup> <script setup>
import AppSidebar from './AppSidebar.vue' import AppSidebar from './AppSidebar.vue'
import OnboardingBanner from '@/components/OnboardingBanner.vue'
</script> </script>

View File

@@ -25,7 +25,7 @@
@click="openHelpDialog('upload')" @click="openHelpDialog('upload')"
> >
<span class="leading-5"> <span class="leading-5">
{{ __('How to upload content from your system?') }} {{ __(contentMap['upload']) }}
</span> </span>
<Info class="w-3 h-3 text-gray-700" /> <Info class="w-3 h-3 text-gray-700" />
</div> </div>
@@ -44,7 +44,7 @@
@click="openHelpDialog('youtube')" @click="openHelpDialog('youtube')"
> >
<span> <span>
{{ __('How to add a YouTube Video?') }} {{ __(contentMap['youtube']) }}
</span> </span>
<Info class="w-3 h-3 text-gray-700" /> <Info class="w-3 h-3 text-gray-700" />
</div> </div>
@@ -72,7 +72,7 @@
</div> </div>
</div> </div>
</div> </div>
<ExplanationVideos v-model="showExplanation" :type="type" /> <ExplanationVideos v-model="showExplanation" :title="title" :type="type" />
</template> </template>
<script setup> <script setup>
import { Info } from 'lucide-vue-next' import { Info } from 'lucide-vue-next'
@@ -81,9 +81,16 @@ import ExplanationVideos from '@/components/Modals/ExplanationVideos.vue'
const showExplanation = ref(false) const showExplanation = ref(false)
const type = ref(null) const type = ref(null)
const title = ref(null)
const contentMap = {
quiz: 'How to add a Quiz?',
upload: 'How to upload content from your system?',
youtube: 'How to add a YouTube Video?',
}
const openHelpDialog = (contentType) => { const openHelpDialog = (contentType) => {
type.value = contentType type.value = contentType
title.value = contentMap[contentType]
showExplanation.value = true showExplanation.value = true
} }
</script> </script>

View File

@@ -3,10 +3,11 @@
v-model="show" v-model="show"
:options="{ :options="{
size: '4xl', size: '4xl',
title: title,
}" }"
> >
<template #body> <template #body-content>
<div class="p-4"> <div>
<VideoBlock :file="file" /> <VideoBlock :file="file" />
</div> </div>
</template> </template>
@@ -24,6 +25,10 @@ const props = defineProps({
type: [String, null], type: [String, null],
required: true, required: true,
}, },
title: {
type: String,
required: true,
},
}) })
const file = computed(() => { const file = computed(() => {

View File

@@ -56,12 +56,14 @@
type="select" type="select"
:options="['Choices', 'User Input', 'Open Ended']" :options="['Choices', 'User Input', 'Open Ended']"
class="pb-2" class="pb-2"
:required="true"
/> />
<div v-if="question.type == 'Choices'" class="divide-y border-t"> <div v-if="question.type == 'Choices'" class="divide-y border-t">
<div v-for="n in 4" class="space-y-4 py-2"> <div v-for="n in 4" class="space-y-4 py-2">
<FormControl <FormControl
:label="__('Option') + ' ' + n" :label="__('Option') + ' ' + n"
v-model="question[`option_${n}`]" v-model="question[`option_${n}`]"
:required="n <= 2 ? true : false"
/> />
<FormControl <FormControl
:label="__('Explanation')" :label="__('Explanation')"
@@ -82,6 +84,7 @@
<FormControl <FormControl
:label="__('Possibility') + ' ' + n" :label="__('Possibility') + ' ' + n"
v-model="question[`possibility_${n}`]" v-model="question[`possibility_${n}`]"
:required="n == 1 ? true : false"
/> />
</div> </div>
</div> </div>

View File

@@ -11,11 +11,11 @@
@click="redirectToCourseForm()" @click="redirectToCourseForm()"
class="flex items-center space-x-2" class="flex items-center space-x-2"
:class="{ :class="{
'cursor-pointer': !onboardingDetails.data.course_created.length, 'cursor-pointer': !onboardingDetails.data.course_created?.length,
}" }"
> >
<span <span
v-if="onboardingDetails.data.course_created.length" v-if="onboardingDetails.data.course_created?.length"
class="py-1 px-1 bg-white rounded-full" class="py-1 px-1 bg-white rounded-full"
> >
<Check class="h-4 w-4 stroke-2 text-green-600" /> <Check class="h-4 w-4 stroke-2 text-green-600" />
@@ -32,13 +32,13 @@
class="flex items-center space-x-2" class="flex items-center space-x-2"
:class="{ :class="{
'cursor-pointer': 'cursor-pointer':
onboardingDetails.data.course_created.length && onboardingDetails.data.course_created?.length &&
!onboardingDetails.data.chapter_created.length, !onboardingDetails.data.chapter_created?.length,
'text-gray-400': !onboardingDetails.data.course_created.length, 'text-gray-400': !onboardingDetails.data.course_created?.length,
}" }"
> >
<span <span
v-if="onboardingDetails.data.chapter_created.length" v-if="onboardingDetails.data.chapter_created?.length"
class="py-1 px-1 bg-white rounded-full" class="py-1 px-1 bg-white rounded-full"
> >
<Check class="h-4 w-4 stroke-2 text-green-600" /> <Check class="h-4 w-4 stroke-2 text-green-600" />
@@ -55,15 +55,15 @@
class="flex items-center space-x-2" class="flex items-center space-x-2"
:class="{ :class="{
'cursor-pointer': 'cursor-pointer':
onboardingDetails.data.course_created.length && onboardingDetails.data.course_created?.length &&
onboardingDetails.data.chapter_created.length, onboardingDetails.data.chapter_created?.length,
'text-gray-400': 'text-gray-400':
!onboardingDetails.data.course_created.length || !onboardingDetails.data.course_created?.length ||
!onboardingDetails.data.chapter_created.length, !onboardingDetails.data.chapter_created?.length,
}" }"
> >
<span <span
v-if="onboardingDetails.data.lesson_created.length" v-if="onboardingDetails.data.lesson_created?.length"
class="py-1 px-1 bg-white rounded-full" class="py-1 px-1 bg-white rounded-full"
> >
<Check class="h-4 w-4 stroke-2 text-green-600" /> <Check class="h-4 w-4 stroke-2 text-green-600" />

View File

@@ -19,8 +19,13 @@
v-model="job.job_title" v-model="job.job_title"
:label="__('Title')" :label="__('Title')"
class="mb-4" class="mb-4"
:required="true"
/>
<FormControl
v-model="job.location"
:label="__('Location')"
:required="true"
/> />
<FormControl v-model="job.location" :label="__('Location')" />
</div> </div>
<div> <div>
<FormControl <FormControl
@@ -29,18 +34,21 @@
type="select" type="select"
:options="jobTypes" :options="jobTypes"
class="mb-4" class="mb-4"
:required="true"
/> />
<FormControl <FormControl
v-model="job.status" v-model="job.status"
:label="__('Status')" :label="__('Status')"
type="select" type="select"
:options="jobStatuses" :options="jobStatuses"
:required="true"
/> />
</div> </div>
</div> </div>
<div class="mt-4"> <div class="mt-4">
<label class="block text-gray-600 text-xs mb-1"> <label class="block text-gray-600 text-xs mb-1">
{{ __('Description') }} {{ __('Description') }}
<span class="text-red-500">*</span>
</label> </label>
<TextEditor <TextEditor
:content="job.description" :content="job.description"
@@ -61,10 +69,12 @@
v-model="job.company_name" v-model="job.company_name"
:label="__('Company Name')" :label="__('Company Name')"
class="mb-4" class="mb-4"
:required="true"
/> />
<FormControl <FormControl
v-model="job.company_website" v-model="job.company_website"
:label="__('Company Website')" :label="__('Company Website')"
:required="true"
/> />
</div> </div>
<div> <div>
@@ -72,9 +82,11 @@
v-model="job.company_email_address" v-model="job.company_email_address"
:label="__('Company Email Address')" :label="__('Company Email Address')"
class="mb-4" class="mb-4"
:required="true"
/> />
<label class="block text-gray-600 text-xs mb-1 mt-4"> <label class="block text-gray-600 text-xs mb-1 mt-4">
{{ __('Company Logo') }} {{ __('Company Logo') }}
<span class="text-red-500">*</span>
</label> </label>
<FileUploader <FileUploader
v-if="!job.image" v-if="!job.image"

View File

@@ -3,7 +3,7 @@
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" 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" /> <Breadcrumbs :items="breadbrumbs" />
<Button variant="solid"> <Button variant="solid" @click="saveProgram()">
{{ __('Save') }} {{ __('Save') }}
</Button> </Button>
</header> </header>
@@ -50,6 +50,7 @@
item-key="name" item-key="name"
group="items" group="items"
@end="updateOrder" @end="updateOrder"
class="cursor-move"
> >
<template #item="{ element: row }"> <template #item="{ element: row }">
<ListRow :row="row" /> <ListRow :row="row" />
@@ -191,11 +192,13 @@ import { Plus, Trash2 } from 'lucide-vue-next'
import Link from '@/components/Controls/Link.vue' import Link from '@/components/Controls/Link.vue'
import { showToast } from '@/utils/' import { showToast } from '@/utils/'
import Draggable from 'vuedraggable' import Draggable from 'vuedraggable'
import { useRouter } from 'vue-router'
const showDialog = ref(false) const showDialog = ref(false)
const currentForm = ref(null) const currentForm = ref(null)
const course = ref(null) const course = ref(null)
const member = ref(null) const member = ref(null)
const router = useRouter()
const props = defineProps({ const props = defineProps({
programName: { programName: {
@@ -302,6 +305,16 @@ const updateOrder = (e) => {
) )
} }
const saveProgram = () => {
call('frappe.model.rename_doc.update_document_title', {
doctype: 'LMS Program',
docname: program.doc.name,
name: program.doc.title,
}).then((data) => {
router.push({ name: 'ProgramForm', params: { programName: data } })
})
}
const courseColumns = computed(() => { const courseColumns = computed(() => {
return [ return [
{ {
@@ -332,10 +345,10 @@ const memberColumns = computed(() => {
align: 'left', align: 'left',
}, },
{ {
label: 'Progress', label: 'Progress (%)',
key: 'progress', key: 'progress',
width: 3, width: 3,
align: 'left', align: 'right',
}, },
] ]
}) })

View File

@@ -15,7 +15,7 @@
</Button> </Button>
</header> </header>
<div v-if="programs.data?.length" class="pt-5 px-5"> <div v-if="programs.data?.length" class="pt-5 px-5">
<div v-for="program in programs.data" class="mb-20"> <div v-for="program in programs.data" class="mb-10">
<div class="flex items-center justify-between"> <div class="flex items-center justify-between">
<div class="text-xl font-semibold"> <div class="text-xl font-semibold">
{{ program.name }} {{ program.name }}
@@ -61,12 +61,23 @@
v-if="program.courses?.length" v-if="program.courses?.length"
class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-5 mt-5" class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-5 mt-5"
> >
<CourseCard <div v-for="course in program.courses" class="relative group">
v-for="course in program.courses" <CourseCard
:course="course" :course="course"
@click="enrollMember(program.name, course.name)" @click="enrollMember(program.name, course.name)"
class="cursor-pointer" class="cursor-pointer"
/> />
<div
v-if="lockCourse(course)"
class="absolute inset-0 bg-black-overlay-500 opacity-60 rounded-md"
></div>
<div
v-if="lockCourse(course)"
class="absolute inset-0 flex items-center justify-center"
>
<LockKeyhole class="size-10 text-white" />
</div>
</div>
</div> </div>
<div v-else class="text-sm italic text-gray-600 mt-4"> <div v-else class="text-sm italic text-gray-600 mt-4">
{{ __('No courses in this program') }} {{ __('No courses in this program') }}
@@ -118,16 +129,28 @@ import {
Dialog, Dialog,
FormControl, FormControl,
} from 'frappe-ui' } from 'frappe-ui'
import { computed, inject, ref } from 'vue' import { computed, inject, onMounted, ref } from 'vue'
import { BookOpen, Edit, Plus } from 'lucide-vue-next' import { BookOpen, Edit, Plus, LockKeyhole } from 'lucide-vue-next'
import CourseCard from '@/components/CourseCard.vue' import CourseCard from '@/components/CourseCard.vue'
import { useRouter } from 'vue-router' import { useRouter } from 'vue-router'
import { showToast, singularize } from '@/utils' import { showToast, singularize } from '@/utils'
import { useSettings } from '@/stores/settings'
const user = inject('$user') const user = inject('$user')
const showDialog = ref(false) const showDialog = ref(false)
const router = useRouter() const router = useRouter()
const title = ref('') const title = ref('')
const settings = useSettings()
onMounted(() => {
if (
!settings.learningPaths.data &&
!user.data?.is_moderator &&
!user.data?.is_instructor
) {
router.push({ name: 'Courses' })
}
})
const programs = createResource({ const programs = createResource({
url: 'lms.lms.utils.get_programs', url: 'lms.lms.utils.get_programs',
@@ -177,6 +200,13 @@ const enrollMember = (program, course) => {
}) })
} }
const lockCourse = (course) => {
if (user.data?.is_moderator || user.data?.is_instructor) return false
if (course.membership) return false
if (course.eligible) return false
return true
}
const breadbrumbs = computed(() => [ const breadbrumbs = computed(() => [
{ {
label: 'Programs', label: 'Programs',

View File

@@ -48,6 +48,7 @@
? __('Title') ? __('Title')
: __('Enter a title and save the quiz to proceed') : __('Enter a title and save the quiz to proceed')
" "
:required="true"
/> />
<div v-if="quizDetails.data?.name"> <div v-if="quizDetails.data?.name">
<div class="grid grid-cols-2 gap-5 mt-4 mb-8"> <div class="grid grid-cols-2 gap-5 mt-4 mb-8">
@@ -205,7 +206,6 @@ import {
inject, inject,
onBeforeUnmount, onBeforeUnmount,
watch, watch,
isReactive,
} from 'vue' } from 'vue'
import { Plus, Trash2 } from 'lucide-vue-next' import { Plus, Trash2 } from 'lucide-vue-next'
import Question from '@/components/Modals/Question.vue' import Question from '@/components/Modals/Question.vue'

View File

@@ -15,38 +15,45 @@
</Button> </Button>
</div> </div>
</header> </header>
<div v-if="submisisonDetails.doc" class="w-1/2 mx-auto py-5 space-y-4"> <div v-if="submisisonDetails.doc" class="w-1/2 mx-auto py-5 space-y-5">
<div class="grid grid-cols-2 gap-5"> <div class="text-xl font-semibold">
<FormControl {{ submisisonDetails.doc.member_name }}
v-model="submisisonDetails.doc.quiz_title"
:label="__('Quiz')"
:disabled="true"
/>
<FormControl
v-model="submisisonDetails.doc.member_name"
:label="__('Member')"
:disabled="true"
/>
</div> </div>
<div class="space-y-4 border p-5 rounded-md">
<div class="grid grid-cols-2 gap-5">
<FormControl
v-model="submisisonDetails.doc.quiz_title"
:label="__('Quiz')"
:disabled="true"
/>
<FormControl
v-model="submisisonDetails.doc.member_name"
:label="__('Member')"
:disabled="true"
/>
</div>
<div class="grid grid-cols-2 gap-5"> <div class="grid grid-cols-2 gap-5">
<FormControl <FormControl
v-model="submisisonDetails.doc.score" v-model="submisisonDetails.doc.score"
:label="__('Score')" :label="__('Score')"
:disabled="true" :disabled="true"
/> />
<FormControl <FormControl
v-model="submisisonDetails.doc.percentage" v-model="submisisonDetails.doc.percentage"
:label="__('Percentage')" :label="__('Percentage')"
:disabled="true" :disabled="true"
/> />
</div>
</div> </div>
<div <div
v-for="row in submisisonDetails.doc.result" v-for="row in submisisonDetails.doc.result"
class="border p-5 rounded-md space-y-4" class="border p-5 rounded-md space-y-4"
> >
<div class="font-semibold">{{ row.idx }}. {{ row.question }}</div> <div class="flex space-x-1 font-semibold">
<span class="leading-5" v-html="row.question"> </span>
</div>
<div v-html="row.answer" class="leading-5"></div> <div v-html="row.answer" class="leading-5"></div>
<div class="grid grid-cols-2 gap-5"> <div class="grid grid-cols-2 gap-5">
<FormControl v-model="row.marks" :label="__('Marks')" /> <FormControl v-model="row.marks" :label="__('Marks')" />
@@ -67,7 +74,7 @@ import {
Button, Button,
Badge, Badge,
} from 'frappe-ui' } from 'frappe-ui'
import { computed, onMounted, inject } from 'vue' import { computed, onBeforeUnmount, onMounted, inject } from 'vue'
import { useRouter } from 'vue-router' import { useRouter } from 'vue-router'
import { showToast } from '@/utils' import { showToast } from '@/utils'
@@ -77,8 +84,25 @@ const user = inject('$user')
onMounted(() => { onMounted(() => {
if (!user.data?.is_instructor && !user.data?.is_moderator) if (!user.data?.is_instructor && !user.data?.is_moderator)
router.push({ name: 'Courses' }) router.push({ name: 'Courses' })
window.addEventListener('keydown', keyboardShortcut)
}) })
onBeforeUnmount(() => {
window.removeEventListener('keydown', keyboardShortcut)
})
const keyboardShortcut = (e) => {
if (
e.key === 's' &&
(e.ctrlKey || e.metaKey) &&
!e.target.classList.contains('ProseMirror')
) {
saveSubmission()
e.preventDefault()
}
}
const props = defineProps({ const props = defineProps({
submission: { submission: {
type: String, type: String,

View File

@@ -60,6 +60,9 @@ export class Quiz {
} }
renderQuizModal() { renderQuizModal() {
if (this.readOnly) {
return
}
const app = createApp(QuizPlugin, { const app = createApp(QuizPlugin, {
onQuizAddition: (quiz) => { onQuizAddition: (quiz) => {
this.data.quiz = quiz this.data.quiz = quiz

View File

@@ -1 +1 @@
__version__ = "2.14.0" __version__ = "2.15.0"

View File

@@ -34,7 +34,7 @@
], ],
"index_web_pages_for_search": 1, "index_web_pages_for_search": 1,
"links": [], "links": [],
"modified": "2024-11-20 12:26:02.214628", "modified": "2024-11-28 22:06:16.742867",
"modified_by": "Administrator", "modified_by": "Administrator",
"module": "LMS", "module": "LMS",
"name": "LMS Program", "name": "LMS Program",
@@ -80,5 +80,6 @@
], ],
"sort_field": "creation", "sort_field": "creation",
"sort_order": "DESC", "sort_order": "DESC",
"states": [] "states": [],
"track_changes": 1
} }

View File

@@ -134,7 +134,6 @@ def quiz_summary(quiz, results):
result["marks"] = marks result["marks"] = marks
score += marks score += marks
del result["question_name"]
else: else:
result["is_correct"] = 0 result["is_correct"] = 0
is_open_ended = True is_open_ended = True

View File

@@ -5,6 +5,7 @@ import frappe
from frappe.model.document import Document from frappe.model.document import Document
from frappe.utils import cint from frappe.utils import cint
from frappe import _ from frappe import _
from frappe.desk.doctype.notification_log.notification_log import make_notification_logs
class LMSQuizSubmission(Document): class LMSQuizSubmission(Document):
@@ -12,6 +13,9 @@ class LMSQuizSubmission(Document):
self.validate_marks() self.validate_marks()
self.set_percentage() self.set_percentage()
def on_update(self):
self.notify_member()
def validate_marks(self): def validate_marks(self):
for row in self.result: for row in self.result:
if cint(row.marks) > cint(row.marks_out_of): if cint(row.marks) > cint(row.marks_out_of):
@@ -26,3 +30,24 @@ class LMSQuizSubmission(Document):
def set_percentage(self): def set_percentage(self):
if self.score and self.score_out_of: if self.score and self.score_out_of:
self.percentage = (self.score / self.score_out_of) * 100 self.percentage = (self.score / self.score_out_of) * 100
def notify_member(self):
if self.score != 0 and self.has_value_changed("score"):
notification = frappe._dict(
{
"subject": _("You have got a score of {0} for the quiz {1}").format(
self.score, self.quiz_title
),
"email_content": _(
"There has been an update on your submission. You have got a score of {0} for the quiz {1}"
).format(self.score, self.quiz_title),
"document_type": self.doctype,
"document_name": self.name,
"for_user": self.member,
"from_user": "Administrator",
"type": "Alert",
"link": "",
}
)
make_notification_logs(notification, [self.member])

View File

@@ -1,6 +0,0 @@
"""Handy module to make access to all doctypes from a single place.
"""
from .doctype.lms_enrollment.lms_enrollment import (
LMSBatchMembership as Membership,
)
from .doctype.lms_course.lms_course import LMSCourse as Course

View File

@@ -1,5 +1,4 @@
import frappe import frappe
from payments.utils import get_payment_gateway_controller
def get_payment_gateway(): def get_payment_gateway():
@@ -7,7 +6,10 @@ def get_payment_gateway():
def get_controller(payment_gateway): def get_controller(payment_gateway):
return get_payment_gateway_controller(payment_gateway) if "payments" in frappe.get_installed_apps():
from payments.utils import get_payment_gateway_controller
return get_payment_gateway_controller(payment_gateway)
def validate_currency(payment_gateway, currency): def validate_currency(payment_gateway, currency):

View File

@@ -6,11 +6,7 @@ import razorpay
import requests import requests
from frappe import _ from frappe import _
from frappe.desk.doctype.dashboard_chart.dashboard_chart import get_result from frappe.desk.doctype.dashboard_chart.dashboard_chart import get_result
from frappe.desk.doctype.notification_log.notification_log import ( from frappe.desk.doctype.notification_log.notification_log import make_notification_logs
make_notification_logs,
enqueue_create_notification,
get_title,
)
from frappe.desk.search import get_user_groups from frappe.desk.search import get_user_groups
from frappe.desk.notifications import extract_mentions from frappe.desk.notifications import extract_mentions
from frappe.utils import ( from frappe.utils import (
@@ -858,7 +854,8 @@ def get_telemetry_boot_info():
@frappe.whitelist() @frappe.whitelist()
def is_onboarding_complete(): def is_onboarding_complete():
if not has_course_moderator_role(): if not has_course_moderator_role():
return {"is_onboarded": False} return {"is_onboarded": True}
course_created = frappe.db.a_row_exists("LMS Course") course_created = frappe.db.a_row_exists("LMS Course")
chapter_created = frappe.db.a_row_exists("Course Chapter") chapter_created = frappe.db.a_row_exists("Course Chapter")
lesson_created = frappe.db.a_row_exists("Course Lesson") lesson_created = frappe.db.a_row_exists("Course Lesson")
@@ -1774,8 +1771,18 @@ def get_programs():
"LMS Program Course", {"parent": program.name}, ["course"], order_by="idx" "LMS Program Course", {"parent": program.name}, ["course"], order_by="idx"
) )
program.courses = [] program.courses = []
for course in program_courses: previous_progress = 0
program.courses.append(get_course_details(course.course)) for i, course in enumerate(program_courses):
details = get_course_details(course.course)
if i == 0:
details.eligible = True
elif previous_progress == 100:
details.eligible = True
else:
details.eligible = False
previous_progress = details.membership.progress if details.membership else 0
program.courses.append(details)
program.members = frappe.db.count("LMS Program Member", {"parent": program.name}) program.members = frappe.db.count("LMS Program Member", {"parent": program.name})

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-22 16:05+0000\n" "POT-Creation-Date: 2024-11-29 16:04+0000\n"
"PO-Revision-Date: 2024-11-25 19:29\n" "PO-Revision-Date: 2024-12-02 22:10\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"
@@ -105,7 +105,7 @@ msgstr "نشط"
#: frontend/src/components/Categories.vue:26 #: frontend/src/components/Categories.vue:26
#: frontend/src/components/LiveClass.vue:11 #: frontend/src/components/LiveClass.vue:11
#: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30 #: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30
#: frontend/src/pages/ProgramForm.vue:91 frontend/src/pages/ProgramForm.vue:136 #: frontend/src/pages/ProgramForm.vue:92 frontend/src/pages/ProgramForm.vue:137
msgid "Add" msgid "Add"
msgstr "إضافة" msgstr "إضافة"
@@ -147,8 +147,8 @@ msgstr ""
msgid "Add a lesson" msgid "Add a lesson"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Question.vue:141 #: frontend/src/components/Modals/Question.vue:144
#: frontend/src/pages/QuizForm.vue:182 #: frontend/src/pages/QuizForm.vue:183
msgid "Add a new question" msgid "Add a new question"
msgstr "" msgstr ""
@@ -922,25 +922,25 @@ msgstr "شركة"
#. Label of the company_details_section (Section Break) field in DocType 'Job #. Label of the company_details_section (Section Break) field in DocType 'Job
#. Opportunity' #. Opportunity'
#: frontend/src/pages/JobCreation.vue:56 #: frontend/src/pages/JobCreation.vue:64
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Details" msgid "Company Details"
msgstr "تفاصيل الشركة" msgstr "تفاصيل الشركة"
#. Label of the company_email_address (Data) field in DocType 'Job Opportunity' #. Label of the company_email_address (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobCreation.vue:73 #: frontend/src/pages/JobCreation.vue:83
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Email Address" msgid "Company Email Address"
msgstr "" msgstr ""
#. Label of the company_logo (Attach Image) field in DocType 'Job Opportunity' #. Label of the company_logo (Attach Image) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobCreation.vue:77 #: frontend/src/pages/JobCreation.vue:88
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Logo" msgid "Company Logo"
msgstr "شعار الشركة" msgstr "شعار الشركة"
#. Label of the company_name (Data) field in DocType 'Job Opportunity' #. Label of the company_name (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobCreation.vue:62 #: frontend/src/pages/JobCreation.vue:70
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Name" msgid "Company Name"
msgstr "اسم الشركة" msgstr "اسم الشركة"
@@ -951,7 +951,7 @@ msgid "Company Type"
msgstr "" msgstr ""
#. Label of the company_website (Data) field in DocType 'Job Opportunity' #. Label of the company_website (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobCreation.vue:67 #: frontend/src/pages/JobCreation.vue:76
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Website" msgid "Company Website"
msgstr "" msgstr ""
@@ -1025,7 +1025,7 @@ msgstr ""
msgid "Contract" msgid "Contract"
msgstr "عقد" msgstr "عقد"
#: lms/lms/utils.py:442 #: lms/lms/utils.py:438
msgid "Cookie Policy" msgid "Cookie Policy"
msgstr "" msgstr ""
@@ -1047,7 +1047,7 @@ msgstr ""
msgid "Correct" msgid "Correct"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Question.vue:71 #: frontend/src/components/Modals/Question.vue:73
msgid "Correct Answer" msgid "Correct Answer"
msgstr "" msgstr ""
@@ -1218,7 +1218,7 @@ msgstr ""
msgid "Course Title" msgid "Course Title"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:226 #: frontend/src/pages/ProgramForm.vue:229
msgid "Course added to program" msgid "Course added to program"
msgstr "" msgstr ""
@@ -1230,7 +1230,7 @@ msgstr ""
msgid "Course deleted successfully" msgid "Course deleted successfully"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:295 #: frontend/src/pages/ProgramForm.vue:298
msgid "Course moved successfully" msgid "Course moved successfully"
msgstr "" msgstr ""
@@ -1270,7 +1270,7 @@ msgid "Cover Image"
msgstr "" msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:9 #: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/pages/Programs.vue:99 #: frontend/src/pages/Programs.vue:110
msgid "Create" msgid "Create"
msgstr "انشاء" msgstr "انشاء"
@@ -1446,7 +1446,7 @@ msgstr ""
#. Label of the description (Text) field in DocType 'LMS Live Class' #. Label of the description (Text) field in DocType 'LMS Live Class'
#. Label of the description (Small Text) field in DocType 'Work Experience' #. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:78 #: frontend/src/components/Modals/LiveClassModal.vue:78
#: frontend/src/pages/BatchForm.vue:96 frontend/src/pages/JobCreation.vue:43 #: frontend/src/pages/BatchForm.vue:96 frontend/src/pages/JobCreation.vue:50
#: 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
@@ -1527,7 +1527,7 @@ msgstr ""
msgid "Duration" msgid "Duration"
msgstr "المدة الزمنية" msgstr "المدة الزمنية"
#: frontend/src/pages/QuizForm.vue:62 #: frontend/src/pages/QuizForm.vue:63
msgid "Duration (in minutes)" msgid "Duration (in minutes)"
msgstr "" msgstr ""
@@ -1562,7 +1562,7 @@ msgstr ""
msgid "Edit Profile" msgid "Edit Profile"
msgstr "تعديل الملف الشخصي" msgstr "تعديل الملف الشخصي"
#: frontend/src/pages/QuizForm.vue:181 #: frontend/src/pages/QuizForm.vue:182
msgid "Edit the question" msgid "Edit the question"
msgstr "" msgstr ""
@@ -1693,7 +1693,7 @@ msgstr ""
msgid "Enrollment Count" msgid "Enrollment Count"
msgstr "" msgstr ""
#: lms/lms/utils.py:1705 #: lms/lms/utils.py:1702
msgid "Enrollment Failed" msgid "Enrollment Failed"
msgstr "" msgstr ""
@@ -1725,12 +1725,12 @@ msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:159 #: frontend/src/components/Modals/ChapterModal.vue:159
#: frontend/src/components/Modals/ChapterModal.vue:166 #: frontend/src/components/Modals/ChapterModal.vue:166
#: frontend/src/components/Modals/ChapterModal.vue:202 #: frontend/src/components/Modals/ChapterModal.vue:202
#: frontend/src/components/Modals/Question.vue:246 #: frontend/src/components/Modals/Question.vue:249
#: frontend/src/components/Modals/Question.vue:266 #: frontend/src/components/Modals/Question.vue:269
#: frontend/src/components/Modals/Question.vue:323 #: frontend/src/components/Modals/Question.vue:326
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350 #: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350
#: frontend/src/pages/QuizForm.vue:365 #: frontend/src/pages/QuizForm.vue:365
#: frontend/src/pages/QuizSubmission.vue:117 #: frontend/src/pages/QuizSubmission.vue:141
msgid "Error" msgid "Error"
msgstr "خطأ" msgstr "خطأ"
@@ -1858,7 +1858,7 @@ msgstr "تاريخ انتهاء الصلاحية"
#. Label of the explanation_1 (Small Text) field in DocType 'LMS Question' #. Label of the explanation_1 (Small Text) field in DocType 'LMS Question'
#. Label of the explanation_3 (Small Text) field in DocType 'LMS Question' #. Label of the explanation_3 (Small Text) field in DocType 'LMS Question'
#. Label of the explanation_4 (Small Text) field in DocType 'LMS Question' #. Label of the explanation_4 (Small Text) field in DocType 'LMS Question'
#: frontend/src/components/Modals/Question.vue:67 #: frontend/src/components/Modals/Question.vue:69
#: lms/lms/doctype/lms_question/lms_question.json #: lms/lms/doctype/lms_question/lms_question.json
msgid "Explanation" msgid "Explanation"
msgstr "تفسير" msgstr "تفسير"
@@ -2116,14 +2116,6 @@ msgstr ""
msgid "How to add a Quiz?" msgid "How to add a Quiz?"
msgstr "" msgstr ""
#: frontend/src/components/LessonHelp.vue:47
msgid "How to add a YouTube Video?"
msgstr ""
#: frontend/src/components/LessonHelp.vue:28
msgid "How to upload content from your system?"
msgstr ""
#. Label of the current (Check) field in DocType 'Work Experience' #. Label of the current (Check) field in DocType 'Work Experience'
#: lms/lms/doctype/work_experience/work_experience.json #: lms/lms/doctype/work_experience/work_experience.json
msgid "I am currently working here" msgid "I am currently working here"
@@ -2202,7 +2194,7 @@ msgstr "صورة"
msgid "Image search powered by" msgid "Image search powered by"
msgstr "" msgstr ""
#: lms/lms/doctype/lms_quiz/lms_quiz.py:222 #: lms/lms/doctype/lms_quiz/lms_quiz.py:221
msgid "Image: Corrupted Data Stream" msgid "Image: Corrupted Data Stream"
msgstr "" msgstr ""
@@ -2388,7 +2380,7 @@ msgstr ""
msgid "Items in Sidebar" msgid "Items in Sidebar"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:269 #: frontend/src/pages/ProgramForm.vue:272
msgid "Items removed successfully" msgid "Items removed successfully"
msgstr "" msgstr ""
@@ -2757,7 +2749,7 @@ msgid "Letter Grade (e.g. A, B-)"
msgstr "" msgstr ""
#. Label of the limit_questions_to (Int) field in DocType 'LMS Quiz' #. Label of the limit_questions_to (Int) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:107 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:108 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Limit Questions To" msgid "Limit Questions To"
msgstr "" msgstr ""
@@ -2817,7 +2809,7 @@ msgstr "محلي"
#. Label of the location (Data) field in DocType 'Job Opportunity' #. Label of the location (Data) field in DocType 'Job Opportunity'
#. Label of the location (Data) field in DocType 'Education Detail' #. Label of the location (Data) field in DocType 'Education Detail'
#. Label of the location (Data) field in DocType 'Work Experience' #. Label of the location (Data) field in DocType 'Work Experience'
#: frontend/src/pages/JobCreation.vue:23 frontend/src/pages/JobDetail.vue:89 #: frontend/src/pages/JobCreation.vue:26 frontend/src/pages/JobDetail.vue:89
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/education_detail/education_detail.json #: lms/lms/doctype/education_detail/education_detail.json
#: lms/lms/doctype/work_experience/work_experience.json #: lms/lms/doctype/work_experience/work_experience.json
@@ -2887,21 +2879,21 @@ msgstr ""
#. Label of the marks (Int) field in DocType 'LMS Quiz Question' #. Label of the marks (Int) field in DocType 'LMS Quiz Question'
#. Label of the marks (Int) field in DocType 'LMS Quiz Result' #. Label of the marks (Int) field in DocType 'LMS Quiz Result'
#: frontend/src/components/Modals/Question.vue:50 #: frontend/src/components/Modals/Question.vue:50
#: frontend/src/components/Modals/Question.vue:96 #: frontend/src/components/Modals/Question.vue:99
#: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:394 #: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:394
#: frontend/src/pages/QuizSubmission.vue:52 #: frontend/src/pages/QuizSubmission.vue:59
#: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json #: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json
#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json
#: lms/templates/quiz/quiz.html:59 #: lms/templates/quiz/quiz.html:59
msgid "Marks" msgid "Marks"
msgstr "" msgstr ""
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:19 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:23
msgid "Marks for question number {0} cannot be greater than the marks allotted for that question." msgid "Marks for question number {0} cannot be greater than the marks allotted for that question."
msgstr "" msgstr ""
#. Label of the marks_out_of (Int) field in DocType 'LMS Quiz Result' #. Label of the marks_out_of (Int) field in DocType 'LMS Quiz Result'
#: frontend/src/pages/QuizSubmission.vue:55 #: frontend/src/pages/QuizSubmission.vue:62
#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json
msgid "Marks out of" msgid "Marks out of"
msgstr "" msgstr ""
@@ -2911,7 +2903,7 @@ msgstr ""
msgid "Max Attempts" msgid "Max Attempts"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:57 #: frontend/src/pages/QuizForm.vue:58
msgid "Maximun Attempts" msgid "Maximun Attempts"
msgstr "" msgstr ""
@@ -2945,7 +2937,7 @@ msgstr "متوسط:"
#. Label of the member (Link) field in DocType 'LMS Payment' #. Label of the member (Link) field in DocType 'LMS Payment'
#. Label of the member (Link) field in DocType 'LMS Program Member' #. Label of the member (Link) field in DocType 'LMS Program Member'
#. Label of the member (Link) field in DocType 'LMS Quiz Submission' #. Label of the member (Link) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizSubmission.vue:27 #: frontend/src/pages/QuizSubmission.vue:31
#: frontend/src/pages/QuizSubmissionList.vue:77 #: frontend/src/pages/QuizSubmissionList.vue:77
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
#: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json
@@ -3008,7 +3000,7 @@ msgstr ""
msgid "Member Type" msgid "Member Type"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:248 #: frontend/src/pages/ProgramForm.vue:251
msgid "Member added to program" msgid "Member added to program"
msgstr "" msgstr ""
@@ -3173,19 +3165,19 @@ msgstr ""
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "" msgstr ""
#: frontend/src/pages/Programs.vue:96 #: frontend/src/pages/Programs.vue:107
msgid "New Program" msgid "New Program"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:132 #: frontend/src/pages/ProgramForm.vue:133
msgid "New Program Course" msgid "New Program Course"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:133 #: frontend/src/pages/ProgramForm.vue:134
msgid "New Program Member" msgid "New Program Member"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:122 #: frontend/src/pages/QuizForm.vue:123
msgid "New Question" msgid "New Question"
msgstr "" msgstr ""
@@ -3198,11 +3190,11 @@ msgstr ""
msgid "New Sign Up" msgid "New Sign Up"
msgstr "" msgstr ""
#: lms/lms/utils.py:627 #: lms/lms/utils.py:623
msgid "New comment in batch {0}" msgid "New comment in batch {0}"
msgstr "" msgstr ""
#: lms/lms/utils.py:620 #: lms/lms/utils.py:616
msgid "New reply on the topic {0} in course {1}" msgid "New reply on the topic {0} in course {1}"
msgstr "" msgstr ""
@@ -3256,7 +3248,7 @@ msgstr ""
msgid "No courses found" msgid "No courses found"
msgstr "" msgstr ""
#: frontend/src/pages/Programs.vue:72 #: frontend/src/pages/Programs.vue:83
msgid "No courses in this program" msgid "No courses in this program"
msgstr "" msgstr ""
@@ -3276,7 +3268,7 @@ msgstr ""
msgid "No live classes scheduled" msgid "No live classes scheduled"
msgstr "" msgstr ""
#: frontend/src/pages/Programs.vue:82 #: frontend/src/pages/Programs.vue:93
msgid "No programs found" msgid "No programs found"
msgstr "" msgstr ""
@@ -3388,7 +3380,7 @@ msgstr ""
msgid "Online" msgid "Online"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:156 #: frontend/src/pages/ProgramForm.vue:157
msgid "Only courses for which self learning is disabled can be added to program." msgid "Only courses for which self learning is disabled can be added to program."
msgstr "" msgstr ""
@@ -3396,7 +3388,7 @@ msgstr ""
msgid "Only files of type {0} will be accepted." msgid "Only files of type {0} will be accepted."
msgstr "" msgstr ""
#: frontend/src/pages/CourseForm.vue:497 frontend/src/utils/index.js:518 #: frontend/src/pages/CourseForm.vue:497 frontend/src/utils/index.js:520
msgid "Only image file is allowed." msgid "Only image file is allowed."
msgstr "" msgstr ""
@@ -3432,7 +3424,7 @@ msgid "Open Network"
msgstr "" msgstr ""
#. Label of the option (Data) field in DocType 'LMS Option' #. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:63 #: frontend/src/components/Modals/Question.vue:64
#: lms/lms/doctype/lms_option/lms_option.json #: lms/lms/doctype/lms_option/lms_option.json
msgid "Option" msgid "Option"
msgstr "الخيار" msgstr "الخيار"
@@ -3547,7 +3539,7 @@ msgstr ""
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz' #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz'
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission' #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizForm.vue:71 frontend/src/pages/Quizzes.vue:125 #: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:125
#: lms/lms/doctype/lms_quiz/lms_quiz.json #: lms/lms/doctype/lms_quiz/lms_quiz.json
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
msgid "Passing Percentage" msgid "Passing Percentage"
@@ -3641,7 +3633,7 @@ msgid "Pending"
msgstr "معلق" msgstr "معلق"
#. Label of the percentage (Int) field in DocType 'LMS Quiz Submission' #. Label of the percentage (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizSubmission.vue:40 #: frontend/src/pages/QuizSubmission.vue:44
#: frontend/src/pages/QuizSubmissionList.vue:93 #: frontend/src/pages/QuizSubmissionList.vue:93
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
msgid "Percentage" msgid "Percentage"
@@ -3676,7 +3668,7 @@ msgstr "يرجى التحقق من بريدك الالكتروني للتحقق"
msgid "Please click on the following button to set your new password" msgid "Please click on the following button to set your new password"
msgstr "" msgstr ""
#: lms/lms/utils.py:1817 lms/lms/utils.py:1821 #: lms/lms/utils.py:1824 lms/lms/utils.py:1828
msgid "Please complete the previous courses in the program to enroll in this course." msgid "Please complete the previous courses in the program to enroll in this course."
msgstr "" msgstr ""
@@ -3779,7 +3771,7 @@ msgstr ""
msgid "Point of Score (e.g. 70)" msgid "Point of Score (e.g. 70)"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Question.vue:83 #: frontend/src/components/Modals/Question.vue:85
msgid "Possibility" msgid "Possibility"
msgstr "" msgstr ""
@@ -3875,7 +3867,7 @@ msgstr ""
msgid "Primary Subgroup" msgid "Primary Subgroup"
msgstr "" msgstr ""
#: lms/lms/utils.py:441 #: lms/lms/utils.py:437
msgid "Privacy Policy" msgid "Privacy Policy"
msgstr "" msgstr ""
@@ -3903,7 +3895,7 @@ msgstr ""
msgid "Profile Image" msgid "Profile Image"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:154 #: frontend/src/pages/ProgramForm.vue:155
msgid "Program Course" msgid "Program Course"
msgstr "" msgstr ""
@@ -3913,12 +3905,12 @@ msgstr ""
msgid "Program Courses" msgid "Program Courses"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:169 #: frontend/src/pages/ProgramForm.vue:170
msgid "Program Member" msgid "Program Member"
msgstr "" msgstr ""
#. Label of the program_members (Table) field in DocType 'LMS Program' #. Label of the program_members (Table) field in DocType 'LMS Program'
#: frontend/src/pages/ProgramForm.vue:78 #: frontend/src/pages/ProgramForm.vue:79
#: lms/lms/doctype/lms_program/lms_program.json #: lms/lms/doctype/lms_program/lms_program.json
msgid "Program Members" msgid "Program Members"
msgstr "" msgstr ""
@@ -4001,11 +3993,11 @@ msgstr ""
msgid "Question Name" msgid "Question Name"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Question.vue:261 #: frontend/src/components/Modals/Question.vue:264
msgid "Question added successfully" msgid "Question added successfully"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Question.vue:313 #: frontend/src/components/Modals/Question.vue:316
msgid "Question updated successfully" msgid "Question updated successfully"
msgstr "" msgstr ""
@@ -4018,7 +4010,7 @@ msgid "Question {0} of {1}"
msgstr "" msgstr ""
#. Label of the questions (Table) field in DocType 'LMS Quiz' #. Label of the questions (Table) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:116 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:117 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Questions" msgid "Questions"
msgstr "" msgstr ""
@@ -4028,7 +4020,7 @@ msgstr ""
#. Label of the quiz (Link) field in DocType 'LMS Quiz Submission' #. Label of the quiz (Link) field in DocType 'LMS Quiz Submission'
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#: frontend/src/pages/QuizSubmission.vue:22 #: frontend/src/pages/QuizSubmission.vue:26
#: frontend/src/pages/QuizSubmissionList.vue:82 frontend/src/utils/quiz.js:24 #: frontend/src/pages/QuizSubmissionList.vue:82 frontend/src/utils/quiz.js:24
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
#: lms/lms/workspace/lms/lms.json #: lms/lms/workspace/lms/lms.json
@@ -4046,7 +4038,7 @@ msgstr ""
msgid "Quiz Submission" msgid "Quiz Submission"
msgstr "" msgstr ""
#: frontend/src/pages/QuizSubmission.vue:98 #: frontend/src/pages/QuizSubmission.vue:122
#: frontend/src/pages/QuizSubmissionList.vue:102 #: frontend/src/pages/QuizSubmissionList.vue:102
msgid "Quiz Submissions" msgid "Quiz Submissions"
msgstr "" msgstr ""
@@ -4315,7 +4307,7 @@ msgid "Scope"
msgstr "" msgstr ""
#. Label of the score (Int) field in DocType 'LMS Quiz Submission' #. Label of the score (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizSubmission.vue:35 #: frontend/src/pages/QuizSubmission.vue:39
#: frontend/src/pages/QuizSubmissionList.vue:87 #: frontend/src/pages/QuizSubmissionList.vue:87
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
#: lms/templates/quiz/quiz.html:148 #: lms/templates/quiz/quiz.html:148
@@ -4352,7 +4344,7 @@ msgstr ""
msgid "Seats Left" msgid "Seats Left"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Question.vue:91 #: frontend/src/components/Modals/Question.vue:94
msgid "Select a question" msgid "Select a question"
msgstr "" msgstr ""
@@ -4381,7 +4373,7 @@ msgstr ""
#: frontend/src/components/Modals/Settings.vue:7 #: frontend/src/components/Modals/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:165 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:79
msgid "Settings" msgid "Settings"
msgstr "إعدادات" msgstr "إعدادات"
@@ -4405,12 +4397,12 @@ msgid "Show Answer"
msgstr "" msgstr ""
#. Label of the show_answers (Check) field in DocType 'LMS Quiz' #. Label of the show_answers (Check) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:84 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:85 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Show Answers" msgid "Show Answers"
msgstr "" msgstr ""
#. Label of the show_submission_history (Check) field in DocType 'LMS Quiz' #. Label of the show_submission_history (Check) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:89 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:90 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Show Submission History" msgid "Show Submission History"
msgstr "" msgstr ""
@@ -4435,11 +4427,11 @@ msgid "Show live class"
msgstr "" msgstr ""
#. Label of the shuffle_questions (Check) field in DocType 'LMS Quiz' #. Label of the shuffle_questions (Check) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:102 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:103 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Shuffle Questions" msgid "Shuffle Questions"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:96 #: frontend/src/pages/QuizForm.vue:97
msgid "Shuffle Settings" msgid "Shuffle Settings"
msgstr "" msgstr ""
@@ -4635,7 +4627,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Course Progress' #. Label of the status (Select) field in DocType 'LMS Course Progress'
#. Label of the status (Select) field in DocType 'LMS Mentor Request' #. Label of the status (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:91 #: frontend/src/components/Modals/Event.vue:91
#: frontend/src/pages/JobCreation.vue:35 #: frontend/src/pages/JobCreation.vue:41
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_join_request/cohort_join_request.json #: lms/lms/doctype/cohort_join_request/cohort_join_request.json
@@ -4727,7 +4719,7 @@ msgstr ""
#: frontend/src/components/Modals/AssessmentModal.vue:9 #: frontend/src/components/Modals/AssessmentModal.vue:9
#: frontend/src/components/Modals/BatchCourseModal.vue:9 #: frontend/src/components/Modals/BatchCourseModal.vue:9
#: frontend/src/components/Modals/EvaluationModal.vue:9 #: frontend/src/components/Modals/EvaluationModal.vue:9
#: frontend/src/components/Modals/Question.vue:335 #: frontend/src/components/Modals/Question.vue:338
#: frontend/src/components/Quiz.vue:214 lms/templates/assignment.html:9 #: frontend/src/components/Quiz.vue:214 lms/templates/assignment.html:9
#: lms/templates/livecode/extension_footer.html:25 #: lms/templates/livecode/extension_footer.html:25
#: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163 #: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163
@@ -4754,12 +4746,12 @@ msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:198 #: frontend/src/components/Modals/ChapterModal.vue:198
#: 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:264
#: frontend/src/components/Modals/Question.vue:312 #: frontend/src/components/Modals/Question.vue:315
#: frontend/src/pages/CourseForm.vue:460 frontend/src/pages/ProgramForm.vue:226 #: frontend/src/pages/CourseForm.vue:460 frontend/src/pages/ProgramForm.vue:229
#: frontend/src/pages/ProgramForm.vue:248 #: frontend/src/pages/ProgramForm.vue:251
#: frontend/src/pages/ProgramForm.vue:269 #: frontend/src/pages/ProgramForm.vue:272
#: frontend/src/pages/ProgramForm.vue:295 frontend/src/pages/QuizForm.vue:343 #: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:343
#: frontend/src/pages/QuizForm.vue:362 frontend/src/pages/QuizForm.vue:431 #: frontend/src/pages/QuizForm.vue:362 frontend/src/pages/QuizForm.vue:431
msgid "Success" msgid "Success"
msgstr "نجاح" msgstr "نجاح"
@@ -4856,7 +4848,7 @@ msgstr "قالب"
msgid "Temporarily Disabled" msgid "Temporarily Disabled"
msgstr "موقوف مؤقتا" msgstr "موقوف مؤقتا"
#: lms/lms/utils.py:440 #: lms/lms/utils.py:436
msgid "Terms of Use" msgid "Terms of Use"
msgstr "" msgstr ""
@@ -4920,7 +4912,7 @@ msgstr ""
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!" msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr "" msgstr ""
#: frontend/src/pages/Programs.vue:86 #: frontend/src/pages/Programs.vue:97
msgid "There are no programs available at the moment. Keep an eye out, fresh learning experiences are on the way soon!" msgid "There are no programs available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr "" msgstr ""
@@ -4936,6 +4928,10 @@ msgstr ""
msgid "There are no {0} on this site." msgid "There are no {0} on this site."
msgstr "" msgstr ""
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:41
msgid "There has been an update on your submission. You have got a score of {0} for the quiz {1}"
msgstr ""
#. Description of the 'section_break_ubxi' (Section Break) field in DocType #. Description of the 'section_break_ubxi' (Section Break) field in DocType
#. 'LMS Batch' #. 'LMS Batch'
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
@@ -4955,7 +4951,7 @@ msgstr ""
msgid "This course has:" msgid "This course has:"
msgstr "" msgstr ""
#: lms/lms/utils.py:1585 #: lms/lms/utils.py:1582
msgid "This course is free." msgid "This course is free."
msgstr "" msgstr ""
@@ -5060,7 +5056,7 @@ msgstr ""
#: frontend/src/components/Modals/LiveClassModal.vue:23 #: frontend/src/components/Modals/LiveClassModal.vue:23
#: frontend/src/pages/BatchForm.vue:20 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/ProgramForm.vue:11 #: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/ProgramForm.vue:11
#: frontend/src/pages/Programs.vue:107 frontend/src/pages/QuizForm.vue:48 #: frontend/src/pages/Programs.vue:118 frontend/src/pages/QuizForm.vue:48
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json #: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json
@@ -5097,7 +5093,7 @@ msgstr "إلى"
msgid "To Date" msgid "To Date"
msgstr "إلى تاريخ" msgstr "إلى تاريخ"
#: lms/lms/utils.py:1596 #: 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 ""
@@ -5114,7 +5110,7 @@ msgid "Total"
msgstr "الاجمالي غير شامل الضريبة" msgstr "الاجمالي غير شامل الضريبة"
#. Label of the total_marks (Int) field in DocType 'LMS Quiz' #. Label of the total_marks (Int) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:66 frontend/src/pages/Quizzes.vue:119 #: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:119
#: lms/lms/doctype/lms_quiz/lms_quiz.json #: lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Total Marks" msgid "Total Marks"
msgstr "" msgstr ""
@@ -5151,7 +5147,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/Jobs.vue:16 #: frontend/src/pages/JobCreation.vue:33 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
@@ -5515,6 +5511,10 @@ msgstr ""
msgid "You have been enrolled in this course" msgid "You have been enrolled in this course"
msgstr "" msgstr ""
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:38
msgid "You have got a score of {0} for the quiz {1}"
msgstr ""
#: frontend/src/pages/Quizzes.vue:60 #: frontend/src/pages/Quizzes.vue:60
msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above." msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above."
msgstr "" msgstr ""
@@ -5685,7 +5685,7 @@ msgstr ""
msgid "{0} is your evaluator" msgid "{0} is your evaluator"
msgstr "" msgstr ""
#: lms/lms/utils.py:704 #: lms/lms/utils.py:700
msgid "{0} mentioned you in a comment" msgid "{0} mentioned you in a comment"
msgstr "" msgstr ""
@@ -5693,11 +5693,11 @@ msgstr ""
msgid "{0} mentioned you in a comment in your batch." msgid "{0} mentioned you in a comment in your batch."
msgstr "" msgstr ""
#: lms/lms/utils.py:657 lms/lms/utils.py:663 #: lms/lms/utils.py:653 lms/lms/utils.py:659
msgid "{0} mentioned you in a comment in {1}" msgid "{0} mentioned you in a comment in {1}"
msgstr "{0} ذكرتك في تعليق في {1}" msgstr "{0} ذكرتك في تعليق في {1}"
#: lms/lms/utils.py:480 #: lms/lms/utils.py:476
msgid "{0}k" msgid "{0}k"
msgstr "" msgstr ""

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-11-22 16:05+0000\n" "POT-Creation-Date: 2024-11-29 16:04+0000\n"
"PO-Revision-Date: 2024-11-25 19:29\n" "PO-Revision-Date: 2024-12-02 22:11\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"
@@ -105,7 +105,7 @@ msgstr "Aktivan"
#: frontend/src/components/Categories.vue:26 #: frontend/src/components/Categories.vue:26
#: frontend/src/components/LiveClass.vue:11 #: frontend/src/components/LiveClass.vue:11
#: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30 #: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30
#: frontend/src/pages/ProgramForm.vue:91 frontend/src/pages/ProgramForm.vue:136 #: frontend/src/pages/ProgramForm.vue:92 frontend/src/pages/ProgramForm.vue:137
msgid "Add" msgid "Add"
msgstr "Dodaj" msgstr "Dodaj"
@@ -147,8 +147,8 @@ msgstr ""
msgid "Add a lesson" msgid "Add a lesson"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Question.vue:141 #: frontend/src/components/Modals/Question.vue:144
#: frontend/src/pages/QuizForm.vue:182 #: frontend/src/pages/QuizForm.vue:183
msgid "Add a new question" msgid "Add a new question"
msgstr "" msgstr ""
@@ -922,25 +922,25 @@ msgstr "Kompanija"
#. Label of the company_details_section (Section Break) field in DocType 'Job #. Label of the company_details_section (Section Break) field in DocType 'Job
#. Opportunity' #. Opportunity'
#: frontend/src/pages/JobCreation.vue:56 #: frontend/src/pages/JobCreation.vue:64
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Details" msgid "Company Details"
msgstr "" msgstr ""
#. Label of the company_email_address (Data) field in DocType 'Job Opportunity' #. Label of the company_email_address (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobCreation.vue:73 #: frontend/src/pages/JobCreation.vue:83
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Email Address" msgid "Company Email Address"
msgstr "" msgstr ""
#. Label of the company_logo (Attach Image) field in DocType 'Job Opportunity' #. Label of the company_logo (Attach Image) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobCreation.vue:77 #: frontend/src/pages/JobCreation.vue:88
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Logo" msgid "Company Logo"
msgstr "" msgstr ""
#. Label of the company_name (Data) field in DocType 'Job Opportunity' #. Label of the company_name (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobCreation.vue:62 #: frontend/src/pages/JobCreation.vue:70
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Name" msgid "Company Name"
msgstr "Naziv kompanije" msgstr "Naziv kompanije"
@@ -951,7 +951,7 @@ msgid "Company Type"
msgstr "" msgstr ""
#. Label of the company_website (Data) field in DocType 'Job Opportunity' #. Label of the company_website (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobCreation.vue:67 #: frontend/src/pages/JobCreation.vue:76
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Website" msgid "Company Website"
msgstr "" msgstr ""
@@ -1025,7 +1025,7 @@ msgstr ""
msgid "Contract" msgid "Contract"
msgstr "" msgstr ""
#: lms/lms/utils.py:442 #: lms/lms/utils.py:438
msgid "Cookie Policy" msgid "Cookie Policy"
msgstr "" msgstr ""
@@ -1047,7 +1047,7 @@ msgstr ""
msgid "Correct" msgid "Correct"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Question.vue:71 #: frontend/src/components/Modals/Question.vue:73
msgid "Correct Answer" msgid "Correct Answer"
msgstr "" msgstr ""
@@ -1218,7 +1218,7 @@ msgstr ""
msgid "Course Title" msgid "Course Title"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:226 #: frontend/src/pages/ProgramForm.vue:229
msgid "Course added to program" msgid "Course added to program"
msgstr "" msgstr ""
@@ -1230,7 +1230,7 @@ msgstr ""
msgid "Course deleted successfully" msgid "Course deleted successfully"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:295 #: frontend/src/pages/ProgramForm.vue:298
msgid "Course moved successfully" msgid "Course moved successfully"
msgstr "" msgstr ""
@@ -1270,7 +1270,7 @@ msgid "Cover Image"
msgstr "" msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:9 #: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/pages/Programs.vue:99 #: frontend/src/pages/Programs.vue:110
msgid "Create" msgid "Create"
msgstr "Kreiraj" msgstr "Kreiraj"
@@ -1446,7 +1446,7 @@ msgstr ""
#. Label of the description (Text) field in DocType 'LMS Live Class' #. Label of the description (Text) field in DocType 'LMS Live Class'
#. Label of the description (Small Text) field in DocType 'Work Experience' #. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:78 #: frontend/src/components/Modals/LiveClassModal.vue:78
#: frontend/src/pages/BatchForm.vue:96 frontend/src/pages/JobCreation.vue:43 #: frontend/src/pages/BatchForm.vue:96 frontend/src/pages/JobCreation.vue:50
#: 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
@@ -1527,7 +1527,7 @@ msgstr ""
msgid "Duration" msgid "Duration"
msgstr "Trajanje" msgstr "Trajanje"
#: frontend/src/pages/QuizForm.vue:62 #: frontend/src/pages/QuizForm.vue:63
msgid "Duration (in minutes)" msgid "Duration (in minutes)"
msgstr "" msgstr ""
@@ -1562,7 +1562,7 @@ msgstr ""
msgid "Edit Profile" msgid "Edit Profile"
msgstr "Uredi profil" msgstr "Uredi profil"
#: frontend/src/pages/QuizForm.vue:181 #: frontend/src/pages/QuizForm.vue:182
msgid "Edit the question" msgid "Edit the question"
msgstr "" msgstr ""
@@ -1693,7 +1693,7 @@ msgstr ""
msgid "Enrollment Count" msgid "Enrollment Count"
msgstr "" msgstr ""
#: lms/lms/utils.py:1705 #: lms/lms/utils.py:1702
msgid "Enrollment Failed" msgid "Enrollment Failed"
msgstr "" msgstr ""
@@ -1725,12 +1725,12 @@ msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:159 #: frontend/src/components/Modals/ChapterModal.vue:159
#: frontend/src/components/Modals/ChapterModal.vue:166 #: frontend/src/components/Modals/ChapterModal.vue:166
#: frontend/src/components/Modals/ChapterModal.vue:202 #: frontend/src/components/Modals/ChapterModal.vue:202
#: frontend/src/components/Modals/Question.vue:246 #: frontend/src/components/Modals/Question.vue:249
#: frontend/src/components/Modals/Question.vue:266 #: frontend/src/components/Modals/Question.vue:269
#: frontend/src/components/Modals/Question.vue:323 #: frontend/src/components/Modals/Question.vue:326
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350 #: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350
#: frontend/src/pages/QuizForm.vue:365 #: frontend/src/pages/QuizForm.vue:365
#: frontend/src/pages/QuizSubmission.vue:117 #: frontend/src/pages/QuizSubmission.vue:141
msgid "Error" msgid "Error"
msgstr "Grеška" msgstr "Grеška"
@@ -1858,7 +1858,7 @@ msgstr ""
#. Label of the explanation_1 (Small Text) field in DocType 'LMS Question' #. Label of the explanation_1 (Small Text) field in DocType 'LMS Question'
#. Label of the explanation_3 (Small Text) field in DocType 'LMS Question' #. Label of the explanation_3 (Small Text) field in DocType 'LMS Question'
#. Label of the explanation_4 (Small Text) field in DocType 'LMS Question' #. Label of the explanation_4 (Small Text) field in DocType 'LMS Question'
#: frontend/src/components/Modals/Question.vue:67 #: frontend/src/components/Modals/Question.vue:69
#: lms/lms/doctype/lms_question/lms_question.json #: lms/lms/doctype/lms_question/lms_question.json
msgid "Explanation" msgid "Explanation"
msgstr "" msgstr ""
@@ -2116,14 +2116,6 @@ msgstr ""
msgid "How to add a Quiz?" msgid "How to add a Quiz?"
msgstr "" msgstr ""
#: frontend/src/components/LessonHelp.vue:47
msgid "How to add a YouTube Video?"
msgstr ""
#: frontend/src/components/LessonHelp.vue:28
msgid "How to upload content from your system?"
msgstr ""
#. Label of the current (Check) field in DocType 'Work Experience' #. Label of the current (Check) field in DocType 'Work Experience'
#: lms/lms/doctype/work_experience/work_experience.json #: lms/lms/doctype/work_experience/work_experience.json
msgid "I am currently working here" msgid "I am currently working here"
@@ -2202,7 +2194,7 @@ msgstr "Slika"
msgid "Image search powered by" msgid "Image search powered by"
msgstr "" msgstr ""
#: lms/lms/doctype/lms_quiz/lms_quiz.py:222 #: lms/lms/doctype/lms_quiz/lms_quiz.py:221
msgid "Image: Corrupted Data Stream" msgid "Image: Corrupted Data Stream"
msgstr "" msgstr ""
@@ -2388,7 +2380,7 @@ msgstr ""
msgid "Items in Sidebar" msgid "Items in Sidebar"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:269 #: frontend/src/pages/ProgramForm.vue:272
msgid "Items removed successfully" msgid "Items removed successfully"
msgstr "" msgstr ""
@@ -2757,7 +2749,7 @@ msgid "Letter Grade (e.g. A, B-)"
msgstr "" msgstr ""
#. Label of the limit_questions_to (Int) field in DocType 'LMS Quiz' #. Label of the limit_questions_to (Int) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:107 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:108 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Limit Questions To" msgid "Limit Questions To"
msgstr "" msgstr ""
@@ -2817,7 +2809,7 @@ msgstr ""
#. Label of the location (Data) field in DocType 'Job Opportunity' #. Label of the location (Data) field in DocType 'Job Opportunity'
#. Label of the location (Data) field in DocType 'Education Detail' #. Label of the location (Data) field in DocType 'Education Detail'
#. Label of the location (Data) field in DocType 'Work Experience' #. Label of the location (Data) field in DocType 'Work Experience'
#: frontend/src/pages/JobCreation.vue:23 frontend/src/pages/JobDetail.vue:89 #: frontend/src/pages/JobCreation.vue:26 frontend/src/pages/JobDetail.vue:89
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/education_detail/education_detail.json #: lms/lms/doctype/education_detail/education_detail.json
#: lms/lms/doctype/work_experience/work_experience.json #: lms/lms/doctype/work_experience/work_experience.json
@@ -2887,21 +2879,21 @@ msgstr ""
#. Label of the marks (Int) field in DocType 'LMS Quiz Question' #. Label of the marks (Int) field in DocType 'LMS Quiz Question'
#. Label of the marks (Int) field in DocType 'LMS Quiz Result' #. Label of the marks (Int) field in DocType 'LMS Quiz Result'
#: frontend/src/components/Modals/Question.vue:50 #: frontend/src/components/Modals/Question.vue:50
#: frontend/src/components/Modals/Question.vue:96 #: frontend/src/components/Modals/Question.vue:99
#: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:394 #: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:394
#: frontend/src/pages/QuizSubmission.vue:52 #: frontend/src/pages/QuizSubmission.vue:59
#: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json #: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json
#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json
#: lms/templates/quiz/quiz.html:59 #: lms/templates/quiz/quiz.html:59
msgid "Marks" msgid "Marks"
msgstr "" msgstr ""
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:19 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:23
msgid "Marks for question number {0} cannot be greater than the marks allotted for that question." msgid "Marks for question number {0} cannot be greater than the marks allotted for that question."
msgstr "" msgstr ""
#. Label of the marks_out_of (Int) field in DocType 'LMS Quiz Result' #. Label of the marks_out_of (Int) field in DocType 'LMS Quiz Result'
#: frontend/src/pages/QuizSubmission.vue:55 #: frontend/src/pages/QuizSubmission.vue:62
#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json
msgid "Marks out of" msgid "Marks out of"
msgstr "" msgstr ""
@@ -2911,7 +2903,7 @@ msgstr ""
msgid "Max Attempts" msgid "Max Attempts"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:57 #: frontend/src/pages/QuizForm.vue:58
msgid "Maximun Attempts" msgid "Maximun Attempts"
msgstr "" msgstr ""
@@ -2945,7 +2937,7 @@ msgstr "Srednje:"
#. Label of the member (Link) field in DocType 'LMS Payment' #. Label of the member (Link) field in DocType 'LMS Payment'
#. Label of the member (Link) field in DocType 'LMS Program Member' #. Label of the member (Link) field in DocType 'LMS Program Member'
#. Label of the member (Link) field in DocType 'LMS Quiz Submission' #. Label of the member (Link) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizSubmission.vue:27 #: frontend/src/pages/QuizSubmission.vue:31
#: frontend/src/pages/QuizSubmissionList.vue:77 #: frontend/src/pages/QuizSubmissionList.vue:77
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
#: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json
@@ -3008,7 +3000,7 @@ msgstr ""
msgid "Member Type" msgid "Member Type"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:248 #: frontend/src/pages/ProgramForm.vue:251
msgid "Member added to program" msgid "Member added to program"
msgstr "" msgstr ""
@@ -3173,19 +3165,19 @@ msgstr ""
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "" msgstr ""
#: frontend/src/pages/Programs.vue:96 #: frontend/src/pages/Programs.vue:107
msgid "New Program" msgid "New Program"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:132 #: frontend/src/pages/ProgramForm.vue:133
msgid "New Program Course" msgid "New Program Course"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:133 #: frontend/src/pages/ProgramForm.vue:134
msgid "New Program Member" msgid "New Program Member"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:122 #: frontend/src/pages/QuizForm.vue:123
msgid "New Question" msgid "New Question"
msgstr "" msgstr ""
@@ -3198,11 +3190,11 @@ msgstr ""
msgid "New Sign Up" msgid "New Sign Up"
msgstr "" msgstr ""
#: lms/lms/utils.py:627 #: lms/lms/utils.py:623
msgid "New comment in batch {0}" msgid "New comment in batch {0}"
msgstr "" msgstr ""
#: lms/lms/utils.py:620 #: lms/lms/utils.py:616
msgid "New reply on the topic {0} in course {1}" msgid "New reply on the topic {0} in course {1}"
msgstr "" msgstr ""
@@ -3256,7 +3248,7 @@ msgstr ""
msgid "No courses found" msgid "No courses found"
msgstr "" msgstr ""
#: frontend/src/pages/Programs.vue:72 #: frontend/src/pages/Programs.vue:83
msgid "No courses in this program" msgid "No courses in this program"
msgstr "" msgstr ""
@@ -3276,7 +3268,7 @@ msgstr ""
msgid "No live classes scheduled" msgid "No live classes scheduled"
msgstr "" msgstr ""
#: frontend/src/pages/Programs.vue:82 #: frontend/src/pages/Programs.vue:93
msgid "No programs found" msgid "No programs found"
msgstr "" msgstr ""
@@ -3388,7 +3380,7 @@ msgstr ""
msgid "Online" msgid "Online"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:156 #: frontend/src/pages/ProgramForm.vue:157
msgid "Only courses for which self learning is disabled can be added to program." msgid "Only courses for which self learning is disabled can be added to program."
msgstr "" msgstr ""
@@ -3396,7 +3388,7 @@ msgstr ""
msgid "Only files of type {0} will be accepted." msgid "Only files of type {0} will be accepted."
msgstr "" msgstr ""
#: frontend/src/pages/CourseForm.vue:497 frontend/src/utils/index.js:518 #: frontend/src/pages/CourseForm.vue:497 frontend/src/utils/index.js:520
msgid "Only image file is allowed." msgid "Only image file is allowed."
msgstr "" msgstr ""
@@ -3432,7 +3424,7 @@ msgid "Open Network"
msgstr "" msgstr ""
#. Label of the option (Data) field in DocType 'LMS Option' #. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:63 #: frontend/src/components/Modals/Question.vue:64
#: lms/lms/doctype/lms_option/lms_option.json #: lms/lms/doctype/lms_option/lms_option.json
msgid "Option" msgid "Option"
msgstr "Opcija" msgstr "Opcija"
@@ -3547,7 +3539,7 @@ msgstr "Prolaz"
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz' #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz'
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission' #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizForm.vue:71 frontend/src/pages/Quizzes.vue:125 #: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:125
#: lms/lms/doctype/lms_quiz/lms_quiz.json #: lms/lms/doctype/lms_quiz/lms_quiz.json
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
msgid "Passing Percentage" msgid "Passing Percentage"
@@ -3641,7 +3633,7 @@ msgid "Pending"
msgstr "Na čekanju" msgstr "Na čekanju"
#. Label of the percentage (Int) field in DocType 'LMS Quiz Submission' #. Label of the percentage (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizSubmission.vue:40 #: frontend/src/pages/QuizSubmission.vue:44
#: frontend/src/pages/QuizSubmissionList.vue:93 #: frontend/src/pages/QuizSubmissionList.vue:93
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
msgid "Percentage" msgid "Percentage"
@@ -3676,7 +3668,7 @@ msgstr "Molimo provjerite svoju e-poštu za potvrdu"
msgid "Please click on the following button to set your new password" msgid "Please click on the following button to set your new password"
msgstr "" msgstr ""
#: lms/lms/utils.py:1817 lms/lms/utils.py:1821 #: lms/lms/utils.py:1824 lms/lms/utils.py:1828
msgid "Please complete the previous courses in the program to enroll in this course." msgid "Please complete the previous courses in the program to enroll in this course."
msgstr "" msgstr ""
@@ -3779,7 +3771,7 @@ msgstr ""
msgid "Point of Score (e.g. 70)" msgid "Point of Score (e.g. 70)"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Question.vue:83 #: frontend/src/components/Modals/Question.vue:85
msgid "Possibility" msgid "Possibility"
msgstr "" msgstr ""
@@ -3875,7 +3867,7 @@ msgstr ""
msgid "Primary Subgroup" msgid "Primary Subgroup"
msgstr "" msgstr ""
#: lms/lms/utils.py:441 #: lms/lms/utils.py:437
msgid "Privacy Policy" msgid "Privacy Policy"
msgstr "" msgstr ""
@@ -3903,7 +3895,7 @@ msgstr ""
msgid "Profile Image" msgid "Profile Image"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:154 #: frontend/src/pages/ProgramForm.vue:155
msgid "Program Course" msgid "Program Course"
msgstr "" msgstr ""
@@ -3913,12 +3905,12 @@ msgstr ""
msgid "Program Courses" msgid "Program Courses"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:169 #: frontend/src/pages/ProgramForm.vue:170
msgid "Program Member" msgid "Program Member"
msgstr "" msgstr ""
#. Label of the program_members (Table) field in DocType 'LMS Program' #. Label of the program_members (Table) field in DocType 'LMS Program'
#: frontend/src/pages/ProgramForm.vue:78 #: frontend/src/pages/ProgramForm.vue:79
#: lms/lms/doctype/lms_program/lms_program.json #: lms/lms/doctype/lms_program/lms_program.json
msgid "Program Members" msgid "Program Members"
msgstr "" msgstr ""
@@ -4001,11 +3993,11 @@ msgstr ""
msgid "Question Name" msgid "Question Name"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Question.vue:261 #: frontend/src/components/Modals/Question.vue:264
msgid "Question added successfully" msgid "Question added successfully"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Question.vue:313 #: frontend/src/components/Modals/Question.vue:316
msgid "Question updated successfully" msgid "Question updated successfully"
msgstr "" msgstr ""
@@ -4018,7 +4010,7 @@ msgid "Question {0} of {1}"
msgstr "" msgstr ""
#. Label of the questions (Table) field in DocType 'LMS Quiz' #. Label of the questions (Table) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:116 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:117 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Questions" msgid "Questions"
msgstr "" msgstr ""
@@ -4028,7 +4020,7 @@ msgstr ""
#. Label of the quiz (Link) field in DocType 'LMS Quiz Submission' #. Label of the quiz (Link) field in DocType 'LMS Quiz Submission'
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#: frontend/src/pages/QuizSubmission.vue:22 #: frontend/src/pages/QuizSubmission.vue:26
#: frontend/src/pages/QuizSubmissionList.vue:82 frontend/src/utils/quiz.js:24 #: frontend/src/pages/QuizSubmissionList.vue:82 frontend/src/utils/quiz.js:24
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
#: lms/lms/workspace/lms/lms.json #: lms/lms/workspace/lms/lms.json
@@ -4046,7 +4038,7 @@ msgstr ""
msgid "Quiz Submission" msgid "Quiz Submission"
msgstr "" msgstr ""
#: frontend/src/pages/QuizSubmission.vue:98 #: frontend/src/pages/QuizSubmission.vue:122
#: frontend/src/pages/QuizSubmissionList.vue:102 #: frontend/src/pages/QuizSubmissionList.vue:102
msgid "Quiz Submissions" msgid "Quiz Submissions"
msgstr "" msgstr ""
@@ -4315,7 +4307,7 @@ msgid "Scope"
msgstr "" msgstr ""
#. Label of the score (Int) field in DocType 'LMS Quiz Submission' #. Label of the score (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizSubmission.vue:35 #: frontend/src/pages/QuizSubmission.vue:39
#: frontend/src/pages/QuizSubmissionList.vue:87 #: frontend/src/pages/QuizSubmissionList.vue:87
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
#: lms/templates/quiz/quiz.html:148 #: lms/templates/quiz/quiz.html:148
@@ -4352,7 +4344,7 @@ msgstr ""
msgid "Seats Left" msgid "Seats Left"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Question.vue:91 #: frontend/src/components/Modals/Question.vue:94
msgid "Select a question" msgid "Select a question"
msgstr "" msgstr ""
@@ -4381,7 +4373,7 @@ msgstr ""
#: frontend/src/components/Modals/Settings.vue:7 #: frontend/src/components/Modals/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:165 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:79
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
@@ -4405,12 +4397,12 @@ msgid "Show Answer"
msgstr "" msgstr ""
#. Label of the show_answers (Check) field in DocType 'LMS Quiz' #. Label of the show_answers (Check) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:84 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:85 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Show Answers" msgid "Show Answers"
msgstr "" msgstr ""
#. Label of the show_submission_history (Check) field in DocType 'LMS Quiz' #. Label of the show_submission_history (Check) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:89 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:90 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Show Submission History" msgid "Show Submission History"
msgstr "" msgstr ""
@@ -4435,11 +4427,11 @@ msgid "Show live class"
msgstr "" msgstr ""
#. Label of the shuffle_questions (Check) field in DocType 'LMS Quiz' #. Label of the shuffle_questions (Check) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:102 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:103 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Shuffle Questions" msgid "Shuffle Questions"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:96 #: frontend/src/pages/QuizForm.vue:97
msgid "Shuffle Settings" msgid "Shuffle Settings"
msgstr "" msgstr ""
@@ -4635,7 +4627,7 @@ msgstr "Statistika"
#. Label of the status (Select) field in DocType 'LMS Course Progress' #. Label of the status (Select) field in DocType 'LMS Course Progress'
#. Label of the status (Select) field in DocType 'LMS Mentor Request' #. Label of the status (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:91 #: frontend/src/components/Modals/Event.vue:91
#: frontend/src/pages/JobCreation.vue:35 #: frontend/src/pages/JobCreation.vue:41
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_join_request/cohort_join_request.json #: lms/lms/doctype/cohort_join_request/cohort_join_request.json
@@ -4727,7 +4719,7 @@ msgstr ""
#: frontend/src/components/Modals/AssessmentModal.vue:9 #: frontend/src/components/Modals/AssessmentModal.vue:9
#: frontend/src/components/Modals/BatchCourseModal.vue:9 #: frontend/src/components/Modals/BatchCourseModal.vue:9
#: frontend/src/components/Modals/EvaluationModal.vue:9 #: frontend/src/components/Modals/EvaluationModal.vue:9
#: frontend/src/components/Modals/Question.vue:335 #: frontend/src/components/Modals/Question.vue:338
#: frontend/src/components/Quiz.vue:214 lms/templates/assignment.html:9 #: frontend/src/components/Quiz.vue:214 lms/templates/assignment.html:9
#: lms/templates/livecode/extension_footer.html:25 #: lms/templates/livecode/extension_footer.html:25
#: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163 #: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163
@@ -4754,12 +4746,12 @@ msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:198 #: frontend/src/components/Modals/ChapterModal.vue:198
#: 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:264
#: frontend/src/components/Modals/Question.vue:312 #: frontend/src/components/Modals/Question.vue:315
#: frontend/src/pages/CourseForm.vue:460 frontend/src/pages/ProgramForm.vue:226 #: frontend/src/pages/CourseForm.vue:460 frontend/src/pages/ProgramForm.vue:229
#: frontend/src/pages/ProgramForm.vue:248 #: frontend/src/pages/ProgramForm.vue:251
#: frontend/src/pages/ProgramForm.vue:269 #: frontend/src/pages/ProgramForm.vue:272
#: frontend/src/pages/ProgramForm.vue:295 frontend/src/pages/QuizForm.vue:343 #: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:343
#: frontend/src/pages/QuizForm.vue:362 frontend/src/pages/QuizForm.vue:431 #: frontend/src/pages/QuizForm.vue:362 frontend/src/pages/QuizForm.vue:431
msgid "Success" msgid "Success"
msgstr "" msgstr ""
@@ -4856,7 +4848,7 @@ msgstr ""
msgid "Temporarily Disabled" msgid "Temporarily Disabled"
msgstr "Privremeno onemogućeno" msgstr "Privremeno onemogućeno"
#: lms/lms/utils.py:440 #: lms/lms/utils.py:436
msgid "Terms of Use" msgid "Terms of Use"
msgstr "" msgstr ""
@@ -4920,7 +4912,7 @@ msgstr ""
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!" msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr "" msgstr ""
#: frontend/src/pages/Programs.vue:86 #: frontend/src/pages/Programs.vue:97
msgid "There are no programs available at the moment. Keep an eye out, fresh learning experiences are on the way soon!" msgid "There are no programs available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr "" msgstr ""
@@ -4936,6 +4928,10 @@ msgstr ""
msgid "There are no {0} on this site." msgid "There are no {0} on this site."
msgstr "" msgstr ""
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:41
msgid "There has been an update on your submission. You have got a score of {0} for the quiz {1}"
msgstr ""
#. Description of the 'section_break_ubxi' (Section Break) field in DocType #. Description of the 'section_break_ubxi' (Section Break) field in DocType
#. 'LMS Batch' #. 'LMS Batch'
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
@@ -4955,7 +4951,7 @@ msgstr ""
msgid "This course has:" msgid "This course has:"
msgstr "" msgstr ""
#: lms/lms/utils.py:1585 #: lms/lms/utils.py:1582
msgid "This course is free." msgid "This course is free."
msgstr "" msgstr ""
@@ -5060,7 +5056,7 @@ msgstr ""
#: frontend/src/components/Modals/LiveClassModal.vue:23 #: frontend/src/components/Modals/LiveClassModal.vue:23
#: frontend/src/pages/BatchForm.vue:20 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/ProgramForm.vue:11 #: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/ProgramForm.vue:11
#: frontend/src/pages/Programs.vue:107 frontend/src/pages/QuizForm.vue:48 #: frontend/src/pages/Programs.vue:118 frontend/src/pages/QuizForm.vue:48
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json #: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json
@@ -5097,7 +5093,7 @@ msgstr ""
msgid "To Date" msgid "To Date"
msgstr "" msgstr ""
#: lms/lms/utils.py:1596 #: 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 ""
@@ -5114,7 +5110,7 @@ msgid "Total"
msgstr "" msgstr ""
#. Label of the total_marks (Int) field in DocType 'LMS Quiz' #. Label of the total_marks (Int) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:66 frontend/src/pages/Quizzes.vue:119 #: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:119
#: lms/lms/doctype/lms_quiz/lms_quiz.json #: lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Total Marks" msgid "Total Marks"
msgstr "" msgstr ""
@@ -5151,7 +5147,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/Jobs.vue:16 #: frontend/src/pages/JobCreation.vue:33 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
@@ -5515,6 +5511,10 @@ msgstr ""
msgid "You have been enrolled in this course" msgid "You have been enrolled in this course"
msgstr "" msgstr ""
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:38
msgid "You have got a score of {0} for the quiz {1}"
msgstr ""
#: frontend/src/pages/Quizzes.vue:60 #: frontend/src/pages/Quizzes.vue:60
msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above." msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above."
msgstr "" msgstr ""
@@ -5685,7 +5685,7 @@ msgstr ""
msgid "{0} is your evaluator" msgid "{0} is your evaluator"
msgstr "" msgstr ""
#: lms/lms/utils.py:704 #: lms/lms/utils.py:700
msgid "{0} mentioned you in a comment" msgid "{0} mentioned you in a comment"
msgstr "" msgstr ""
@@ -5693,11 +5693,11 @@ msgstr ""
msgid "{0} mentioned you in a comment in your batch." msgid "{0} mentioned you in a comment in your batch."
msgstr "" msgstr ""
#: lms/lms/utils.py:657 lms/lms/utils.py:663 #: lms/lms/utils.py:653 lms/lms/utils.py:659
msgid "{0} mentioned you in a comment in {1}" msgid "{0} mentioned you in a comment in {1}"
msgstr "{0} vas je spomenuo u komentaru u {1}" msgstr "{0} vas je spomenuo u komentaru u {1}"
#: lms/lms/utils.py:480 #: lms/lms/utils.py:476
msgid "{0}k" msgid "{0}k"
msgstr "" msgstr ""

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-11-22 16:05+0000\n" "POT-Creation-Date: 2024-11-29 16:04+0000\n"
"PO-Revision-Date: 2024-11-25 19:29\n" "PO-Revision-Date: 2024-12-02 22:10\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"
@@ -105,7 +105,7 @@ msgstr "Aktiv"
#: frontend/src/components/Categories.vue:26 #: frontend/src/components/Categories.vue:26
#: frontend/src/components/LiveClass.vue:11 #: frontend/src/components/LiveClass.vue:11
#: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30 #: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30
#: frontend/src/pages/ProgramForm.vue:91 frontend/src/pages/ProgramForm.vue:136 #: frontend/src/pages/ProgramForm.vue:92 frontend/src/pages/ProgramForm.vue:137
msgid "Add" msgid "Add"
msgstr "Hinzufügen" msgstr "Hinzufügen"
@@ -147,8 +147,8 @@ msgstr "Kurs hinzufügen"
msgid "Add a lesson" msgid "Add a lesson"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Question.vue:141 #: frontend/src/components/Modals/Question.vue:144
#: frontend/src/pages/QuizForm.vue:182 #: frontend/src/pages/QuizForm.vue:183
msgid "Add a new question" msgid "Add a new question"
msgstr "" msgstr ""
@@ -922,25 +922,25 @@ msgstr "Unternehmen"
#. Label of the company_details_section (Section Break) field in DocType 'Job #. Label of the company_details_section (Section Break) field in DocType 'Job
#. Opportunity' #. Opportunity'
#: frontend/src/pages/JobCreation.vue:56 #: frontend/src/pages/JobCreation.vue:64
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Details" msgid "Company Details"
msgstr "Details zum Unternehmen" msgstr "Details zum Unternehmen"
#. Label of the company_email_address (Data) field in DocType 'Job Opportunity' #. Label of the company_email_address (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobCreation.vue:73 #: frontend/src/pages/JobCreation.vue:83
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Email Address" msgid "Company Email Address"
msgstr "Unternehmens-E-Mail-Adresse" msgstr "Unternehmens-E-Mail-Adresse"
#. Label of the company_logo (Attach Image) field in DocType 'Job Opportunity' #. Label of the company_logo (Attach Image) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobCreation.vue:77 #: frontend/src/pages/JobCreation.vue:88
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Logo" msgid "Company Logo"
msgstr "Logo des Unternehmens" msgstr "Logo des Unternehmens"
#. Label of the company_name (Data) field in DocType 'Job Opportunity' #. Label of the company_name (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobCreation.vue:62 #: frontend/src/pages/JobCreation.vue:70
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Name" msgid "Company Name"
msgstr "Firma" msgstr "Firma"
@@ -951,7 +951,7 @@ msgid "Company Type"
msgstr "" msgstr ""
#. Label of the company_website (Data) field in DocType 'Job Opportunity' #. Label of the company_website (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobCreation.vue:67 #: frontend/src/pages/JobCreation.vue:76
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Website" msgid "Company Website"
msgstr "Unternehmenswebseite" msgstr "Unternehmenswebseite"
@@ -1025,7 +1025,7 @@ msgstr ""
msgid "Contract" msgid "Contract"
msgstr "Vertrag" msgstr "Vertrag"
#: lms/lms/utils.py:442 #: lms/lms/utils.py:438
msgid "Cookie Policy" msgid "Cookie Policy"
msgstr "Cookie-Richtlinie" msgstr "Cookie-Richtlinie"
@@ -1047,7 +1047,7 @@ msgstr ""
msgid "Correct" msgid "Correct"
msgstr "Richtig" msgstr "Richtig"
#: frontend/src/components/Modals/Question.vue:71 #: frontend/src/components/Modals/Question.vue:73
msgid "Correct Answer" msgid "Correct Answer"
msgstr "" msgstr ""
@@ -1218,7 +1218,7 @@ msgstr "Kurs-Statistiken"
msgid "Course Title" msgid "Course Title"
msgstr "Kurstitel" msgstr "Kurstitel"
#: frontend/src/pages/ProgramForm.vue:226 #: frontend/src/pages/ProgramForm.vue:229
msgid "Course added to program" msgid "Course added to program"
msgstr "" msgstr ""
@@ -1230,7 +1230,7 @@ msgstr ""
msgid "Course deleted successfully" msgid "Course deleted successfully"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:295 #: frontend/src/pages/ProgramForm.vue:298
msgid "Course moved successfully" msgid "Course moved successfully"
msgstr "" msgstr ""
@@ -1270,7 +1270,7 @@ msgid "Cover Image"
msgstr "" msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:9 #: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/pages/Programs.vue:99 #: frontend/src/pages/Programs.vue:110
msgid "Create" msgid "Create"
msgstr "Erstellen" msgstr "Erstellen"
@@ -1446,7 +1446,7 @@ msgstr ""
#. Label of the description (Text) field in DocType 'LMS Live Class' #. Label of the description (Text) field in DocType 'LMS Live Class'
#. Label of the description (Small Text) field in DocType 'Work Experience' #. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:78 #: frontend/src/components/Modals/LiveClassModal.vue:78
#: frontend/src/pages/BatchForm.vue:96 frontend/src/pages/JobCreation.vue:43 #: frontend/src/pages/BatchForm.vue:96 frontend/src/pages/JobCreation.vue:50
#: 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
@@ -1527,7 +1527,7 @@ msgstr "Doppelte Optionen für diese Frage gefunden."
msgid "Duration" msgid "Duration"
msgstr "Dauer" msgstr "Dauer"
#: frontend/src/pages/QuizForm.vue:62 #: frontend/src/pages/QuizForm.vue:63
msgid "Duration (in minutes)" msgid "Duration (in minutes)"
msgstr "" msgstr ""
@@ -1562,7 +1562,7 @@ msgstr "Kapitel bearbeiten"
msgid "Edit Profile" msgid "Edit Profile"
msgstr "Profil bearbeiten" msgstr "Profil bearbeiten"
#: frontend/src/pages/QuizForm.vue:181 #: frontend/src/pages/QuizForm.vue:182
msgid "Edit the question" msgid "Edit the question"
msgstr "" msgstr ""
@@ -1693,7 +1693,7 @@ msgstr ""
msgid "Enrollment Count" msgid "Enrollment Count"
msgstr "Anzahl der Einschreibungen" msgstr "Anzahl der Einschreibungen"
#: lms/lms/utils.py:1705 #: lms/lms/utils.py:1702
msgid "Enrollment Failed" msgid "Enrollment Failed"
msgstr "" msgstr ""
@@ -1725,12 +1725,12 @@ msgstr "Geben Sie die richtige Antwort ein"
#: frontend/src/components/Modals/ChapterModal.vue:159 #: frontend/src/components/Modals/ChapterModal.vue:159
#: frontend/src/components/Modals/ChapterModal.vue:166 #: frontend/src/components/Modals/ChapterModal.vue:166
#: frontend/src/components/Modals/ChapterModal.vue:202 #: frontend/src/components/Modals/ChapterModal.vue:202
#: frontend/src/components/Modals/Question.vue:246 #: frontend/src/components/Modals/Question.vue:249
#: frontend/src/components/Modals/Question.vue:266 #: frontend/src/components/Modals/Question.vue:269
#: frontend/src/components/Modals/Question.vue:323 #: frontend/src/components/Modals/Question.vue:326
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350 #: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350
#: frontend/src/pages/QuizForm.vue:365 #: frontend/src/pages/QuizForm.vue:365
#: frontend/src/pages/QuizSubmission.vue:117 #: frontend/src/pages/QuizSubmission.vue:141
msgid "Error" msgid "Error"
msgstr "Fehler" msgstr "Fehler"
@@ -1858,7 +1858,7 @@ msgstr "Verfallsdatum"
#. Label of the explanation_1 (Small Text) field in DocType 'LMS Question' #. Label of the explanation_1 (Small Text) field in DocType 'LMS Question'
#. Label of the explanation_3 (Small Text) field in DocType 'LMS Question' #. Label of the explanation_3 (Small Text) field in DocType 'LMS Question'
#. Label of the explanation_4 (Small Text) field in DocType 'LMS Question' #. Label of the explanation_4 (Small Text) field in DocType 'LMS Question'
#: frontend/src/components/Modals/Question.vue:67 #: frontend/src/components/Modals/Question.vue:69
#: lms/lms/doctype/lms_question/lms_question.json #: lms/lms/doctype/lms_question/lms_question.json
msgid "Explanation" msgid "Explanation"
msgstr "Erklärung" msgstr "Erklärung"
@@ -2116,14 +2116,6 @@ msgstr "Gastgeber"
msgid "How to add a Quiz?" msgid "How to add a Quiz?"
msgstr "" msgstr ""
#: frontend/src/components/LessonHelp.vue:47
msgid "How to add a YouTube Video?"
msgstr ""
#: frontend/src/components/LessonHelp.vue:28
msgid "How to upload content from your system?"
msgstr ""
#. Label of the current (Check) field in DocType 'Work Experience' #. Label of the current (Check) field in DocType 'Work Experience'
#: lms/lms/doctype/work_experience/work_experience.json #: lms/lms/doctype/work_experience/work_experience.json
msgid "I am currently working here" msgid "I am currently working here"
@@ -2202,7 +2194,7 @@ msgstr "Bild"
msgid "Image search powered by" msgid "Image search powered by"
msgstr "Bildsuche powered by" msgstr "Bildsuche powered by"
#: lms/lms/doctype/lms_quiz/lms_quiz.py:222 #: lms/lms/doctype/lms_quiz/lms_quiz.py:221
msgid "Image: Corrupted Data Stream" msgid "Image: Corrupted Data Stream"
msgstr "Bild: Beschädigter Datenstrom" msgstr "Bild: Beschädigter Datenstrom"
@@ -2388,7 +2380,7 @@ msgstr "Ausgestellt am"
msgid "Items in Sidebar" msgid "Items in Sidebar"
msgstr "Elemente in der Seitenleiste" msgstr "Elemente in der Seitenleiste"
#: frontend/src/pages/ProgramForm.vue:269 #: frontend/src/pages/ProgramForm.vue:272
msgid "Items removed successfully" msgid "Items removed successfully"
msgstr "" msgstr ""
@@ -2757,7 +2749,7 @@ msgid "Letter Grade (e.g. A, B-)"
msgstr "Buchstabennote (z.B. A, B-)" msgstr "Buchstabennote (z.B. A, B-)"
#. Label of the limit_questions_to (Int) field in DocType 'LMS Quiz' #. Label of the limit_questions_to (Int) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:107 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:108 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Limit Questions To" msgid "Limit Questions To"
msgstr "Fragen begrenzen auf" msgstr "Fragen begrenzen auf"
@@ -2817,7 +2809,7 @@ msgstr "Lokal"
#. Label of the location (Data) field in DocType 'Job Opportunity' #. Label of the location (Data) field in DocType 'Job Opportunity'
#. Label of the location (Data) field in DocType 'Education Detail' #. Label of the location (Data) field in DocType 'Education Detail'
#. Label of the location (Data) field in DocType 'Work Experience' #. Label of the location (Data) field in DocType 'Work Experience'
#: frontend/src/pages/JobCreation.vue:23 frontend/src/pages/JobDetail.vue:89 #: frontend/src/pages/JobCreation.vue:26 frontend/src/pages/JobDetail.vue:89
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/education_detail/education_detail.json #: lms/lms/doctype/education_detail/education_detail.json
#: lms/lms/doctype/work_experience/work_experience.json #: lms/lms/doctype/work_experience/work_experience.json
@@ -2887,21 +2879,21 @@ msgstr "Als gelesen markieren"
#. Label of the marks (Int) field in DocType 'LMS Quiz Question' #. Label of the marks (Int) field in DocType 'LMS Quiz Question'
#. Label of the marks (Int) field in DocType 'LMS Quiz Result' #. Label of the marks (Int) field in DocType 'LMS Quiz Result'
#: frontend/src/components/Modals/Question.vue:50 #: frontend/src/components/Modals/Question.vue:50
#: frontend/src/components/Modals/Question.vue:96 #: frontend/src/components/Modals/Question.vue:99
#: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:394 #: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:394
#: frontend/src/pages/QuizSubmission.vue:52 #: frontend/src/pages/QuizSubmission.vue:59
#: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json #: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json
#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json
#: lms/templates/quiz/quiz.html:59 #: lms/templates/quiz/quiz.html:59
msgid "Marks" msgid "Marks"
msgstr "" msgstr ""
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:19 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:23
msgid "Marks for question number {0} cannot be greater than the marks allotted for that question." msgid "Marks for question number {0} cannot be greater than the marks allotted for that question."
msgstr "" msgstr ""
#. Label of the marks_out_of (Int) field in DocType 'LMS Quiz Result' #. Label of the marks_out_of (Int) field in DocType 'LMS Quiz Result'
#: frontend/src/pages/QuizSubmission.vue:55 #: frontend/src/pages/QuizSubmission.vue:62
#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json
msgid "Marks out of" msgid "Marks out of"
msgstr "" msgstr ""
@@ -2911,7 +2903,7 @@ msgstr ""
msgid "Max Attempts" msgid "Max Attempts"
msgstr "Max. Versuche" msgstr "Max. Versuche"
#: frontend/src/pages/QuizForm.vue:57 #: frontend/src/pages/QuizForm.vue:58
msgid "Maximun Attempts" msgid "Maximun Attempts"
msgstr "" msgstr ""
@@ -2945,7 +2937,7 @@ msgstr "Mittel:"
#. Label of the member (Link) field in DocType 'LMS Payment' #. Label of the member (Link) field in DocType 'LMS Payment'
#. Label of the member (Link) field in DocType 'LMS Program Member' #. Label of the member (Link) field in DocType 'LMS Program Member'
#. Label of the member (Link) field in DocType 'LMS Quiz Submission' #. Label of the member (Link) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizSubmission.vue:27 #: frontend/src/pages/QuizSubmission.vue:31
#: frontend/src/pages/QuizSubmissionList.vue:77 #: frontend/src/pages/QuizSubmissionList.vue:77
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
#: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json
@@ -3008,7 +3000,7 @@ msgstr ""
msgid "Member Type" msgid "Member Type"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:248 #: frontend/src/pages/ProgramForm.vue:251
msgid "Member added to program" msgid "Member added to program"
msgstr "" msgstr ""
@@ -3173,19 +3165,19 @@ msgstr ""
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "" msgstr ""
#: frontend/src/pages/Programs.vue:96 #: frontend/src/pages/Programs.vue:107
msgid "New Program" msgid "New Program"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:132 #: frontend/src/pages/ProgramForm.vue:133
msgid "New Program Course" msgid "New Program Course"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:133 #: frontend/src/pages/ProgramForm.vue:134
msgid "New Program Member" msgid "New Program Member"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:122 #: frontend/src/pages/QuizForm.vue:123
msgid "New Question" msgid "New Question"
msgstr "" msgstr ""
@@ -3198,11 +3190,11 @@ msgstr ""
msgid "New Sign Up" msgid "New Sign Up"
msgstr "" msgstr ""
#: lms/lms/utils.py:627 #: lms/lms/utils.py:623
msgid "New comment in batch {0}" msgid "New comment in batch {0}"
msgstr "" msgstr ""
#: lms/lms/utils.py:620 #: lms/lms/utils.py:616
msgid "New reply on the topic {0} in course {1}" msgid "New reply on the topic {0} in course {1}"
msgstr "" msgstr ""
@@ -3256,7 +3248,7 @@ msgstr "Keine Kurse erstellt"
msgid "No courses found" msgid "No courses found"
msgstr "" msgstr ""
#: frontend/src/pages/Programs.vue:72 #: frontend/src/pages/Programs.vue:83
msgid "No courses in this program" msgid "No courses in this program"
msgstr "" msgstr ""
@@ -3276,7 +3268,7 @@ msgstr "Keine Stellen ausgeschrieben"
msgid "No live classes scheduled" msgid "No live classes scheduled"
msgstr "Keine Live-Kurse geplant" msgstr "Keine Live-Kurse geplant"
#: frontend/src/pages/Programs.vue:82 #: frontend/src/pages/Programs.vue:93
msgid "No programs found" msgid "No programs found"
msgstr "" msgstr ""
@@ -3388,7 +3380,7 @@ msgstr "Sobald der Moderator Ihren Beitrag bewertet hat, finden Sie hier die Det
msgid "Online" msgid "Online"
msgstr "Online" msgstr "Online"
#: frontend/src/pages/ProgramForm.vue:156 #: frontend/src/pages/ProgramForm.vue:157
msgid "Only courses for which self learning is disabled can be added to program." msgid "Only courses for which self learning is disabled can be added to program."
msgstr "" msgstr ""
@@ -3396,7 +3388,7 @@ msgstr ""
msgid "Only files of type {0} will be accepted." msgid "Only files of type {0} will be accepted."
msgstr "Es werden nur Dateien vom Typ {0} akzeptiert." msgstr "Es werden nur Dateien vom Typ {0} akzeptiert."
#: frontend/src/pages/CourseForm.vue:497 frontend/src/utils/index.js:518 #: frontend/src/pages/CourseForm.vue:497 frontend/src/utils/index.js:520
msgid "Only image file is allowed." msgid "Only image file is allowed."
msgstr "" msgstr ""
@@ -3432,7 +3424,7 @@ msgid "Open Network"
msgstr "" msgstr ""
#. Label of the option (Data) field in DocType 'LMS Option' #. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:63 #: frontend/src/components/Modals/Question.vue:64
#: lms/lms/doctype/lms_option/lms_option.json #: lms/lms/doctype/lms_option/lms_option.json
msgid "Option" msgid "Option"
msgstr "Option" msgstr "Option"
@@ -3547,7 +3539,7 @@ msgstr "Erfolgreich"
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz' #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz'
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission' #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizForm.vue:71 frontend/src/pages/Quizzes.vue:125 #: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:125
#: lms/lms/doctype/lms_quiz/lms_quiz.json #: lms/lms/doctype/lms_quiz/lms_quiz.json
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
msgid "Passing Percentage" msgid "Passing Percentage"
@@ -3641,7 +3633,7 @@ msgid "Pending"
msgstr "Ausstehend" msgstr "Ausstehend"
#. Label of the percentage (Int) field in DocType 'LMS Quiz Submission' #. Label of the percentage (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizSubmission.vue:40 #: frontend/src/pages/QuizSubmission.vue:44
#: frontend/src/pages/QuizSubmissionList.vue:93 #: frontend/src/pages/QuizSubmissionList.vue:93
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
msgid "Percentage" msgid "Percentage"
@@ -3676,7 +3668,7 @@ msgstr "Bitte überprüfen Sie Ihren Posteingang. Wir haben Ihnen eine E-Mail mi
msgid "Please click on the following button to set your new password" msgid "Please click on the following button to set your new password"
msgstr "Bitte klicken Sie auf die folgende Schaltfläche, um Ihr neues Passwort festzulegen" msgstr "Bitte klicken Sie auf die folgende Schaltfläche, um Ihr neues Passwort festzulegen"
#: lms/lms/utils.py:1817 lms/lms/utils.py:1821 #: lms/lms/utils.py:1824 lms/lms/utils.py:1828
msgid "Please complete the previous courses in the program to enroll in this course." msgid "Please complete the previous courses in the program to enroll in this course."
msgstr "" msgstr ""
@@ -3779,7 +3771,7 @@ msgstr ""
msgid "Point of Score (e.g. 70)" msgid "Point of Score (e.g. 70)"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Question.vue:83 #: frontend/src/components/Modals/Question.vue:85
msgid "Possibility" msgid "Possibility"
msgstr "" msgstr ""
@@ -3875,7 +3867,7 @@ msgstr ""
msgid "Primary Subgroup" msgid "Primary Subgroup"
msgstr "Primäre Untergruppe" msgstr "Primäre Untergruppe"
#: lms/lms/utils.py:441 #: lms/lms/utils.py:437
msgid "Privacy Policy" msgid "Privacy Policy"
msgstr "Datenschutzerklärung" msgstr "Datenschutzerklärung"
@@ -3903,7 +3895,7 @@ msgstr ""
msgid "Profile Image" msgid "Profile Image"
msgstr "Profilbild" msgstr "Profilbild"
#: frontend/src/pages/ProgramForm.vue:154 #: frontend/src/pages/ProgramForm.vue:155
msgid "Program Course" msgid "Program Course"
msgstr "" msgstr ""
@@ -3913,12 +3905,12 @@ msgstr ""
msgid "Program Courses" msgid "Program Courses"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:169 #: frontend/src/pages/ProgramForm.vue:170
msgid "Program Member" msgid "Program Member"
msgstr "" msgstr ""
#. Label of the program_members (Table) field in DocType 'LMS Program' #. Label of the program_members (Table) field in DocType 'LMS Program'
#: frontend/src/pages/ProgramForm.vue:78 #: frontend/src/pages/ProgramForm.vue:79
#: lms/lms/doctype/lms_program/lms_program.json #: lms/lms/doctype/lms_program/lms_program.json
msgid "Program Members" msgid "Program Members"
msgstr "" msgstr ""
@@ -4001,11 +3993,11 @@ msgstr ""
msgid "Question Name" msgid "Question Name"
msgstr "Name der Frage" msgstr "Name der Frage"
#: frontend/src/components/Modals/Question.vue:261 #: frontend/src/components/Modals/Question.vue:264
msgid "Question added successfully" msgid "Question added successfully"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Question.vue:313 #: frontend/src/components/Modals/Question.vue:316
msgid "Question updated successfully" msgid "Question updated successfully"
msgstr "" msgstr ""
@@ -4018,7 +4010,7 @@ msgid "Question {0} of {1}"
msgstr "Frage {0} von {1}" msgstr "Frage {0} von {1}"
#. Label of the questions (Table) field in DocType 'LMS Quiz' #. Label of the questions (Table) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:116 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:117 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Questions" msgid "Questions"
msgstr "Fragen" msgstr "Fragen"
@@ -4028,7 +4020,7 @@ msgstr ""
#. Label of the quiz (Link) field in DocType 'LMS Quiz Submission' #. Label of the quiz (Link) field in DocType 'LMS Quiz Submission'
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#: frontend/src/pages/QuizSubmission.vue:22 #: frontend/src/pages/QuizSubmission.vue:26
#: frontend/src/pages/QuizSubmissionList.vue:82 frontend/src/utils/quiz.js:24 #: frontend/src/pages/QuizSubmissionList.vue:82 frontend/src/utils/quiz.js:24
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
#: lms/lms/workspace/lms/lms.json #: lms/lms/workspace/lms/lms.json
@@ -4046,7 +4038,7 @@ msgstr "Quiz-ID"
msgid "Quiz Submission" msgid "Quiz Submission"
msgstr "Quiz-Einreichung" msgstr "Quiz-Einreichung"
#: frontend/src/pages/QuizSubmission.vue:98 #: frontend/src/pages/QuizSubmission.vue:122
#: frontend/src/pages/QuizSubmissionList.vue:102 #: frontend/src/pages/QuizSubmissionList.vue:102
msgid "Quiz Submissions" msgid "Quiz Submissions"
msgstr "" msgstr ""
@@ -4315,7 +4307,7 @@ msgid "Scope"
msgstr "Geltungsbereich" msgstr "Geltungsbereich"
#. Label of the score (Int) field in DocType 'LMS Quiz Submission' #. Label of the score (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizSubmission.vue:35 #: frontend/src/pages/QuizSubmission.vue:39
#: frontend/src/pages/QuizSubmissionList.vue:87 #: frontend/src/pages/QuizSubmissionList.vue:87
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
#: lms/templates/quiz/quiz.html:148 #: lms/templates/quiz/quiz.html:148
@@ -4352,7 +4344,7 @@ msgstr ""
msgid "Seats Left" msgid "Seats Left"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Question.vue:91 #: frontend/src/components/Modals/Question.vue:94
msgid "Select a question" msgid "Select a question"
msgstr "" msgstr ""
@@ -4381,7 +4373,7 @@ msgstr ""
#: frontend/src/components/Modals/Settings.vue:7 #: frontend/src/components/Modals/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:165 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:79
msgid "Settings" msgid "Settings"
msgstr "Einstellungen" msgstr "Einstellungen"
@@ -4405,12 +4397,12 @@ msgid "Show Answer"
msgstr "" msgstr ""
#. Label of the show_answers (Check) field in DocType 'LMS Quiz' #. Label of the show_answers (Check) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:84 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:85 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Show Answers" msgid "Show Answers"
msgstr "" msgstr ""
#. Label of the show_submission_history (Check) field in DocType 'LMS Quiz' #. Label of the show_submission_history (Check) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:89 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:90 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Show Submission History" msgid "Show Submission History"
msgstr "" msgstr ""
@@ -4435,11 +4427,11 @@ msgid "Show live class"
msgstr "" msgstr ""
#. Label of the shuffle_questions (Check) field in DocType 'LMS Quiz' #. Label of the shuffle_questions (Check) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:102 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:103 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Shuffle Questions" msgid "Shuffle Questions"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:96 #: frontend/src/pages/QuizForm.vue:97
msgid "Shuffle Settings" msgid "Shuffle Settings"
msgstr "" msgstr ""
@@ -4635,7 +4627,7 @@ msgstr "Statistiken"
#. Label of the status (Select) field in DocType 'LMS Course Progress' #. Label of the status (Select) field in DocType 'LMS Course Progress'
#. Label of the status (Select) field in DocType 'LMS Mentor Request' #. Label of the status (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:91 #: frontend/src/components/Modals/Event.vue:91
#: frontend/src/pages/JobCreation.vue:35 #: frontend/src/pages/JobCreation.vue:41
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_join_request/cohort_join_request.json #: lms/lms/doctype/cohort_join_request/cohort_join_request.json
@@ -4727,7 +4719,7 @@ msgstr ""
#: frontend/src/components/Modals/AssessmentModal.vue:9 #: frontend/src/components/Modals/AssessmentModal.vue:9
#: frontend/src/components/Modals/BatchCourseModal.vue:9 #: frontend/src/components/Modals/BatchCourseModal.vue:9
#: frontend/src/components/Modals/EvaluationModal.vue:9 #: frontend/src/components/Modals/EvaluationModal.vue:9
#: frontend/src/components/Modals/Question.vue:335 #: frontend/src/components/Modals/Question.vue:338
#: frontend/src/components/Quiz.vue:214 lms/templates/assignment.html:9 #: frontend/src/components/Quiz.vue:214 lms/templates/assignment.html:9
#: lms/templates/livecode/extension_footer.html:25 #: lms/templates/livecode/extension_footer.html:25
#: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163 #: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163
@@ -4754,12 +4746,12 @@ msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:198 #: frontend/src/components/Modals/ChapterModal.vue:198
#: 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:264
#: frontend/src/components/Modals/Question.vue:312 #: frontend/src/components/Modals/Question.vue:315
#: frontend/src/pages/CourseForm.vue:460 frontend/src/pages/ProgramForm.vue:226 #: frontend/src/pages/CourseForm.vue:460 frontend/src/pages/ProgramForm.vue:229
#: frontend/src/pages/ProgramForm.vue:248 #: frontend/src/pages/ProgramForm.vue:251
#: frontend/src/pages/ProgramForm.vue:269 #: frontend/src/pages/ProgramForm.vue:272
#: frontend/src/pages/ProgramForm.vue:295 frontend/src/pages/QuizForm.vue:343 #: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:343
#: frontend/src/pages/QuizForm.vue:362 frontend/src/pages/QuizForm.vue:431 #: frontend/src/pages/QuizForm.vue:362 frontend/src/pages/QuizForm.vue:431
msgid "Success" msgid "Success"
msgstr "Erfolg" msgstr "Erfolg"
@@ -4856,7 +4848,7 @@ msgstr "Vorlage"
msgid "Temporarily Disabled" msgid "Temporarily Disabled"
msgstr "Zeitweise nicht verfügbar" msgstr "Zeitweise nicht verfügbar"
#: lms/lms/utils.py:440 #: lms/lms/utils.py:436
msgid "Terms of Use" msgid "Terms of Use"
msgstr "Nutzungsbedingungen" msgstr "Nutzungsbedingungen"
@@ -4920,7 +4912,7 @@ msgstr ""
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!" msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr "" msgstr ""
#: frontend/src/pages/Programs.vue:86 #: frontend/src/pages/Programs.vue:97
msgid "There are no programs available at the moment. Keep an eye out, fresh learning experiences are on the way soon!" msgid "There are no programs available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr "" msgstr ""
@@ -4936,6 +4928,10 @@ msgstr ""
msgid "There are no {0} on this site." msgid "There are no {0} on this site."
msgstr "" msgstr ""
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:41
msgid "There has been an update on your submission. You have got a score of {0} for the quiz {1}"
msgstr ""
#. Description of the 'section_break_ubxi' (Section Break) field in DocType #. Description of the 'section_break_ubxi' (Section Break) field in DocType
#. 'LMS Batch' #. 'LMS Batch'
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
@@ -4955,7 +4951,7 @@ msgstr "Dieses Zertifikat läuft nicht ab"
msgid "This course has:" msgid "This course has:"
msgstr "" msgstr ""
#: lms/lms/utils.py:1585 #: 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."
@@ -5060,7 +5056,7 @@ msgstr ""
#: frontend/src/components/Modals/LiveClassModal.vue:23 #: frontend/src/components/Modals/LiveClassModal.vue:23
#: frontend/src/pages/BatchForm.vue:20 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/ProgramForm.vue:11 #: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/ProgramForm.vue:11
#: frontend/src/pages/Programs.vue:107 frontend/src/pages/QuizForm.vue:48 #: frontend/src/pages/Programs.vue:118 frontend/src/pages/QuizForm.vue:48
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json #: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json
@@ -5097,7 +5093,7 @@ msgstr "An"
msgid "To Date" msgid "To Date"
msgstr "Bis-Datum" msgstr "Bis-Datum"
#: lms/lms/utils.py:1596 #: lms/lms/utils.py:1593
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."
@@ -5114,7 +5110,7 @@ msgid "Total"
msgstr "Summe" msgstr "Summe"
#. Label of the total_marks (Int) field in DocType 'LMS Quiz' #. Label of the total_marks (Int) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:66 frontend/src/pages/Quizzes.vue:119 #: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:119
#: lms/lms/doctype/lms_quiz/lms_quiz.json #: lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Total Marks" msgid "Total Marks"
msgstr "" msgstr ""
@@ -5151,7 +5147,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/Jobs.vue:16 #: frontend/src/pages/JobCreation.vue:33 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
@@ -5515,6 +5511,10 @@ msgstr ""
msgid "You have been enrolled in this course" msgid "You have been enrolled in this course"
msgstr "" msgstr ""
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:38
msgid "You have got a score of {0} for the quiz {1}"
msgstr ""
#: frontend/src/pages/Quizzes.vue:60 #: frontend/src/pages/Quizzes.vue:60
msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above." msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above."
msgstr "" msgstr ""
@@ -5685,7 +5685,7 @@ msgstr ""
msgid "{0} is your evaluator" msgid "{0} is your evaluator"
msgstr "" msgstr ""
#: lms/lms/utils.py:704 #: lms/lms/utils.py:700
msgid "{0} mentioned you in a comment" msgid "{0} mentioned you in a comment"
msgstr "{0} hat Sie in einem Kommentar erwähnt" msgstr "{0} hat Sie in einem Kommentar erwähnt"
@@ -5693,11 +5693,11 @@ msgstr "{0} hat Sie in einem Kommentar erwähnt"
msgid "{0} mentioned you in a comment in your batch." msgid "{0} mentioned you in a comment in your batch."
msgstr "" msgstr ""
#: lms/lms/utils.py:657 lms/lms/utils.py:663 #: lms/lms/utils.py:653 lms/lms/utils.py:659
msgid "{0} mentioned you in a comment in {1}" msgid "{0} mentioned you in a comment in {1}"
msgstr "{0} erwähnte Sie in einem Kommentar in {1}" msgstr "{0} erwähnte Sie in einem Kommentar in {1}"
#: lms/lms/utils.py:480 #: lms/lms/utils.py:476
msgid "{0}k" msgid "{0}k"
msgstr "" msgstr ""

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-11-22 16:05+0000\n" "POT-Creation-Date: 2024-11-29 16:04+0000\n"
"PO-Revision-Date: 2024-11-25 19:29\n" "PO-Revision-Date: 2024-12-02 22:11\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"
@@ -105,7 +105,7 @@ msgstr "crwdns149210:0crwdne149210:0"
#: frontend/src/components/Categories.vue:26 #: frontend/src/components/Categories.vue:26
#: frontend/src/components/LiveClass.vue:11 #: frontend/src/components/LiveClass.vue:11
#: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30 #: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30
#: frontend/src/pages/ProgramForm.vue:91 frontend/src/pages/ProgramForm.vue:136 #: frontend/src/pages/ProgramForm.vue:92 frontend/src/pages/ProgramForm.vue:137
msgid "Add" msgid "Add"
msgstr "crwdns149212:0crwdne149212:0" msgstr "crwdns149212:0crwdne149212:0"
@@ -147,8 +147,8 @@ msgstr "crwdns149226:0crwdne149226:0"
msgid "Add a lesson" msgid "Add a lesson"
msgstr "crwdns151728:0crwdne151728:0" msgstr "crwdns151728:0crwdne151728:0"
#: frontend/src/components/Modals/Question.vue:141 #: frontend/src/components/Modals/Question.vue:144
#: frontend/src/pages/QuizForm.vue:182 #: frontend/src/pages/QuizForm.vue:183
msgid "Add a new question" msgid "Add a new question"
msgstr "crwdns149228:0crwdne149228:0" msgstr "crwdns149228:0crwdne149228:0"
@@ -922,25 +922,25 @@ msgstr "crwdns149502:0crwdne149502:0"
#. Label of the company_details_section (Section Break) field in DocType 'Job #. Label of the company_details_section (Section Break) field in DocType 'Job
#. Opportunity' #. Opportunity'
#: frontend/src/pages/JobCreation.vue:56 #: frontend/src/pages/JobCreation.vue:64
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Details" msgid "Company Details"
msgstr "crwdns149504:0crwdne149504:0" msgstr "crwdns149504:0crwdne149504:0"
#. Label of the company_email_address (Data) field in DocType 'Job Opportunity' #. Label of the company_email_address (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobCreation.vue:73 #: frontend/src/pages/JobCreation.vue:83
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Email Address" msgid "Company Email Address"
msgstr "crwdns149506:0crwdne149506:0" msgstr "crwdns149506:0crwdne149506:0"
#. Label of the company_logo (Attach Image) field in DocType 'Job Opportunity' #. Label of the company_logo (Attach Image) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobCreation.vue:77 #: frontend/src/pages/JobCreation.vue:88
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Logo" msgid "Company Logo"
msgstr "crwdns149508:0crwdne149508:0" msgstr "crwdns149508:0crwdne149508:0"
#. Label of the company_name (Data) field in DocType 'Job Opportunity' #. Label of the company_name (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobCreation.vue:62 #: frontend/src/pages/JobCreation.vue:70
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Name" msgid "Company Name"
msgstr "crwdns149510:0crwdne149510:0" msgstr "crwdns149510:0crwdne149510:0"
@@ -951,7 +951,7 @@ msgid "Company Type"
msgstr "crwdns149512:0crwdne149512:0" msgstr "crwdns149512:0crwdne149512:0"
#. Label of the company_website (Data) field in DocType 'Job Opportunity' #. Label of the company_website (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobCreation.vue:67 #: frontend/src/pages/JobCreation.vue:76
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Website" msgid "Company Website"
msgstr "crwdns149514:0crwdne149514:0" msgstr "crwdns149514:0crwdne149514:0"
@@ -1025,7 +1025,7 @@ msgstr "crwdns149540:0crwdne149540:0"
msgid "Contract" msgid "Contract"
msgstr "crwdns149542:0crwdne149542:0" msgstr "crwdns149542:0crwdne149542:0"
#: lms/lms/utils.py:442 #: lms/lms/utils.py:438
msgid "Cookie Policy" msgid "Cookie Policy"
msgstr "crwdns149544:0crwdne149544:0" msgstr "crwdns149544:0crwdne149544:0"
@@ -1047,7 +1047,7 @@ msgstr "crwdns149548:0crwdne149548:0"
msgid "Correct" msgid "Correct"
msgstr "crwdns149550:0crwdne149550:0" msgstr "crwdns149550:0crwdne149550:0"
#: frontend/src/components/Modals/Question.vue:71 #: frontend/src/components/Modals/Question.vue:73
msgid "Correct Answer" msgid "Correct Answer"
msgstr "crwdns149552:0crwdne149552:0" msgstr "crwdns149552:0crwdne149552:0"
@@ -1218,7 +1218,7 @@ msgstr "crwdns149588:0crwdne149588:0"
msgid "Course Title" msgid "Course Title"
msgstr "crwdns149590:0crwdne149590:0" msgstr "crwdns149590:0crwdne149590:0"
#: frontend/src/pages/ProgramForm.vue:226 #: frontend/src/pages/ProgramForm.vue:229
msgid "Course added to program" msgid "Course added to program"
msgstr "crwdns151734:0crwdne151734:0" msgstr "crwdns151734:0crwdne151734:0"
@@ -1230,7 +1230,7 @@ msgstr "crwdns149592:0crwdne149592:0"
msgid "Course deleted successfully" msgid "Course deleted successfully"
msgstr "crwdns151586:0crwdne151586:0" msgstr "crwdns151586:0crwdne151586:0"
#: frontend/src/pages/ProgramForm.vue:295 #: frontend/src/pages/ProgramForm.vue:298
msgid "Course moved successfully" msgid "Course moved successfully"
msgstr "crwdns151736:0crwdne151736:0" msgstr "crwdns151736:0crwdne151736:0"
@@ -1270,7 +1270,7 @@ msgid "Cover Image"
msgstr "crwdns149606:0crwdne149606:0" msgstr "crwdns149606:0crwdne149606:0"
#: frontend/src/components/Modals/ChapterModal.vue:9 #: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/pages/Programs.vue:99 #: frontend/src/pages/Programs.vue:110
msgid "Create" msgid "Create"
msgstr "crwdns151468:0crwdne151468:0" msgstr "crwdns151468:0crwdne151468:0"
@@ -1446,7 +1446,7 @@ msgstr "crwdns151634:0crwdne151634:0"
#. Label of the description (Text) field in DocType 'LMS Live Class' #. Label of the description (Text) field in DocType 'LMS Live Class'
#. Label of the description (Small Text) field in DocType 'Work Experience' #. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:78 #: frontend/src/components/Modals/LiveClassModal.vue:78
#: frontend/src/pages/BatchForm.vue:96 frontend/src/pages/JobCreation.vue:43 #: frontend/src/pages/BatchForm.vue:96 frontend/src/pages/JobCreation.vue:50
#: 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
@@ -1527,7 +1527,7 @@ msgstr "crwdns149670:0crwdne149670:0"
msgid "Duration" msgid "Duration"
msgstr "crwdns149672:0crwdne149672:0" msgstr "crwdns149672:0crwdne149672:0"
#: frontend/src/pages/QuizForm.vue:62 #: frontend/src/pages/QuizForm.vue:63
msgid "Duration (in minutes)" msgid "Duration (in minutes)"
msgstr "crwdns149674:0crwdne149674:0" msgstr "crwdns149674:0crwdne149674:0"
@@ -1562,7 +1562,7 @@ msgstr "crwdns149684:0crwdne149684:0"
msgid "Edit Profile" msgid "Edit Profile"
msgstr "crwdns149686:0crwdne149686:0" msgstr "crwdns149686:0crwdne149686:0"
#: frontend/src/pages/QuizForm.vue:181 #: frontend/src/pages/QuizForm.vue:182
msgid "Edit the question" msgid "Edit the question"
msgstr "crwdns149688:0crwdne149688:0" msgstr "crwdns149688:0crwdne149688:0"
@@ -1693,7 +1693,7 @@ msgstr "crwdns149728:0crwdne149728:0"
msgid "Enrollment Count" msgid "Enrollment Count"
msgstr "crwdns149730:0crwdne149730:0" msgstr "crwdns149730:0crwdne149730:0"
#: lms/lms/utils.py:1705 #: lms/lms/utils.py:1702
msgid "Enrollment Failed" msgid "Enrollment Failed"
msgstr "crwdns149732:0crwdne149732:0" msgstr "crwdns149732:0crwdne149732:0"
@@ -1725,12 +1725,12 @@ msgstr "crwdns149742:0crwdne149742:0"
#: frontend/src/components/Modals/ChapterModal.vue:159 #: frontend/src/components/Modals/ChapterModal.vue:159
#: frontend/src/components/Modals/ChapterModal.vue:166 #: frontend/src/components/Modals/ChapterModal.vue:166
#: frontend/src/components/Modals/ChapterModal.vue:202 #: frontend/src/components/Modals/ChapterModal.vue:202
#: frontend/src/components/Modals/Question.vue:246 #: frontend/src/components/Modals/Question.vue:249
#: frontend/src/components/Modals/Question.vue:266 #: frontend/src/components/Modals/Question.vue:269
#: frontend/src/components/Modals/Question.vue:323 #: frontend/src/components/Modals/Question.vue:326
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350 #: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350
#: frontend/src/pages/QuizForm.vue:365 #: frontend/src/pages/QuizForm.vue:365
#: frontend/src/pages/QuizSubmission.vue:117 #: frontend/src/pages/QuizSubmission.vue:141
msgid "Error" msgid "Error"
msgstr "crwdns149744:0crwdne149744:0" msgstr "crwdns149744:0crwdne149744:0"
@@ -1858,7 +1858,7 @@ msgstr "crwdns149780:0crwdne149780:0"
#. Label of the explanation_1 (Small Text) field in DocType 'LMS Question' #. Label of the explanation_1 (Small Text) field in DocType 'LMS Question'
#. Label of the explanation_3 (Small Text) field in DocType 'LMS Question' #. Label of the explanation_3 (Small Text) field in DocType 'LMS Question'
#. Label of the explanation_4 (Small Text) field in DocType 'LMS Question' #. Label of the explanation_4 (Small Text) field in DocType 'LMS Question'
#: frontend/src/components/Modals/Question.vue:67 #: frontend/src/components/Modals/Question.vue:69
#: lms/lms/doctype/lms_question/lms_question.json #: lms/lms/doctype/lms_question/lms_question.json
msgid "Explanation" msgid "Explanation"
msgstr "crwdns149782:0crwdne149782:0" msgstr "crwdns149782:0crwdne149782:0"
@@ -2116,14 +2116,6 @@ msgstr "crwdns149880:0crwdne149880:0"
msgid "How to add a Quiz?" msgid "How to add a Quiz?"
msgstr "crwdns149882:0crwdne149882:0" msgstr "crwdns149882:0crwdne149882:0"
#: frontend/src/components/LessonHelp.vue:47
msgid "How to add a YouTube Video?"
msgstr "crwdns149884:0crwdne149884:0"
#: frontend/src/components/LessonHelp.vue:28
msgid "How to upload content from your system?"
msgstr "crwdns149886:0crwdne149886:0"
#. Label of the current (Check) field in DocType 'Work Experience' #. Label of the current (Check) field in DocType 'Work Experience'
#: lms/lms/doctype/work_experience/work_experience.json #: lms/lms/doctype/work_experience/work_experience.json
msgid "I am currently working here" msgid "I am currently working here"
@@ -2202,7 +2194,7 @@ msgstr "crwdns149910:0crwdne149910:0"
msgid "Image search powered by" msgid "Image search powered by"
msgstr "crwdns149912:0crwdne149912:0" msgstr "crwdns149912:0crwdne149912:0"
#: lms/lms/doctype/lms_quiz/lms_quiz.py:222 #: lms/lms/doctype/lms_quiz/lms_quiz.py:221
msgid "Image: Corrupted Data Stream" msgid "Image: Corrupted Data Stream"
msgstr "crwdns149914:0crwdne149914:0" msgstr "crwdns149914:0crwdne149914:0"
@@ -2388,7 +2380,7 @@ msgstr "crwdns149972:0crwdne149972:0"
msgid "Items in Sidebar" msgid "Items in Sidebar"
msgstr "crwdns149974:0crwdne149974:0" msgstr "crwdns149974:0crwdne149974:0"
#: frontend/src/pages/ProgramForm.vue:269 #: frontend/src/pages/ProgramForm.vue:272
msgid "Items removed successfully" msgid "Items removed successfully"
msgstr "crwdns151746:0crwdne151746:0" msgstr "crwdns151746:0crwdne151746:0"
@@ -2757,7 +2749,7 @@ msgid "Letter Grade (e.g. A, B-)"
msgstr "crwdns150092:0crwdne150092:0" msgstr "crwdns150092:0crwdne150092:0"
#. Label of the limit_questions_to (Int) field in DocType 'LMS Quiz' #. Label of the limit_questions_to (Int) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:107 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:108 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Limit Questions To" msgid "Limit Questions To"
msgstr "crwdns150094:0crwdne150094:0" msgstr "crwdns150094:0crwdne150094:0"
@@ -2817,7 +2809,7 @@ msgstr "crwdns150116:0crwdne150116:0"
#. Label of the location (Data) field in DocType 'Job Opportunity' #. Label of the location (Data) field in DocType 'Job Opportunity'
#. Label of the location (Data) field in DocType 'Education Detail' #. Label of the location (Data) field in DocType 'Education Detail'
#. Label of the location (Data) field in DocType 'Work Experience' #. Label of the location (Data) field in DocType 'Work Experience'
#: frontend/src/pages/JobCreation.vue:23 frontend/src/pages/JobDetail.vue:89 #: frontend/src/pages/JobCreation.vue:26 frontend/src/pages/JobDetail.vue:89
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/education_detail/education_detail.json #: lms/lms/doctype/education_detail/education_detail.json
#: lms/lms/doctype/work_experience/work_experience.json #: lms/lms/doctype/work_experience/work_experience.json
@@ -2887,21 +2879,21 @@ msgstr "crwdns150142:0crwdne150142:0"
#. Label of the marks (Int) field in DocType 'LMS Quiz Question' #. Label of the marks (Int) field in DocType 'LMS Quiz Question'
#. Label of the marks (Int) field in DocType 'LMS Quiz Result' #. Label of the marks (Int) field in DocType 'LMS Quiz Result'
#: frontend/src/components/Modals/Question.vue:50 #: frontend/src/components/Modals/Question.vue:50
#: frontend/src/components/Modals/Question.vue:96 #: frontend/src/components/Modals/Question.vue:99
#: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:394 #: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:394
#: frontend/src/pages/QuizSubmission.vue:52 #: frontend/src/pages/QuizSubmission.vue:59
#: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json #: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json
#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json
#: lms/templates/quiz/quiz.html:59 #: lms/templates/quiz/quiz.html:59
msgid "Marks" msgid "Marks"
msgstr "crwdns150144:0crwdne150144:0" msgstr "crwdns150144:0crwdne150144:0"
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:19 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:23
msgid "Marks for question number {0} cannot be greater than the marks allotted for that question." msgid "Marks for question number {0} cannot be greater than the marks allotted for that question."
msgstr "crwdns150146:0{0}crwdne150146:0" msgstr "crwdns150146:0{0}crwdne150146:0"
#. Label of the marks_out_of (Int) field in DocType 'LMS Quiz Result' #. Label of the marks_out_of (Int) field in DocType 'LMS Quiz Result'
#: frontend/src/pages/QuizSubmission.vue:55 #: frontend/src/pages/QuizSubmission.vue:62
#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json
msgid "Marks out of" msgid "Marks out of"
msgstr "crwdns150148:0crwdne150148:0" msgstr "crwdns150148:0crwdne150148:0"
@@ -2911,7 +2903,7 @@ msgstr "crwdns150148:0crwdne150148:0"
msgid "Max Attempts" msgid "Max Attempts"
msgstr "crwdns150150:0crwdne150150:0" msgstr "crwdns150150:0crwdne150150:0"
#: frontend/src/pages/QuizForm.vue:57 #: frontend/src/pages/QuizForm.vue:58
msgid "Maximun Attempts" msgid "Maximun Attempts"
msgstr "crwdns150152:0crwdne150152:0" msgstr "crwdns150152:0crwdne150152:0"
@@ -2945,7 +2937,7 @@ msgstr "crwdns150158:0crwdne150158:0"
#. Label of the member (Link) field in DocType 'LMS Payment' #. Label of the member (Link) field in DocType 'LMS Payment'
#. Label of the member (Link) field in DocType 'LMS Program Member' #. Label of the member (Link) field in DocType 'LMS Program Member'
#. Label of the member (Link) field in DocType 'LMS Quiz Submission' #. Label of the member (Link) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizSubmission.vue:27 #: frontend/src/pages/QuizSubmission.vue:31
#: frontend/src/pages/QuizSubmissionList.vue:77 #: frontend/src/pages/QuizSubmissionList.vue:77
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
#: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json
@@ -3008,7 +3000,7 @@ msgstr "crwdns150168:0crwdne150168:0"
msgid "Member Type" msgid "Member Type"
msgstr "crwdns150170:0crwdne150170:0" msgstr "crwdns150170:0crwdne150170:0"
#: frontend/src/pages/ProgramForm.vue:248 #: frontend/src/pages/ProgramForm.vue:251
msgid "Member added to program" msgid "Member added to program"
msgstr "crwdns151754:0crwdne151754:0" msgstr "crwdns151754:0crwdne151754:0"
@@ -3173,19 +3165,19 @@ msgstr "crwdns150222:0crwdne150222:0"
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "crwdns150224:0crwdne150224:0" msgstr "crwdns150224:0crwdne150224:0"
#: frontend/src/pages/Programs.vue:96 #: frontend/src/pages/Programs.vue:107
msgid "New Program" msgid "New Program"
msgstr "crwdns151760:0crwdne151760:0" msgstr "crwdns151760:0crwdne151760:0"
#: frontend/src/pages/ProgramForm.vue:132 #: frontend/src/pages/ProgramForm.vue:133
msgid "New Program Course" msgid "New Program Course"
msgstr "crwdns151762:0crwdne151762:0" msgstr "crwdns151762:0crwdne151762:0"
#: frontend/src/pages/ProgramForm.vue:133 #: frontend/src/pages/ProgramForm.vue:134
msgid "New Program Member" msgid "New Program Member"
msgstr "crwdns151764:0crwdne151764:0" msgstr "crwdns151764:0crwdne151764:0"
#: frontend/src/pages/QuizForm.vue:122 #: frontend/src/pages/QuizForm.vue:123
msgid "New Question" msgid "New Question"
msgstr "crwdns150226:0crwdne150226:0" msgstr "crwdns150226:0crwdne150226:0"
@@ -3198,11 +3190,11 @@ msgstr "crwdns150228:0crwdne150228:0"
msgid "New Sign Up" msgid "New Sign Up"
msgstr "crwdns150230:0crwdne150230:0" msgstr "crwdns150230:0crwdne150230:0"
#: lms/lms/utils.py:627 #: lms/lms/utils.py:623
msgid "New comment in batch {0}" msgid "New comment in batch {0}"
msgstr "crwdns150232:0{0}crwdne150232:0" msgstr "crwdns150232:0{0}crwdne150232:0"
#: lms/lms/utils.py:620 #: lms/lms/utils.py:616
msgid "New reply on the topic {0} in course {1}" msgid "New reply on the topic {0} in course {1}"
msgstr "crwdns150234:0{0}crwdnd150234:0{1}crwdne150234:0" msgstr "crwdns150234:0{0}crwdnd150234:0{1}crwdne150234:0"
@@ -3256,7 +3248,7 @@ msgstr "crwdns150254:0crwdne150254:0"
msgid "No courses found" msgid "No courses found"
msgstr "crwdns151480:0crwdne151480:0" msgstr "crwdns151480:0crwdne151480:0"
#: frontend/src/pages/Programs.vue:72 #: frontend/src/pages/Programs.vue:83
msgid "No courses in this program" msgid "No courses in this program"
msgstr "crwdns151766:0crwdne151766:0" msgstr "crwdns151766:0crwdne151766:0"
@@ -3276,7 +3268,7 @@ msgstr "crwdns150260:0crwdne150260:0"
msgid "No live classes scheduled" msgid "No live classes scheduled"
msgstr "crwdns150262:0crwdne150262:0" msgstr "crwdns150262:0crwdne150262:0"
#: frontend/src/pages/Programs.vue:82 #: frontend/src/pages/Programs.vue:93
msgid "No programs found" msgid "No programs found"
msgstr "crwdns151768:0crwdne151768:0" msgstr "crwdns151768:0crwdne151768:0"
@@ -3388,7 +3380,7 @@ msgstr "crwdns150304:0crwdne150304:0"
msgid "Online" msgid "Online"
msgstr "crwdns150306:0crwdne150306:0" msgstr "crwdns150306:0crwdne150306:0"
#: frontend/src/pages/ProgramForm.vue:156 #: frontend/src/pages/ProgramForm.vue:157
msgid "Only courses for which self learning is disabled can be added to program." msgid "Only courses for which self learning is disabled can be added to program."
msgstr "crwdns151770:0crwdne151770:0" msgstr "crwdns151770:0crwdne151770:0"
@@ -3396,7 +3388,7 @@ msgstr "crwdns151770:0crwdne151770:0"
msgid "Only files of type {0} will be accepted." msgid "Only files of type {0} will be accepted."
msgstr "crwdns150308:0{0}crwdne150308:0" msgstr "crwdns150308:0{0}crwdne150308:0"
#: frontend/src/pages/CourseForm.vue:497 frontend/src/utils/index.js:518 #: frontend/src/pages/CourseForm.vue:497 frontend/src/utils/index.js:520
msgid "Only image file is allowed." msgid "Only image file is allowed."
msgstr "crwdns150310:0crwdne150310:0" msgstr "crwdns150310:0crwdne150310:0"
@@ -3432,7 +3424,7 @@ msgid "Open Network"
msgstr "crwdns150320:0crwdne150320:0" msgstr "crwdns150320:0crwdne150320:0"
#. Label of the option (Data) field in DocType 'LMS Option' #. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:63 #: frontend/src/components/Modals/Question.vue:64
#: lms/lms/doctype/lms_option/lms_option.json #: lms/lms/doctype/lms_option/lms_option.json
msgid "Option" msgid "Option"
msgstr "crwdns150322:0crwdne150322:0" msgstr "crwdns150322:0crwdne150322:0"
@@ -3547,7 +3539,7 @@ msgstr "crwdns150362:0crwdne150362:0"
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz' #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz'
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission' #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizForm.vue:71 frontend/src/pages/Quizzes.vue:125 #: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:125
#: lms/lms/doctype/lms_quiz/lms_quiz.json #: lms/lms/doctype/lms_quiz/lms_quiz.json
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
msgid "Passing Percentage" msgid "Passing Percentage"
@@ -3641,7 +3633,7 @@ msgid "Pending"
msgstr "crwdns150390:0crwdne150390:0" msgstr "crwdns150390:0crwdne150390:0"
#. Label of the percentage (Int) field in DocType 'LMS Quiz Submission' #. Label of the percentage (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizSubmission.vue:40 #: frontend/src/pages/QuizSubmission.vue:44
#: frontend/src/pages/QuizSubmissionList.vue:93 #: frontend/src/pages/QuizSubmissionList.vue:93
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
msgid "Percentage" msgid "Percentage"
@@ -3676,7 +3668,7 @@ msgstr "crwdns150404:0crwdne150404:0"
msgid "Please click on the following button to set your new password" msgid "Please click on the following button to set your new password"
msgstr "crwdns150406:0crwdne150406:0" msgstr "crwdns150406:0crwdne150406:0"
#: lms/lms/utils.py:1817 lms/lms/utils.py:1821 #: lms/lms/utils.py:1824 lms/lms/utils.py:1828
msgid "Please complete the previous courses in the program to enroll in this course." msgid "Please complete the previous courses in the program to enroll in this course."
msgstr "crwdns151772:0crwdne151772:0" msgstr "crwdns151772:0crwdne151772:0"
@@ -3779,7 +3771,7 @@ msgstr "crwdns150434:0crwdne150434:0"
msgid "Point of Score (e.g. 70)" msgid "Point of Score (e.g. 70)"
msgstr "crwdns150436:0crwdne150436:0" msgstr "crwdns150436:0crwdne150436:0"
#: frontend/src/components/Modals/Question.vue:83 #: frontend/src/components/Modals/Question.vue:85
msgid "Possibility" msgid "Possibility"
msgstr "crwdns150438:0crwdne150438:0" msgstr "crwdns150438:0crwdne150438:0"
@@ -3875,7 +3867,7 @@ msgstr "crwdns150472:0crwdne150472:0"
msgid "Primary Subgroup" msgid "Primary Subgroup"
msgstr "crwdns150474:0crwdne150474:0" msgstr "crwdns150474:0crwdne150474:0"
#: lms/lms/utils.py:441 #: lms/lms/utils.py:437
msgid "Privacy Policy" msgid "Privacy Policy"
msgstr "crwdns150476:0crwdne150476:0" msgstr "crwdns150476:0crwdne150476:0"
@@ -3903,7 +3895,7 @@ msgstr "crwdns150484:0crwdne150484:0"
msgid "Profile Image" msgid "Profile Image"
msgstr "crwdns150486:0crwdne150486:0" msgstr "crwdns150486:0crwdne150486:0"
#: frontend/src/pages/ProgramForm.vue:154 #: frontend/src/pages/ProgramForm.vue:155
msgid "Program Course" msgid "Program Course"
msgstr "crwdns151788:0crwdne151788:0" msgstr "crwdns151788:0crwdne151788:0"
@@ -3913,12 +3905,12 @@ msgstr "crwdns151788:0crwdne151788:0"
msgid "Program Courses" msgid "Program Courses"
msgstr "crwdns151790:0crwdne151790:0" msgstr "crwdns151790:0crwdne151790:0"
#: frontend/src/pages/ProgramForm.vue:169 #: frontend/src/pages/ProgramForm.vue:170
msgid "Program Member" msgid "Program Member"
msgstr "crwdns151792:0crwdne151792:0" msgstr "crwdns151792:0crwdne151792:0"
#. Label of the program_members (Table) field in DocType 'LMS Program' #. Label of the program_members (Table) field in DocType 'LMS Program'
#: frontend/src/pages/ProgramForm.vue:78 #: frontend/src/pages/ProgramForm.vue:79
#: lms/lms/doctype/lms_program/lms_program.json #: lms/lms/doctype/lms_program/lms_program.json
msgid "Program Members" msgid "Program Members"
msgstr "crwdns151794:0crwdne151794:0" msgstr "crwdns151794:0crwdne151794:0"
@@ -4001,11 +3993,11 @@ msgstr "crwdns150506:0crwdne150506:0"
msgid "Question Name" msgid "Question Name"
msgstr "crwdns150508:0crwdne150508:0" msgstr "crwdns150508:0crwdne150508:0"
#: frontend/src/components/Modals/Question.vue:261 #: frontend/src/components/Modals/Question.vue:264
msgid "Question added successfully" msgid "Question added successfully"
msgstr "crwdns150510:0crwdne150510:0" msgstr "crwdns150510:0crwdne150510:0"
#: frontend/src/components/Modals/Question.vue:313 #: frontend/src/components/Modals/Question.vue:316
msgid "Question updated successfully" msgid "Question updated successfully"
msgstr "crwdns150512:0crwdne150512:0" msgstr "crwdns150512:0crwdne150512:0"
@@ -4018,7 +4010,7 @@ msgid "Question {0} of {1}"
msgstr "crwdns150516:0{0}crwdnd150516:0{1}crwdne150516:0" msgstr "crwdns150516:0{0}crwdnd150516:0{1}crwdne150516:0"
#. Label of the questions (Table) field in DocType 'LMS Quiz' #. Label of the questions (Table) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:116 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:117 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Questions" msgid "Questions"
msgstr "crwdns150518:0crwdne150518:0" msgstr "crwdns150518:0crwdne150518:0"
@@ -4028,7 +4020,7 @@ msgstr "crwdns150520:0crwdne150520:0"
#. Label of the quiz (Link) field in DocType 'LMS Quiz Submission' #. Label of the quiz (Link) field in DocType 'LMS Quiz Submission'
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#: frontend/src/pages/QuizSubmission.vue:22 #: frontend/src/pages/QuizSubmission.vue:26
#: frontend/src/pages/QuizSubmissionList.vue:82 frontend/src/utils/quiz.js:24 #: frontend/src/pages/QuizSubmissionList.vue:82 frontend/src/utils/quiz.js:24
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
#: lms/lms/workspace/lms/lms.json #: lms/lms/workspace/lms/lms.json
@@ -4046,7 +4038,7 @@ msgstr "crwdns150524:0crwdne150524:0"
msgid "Quiz Submission" msgid "Quiz Submission"
msgstr "crwdns150526:0crwdne150526:0" msgstr "crwdns150526:0crwdne150526:0"
#: frontend/src/pages/QuizSubmission.vue:98 #: frontend/src/pages/QuizSubmission.vue:122
#: frontend/src/pages/QuizSubmissionList.vue:102 #: frontend/src/pages/QuizSubmissionList.vue:102
msgid "Quiz Submissions" msgid "Quiz Submissions"
msgstr "crwdns150528:0crwdne150528:0" msgstr "crwdns150528:0crwdne150528:0"
@@ -4315,7 +4307,7 @@ msgid "Scope"
msgstr "crwdns150620:0crwdne150620:0" msgstr "crwdns150620:0crwdne150620:0"
#. Label of the score (Int) field in DocType 'LMS Quiz Submission' #. Label of the score (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizSubmission.vue:35 #: frontend/src/pages/QuizSubmission.vue:39
#: frontend/src/pages/QuizSubmissionList.vue:87 #: frontend/src/pages/QuizSubmissionList.vue:87
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
#: lms/templates/quiz/quiz.html:148 #: lms/templates/quiz/quiz.html:148
@@ -4352,7 +4344,7 @@ msgstr "crwdns150632:0crwdne150632:0"
msgid "Seats Left" msgid "Seats Left"
msgstr "crwdns150634:0crwdne150634:0" msgstr "crwdns150634:0crwdne150634:0"
#: frontend/src/components/Modals/Question.vue:91 #: frontend/src/components/Modals/Question.vue:94
msgid "Select a question" msgid "Select a question"
msgstr "crwdns150636:0crwdne150636:0" msgstr "crwdns150636:0crwdne150636:0"
@@ -4381,7 +4373,7 @@ msgstr "crwdns150646:0crwdne150646:0"
#: frontend/src/components/Modals/Settings.vue:7 #: frontend/src/components/Modals/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:165 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:79
msgid "Settings" msgid "Settings"
msgstr "crwdns150648:0crwdne150648:0" msgstr "crwdns150648:0crwdne150648:0"
@@ -4405,12 +4397,12 @@ msgid "Show Answer"
msgstr "crwdns150654:0crwdne150654:0" msgstr "crwdns150654:0crwdne150654:0"
#. Label of the show_answers (Check) field in DocType 'LMS Quiz' #. Label of the show_answers (Check) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:84 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:85 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Show Answers" msgid "Show Answers"
msgstr "crwdns150656:0crwdne150656:0" msgstr "crwdns150656:0crwdne150656:0"
#. Label of the show_submission_history (Check) field in DocType 'LMS Quiz' #. Label of the show_submission_history (Check) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:89 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:90 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Show Submission History" msgid "Show Submission History"
msgstr "crwdns150658:0crwdne150658:0" msgstr "crwdns150658:0crwdne150658:0"
@@ -4435,11 +4427,11 @@ msgid "Show live class"
msgstr "crwdns150666:0crwdne150666:0" msgstr "crwdns150666:0crwdne150666:0"
#. Label of the shuffle_questions (Check) field in DocType 'LMS Quiz' #. Label of the shuffle_questions (Check) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:102 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:103 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Shuffle Questions" msgid "Shuffle Questions"
msgstr "crwdns150668:0crwdne150668:0" msgstr "crwdns150668:0crwdne150668:0"
#: frontend/src/pages/QuizForm.vue:96 #: frontend/src/pages/QuizForm.vue:97
msgid "Shuffle Settings" msgid "Shuffle Settings"
msgstr "crwdns150670:0crwdne150670:0" msgstr "crwdns150670:0crwdne150670:0"
@@ -4635,7 +4627,7 @@ msgstr "crwdns150732:0crwdne150732:0"
#. Label of the status (Select) field in DocType 'LMS Course Progress' #. Label of the status (Select) field in DocType 'LMS Course Progress'
#. Label of the status (Select) field in DocType 'LMS Mentor Request' #. Label of the status (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:91 #: frontend/src/components/Modals/Event.vue:91
#: frontend/src/pages/JobCreation.vue:35 #: frontend/src/pages/JobCreation.vue:41
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_join_request/cohort_join_request.json #: lms/lms/doctype/cohort_join_request/cohort_join_request.json
@@ -4727,7 +4719,7 @@ msgstr "crwdns150760:0crwdne150760:0"
#: frontend/src/components/Modals/AssessmentModal.vue:9 #: frontend/src/components/Modals/AssessmentModal.vue:9
#: frontend/src/components/Modals/BatchCourseModal.vue:9 #: frontend/src/components/Modals/BatchCourseModal.vue:9
#: frontend/src/components/Modals/EvaluationModal.vue:9 #: frontend/src/components/Modals/EvaluationModal.vue:9
#: frontend/src/components/Modals/Question.vue:335 #: frontend/src/components/Modals/Question.vue:338
#: frontend/src/components/Quiz.vue:214 lms/templates/assignment.html:9 #: frontend/src/components/Quiz.vue:214 lms/templates/assignment.html:9
#: lms/templates/livecode/extension_footer.html:25 #: lms/templates/livecode/extension_footer.html:25
#: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163 #: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163
@@ -4754,12 +4746,12 @@ msgstr "crwdns150766:0{0}crwdne150766:0"
#: frontend/src/components/Modals/ChapterModal.vue:198 #: frontend/src/components/Modals/ChapterModal.vue:198
#: 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:264
#: frontend/src/components/Modals/Question.vue:312 #: frontend/src/components/Modals/Question.vue:315
#: frontend/src/pages/CourseForm.vue:460 frontend/src/pages/ProgramForm.vue:226 #: frontend/src/pages/CourseForm.vue:460 frontend/src/pages/ProgramForm.vue:229
#: frontend/src/pages/ProgramForm.vue:248 #: frontend/src/pages/ProgramForm.vue:251
#: frontend/src/pages/ProgramForm.vue:269 #: frontend/src/pages/ProgramForm.vue:272
#: frontend/src/pages/ProgramForm.vue:295 frontend/src/pages/QuizForm.vue:343 #: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:343
#: frontend/src/pages/QuizForm.vue:362 frontend/src/pages/QuizForm.vue:431 #: frontend/src/pages/QuizForm.vue:362 frontend/src/pages/QuizForm.vue:431
msgid "Success" msgid "Success"
msgstr "crwdns150768:0crwdne150768:0" msgstr "crwdns150768:0crwdne150768:0"
@@ -4856,7 +4848,7 @@ msgstr "crwdns150782:0crwdne150782:0"
msgid "Temporarily Disabled" msgid "Temporarily Disabled"
msgstr "crwdns150784:0crwdne150784:0" msgstr "crwdns150784:0crwdne150784:0"
#: lms/lms/utils.py:440 #: lms/lms/utils.py:436
msgid "Terms of Use" msgid "Terms of Use"
msgstr "crwdns150786:0crwdne150786:0" msgstr "crwdns150786:0crwdne150786:0"
@@ -4920,7 +4912,7 @@ msgstr "crwdns150806:0crwdne150806:0"
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!" msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr "crwdns151496:0crwdne151496:0" msgstr "crwdns151496:0crwdne151496:0"
#: frontend/src/pages/Programs.vue:86 #: frontend/src/pages/Programs.vue:97
msgid "There are no programs available at the moment. Keep an eye out, fresh learning experiences are on the way soon!" msgid "There are no programs available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr "crwdns151798:0crwdne151798:0" msgstr "crwdns151798:0crwdne151798:0"
@@ -4936,6 +4928,10 @@ msgstr "crwdns150810:0crwdne150810:0"
msgid "There are no {0} on this site." msgid "There are no {0} on this site."
msgstr "crwdns150812:0{0}crwdne150812:0" msgstr "crwdns150812:0{0}crwdne150812:0"
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:41
msgid "There has been an update on your submission. You have got a score of {0} for the quiz {1}"
msgstr "crwdns151850:0{0}crwdnd151850:0{1}crwdne151850:0"
#. Description of the 'section_break_ubxi' (Section Break) field in DocType #. Description of the 'section_break_ubxi' (Section Break) field in DocType
#. 'LMS Batch' #. 'LMS Batch'
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
@@ -4955,7 +4951,7 @@ msgstr "crwdns150818:0crwdne150818:0"
msgid "This course has:" msgid "This course has:"
msgstr "crwdns150820:0crwdne150820:0" msgstr "crwdns150820:0crwdne150820:0"
#: lms/lms/utils.py:1585 #: lms/lms/utils.py:1582
msgid "This course is free." msgid "This course is free."
msgstr "crwdns150822:0crwdne150822:0" msgstr "crwdns150822:0crwdne150822:0"
@@ -5060,7 +5056,7 @@ msgstr "crwdns150848:0crwdne150848:0"
#: frontend/src/components/Modals/LiveClassModal.vue:23 #: frontend/src/components/Modals/LiveClassModal.vue:23
#: frontend/src/pages/BatchForm.vue:20 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/ProgramForm.vue:11 #: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/ProgramForm.vue:11
#: frontend/src/pages/Programs.vue:107 frontend/src/pages/QuizForm.vue:48 #: frontend/src/pages/Programs.vue:118 frontend/src/pages/QuizForm.vue:48
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json #: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json
@@ -5097,7 +5093,7 @@ msgstr "crwdns150852:0crwdne150852:0"
msgid "To Date" msgid "To Date"
msgstr "crwdns150854:0crwdne150854:0" msgstr "crwdns150854:0crwdne150854:0"
#: lms/lms/utils.py:1596 #: lms/lms/utils.py:1593
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"
@@ -5114,7 +5110,7 @@ msgid "Total"
msgstr "crwdns150864:0crwdne150864:0" msgstr "crwdns150864:0crwdne150864:0"
#. Label of the total_marks (Int) field in DocType 'LMS Quiz' #. Label of the total_marks (Int) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:66 frontend/src/pages/Quizzes.vue:119 #: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:119
#: lms/lms/doctype/lms_quiz/lms_quiz.json #: lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Total Marks" msgid "Total Marks"
msgstr "crwdns150866:0crwdne150866:0" msgstr "crwdns150866:0crwdne150866:0"
@@ -5151,7 +5147,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/Jobs.vue:16 #: frontend/src/pages/JobCreation.vue:33 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
@@ -5515,6 +5511,10 @@ msgstr "crwdns151014:0crwdne151014:0"
msgid "You have been enrolled in this course" msgid "You have been enrolled in this course"
msgstr "crwdns151016:0crwdne151016:0" msgstr "crwdns151016:0crwdne151016:0"
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:38
msgid "You have got a score of {0} for the quiz {1}"
msgstr "crwdns151852:0{0}crwdnd151852:0{1}crwdne151852:0"
#: frontend/src/pages/Quizzes.vue:60 #: frontend/src/pages/Quizzes.vue:60
msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above." msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above."
msgstr "crwdns151594:0crwdne151594:0" msgstr "crwdns151594:0crwdne151594:0"
@@ -5685,7 +5685,7 @@ msgstr "crwdns151092:0{0}crwdnd151092:0{1}crwdne151092:0"
msgid "{0} is your evaluator" msgid "{0} is your evaluator"
msgstr "crwdns151094:0{0}crwdne151094:0" msgstr "crwdns151094:0{0}crwdne151094:0"
#: lms/lms/utils.py:704 #: lms/lms/utils.py:700
msgid "{0} mentioned you in a comment" msgid "{0} mentioned you in a comment"
msgstr "crwdns151096:0{0}crwdne151096:0" msgstr "crwdns151096:0{0}crwdne151096:0"
@@ -5693,11 +5693,11 @@ msgstr "crwdns151096:0{0}crwdne151096:0"
msgid "{0} mentioned you in a comment in your batch." msgid "{0} mentioned you in a comment in your batch."
msgstr "crwdns151098:0{0}crwdne151098:0" msgstr "crwdns151098:0{0}crwdne151098:0"
#: lms/lms/utils.py:657 lms/lms/utils.py:663 #: lms/lms/utils.py:653 lms/lms/utils.py:659
msgid "{0} mentioned you in a comment in {1}" msgid "{0} mentioned you in a comment in {1}"
msgstr "crwdns151100:0{0}crwdnd151100:0{1}crwdne151100:0" msgstr "crwdns151100:0{0}crwdnd151100:0{1}crwdne151100:0"
#: lms/lms/utils.py:480 #: lms/lms/utils.py:476
msgid "{0}k" msgid "{0}k"
msgstr "crwdns151102:0{0}crwdne151102:0" msgstr "crwdns151102:0{0}crwdne151102:0"

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-11-22 16:05+0000\n" "POT-Creation-Date: 2024-11-29 16:04+0000\n"
"PO-Revision-Date: 2024-11-25 19:29\n" "PO-Revision-Date: 2024-12-02 22:10\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"
@@ -105,7 +105,7 @@ msgstr "Activo"
#: frontend/src/components/Categories.vue:26 #: frontend/src/components/Categories.vue:26
#: frontend/src/components/LiveClass.vue:11 #: frontend/src/components/LiveClass.vue:11
#: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30 #: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30
#: frontend/src/pages/ProgramForm.vue:91 frontend/src/pages/ProgramForm.vue:136 #: frontend/src/pages/ProgramForm.vue:92 frontend/src/pages/ProgramForm.vue:137
msgid "Add" msgid "Add"
msgstr "Agregar" msgstr "Agregar"
@@ -147,8 +147,8 @@ msgstr "Añadir un curso"
msgid "Add a lesson" msgid "Add a lesson"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Question.vue:141 #: frontend/src/components/Modals/Question.vue:144
#: frontend/src/pages/QuizForm.vue:182 #: frontend/src/pages/QuizForm.vue:183
msgid "Add a new question" msgid "Add a new question"
msgstr "Añadir una nueva pregunta" msgstr "Añadir una nueva pregunta"
@@ -922,25 +922,25 @@ msgstr "Compañía"
#. Label of the company_details_section (Section Break) field in DocType 'Job #. Label of the company_details_section (Section Break) field in DocType 'Job
#. Opportunity' #. Opportunity'
#: frontend/src/pages/JobCreation.vue:56 #: frontend/src/pages/JobCreation.vue:64
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Details" msgid "Company Details"
msgstr "Detalles de la Compañía" msgstr "Detalles de la Compañía"
#. Label of the company_email_address (Data) field in DocType 'Job Opportunity' #. Label of the company_email_address (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobCreation.vue:73 #: frontend/src/pages/JobCreation.vue:83
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Email Address" msgid "Company Email Address"
msgstr "Dirección de correo de la Empresa" msgstr "Dirección de correo de la Empresa"
#. Label of the company_logo (Attach Image) field in DocType 'Job Opportunity' #. Label of the company_logo (Attach Image) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobCreation.vue:77 #: frontend/src/pages/JobCreation.vue:88
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Logo" msgid "Company Logo"
msgstr "Logo de la Compañía" msgstr "Logo de la Compañía"
#. Label of the company_name (Data) field in DocType 'Job Opportunity' #. Label of the company_name (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobCreation.vue:62 #: frontend/src/pages/JobCreation.vue:70
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Name" msgid "Company Name"
msgstr "Nombre de compañía" msgstr "Nombre de compañía"
@@ -951,7 +951,7 @@ msgid "Company Type"
msgstr "Tipo de empresa" msgstr "Tipo de empresa"
#. Label of the company_website (Data) field in DocType 'Job Opportunity' #. Label of the company_website (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobCreation.vue:67 #: frontend/src/pages/JobCreation.vue:76
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Website" msgid "Company Website"
msgstr "Página Web de la empresa" msgstr "Página Web de la empresa"
@@ -1025,7 +1025,7 @@ msgstr "Continuar aprendiendo"
msgid "Contract" msgid "Contract"
msgstr "Contrato" msgstr "Contrato"
#: lms/lms/utils.py:442 #: lms/lms/utils.py:438
msgid "Cookie Policy" msgid "Cookie Policy"
msgstr "Política de cookies" msgstr "Política de cookies"
@@ -1047,7 +1047,7 @@ msgstr "Organización corporativa"
msgid "Correct" msgid "Correct"
msgstr "Correcto" msgstr "Correcto"
#: frontend/src/components/Modals/Question.vue:71 #: frontend/src/components/Modals/Question.vue:73
msgid "Correct Answer" msgid "Correct Answer"
msgstr "Respuesta correcta" msgstr "Respuesta correcta"
@@ -1218,7 +1218,7 @@ msgstr "Estadísticas del curso"
msgid "Course Title" msgid "Course Title"
msgstr "Título del curso" msgstr "Título del curso"
#: frontend/src/pages/ProgramForm.vue:226 #: frontend/src/pages/ProgramForm.vue:229
msgid "Course added to program" msgid "Course added to program"
msgstr "" msgstr ""
@@ -1230,7 +1230,7 @@ msgstr "Curso ya agregado al lote."
msgid "Course deleted successfully" msgid "Course deleted successfully"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:295 #: frontend/src/pages/ProgramForm.vue:298
msgid "Course moved successfully" msgid "Course moved successfully"
msgstr "" msgstr ""
@@ -1270,7 +1270,7 @@ msgid "Cover Image"
msgstr "Imagen de portada" msgstr "Imagen de portada"
#: frontend/src/components/Modals/ChapterModal.vue:9 #: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/pages/Programs.vue:99 #: frontend/src/pages/Programs.vue:110
msgid "Create" msgid "Create"
msgstr "Crear" msgstr "Crear"
@@ -1446,7 +1446,7 @@ msgstr ""
#. Label of the description (Text) field in DocType 'LMS Live Class' #. Label of the description (Text) field in DocType 'LMS Live Class'
#. Label of the description (Small Text) field in DocType 'Work Experience' #. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:78 #: frontend/src/components/Modals/LiveClassModal.vue:78
#: frontend/src/pages/BatchForm.vue:96 frontend/src/pages/JobCreation.vue:43 #: frontend/src/pages/BatchForm.vue:96 frontend/src/pages/JobCreation.vue:50
#: 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
@@ -1527,7 +1527,7 @@ msgstr "Se encontraron opciones duplicadas para esta pregunta."
msgid "Duration" msgid "Duration"
msgstr "Duración" msgstr "Duración"
#: frontend/src/pages/QuizForm.vue:62 #: frontend/src/pages/QuizForm.vue:63
msgid "Duration (in minutes)" msgid "Duration (in minutes)"
msgstr "Duración (en minutos)" msgstr "Duración (en minutos)"
@@ -1562,7 +1562,7 @@ msgstr "Editar capítulo"
msgid "Edit Profile" msgid "Edit Profile"
msgstr "Editar perfil" msgstr "Editar perfil"
#: frontend/src/pages/QuizForm.vue:181 #: frontend/src/pages/QuizForm.vue:182
msgid "Edit the question" msgid "Edit the question"
msgstr "Editar la pregunta" msgstr "Editar la pregunta"
@@ -1693,7 +1693,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:1705 #: lms/lms/utils.py:1702
msgid "Enrollment Failed" msgid "Enrollment Failed"
msgstr "Error al inscribirse" msgstr "Error al inscribirse"
@@ -1725,12 +1725,12 @@ msgstr "Ingrese la respuesta correcta"
#: frontend/src/components/Modals/ChapterModal.vue:159 #: frontend/src/components/Modals/ChapterModal.vue:159
#: frontend/src/components/Modals/ChapterModal.vue:166 #: frontend/src/components/Modals/ChapterModal.vue:166
#: frontend/src/components/Modals/ChapterModal.vue:202 #: frontend/src/components/Modals/ChapterModal.vue:202
#: frontend/src/components/Modals/Question.vue:246 #: frontend/src/components/Modals/Question.vue:249
#: frontend/src/components/Modals/Question.vue:266 #: frontend/src/components/Modals/Question.vue:269
#: frontend/src/components/Modals/Question.vue:323 #: frontend/src/components/Modals/Question.vue:326
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350 #: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350
#: frontend/src/pages/QuizForm.vue:365 #: frontend/src/pages/QuizForm.vue:365
#: frontend/src/pages/QuizSubmission.vue:117 #: frontend/src/pages/QuizSubmission.vue:141
msgid "Error" msgid "Error"
msgstr "Error" msgstr "Error"
@@ -1858,7 +1858,7 @@ msgstr "Fecha de caducidad"
#. Label of the explanation_1 (Small Text) field in DocType 'LMS Question' #. Label of the explanation_1 (Small Text) field in DocType 'LMS Question'
#. Label of the explanation_3 (Small Text) field in DocType 'LMS Question' #. Label of the explanation_3 (Small Text) field in DocType 'LMS Question'
#. Label of the explanation_4 (Small Text) field in DocType 'LMS Question' #. Label of the explanation_4 (Small Text) field in DocType 'LMS Question'
#: frontend/src/components/Modals/Question.vue:67 #: frontend/src/components/Modals/Question.vue:69
#: lms/lms/doctype/lms_question/lms_question.json #: lms/lms/doctype/lms_question/lms_question.json
msgid "Explanation" msgid "Explanation"
msgstr "Explicación" msgstr "Explicación"
@@ -2116,14 +2116,6 @@ msgstr "Anfitrión"
msgid "How to add a Quiz?" msgid "How to add a Quiz?"
msgstr "¿Cómo añadir un cuestionario?" msgstr "¿Cómo añadir un cuestionario?"
#: frontend/src/components/LessonHelp.vue:47
msgid "How to add a YouTube Video?"
msgstr "¿Cómo añadir un vídeo de YouTube?"
#: frontend/src/components/LessonHelp.vue:28
msgid "How to upload content from your system?"
msgstr "¿Cómo subir contenido de su sistema?"
#. Label of the current (Check) field in DocType 'Work Experience' #. Label of the current (Check) field in DocType 'Work Experience'
#: lms/lms/doctype/work_experience/work_experience.json #: lms/lms/doctype/work_experience/work_experience.json
msgid "I am currently working here" msgid "I am currently working here"
@@ -2202,7 +2194,7 @@ msgstr "Imagen"
msgid "Image search powered by" msgid "Image search powered by"
msgstr "Búsqueda de imágenes con tecnología" msgstr "Búsqueda de imágenes con tecnología"
#: lms/lms/doctype/lms_quiz/lms_quiz.py:222 #: lms/lms/doctype/lms_quiz/lms_quiz.py:221
msgid "Image: Corrupted Data Stream" msgid "Image: Corrupted Data Stream"
msgstr "Imagen: Flujo de datos corruptos" msgstr "Imagen: Flujo de datos corruptos"
@@ -2388,7 +2380,7 @@ msgstr "Emitido el"
msgid "Items in Sidebar" msgid "Items in Sidebar"
msgstr "Elementos en la barra lateral" msgstr "Elementos en la barra lateral"
#: frontend/src/pages/ProgramForm.vue:269 #: frontend/src/pages/ProgramForm.vue:272
msgid "Items removed successfully" msgid "Items removed successfully"
msgstr "" msgstr ""
@@ -2757,7 +2749,7 @@ msgid "Letter Grade (e.g. A, B-)"
msgstr "Calificación con letras (por ejemplo, A, B-)" msgstr "Calificación con letras (por ejemplo, A, B-)"
#. Label of the limit_questions_to (Int) field in DocType 'LMS Quiz' #. Label of the limit_questions_to (Int) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:107 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:108 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Limit Questions To" msgid "Limit Questions To"
msgstr "Limitar preguntas a" msgstr "Limitar preguntas a"
@@ -2817,7 +2809,7 @@ msgstr "Local"
#. Label of the location (Data) field in DocType 'Job Opportunity' #. Label of the location (Data) field in DocType 'Job Opportunity'
#. Label of the location (Data) field in DocType 'Education Detail' #. Label of the location (Data) field in DocType 'Education Detail'
#. Label of the location (Data) field in DocType 'Work Experience' #. Label of the location (Data) field in DocType 'Work Experience'
#: frontend/src/pages/JobCreation.vue:23 frontend/src/pages/JobDetail.vue:89 #: frontend/src/pages/JobCreation.vue:26 frontend/src/pages/JobDetail.vue:89
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/education_detail/education_detail.json #: lms/lms/doctype/education_detail/education_detail.json
#: lms/lms/doctype/work_experience/work_experience.json #: lms/lms/doctype/work_experience/work_experience.json
@@ -2887,21 +2879,21 @@ msgstr "Marcar como leído"
#. Label of the marks (Int) field in DocType 'LMS Quiz Question' #. Label of the marks (Int) field in DocType 'LMS Quiz Question'
#. Label of the marks (Int) field in DocType 'LMS Quiz Result' #. Label of the marks (Int) field in DocType 'LMS Quiz Result'
#: frontend/src/components/Modals/Question.vue:50 #: frontend/src/components/Modals/Question.vue:50
#: frontend/src/components/Modals/Question.vue:96 #: frontend/src/components/Modals/Question.vue:99
#: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:394 #: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:394
#: frontend/src/pages/QuizSubmission.vue:52 #: frontend/src/pages/QuizSubmission.vue:59
#: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json #: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json
#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json
#: lms/templates/quiz/quiz.html:59 #: lms/templates/quiz/quiz.html:59
msgid "Marks" msgid "Marks"
msgstr "Marcas" msgstr "Marcas"
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:19 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:23
msgid "Marks for question number {0} cannot be greater than the marks allotted for that question." msgid "Marks for question number {0} cannot be greater than the marks allotted for that question."
msgstr "Las calificaciones para la pregunta número {0} no pueden ser mayores que las calificaciones asignadas para esa pregunta." msgstr "Las calificaciones para la pregunta número {0} no pueden ser mayores que las calificaciones asignadas para esa pregunta."
#. Label of the marks_out_of (Int) field in DocType 'LMS Quiz Result' #. Label of the marks_out_of (Int) field in DocType 'LMS Quiz Result'
#: frontend/src/pages/QuizSubmission.vue:55 #: frontend/src/pages/QuizSubmission.vue:62
#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json
msgid "Marks out of" msgid "Marks out of"
msgstr "Marcas fuera de" msgstr "Marcas fuera de"
@@ -2911,7 +2903,7 @@ msgstr "Marcas fuera de"
msgid "Max Attempts" msgid "Max Attempts"
msgstr "Intentos máximos" msgstr "Intentos máximos"
#: frontend/src/pages/QuizForm.vue:57 #: frontend/src/pages/QuizForm.vue:58
msgid "Maximun Attempts" msgid "Maximun Attempts"
msgstr "Intentos máximos" msgstr "Intentos máximos"
@@ -2945,7 +2937,7 @@ msgstr "Medio:"
#. Label of the member (Link) field in DocType 'LMS Payment' #. Label of the member (Link) field in DocType 'LMS Payment'
#. Label of the member (Link) field in DocType 'LMS Program Member' #. Label of the member (Link) field in DocType 'LMS Program Member'
#. Label of the member (Link) field in DocType 'LMS Quiz Submission' #. Label of the member (Link) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizSubmission.vue:27 #: frontend/src/pages/QuizSubmission.vue:31
#: frontend/src/pages/QuizSubmissionList.vue:77 #: frontend/src/pages/QuizSubmissionList.vue:77
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
#: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json
@@ -3008,7 +3000,7 @@ msgstr "Subgrupo de miembros"
msgid "Member Type" msgid "Member Type"
msgstr "Tipo de miembro" msgstr "Tipo de miembro"
#: frontend/src/pages/ProgramForm.vue:248 #: frontend/src/pages/ProgramForm.vue:251
msgid "Member added to program" msgid "Member added to program"
msgstr "" msgstr ""
@@ -3173,19 +3165,19 @@ msgstr "Nuevo trabajo"
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "Nuevo solicitante de trabajo" msgstr "Nuevo solicitante de trabajo"
#: frontend/src/pages/Programs.vue:96 #: frontend/src/pages/Programs.vue:107
msgid "New Program" msgid "New Program"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:132 #: frontend/src/pages/ProgramForm.vue:133
msgid "New Program Course" msgid "New Program Course"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:133 #: frontend/src/pages/ProgramForm.vue:134
msgid "New Program Member" msgid "New Program Member"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:122 #: frontend/src/pages/QuizForm.vue:123
msgid "New Question" msgid "New Question"
msgstr "Nueva pregunta" msgstr "Nueva pregunta"
@@ -3198,11 +3190,11 @@ msgstr "Nuevo cuestionario"
msgid "New Sign Up" msgid "New Sign Up"
msgstr "Nueva inscripción" msgstr "Nueva inscripción"
#: lms/lms/utils.py:627 #: lms/lms/utils.py:623
msgid "New comment in batch {0}" msgid "New comment in batch {0}"
msgstr "Nuevo comentario en lote {0}" msgstr "Nuevo comentario en lote {0}"
#: lms/lms/utils.py:620 #: lms/lms/utils.py:616
msgid "New reply on the topic {0} in course {1}" msgid "New reply on the topic {0} in course {1}"
msgstr "Nueva respuesta sobre el tema {0} en curso {1}" msgstr "Nueva respuesta sobre el tema {0} en curso {1}"
@@ -3256,7 +3248,7 @@ msgstr "No hay cursos creados"
msgid "No courses found" msgid "No courses found"
msgstr "No se encontraron cursos" msgstr "No se encontraron cursos"
#: frontend/src/pages/Programs.vue:72 #: frontend/src/pages/Programs.vue:83
msgid "No courses in this program" msgid "No courses in this program"
msgstr "" msgstr ""
@@ -3276,7 +3268,7 @@ msgstr "No hay trabajos publicados"
msgid "No live classes scheduled" msgid "No live classes scheduled"
msgstr "No hay clases en vivo programadas" msgstr "No hay clases en vivo programadas"
#: frontend/src/pages/Programs.vue:82 #: frontend/src/pages/Programs.vue:93
msgid "No programs found" msgid "No programs found"
msgstr "" msgstr ""
@@ -3388,7 +3380,7 @@ msgstr "Una vez que el moderador califique su envío, encontrará los detalles a
msgid "Online" msgid "Online"
msgstr "En línea" msgstr "En línea"
#: frontend/src/pages/ProgramForm.vue:156 #: frontend/src/pages/ProgramForm.vue:157
msgid "Only courses for which self learning is disabled can be added to program." msgid "Only courses for which self learning is disabled can be added to program."
msgstr "" msgstr ""
@@ -3396,7 +3388,7 @@ msgstr ""
msgid "Only files of type {0} will be accepted." msgid "Only files of type {0} will be accepted."
msgstr "Sólo se aceptarán archivos del tipo {0}." msgstr "Sólo se aceptarán archivos del tipo {0}."
#: frontend/src/pages/CourseForm.vue:497 frontend/src/utils/index.js:518 #: frontend/src/pages/CourseForm.vue:497 frontend/src/utils/index.js:520
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."
@@ -3432,7 +3424,7 @@ msgid "Open Network"
msgstr "Red abierta" msgstr "Red abierta"
#. Label of the option (Data) field in DocType 'LMS Option' #. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:63 #: frontend/src/components/Modals/Question.vue:64
#: lms/lms/doctype/lms_option/lms_option.json #: lms/lms/doctype/lms_option/lms_option.json
msgid "Option" msgid "Option"
msgstr "Opción" msgstr "Opción"
@@ -3547,7 +3539,7 @@ msgstr "Aprobar"
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz' #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz'
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission' #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizForm.vue:71 frontend/src/pages/Quizzes.vue:125 #: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:125
#: lms/lms/doctype/lms_quiz/lms_quiz.json #: lms/lms/doctype/lms_quiz/lms_quiz.json
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
msgid "Passing Percentage" msgid "Passing Percentage"
@@ -3641,7 +3633,7 @@ msgid "Pending"
msgstr "Pendiente" msgstr "Pendiente"
#. Label of the percentage (Int) field in DocType 'LMS Quiz Submission' #. Label of the percentage (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizSubmission.vue:40 #: frontend/src/pages/QuizSubmission.vue:44
#: frontend/src/pages/QuizSubmissionList.vue:93 #: frontend/src/pages/QuizSubmissionList.vue:93
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
msgid "Percentage" msgid "Percentage"
@@ -3676,7 +3668,7 @@ msgstr "Por favor, consultar su correo electrónico para la verificación"
msgid "Please click on the following button to set your new password" msgid "Please click on the following button to set your new password"
msgstr "Haga clic en el siguiente botón para establecer su nueva contraseña" msgstr "Haga clic en el siguiente botón para establecer su nueva contraseña"
#: lms/lms/utils.py:1817 lms/lms/utils.py:1821 #: lms/lms/utils.py:1824 lms/lms/utils.py:1828
msgid "Please complete the previous courses in the program to enroll in this course." msgid "Please complete the previous courses in the program to enroll in this course."
msgstr "" msgstr ""
@@ -3779,7 +3771,7 @@ msgstr "Por favor, suba el archivo de la tarea."
msgid "Point of Score (e.g. 70)" msgid "Point of Score (e.g. 70)"
msgstr "Punto de puntuación (por ejemplo, 70)" msgstr "Punto de puntuación (por ejemplo, 70)"
#: frontend/src/components/Modals/Question.vue:83 #: frontend/src/components/Modals/Question.vue:85
msgid "Possibility" msgid "Possibility"
msgstr "Posibilidad" msgstr "Posibilidad"
@@ -3875,7 +3867,7 @@ msgstr "Países principales"
msgid "Primary Subgroup" msgid "Primary Subgroup"
msgstr "Subgrupo primario" msgstr "Subgrupo primario"
#: lms/lms/utils.py:441 #: lms/lms/utils.py:437
msgid "Privacy Policy" msgid "Privacy Policy"
msgstr "Política de privacidad" msgstr "Política de privacidad"
@@ -3903,7 +3895,7 @@ msgstr "Profesión"
msgid "Profile Image" msgid "Profile Image"
msgstr "Imagen del Perfil" msgstr "Imagen del Perfil"
#: frontend/src/pages/ProgramForm.vue:154 #: frontend/src/pages/ProgramForm.vue:155
msgid "Program Course" msgid "Program Course"
msgstr "" msgstr ""
@@ -3913,12 +3905,12 @@ msgstr ""
msgid "Program Courses" msgid "Program Courses"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:169 #: frontend/src/pages/ProgramForm.vue:170
msgid "Program Member" msgid "Program Member"
msgstr "" msgstr ""
#. Label of the program_members (Table) field in DocType 'LMS Program' #. Label of the program_members (Table) field in DocType 'LMS Program'
#: frontend/src/pages/ProgramForm.vue:78 #: frontend/src/pages/ProgramForm.vue:79
#: lms/lms/doctype/lms_program/lms_program.json #: lms/lms/doctype/lms_program/lms_program.json
msgid "Program Members" msgid "Program Members"
msgstr "" msgstr ""
@@ -4001,11 +3993,11 @@ msgstr "Detalle de la pregunta"
msgid "Question Name" msgid "Question Name"
msgstr "Nombre de la Pregunta" msgstr "Nombre de la Pregunta"
#: frontend/src/components/Modals/Question.vue:261 #: frontend/src/components/Modals/Question.vue:264
msgid "Question added successfully" msgid "Question added successfully"
msgstr "Pregunta añadida correctamente" msgstr "Pregunta añadida correctamente"
#: frontend/src/components/Modals/Question.vue:313 #: frontend/src/components/Modals/Question.vue:316
msgid "Question updated successfully" msgid "Question updated successfully"
msgstr "Pregunta actualizada correctamente" msgstr "Pregunta actualizada correctamente"
@@ -4018,7 +4010,7 @@ msgid "Question {0} of {1}"
msgstr "Pregunta {0} de {1}" msgstr "Pregunta {0} de {1}"
#. Label of the questions (Table) field in DocType 'LMS Quiz' #. Label of the questions (Table) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:116 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:117 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Questions" msgid "Questions"
msgstr "Preguntas" msgstr "Preguntas"
@@ -4028,7 +4020,7 @@ msgstr "Preguntas eliminadas correctamente"
#. Label of the quiz (Link) field in DocType 'LMS Quiz Submission' #. Label of the quiz (Link) field in DocType 'LMS Quiz Submission'
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#: frontend/src/pages/QuizSubmission.vue:22 #: frontend/src/pages/QuizSubmission.vue:26
#: frontend/src/pages/QuizSubmissionList.vue:82 frontend/src/utils/quiz.js:24 #: frontend/src/pages/QuizSubmissionList.vue:82 frontend/src/utils/quiz.js:24
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
#: lms/lms/workspace/lms/lms.json #: lms/lms/workspace/lms/lms.json
@@ -4046,7 +4038,7 @@ msgstr "ID del cuestionario"
msgid "Quiz Submission" msgid "Quiz Submission"
msgstr "Envíos de cuestionarios" msgstr "Envíos de cuestionarios"
#: frontend/src/pages/QuizSubmission.vue:98 #: frontend/src/pages/QuizSubmission.vue:122
#: frontend/src/pages/QuizSubmissionList.vue:102 #: frontend/src/pages/QuizSubmissionList.vue:102
msgid "Quiz Submissions" msgid "Quiz Submissions"
msgstr "Envíos de cuestionarios" msgstr "Envíos de cuestionarios"
@@ -4315,7 +4307,7 @@ msgid "Scope"
msgstr "Alcance" msgstr "Alcance"
#. Label of the score (Int) field in DocType 'LMS Quiz Submission' #. Label of the score (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizSubmission.vue:35 #: frontend/src/pages/QuizSubmission.vue:39
#: frontend/src/pages/QuizSubmissionList.vue:87 #: frontend/src/pages/QuizSubmissionList.vue:87
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
#: lms/templates/quiz/quiz.html:148 #: lms/templates/quiz/quiz.html:148
@@ -4352,7 +4344,7 @@ msgstr "Asiento restante"
msgid "Seats Left" msgid "Seats Left"
msgstr "Asiento restantea" msgstr "Asiento restantea"
#: frontend/src/components/Modals/Question.vue:91 #: frontend/src/components/Modals/Question.vue:94
msgid "Select a question" msgid "Select a question"
msgstr "Seleccione una pregunta" msgstr "Seleccione una pregunta"
@@ -4381,7 +4373,7 @@ msgstr "Establecer Contraseña"
#: frontend/src/components/Modals/Settings.vue:7 #: frontend/src/components/Modals/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:165 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:79
msgid "Settings" msgid "Settings"
msgstr "Configuración" msgstr "Configuración"
@@ -4405,12 +4397,12 @@ msgid "Show Answer"
msgstr "Mostrar respuesta" msgstr "Mostrar respuesta"
#. Label of the show_answers (Check) field in DocType 'LMS Quiz' #. Label of the show_answers (Check) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:84 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:85 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Show Answers" msgid "Show Answers"
msgstr "Mostrar respuestas" msgstr "Mostrar respuestas"
#. Label of the show_submission_history (Check) field in DocType 'LMS Quiz' #. Label of the show_submission_history (Check) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:89 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:90 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Show Submission History" msgid "Show Submission History"
msgstr "Mostrar historial de envíos" msgstr "Mostrar historial de envíos"
@@ -4435,11 +4427,11 @@ msgid "Show live class"
msgstr "Mostrar clase en vivo" msgstr "Mostrar clase en vivo"
#. Label of the shuffle_questions (Check) field in DocType 'LMS Quiz' #. Label of the shuffle_questions (Check) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:102 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:103 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Shuffle Questions" msgid "Shuffle Questions"
msgstr "Preguntas aleatorias" msgstr "Preguntas aleatorias"
#: frontend/src/pages/QuizForm.vue:96 #: frontend/src/pages/QuizForm.vue:97
msgid "Shuffle Settings" msgid "Shuffle Settings"
msgstr "Ajustes aleatoriedad" msgstr "Ajustes aleatoriedad"
@@ -4635,7 +4627,7 @@ msgstr "Estadísticas"
#. Label of the status (Select) field in DocType 'LMS Course Progress' #. Label of the status (Select) field in DocType 'LMS Course Progress'
#. Label of the status (Select) field in DocType 'LMS Mentor Request' #. Label of the status (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:91 #: frontend/src/components/Modals/Event.vue:91
#: frontend/src/pages/JobCreation.vue:35 #: frontend/src/pages/JobCreation.vue:41
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_join_request/cohort_join_request.json #: lms/lms/doctype/cohort_join_request/cohort_join_request.json
@@ -4727,7 +4719,7 @@ msgstr "Lista de entregas"
#: frontend/src/components/Modals/AssessmentModal.vue:9 #: frontend/src/components/Modals/AssessmentModal.vue:9
#: frontend/src/components/Modals/BatchCourseModal.vue:9 #: frontend/src/components/Modals/BatchCourseModal.vue:9
#: frontend/src/components/Modals/EvaluationModal.vue:9 #: frontend/src/components/Modals/EvaluationModal.vue:9
#: frontend/src/components/Modals/Question.vue:335 #: frontend/src/components/Modals/Question.vue:338
#: frontend/src/components/Quiz.vue:214 lms/templates/assignment.html:9 #: frontend/src/components/Quiz.vue:214 lms/templates/assignment.html:9
#: lms/templates/livecode/extension_footer.html:25 #: lms/templates/livecode/extension_footer.html:25
#: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163 #: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163
@@ -4754,12 +4746,12 @@ msgstr "Enviado {0}"
#: frontend/src/components/Modals/ChapterModal.vue:198 #: frontend/src/components/Modals/ChapterModal.vue:198
#: 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:264
#: frontend/src/components/Modals/Question.vue:312 #: frontend/src/components/Modals/Question.vue:315
#: frontend/src/pages/CourseForm.vue:460 frontend/src/pages/ProgramForm.vue:226 #: frontend/src/pages/CourseForm.vue:460 frontend/src/pages/ProgramForm.vue:229
#: frontend/src/pages/ProgramForm.vue:248 #: frontend/src/pages/ProgramForm.vue:251
#: frontend/src/pages/ProgramForm.vue:269 #: frontend/src/pages/ProgramForm.vue:272
#: frontend/src/pages/ProgramForm.vue:295 frontend/src/pages/QuizForm.vue:343 #: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:343
#: frontend/src/pages/QuizForm.vue:362 frontend/src/pages/QuizForm.vue:431 #: frontend/src/pages/QuizForm.vue:362 frontend/src/pages/QuizForm.vue:431
msgid "Success" msgid "Success"
msgstr "Éxito" msgstr "Éxito"
@@ -4856,7 +4848,7 @@ msgstr "Plantilla"
msgid "Temporarily Disabled" msgid "Temporarily Disabled"
msgstr "Desactivado temporalmente" msgstr "Desactivado temporalmente"
#: lms/lms/utils.py:440 #: lms/lms/utils.py:436
msgid "Terms of Use" msgid "Terms of Use"
msgstr "Términos de Uso" msgstr "Términos de Uso"
@@ -4920,7 +4912,7 @@ msgstr "No hay capítulos en este curso. Crea y administra capítulos desde aqu
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!" msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr "No hay cursos disponibles en este momento. ¡Esté atento, pronto habrá nuevas experiencias de aprendizaje!" msgstr "No hay cursos disponibles en este momento. ¡Esté atento, pronto habrá nuevas experiencias de aprendizaje!"
#: frontend/src/pages/Programs.vue:86 #: frontend/src/pages/Programs.vue:97
msgid "There are no programs available at the moment. Keep an eye out, fresh learning experiences are on the way soon!" msgid "There are no programs available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr "" msgstr ""
@@ -4936,6 +4928,10 @@ msgstr "No hay estudiantes en este lote."
msgid "There are no {0} on this site." msgid "There are no {0} on this site."
msgstr "No hay {0} en este sitio." msgstr "No hay {0} en este sitio."
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:41
msgid "There has been an update on your submission. You have got a score of {0} for the quiz {1}"
msgstr ""
#. Description of the 'section_break_ubxi' (Section Break) field in DocType #. Description of the 'section_break_ubxi' (Section Break) field in DocType
#. 'LMS Batch' #. 'LMS Batch'
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
@@ -4955,7 +4951,7 @@ 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:1585 #: 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."
@@ -5060,7 +5056,7 @@ msgstr "Horarios:"
#: frontend/src/components/Modals/LiveClassModal.vue:23 #: frontend/src/components/Modals/LiveClassModal.vue:23
#: frontend/src/pages/BatchForm.vue:20 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/ProgramForm.vue:11 #: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/ProgramForm.vue:11
#: frontend/src/pages/Programs.vue:107 frontend/src/pages/QuizForm.vue:48 #: frontend/src/pages/Programs.vue:118 frontend/src/pages/QuizForm.vue:48
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json #: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json
@@ -5097,7 +5093,7 @@ msgstr "A"
msgid "To Date" msgid "To Date"
msgstr "Hasta la fecha" msgstr "Hasta la fecha"
#: lms/lms/utils.py:1596 #: lms/lms/utils.py:1593
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."
@@ -5114,7 +5110,7 @@ msgid "Total"
msgstr "Total" msgstr "Total"
#. Label of the total_marks (Int) field in DocType 'LMS Quiz' #. Label of the total_marks (Int) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:66 frontend/src/pages/Quizzes.vue:119 #: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:119
#: lms/lms/doctype/lms_quiz/lms_quiz.json #: lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Total Marks" msgid "Total Marks"
msgstr "Marcas totales" msgstr "Marcas totales"
@@ -5151,7 +5147,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/Jobs.vue:16 #: frontend/src/pages/JobCreation.vue:33 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
@@ -5515,6 +5511,10 @@ msgstr "Te has inscrito en este grupo"
msgid "You have been enrolled in this course" msgid "You have been enrolled in this course"
msgstr "Te has inscrito en este curso" msgstr "Te has inscrito en este curso"
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:38
msgid "You have got a score of {0} for the quiz {1}"
msgstr ""
#: frontend/src/pages/Quizzes.vue:60 #: frontend/src/pages/Quizzes.vue:60
msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above." msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above."
msgstr "" msgstr ""
@@ -5685,7 +5685,7 @@ msgstr "{0} ya está certificado para el curso {1}"
msgid "{0} is your evaluator" msgid "{0} is your evaluator"
msgstr "{0} es tu evaluador" msgstr "{0} es tu evaluador"
#: lms/lms/utils.py:704 #: lms/lms/utils.py:700
msgid "{0} mentioned you in a comment" msgid "{0} mentioned you in a comment"
msgstr "{0} te mencionó en un comentario" msgstr "{0} te mencionó en un comentario"
@@ -5693,11 +5693,11 @@ msgstr "{0} te mencionó en un comentario"
msgid "{0} mentioned you in a comment in your batch." msgid "{0} mentioned you in a comment in your batch."
msgstr "{0} te mencionó en un comentario en tu lote." msgstr "{0} te mencionó en un comentario en tu lote."
#: lms/lms/utils.py:657 lms/lms/utils.py:663 #: lms/lms/utils.py:653 lms/lms/utils.py:659
msgid "{0} mentioned you in a comment in {1}" msgid "{0} mentioned you in a comment in {1}"
msgstr "{0} te mencionó en un comentario en {1}" msgstr "{0} te mencionó en un comentario en {1}"
#: lms/lms/utils.py:480 #: lms/lms/utils.py:476
msgid "{0}k" msgid "{0}k"
msgstr "{0}k" msgstr "{0}k"

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-11-22 16:05+0000\n" "POT-Creation-Date: 2024-11-29 16:04+0000\n"
"PO-Revision-Date: 2024-11-26 19:27\n" "PO-Revision-Date: 2024-12-02 22:11\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"
@@ -105,7 +105,7 @@ msgstr "فعال"
#: frontend/src/components/Categories.vue:26 #: frontend/src/components/Categories.vue:26
#: frontend/src/components/LiveClass.vue:11 #: frontend/src/components/LiveClass.vue:11
#: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30 #: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30
#: frontend/src/pages/ProgramForm.vue:91 frontend/src/pages/ProgramForm.vue:136 #: frontend/src/pages/ProgramForm.vue:92 frontend/src/pages/ProgramForm.vue:137
msgid "Add" msgid "Add"
msgstr "اضافه کردن" msgstr "اضافه کردن"
@@ -147,8 +147,8 @@ msgstr "دوره را اضافه کنید"
msgid "Add a lesson" msgid "Add a lesson"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Question.vue:141 #: frontend/src/components/Modals/Question.vue:144
#: frontend/src/pages/QuizForm.vue:182 #: frontend/src/pages/QuizForm.vue:183
msgid "Add a new question" msgid "Add a new question"
msgstr "" msgstr ""
@@ -922,25 +922,25 @@ msgstr "شرکت"
#. Label of the company_details_section (Section Break) field in DocType 'Job #. Label of the company_details_section (Section Break) field in DocType 'Job
#. Opportunity' #. Opportunity'
#: frontend/src/pages/JobCreation.vue:56 #: frontend/src/pages/JobCreation.vue:64
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Details" msgid "Company Details"
msgstr "جزئیات شرکت" msgstr "جزئیات شرکت"
#. Label of the company_email_address (Data) field in DocType 'Job Opportunity' #. Label of the company_email_address (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobCreation.vue:73 #: frontend/src/pages/JobCreation.vue:83
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Email Address" msgid "Company Email Address"
msgstr "" msgstr ""
#. Label of the company_logo (Attach Image) field in DocType 'Job Opportunity' #. Label of the company_logo (Attach Image) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobCreation.vue:77 #: frontend/src/pages/JobCreation.vue:88
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Logo" msgid "Company Logo"
msgstr "آرم شرکت" msgstr "آرم شرکت"
#. Label of the company_name (Data) field in DocType 'Job Opportunity' #. Label of the company_name (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobCreation.vue:62 #: frontend/src/pages/JobCreation.vue:70
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Name" msgid "Company Name"
msgstr "نام شرکت" msgstr "نام شرکت"
@@ -951,7 +951,7 @@ msgid "Company Type"
msgstr "" msgstr ""
#. Label of the company_website (Data) field in DocType 'Job Opportunity' #. Label of the company_website (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobCreation.vue:67 #: frontend/src/pages/JobCreation.vue:76
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Website" msgid "Company Website"
msgstr "وب سایت شرکت" msgstr "وب سایت شرکت"
@@ -1025,7 +1025,7 @@ msgstr ""
msgid "Contract" msgid "Contract"
msgstr "قرارداد" msgstr "قرارداد"
#: lms/lms/utils.py:442 #: lms/lms/utils.py:438
msgid "Cookie Policy" msgid "Cookie Policy"
msgstr "" msgstr ""
@@ -1047,7 +1047,7 @@ msgstr ""
msgid "Correct" msgid "Correct"
msgstr "درست" msgstr "درست"
#: frontend/src/components/Modals/Question.vue:71 #: frontend/src/components/Modals/Question.vue:73
msgid "Correct Answer" msgid "Correct Answer"
msgstr "" msgstr ""
@@ -1218,7 +1218,7 @@ msgstr ""
msgid "Course Title" msgid "Course Title"
msgstr "عنوان دوره" msgstr "عنوان دوره"
#: frontend/src/pages/ProgramForm.vue:226 #: frontend/src/pages/ProgramForm.vue:229
msgid "Course added to program" msgid "Course added to program"
msgstr "" msgstr ""
@@ -1230,7 +1230,7 @@ msgstr "دوره قبلاً به دسته اضافه شده است."
msgid "Course deleted successfully" msgid "Course deleted successfully"
msgstr "دوره با موفقیت حذف شد" msgstr "دوره با موفقیت حذف شد"
#: frontend/src/pages/ProgramForm.vue:295 #: frontend/src/pages/ProgramForm.vue:298
msgid "Course moved successfully" msgid "Course moved successfully"
msgstr "" msgstr ""
@@ -1270,7 +1270,7 @@ msgid "Cover Image"
msgstr "" msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:9 #: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/pages/Programs.vue:99 #: frontend/src/pages/Programs.vue:110
msgid "Create" msgid "Create"
msgstr "ایجاد کردن" msgstr "ایجاد کردن"
@@ -1446,7 +1446,7 @@ msgstr "حذف این درس آن را برای همیشه از دوره حذف
#. Label of the description (Text) field in DocType 'LMS Live Class' #. Label of the description (Text) field in DocType 'LMS Live Class'
#. Label of the description (Small Text) field in DocType 'Work Experience' #. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:78 #: frontend/src/components/Modals/LiveClassModal.vue:78
#: frontend/src/pages/BatchForm.vue:96 frontend/src/pages/JobCreation.vue:43 #: frontend/src/pages/BatchForm.vue:96 frontend/src/pages/JobCreation.vue:50
#: 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
@@ -1527,7 +1527,7 @@ msgstr "گزینه های تکراری برای این سوال پیدا شد."
msgid "Duration" msgid "Duration"
msgstr "مدت زمان" msgstr "مدت زمان"
#: frontend/src/pages/QuizForm.vue:62 #: frontend/src/pages/QuizForm.vue:63
msgid "Duration (in minutes)" msgid "Duration (in minutes)"
msgstr "مدت زمان (بر حسب دقیقه)" msgstr "مدت زمان (بر حسب دقیقه)"
@@ -1562,7 +1562,7 @@ msgstr "ویرایش فصل"
msgid "Edit Profile" msgid "Edit Profile"
msgstr "ویرایش نمایه" msgstr "ویرایش نمایه"
#: frontend/src/pages/QuizForm.vue:181 #: frontend/src/pages/QuizForm.vue:182
msgid "Edit the question" msgid "Edit the question"
msgstr "" msgstr ""
@@ -1693,7 +1693,7 @@ msgstr ""
msgid "Enrollment Count" msgid "Enrollment Count"
msgstr "" msgstr ""
#: lms/lms/utils.py:1705 #: lms/lms/utils.py:1702
msgid "Enrollment Failed" msgid "Enrollment Failed"
msgstr "" msgstr ""
@@ -1725,12 +1725,12 @@ msgstr "پاسخ صحیح را وارد کنید"
#: frontend/src/components/Modals/ChapterModal.vue:159 #: frontend/src/components/Modals/ChapterModal.vue:159
#: frontend/src/components/Modals/ChapterModal.vue:166 #: frontend/src/components/Modals/ChapterModal.vue:166
#: frontend/src/components/Modals/ChapterModal.vue:202 #: frontend/src/components/Modals/ChapterModal.vue:202
#: frontend/src/components/Modals/Question.vue:246 #: frontend/src/components/Modals/Question.vue:249
#: frontend/src/components/Modals/Question.vue:266 #: frontend/src/components/Modals/Question.vue:269
#: frontend/src/components/Modals/Question.vue:323 #: frontend/src/components/Modals/Question.vue:326
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350 #: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350
#: frontend/src/pages/QuizForm.vue:365 #: frontend/src/pages/QuizForm.vue:365
#: frontend/src/pages/QuizSubmission.vue:117 #: frontend/src/pages/QuizSubmission.vue:141
msgid "Error" msgid "Error"
msgstr "خطا" msgstr "خطا"
@@ -1858,7 +1858,7 @@ msgstr "تاریخ انقضا"
#. Label of the explanation_1 (Small Text) field in DocType 'LMS Question' #. Label of the explanation_1 (Small Text) field in DocType 'LMS Question'
#. Label of the explanation_3 (Small Text) field in DocType 'LMS Question' #. Label of the explanation_3 (Small Text) field in DocType 'LMS Question'
#. Label of the explanation_4 (Small Text) field in DocType 'LMS Question' #. Label of the explanation_4 (Small Text) field in DocType 'LMS Question'
#: frontend/src/components/Modals/Question.vue:67 #: frontend/src/components/Modals/Question.vue:69
#: lms/lms/doctype/lms_question/lms_question.json #: lms/lms/doctype/lms_question/lms_question.json
msgid "Explanation" msgid "Explanation"
msgstr "توضیح" msgstr "توضیح"
@@ -2116,14 +2116,6 @@ msgstr "میزبان"
msgid "How to add a Quiz?" msgid "How to add a Quiz?"
msgstr "" msgstr ""
#: frontend/src/components/LessonHelp.vue:47
msgid "How to add a YouTube Video?"
msgstr ""
#: frontend/src/components/LessonHelp.vue:28
msgid "How to upload content from your system?"
msgstr ""
#. Label of the current (Check) field in DocType 'Work Experience' #. Label of the current (Check) field in DocType 'Work Experience'
#: lms/lms/doctype/work_experience/work_experience.json #: lms/lms/doctype/work_experience/work_experience.json
msgid "I am currently working here" msgid "I am currently working here"
@@ -2202,7 +2194,7 @@ msgstr "تصویر"
msgid "Image search powered by" msgid "Image search powered by"
msgstr "" msgstr ""
#: lms/lms/doctype/lms_quiz/lms_quiz.py:222 #: lms/lms/doctype/lms_quiz/lms_quiz.py:221
msgid "Image: Corrupted Data Stream" msgid "Image: Corrupted Data Stream"
msgstr "" msgstr ""
@@ -2388,7 +2380,7 @@ msgstr "صادر شده در"
msgid "Items in Sidebar" msgid "Items in Sidebar"
msgstr "موارد موجود در نوار کناری" msgstr "موارد موجود در نوار کناری"
#: frontend/src/pages/ProgramForm.vue:269 #: frontend/src/pages/ProgramForm.vue:272
msgid "Items removed successfully" msgid "Items removed successfully"
msgstr "" msgstr ""
@@ -2757,7 +2749,7 @@ msgid "Letter Grade (e.g. A, B-)"
msgstr "" msgstr ""
#. Label of the limit_questions_to (Int) field in DocType 'LMS Quiz' #. Label of the limit_questions_to (Int) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:107 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:108 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Limit Questions To" msgid "Limit Questions To"
msgstr "" msgstr ""
@@ -2817,7 +2809,7 @@ msgstr "محلی"
#. Label of the location (Data) field in DocType 'Job Opportunity' #. Label of the location (Data) field in DocType 'Job Opportunity'
#. Label of the location (Data) field in DocType 'Education Detail' #. Label of the location (Data) field in DocType 'Education Detail'
#. Label of the location (Data) field in DocType 'Work Experience' #. Label of the location (Data) field in DocType 'Work Experience'
#: frontend/src/pages/JobCreation.vue:23 frontend/src/pages/JobDetail.vue:89 #: frontend/src/pages/JobCreation.vue:26 frontend/src/pages/JobDetail.vue:89
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/education_detail/education_detail.json #: lms/lms/doctype/education_detail/education_detail.json
#: lms/lms/doctype/work_experience/work_experience.json #: lms/lms/doctype/work_experience/work_experience.json
@@ -2887,21 +2879,21 @@ msgstr "علامت‌گذاری به عنوان خوانده شد"
#. Label of the marks (Int) field in DocType 'LMS Quiz Question' #. Label of the marks (Int) field in DocType 'LMS Quiz Question'
#. Label of the marks (Int) field in DocType 'LMS Quiz Result' #. Label of the marks (Int) field in DocType 'LMS Quiz Result'
#: frontend/src/components/Modals/Question.vue:50 #: frontend/src/components/Modals/Question.vue:50
#: frontend/src/components/Modals/Question.vue:96 #: frontend/src/components/Modals/Question.vue:99
#: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:394 #: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:394
#: frontend/src/pages/QuizSubmission.vue:52 #: frontend/src/pages/QuizSubmission.vue:59
#: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json #: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json
#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json
#: lms/templates/quiz/quiz.html:59 #: lms/templates/quiz/quiz.html:59
msgid "Marks" msgid "Marks"
msgstr "نمرات" msgstr "نمرات"
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:19 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:23
msgid "Marks for question number {0} cannot be greater than the marks allotted for that question." msgid "Marks for question number {0} cannot be greater than the marks allotted for that question."
msgstr "" msgstr ""
#. Label of the marks_out_of (Int) field in DocType 'LMS Quiz Result' #. Label of the marks_out_of (Int) field in DocType 'LMS Quiz Result'
#: frontend/src/pages/QuizSubmission.vue:55 #: frontend/src/pages/QuizSubmission.vue:62
#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json
msgid "Marks out of" msgid "Marks out of"
msgstr "" msgstr ""
@@ -2911,7 +2903,7 @@ msgstr ""
msgid "Max Attempts" msgid "Max Attempts"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:57 #: frontend/src/pages/QuizForm.vue:58
msgid "Maximun Attempts" msgid "Maximun Attempts"
msgstr "" msgstr ""
@@ -2945,7 +2937,7 @@ msgstr "متوسط:"
#. Label of the member (Link) field in DocType 'LMS Payment' #. Label of the member (Link) field in DocType 'LMS Payment'
#. Label of the member (Link) field in DocType 'LMS Program Member' #. Label of the member (Link) field in DocType 'LMS Program Member'
#. Label of the member (Link) field in DocType 'LMS Quiz Submission' #. Label of the member (Link) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizSubmission.vue:27 #: frontend/src/pages/QuizSubmission.vue:31
#: frontend/src/pages/QuizSubmissionList.vue:77 #: frontend/src/pages/QuizSubmissionList.vue:77
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
#: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json
@@ -3008,7 +3000,7 @@ msgstr ""
msgid "Member Type" msgid "Member Type"
msgstr "نوع عضو" msgstr "نوع عضو"
#: frontend/src/pages/ProgramForm.vue:248 #: frontend/src/pages/ProgramForm.vue:251
msgid "Member added to program" msgid "Member added to program"
msgstr "" msgstr ""
@@ -3173,19 +3165,19 @@ msgstr "شغل جدید"
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "" msgstr ""
#: frontend/src/pages/Programs.vue:96 #: frontend/src/pages/Programs.vue:107
msgid "New Program" msgid "New Program"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:132 #: frontend/src/pages/ProgramForm.vue:133
msgid "New Program Course" msgid "New Program Course"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:133 #: frontend/src/pages/ProgramForm.vue:134
msgid "New Program Member" msgid "New Program Member"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:122 #: frontend/src/pages/QuizForm.vue:123
msgid "New Question" msgid "New Question"
msgstr "" msgstr ""
@@ -3198,11 +3190,11 @@ msgstr ""
msgid "New Sign Up" msgid "New Sign Up"
msgstr "" msgstr ""
#: lms/lms/utils.py:627 #: lms/lms/utils.py:623
msgid "New comment in batch {0}" msgid "New comment in batch {0}"
msgstr "" msgstr ""
#: lms/lms/utils.py:620 #: lms/lms/utils.py:616
msgid "New reply on the topic {0} in course {1}" msgid "New reply on the topic {0} in course {1}"
msgstr "" msgstr ""
@@ -3256,7 +3248,7 @@ msgstr ""
msgid "No courses found" msgid "No courses found"
msgstr "" msgstr ""
#: frontend/src/pages/Programs.vue:72 #: frontend/src/pages/Programs.vue:83
msgid "No courses in this program" msgid "No courses in this program"
msgstr "" msgstr ""
@@ -3276,7 +3268,7 @@ msgstr ""
msgid "No live classes scheduled" msgid "No live classes scheduled"
msgstr "" msgstr ""
#: frontend/src/pages/Programs.vue:82 #: frontend/src/pages/Programs.vue:93
msgid "No programs found" msgid "No programs found"
msgstr "" msgstr ""
@@ -3388,7 +3380,7 @@ msgstr ""
msgid "Online" msgid "Online"
msgstr "آنلاین" msgstr "آنلاین"
#: frontend/src/pages/ProgramForm.vue:156 #: frontend/src/pages/ProgramForm.vue:157
msgid "Only courses for which self learning is disabled can be added to program." msgid "Only courses for which self learning is disabled can be added to program."
msgstr "" msgstr ""
@@ -3396,7 +3388,7 @@ msgstr ""
msgid "Only files of type {0} will be accepted." msgid "Only files of type {0} will be accepted."
msgstr "فقط فایل هایی از نوع {0} پذیرفته می شوند." msgstr "فقط فایل هایی از نوع {0} پذیرفته می شوند."
#: frontend/src/pages/CourseForm.vue:497 frontend/src/utils/index.js:518 #: frontend/src/pages/CourseForm.vue:497 frontend/src/utils/index.js:520
msgid "Only image file is allowed." msgid "Only image file is allowed."
msgstr "" msgstr ""
@@ -3432,7 +3424,7 @@ msgid "Open Network"
msgstr "" msgstr ""
#. Label of the option (Data) field in DocType 'LMS Option' #. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:63 #: frontend/src/components/Modals/Question.vue:64
#: lms/lms/doctype/lms_option/lms_option.json #: lms/lms/doctype/lms_option/lms_option.json
msgid "Option" msgid "Option"
msgstr "گزینه" msgstr "گزینه"
@@ -3547,7 +3539,7 @@ msgstr ""
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz' #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz'
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission' #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizForm.vue:71 frontend/src/pages/Quizzes.vue:125 #: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:125
#: lms/lms/doctype/lms_quiz/lms_quiz.json #: lms/lms/doctype/lms_quiz/lms_quiz.json
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
msgid "Passing Percentage" msgid "Passing Percentage"
@@ -3641,7 +3633,7 @@ msgid "Pending"
msgstr "انتظار" msgstr "انتظار"
#. Label of the percentage (Int) field in DocType 'LMS Quiz Submission' #. Label of the percentage (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizSubmission.vue:40 #: frontend/src/pages/QuizSubmission.vue:44
#: frontend/src/pages/QuizSubmissionList.vue:93 #: frontend/src/pages/QuizSubmissionList.vue:93
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
msgid "Percentage" msgid "Percentage"
@@ -3676,7 +3668,7 @@ msgstr "لطفا ایمیل خود را برای تایید بررسی کنید"
msgid "Please click on the following button to set your new password" msgid "Please click on the following button to set your new password"
msgstr "" msgstr ""
#: lms/lms/utils.py:1817 lms/lms/utils.py:1821 #: lms/lms/utils.py:1824 lms/lms/utils.py:1828
msgid "Please complete the previous courses in the program to enroll in this course." msgid "Please complete the previous courses in the program to enroll in this course."
msgstr "" msgstr ""
@@ -3779,7 +3771,7 @@ msgstr "لطفا فایل تکلیف را آپلود کنید."
msgid "Point of Score (e.g. 70)" msgid "Point of Score (e.g. 70)"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Question.vue:83 #: frontend/src/components/Modals/Question.vue:85
msgid "Possibility" msgid "Possibility"
msgstr "" msgstr ""
@@ -3875,7 +3867,7 @@ msgstr ""
msgid "Primary Subgroup" msgid "Primary Subgroup"
msgstr "" msgstr ""
#: lms/lms/utils.py:441 #: lms/lms/utils.py:437
msgid "Privacy Policy" msgid "Privacy Policy"
msgstr "" msgstr ""
@@ -3903,7 +3895,7 @@ msgstr ""
msgid "Profile Image" msgid "Profile Image"
msgstr "عکس پروفایل" msgstr "عکس پروفایل"
#: frontend/src/pages/ProgramForm.vue:154 #: frontend/src/pages/ProgramForm.vue:155
msgid "Program Course" msgid "Program Course"
msgstr "" msgstr ""
@@ -3913,12 +3905,12 @@ msgstr ""
msgid "Program Courses" msgid "Program Courses"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:169 #: frontend/src/pages/ProgramForm.vue:170
msgid "Program Member" msgid "Program Member"
msgstr "" msgstr ""
#. Label of the program_members (Table) field in DocType 'LMS Program' #. Label of the program_members (Table) field in DocType 'LMS Program'
#: frontend/src/pages/ProgramForm.vue:78 #: frontend/src/pages/ProgramForm.vue:79
#: lms/lms/doctype/lms_program/lms_program.json #: lms/lms/doctype/lms_program/lms_program.json
msgid "Program Members" msgid "Program Members"
msgstr "" msgstr ""
@@ -4001,11 +3993,11 @@ msgstr ""
msgid "Question Name" msgid "Question Name"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Question.vue:261 #: frontend/src/components/Modals/Question.vue:264
msgid "Question added successfully" msgid "Question added successfully"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Question.vue:313 #: frontend/src/components/Modals/Question.vue:316
msgid "Question updated successfully" msgid "Question updated successfully"
msgstr "" msgstr ""
@@ -4018,7 +4010,7 @@ msgid "Question {0} of {1}"
msgstr "سوال {0} از {1}" msgstr "سوال {0} از {1}"
#. Label of the questions (Table) field in DocType 'LMS Quiz' #. Label of the questions (Table) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:116 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:117 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Questions" msgid "Questions"
msgstr "سوالات" msgstr "سوالات"
@@ -4028,7 +4020,7 @@ msgstr ""
#. Label of the quiz (Link) field in DocType 'LMS Quiz Submission' #. Label of the quiz (Link) field in DocType 'LMS Quiz Submission'
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#: frontend/src/pages/QuizSubmission.vue:22 #: frontend/src/pages/QuizSubmission.vue:26
#: frontend/src/pages/QuizSubmissionList.vue:82 frontend/src/utils/quiz.js:24 #: frontend/src/pages/QuizSubmissionList.vue:82 frontend/src/utils/quiz.js:24
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
#: lms/lms/workspace/lms/lms.json #: lms/lms/workspace/lms/lms.json
@@ -4046,7 +4038,7 @@ msgstr "شناسه آزمون"
msgid "Quiz Submission" msgid "Quiz Submission"
msgstr "" msgstr ""
#: frontend/src/pages/QuizSubmission.vue:98 #: frontend/src/pages/QuizSubmission.vue:122
#: frontend/src/pages/QuizSubmissionList.vue:102 #: frontend/src/pages/QuizSubmissionList.vue:102
msgid "Quiz Submissions" msgid "Quiz Submissions"
msgstr "" msgstr ""
@@ -4315,7 +4307,7 @@ msgid "Scope"
msgstr "محدوده" msgstr "محدوده"
#. Label of the score (Int) field in DocType 'LMS Quiz Submission' #. Label of the score (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizSubmission.vue:35 #: frontend/src/pages/QuizSubmission.vue:39
#: frontend/src/pages/QuizSubmissionList.vue:87 #: frontend/src/pages/QuizSubmissionList.vue:87
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
#: lms/templates/quiz/quiz.html:148 #: lms/templates/quiz/quiz.html:148
@@ -4352,7 +4344,7 @@ msgstr ""
msgid "Seats Left" msgid "Seats Left"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Question.vue:91 #: frontend/src/components/Modals/Question.vue:94
msgid "Select a question" msgid "Select a question"
msgstr "" msgstr ""
@@ -4381,7 +4373,7 @@ msgstr ""
#: frontend/src/components/Modals/Settings.vue:7 #: frontend/src/components/Modals/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:165 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:79
msgid "Settings" msgid "Settings"
msgstr "تنظیمات" msgstr "تنظیمات"
@@ -4405,12 +4397,12 @@ msgid "Show Answer"
msgstr "نمایش پاسخ" msgstr "نمایش پاسخ"
#. Label of the show_answers (Check) field in DocType 'LMS Quiz' #. Label of the show_answers (Check) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:84 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:85 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Show Answers" msgid "Show Answers"
msgstr "نمایش پاسخ ها" msgstr "نمایش پاسخ ها"
#. Label of the show_submission_history (Check) field in DocType 'LMS Quiz' #. Label of the show_submission_history (Check) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:89 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:90 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Show Submission History" msgid "Show Submission History"
msgstr "" msgstr ""
@@ -4435,11 +4427,11 @@ msgid "Show live class"
msgstr "" msgstr ""
#. Label of the shuffle_questions (Check) field in DocType 'LMS Quiz' #. Label of the shuffle_questions (Check) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:102 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:103 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Shuffle Questions" msgid "Shuffle Questions"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:96 #: frontend/src/pages/QuizForm.vue:97
msgid "Shuffle Settings" msgid "Shuffle Settings"
msgstr "" msgstr ""
@@ -4635,7 +4627,7 @@ msgstr "آمار"
#. Label of the status (Select) field in DocType 'LMS Course Progress' #. Label of the status (Select) field in DocType 'LMS Course Progress'
#. Label of the status (Select) field in DocType 'LMS Mentor Request' #. Label of the status (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:91 #: frontend/src/components/Modals/Event.vue:91
#: frontend/src/pages/JobCreation.vue:35 #: frontend/src/pages/JobCreation.vue:41
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_join_request/cohort_join_request.json #: lms/lms/doctype/cohort_join_request/cohort_join_request.json
@@ -4727,7 +4719,7 @@ msgstr ""
#: frontend/src/components/Modals/AssessmentModal.vue:9 #: frontend/src/components/Modals/AssessmentModal.vue:9
#: frontend/src/components/Modals/BatchCourseModal.vue:9 #: frontend/src/components/Modals/BatchCourseModal.vue:9
#: frontend/src/components/Modals/EvaluationModal.vue:9 #: frontend/src/components/Modals/EvaluationModal.vue:9
#: frontend/src/components/Modals/Question.vue:335 #: frontend/src/components/Modals/Question.vue:338
#: frontend/src/components/Quiz.vue:214 lms/templates/assignment.html:9 #: frontend/src/components/Quiz.vue:214 lms/templates/assignment.html:9
#: lms/templates/livecode/extension_footer.html:25 #: lms/templates/livecode/extension_footer.html:25
#: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163 #: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163
@@ -4754,12 +4746,12 @@ msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:198 #: frontend/src/components/Modals/ChapterModal.vue:198
#: 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:264
#: frontend/src/components/Modals/Question.vue:312 #: frontend/src/components/Modals/Question.vue:315
#: frontend/src/pages/CourseForm.vue:460 frontend/src/pages/ProgramForm.vue:226 #: frontend/src/pages/CourseForm.vue:460 frontend/src/pages/ProgramForm.vue:229
#: frontend/src/pages/ProgramForm.vue:248 #: frontend/src/pages/ProgramForm.vue:251
#: frontend/src/pages/ProgramForm.vue:269 #: frontend/src/pages/ProgramForm.vue:272
#: frontend/src/pages/ProgramForm.vue:295 frontend/src/pages/QuizForm.vue:343 #: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:343
#: frontend/src/pages/QuizForm.vue:362 frontend/src/pages/QuizForm.vue:431 #: frontend/src/pages/QuizForm.vue:362 frontend/src/pages/QuizForm.vue:431
msgid "Success" msgid "Success"
msgstr "موفقیت" msgstr "موفقیت"
@@ -4856,7 +4848,7 @@ msgstr "قالب"
msgid "Temporarily Disabled" msgid "Temporarily Disabled"
msgstr "موقتا غیر فعال می باشد" msgstr "موقتا غیر فعال می باشد"
#: lms/lms/utils.py:440 #: lms/lms/utils.py:436
msgid "Terms of Use" msgid "Terms of Use"
msgstr "شرایط استفاده" msgstr "شرایط استفاده"
@@ -4920,7 +4912,7 @@ msgstr ""
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!" msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr "" msgstr ""
#: frontend/src/pages/Programs.vue:86 #: frontend/src/pages/Programs.vue:97
msgid "There are no programs available at the moment. Keep an eye out, fresh learning experiences are on the way soon!" msgid "There are no programs available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr "" msgstr ""
@@ -4936,6 +4928,10 @@ msgstr "هیچ دانش‌آموزی در این گروه وجود ندارد."
msgid "There are no {0} on this site." msgid "There are no {0} on this site."
msgstr "هیچ {0} در این سایت وجود ندارد." msgstr "هیچ {0} در این سایت وجود ندارد."
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:41
msgid "There has been an update on your submission. You have got a score of {0} for the quiz {1}"
msgstr ""
#. Description of the 'section_break_ubxi' (Section Break) field in DocType #. Description of the 'section_break_ubxi' (Section Break) field in DocType
#. 'LMS Batch' #. 'LMS Batch'
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
@@ -4955,7 +4951,7 @@ msgstr ""
msgid "This course has:" msgid "This course has:"
msgstr "" msgstr ""
#: lms/lms/utils.py:1585 #: lms/lms/utils.py:1582
msgid "This course is free." msgid "This course is free."
msgstr "" msgstr ""
@@ -5060,7 +5056,7 @@ msgstr ""
#: frontend/src/components/Modals/LiveClassModal.vue:23 #: frontend/src/components/Modals/LiveClassModal.vue:23
#: frontend/src/pages/BatchForm.vue:20 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/ProgramForm.vue:11 #: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/ProgramForm.vue:11
#: frontend/src/pages/Programs.vue:107 frontend/src/pages/QuizForm.vue:48 #: frontend/src/pages/Programs.vue:118 frontend/src/pages/QuizForm.vue:48
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json #: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json
@@ -5097,7 +5093,7 @@ msgstr "به"
msgid "To Date" msgid "To Date"
msgstr "تا تاریخ" msgstr "تا تاریخ"
#: lms/lms/utils.py:1596 #: 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 ""
@@ -5114,7 +5110,7 @@ msgid "Total"
msgstr "جمع" msgstr "جمع"
#. Label of the total_marks (Int) field in DocType 'LMS Quiz' #. Label of the total_marks (Int) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:66 frontend/src/pages/Quizzes.vue:119 #: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:119
#: lms/lms/doctype/lms_quiz/lms_quiz.json #: lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Total Marks" msgid "Total Marks"
msgstr "" msgstr ""
@@ -5151,7 +5147,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/Jobs.vue:16 #: frontend/src/pages/JobCreation.vue:33 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
@@ -5515,6 +5511,10 @@ msgstr ""
msgid "You have been enrolled in this course" msgid "You have been enrolled in this course"
msgstr "" msgstr ""
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:38
msgid "You have got a score of {0} for the quiz {1}"
msgstr ""
#: frontend/src/pages/Quizzes.vue:60 #: frontend/src/pages/Quizzes.vue:60
msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above." msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above."
msgstr "" msgstr ""
@@ -5685,7 +5685,7 @@ msgstr "{0} قبلاً برای دوره {1} تایید شده است"
msgid "{0} is your evaluator" msgid "{0} is your evaluator"
msgstr "" msgstr ""
#: lms/lms/utils.py:704 #: lms/lms/utils.py:700
msgid "{0} mentioned you in a comment" msgid "{0} mentioned you in a comment"
msgstr "" msgstr ""
@@ -5693,11 +5693,11 @@ msgstr ""
msgid "{0} mentioned you in a comment in your batch." msgid "{0} mentioned you in a comment in your batch."
msgstr "" msgstr ""
#: lms/lms/utils.py:657 lms/lms/utils.py:663 #: lms/lms/utils.py:653 lms/lms/utils.py:659
msgid "{0} mentioned you in a comment in {1}" msgid "{0} mentioned you in a comment in {1}"
msgstr "" msgstr ""
#: lms/lms/utils.py:480 #: lms/lms/utils.py:476
msgid "{0}k" msgid "{0}k"
msgstr "" msgstr ""

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-11-22 16:05+0000\n" "POT-Creation-Date: 2024-11-29 16:04+0000\n"
"PO-Revision-Date: 2024-11-25 19:28\n" "PO-Revision-Date: 2024-12-02 22:10\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"
@@ -105,7 +105,7 @@ msgstr "actif"
#: frontend/src/components/Categories.vue:26 #: frontend/src/components/Categories.vue:26
#: frontend/src/components/LiveClass.vue:11 #: frontend/src/components/LiveClass.vue:11
#: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30 #: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30
#: frontend/src/pages/ProgramForm.vue:91 frontend/src/pages/ProgramForm.vue:136 #: frontend/src/pages/ProgramForm.vue:92 frontend/src/pages/ProgramForm.vue:137
msgid "Add" msgid "Add"
msgstr "Ajouter" msgstr "Ajouter"
@@ -147,8 +147,8 @@ msgstr "Ajouter un cours"
msgid "Add a lesson" msgid "Add a lesson"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Question.vue:141 #: frontend/src/components/Modals/Question.vue:144
#: frontend/src/pages/QuizForm.vue:182 #: frontend/src/pages/QuizForm.vue:183
msgid "Add a new question" msgid "Add a new question"
msgstr "" msgstr ""
@@ -922,25 +922,25 @@ msgstr "Société"
#. Label of the company_details_section (Section Break) field in DocType 'Job #. Label of the company_details_section (Section Break) field in DocType 'Job
#. Opportunity' #. Opportunity'
#: frontend/src/pages/JobCreation.vue:56 #: frontend/src/pages/JobCreation.vue:64
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Details" msgid "Company Details"
msgstr "" msgstr ""
#. Label of the company_email_address (Data) field in DocType 'Job Opportunity' #. Label of the company_email_address (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobCreation.vue:73 #: frontend/src/pages/JobCreation.vue:83
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Email Address" msgid "Company Email Address"
msgstr "Courriel de l'entreprise" msgstr "Courriel de l'entreprise"
#. Label of the company_logo (Attach Image) field in DocType 'Job Opportunity' #. Label of the company_logo (Attach Image) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobCreation.vue:77 #: frontend/src/pages/JobCreation.vue:88
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Logo" msgid "Company Logo"
msgstr "Logo de la société" msgstr "Logo de la société"
#. Label of the company_name (Data) field in DocType 'Job Opportunity' #. Label of the company_name (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobCreation.vue:62 #: frontend/src/pages/JobCreation.vue:70
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Name" msgid "Company Name"
msgstr "Nom de la Société" msgstr "Nom de la Société"
@@ -951,7 +951,7 @@ msgid "Company Type"
msgstr "" msgstr ""
#. Label of the company_website (Data) field in DocType 'Job Opportunity' #. Label of the company_website (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobCreation.vue:67 #: frontend/src/pages/JobCreation.vue:76
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Website" msgid "Company Website"
msgstr "Site Web de l'entreprise" msgstr "Site Web de l'entreprise"
@@ -1025,7 +1025,7 @@ msgstr ""
msgid "Contract" msgid "Contract"
msgstr "Contrat" msgstr "Contrat"
#: lms/lms/utils.py:442 #: lms/lms/utils.py:438
msgid "Cookie Policy" msgid "Cookie Policy"
msgstr "Politique des cookies" msgstr "Politique des cookies"
@@ -1047,7 +1047,7 @@ msgstr ""
msgid "Correct" msgid "Correct"
msgstr "Correct" msgstr "Correct"
#: frontend/src/components/Modals/Question.vue:71 #: frontend/src/components/Modals/Question.vue:73
msgid "Correct Answer" msgid "Correct Answer"
msgstr "" msgstr ""
@@ -1218,7 +1218,7 @@ msgstr "Statistiques du cours"
msgid "Course Title" msgid "Course Title"
msgstr "Titre du cours" msgstr "Titre du cours"
#: frontend/src/pages/ProgramForm.vue:226 #: frontend/src/pages/ProgramForm.vue:229
msgid "Course added to program" msgid "Course added to program"
msgstr "" msgstr ""
@@ -1230,7 +1230,7 @@ msgstr "Cours déjà ajouté au lot."
msgid "Course deleted successfully" msgid "Course deleted successfully"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:295 #: frontend/src/pages/ProgramForm.vue:298
msgid "Course moved successfully" msgid "Course moved successfully"
msgstr "" msgstr ""
@@ -1270,7 +1270,7 @@ msgid "Cover Image"
msgstr "" msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:9 #: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/pages/Programs.vue:99 #: frontend/src/pages/Programs.vue:110
msgid "Create" msgid "Create"
msgstr "Créer" msgstr "Créer"
@@ -1446,7 +1446,7 @@ msgstr ""
#. Label of the description (Text) field in DocType 'LMS Live Class' #. Label of the description (Text) field in DocType 'LMS Live Class'
#. Label of the description (Small Text) field in DocType 'Work Experience' #. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:78 #: frontend/src/components/Modals/LiveClassModal.vue:78
#: frontend/src/pages/BatchForm.vue:96 frontend/src/pages/JobCreation.vue:43 #: frontend/src/pages/BatchForm.vue:96 frontend/src/pages/JobCreation.vue:50
#: 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
@@ -1527,7 +1527,7 @@ msgstr ""
msgid "Duration" msgid "Duration"
msgstr "Durée" msgstr "Durée"
#: frontend/src/pages/QuizForm.vue:62 #: frontend/src/pages/QuizForm.vue:63
msgid "Duration (in minutes)" msgid "Duration (in minutes)"
msgstr "" msgstr ""
@@ -1562,7 +1562,7 @@ msgstr ""
msgid "Edit Profile" msgid "Edit Profile"
msgstr "Modifier le Profil" msgstr "Modifier le Profil"
#: frontend/src/pages/QuizForm.vue:181 #: frontend/src/pages/QuizForm.vue:182
msgid "Edit the question" msgid "Edit the question"
msgstr "" msgstr ""
@@ -1693,7 +1693,7 @@ msgstr ""
msgid "Enrollment Count" msgid "Enrollment Count"
msgstr "" msgstr ""
#: lms/lms/utils.py:1705 #: lms/lms/utils.py:1702
msgid "Enrollment Failed" msgid "Enrollment Failed"
msgstr "" msgstr ""
@@ -1725,12 +1725,12 @@ msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:159 #: frontend/src/components/Modals/ChapterModal.vue:159
#: frontend/src/components/Modals/ChapterModal.vue:166 #: frontend/src/components/Modals/ChapterModal.vue:166
#: frontend/src/components/Modals/ChapterModal.vue:202 #: frontend/src/components/Modals/ChapterModal.vue:202
#: frontend/src/components/Modals/Question.vue:246 #: frontend/src/components/Modals/Question.vue:249
#: frontend/src/components/Modals/Question.vue:266 #: frontend/src/components/Modals/Question.vue:269
#: frontend/src/components/Modals/Question.vue:323 #: frontend/src/components/Modals/Question.vue:326
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350 #: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350
#: frontend/src/pages/QuizForm.vue:365 #: frontend/src/pages/QuizForm.vue:365
#: frontend/src/pages/QuizSubmission.vue:117 #: frontend/src/pages/QuizSubmission.vue:141
msgid "Error" msgid "Error"
msgstr "Erreur" msgstr "Erreur"
@@ -1858,7 +1858,7 @@ msgstr "Date d'expiration"
#. Label of the explanation_1 (Small Text) field in DocType 'LMS Question' #. Label of the explanation_1 (Small Text) field in DocType 'LMS Question'
#. Label of the explanation_3 (Small Text) field in DocType 'LMS Question' #. Label of the explanation_3 (Small Text) field in DocType 'LMS Question'
#. Label of the explanation_4 (Small Text) field in DocType 'LMS Question' #. Label of the explanation_4 (Small Text) field in DocType 'LMS Question'
#: frontend/src/components/Modals/Question.vue:67 #: frontend/src/components/Modals/Question.vue:69
#: lms/lms/doctype/lms_question/lms_question.json #: lms/lms/doctype/lms_question/lms_question.json
msgid "Explanation" msgid "Explanation"
msgstr "Explication" msgstr "Explication"
@@ -2116,14 +2116,6 @@ msgstr ""
msgid "How to add a Quiz?" msgid "How to add a Quiz?"
msgstr "" msgstr ""
#: frontend/src/components/LessonHelp.vue:47
msgid "How to add a YouTube Video?"
msgstr ""
#: frontend/src/components/LessonHelp.vue:28
msgid "How to upload content from your system?"
msgstr ""
#. Label of the current (Check) field in DocType 'Work Experience' #. Label of the current (Check) field in DocType 'Work Experience'
#: lms/lms/doctype/work_experience/work_experience.json #: lms/lms/doctype/work_experience/work_experience.json
msgid "I am currently working here" msgid "I am currently working here"
@@ -2202,7 +2194,7 @@ msgstr "Image"
msgid "Image search powered by" msgid "Image search powered by"
msgstr "" msgstr ""
#: lms/lms/doctype/lms_quiz/lms_quiz.py:222 #: lms/lms/doctype/lms_quiz/lms_quiz.py:221
msgid "Image: Corrupted Data Stream" msgid "Image: Corrupted Data Stream"
msgstr "" msgstr ""
@@ -2388,7 +2380,7 @@ msgstr ""
msgid "Items in Sidebar" msgid "Items in Sidebar"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:269 #: frontend/src/pages/ProgramForm.vue:272
msgid "Items removed successfully" msgid "Items removed successfully"
msgstr "" msgstr ""
@@ -2757,7 +2749,7 @@ msgid "Letter Grade (e.g. A, B-)"
msgstr "" msgstr ""
#. Label of the limit_questions_to (Int) field in DocType 'LMS Quiz' #. Label of the limit_questions_to (Int) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:107 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:108 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Limit Questions To" msgid "Limit Questions To"
msgstr "" msgstr ""
@@ -2817,7 +2809,7 @@ msgstr "Locale"
#. Label of the location (Data) field in DocType 'Job Opportunity' #. Label of the location (Data) field in DocType 'Job Opportunity'
#. Label of the location (Data) field in DocType 'Education Detail' #. Label of the location (Data) field in DocType 'Education Detail'
#. Label of the location (Data) field in DocType 'Work Experience' #. Label of the location (Data) field in DocType 'Work Experience'
#: frontend/src/pages/JobCreation.vue:23 frontend/src/pages/JobDetail.vue:89 #: frontend/src/pages/JobCreation.vue:26 frontend/src/pages/JobDetail.vue:89
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/education_detail/education_detail.json #: lms/lms/doctype/education_detail/education_detail.json
#: lms/lms/doctype/work_experience/work_experience.json #: lms/lms/doctype/work_experience/work_experience.json
@@ -2887,21 +2879,21 @@ msgstr ""
#. Label of the marks (Int) field in DocType 'LMS Quiz Question' #. Label of the marks (Int) field in DocType 'LMS Quiz Question'
#. Label of the marks (Int) field in DocType 'LMS Quiz Result' #. Label of the marks (Int) field in DocType 'LMS Quiz Result'
#: frontend/src/components/Modals/Question.vue:50 #: frontend/src/components/Modals/Question.vue:50
#: frontend/src/components/Modals/Question.vue:96 #: frontend/src/components/Modals/Question.vue:99
#: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:394 #: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:394
#: frontend/src/pages/QuizSubmission.vue:52 #: frontend/src/pages/QuizSubmission.vue:59
#: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json #: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json
#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json
#: lms/templates/quiz/quiz.html:59 #: lms/templates/quiz/quiz.html:59
msgid "Marks" msgid "Marks"
msgstr "" msgstr ""
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:19 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:23
msgid "Marks for question number {0} cannot be greater than the marks allotted for that question." msgid "Marks for question number {0} cannot be greater than the marks allotted for that question."
msgstr "" msgstr ""
#. Label of the marks_out_of (Int) field in DocType 'LMS Quiz Result' #. Label of the marks_out_of (Int) field in DocType 'LMS Quiz Result'
#: frontend/src/pages/QuizSubmission.vue:55 #: frontend/src/pages/QuizSubmission.vue:62
#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json
msgid "Marks out of" msgid "Marks out of"
msgstr "" msgstr ""
@@ -2911,7 +2903,7 @@ msgstr ""
msgid "Max Attempts" msgid "Max Attempts"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:57 #: frontend/src/pages/QuizForm.vue:58
msgid "Maximun Attempts" msgid "Maximun Attempts"
msgstr "" msgstr ""
@@ -2945,7 +2937,7 @@ msgstr "Moyen:"
#. Label of the member (Link) field in DocType 'LMS Payment' #. Label of the member (Link) field in DocType 'LMS Payment'
#. Label of the member (Link) field in DocType 'LMS Program Member' #. Label of the member (Link) field in DocType 'LMS Program Member'
#. Label of the member (Link) field in DocType 'LMS Quiz Submission' #. Label of the member (Link) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizSubmission.vue:27 #: frontend/src/pages/QuizSubmission.vue:31
#: frontend/src/pages/QuizSubmissionList.vue:77 #: frontend/src/pages/QuizSubmissionList.vue:77
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
#: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json
@@ -3008,7 +3000,7 @@ msgstr ""
msgid "Member Type" msgid "Member Type"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:248 #: frontend/src/pages/ProgramForm.vue:251
msgid "Member added to program" msgid "Member added to program"
msgstr "" msgstr ""
@@ -3173,19 +3165,19 @@ msgstr ""
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "" msgstr ""
#: frontend/src/pages/Programs.vue:96 #: frontend/src/pages/Programs.vue:107
msgid "New Program" msgid "New Program"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:132 #: frontend/src/pages/ProgramForm.vue:133
msgid "New Program Course" msgid "New Program Course"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:133 #: frontend/src/pages/ProgramForm.vue:134
msgid "New Program Member" msgid "New Program Member"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:122 #: frontend/src/pages/QuizForm.vue:123
msgid "New Question" msgid "New Question"
msgstr "" msgstr ""
@@ -3198,11 +3190,11 @@ msgstr ""
msgid "New Sign Up" msgid "New Sign Up"
msgstr "" msgstr ""
#: lms/lms/utils.py:627 #: lms/lms/utils.py:623
msgid "New comment in batch {0}" msgid "New comment in batch {0}"
msgstr "" msgstr ""
#: lms/lms/utils.py:620 #: lms/lms/utils.py:616
msgid "New reply on the topic {0} in course {1}" msgid "New reply on the topic {0} in course {1}"
msgstr "" msgstr ""
@@ -3256,7 +3248,7 @@ msgstr ""
msgid "No courses found" msgid "No courses found"
msgstr "" msgstr ""
#: frontend/src/pages/Programs.vue:72 #: frontend/src/pages/Programs.vue:83
msgid "No courses in this program" msgid "No courses in this program"
msgstr "" msgstr ""
@@ -3276,7 +3268,7 @@ msgstr ""
msgid "No live classes scheduled" msgid "No live classes scheduled"
msgstr "" msgstr ""
#: frontend/src/pages/Programs.vue:82 #: frontend/src/pages/Programs.vue:93
msgid "No programs found" msgid "No programs found"
msgstr "" msgstr ""
@@ -3388,7 +3380,7 @@ msgstr ""
msgid "Online" msgid "Online"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:156 #: frontend/src/pages/ProgramForm.vue:157
msgid "Only courses for which self learning is disabled can be added to program." msgid "Only courses for which self learning is disabled can be added to program."
msgstr "" msgstr ""
@@ -3396,7 +3388,7 @@ msgstr ""
msgid "Only files of type {0} will be accepted." msgid "Only files of type {0} will be accepted."
msgstr "" msgstr ""
#: frontend/src/pages/CourseForm.vue:497 frontend/src/utils/index.js:518 #: frontend/src/pages/CourseForm.vue:497 frontend/src/utils/index.js:520
msgid "Only image file is allowed." msgid "Only image file is allowed."
msgstr "" msgstr ""
@@ -3432,7 +3424,7 @@ msgid "Open Network"
msgstr "" msgstr ""
#. Label of the option (Data) field in DocType 'LMS Option' #. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:63 #: frontend/src/components/Modals/Question.vue:64
#: lms/lms/doctype/lms_option/lms_option.json #: lms/lms/doctype/lms_option/lms_option.json
msgid "Option" msgid "Option"
msgstr "" msgstr ""
@@ -3547,7 +3539,7 @@ msgstr ""
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz' #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz'
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission' #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizForm.vue:71 frontend/src/pages/Quizzes.vue:125 #: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:125
#: lms/lms/doctype/lms_quiz/lms_quiz.json #: lms/lms/doctype/lms_quiz/lms_quiz.json
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
msgid "Passing Percentage" msgid "Passing Percentage"
@@ -3641,7 +3633,7 @@ msgid "Pending"
msgstr "En Attente" msgstr "En Attente"
#. Label of the percentage (Int) field in DocType 'LMS Quiz Submission' #. Label of the percentage (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizSubmission.vue:40 #: frontend/src/pages/QuizSubmission.vue:44
#: frontend/src/pages/QuizSubmissionList.vue:93 #: frontend/src/pages/QuizSubmissionList.vue:93
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
msgid "Percentage" msgid "Percentage"
@@ -3676,7 +3668,7 @@ msgstr "Veuillez vérifier votre email pour validation"
msgid "Please click on the following button to set your new password" msgid "Please click on the following button to set your new password"
msgstr "" msgstr ""
#: lms/lms/utils.py:1817 lms/lms/utils.py:1821 #: lms/lms/utils.py:1824 lms/lms/utils.py:1828
msgid "Please complete the previous courses in the program to enroll in this course." msgid "Please complete the previous courses in the program to enroll in this course."
msgstr "" msgstr ""
@@ -3779,7 +3771,7 @@ msgstr ""
msgid "Point of Score (e.g. 70)" msgid "Point of Score (e.g. 70)"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Question.vue:83 #: frontend/src/components/Modals/Question.vue:85
msgid "Possibility" msgid "Possibility"
msgstr "" msgstr ""
@@ -3875,7 +3867,7 @@ msgstr ""
msgid "Primary Subgroup" msgid "Primary Subgroup"
msgstr "" msgstr ""
#: lms/lms/utils.py:441 #: lms/lms/utils.py:437
msgid "Privacy Policy" msgid "Privacy Policy"
msgstr "" msgstr ""
@@ -3903,7 +3895,7 @@ msgstr ""
msgid "Profile Image" msgid "Profile Image"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:154 #: frontend/src/pages/ProgramForm.vue:155
msgid "Program Course" msgid "Program Course"
msgstr "" msgstr ""
@@ -3913,12 +3905,12 @@ msgstr ""
msgid "Program Courses" msgid "Program Courses"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:169 #: frontend/src/pages/ProgramForm.vue:170
msgid "Program Member" msgid "Program Member"
msgstr "" msgstr ""
#. Label of the program_members (Table) field in DocType 'LMS Program' #. Label of the program_members (Table) field in DocType 'LMS Program'
#: frontend/src/pages/ProgramForm.vue:78 #: frontend/src/pages/ProgramForm.vue:79
#: lms/lms/doctype/lms_program/lms_program.json #: lms/lms/doctype/lms_program/lms_program.json
msgid "Program Members" msgid "Program Members"
msgstr "" msgstr ""
@@ -4001,11 +3993,11 @@ msgstr ""
msgid "Question Name" msgid "Question Name"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Question.vue:261 #: frontend/src/components/Modals/Question.vue:264
msgid "Question added successfully" msgid "Question added successfully"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Question.vue:313 #: frontend/src/components/Modals/Question.vue:316
msgid "Question updated successfully" msgid "Question updated successfully"
msgstr "" msgstr ""
@@ -4018,7 +4010,7 @@ msgid "Question {0} of {1}"
msgstr "" msgstr ""
#. Label of the questions (Table) field in DocType 'LMS Quiz' #. Label of the questions (Table) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:116 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:117 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Questions" msgid "Questions"
msgstr "" msgstr ""
@@ -4028,7 +4020,7 @@ msgstr ""
#. Label of the quiz (Link) field in DocType 'LMS Quiz Submission' #. Label of the quiz (Link) field in DocType 'LMS Quiz Submission'
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#: frontend/src/pages/QuizSubmission.vue:22 #: frontend/src/pages/QuizSubmission.vue:26
#: frontend/src/pages/QuizSubmissionList.vue:82 frontend/src/utils/quiz.js:24 #: frontend/src/pages/QuizSubmissionList.vue:82 frontend/src/utils/quiz.js:24
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
#: lms/lms/workspace/lms/lms.json #: lms/lms/workspace/lms/lms.json
@@ -4046,7 +4038,7 @@ msgstr ""
msgid "Quiz Submission" msgid "Quiz Submission"
msgstr "" msgstr ""
#: frontend/src/pages/QuizSubmission.vue:98 #: frontend/src/pages/QuizSubmission.vue:122
#: frontend/src/pages/QuizSubmissionList.vue:102 #: frontend/src/pages/QuizSubmissionList.vue:102
msgid "Quiz Submissions" msgid "Quiz Submissions"
msgstr "" msgstr ""
@@ -4315,7 +4307,7 @@ msgid "Scope"
msgstr "" msgstr ""
#. Label of the score (Int) field in DocType 'LMS Quiz Submission' #. Label of the score (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizSubmission.vue:35 #: frontend/src/pages/QuizSubmission.vue:39
#: frontend/src/pages/QuizSubmissionList.vue:87 #: frontend/src/pages/QuizSubmissionList.vue:87
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
#: lms/templates/quiz/quiz.html:148 #: lms/templates/quiz/quiz.html:148
@@ -4352,7 +4344,7 @@ msgstr ""
msgid "Seats Left" msgid "Seats Left"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Question.vue:91 #: frontend/src/components/Modals/Question.vue:94
msgid "Select a question" msgid "Select a question"
msgstr "" msgstr ""
@@ -4381,7 +4373,7 @@ msgstr ""
#: frontend/src/components/Modals/Settings.vue:7 #: frontend/src/components/Modals/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:165 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:79
msgid "Settings" msgid "Settings"
msgstr "Paramètres" msgstr "Paramètres"
@@ -4405,12 +4397,12 @@ msgid "Show Answer"
msgstr "" msgstr ""
#. Label of the show_answers (Check) field in DocType 'LMS Quiz' #. Label of the show_answers (Check) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:84 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:85 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Show Answers" msgid "Show Answers"
msgstr "" msgstr ""
#. Label of the show_submission_history (Check) field in DocType 'LMS Quiz' #. Label of the show_submission_history (Check) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:89 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:90 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Show Submission History" msgid "Show Submission History"
msgstr "" msgstr ""
@@ -4435,11 +4427,11 @@ msgid "Show live class"
msgstr "" msgstr ""
#. Label of the shuffle_questions (Check) field in DocType 'LMS Quiz' #. Label of the shuffle_questions (Check) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:102 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:103 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Shuffle Questions" msgid "Shuffle Questions"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:96 #: frontend/src/pages/QuizForm.vue:97
msgid "Shuffle Settings" msgid "Shuffle Settings"
msgstr "" msgstr ""
@@ -4635,7 +4627,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Course Progress' #. Label of the status (Select) field in DocType 'LMS Course Progress'
#. Label of the status (Select) field in DocType 'LMS Mentor Request' #. Label of the status (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:91 #: frontend/src/components/Modals/Event.vue:91
#: frontend/src/pages/JobCreation.vue:35 #: frontend/src/pages/JobCreation.vue:41
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_join_request/cohort_join_request.json #: lms/lms/doctype/cohort_join_request/cohort_join_request.json
@@ -4727,7 +4719,7 @@ msgstr ""
#: frontend/src/components/Modals/AssessmentModal.vue:9 #: frontend/src/components/Modals/AssessmentModal.vue:9
#: frontend/src/components/Modals/BatchCourseModal.vue:9 #: frontend/src/components/Modals/BatchCourseModal.vue:9
#: frontend/src/components/Modals/EvaluationModal.vue:9 #: frontend/src/components/Modals/EvaluationModal.vue:9
#: frontend/src/components/Modals/Question.vue:335 #: frontend/src/components/Modals/Question.vue:338
#: frontend/src/components/Quiz.vue:214 lms/templates/assignment.html:9 #: frontend/src/components/Quiz.vue:214 lms/templates/assignment.html:9
#: lms/templates/livecode/extension_footer.html:25 #: lms/templates/livecode/extension_footer.html:25
#: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163 #: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163
@@ -4754,12 +4746,12 @@ msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:198 #: frontend/src/components/Modals/ChapterModal.vue:198
#: 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:264
#: frontend/src/components/Modals/Question.vue:312 #: frontend/src/components/Modals/Question.vue:315
#: frontend/src/pages/CourseForm.vue:460 frontend/src/pages/ProgramForm.vue:226 #: frontend/src/pages/CourseForm.vue:460 frontend/src/pages/ProgramForm.vue:229
#: frontend/src/pages/ProgramForm.vue:248 #: frontend/src/pages/ProgramForm.vue:251
#: frontend/src/pages/ProgramForm.vue:269 #: frontend/src/pages/ProgramForm.vue:272
#: frontend/src/pages/ProgramForm.vue:295 frontend/src/pages/QuizForm.vue:343 #: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:343
#: frontend/src/pages/QuizForm.vue:362 frontend/src/pages/QuizForm.vue:431 #: frontend/src/pages/QuizForm.vue:362 frontend/src/pages/QuizForm.vue:431
msgid "Success" msgid "Success"
msgstr "Succès" msgstr "Succès"
@@ -4856,7 +4848,7 @@ msgstr "Modèle"
msgid "Temporarily Disabled" msgid "Temporarily Disabled"
msgstr "Temporairement désactivé" msgstr "Temporairement désactivé"
#: lms/lms/utils.py:440 #: lms/lms/utils.py:436
msgid "Terms of Use" msgid "Terms of Use"
msgstr "" msgstr ""
@@ -4920,7 +4912,7 @@ msgstr ""
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!" msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr "" msgstr ""
#: frontend/src/pages/Programs.vue:86 #: frontend/src/pages/Programs.vue:97
msgid "There are no programs available at the moment. Keep an eye out, fresh learning experiences are on the way soon!" msgid "There are no programs available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr "" msgstr ""
@@ -4936,6 +4928,10 @@ msgstr ""
msgid "There are no {0} on this site." msgid "There are no {0} on this site."
msgstr "" msgstr ""
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:41
msgid "There has been an update on your submission. You have got a score of {0} for the quiz {1}"
msgstr ""
#. Description of the 'section_break_ubxi' (Section Break) field in DocType #. Description of the 'section_break_ubxi' (Section Break) field in DocType
#. 'LMS Batch' #. 'LMS Batch'
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
@@ -4955,7 +4951,7 @@ msgstr ""
msgid "This course has:" msgid "This course has:"
msgstr "" msgstr ""
#: lms/lms/utils.py:1585 #: lms/lms/utils.py:1582
msgid "This course is free." msgid "This course is free."
msgstr "" msgstr ""
@@ -5060,7 +5056,7 @@ msgstr ""
#: frontend/src/components/Modals/LiveClassModal.vue:23 #: frontend/src/components/Modals/LiveClassModal.vue:23
#: frontend/src/pages/BatchForm.vue:20 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/ProgramForm.vue:11 #: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/ProgramForm.vue:11
#: frontend/src/pages/Programs.vue:107 frontend/src/pages/QuizForm.vue:48 #: frontend/src/pages/Programs.vue:118 frontend/src/pages/QuizForm.vue:48
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json #: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json
@@ -5097,7 +5093,7 @@ msgstr "À"
msgid "To Date" msgid "To Date"
msgstr "Jusqu'au" msgstr "Jusqu'au"
#: lms/lms/utils.py:1596 #: 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 ""
@@ -5114,7 +5110,7 @@ msgid "Total"
msgstr "" msgstr ""
#. Label of the total_marks (Int) field in DocType 'LMS Quiz' #. Label of the total_marks (Int) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:66 frontend/src/pages/Quizzes.vue:119 #: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:119
#: lms/lms/doctype/lms_quiz/lms_quiz.json #: lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Total Marks" msgid "Total Marks"
msgstr "" msgstr ""
@@ -5151,7 +5147,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/Jobs.vue:16 #: frontend/src/pages/JobCreation.vue:33 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
@@ -5515,6 +5511,10 @@ msgstr ""
msgid "You have been enrolled in this course" msgid "You have been enrolled in this course"
msgstr "" msgstr ""
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:38
msgid "You have got a score of {0} for the quiz {1}"
msgstr ""
#: frontend/src/pages/Quizzes.vue:60 #: frontend/src/pages/Quizzes.vue:60
msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above." msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above."
msgstr "" msgstr ""
@@ -5685,7 +5685,7 @@ msgstr ""
msgid "{0} is your evaluator" msgid "{0} is your evaluator"
msgstr "" msgstr ""
#: lms/lms/utils.py:704 #: lms/lms/utils.py:700
msgid "{0} mentioned you in a comment" msgid "{0} mentioned you in a comment"
msgstr "" msgstr ""
@@ -5693,11 +5693,11 @@ msgstr ""
msgid "{0} mentioned you in a comment in your batch." msgid "{0} mentioned you in a comment in your batch."
msgstr "" msgstr ""
#: lms/lms/utils.py:657 lms/lms/utils.py:663 #: lms/lms/utils.py:653 lms/lms/utils.py:659
msgid "{0} mentioned you in a comment in {1}" msgid "{0} mentioned you in a comment in {1}"
msgstr "{0} vous a mentionné dans un commentaire dans {1}" msgstr "{0} vous a mentionné dans un commentaire dans {1}"
#: lms/lms/utils.py:480 #: lms/lms/utils.py:476
msgid "{0}k" msgid "{0}k"
msgstr "" msgstr ""

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-11-22 16:05+0000\n" "POT-Creation-Date: 2024-11-29 16:04+0000\n"
"PO-Revision-Date: 2024-11-25 19:29\n" "PO-Revision-Date: 2024-12-02 22:10\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"
@@ -105,7 +105,7 @@ msgstr ""
#: frontend/src/components/Categories.vue:26 #: frontend/src/components/Categories.vue:26
#: frontend/src/components/LiveClass.vue:11 #: frontend/src/components/LiveClass.vue:11
#: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30 #: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30
#: frontend/src/pages/ProgramForm.vue:91 frontend/src/pages/ProgramForm.vue:136 #: frontend/src/pages/ProgramForm.vue:92 frontend/src/pages/ProgramForm.vue:137
msgid "Add" msgid "Add"
msgstr "" msgstr ""
@@ -147,8 +147,8 @@ msgstr ""
msgid "Add a lesson" msgid "Add a lesson"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Question.vue:141 #: frontend/src/components/Modals/Question.vue:144
#: frontend/src/pages/QuizForm.vue:182 #: frontend/src/pages/QuizForm.vue:183
msgid "Add a new question" msgid "Add a new question"
msgstr "" msgstr ""
@@ -922,25 +922,25 @@ msgstr ""
#. Label of the company_details_section (Section Break) field in DocType 'Job #. Label of the company_details_section (Section Break) field in DocType 'Job
#. Opportunity' #. Opportunity'
#: frontend/src/pages/JobCreation.vue:56 #: frontend/src/pages/JobCreation.vue:64
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Details" msgid "Company Details"
msgstr "Cégadatok" msgstr "Cégadatok"
#. Label of the company_email_address (Data) field in DocType 'Job Opportunity' #. Label of the company_email_address (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobCreation.vue:73 #: frontend/src/pages/JobCreation.vue:83
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Email Address" msgid "Company Email Address"
msgstr "Cég e-mail címe" msgstr "Cég e-mail címe"
#. Label of the company_logo (Attach Image) field in DocType 'Job Opportunity' #. Label of the company_logo (Attach Image) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobCreation.vue:77 #: frontend/src/pages/JobCreation.vue:88
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Logo" msgid "Company Logo"
msgstr "" msgstr ""
#. Label of the company_name (Data) field in DocType 'Job Opportunity' #. Label of the company_name (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobCreation.vue:62 #: frontend/src/pages/JobCreation.vue:70
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Name" msgid "Company Name"
msgstr "" msgstr ""
@@ -951,7 +951,7 @@ msgid "Company Type"
msgstr "" msgstr ""
#. Label of the company_website (Data) field in DocType 'Job Opportunity' #. Label of the company_website (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobCreation.vue:67 #: frontend/src/pages/JobCreation.vue:76
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Website" msgid "Company Website"
msgstr "Cég honlapja" msgstr "Cég honlapja"
@@ -1025,7 +1025,7 @@ msgstr ""
msgid "Contract" msgid "Contract"
msgstr "" msgstr ""
#: lms/lms/utils.py:442 #: lms/lms/utils.py:438
msgid "Cookie Policy" msgid "Cookie Policy"
msgstr "" msgstr ""
@@ -1047,7 +1047,7 @@ msgstr ""
msgid "Correct" msgid "Correct"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Question.vue:71 #: frontend/src/components/Modals/Question.vue:73
msgid "Correct Answer" msgid "Correct Answer"
msgstr "" msgstr ""
@@ -1218,7 +1218,7 @@ msgstr ""
msgid "Course Title" msgid "Course Title"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:226 #: frontend/src/pages/ProgramForm.vue:229
msgid "Course added to program" msgid "Course added to program"
msgstr "" msgstr ""
@@ -1230,7 +1230,7 @@ msgstr ""
msgid "Course deleted successfully" msgid "Course deleted successfully"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:295 #: frontend/src/pages/ProgramForm.vue:298
msgid "Course moved successfully" msgid "Course moved successfully"
msgstr "" msgstr ""
@@ -1270,7 +1270,7 @@ msgid "Cover Image"
msgstr "" msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:9 #: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/pages/Programs.vue:99 #: frontend/src/pages/Programs.vue:110
msgid "Create" msgid "Create"
msgstr "" msgstr ""
@@ -1446,7 +1446,7 @@ msgstr ""
#. Label of the description (Text) field in DocType 'LMS Live Class' #. Label of the description (Text) field in DocType 'LMS Live Class'
#. Label of the description (Small Text) field in DocType 'Work Experience' #. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:78 #: frontend/src/components/Modals/LiveClassModal.vue:78
#: frontend/src/pages/BatchForm.vue:96 frontend/src/pages/JobCreation.vue:43 #: frontend/src/pages/BatchForm.vue:96 frontend/src/pages/JobCreation.vue:50
#: 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
@@ -1527,7 +1527,7 @@ msgstr ""
msgid "Duration" msgid "Duration"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:62 #: frontend/src/pages/QuizForm.vue:63
msgid "Duration (in minutes)" msgid "Duration (in minutes)"
msgstr "" msgstr ""
@@ -1562,7 +1562,7 @@ msgstr ""
msgid "Edit Profile" msgid "Edit Profile"
msgstr "Profil szerkesztése" msgstr "Profil szerkesztése"
#: frontend/src/pages/QuizForm.vue:181 #: frontend/src/pages/QuizForm.vue:182
msgid "Edit the question" msgid "Edit the question"
msgstr "" msgstr ""
@@ -1693,7 +1693,7 @@ msgstr ""
msgid "Enrollment Count" msgid "Enrollment Count"
msgstr "" msgstr ""
#: lms/lms/utils.py:1705 #: lms/lms/utils.py:1702
msgid "Enrollment Failed" msgid "Enrollment Failed"
msgstr "" msgstr ""
@@ -1725,12 +1725,12 @@ msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:159 #: frontend/src/components/Modals/ChapterModal.vue:159
#: frontend/src/components/Modals/ChapterModal.vue:166 #: frontend/src/components/Modals/ChapterModal.vue:166
#: frontend/src/components/Modals/ChapterModal.vue:202 #: frontend/src/components/Modals/ChapterModal.vue:202
#: frontend/src/components/Modals/Question.vue:246 #: frontend/src/components/Modals/Question.vue:249
#: frontend/src/components/Modals/Question.vue:266 #: frontend/src/components/Modals/Question.vue:269
#: frontend/src/components/Modals/Question.vue:323 #: frontend/src/components/Modals/Question.vue:326
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350 #: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350
#: frontend/src/pages/QuizForm.vue:365 #: frontend/src/pages/QuizForm.vue:365
#: frontend/src/pages/QuizSubmission.vue:117 #: frontend/src/pages/QuizSubmission.vue:141
msgid "Error" msgid "Error"
msgstr "" msgstr ""
@@ -1858,7 +1858,7 @@ msgstr ""
#. Label of the explanation_1 (Small Text) field in DocType 'LMS Question' #. Label of the explanation_1 (Small Text) field in DocType 'LMS Question'
#. Label of the explanation_3 (Small Text) field in DocType 'LMS Question' #. Label of the explanation_3 (Small Text) field in DocType 'LMS Question'
#. Label of the explanation_4 (Small Text) field in DocType 'LMS Question' #. Label of the explanation_4 (Small Text) field in DocType 'LMS Question'
#: frontend/src/components/Modals/Question.vue:67 #: frontend/src/components/Modals/Question.vue:69
#: lms/lms/doctype/lms_question/lms_question.json #: lms/lms/doctype/lms_question/lms_question.json
msgid "Explanation" msgid "Explanation"
msgstr "" msgstr ""
@@ -2116,14 +2116,6 @@ msgstr ""
msgid "How to add a Quiz?" msgid "How to add a Quiz?"
msgstr "" msgstr ""
#: frontend/src/components/LessonHelp.vue:47
msgid "How to add a YouTube Video?"
msgstr ""
#: frontend/src/components/LessonHelp.vue:28
msgid "How to upload content from your system?"
msgstr ""
#. Label of the current (Check) field in DocType 'Work Experience' #. Label of the current (Check) field in DocType 'Work Experience'
#: lms/lms/doctype/work_experience/work_experience.json #: lms/lms/doctype/work_experience/work_experience.json
msgid "I am currently working here" msgid "I am currently working here"
@@ -2202,7 +2194,7 @@ msgstr ""
msgid "Image search powered by" msgid "Image search powered by"
msgstr "" msgstr ""
#: lms/lms/doctype/lms_quiz/lms_quiz.py:222 #: lms/lms/doctype/lms_quiz/lms_quiz.py:221
msgid "Image: Corrupted Data Stream" msgid "Image: Corrupted Data Stream"
msgstr "" msgstr ""
@@ -2388,7 +2380,7 @@ msgstr ""
msgid "Items in Sidebar" msgid "Items in Sidebar"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:269 #: frontend/src/pages/ProgramForm.vue:272
msgid "Items removed successfully" msgid "Items removed successfully"
msgstr "" msgstr ""
@@ -2757,7 +2749,7 @@ msgid "Letter Grade (e.g. A, B-)"
msgstr "" msgstr ""
#. Label of the limit_questions_to (Int) field in DocType 'LMS Quiz' #. Label of the limit_questions_to (Int) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:107 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:108 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Limit Questions To" msgid "Limit Questions To"
msgstr "" msgstr ""
@@ -2817,7 +2809,7 @@ msgstr ""
#. Label of the location (Data) field in DocType 'Job Opportunity' #. Label of the location (Data) field in DocType 'Job Opportunity'
#. Label of the location (Data) field in DocType 'Education Detail' #. Label of the location (Data) field in DocType 'Education Detail'
#. Label of the location (Data) field in DocType 'Work Experience' #. Label of the location (Data) field in DocType 'Work Experience'
#: frontend/src/pages/JobCreation.vue:23 frontend/src/pages/JobDetail.vue:89 #: frontend/src/pages/JobCreation.vue:26 frontend/src/pages/JobDetail.vue:89
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/education_detail/education_detail.json #: lms/lms/doctype/education_detail/education_detail.json
#: lms/lms/doctype/work_experience/work_experience.json #: lms/lms/doctype/work_experience/work_experience.json
@@ -2887,21 +2879,21 @@ msgstr ""
#. Label of the marks (Int) field in DocType 'LMS Quiz Question' #. Label of the marks (Int) field in DocType 'LMS Quiz Question'
#. Label of the marks (Int) field in DocType 'LMS Quiz Result' #. Label of the marks (Int) field in DocType 'LMS Quiz Result'
#: frontend/src/components/Modals/Question.vue:50 #: frontend/src/components/Modals/Question.vue:50
#: frontend/src/components/Modals/Question.vue:96 #: frontend/src/components/Modals/Question.vue:99
#: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:394 #: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:394
#: frontend/src/pages/QuizSubmission.vue:52 #: frontend/src/pages/QuizSubmission.vue:59
#: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json #: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json
#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json
#: lms/templates/quiz/quiz.html:59 #: lms/templates/quiz/quiz.html:59
msgid "Marks" msgid "Marks"
msgstr "" msgstr ""
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:19 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:23
msgid "Marks for question number {0} cannot be greater than the marks allotted for that question." msgid "Marks for question number {0} cannot be greater than the marks allotted for that question."
msgstr "" msgstr ""
#. Label of the marks_out_of (Int) field in DocType 'LMS Quiz Result' #. Label of the marks_out_of (Int) field in DocType 'LMS Quiz Result'
#: frontend/src/pages/QuizSubmission.vue:55 #: frontend/src/pages/QuizSubmission.vue:62
#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json
msgid "Marks out of" msgid "Marks out of"
msgstr "" msgstr ""
@@ -2911,7 +2903,7 @@ msgstr ""
msgid "Max Attempts" msgid "Max Attempts"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:57 #: frontend/src/pages/QuizForm.vue:58
msgid "Maximun Attempts" msgid "Maximun Attempts"
msgstr "" msgstr ""
@@ -2945,7 +2937,7 @@ msgstr "Közepes:"
#. Label of the member (Link) field in DocType 'LMS Payment' #. Label of the member (Link) field in DocType 'LMS Payment'
#. Label of the member (Link) field in DocType 'LMS Program Member' #. Label of the member (Link) field in DocType 'LMS Program Member'
#. Label of the member (Link) field in DocType 'LMS Quiz Submission' #. Label of the member (Link) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizSubmission.vue:27 #: frontend/src/pages/QuizSubmission.vue:31
#: frontend/src/pages/QuizSubmissionList.vue:77 #: frontend/src/pages/QuizSubmissionList.vue:77
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
#: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json
@@ -3008,7 +3000,7 @@ msgstr ""
msgid "Member Type" msgid "Member Type"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:248 #: frontend/src/pages/ProgramForm.vue:251
msgid "Member added to program" msgid "Member added to program"
msgstr "" msgstr ""
@@ -3173,19 +3165,19 @@ msgstr ""
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "" msgstr ""
#: frontend/src/pages/Programs.vue:96 #: frontend/src/pages/Programs.vue:107
msgid "New Program" msgid "New Program"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:132 #: frontend/src/pages/ProgramForm.vue:133
msgid "New Program Course" msgid "New Program Course"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:133 #: frontend/src/pages/ProgramForm.vue:134
msgid "New Program Member" msgid "New Program Member"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:122 #: frontend/src/pages/QuizForm.vue:123
msgid "New Question" msgid "New Question"
msgstr "" msgstr ""
@@ -3198,11 +3190,11 @@ msgstr ""
msgid "New Sign Up" msgid "New Sign Up"
msgstr "" msgstr ""
#: lms/lms/utils.py:627 #: lms/lms/utils.py:623
msgid "New comment in batch {0}" msgid "New comment in batch {0}"
msgstr "" msgstr ""
#: lms/lms/utils.py:620 #: lms/lms/utils.py:616
msgid "New reply on the topic {0} in course {1}" msgid "New reply on the topic {0} in course {1}"
msgstr "" msgstr ""
@@ -3256,7 +3248,7 @@ msgstr ""
msgid "No courses found" msgid "No courses found"
msgstr "" msgstr ""
#: frontend/src/pages/Programs.vue:72 #: frontend/src/pages/Programs.vue:83
msgid "No courses in this program" msgid "No courses in this program"
msgstr "" msgstr ""
@@ -3276,7 +3268,7 @@ msgstr ""
msgid "No live classes scheduled" msgid "No live classes scheduled"
msgstr "" msgstr ""
#: frontend/src/pages/Programs.vue:82 #: frontend/src/pages/Programs.vue:93
msgid "No programs found" msgid "No programs found"
msgstr "" msgstr ""
@@ -3388,7 +3380,7 @@ msgstr ""
msgid "Online" msgid "Online"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:156 #: frontend/src/pages/ProgramForm.vue:157
msgid "Only courses for which self learning is disabled can be added to program." msgid "Only courses for which self learning is disabled can be added to program."
msgstr "" msgstr ""
@@ -3396,7 +3388,7 @@ msgstr ""
msgid "Only files of type {0} will be accepted." msgid "Only files of type {0} will be accepted."
msgstr "" msgstr ""
#: frontend/src/pages/CourseForm.vue:497 frontend/src/utils/index.js:518 #: frontend/src/pages/CourseForm.vue:497 frontend/src/utils/index.js:520
msgid "Only image file is allowed." msgid "Only image file is allowed."
msgstr "" msgstr ""
@@ -3432,7 +3424,7 @@ msgid "Open Network"
msgstr "" msgstr ""
#. Label of the option (Data) field in DocType 'LMS Option' #. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:63 #: frontend/src/components/Modals/Question.vue:64
#: lms/lms/doctype/lms_option/lms_option.json #: lms/lms/doctype/lms_option/lms_option.json
msgid "Option" msgid "Option"
msgstr "" msgstr ""
@@ -3547,7 +3539,7 @@ msgstr ""
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz' #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz'
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission' #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizForm.vue:71 frontend/src/pages/Quizzes.vue:125 #: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:125
#: lms/lms/doctype/lms_quiz/lms_quiz.json #: lms/lms/doctype/lms_quiz/lms_quiz.json
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
msgid "Passing Percentage" msgid "Passing Percentage"
@@ -3641,7 +3633,7 @@ msgid "Pending"
msgstr "" msgstr ""
#. Label of the percentage (Int) field in DocType 'LMS Quiz Submission' #. Label of the percentage (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizSubmission.vue:40 #: frontend/src/pages/QuizSubmission.vue:44
#: frontend/src/pages/QuizSubmissionList.vue:93 #: frontend/src/pages/QuizSubmissionList.vue:93
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
msgid "Percentage" msgid "Percentage"
@@ -3676,7 +3668,7 @@ msgstr "Kérjük, ellenőrizze e-mail a vizsgálathoz"
msgid "Please click on the following button to set your new password" msgid "Please click on the following button to set your new password"
msgstr "" msgstr ""
#: lms/lms/utils.py:1817 lms/lms/utils.py:1821 #: lms/lms/utils.py:1824 lms/lms/utils.py:1828
msgid "Please complete the previous courses in the program to enroll in this course." msgid "Please complete the previous courses in the program to enroll in this course."
msgstr "" msgstr ""
@@ -3779,7 +3771,7 @@ msgstr ""
msgid "Point of Score (e.g. 70)" msgid "Point of Score (e.g. 70)"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Question.vue:83 #: frontend/src/components/Modals/Question.vue:85
msgid "Possibility" msgid "Possibility"
msgstr "" msgstr ""
@@ -3875,7 +3867,7 @@ msgstr ""
msgid "Primary Subgroup" msgid "Primary Subgroup"
msgstr "" msgstr ""
#: lms/lms/utils.py:441 #: lms/lms/utils.py:437
msgid "Privacy Policy" msgid "Privacy Policy"
msgstr "" msgstr ""
@@ -3903,7 +3895,7 @@ msgstr ""
msgid "Profile Image" msgid "Profile Image"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:154 #: frontend/src/pages/ProgramForm.vue:155
msgid "Program Course" msgid "Program Course"
msgstr "" msgstr ""
@@ -3913,12 +3905,12 @@ msgstr ""
msgid "Program Courses" msgid "Program Courses"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:169 #: frontend/src/pages/ProgramForm.vue:170
msgid "Program Member" msgid "Program Member"
msgstr "" msgstr ""
#. Label of the program_members (Table) field in DocType 'LMS Program' #. Label of the program_members (Table) field in DocType 'LMS Program'
#: frontend/src/pages/ProgramForm.vue:78 #: frontend/src/pages/ProgramForm.vue:79
#: lms/lms/doctype/lms_program/lms_program.json #: lms/lms/doctype/lms_program/lms_program.json
msgid "Program Members" msgid "Program Members"
msgstr "" msgstr ""
@@ -4001,11 +3993,11 @@ msgstr ""
msgid "Question Name" msgid "Question Name"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Question.vue:261 #: frontend/src/components/Modals/Question.vue:264
msgid "Question added successfully" msgid "Question added successfully"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Question.vue:313 #: frontend/src/components/Modals/Question.vue:316
msgid "Question updated successfully" msgid "Question updated successfully"
msgstr "" msgstr ""
@@ -4018,7 +4010,7 @@ msgid "Question {0} of {1}"
msgstr "" msgstr ""
#. Label of the questions (Table) field in DocType 'LMS Quiz' #. Label of the questions (Table) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:116 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:117 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Questions" msgid "Questions"
msgstr "" msgstr ""
@@ -4028,7 +4020,7 @@ msgstr ""
#. Label of the quiz (Link) field in DocType 'LMS Quiz Submission' #. Label of the quiz (Link) field in DocType 'LMS Quiz Submission'
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#: frontend/src/pages/QuizSubmission.vue:22 #: frontend/src/pages/QuizSubmission.vue:26
#: frontend/src/pages/QuizSubmissionList.vue:82 frontend/src/utils/quiz.js:24 #: frontend/src/pages/QuizSubmissionList.vue:82 frontend/src/utils/quiz.js:24
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
#: lms/lms/workspace/lms/lms.json #: lms/lms/workspace/lms/lms.json
@@ -4046,7 +4038,7 @@ msgstr ""
msgid "Quiz Submission" msgid "Quiz Submission"
msgstr "" msgstr ""
#: frontend/src/pages/QuizSubmission.vue:98 #: frontend/src/pages/QuizSubmission.vue:122
#: frontend/src/pages/QuizSubmissionList.vue:102 #: frontend/src/pages/QuizSubmissionList.vue:102
msgid "Quiz Submissions" msgid "Quiz Submissions"
msgstr "" msgstr ""
@@ -4315,7 +4307,7 @@ msgid "Scope"
msgstr "terület" msgstr "terület"
#. Label of the score (Int) field in DocType 'LMS Quiz Submission' #. Label of the score (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizSubmission.vue:35 #: frontend/src/pages/QuizSubmission.vue:39
#: frontend/src/pages/QuizSubmissionList.vue:87 #: frontend/src/pages/QuizSubmissionList.vue:87
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
#: lms/templates/quiz/quiz.html:148 #: lms/templates/quiz/quiz.html:148
@@ -4352,7 +4344,7 @@ msgstr ""
msgid "Seats Left" msgid "Seats Left"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Question.vue:91 #: frontend/src/components/Modals/Question.vue:94
msgid "Select a question" msgid "Select a question"
msgstr "" msgstr ""
@@ -4381,7 +4373,7 @@ msgstr ""
#: frontend/src/components/Modals/Settings.vue:7 #: frontend/src/components/Modals/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:165 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:79
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
@@ -4405,12 +4397,12 @@ msgid "Show Answer"
msgstr "" msgstr ""
#. Label of the show_answers (Check) field in DocType 'LMS Quiz' #. Label of the show_answers (Check) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:84 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:85 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Show Answers" msgid "Show Answers"
msgstr "" msgstr ""
#. Label of the show_submission_history (Check) field in DocType 'LMS Quiz' #. Label of the show_submission_history (Check) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:89 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:90 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Show Submission History" msgid "Show Submission History"
msgstr "" msgstr ""
@@ -4435,11 +4427,11 @@ msgid "Show live class"
msgstr "" msgstr ""
#. Label of the shuffle_questions (Check) field in DocType 'LMS Quiz' #. Label of the shuffle_questions (Check) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:102 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:103 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Shuffle Questions" msgid "Shuffle Questions"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:96 #: frontend/src/pages/QuizForm.vue:97
msgid "Shuffle Settings" msgid "Shuffle Settings"
msgstr "" msgstr ""
@@ -4635,7 +4627,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Course Progress' #. Label of the status (Select) field in DocType 'LMS Course Progress'
#. Label of the status (Select) field in DocType 'LMS Mentor Request' #. Label of the status (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:91 #: frontend/src/components/Modals/Event.vue:91
#: frontend/src/pages/JobCreation.vue:35 #: frontend/src/pages/JobCreation.vue:41
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_join_request/cohort_join_request.json #: lms/lms/doctype/cohort_join_request/cohort_join_request.json
@@ -4727,7 +4719,7 @@ msgstr ""
#: frontend/src/components/Modals/AssessmentModal.vue:9 #: frontend/src/components/Modals/AssessmentModal.vue:9
#: frontend/src/components/Modals/BatchCourseModal.vue:9 #: frontend/src/components/Modals/BatchCourseModal.vue:9
#: frontend/src/components/Modals/EvaluationModal.vue:9 #: frontend/src/components/Modals/EvaluationModal.vue:9
#: frontend/src/components/Modals/Question.vue:335 #: frontend/src/components/Modals/Question.vue:338
#: frontend/src/components/Quiz.vue:214 lms/templates/assignment.html:9 #: frontend/src/components/Quiz.vue:214 lms/templates/assignment.html:9
#: lms/templates/livecode/extension_footer.html:25 #: lms/templates/livecode/extension_footer.html:25
#: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163 #: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163
@@ -4754,12 +4746,12 @@ msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:198 #: frontend/src/components/Modals/ChapterModal.vue:198
#: 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:264
#: frontend/src/components/Modals/Question.vue:312 #: frontend/src/components/Modals/Question.vue:315
#: frontend/src/pages/CourseForm.vue:460 frontend/src/pages/ProgramForm.vue:226 #: frontend/src/pages/CourseForm.vue:460 frontend/src/pages/ProgramForm.vue:229
#: frontend/src/pages/ProgramForm.vue:248 #: frontend/src/pages/ProgramForm.vue:251
#: frontend/src/pages/ProgramForm.vue:269 #: frontend/src/pages/ProgramForm.vue:272
#: frontend/src/pages/ProgramForm.vue:295 frontend/src/pages/QuizForm.vue:343 #: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:343
#: frontend/src/pages/QuizForm.vue:362 frontend/src/pages/QuizForm.vue:431 #: frontend/src/pages/QuizForm.vue:362 frontend/src/pages/QuizForm.vue:431
msgid "Success" msgid "Success"
msgstr "" msgstr ""
@@ -4856,7 +4848,7 @@ msgstr ""
msgid "Temporarily Disabled" msgid "Temporarily Disabled"
msgstr "Átmenetileg letiltva" msgstr "Átmenetileg letiltva"
#: lms/lms/utils.py:440 #: lms/lms/utils.py:436
msgid "Terms of Use" msgid "Terms of Use"
msgstr "" msgstr ""
@@ -4920,7 +4912,7 @@ msgstr ""
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!" msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr "" msgstr ""
#: frontend/src/pages/Programs.vue:86 #: frontend/src/pages/Programs.vue:97
msgid "There are no programs available at the moment. Keep an eye out, fresh learning experiences are on the way soon!" msgid "There are no programs available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr "" msgstr ""
@@ -4936,6 +4928,10 @@ msgstr ""
msgid "There are no {0} on this site." msgid "There are no {0} on this site."
msgstr "" msgstr ""
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:41
msgid "There has been an update on your submission. You have got a score of {0} for the quiz {1}"
msgstr ""
#. Description of the 'section_break_ubxi' (Section Break) field in DocType #. Description of the 'section_break_ubxi' (Section Break) field in DocType
#. 'LMS Batch' #. 'LMS Batch'
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
@@ -4955,7 +4951,7 @@ msgstr ""
msgid "This course has:" msgid "This course has:"
msgstr "" msgstr ""
#: lms/lms/utils.py:1585 #: lms/lms/utils.py:1582
msgid "This course is free." msgid "This course is free."
msgstr "" msgstr ""
@@ -5060,7 +5056,7 @@ msgstr ""
#: frontend/src/components/Modals/LiveClassModal.vue:23 #: frontend/src/components/Modals/LiveClassModal.vue:23
#: frontend/src/pages/BatchForm.vue:20 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/ProgramForm.vue:11 #: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/ProgramForm.vue:11
#: frontend/src/pages/Programs.vue:107 frontend/src/pages/QuizForm.vue:48 #: frontend/src/pages/Programs.vue:118 frontend/src/pages/QuizForm.vue:48
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json #: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json
@@ -5097,7 +5093,7 @@ msgstr ""
msgid "To Date" msgid "To Date"
msgstr "" msgstr ""
#: lms/lms/utils.py:1596 #: 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 ""
@@ -5114,7 +5110,7 @@ msgid "Total"
msgstr "" msgstr ""
#. Label of the total_marks (Int) field in DocType 'LMS Quiz' #. Label of the total_marks (Int) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:66 frontend/src/pages/Quizzes.vue:119 #: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:119
#: lms/lms/doctype/lms_quiz/lms_quiz.json #: lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Total Marks" msgid "Total Marks"
msgstr "" msgstr ""
@@ -5151,7 +5147,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/Jobs.vue:16 #: frontend/src/pages/JobCreation.vue:33 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
@@ -5515,6 +5511,10 @@ msgstr ""
msgid "You have been enrolled in this course" msgid "You have been enrolled in this course"
msgstr "" msgstr ""
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:38
msgid "You have got a score of {0} for the quiz {1}"
msgstr ""
#: frontend/src/pages/Quizzes.vue:60 #: frontend/src/pages/Quizzes.vue:60
msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above." msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above."
msgstr "" msgstr ""
@@ -5685,7 +5685,7 @@ msgstr ""
msgid "{0} is your evaluator" msgid "{0} is your evaluator"
msgstr "" msgstr ""
#: lms/lms/utils.py:704 #: lms/lms/utils.py:700
msgid "{0} mentioned you in a comment" msgid "{0} mentioned you in a comment"
msgstr "" msgstr ""
@@ -5693,11 +5693,11 @@ msgstr ""
msgid "{0} mentioned you in a comment in your batch." msgid "{0} mentioned you in a comment in your batch."
msgstr "" msgstr ""
#: lms/lms/utils.py:657 lms/lms/utils.py:663 #: lms/lms/utils.py:653 lms/lms/utils.py:659
msgid "{0} mentioned you in a comment in {1}" msgid "{0} mentioned you in a comment in {1}"
msgstr "" msgstr ""
#: lms/lms/utils.py:480 #: lms/lms/utils.py:476
msgid "{0}k" msgid "{0}k"
msgstr "" msgstr ""

View File

@@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Frappe LMS VERSION\n" "Project-Id-Version: Frappe LMS VERSION\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-11-22 16:05+0000\n" "POT-Creation-Date: 2024-11-29 16:04+0000\n"
"PO-Revision-Date: 2024-11-22 16:05+0000\n" "PO-Revision-Date: 2024-11-29 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"
@@ -103,7 +103,7 @@ msgstr ""
#: frontend/src/components/Categories.vue:26 #: frontend/src/components/Categories.vue:26
#: frontend/src/components/LiveClass.vue:11 #: frontend/src/components/LiveClass.vue:11
#: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30 #: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30
#: frontend/src/pages/ProgramForm.vue:91 frontend/src/pages/ProgramForm.vue:136 #: frontend/src/pages/ProgramForm.vue:92 frontend/src/pages/ProgramForm.vue:137
msgid "Add" msgid "Add"
msgstr "" msgstr ""
@@ -145,8 +145,8 @@ msgstr ""
msgid "Add a lesson" msgid "Add a lesson"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Question.vue:141 #: frontend/src/components/Modals/Question.vue:144
#: frontend/src/pages/QuizForm.vue:182 #: frontend/src/pages/QuizForm.vue:183
msgid "Add a new question" msgid "Add a new question"
msgstr "" msgstr ""
@@ -920,25 +920,25 @@ msgstr ""
#. Label of the company_details_section (Section Break) field in DocType 'Job #. Label of the company_details_section (Section Break) field in DocType 'Job
#. Opportunity' #. Opportunity'
#: frontend/src/pages/JobCreation.vue:56 #: frontend/src/pages/JobCreation.vue:64
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Details" msgid "Company Details"
msgstr "" msgstr ""
#. Label of the company_email_address (Data) field in DocType 'Job Opportunity' #. Label of the company_email_address (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobCreation.vue:73 #: frontend/src/pages/JobCreation.vue:83
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Email Address" msgid "Company Email Address"
msgstr "" msgstr ""
#. Label of the company_logo (Attach Image) field in DocType 'Job Opportunity' #. Label of the company_logo (Attach Image) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobCreation.vue:77 #: frontend/src/pages/JobCreation.vue:88
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Logo" msgid "Company Logo"
msgstr "" msgstr ""
#. Label of the company_name (Data) field in DocType 'Job Opportunity' #. Label of the company_name (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobCreation.vue:62 #: frontend/src/pages/JobCreation.vue:70
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Name" msgid "Company Name"
msgstr "" msgstr ""
@@ -949,7 +949,7 @@ msgid "Company Type"
msgstr "" msgstr ""
#. Label of the company_website (Data) field in DocType 'Job Opportunity' #. Label of the company_website (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobCreation.vue:67 #: frontend/src/pages/JobCreation.vue:76
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Website" msgid "Company Website"
msgstr "" msgstr ""
@@ -1023,7 +1023,7 @@ msgstr ""
msgid "Contract" msgid "Contract"
msgstr "" msgstr ""
#: lms/lms/utils.py:442 #: lms/lms/utils.py:438
msgid "Cookie Policy" msgid "Cookie Policy"
msgstr "" msgstr ""
@@ -1045,7 +1045,7 @@ msgstr ""
msgid "Correct" msgid "Correct"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Question.vue:71 #: frontend/src/components/Modals/Question.vue:73
msgid "Correct Answer" msgid "Correct Answer"
msgstr "" msgstr ""
@@ -1216,7 +1216,7 @@ msgstr ""
msgid "Course Title" msgid "Course Title"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:226 #: frontend/src/pages/ProgramForm.vue:229
msgid "Course added to program" msgid "Course added to program"
msgstr "" msgstr ""
@@ -1228,7 +1228,7 @@ msgstr ""
msgid "Course deleted successfully" msgid "Course deleted successfully"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:295 #: frontend/src/pages/ProgramForm.vue:298
msgid "Course moved successfully" msgid "Course moved successfully"
msgstr "" msgstr ""
@@ -1268,7 +1268,7 @@ msgid "Cover Image"
msgstr "" msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:9 #: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/pages/Programs.vue:99 #: frontend/src/pages/Programs.vue:110
msgid "Create" msgid "Create"
msgstr "" msgstr ""
@@ -1444,7 +1444,7 @@ msgstr ""
#. Label of the description (Text) field in DocType 'LMS Live Class' #. Label of the description (Text) field in DocType 'LMS Live Class'
#. Label of the description (Small Text) field in DocType 'Work Experience' #. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:78 #: frontend/src/components/Modals/LiveClassModal.vue:78
#: frontend/src/pages/BatchForm.vue:96 frontend/src/pages/JobCreation.vue:43 #: frontend/src/pages/BatchForm.vue:96 frontend/src/pages/JobCreation.vue:50
#: 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
@@ -1525,7 +1525,7 @@ msgstr ""
msgid "Duration" msgid "Duration"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:62 #: frontend/src/pages/QuizForm.vue:63
msgid "Duration (in minutes)" msgid "Duration (in minutes)"
msgstr "" msgstr ""
@@ -1560,7 +1560,7 @@ msgstr ""
msgid "Edit Profile" msgid "Edit Profile"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:181 #: frontend/src/pages/QuizForm.vue:182
msgid "Edit the question" msgid "Edit the question"
msgstr "" msgstr ""
@@ -1691,7 +1691,7 @@ msgstr ""
msgid "Enrollment Count" msgid "Enrollment Count"
msgstr "" msgstr ""
#: lms/lms/utils.py:1705 #: lms/lms/utils.py:1702
msgid "Enrollment Failed" msgid "Enrollment Failed"
msgstr "" msgstr ""
@@ -1723,12 +1723,12 @@ msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:159 #: frontend/src/components/Modals/ChapterModal.vue:159
#: frontend/src/components/Modals/ChapterModal.vue:166 #: frontend/src/components/Modals/ChapterModal.vue:166
#: frontend/src/components/Modals/ChapterModal.vue:202 #: frontend/src/components/Modals/ChapterModal.vue:202
#: frontend/src/components/Modals/Question.vue:246 #: frontend/src/components/Modals/Question.vue:249
#: frontend/src/components/Modals/Question.vue:266 #: frontend/src/components/Modals/Question.vue:269
#: frontend/src/components/Modals/Question.vue:323 #: frontend/src/components/Modals/Question.vue:326
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350 #: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350
#: frontend/src/pages/QuizForm.vue:365 #: frontend/src/pages/QuizForm.vue:365
#: frontend/src/pages/QuizSubmission.vue:117 #: frontend/src/pages/QuizSubmission.vue:141
msgid "Error" msgid "Error"
msgstr "" msgstr ""
@@ -1856,7 +1856,7 @@ msgstr ""
#. Label of the explanation_1 (Small Text) field in DocType 'LMS Question' #. Label of the explanation_1 (Small Text) field in DocType 'LMS Question'
#. Label of the explanation_3 (Small Text) field in DocType 'LMS Question' #. Label of the explanation_3 (Small Text) field in DocType 'LMS Question'
#. Label of the explanation_4 (Small Text) field in DocType 'LMS Question' #. Label of the explanation_4 (Small Text) field in DocType 'LMS Question'
#: frontend/src/components/Modals/Question.vue:67 #: frontend/src/components/Modals/Question.vue:69
#: lms/lms/doctype/lms_question/lms_question.json #: lms/lms/doctype/lms_question/lms_question.json
msgid "Explanation" msgid "Explanation"
msgstr "" msgstr ""
@@ -2114,14 +2114,6 @@ msgstr ""
msgid "How to add a Quiz?" msgid "How to add a Quiz?"
msgstr "" msgstr ""
#: frontend/src/components/LessonHelp.vue:47
msgid "How to add a YouTube Video?"
msgstr ""
#: frontend/src/components/LessonHelp.vue:28
msgid "How to upload content from your system?"
msgstr ""
#. Label of the current (Check) field in DocType 'Work Experience' #. Label of the current (Check) field in DocType 'Work Experience'
#: lms/lms/doctype/work_experience/work_experience.json #: lms/lms/doctype/work_experience/work_experience.json
msgid "I am currently working here" msgid "I am currently working here"
@@ -2200,7 +2192,7 @@ msgstr ""
msgid "Image search powered by" msgid "Image search powered by"
msgstr "" msgstr ""
#: lms/lms/doctype/lms_quiz/lms_quiz.py:222 #: lms/lms/doctype/lms_quiz/lms_quiz.py:221
msgid "Image: Corrupted Data Stream" msgid "Image: Corrupted Data Stream"
msgstr "" msgstr ""
@@ -2386,7 +2378,7 @@ msgstr ""
msgid "Items in Sidebar" msgid "Items in Sidebar"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:269 #: frontend/src/pages/ProgramForm.vue:272
msgid "Items removed successfully" msgid "Items removed successfully"
msgstr "" msgstr ""
@@ -2755,7 +2747,7 @@ msgid "Letter Grade (e.g. A, B-)"
msgstr "" msgstr ""
#. Label of the limit_questions_to (Int) field in DocType 'LMS Quiz' #. Label of the limit_questions_to (Int) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:107 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:108 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Limit Questions To" msgid "Limit Questions To"
msgstr "" msgstr ""
@@ -2815,7 +2807,7 @@ msgstr ""
#. Label of the location (Data) field in DocType 'Job Opportunity' #. Label of the location (Data) field in DocType 'Job Opportunity'
#. Label of the location (Data) field in DocType 'Education Detail' #. Label of the location (Data) field in DocType 'Education Detail'
#. Label of the location (Data) field in DocType 'Work Experience' #. Label of the location (Data) field in DocType 'Work Experience'
#: frontend/src/pages/JobCreation.vue:23 frontend/src/pages/JobDetail.vue:89 #: frontend/src/pages/JobCreation.vue:26 frontend/src/pages/JobDetail.vue:89
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/education_detail/education_detail.json #: lms/lms/doctype/education_detail/education_detail.json
#: lms/lms/doctype/work_experience/work_experience.json #: lms/lms/doctype/work_experience/work_experience.json
@@ -2885,21 +2877,21 @@ msgstr ""
#. Label of the marks (Int) field in DocType 'LMS Quiz Question' #. Label of the marks (Int) field in DocType 'LMS Quiz Question'
#. Label of the marks (Int) field in DocType 'LMS Quiz Result' #. Label of the marks (Int) field in DocType 'LMS Quiz Result'
#: frontend/src/components/Modals/Question.vue:50 #: frontend/src/components/Modals/Question.vue:50
#: frontend/src/components/Modals/Question.vue:96 #: frontend/src/components/Modals/Question.vue:99
#: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:394 #: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:394
#: frontend/src/pages/QuizSubmission.vue:52 #: frontend/src/pages/QuizSubmission.vue:59
#: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json #: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json
#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json
#: lms/templates/quiz/quiz.html:59 #: lms/templates/quiz/quiz.html:59
msgid "Marks" msgid "Marks"
msgstr "" msgstr ""
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:19 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:23
msgid "Marks for question number {0} cannot be greater than the marks allotted for that question." msgid "Marks for question number {0} cannot be greater than the marks allotted for that question."
msgstr "" msgstr ""
#. Label of the marks_out_of (Int) field in DocType 'LMS Quiz Result' #. Label of the marks_out_of (Int) field in DocType 'LMS Quiz Result'
#: frontend/src/pages/QuizSubmission.vue:55 #: frontend/src/pages/QuizSubmission.vue:62
#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json
msgid "Marks out of" msgid "Marks out of"
msgstr "" msgstr ""
@@ -2909,7 +2901,7 @@ msgstr ""
msgid "Max Attempts" msgid "Max Attempts"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:57 #: frontend/src/pages/QuizForm.vue:58
msgid "Maximun Attempts" msgid "Maximun Attempts"
msgstr "" msgstr ""
@@ -2943,7 +2935,7 @@ msgstr ""
#. Label of the member (Link) field in DocType 'LMS Payment' #. Label of the member (Link) field in DocType 'LMS Payment'
#. Label of the member (Link) field in DocType 'LMS Program Member' #. Label of the member (Link) field in DocType 'LMS Program Member'
#. Label of the member (Link) field in DocType 'LMS Quiz Submission' #. Label of the member (Link) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizSubmission.vue:27 #: frontend/src/pages/QuizSubmission.vue:31
#: frontend/src/pages/QuizSubmissionList.vue:77 #: frontend/src/pages/QuizSubmissionList.vue:77
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
#: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json
@@ -3006,7 +2998,7 @@ msgstr ""
msgid "Member Type" msgid "Member Type"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:248 #: frontend/src/pages/ProgramForm.vue:251
msgid "Member added to program" msgid "Member added to program"
msgstr "" msgstr ""
@@ -3171,19 +3163,19 @@ msgstr ""
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "" msgstr ""
#: frontend/src/pages/Programs.vue:96 #: frontend/src/pages/Programs.vue:107
msgid "New Program" msgid "New Program"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:132 #: frontend/src/pages/ProgramForm.vue:133
msgid "New Program Course" msgid "New Program Course"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:133 #: frontend/src/pages/ProgramForm.vue:134
msgid "New Program Member" msgid "New Program Member"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:122 #: frontend/src/pages/QuizForm.vue:123
msgid "New Question" msgid "New Question"
msgstr "" msgstr ""
@@ -3196,11 +3188,11 @@ msgstr ""
msgid "New Sign Up" msgid "New Sign Up"
msgstr "" msgstr ""
#: lms/lms/utils.py:627 #: lms/lms/utils.py:623
msgid "New comment in batch {0}" msgid "New comment in batch {0}"
msgstr "" msgstr ""
#: lms/lms/utils.py:620 #: lms/lms/utils.py:616
msgid "New reply on the topic {0} in course {1}" msgid "New reply on the topic {0} in course {1}"
msgstr "" msgstr ""
@@ -3254,7 +3246,7 @@ msgstr ""
msgid "No courses found" msgid "No courses found"
msgstr "" msgstr ""
#: frontend/src/pages/Programs.vue:72 #: frontend/src/pages/Programs.vue:83
msgid "No courses in this program" msgid "No courses in this program"
msgstr "" msgstr ""
@@ -3274,7 +3266,7 @@ msgstr ""
msgid "No live classes scheduled" msgid "No live classes scheduled"
msgstr "" msgstr ""
#: frontend/src/pages/Programs.vue:82 #: frontend/src/pages/Programs.vue:93
msgid "No programs found" msgid "No programs found"
msgstr "" msgstr ""
@@ -3386,7 +3378,7 @@ msgstr ""
msgid "Online" msgid "Online"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:156 #: frontend/src/pages/ProgramForm.vue:157
msgid "Only courses for which self learning is disabled can be added to program." msgid "Only courses for which self learning is disabled can be added to program."
msgstr "" msgstr ""
@@ -3394,7 +3386,7 @@ msgstr ""
msgid "Only files of type {0} will be accepted." msgid "Only files of type {0} will be accepted."
msgstr "" msgstr ""
#: frontend/src/pages/CourseForm.vue:497 frontend/src/utils/index.js:518 #: frontend/src/pages/CourseForm.vue:497 frontend/src/utils/index.js:520
msgid "Only image file is allowed." msgid "Only image file is allowed."
msgstr "" msgstr ""
@@ -3430,7 +3422,7 @@ msgid "Open Network"
msgstr "" msgstr ""
#. Label of the option (Data) field in DocType 'LMS Option' #. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:63 #: frontend/src/components/Modals/Question.vue:64
#: lms/lms/doctype/lms_option/lms_option.json #: lms/lms/doctype/lms_option/lms_option.json
msgid "Option" msgid "Option"
msgstr "" msgstr ""
@@ -3545,7 +3537,7 @@ msgstr ""
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz' #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz'
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission' #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizForm.vue:71 frontend/src/pages/Quizzes.vue:125 #: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:125
#: lms/lms/doctype/lms_quiz/lms_quiz.json #: lms/lms/doctype/lms_quiz/lms_quiz.json
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
msgid "Passing Percentage" msgid "Passing Percentage"
@@ -3639,7 +3631,7 @@ msgid "Pending"
msgstr "" msgstr ""
#. Label of the percentage (Int) field in DocType 'LMS Quiz Submission' #. Label of the percentage (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizSubmission.vue:40 #: frontend/src/pages/QuizSubmission.vue:44
#: frontend/src/pages/QuizSubmissionList.vue:93 #: frontend/src/pages/QuizSubmissionList.vue:93
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
msgid "Percentage" msgid "Percentage"
@@ -3674,7 +3666,7 @@ msgstr ""
msgid "Please click on the following button to set your new password" msgid "Please click on the following button to set your new password"
msgstr "" msgstr ""
#: lms/lms/utils.py:1817 lms/lms/utils.py:1821 #: lms/lms/utils.py:1824 lms/lms/utils.py:1828
msgid "Please complete the previous courses in the program to enroll in this course." msgid "Please complete the previous courses in the program to enroll in this course."
msgstr "" msgstr ""
@@ -3777,7 +3769,7 @@ msgstr ""
msgid "Point of Score (e.g. 70)" msgid "Point of Score (e.g. 70)"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Question.vue:83 #: frontend/src/components/Modals/Question.vue:85
msgid "Possibility" msgid "Possibility"
msgstr "" msgstr ""
@@ -3873,7 +3865,7 @@ msgstr ""
msgid "Primary Subgroup" msgid "Primary Subgroup"
msgstr "" msgstr ""
#: lms/lms/utils.py:441 #: lms/lms/utils.py:437
msgid "Privacy Policy" msgid "Privacy Policy"
msgstr "" msgstr ""
@@ -3901,7 +3893,7 @@ msgstr ""
msgid "Profile Image" msgid "Profile Image"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:154 #: frontend/src/pages/ProgramForm.vue:155
msgid "Program Course" msgid "Program Course"
msgstr "" msgstr ""
@@ -3911,12 +3903,12 @@ msgstr ""
msgid "Program Courses" msgid "Program Courses"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:169 #: frontend/src/pages/ProgramForm.vue:170
msgid "Program Member" msgid "Program Member"
msgstr "" msgstr ""
#. Label of the program_members (Table) field in DocType 'LMS Program' #. Label of the program_members (Table) field in DocType 'LMS Program'
#: frontend/src/pages/ProgramForm.vue:78 #: frontend/src/pages/ProgramForm.vue:79
#: lms/lms/doctype/lms_program/lms_program.json #: lms/lms/doctype/lms_program/lms_program.json
msgid "Program Members" msgid "Program Members"
msgstr "" msgstr ""
@@ -3999,11 +3991,11 @@ msgstr ""
msgid "Question Name" msgid "Question Name"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Question.vue:261 #: frontend/src/components/Modals/Question.vue:264
msgid "Question added successfully" msgid "Question added successfully"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Question.vue:313 #: frontend/src/components/Modals/Question.vue:316
msgid "Question updated successfully" msgid "Question updated successfully"
msgstr "" msgstr ""
@@ -4016,7 +4008,7 @@ msgid "Question {0} of {1}"
msgstr "" msgstr ""
#. Label of the questions (Table) field in DocType 'LMS Quiz' #. Label of the questions (Table) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:116 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:117 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Questions" msgid "Questions"
msgstr "" msgstr ""
@@ -4026,7 +4018,7 @@ msgstr ""
#. Label of the quiz (Link) field in DocType 'LMS Quiz Submission' #. Label of the quiz (Link) field in DocType 'LMS Quiz Submission'
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#: frontend/src/pages/QuizSubmission.vue:22 #: frontend/src/pages/QuizSubmission.vue:26
#: frontend/src/pages/QuizSubmissionList.vue:82 frontend/src/utils/quiz.js:24 #: frontend/src/pages/QuizSubmissionList.vue:82 frontend/src/utils/quiz.js:24
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
#: lms/lms/workspace/lms/lms.json #: lms/lms/workspace/lms/lms.json
@@ -4044,7 +4036,7 @@ msgstr ""
msgid "Quiz Submission" msgid "Quiz Submission"
msgstr "" msgstr ""
#: frontend/src/pages/QuizSubmission.vue:98 #: frontend/src/pages/QuizSubmission.vue:122
#: frontend/src/pages/QuizSubmissionList.vue:102 #: frontend/src/pages/QuizSubmissionList.vue:102
msgid "Quiz Submissions" msgid "Quiz Submissions"
msgstr "" msgstr ""
@@ -4313,7 +4305,7 @@ msgid "Scope"
msgstr "" msgstr ""
#. Label of the score (Int) field in DocType 'LMS Quiz Submission' #. Label of the score (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizSubmission.vue:35 #: frontend/src/pages/QuizSubmission.vue:39
#: frontend/src/pages/QuizSubmissionList.vue:87 #: frontend/src/pages/QuizSubmissionList.vue:87
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
#: lms/templates/quiz/quiz.html:148 #: lms/templates/quiz/quiz.html:148
@@ -4350,7 +4342,7 @@ msgstr ""
msgid "Seats Left" msgid "Seats Left"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Question.vue:91 #: frontend/src/components/Modals/Question.vue:94
msgid "Select a question" msgid "Select a question"
msgstr "" msgstr ""
@@ -4379,7 +4371,7 @@ msgstr ""
#: frontend/src/components/Modals/Settings.vue:7 #: frontend/src/components/Modals/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:165 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:79
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
@@ -4403,12 +4395,12 @@ msgid "Show Answer"
msgstr "" msgstr ""
#. Label of the show_answers (Check) field in DocType 'LMS Quiz' #. Label of the show_answers (Check) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:84 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:85 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Show Answers" msgid "Show Answers"
msgstr "" msgstr ""
#. Label of the show_submission_history (Check) field in DocType 'LMS Quiz' #. Label of the show_submission_history (Check) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:89 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:90 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Show Submission History" msgid "Show Submission History"
msgstr "" msgstr ""
@@ -4433,11 +4425,11 @@ msgid "Show live class"
msgstr "" msgstr ""
#. Label of the shuffle_questions (Check) field in DocType 'LMS Quiz' #. Label of the shuffle_questions (Check) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:102 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:103 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Shuffle Questions" msgid "Shuffle Questions"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:96 #: frontend/src/pages/QuizForm.vue:97
msgid "Shuffle Settings" msgid "Shuffle Settings"
msgstr "" msgstr ""
@@ -4633,7 +4625,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Course Progress' #. Label of the status (Select) field in DocType 'LMS Course Progress'
#. Label of the status (Select) field in DocType 'LMS Mentor Request' #. Label of the status (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:91 #: frontend/src/components/Modals/Event.vue:91
#: frontend/src/pages/JobCreation.vue:35 #: frontend/src/pages/JobCreation.vue:41
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_join_request/cohort_join_request.json #: lms/lms/doctype/cohort_join_request/cohort_join_request.json
@@ -4725,7 +4717,7 @@ msgstr ""
#: frontend/src/components/Modals/AssessmentModal.vue:9 #: frontend/src/components/Modals/AssessmentModal.vue:9
#: frontend/src/components/Modals/BatchCourseModal.vue:9 #: frontend/src/components/Modals/BatchCourseModal.vue:9
#: frontend/src/components/Modals/EvaluationModal.vue:9 #: frontend/src/components/Modals/EvaluationModal.vue:9
#: frontend/src/components/Modals/Question.vue:335 #: frontend/src/components/Modals/Question.vue:338
#: frontend/src/components/Quiz.vue:214 lms/templates/assignment.html:9 #: frontend/src/components/Quiz.vue:214 lms/templates/assignment.html:9
#: lms/templates/livecode/extension_footer.html:25 #: lms/templates/livecode/extension_footer.html:25
#: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163 #: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163
@@ -4752,12 +4744,12 @@ msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:198 #: frontend/src/components/Modals/ChapterModal.vue:198
#: 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:264
#: frontend/src/components/Modals/Question.vue:312 #: frontend/src/components/Modals/Question.vue:315
#: frontend/src/pages/CourseForm.vue:460 frontend/src/pages/ProgramForm.vue:226 #: frontend/src/pages/CourseForm.vue:460 frontend/src/pages/ProgramForm.vue:229
#: frontend/src/pages/ProgramForm.vue:248 #: frontend/src/pages/ProgramForm.vue:251
#: frontend/src/pages/ProgramForm.vue:269 #: frontend/src/pages/ProgramForm.vue:272
#: frontend/src/pages/ProgramForm.vue:295 frontend/src/pages/QuizForm.vue:343 #: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:343
#: frontend/src/pages/QuizForm.vue:362 frontend/src/pages/QuizForm.vue:431 #: frontend/src/pages/QuizForm.vue:362 frontend/src/pages/QuizForm.vue:431
msgid "Success" msgid "Success"
msgstr "" msgstr ""
@@ -4854,7 +4846,7 @@ msgstr ""
msgid "Temporarily Disabled" msgid "Temporarily Disabled"
msgstr "" msgstr ""
#: lms/lms/utils.py:440 #: lms/lms/utils.py:436
msgid "Terms of Use" msgid "Terms of Use"
msgstr "" msgstr ""
@@ -4918,7 +4910,7 @@ msgstr ""
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!" msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr "" msgstr ""
#: frontend/src/pages/Programs.vue:86 #: frontend/src/pages/Programs.vue:97
msgid "There are no programs available at the moment. Keep an eye out, fresh learning experiences are on the way soon!" msgid "There are no programs available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr "" msgstr ""
@@ -4934,6 +4926,10 @@ msgstr ""
msgid "There are no {0} on this site." msgid "There are no {0} on this site."
msgstr "" msgstr ""
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:41
msgid "There has been an update on your submission. You have got a score of {0} for the quiz {1}"
msgstr ""
#. Description of the 'section_break_ubxi' (Section Break) field in DocType #. Description of the 'section_break_ubxi' (Section Break) field in DocType
#. 'LMS Batch' #. 'LMS Batch'
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
@@ -4953,7 +4949,7 @@ msgstr ""
msgid "This course has:" msgid "This course has:"
msgstr "" msgstr ""
#: lms/lms/utils.py:1585 #: lms/lms/utils.py:1582
msgid "This course is free." msgid "This course is free."
msgstr "" msgstr ""
@@ -5058,7 +5054,7 @@ msgstr ""
#: frontend/src/components/Modals/LiveClassModal.vue:23 #: frontend/src/components/Modals/LiveClassModal.vue:23
#: frontend/src/pages/BatchForm.vue:20 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/ProgramForm.vue:11 #: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/ProgramForm.vue:11
#: frontend/src/pages/Programs.vue:107 frontend/src/pages/QuizForm.vue:48 #: frontend/src/pages/Programs.vue:118 frontend/src/pages/QuizForm.vue:48
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json #: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json
@@ -5095,7 +5091,7 @@ msgstr ""
msgid "To Date" msgid "To Date"
msgstr "" msgstr ""
#: lms/lms/utils.py:1596 #: 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 ""
@@ -5112,7 +5108,7 @@ msgid "Total"
msgstr "" msgstr ""
#. Label of the total_marks (Int) field in DocType 'LMS Quiz' #. Label of the total_marks (Int) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:66 frontend/src/pages/Quizzes.vue:119 #: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:119
#: lms/lms/doctype/lms_quiz/lms_quiz.json #: lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Total Marks" msgid "Total Marks"
msgstr "" msgstr ""
@@ -5149,7 +5145,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/Jobs.vue:16 #: frontend/src/pages/JobCreation.vue:33 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
@@ -5513,6 +5509,10 @@ msgstr ""
msgid "You have been enrolled in this course" msgid "You have been enrolled in this course"
msgstr "" msgstr ""
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:38
msgid "You have got a score of {0} for the quiz {1}"
msgstr ""
#: frontend/src/pages/Quizzes.vue:60 #: frontend/src/pages/Quizzes.vue:60
msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above." msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above."
msgstr "" msgstr ""
@@ -5683,7 +5683,7 @@ msgstr ""
msgid "{0} is your evaluator" msgid "{0} is your evaluator"
msgstr "" msgstr ""
#: lms/lms/utils.py:704 #: lms/lms/utils.py:700
msgid "{0} mentioned you in a comment" msgid "{0} mentioned you in a comment"
msgstr "" msgstr ""
@@ -5691,11 +5691,11 @@ msgstr ""
msgid "{0} mentioned you in a comment in your batch." msgid "{0} mentioned you in a comment in your batch."
msgstr "" msgstr ""
#: lms/lms/utils.py:657 lms/lms/utils.py:663 #: lms/lms/utils.py:653 lms/lms/utils.py:659
msgid "{0} mentioned you in a comment in {1}" msgid "{0} mentioned you in a comment in {1}"
msgstr "" msgstr ""
#: lms/lms/utils.py:480 #: lms/lms/utils.py:476
msgid "{0}k" msgid "{0}k"
msgstr "" msgstr ""

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-11-22 16:05+0000\n" "POT-Creation-Date: 2024-11-29 16:04+0000\n"
"PO-Revision-Date: 2024-11-25 19:29\n" "PO-Revision-Date: 2024-12-02 22:10\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"
@@ -105,7 +105,7 @@ msgstr ""
#: frontend/src/components/Categories.vue:26 #: frontend/src/components/Categories.vue:26
#: frontend/src/components/LiveClass.vue:11 #: frontend/src/components/LiveClass.vue:11
#: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30 #: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30
#: frontend/src/pages/ProgramForm.vue:91 frontend/src/pages/ProgramForm.vue:136 #: frontend/src/pages/ProgramForm.vue:92 frontend/src/pages/ProgramForm.vue:137
msgid "Add" msgid "Add"
msgstr "" msgstr ""
@@ -147,8 +147,8 @@ msgstr ""
msgid "Add a lesson" msgid "Add a lesson"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Question.vue:141 #: frontend/src/components/Modals/Question.vue:144
#: frontend/src/pages/QuizForm.vue:182 #: frontend/src/pages/QuizForm.vue:183
msgid "Add a new question" msgid "Add a new question"
msgstr "" msgstr ""
@@ -922,25 +922,25 @@ msgstr ""
#. Label of the company_details_section (Section Break) field in DocType 'Job #. Label of the company_details_section (Section Break) field in DocType 'Job
#. Opportunity' #. Opportunity'
#: frontend/src/pages/JobCreation.vue:56 #: frontend/src/pages/JobCreation.vue:64
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Details" msgid "Company Details"
msgstr "" msgstr ""
#. Label of the company_email_address (Data) field in DocType 'Job Opportunity' #. Label of the company_email_address (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobCreation.vue:73 #: frontend/src/pages/JobCreation.vue:83
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Email Address" msgid "Company Email Address"
msgstr "" msgstr ""
#. Label of the company_logo (Attach Image) field in DocType 'Job Opportunity' #. Label of the company_logo (Attach Image) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobCreation.vue:77 #: frontend/src/pages/JobCreation.vue:88
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Logo" msgid "Company Logo"
msgstr "" msgstr ""
#. Label of the company_name (Data) field in DocType 'Job Opportunity' #. Label of the company_name (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobCreation.vue:62 #: frontend/src/pages/JobCreation.vue:70
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Name" msgid "Company Name"
msgstr "" msgstr ""
@@ -951,7 +951,7 @@ msgid "Company Type"
msgstr "" msgstr ""
#. Label of the company_website (Data) field in DocType 'Job Opportunity' #. Label of the company_website (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobCreation.vue:67 #: frontend/src/pages/JobCreation.vue:76
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Website" msgid "Company Website"
msgstr "" msgstr ""
@@ -1025,7 +1025,7 @@ msgstr ""
msgid "Contract" msgid "Contract"
msgstr "" msgstr ""
#: lms/lms/utils.py:442 #: lms/lms/utils.py:438
msgid "Cookie Policy" msgid "Cookie Policy"
msgstr "" msgstr ""
@@ -1047,7 +1047,7 @@ msgstr ""
msgid "Correct" msgid "Correct"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Question.vue:71 #: frontend/src/components/Modals/Question.vue:73
msgid "Correct Answer" msgid "Correct Answer"
msgstr "" msgstr ""
@@ -1218,7 +1218,7 @@ msgstr ""
msgid "Course Title" msgid "Course Title"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:226 #: frontend/src/pages/ProgramForm.vue:229
msgid "Course added to program" msgid "Course added to program"
msgstr "" msgstr ""
@@ -1230,7 +1230,7 @@ msgstr ""
msgid "Course deleted successfully" msgid "Course deleted successfully"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:295 #: frontend/src/pages/ProgramForm.vue:298
msgid "Course moved successfully" msgid "Course moved successfully"
msgstr "" msgstr ""
@@ -1270,7 +1270,7 @@ msgid "Cover Image"
msgstr "" msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:9 #: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/pages/Programs.vue:99 #: frontend/src/pages/Programs.vue:110
msgid "Create" msgid "Create"
msgstr "" msgstr ""
@@ -1446,7 +1446,7 @@ msgstr ""
#. Label of the description (Text) field in DocType 'LMS Live Class' #. Label of the description (Text) field in DocType 'LMS Live Class'
#. Label of the description (Small Text) field in DocType 'Work Experience' #. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:78 #: frontend/src/components/Modals/LiveClassModal.vue:78
#: frontend/src/pages/BatchForm.vue:96 frontend/src/pages/JobCreation.vue:43 #: frontend/src/pages/BatchForm.vue:96 frontend/src/pages/JobCreation.vue:50
#: 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
@@ -1527,7 +1527,7 @@ msgstr ""
msgid "Duration" msgid "Duration"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:62 #: frontend/src/pages/QuizForm.vue:63
msgid "Duration (in minutes)" msgid "Duration (in minutes)"
msgstr "" msgstr ""
@@ -1562,7 +1562,7 @@ msgstr ""
msgid "Edit Profile" msgid "Edit Profile"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:181 #: frontend/src/pages/QuizForm.vue:182
msgid "Edit the question" msgid "Edit the question"
msgstr "" msgstr ""
@@ -1693,7 +1693,7 @@ msgstr ""
msgid "Enrollment Count" msgid "Enrollment Count"
msgstr "" msgstr ""
#: lms/lms/utils.py:1705 #: lms/lms/utils.py:1702
msgid "Enrollment Failed" msgid "Enrollment Failed"
msgstr "" msgstr ""
@@ -1725,12 +1725,12 @@ msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:159 #: frontend/src/components/Modals/ChapterModal.vue:159
#: frontend/src/components/Modals/ChapterModal.vue:166 #: frontend/src/components/Modals/ChapterModal.vue:166
#: frontend/src/components/Modals/ChapterModal.vue:202 #: frontend/src/components/Modals/ChapterModal.vue:202
#: frontend/src/components/Modals/Question.vue:246 #: frontend/src/components/Modals/Question.vue:249
#: frontend/src/components/Modals/Question.vue:266 #: frontend/src/components/Modals/Question.vue:269
#: frontend/src/components/Modals/Question.vue:323 #: frontend/src/components/Modals/Question.vue:326
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350 #: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350
#: frontend/src/pages/QuizForm.vue:365 #: frontend/src/pages/QuizForm.vue:365
#: frontend/src/pages/QuizSubmission.vue:117 #: frontend/src/pages/QuizSubmission.vue:141
msgid "Error" msgid "Error"
msgstr "" msgstr ""
@@ -1858,7 +1858,7 @@ msgstr ""
#. Label of the explanation_1 (Small Text) field in DocType 'LMS Question' #. Label of the explanation_1 (Small Text) field in DocType 'LMS Question'
#. Label of the explanation_3 (Small Text) field in DocType 'LMS Question' #. Label of the explanation_3 (Small Text) field in DocType 'LMS Question'
#. Label of the explanation_4 (Small Text) field in DocType 'LMS Question' #. Label of the explanation_4 (Small Text) field in DocType 'LMS Question'
#: frontend/src/components/Modals/Question.vue:67 #: frontend/src/components/Modals/Question.vue:69
#: lms/lms/doctype/lms_question/lms_question.json #: lms/lms/doctype/lms_question/lms_question.json
msgid "Explanation" msgid "Explanation"
msgstr "" msgstr ""
@@ -2116,14 +2116,6 @@ msgstr ""
msgid "How to add a Quiz?" msgid "How to add a Quiz?"
msgstr "" msgstr ""
#: frontend/src/components/LessonHelp.vue:47
msgid "How to add a YouTube Video?"
msgstr ""
#: frontend/src/components/LessonHelp.vue:28
msgid "How to upload content from your system?"
msgstr ""
#. Label of the current (Check) field in DocType 'Work Experience' #. Label of the current (Check) field in DocType 'Work Experience'
#: lms/lms/doctype/work_experience/work_experience.json #: lms/lms/doctype/work_experience/work_experience.json
msgid "I am currently working here" msgid "I am currently working here"
@@ -2202,7 +2194,7 @@ msgstr ""
msgid "Image search powered by" msgid "Image search powered by"
msgstr "" msgstr ""
#: lms/lms/doctype/lms_quiz/lms_quiz.py:222 #: lms/lms/doctype/lms_quiz/lms_quiz.py:221
msgid "Image: Corrupted Data Stream" msgid "Image: Corrupted Data Stream"
msgstr "" msgstr ""
@@ -2388,7 +2380,7 @@ msgstr ""
msgid "Items in Sidebar" msgid "Items in Sidebar"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:269 #: frontend/src/pages/ProgramForm.vue:272
msgid "Items removed successfully" msgid "Items removed successfully"
msgstr "" msgstr ""
@@ -2757,7 +2749,7 @@ msgid "Letter Grade (e.g. A, B-)"
msgstr "" msgstr ""
#. Label of the limit_questions_to (Int) field in DocType 'LMS Quiz' #. Label of the limit_questions_to (Int) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:107 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:108 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Limit Questions To" msgid "Limit Questions To"
msgstr "" msgstr ""
@@ -2817,7 +2809,7 @@ msgstr ""
#. Label of the location (Data) field in DocType 'Job Opportunity' #. Label of the location (Data) field in DocType 'Job Opportunity'
#. Label of the location (Data) field in DocType 'Education Detail' #. Label of the location (Data) field in DocType 'Education Detail'
#. Label of the location (Data) field in DocType 'Work Experience' #. Label of the location (Data) field in DocType 'Work Experience'
#: frontend/src/pages/JobCreation.vue:23 frontend/src/pages/JobDetail.vue:89 #: frontend/src/pages/JobCreation.vue:26 frontend/src/pages/JobDetail.vue:89
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/education_detail/education_detail.json #: lms/lms/doctype/education_detail/education_detail.json
#: lms/lms/doctype/work_experience/work_experience.json #: lms/lms/doctype/work_experience/work_experience.json
@@ -2887,21 +2879,21 @@ msgstr ""
#. Label of the marks (Int) field in DocType 'LMS Quiz Question' #. Label of the marks (Int) field in DocType 'LMS Quiz Question'
#. Label of the marks (Int) field in DocType 'LMS Quiz Result' #. Label of the marks (Int) field in DocType 'LMS Quiz Result'
#: frontend/src/components/Modals/Question.vue:50 #: frontend/src/components/Modals/Question.vue:50
#: frontend/src/components/Modals/Question.vue:96 #: frontend/src/components/Modals/Question.vue:99
#: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:394 #: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:394
#: frontend/src/pages/QuizSubmission.vue:52 #: frontend/src/pages/QuizSubmission.vue:59
#: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json #: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json
#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json
#: lms/templates/quiz/quiz.html:59 #: lms/templates/quiz/quiz.html:59
msgid "Marks" msgid "Marks"
msgstr "" msgstr ""
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:19 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:23
msgid "Marks for question number {0} cannot be greater than the marks allotted for that question." msgid "Marks for question number {0} cannot be greater than the marks allotted for that question."
msgstr "" msgstr ""
#. Label of the marks_out_of (Int) field in DocType 'LMS Quiz Result' #. Label of the marks_out_of (Int) field in DocType 'LMS Quiz Result'
#: frontend/src/pages/QuizSubmission.vue:55 #: frontend/src/pages/QuizSubmission.vue:62
#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json
msgid "Marks out of" msgid "Marks out of"
msgstr "" msgstr ""
@@ -2911,7 +2903,7 @@ msgstr ""
msgid "Max Attempts" msgid "Max Attempts"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:57 #: frontend/src/pages/QuizForm.vue:58
msgid "Maximun Attempts" msgid "Maximun Attempts"
msgstr "" msgstr ""
@@ -2945,7 +2937,7 @@ msgstr "Średni:"
#. Label of the member (Link) field in DocType 'LMS Payment' #. Label of the member (Link) field in DocType 'LMS Payment'
#. Label of the member (Link) field in DocType 'LMS Program Member' #. Label of the member (Link) field in DocType 'LMS Program Member'
#. Label of the member (Link) field in DocType 'LMS Quiz Submission' #. Label of the member (Link) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizSubmission.vue:27 #: frontend/src/pages/QuizSubmission.vue:31
#: frontend/src/pages/QuizSubmissionList.vue:77 #: frontend/src/pages/QuizSubmissionList.vue:77
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
#: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json
@@ -3008,7 +3000,7 @@ msgstr ""
msgid "Member Type" msgid "Member Type"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:248 #: frontend/src/pages/ProgramForm.vue:251
msgid "Member added to program" msgid "Member added to program"
msgstr "" msgstr ""
@@ -3173,19 +3165,19 @@ msgstr ""
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "" msgstr ""
#: frontend/src/pages/Programs.vue:96 #: frontend/src/pages/Programs.vue:107
msgid "New Program" msgid "New Program"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:132 #: frontend/src/pages/ProgramForm.vue:133
msgid "New Program Course" msgid "New Program Course"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:133 #: frontend/src/pages/ProgramForm.vue:134
msgid "New Program Member" msgid "New Program Member"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:122 #: frontend/src/pages/QuizForm.vue:123
msgid "New Question" msgid "New Question"
msgstr "" msgstr ""
@@ -3198,11 +3190,11 @@ msgstr ""
msgid "New Sign Up" msgid "New Sign Up"
msgstr "" msgstr ""
#: lms/lms/utils.py:627 #: lms/lms/utils.py:623
msgid "New comment in batch {0}" msgid "New comment in batch {0}"
msgstr "" msgstr ""
#: lms/lms/utils.py:620 #: lms/lms/utils.py:616
msgid "New reply on the topic {0} in course {1}" msgid "New reply on the topic {0} in course {1}"
msgstr "" msgstr ""
@@ -3256,7 +3248,7 @@ msgstr ""
msgid "No courses found" msgid "No courses found"
msgstr "" msgstr ""
#: frontend/src/pages/Programs.vue:72 #: frontend/src/pages/Programs.vue:83
msgid "No courses in this program" msgid "No courses in this program"
msgstr "" msgstr ""
@@ -3276,7 +3268,7 @@ msgstr ""
msgid "No live classes scheduled" msgid "No live classes scheduled"
msgstr "" msgstr ""
#: frontend/src/pages/Programs.vue:82 #: frontend/src/pages/Programs.vue:93
msgid "No programs found" msgid "No programs found"
msgstr "" msgstr ""
@@ -3388,7 +3380,7 @@ msgstr ""
msgid "Online" msgid "Online"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:156 #: frontend/src/pages/ProgramForm.vue:157
msgid "Only courses for which self learning is disabled can be added to program." msgid "Only courses for which self learning is disabled can be added to program."
msgstr "" msgstr ""
@@ -3396,7 +3388,7 @@ msgstr ""
msgid "Only files of type {0} will be accepted." msgid "Only files of type {0} will be accepted."
msgstr "" msgstr ""
#: frontend/src/pages/CourseForm.vue:497 frontend/src/utils/index.js:518 #: frontend/src/pages/CourseForm.vue:497 frontend/src/utils/index.js:520
msgid "Only image file is allowed." msgid "Only image file is allowed."
msgstr "" msgstr ""
@@ -3432,7 +3424,7 @@ msgid "Open Network"
msgstr "" msgstr ""
#. Label of the option (Data) field in DocType 'LMS Option' #. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:63 #: frontend/src/components/Modals/Question.vue:64
#: lms/lms/doctype/lms_option/lms_option.json #: lms/lms/doctype/lms_option/lms_option.json
msgid "Option" msgid "Option"
msgstr "" msgstr ""
@@ -3547,7 +3539,7 @@ msgstr ""
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz' #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz'
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission' #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizForm.vue:71 frontend/src/pages/Quizzes.vue:125 #: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:125
#: lms/lms/doctype/lms_quiz/lms_quiz.json #: lms/lms/doctype/lms_quiz/lms_quiz.json
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
msgid "Passing Percentage" msgid "Passing Percentage"
@@ -3641,7 +3633,7 @@ msgid "Pending"
msgstr "" msgstr ""
#. Label of the percentage (Int) field in DocType 'LMS Quiz Submission' #. Label of the percentage (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizSubmission.vue:40 #: frontend/src/pages/QuizSubmission.vue:44
#: frontend/src/pages/QuizSubmissionList.vue:93 #: frontend/src/pages/QuizSubmissionList.vue:93
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
msgid "Percentage" msgid "Percentage"
@@ -3676,7 +3668,7 @@ msgstr ""
msgid "Please click on the following button to set your new password" msgid "Please click on the following button to set your new password"
msgstr "" msgstr ""
#: lms/lms/utils.py:1817 lms/lms/utils.py:1821 #: lms/lms/utils.py:1824 lms/lms/utils.py:1828
msgid "Please complete the previous courses in the program to enroll in this course." msgid "Please complete the previous courses in the program to enroll in this course."
msgstr "" msgstr ""
@@ -3779,7 +3771,7 @@ msgstr ""
msgid "Point of Score (e.g. 70)" msgid "Point of Score (e.g. 70)"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Question.vue:83 #: frontend/src/components/Modals/Question.vue:85
msgid "Possibility" msgid "Possibility"
msgstr "" msgstr ""
@@ -3875,7 +3867,7 @@ msgstr ""
msgid "Primary Subgroup" msgid "Primary Subgroup"
msgstr "" msgstr ""
#: lms/lms/utils.py:441 #: lms/lms/utils.py:437
msgid "Privacy Policy" msgid "Privacy Policy"
msgstr "" msgstr ""
@@ -3903,7 +3895,7 @@ msgstr ""
msgid "Profile Image" msgid "Profile Image"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:154 #: frontend/src/pages/ProgramForm.vue:155
msgid "Program Course" msgid "Program Course"
msgstr "" msgstr ""
@@ -3913,12 +3905,12 @@ msgstr ""
msgid "Program Courses" msgid "Program Courses"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:169 #: frontend/src/pages/ProgramForm.vue:170
msgid "Program Member" msgid "Program Member"
msgstr "" msgstr ""
#. Label of the program_members (Table) field in DocType 'LMS Program' #. Label of the program_members (Table) field in DocType 'LMS Program'
#: frontend/src/pages/ProgramForm.vue:78 #: frontend/src/pages/ProgramForm.vue:79
#: lms/lms/doctype/lms_program/lms_program.json #: lms/lms/doctype/lms_program/lms_program.json
msgid "Program Members" msgid "Program Members"
msgstr "" msgstr ""
@@ -4001,11 +3993,11 @@ msgstr ""
msgid "Question Name" msgid "Question Name"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Question.vue:261 #: frontend/src/components/Modals/Question.vue:264
msgid "Question added successfully" msgid "Question added successfully"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Question.vue:313 #: frontend/src/components/Modals/Question.vue:316
msgid "Question updated successfully" msgid "Question updated successfully"
msgstr "" msgstr ""
@@ -4018,7 +4010,7 @@ msgid "Question {0} of {1}"
msgstr "" msgstr ""
#. Label of the questions (Table) field in DocType 'LMS Quiz' #. Label of the questions (Table) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:116 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:117 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Questions" msgid "Questions"
msgstr "" msgstr ""
@@ -4028,7 +4020,7 @@ msgstr ""
#. Label of the quiz (Link) field in DocType 'LMS Quiz Submission' #. Label of the quiz (Link) field in DocType 'LMS Quiz Submission'
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#: frontend/src/pages/QuizSubmission.vue:22 #: frontend/src/pages/QuizSubmission.vue:26
#: frontend/src/pages/QuizSubmissionList.vue:82 frontend/src/utils/quiz.js:24 #: frontend/src/pages/QuizSubmissionList.vue:82 frontend/src/utils/quiz.js:24
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
#: lms/lms/workspace/lms/lms.json #: lms/lms/workspace/lms/lms.json
@@ -4046,7 +4038,7 @@ msgstr ""
msgid "Quiz Submission" msgid "Quiz Submission"
msgstr "" msgstr ""
#: frontend/src/pages/QuizSubmission.vue:98 #: frontend/src/pages/QuizSubmission.vue:122
#: frontend/src/pages/QuizSubmissionList.vue:102 #: frontend/src/pages/QuizSubmissionList.vue:102
msgid "Quiz Submissions" msgid "Quiz Submissions"
msgstr "" msgstr ""
@@ -4315,7 +4307,7 @@ msgid "Scope"
msgstr "" msgstr ""
#. Label of the score (Int) field in DocType 'LMS Quiz Submission' #. Label of the score (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizSubmission.vue:35 #: frontend/src/pages/QuizSubmission.vue:39
#: frontend/src/pages/QuizSubmissionList.vue:87 #: frontend/src/pages/QuizSubmissionList.vue:87
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
#: lms/templates/quiz/quiz.html:148 #: lms/templates/quiz/quiz.html:148
@@ -4352,7 +4344,7 @@ msgstr ""
msgid "Seats Left" msgid "Seats Left"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Question.vue:91 #: frontend/src/components/Modals/Question.vue:94
msgid "Select a question" msgid "Select a question"
msgstr "" msgstr ""
@@ -4381,7 +4373,7 @@ msgstr ""
#: frontend/src/components/Modals/Settings.vue:7 #: frontend/src/components/Modals/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:165 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:79
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
@@ -4405,12 +4397,12 @@ msgid "Show Answer"
msgstr "" msgstr ""
#. Label of the show_answers (Check) field in DocType 'LMS Quiz' #. Label of the show_answers (Check) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:84 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:85 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Show Answers" msgid "Show Answers"
msgstr "" msgstr ""
#. Label of the show_submission_history (Check) field in DocType 'LMS Quiz' #. Label of the show_submission_history (Check) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:89 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:90 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Show Submission History" msgid "Show Submission History"
msgstr "" msgstr ""
@@ -4435,11 +4427,11 @@ msgid "Show live class"
msgstr "" msgstr ""
#. Label of the shuffle_questions (Check) field in DocType 'LMS Quiz' #. Label of the shuffle_questions (Check) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:102 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:103 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Shuffle Questions" msgid "Shuffle Questions"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:96 #: frontend/src/pages/QuizForm.vue:97
msgid "Shuffle Settings" msgid "Shuffle Settings"
msgstr "" msgstr ""
@@ -4635,7 +4627,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Course Progress' #. Label of the status (Select) field in DocType 'LMS Course Progress'
#. Label of the status (Select) field in DocType 'LMS Mentor Request' #. Label of the status (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:91 #: frontend/src/components/Modals/Event.vue:91
#: frontend/src/pages/JobCreation.vue:35 #: frontend/src/pages/JobCreation.vue:41
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_join_request/cohort_join_request.json #: lms/lms/doctype/cohort_join_request/cohort_join_request.json
@@ -4727,7 +4719,7 @@ msgstr ""
#: frontend/src/components/Modals/AssessmentModal.vue:9 #: frontend/src/components/Modals/AssessmentModal.vue:9
#: frontend/src/components/Modals/BatchCourseModal.vue:9 #: frontend/src/components/Modals/BatchCourseModal.vue:9
#: frontend/src/components/Modals/EvaluationModal.vue:9 #: frontend/src/components/Modals/EvaluationModal.vue:9
#: frontend/src/components/Modals/Question.vue:335 #: frontend/src/components/Modals/Question.vue:338
#: frontend/src/components/Quiz.vue:214 lms/templates/assignment.html:9 #: frontend/src/components/Quiz.vue:214 lms/templates/assignment.html:9
#: lms/templates/livecode/extension_footer.html:25 #: lms/templates/livecode/extension_footer.html:25
#: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163 #: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163
@@ -4754,12 +4746,12 @@ msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:198 #: frontend/src/components/Modals/ChapterModal.vue:198
#: 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:264
#: frontend/src/components/Modals/Question.vue:312 #: frontend/src/components/Modals/Question.vue:315
#: frontend/src/pages/CourseForm.vue:460 frontend/src/pages/ProgramForm.vue:226 #: frontend/src/pages/CourseForm.vue:460 frontend/src/pages/ProgramForm.vue:229
#: frontend/src/pages/ProgramForm.vue:248 #: frontend/src/pages/ProgramForm.vue:251
#: frontend/src/pages/ProgramForm.vue:269 #: frontend/src/pages/ProgramForm.vue:272
#: frontend/src/pages/ProgramForm.vue:295 frontend/src/pages/QuizForm.vue:343 #: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:343
#: frontend/src/pages/QuizForm.vue:362 frontend/src/pages/QuizForm.vue:431 #: frontend/src/pages/QuizForm.vue:362 frontend/src/pages/QuizForm.vue:431
msgid "Success" msgid "Success"
msgstr "" msgstr ""
@@ -4856,7 +4848,7 @@ msgstr ""
msgid "Temporarily Disabled" msgid "Temporarily Disabled"
msgstr "" msgstr ""
#: lms/lms/utils.py:440 #: lms/lms/utils.py:436
msgid "Terms of Use" msgid "Terms of Use"
msgstr "" msgstr ""
@@ -4920,7 +4912,7 @@ msgstr ""
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!" msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr "" msgstr ""
#: frontend/src/pages/Programs.vue:86 #: frontend/src/pages/Programs.vue:97
msgid "There are no programs available at the moment. Keep an eye out, fresh learning experiences are on the way soon!" msgid "There are no programs available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr "" msgstr ""
@@ -4936,6 +4928,10 @@ msgstr ""
msgid "There are no {0} on this site." msgid "There are no {0} on this site."
msgstr "" msgstr ""
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:41
msgid "There has been an update on your submission. You have got a score of {0} for the quiz {1}"
msgstr ""
#. Description of the 'section_break_ubxi' (Section Break) field in DocType #. Description of the 'section_break_ubxi' (Section Break) field in DocType
#. 'LMS Batch' #. 'LMS Batch'
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
@@ -4955,7 +4951,7 @@ msgstr ""
msgid "This course has:" msgid "This course has:"
msgstr "" msgstr ""
#: lms/lms/utils.py:1585 #: lms/lms/utils.py:1582
msgid "This course is free." msgid "This course is free."
msgstr "" msgstr ""
@@ -5060,7 +5056,7 @@ msgstr ""
#: frontend/src/components/Modals/LiveClassModal.vue:23 #: frontend/src/components/Modals/LiveClassModal.vue:23
#: frontend/src/pages/BatchForm.vue:20 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/ProgramForm.vue:11 #: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/ProgramForm.vue:11
#: frontend/src/pages/Programs.vue:107 frontend/src/pages/QuizForm.vue:48 #: frontend/src/pages/Programs.vue:118 frontend/src/pages/QuizForm.vue:48
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json #: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json
@@ -5097,7 +5093,7 @@ msgstr ""
msgid "To Date" msgid "To Date"
msgstr "" msgstr ""
#: lms/lms/utils.py:1596 #: 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 ""
@@ -5114,7 +5110,7 @@ msgid "Total"
msgstr "" msgstr ""
#. Label of the total_marks (Int) field in DocType 'LMS Quiz' #. Label of the total_marks (Int) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:66 frontend/src/pages/Quizzes.vue:119 #: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:119
#: lms/lms/doctype/lms_quiz/lms_quiz.json #: lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Total Marks" msgid "Total Marks"
msgstr "" msgstr ""
@@ -5151,7 +5147,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/Jobs.vue:16 #: frontend/src/pages/JobCreation.vue:33 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
@@ -5515,6 +5511,10 @@ msgstr ""
msgid "You have been enrolled in this course" msgid "You have been enrolled in this course"
msgstr "" msgstr ""
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:38
msgid "You have got a score of {0} for the quiz {1}"
msgstr ""
#: frontend/src/pages/Quizzes.vue:60 #: frontend/src/pages/Quizzes.vue:60
msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above." msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above."
msgstr "" msgstr ""
@@ -5685,7 +5685,7 @@ msgstr ""
msgid "{0} is your evaluator" msgid "{0} is your evaluator"
msgstr "" msgstr ""
#: lms/lms/utils.py:704 #: lms/lms/utils.py:700
msgid "{0} mentioned you in a comment" msgid "{0} mentioned you in a comment"
msgstr "" msgstr ""
@@ -5693,11 +5693,11 @@ msgstr ""
msgid "{0} mentioned you in a comment in your batch." msgid "{0} mentioned you in a comment in your batch."
msgstr "" msgstr ""
#: lms/lms/utils.py:657 lms/lms/utils.py:663 #: lms/lms/utils.py:653 lms/lms/utils.py:659
msgid "{0} mentioned you in a comment in {1}" msgid "{0} mentioned you in a comment in {1}"
msgstr "" msgstr ""
#: lms/lms/utils.py:480 #: lms/lms/utils.py:476
msgid "{0}k" msgid "{0}k"
msgstr "" msgstr ""

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-11-22 16:05+0000\n" "POT-Creation-Date: 2024-11-29 16:04+0000\n"
"PO-Revision-Date: 2024-11-25 19:29\n" "PO-Revision-Date: 2024-12-02 22:10\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"
@@ -105,7 +105,7 @@ msgstr ""
#: frontend/src/components/Categories.vue:26 #: frontend/src/components/Categories.vue:26
#: frontend/src/components/LiveClass.vue:11 #: frontend/src/components/LiveClass.vue:11
#: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30 #: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30
#: frontend/src/pages/ProgramForm.vue:91 frontend/src/pages/ProgramForm.vue:136 #: frontend/src/pages/ProgramForm.vue:92 frontend/src/pages/ProgramForm.vue:137
msgid "Add" msgid "Add"
msgstr "" msgstr ""
@@ -147,8 +147,8 @@ msgstr "Добавить курс"
msgid "Add a lesson" msgid "Add a lesson"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Question.vue:141 #: frontend/src/components/Modals/Question.vue:144
#: frontend/src/pages/QuizForm.vue:182 #: frontend/src/pages/QuizForm.vue:183
msgid "Add a new question" msgid "Add a new question"
msgstr "" msgstr ""
@@ -922,25 +922,25 @@ msgstr ""
#. Label of the company_details_section (Section Break) field in DocType 'Job #. Label of the company_details_section (Section Break) field in DocType 'Job
#. Opportunity' #. Opportunity'
#: frontend/src/pages/JobCreation.vue:56 #: frontend/src/pages/JobCreation.vue:64
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Details" msgid "Company Details"
msgstr "Информация о компании" msgstr "Информация о компании"
#. Label of the company_email_address (Data) field in DocType 'Job Opportunity' #. Label of the company_email_address (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobCreation.vue:73 #: frontend/src/pages/JobCreation.vue:83
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Email Address" msgid "Company Email Address"
msgstr "Email Компании" msgstr "Email Компании"
#. Label of the company_logo (Attach Image) field in DocType 'Job Opportunity' #. Label of the company_logo (Attach Image) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobCreation.vue:77 #: frontend/src/pages/JobCreation.vue:88
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Logo" msgid "Company Logo"
msgstr "Логотип Компании" msgstr "Логотип Компании"
#. Label of the company_name (Data) field in DocType 'Job Opportunity' #. Label of the company_name (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobCreation.vue:62 #: frontend/src/pages/JobCreation.vue:70
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Name" msgid "Company Name"
msgstr "" msgstr ""
@@ -951,7 +951,7 @@ msgid "Company Type"
msgstr "" msgstr ""
#. Label of the company_website (Data) field in DocType 'Job Opportunity' #. Label of the company_website (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobCreation.vue:67 #: frontend/src/pages/JobCreation.vue:76
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Website" msgid "Company Website"
msgstr "Вебсайт Компании" msgstr "Вебсайт Компании"
@@ -1025,7 +1025,7 @@ msgstr ""
msgid "Contract" msgid "Contract"
msgstr "" msgstr ""
#: lms/lms/utils.py:442 #: lms/lms/utils.py:438
msgid "Cookie Policy" msgid "Cookie Policy"
msgstr "Политика cookies" msgstr "Политика cookies"
@@ -1047,7 +1047,7 @@ msgstr ""
msgid "Correct" msgid "Correct"
msgstr "Правильный" msgstr "Правильный"
#: frontend/src/components/Modals/Question.vue:71 #: frontend/src/components/Modals/Question.vue:73
msgid "Correct Answer" msgid "Correct Answer"
msgstr "" msgstr ""
@@ -1218,7 +1218,7 @@ msgstr "Статистика курса"
msgid "Course Title" msgid "Course Title"
msgstr "Заголовок курса" msgstr "Заголовок курса"
#: frontend/src/pages/ProgramForm.vue:226 #: frontend/src/pages/ProgramForm.vue:229
msgid "Course added to program" msgid "Course added to program"
msgstr "" msgstr ""
@@ -1230,7 +1230,7 @@ msgstr "Курс уже добавлен в группу."
msgid "Course deleted successfully" msgid "Course deleted successfully"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:295 #: frontend/src/pages/ProgramForm.vue:298
msgid "Course moved successfully" msgid "Course moved successfully"
msgstr "" msgstr ""
@@ -1270,7 +1270,7 @@ msgid "Cover Image"
msgstr "" msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:9 #: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/pages/Programs.vue:99 #: frontend/src/pages/Programs.vue:110
msgid "Create" msgid "Create"
msgstr "" msgstr ""
@@ -1446,7 +1446,7 @@ msgstr ""
#. Label of the description (Text) field in DocType 'LMS Live Class' #. Label of the description (Text) field in DocType 'LMS Live Class'
#. Label of the description (Small Text) field in DocType 'Work Experience' #. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:78 #: frontend/src/components/Modals/LiveClassModal.vue:78
#: frontend/src/pages/BatchForm.vue:96 frontend/src/pages/JobCreation.vue:43 #: frontend/src/pages/BatchForm.vue:96 frontend/src/pages/JobCreation.vue:50
#: 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
@@ -1527,7 +1527,7 @@ msgstr "Для этого вопроса найдены дубликаты ва
msgid "Duration" msgid "Duration"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:62 #: frontend/src/pages/QuizForm.vue:63
msgid "Duration (in minutes)" msgid "Duration (in minutes)"
msgstr "" msgstr ""
@@ -1562,7 +1562,7 @@ msgstr "Редактировать главу"
msgid "Edit Profile" msgid "Edit Profile"
msgstr "Редактировать профиль" msgstr "Редактировать профиль"
#: frontend/src/pages/QuizForm.vue:181 #: frontend/src/pages/QuizForm.vue:182
msgid "Edit the question" msgid "Edit the question"
msgstr "" msgstr ""
@@ -1693,7 +1693,7 @@ msgstr "Подтверждение регистрации на следующу
msgid "Enrollment Count" msgid "Enrollment Count"
msgstr "Количество регистраций" msgstr "Количество регистраций"
#: lms/lms/utils.py:1705 #: lms/lms/utils.py:1702
msgid "Enrollment Failed" msgid "Enrollment Failed"
msgstr "" msgstr ""
@@ -1725,12 +1725,12 @@ msgstr "Введите правильный ответ"
#: frontend/src/components/Modals/ChapterModal.vue:159 #: frontend/src/components/Modals/ChapterModal.vue:159
#: frontend/src/components/Modals/ChapterModal.vue:166 #: frontend/src/components/Modals/ChapterModal.vue:166
#: frontend/src/components/Modals/ChapterModal.vue:202 #: frontend/src/components/Modals/ChapterModal.vue:202
#: frontend/src/components/Modals/Question.vue:246 #: frontend/src/components/Modals/Question.vue:249
#: frontend/src/components/Modals/Question.vue:266 #: frontend/src/components/Modals/Question.vue:269
#: frontend/src/components/Modals/Question.vue:323 #: frontend/src/components/Modals/Question.vue:326
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350 #: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350
#: frontend/src/pages/QuizForm.vue:365 #: frontend/src/pages/QuizForm.vue:365
#: frontend/src/pages/QuizSubmission.vue:117 #: frontend/src/pages/QuizSubmission.vue:141
msgid "Error" msgid "Error"
msgstr "" msgstr ""
@@ -1858,7 +1858,7 @@ msgstr "Истекает"
#. Label of the explanation_1 (Small Text) field in DocType 'LMS Question' #. Label of the explanation_1 (Small Text) field in DocType 'LMS Question'
#. Label of the explanation_3 (Small Text) field in DocType 'LMS Question' #. Label of the explanation_3 (Small Text) field in DocType 'LMS Question'
#. Label of the explanation_4 (Small Text) field in DocType 'LMS Question' #. Label of the explanation_4 (Small Text) field in DocType 'LMS Question'
#: frontend/src/components/Modals/Question.vue:67 #: frontend/src/components/Modals/Question.vue:69
#: lms/lms/doctype/lms_question/lms_question.json #: lms/lms/doctype/lms_question/lms_question.json
msgid "Explanation" msgid "Explanation"
msgstr "Объяснение" msgstr "Объяснение"
@@ -2116,14 +2116,6 @@ msgstr "Сервер"
msgid "How to add a Quiz?" msgid "How to add a Quiz?"
msgstr "" msgstr ""
#: frontend/src/components/LessonHelp.vue:47
msgid "How to add a YouTube Video?"
msgstr ""
#: frontend/src/components/LessonHelp.vue:28
msgid "How to upload content from your system?"
msgstr ""
#. Label of the current (Check) field in DocType 'Work Experience' #. Label of the current (Check) field in DocType 'Work Experience'
#: lms/lms/doctype/work_experience/work_experience.json #: lms/lms/doctype/work_experience/work_experience.json
msgid "I am currently working here" msgid "I am currently working here"
@@ -2202,7 +2194,7 @@ msgstr "Изображение"
msgid "Image search powered by" msgid "Image search powered by"
msgstr "Поиск изображений с помощью" msgstr "Поиск изображений с помощью"
#: lms/lms/doctype/lms_quiz/lms_quiz.py:222 #: lms/lms/doctype/lms_quiz/lms_quiz.py:221
msgid "Image: Corrupted Data Stream" msgid "Image: Corrupted Data Stream"
msgstr "" msgstr ""
@@ -2388,7 +2380,7 @@ msgstr "Дата выпуска:"
msgid "Items in Sidebar" msgid "Items in Sidebar"
msgstr "Элементы боковой панели" msgstr "Элементы боковой панели"
#: frontend/src/pages/ProgramForm.vue:269 #: frontend/src/pages/ProgramForm.vue:272
msgid "Items removed successfully" msgid "Items removed successfully"
msgstr "" msgstr ""
@@ -2757,7 +2749,7 @@ msgid "Letter Grade (e.g. A, B-)"
msgstr "Буквенная оценка (например, A, B-)" msgstr "Буквенная оценка (например, A, B-)"
#. Label of the limit_questions_to (Int) field in DocType 'LMS Quiz' #. Label of the limit_questions_to (Int) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:107 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:108 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Limit Questions To" msgid "Limit Questions To"
msgstr "Ограничить вопросы" msgstr "Ограничить вопросы"
@@ -2817,7 +2809,7 @@ msgstr ""
#. Label of the location (Data) field in DocType 'Job Opportunity' #. Label of the location (Data) field in DocType 'Job Opportunity'
#. Label of the location (Data) field in DocType 'Education Detail' #. Label of the location (Data) field in DocType 'Education Detail'
#. Label of the location (Data) field in DocType 'Work Experience' #. Label of the location (Data) field in DocType 'Work Experience'
#: frontend/src/pages/JobCreation.vue:23 frontend/src/pages/JobDetail.vue:89 #: frontend/src/pages/JobCreation.vue:26 frontend/src/pages/JobDetail.vue:89
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/education_detail/education_detail.json #: lms/lms/doctype/education_detail/education_detail.json
#: lms/lms/doctype/work_experience/work_experience.json #: lms/lms/doctype/work_experience/work_experience.json
@@ -2887,21 +2879,21 @@ msgstr "Отметить как прочитанное"
#. Label of the marks (Int) field in DocType 'LMS Quiz Question' #. Label of the marks (Int) field in DocType 'LMS Quiz Question'
#. Label of the marks (Int) field in DocType 'LMS Quiz Result' #. Label of the marks (Int) field in DocType 'LMS Quiz Result'
#: frontend/src/components/Modals/Question.vue:50 #: frontend/src/components/Modals/Question.vue:50
#: frontend/src/components/Modals/Question.vue:96 #: frontend/src/components/Modals/Question.vue:99
#: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:394 #: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:394
#: frontend/src/pages/QuizSubmission.vue:52 #: frontend/src/pages/QuizSubmission.vue:59
#: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json #: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json
#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json
#: lms/templates/quiz/quiz.html:59 #: lms/templates/quiz/quiz.html:59
msgid "Marks" msgid "Marks"
msgstr "Отметки" msgstr "Отметки"
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:19 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:23
msgid "Marks for question number {0} cannot be greater than the marks allotted for that question." msgid "Marks for question number {0} cannot be greater than the marks allotted for that question."
msgstr "" msgstr ""
#. Label of the marks_out_of (Int) field in DocType 'LMS Quiz Result' #. Label of the marks_out_of (Int) field in DocType 'LMS Quiz Result'
#: frontend/src/pages/QuizSubmission.vue:55 #: frontend/src/pages/QuizSubmission.vue:62
#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json
msgid "Marks out of" msgid "Marks out of"
msgstr "" msgstr ""
@@ -2911,7 +2903,7 @@ msgstr ""
msgid "Max Attempts" msgid "Max Attempts"
msgstr "Максимум попыток" msgstr "Максимум попыток"
#: frontend/src/pages/QuizForm.vue:57 #: frontend/src/pages/QuizForm.vue:58
msgid "Maximun Attempts" msgid "Maximun Attempts"
msgstr "" msgstr ""
@@ -2945,7 +2937,7 @@ msgstr "Средний:"
#. Label of the member (Link) field in DocType 'LMS Payment' #. Label of the member (Link) field in DocType 'LMS Payment'
#. Label of the member (Link) field in DocType 'LMS Program Member' #. Label of the member (Link) field in DocType 'LMS Program Member'
#. Label of the member (Link) field in DocType 'LMS Quiz Submission' #. Label of the member (Link) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizSubmission.vue:27 #: frontend/src/pages/QuizSubmission.vue:31
#: frontend/src/pages/QuizSubmissionList.vue:77 #: frontend/src/pages/QuizSubmissionList.vue:77
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
#: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json
@@ -3008,7 +3000,7 @@ msgstr "Подгруппа участников"
msgid "Member Type" msgid "Member Type"
msgstr "Тип участника" msgstr "Тип участника"
#: frontend/src/pages/ProgramForm.vue:248 #: frontend/src/pages/ProgramForm.vue:251
msgid "Member added to program" msgid "Member added to program"
msgstr "" msgstr ""
@@ -3173,19 +3165,19 @@ msgstr "Новая Вакансия"
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "Новый соискатель работы" msgstr "Новый соискатель работы"
#: frontend/src/pages/Programs.vue:96 #: frontend/src/pages/Programs.vue:107
msgid "New Program" msgid "New Program"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:132 #: frontend/src/pages/ProgramForm.vue:133
msgid "New Program Course" msgid "New Program Course"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:133 #: frontend/src/pages/ProgramForm.vue:134
msgid "New Program Member" msgid "New Program Member"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:122 #: frontend/src/pages/QuizForm.vue:123
msgid "New Question" msgid "New Question"
msgstr "" msgstr ""
@@ -3198,11 +3190,11 @@ msgstr ""
msgid "New Sign Up" msgid "New Sign Up"
msgstr "Новая регистрация" msgstr "Новая регистрация"
#: lms/lms/utils.py:627 #: lms/lms/utils.py:623
msgid "New comment in batch {0}" msgid "New comment in batch {0}"
msgstr "Новый комментарий в группе {0}" msgstr "Новый комментарий в группе {0}"
#: lms/lms/utils.py:620 #: lms/lms/utils.py:616
msgid "New reply on the topic {0} in course {1}" msgid "New reply on the topic {0} in course {1}"
msgstr "Новый ответ по теме {0} в курсе {1}" msgstr "Новый ответ по теме {0} в курсе {1}"
@@ -3256,7 +3248,7 @@ msgstr "Курсы не созданы"
msgid "No courses found" msgid "No courses found"
msgstr "" msgstr ""
#: frontend/src/pages/Programs.vue:72 #: frontend/src/pages/Programs.vue:83
msgid "No courses in this program" msgid "No courses in this program"
msgstr "" msgstr ""
@@ -3276,7 +3268,7 @@ msgstr "Вакансии не опубликованы"
msgid "No live classes scheduled" msgid "No live classes scheduled"
msgstr "Не запланированы онлайн-курсы" msgstr "Не запланированы онлайн-курсы"
#: frontend/src/pages/Programs.vue:82 #: frontend/src/pages/Programs.vue:93
msgid "No programs found" msgid "No programs found"
msgstr "" msgstr ""
@@ -3388,7 +3380,7 @@ msgstr "Как только модератор оценит вашу заявк
msgid "Online" msgid "Online"
msgstr "Online" msgstr "Online"
#: frontend/src/pages/ProgramForm.vue:156 #: frontend/src/pages/ProgramForm.vue:157
msgid "Only courses for which self learning is disabled can be added to program." msgid "Only courses for which self learning is disabled can be added to program."
msgstr "" msgstr ""
@@ -3396,7 +3388,7 @@ msgstr ""
msgid "Only files of type {0} will be accepted." msgid "Only files of type {0} will be accepted."
msgstr "Принимаются только файлы типа {0} ." msgstr "Принимаются только файлы типа {0} ."
#: frontend/src/pages/CourseForm.vue:497 frontend/src/utils/index.js:518 #: frontend/src/pages/CourseForm.vue:497 frontend/src/utils/index.js:520
msgid "Only image file is allowed." msgid "Only image file is allowed."
msgstr "" msgstr ""
@@ -3432,7 +3424,7 @@ msgid "Open Network"
msgstr "Открытая сеть" msgstr "Открытая сеть"
#. Label of the option (Data) field in DocType 'LMS Option' #. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:63 #: frontend/src/components/Modals/Question.vue:64
#: lms/lms/doctype/lms_option/lms_option.json #: lms/lms/doctype/lms_option/lms_option.json
msgid "Option" msgid "Option"
msgstr "Вариант" msgstr "Вариант"
@@ -3547,7 +3539,7 @@ msgstr "Пропустить"
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz' #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz'
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission' #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizForm.vue:71 frontend/src/pages/Quizzes.vue:125 #: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:125
#: lms/lms/doctype/lms_quiz/lms_quiz.json #: lms/lms/doctype/lms_quiz/lms_quiz.json
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
msgid "Passing Percentage" msgid "Passing Percentage"
@@ -3641,7 +3633,7 @@ msgid "Pending"
msgstr "" msgstr ""
#. Label of the percentage (Int) field in DocType 'LMS Quiz Submission' #. Label of the percentage (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizSubmission.vue:40 #: frontend/src/pages/QuizSubmission.vue:44
#: frontend/src/pages/QuizSubmissionList.vue:93 #: frontend/src/pages/QuizSubmissionList.vue:93
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
msgid "Percentage" msgid "Percentage"
@@ -3676,7 +3668,7 @@ msgstr "Пожалуйста, проверьте свой email для подт
msgid "Please click on the following button to set your new password" msgid "Please click on the following button to set your new password"
msgstr "Нажмите на следующую кнопку, чтобы установить новый пароль." msgstr "Нажмите на следующую кнопку, чтобы установить новый пароль."
#: lms/lms/utils.py:1817 lms/lms/utils.py:1821 #: lms/lms/utils.py:1824 lms/lms/utils.py:1828
msgid "Please complete the previous courses in the program to enroll in this course." msgid "Please complete the previous courses in the program to enroll in this course."
msgstr "" msgstr ""
@@ -3779,7 +3771,7 @@ msgstr "Пожалуйста, загрузите файл задания."
msgid "Point of Score (e.g. 70)" msgid "Point of Score (e.g. 70)"
msgstr "Балл (например, 70)" msgstr "Балл (например, 70)"
#: frontend/src/components/Modals/Question.vue:83 #: frontend/src/components/Modals/Question.vue:85
msgid "Possibility" msgid "Possibility"
msgstr "" msgstr ""
@@ -3875,7 +3867,7 @@ msgstr ""
msgid "Primary Subgroup" msgid "Primary Subgroup"
msgstr "Первичная подгруппа" msgstr "Первичная подгруппа"
#: lms/lms/utils.py:441 #: lms/lms/utils.py:437
msgid "Privacy Policy" msgid "Privacy Policy"
msgstr "Политика приватности" msgstr "Политика приватности"
@@ -3903,7 +3895,7 @@ msgstr ""
msgid "Profile Image" msgid "Profile Image"
msgstr "Изображение профиля" msgstr "Изображение профиля"
#: frontend/src/pages/ProgramForm.vue:154 #: frontend/src/pages/ProgramForm.vue:155
msgid "Program Course" msgid "Program Course"
msgstr "" msgstr ""
@@ -3913,12 +3905,12 @@ msgstr ""
msgid "Program Courses" msgid "Program Courses"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:169 #: frontend/src/pages/ProgramForm.vue:170
msgid "Program Member" msgid "Program Member"
msgstr "" msgstr ""
#. Label of the program_members (Table) field in DocType 'LMS Program' #. Label of the program_members (Table) field in DocType 'LMS Program'
#: frontend/src/pages/ProgramForm.vue:78 #: frontend/src/pages/ProgramForm.vue:79
#: lms/lms/doctype/lms_program/lms_program.json #: lms/lms/doctype/lms_program/lms_program.json
msgid "Program Members" msgid "Program Members"
msgstr "" msgstr ""
@@ -4001,11 +3993,11 @@ msgstr ""
msgid "Question Name" msgid "Question Name"
msgstr "Название вопроса" msgstr "Название вопроса"
#: frontend/src/components/Modals/Question.vue:261 #: frontend/src/components/Modals/Question.vue:264
msgid "Question added successfully" msgid "Question added successfully"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Question.vue:313 #: frontend/src/components/Modals/Question.vue:316
msgid "Question updated successfully" msgid "Question updated successfully"
msgstr "" msgstr ""
@@ -4018,7 +4010,7 @@ msgid "Question {0} of {1}"
msgstr "Вопрос {0} из {1}" msgstr "Вопрос {0} из {1}"
#. Label of the questions (Table) field in DocType 'LMS Quiz' #. Label of the questions (Table) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:116 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:117 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Questions" msgid "Questions"
msgstr "Вопросы" msgstr "Вопросы"
@@ -4028,7 +4020,7 @@ msgstr ""
#. Label of the quiz (Link) field in DocType 'LMS Quiz Submission' #. Label of the quiz (Link) field in DocType 'LMS Quiz Submission'
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#: frontend/src/pages/QuizSubmission.vue:22 #: frontend/src/pages/QuizSubmission.vue:26
#: frontend/src/pages/QuizSubmissionList.vue:82 frontend/src/utils/quiz.js:24 #: frontend/src/pages/QuizSubmissionList.vue:82 frontend/src/utils/quiz.js:24
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
#: lms/lms/workspace/lms/lms.json #: lms/lms/workspace/lms/lms.json
@@ -4046,7 +4038,7 @@ msgstr "ID теста"
msgid "Quiz Submission" msgid "Quiz Submission"
msgstr "Подача теста" msgstr "Подача теста"
#: frontend/src/pages/QuizSubmission.vue:98 #: frontend/src/pages/QuizSubmission.vue:122
#: frontend/src/pages/QuizSubmissionList.vue:102 #: frontend/src/pages/QuizSubmissionList.vue:102
msgid "Quiz Submissions" msgid "Quiz Submissions"
msgstr "" msgstr ""
@@ -4315,7 +4307,7 @@ msgid "Scope"
msgstr "Объем" msgstr "Объем"
#. Label of the score (Int) field in DocType 'LMS Quiz Submission' #. Label of the score (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizSubmission.vue:35 #: frontend/src/pages/QuizSubmission.vue:39
#: frontend/src/pages/QuizSubmissionList.vue:87 #: frontend/src/pages/QuizSubmissionList.vue:87
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
#: lms/templates/quiz/quiz.html:148 #: lms/templates/quiz/quiz.html:148
@@ -4352,7 +4344,7 @@ msgstr "Сиденье слева"
msgid "Seats Left" msgid "Seats Left"
msgstr "Осталось мест" msgstr "Осталось мест"
#: frontend/src/components/Modals/Question.vue:91 #: frontend/src/components/Modals/Question.vue:94
msgid "Select a question" msgid "Select a question"
msgstr "" msgstr ""
@@ -4381,7 +4373,7 @@ msgstr "Введите свой пароль"
#: frontend/src/components/Modals/Settings.vue:7 #: frontend/src/components/Modals/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:165 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:79
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
@@ -4405,12 +4397,12 @@ msgid "Show Answer"
msgstr "Показать ответ" msgstr "Показать ответ"
#. Label of the show_answers (Check) field in DocType 'LMS Quiz' #. Label of the show_answers (Check) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:84 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:85 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Show Answers" msgid "Show Answers"
msgstr "Показать ответы" msgstr "Показать ответы"
#. Label of the show_submission_history (Check) field in DocType 'LMS Quiz' #. Label of the show_submission_history (Check) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:89 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:90 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Show Submission History" msgid "Show Submission History"
msgstr "Показать историю" msgstr "Показать историю"
@@ -4435,11 +4427,11 @@ msgid "Show live class"
msgstr "Показать онлайн урок" msgstr "Показать онлайн урок"
#. Label of the shuffle_questions (Check) field in DocType 'LMS Quiz' #. Label of the shuffle_questions (Check) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:102 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:103 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Shuffle Questions" msgid "Shuffle Questions"
msgstr "Перемешать вопросы" msgstr "Перемешать вопросы"
#: frontend/src/pages/QuizForm.vue:96 #: frontend/src/pages/QuizForm.vue:97
msgid "Shuffle Settings" msgid "Shuffle Settings"
msgstr "" msgstr ""
@@ -4635,7 +4627,7 @@ msgstr "Статистика"
#. Label of the status (Select) field in DocType 'LMS Course Progress' #. Label of the status (Select) field in DocType 'LMS Course Progress'
#. Label of the status (Select) field in DocType 'LMS Mentor Request' #. Label of the status (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:91 #: frontend/src/components/Modals/Event.vue:91
#: frontend/src/pages/JobCreation.vue:35 #: frontend/src/pages/JobCreation.vue:41
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_join_request/cohort_join_request.json #: lms/lms/doctype/cohort_join_request/cohort_join_request.json
@@ -4727,7 +4719,7 @@ msgstr ""
#: frontend/src/components/Modals/AssessmentModal.vue:9 #: frontend/src/components/Modals/AssessmentModal.vue:9
#: frontend/src/components/Modals/BatchCourseModal.vue:9 #: frontend/src/components/Modals/BatchCourseModal.vue:9
#: frontend/src/components/Modals/EvaluationModal.vue:9 #: frontend/src/components/Modals/EvaluationModal.vue:9
#: frontend/src/components/Modals/Question.vue:335 #: frontend/src/components/Modals/Question.vue:338
#: frontend/src/components/Quiz.vue:214 lms/templates/assignment.html:9 #: frontend/src/components/Quiz.vue:214 lms/templates/assignment.html:9
#: lms/templates/livecode/extension_footer.html:25 #: lms/templates/livecode/extension_footer.html:25
#: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163 #: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163
@@ -4754,12 +4746,12 @@ msgstr "Отправлено {0}"
#: frontend/src/components/Modals/ChapterModal.vue:198 #: frontend/src/components/Modals/ChapterModal.vue:198
#: 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:264
#: frontend/src/components/Modals/Question.vue:312 #: frontend/src/components/Modals/Question.vue:315
#: frontend/src/pages/CourseForm.vue:460 frontend/src/pages/ProgramForm.vue:226 #: frontend/src/pages/CourseForm.vue:460 frontend/src/pages/ProgramForm.vue:229
#: frontend/src/pages/ProgramForm.vue:248 #: frontend/src/pages/ProgramForm.vue:251
#: frontend/src/pages/ProgramForm.vue:269 #: frontend/src/pages/ProgramForm.vue:272
#: frontend/src/pages/ProgramForm.vue:295 frontend/src/pages/QuizForm.vue:343 #: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:343
#: frontend/src/pages/QuizForm.vue:362 frontend/src/pages/QuizForm.vue:431 #: frontend/src/pages/QuizForm.vue:362 frontend/src/pages/QuizForm.vue:431
msgid "Success" msgid "Success"
msgstr "" msgstr ""
@@ -4856,7 +4848,7 @@ msgstr ""
msgid "Temporarily Disabled" msgid "Temporarily Disabled"
msgstr "Временно отключен" msgstr "Временно отключен"
#: lms/lms/utils.py:440 #: lms/lms/utils.py:436
msgid "Terms of Use" msgid "Terms of Use"
msgstr "Условия использования" msgstr "Условия использования"
@@ -4920,7 +4912,7 @@ msgstr ""
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!" msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr "" msgstr ""
#: frontend/src/pages/Programs.vue:86 #: frontend/src/pages/Programs.vue:97
msgid "There are no programs available at the moment. Keep an eye out, fresh learning experiences are on the way soon!" msgid "There are no programs available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr "" msgstr ""
@@ -4936,6 +4928,10 @@ msgstr "В этой группе нет студентов."
msgid "There are no {0} on this site." msgid "There are no {0} on this site."
msgstr "На этом сайте нет {0} ." msgstr "На этом сайте нет {0} ."
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:41
msgid "There has been an update on your submission. You have got a score of {0} for the quiz {1}"
msgstr ""
#. Description of the 'section_break_ubxi' (Section Break) field in DocType #. Description of the 'section_break_ubxi' (Section Break) field in DocType
#. 'LMS Batch' #. 'LMS Batch'
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
@@ -4955,7 +4951,7 @@ msgstr "Этот сертификат является бессрочным"
msgid "This course has:" msgid "This course has:"
msgstr "" msgstr ""
#: lms/lms/utils.py:1585 #: lms/lms/utils.py:1582
msgid "This course is free." msgid "This course is free."
msgstr "Этот курс бесплатный." msgstr "Этот курс бесплатный."
@@ -5060,7 +5056,7 @@ msgstr "Сроки:"
#: frontend/src/components/Modals/LiveClassModal.vue:23 #: frontend/src/components/Modals/LiveClassModal.vue:23
#: frontend/src/pages/BatchForm.vue:20 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/ProgramForm.vue:11 #: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/ProgramForm.vue:11
#: frontend/src/pages/Programs.vue:107 frontend/src/pages/QuizForm.vue:48 #: frontend/src/pages/Programs.vue:118 frontend/src/pages/QuizForm.vue:48
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json #: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json
@@ -5097,7 +5093,7 @@ msgstr ""
msgid "To Date" msgid "To Date"
msgstr "" msgstr ""
#: lms/lms/utils.py:1596 #: 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 "Чтобы присоединиться к этой группе, свяжитесь с администратором."
@@ -5114,7 +5110,7 @@ msgid "Total"
msgstr "" msgstr ""
#. Label of the total_marks (Int) field in DocType 'LMS Quiz' #. Label of the total_marks (Int) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:66 frontend/src/pages/Quizzes.vue:119 #: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:119
#: lms/lms/doctype/lms_quiz/lms_quiz.json #: lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Total Marks" msgid "Total Marks"
msgstr "Всего задач" msgstr "Всего задач"
@@ -5151,7 +5147,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/Jobs.vue:16 #: frontend/src/pages/JobCreation.vue:33 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
@@ -5515,6 +5511,10 @@ msgstr ""
msgid "You have been enrolled in this course" msgid "You have been enrolled in this course"
msgstr "" msgstr ""
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:38
msgid "You have got a score of {0} for the quiz {1}"
msgstr ""
#: frontend/src/pages/Quizzes.vue:60 #: frontend/src/pages/Quizzes.vue:60
msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above." msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above."
msgstr "" msgstr ""
@@ -5685,7 +5685,7 @@ msgstr "{0} уже сертифицирован для курса {1}"
msgid "{0} is your evaluator" msgid "{0} is your evaluator"
msgstr "" msgstr ""
#: lms/lms/utils.py:704 #: lms/lms/utils.py:700
msgid "{0} mentioned you in a comment" msgid "{0} mentioned you in a comment"
msgstr "{0} упомянул вас в комментарии" msgstr "{0} упомянул вас в комментарии"
@@ -5693,11 +5693,11 @@ msgstr "{0} упомянул вас в комментарии"
msgid "{0} mentioned you in a comment in your batch." msgid "{0} mentioned you in a comment in your batch."
msgstr "{0} упомянул вас в комментарии в вашей группе." msgstr "{0} упомянул вас в комментарии в вашей группе."
#: lms/lms/utils.py:657 lms/lms/utils.py:663 #: lms/lms/utils.py:653 lms/lms/utils.py:659
msgid "{0} mentioned you in a comment in {1}" msgid "{0} mentioned you in a comment in {1}"
msgstr "{0} упомянул вас в комментарии в {1}" msgstr "{0} упомянул вас в комментарии в {1}"
#: lms/lms/utils.py:480 #: lms/lms/utils.py:476
msgid "{0}k" msgid "{0}k"
msgstr "{0}k" msgstr "{0}k"

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-11-22 16:05+0000\n" "POT-Creation-Date: 2024-11-29 16:04+0000\n"
"PO-Revision-Date: 2024-11-26 19:27\n" "PO-Revision-Date: 2024-12-02 22:10\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"
@@ -105,7 +105,7 @@ msgstr "Aktiv"
#: frontend/src/components/Categories.vue:26 #: frontend/src/components/Categories.vue:26
#: frontend/src/components/LiveClass.vue:11 #: frontend/src/components/LiveClass.vue:11
#: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30 #: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30
#: frontend/src/pages/ProgramForm.vue:91 frontend/src/pages/ProgramForm.vue:136 #: frontend/src/pages/ProgramForm.vue:92 frontend/src/pages/ProgramForm.vue:137
msgid "Add" msgid "Add"
msgstr "Lägg till" msgstr "Lägg till"
@@ -147,8 +147,8 @@ msgstr "Lägg till kurs"
msgid "Add a lesson" msgid "Add a lesson"
msgstr "Lägg till Lektion" msgstr "Lägg till Lektion"
#: frontend/src/components/Modals/Question.vue:141 #: frontend/src/components/Modals/Question.vue:144
#: frontend/src/pages/QuizForm.vue:182 #: frontend/src/pages/QuizForm.vue:183
msgid "Add a new question" msgid "Add a new question"
msgstr "Lägg till ny fråga" msgstr "Lägg till ny fråga"
@@ -269,7 +269,7 @@ msgstr "Belopp Fält"
#: lms/lms/doctype/lms_batch/lms_batch.py:70 #: lms/lms/doctype/lms_batch/lms_batch.py:70
msgid "Amount and currency are required for paid batches." msgid "Amount and currency are required for paid batches."
msgstr "Belopp och valuta erfordras för betalda omgångar." msgstr "Belopp och valuta erfordras för betalda grupper."
#: lms/lms/doctype/lms_course/lms_course.py:57 #: lms/lms/doctype/lms_course/lms_course.py:57
msgid "Amount and currency are required for paid courses." msgid "Amount and currency are required for paid courses."
@@ -304,7 +304,7 @@ msgstr "Visas på kurskort i kurslista"
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/BatchForm.vue:77 #: 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 grupp URL delas på valfri online plattform"
#: frontend/src/pages/JobDetail.vue:131 #: frontend/src/pages/JobDetail.vue:131
msgid "Applications Received" msgid "Applications Received"
@@ -370,7 +370,7 @@ msgstr "Bedömning tillagd"
#: lms/lms/doctype/lms_batch/lms_batch.py:80 #: lms/lms/doctype/lms_batch/lms_batch.py:80
msgid "Assessment {0} has already been added to this batch." msgid "Assessment {0} has already been added to this batch."
msgstr "Bedömning {0} har redan lagts till i denna omgång." msgstr "Bedömning {0} har redan lagts till i denna grupp."
#. Label of the show_assessments (Check) field in DocType 'LMS Settings' #. Label of the show_assessments (Check) field in DocType 'LMS Settings'
#: frontend/src/components/Assessments.vue:5 #: frontend/src/components/Assessments.vue:5
@@ -482,7 +482,7 @@ msgstr "Parti"
#. Settings' #. Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Batch Confirmation Template" msgid "Batch Confirmation Template"
msgstr "Omgång Bekräftelse Mall" msgstr "Grupp Bekräftelse Mall"
#. Name of a DocType #. Name of a DocType
#: lms/lms/doctype/batch_course/batch_course.json #: lms/lms/doctype/batch_course/batch_course.json
@@ -556,7 +556,7 @@ msgstr "Grupp Studerande"
#. Label of the batch_title (Data) field in DocType 'LMS Certificate Request' #. Label of the batch_title (Data) field in DocType 'LMS Certificate Request'
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
msgid "Batch Title" msgid "Batch Title"
msgstr "Omgång Titel" msgstr "Grupp Titel"
#: lms/public/js/common_functions.js:427 #: lms/public/js/common_functions.js:427
msgid "Batch Updated" msgid "Batch Updated"
@@ -564,14 +564,14 @@ msgstr "Grupp Uppdaterad"
#: lms/lms/doctype/lms_batch/lms_batch.py:41 #: lms/lms/doctype/lms_batch/lms_batch.py:41
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 "Grupp slutdatum får inte vara före grupp startdatum"
#. 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
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:60 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:60
msgid "Batches" msgid "Batches"
msgstr "Omgångar" msgstr "Grupper"
#. Label of the begin_date (Date) field in DocType 'Cohort' #. Label of the begin_date (Date) field in DocType 'Cohort'
#: lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/cohort/cohort.json
@@ -733,7 +733,7 @@ msgstr "Certifierade Deltagare"
#: lms/templates/assignment.html:13 #: lms/templates/assignment.html:13
msgid "Change" msgid "Change"
msgstr "Ändra" msgstr "Växel"
#. Label of the chapter (Link) field in DocType 'Chapter Reference' #. Label of the chapter (Link) field in DocType 'Chapter Reference'
#. Label of the chapter (Link) field in DocType 'LMS Course Progress' #. Label of the chapter (Link) field in DocType 'LMS Course Progress'
@@ -922,25 +922,25 @@ msgstr "Bolag"
#. Label of the company_details_section (Section Break) field in DocType 'Job #. Label of the company_details_section (Section Break) field in DocType 'Job
#. Opportunity' #. Opportunity'
#: frontend/src/pages/JobCreation.vue:56 #: frontend/src/pages/JobCreation.vue:64
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Details" msgid "Company Details"
msgstr "Bolag Detaljer" msgstr "Bolag Detaljer"
#. Label of the company_email_address (Data) field in DocType 'Job Opportunity' #. Label of the company_email_address (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobCreation.vue:73 #: frontend/src/pages/JobCreation.vue:83
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Email Address" msgid "Company Email Address"
msgstr "Bolag E-post Adress" msgstr "Bolag E-post Adress"
#. Label of the company_logo (Attach Image) field in DocType 'Job Opportunity' #. Label of the company_logo (Attach Image) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobCreation.vue:77 #: frontend/src/pages/JobCreation.vue:88
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Logo" msgid "Company Logo"
msgstr "Bolag Logotyp" msgstr "Bolag Logotyp"
#. Label of the company_name (Data) field in DocType 'Job Opportunity' #. Label of the company_name (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobCreation.vue:62 #: frontend/src/pages/JobCreation.vue:70
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Name" msgid "Company Name"
msgstr "Bolag Namn" msgstr "Bolag Namn"
@@ -951,7 +951,7 @@ msgid "Company Type"
msgstr "Bolagstyp" msgstr "Bolagstyp"
#. Label of the company_website (Data) field in DocType 'Job Opportunity' #. Label of the company_website (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobCreation.vue:67 #: frontend/src/pages/JobCreation.vue:76
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Website" msgid "Company Website"
msgstr "Bolag Webbplats" msgstr "Bolag Webbplats"
@@ -1025,7 +1025,7 @@ msgstr "Fortsätt lära dig"
msgid "Contract" msgid "Contract"
msgstr "Avtal" msgstr "Avtal"
#: lms/lms/utils.py:442 #: lms/lms/utils.py:438
msgid "Cookie Policy" msgid "Cookie Policy"
msgstr "Princip för Kakor" msgstr "Princip för Kakor"
@@ -1047,7 +1047,7 @@ msgstr "Organisation"
msgid "Correct" msgid "Correct"
msgstr "Korrekt" msgstr "Korrekt"
#: frontend/src/components/Modals/Question.vue:71 #: frontend/src/components/Modals/Question.vue:73
msgid "Correct Answer" msgid "Correct Answer"
msgstr "Rätt Svar" msgstr "Rätt Svar"
@@ -1218,19 +1218,19 @@ msgstr "Kursstatistik"
msgid "Course Title" msgid "Course Title"
msgstr "Kurstitel" msgstr "Kurstitel"
#: frontend/src/pages/ProgramForm.vue:226 #: frontend/src/pages/ProgramForm.vue:229
msgid "Course added to program" msgid "Course added to program"
msgstr "Kurs tillagd till program" msgstr "Kurs tillagd till program"
#: lms/lms/doctype/lms_batch/lms_batch.py:345 #: lms/lms/doctype/lms_batch/lms_batch.py:345
msgid "Course already added to the batch." msgid "Course already added to the batch."
msgstr "Kursen har redan lagts till i omgång." msgstr "Kurs har redan lagts till grupp."
#: frontend/src/pages/CourseForm.vue:460 #: frontend/src/pages/CourseForm.vue:460
msgid "Course deleted successfully" msgid "Course deleted successfully"
msgstr "Kurs är borttagen" msgstr "Kurs är borttagen"
#: frontend/src/pages/ProgramForm.vue:295 #: frontend/src/pages/ProgramForm.vue:298
msgid "Course moved successfully" msgid "Course moved successfully"
msgstr "Kurs flyttad" msgstr "Kurs flyttad"
@@ -1270,7 +1270,7 @@ msgid "Cover Image"
msgstr "Omslagsbild" msgstr "Omslagsbild"
#: frontend/src/components/Modals/ChapterModal.vue:9 #: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/pages/Programs.vue:99 #: frontend/src/pages/Programs.vue:110
msgid "Create" msgid "Create"
msgstr "Skapa" msgstr "Skapa"
@@ -1284,7 +1284,7 @@ msgstr "Skapa Certifikat Utvärdering"
#: frontend/src/pages/Batches.vue:110 #: frontend/src/pages/Batches.vue:110
msgid "Create a Batch" msgid "Create a Batch"
msgstr "Skapa Omgång" msgstr "Skapa Grupp"
#: frontend/src/pages/Courses.vue:132 lms/templates/onboarding_header.html:19 #: frontend/src/pages/Courses.vue:132 lms/templates/onboarding_header.html:19
msgid "Create a Course" msgid "Create a Course"
@@ -1446,7 +1446,7 @@ msgstr "Borttagning av denna lektion kommer att ta bort den permanent från kurs
#. 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:78 #: frontend/src/components/Modals/LiveClassModal.vue:78
#: frontend/src/pages/BatchForm.vue:96 frontend/src/pages/JobCreation.vue:43 #: frontend/src/pages/BatchForm.vue:96 frontend/src/pages/JobCreation.vue:50
#: 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
@@ -1489,7 +1489,7 @@ msgstr "Inaktiverad"
#: frontend/src/components/DiscussionReplies.vue:55 #: frontend/src/components/DiscussionReplies.vue:55
#: lms/lms/widgets/NoPreviewModal.html:25 lms/templates/reviews.html:159 #: lms/lms/widgets/NoPreviewModal.html:25 lms/templates/reviews.html:159
msgid "Discard" msgid "Discard"
msgstr "Avvisa" msgstr "Förkasta"
#. 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:73 #: frontend/src/pages/Batch.vue:73
@@ -1527,7 +1527,7 @@ msgstr "Duplicerade alternativ hittades för denna fråga."
msgid "Duration" msgid "Duration"
msgstr "Varaktighet" msgstr "Varaktighet"
#: frontend/src/pages/QuizForm.vue:62 #: frontend/src/pages/QuizForm.vue:63
msgid "Duration (in minutes)" msgid "Duration (in minutes)"
msgstr "Varaktighet (i minuter)" msgstr "Varaktighet (i minuter)"
@@ -1562,7 +1562,7 @@ msgstr "Redigera Kapitel"
msgid "Edit Profile" msgid "Edit Profile"
msgstr "Redigera Profil" msgstr "Redigera Profil"
#: frontend/src/pages/QuizForm.vue:181 #: frontend/src/pages/QuizForm.vue:182
msgid "Edit the question" msgid "Edit the question"
msgstr "Redigera fråga" msgstr "Redigera fråga"
@@ -1686,14 +1686,14 @@ msgstr "Inskriven"
#: lms/lms/doctype/lms_batch/lms_batch.py:103 #: lms/lms/doctype/lms_batch/lms_batch.py:103
msgid "Enrollment Confirmation for the Next Training Batch" msgid "Enrollment Confirmation for the Next Training Batch"
msgstr "Inskrivining bekräftelse för nästa omgång utbildning" msgstr "Inskrivning bekräftelse för nästa grupp utbildning"
#: lms/lms/web_template/lms_statistics/lms_statistics.html:14 #: lms/lms/web_template/lms_statistics/lms_statistics.html:14
#: lms/templates/statistics.html:20 #: lms/templates/statistics.html:20
msgid "Enrollment Count" msgid "Enrollment Count"
msgstr "Antal Inskrivna" msgstr "Antal Inskrivna"
#: lms/lms/utils.py:1705 #: lms/lms/utils.py:1702
msgid "Enrollment Failed" msgid "Enrollment Failed"
msgstr "Registrering Misslyckad" msgstr "Registrering Misslyckad"
@@ -1725,12 +1725,12 @@ msgstr "Ange korrekt svar"
#: frontend/src/components/Modals/ChapterModal.vue:159 #: frontend/src/components/Modals/ChapterModal.vue:159
#: frontend/src/components/Modals/ChapterModal.vue:166 #: frontend/src/components/Modals/ChapterModal.vue:166
#: frontend/src/components/Modals/ChapterModal.vue:202 #: frontend/src/components/Modals/ChapterModal.vue:202
#: frontend/src/components/Modals/Question.vue:246 #: frontend/src/components/Modals/Question.vue:249
#: frontend/src/components/Modals/Question.vue:266 #: frontend/src/components/Modals/Question.vue:269
#: frontend/src/components/Modals/Question.vue:323 #: frontend/src/components/Modals/Question.vue:326
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350 #: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350
#: frontend/src/pages/QuizForm.vue:365 #: frontend/src/pages/QuizForm.vue:365
#: frontend/src/pages/QuizSubmission.vue:117 #: frontend/src/pages/QuizSubmission.vue:141
msgid "Error" msgid "Error"
msgstr "Fel" msgstr "Fel"
@@ -1760,7 +1760,7 @@ msgstr "Utvärdering Begäran"
#: lms/lms/doctype/lms_batch/lms_batch.py:87 #: lms/lms/doctype/lms_batch/lms_batch.py:87
msgid "Evaluation end date cannot be less than the batch end date." msgid "Evaluation end date cannot be less than the batch end date."
msgstr "Utvärdering slutdatum får inte vara tidigare än omgång slutdatum." msgstr "Utvärdering slutdatum får inte vara tidigare än grupp slutdatum."
#: frontend/src/components/Modals/Event.vue:255 #: frontend/src/components/Modals/Event.vue:255
msgid "Evaluation saved successfully" msgid "Evaluation saved successfully"
@@ -1858,7 +1858,7 @@ msgstr "Utgång Datum"
#. Label of the explanation_1 (Small Text) field in DocType 'LMS Question' #. Label of the explanation_1 (Small Text) field in DocType 'LMS Question'
#. Label of the explanation_3 (Small Text) field in DocType 'LMS Question' #. Label of the explanation_3 (Small Text) field in DocType 'LMS Question'
#. Label of the explanation_4 (Small Text) field in DocType 'LMS Question' #. Label of the explanation_4 (Small Text) field in DocType 'LMS Question'
#: frontend/src/components/Modals/Question.vue:67 #: frontend/src/components/Modals/Question.vue:69
#: lms/lms/doctype/lms_question/lms_question.json #: lms/lms/doctype/lms_question/lms_question.json
msgid "Explanation" msgid "Explanation"
msgstr "Förklaring" msgstr "Förklaring"
@@ -2116,14 +2116,6 @@ msgstr "Värd"
msgid "How to add a Quiz?" msgid "How to add a Quiz?"
msgstr "Hur lägger man till Frågesport?" msgstr "Hur lägger man till Frågesport?"
#: frontend/src/components/LessonHelp.vue:47
msgid "How to add a YouTube Video?"
msgstr "Hur lägger man till YouTube video?"
#: frontend/src/components/LessonHelp.vue:28
msgid "How to upload content from your system?"
msgstr "Hur laddar man upp innehåll från system?"
#. Label of the current (Check) field in DocType 'Work Experience' #. Label of the current (Check) field in DocType 'Work Experience'
#: lms/lms/doctype/work_experience/work_experience.json #: lms/lms/doctype/work_experience/work_experience.json
msgid "I am currently working here" msgid "I am currently working here"
@@ -2202,7 +2194,7 @@ msgstr "Bild"
msgid "Image search powered by" msgid "Image search powered by"
msgstr "Bildsökning drivs av" msgstr "Bildsökning drivs av"
#: lms/lms/doctype/lms_quiz/lms_quiz.py:222 #: lms/lms/doctype/lms_quiz/lms_quiz.py:221
msgid "Image: Corrupted Data Stream" msgid "Image: Corrupted Data Stream"
msgstr "Bild: Skadad Dataström" msgstr "Bild: Skadad Dataström"
@@ -2388,7 +2380,7 @@ msgstr "Utfärdad"
msgid "Items in Sidebar" msgid "Items in Sidebar"
msgstr "Artiklar i Sidofält" msgstr "Artiklar i Sidofält"
#: frontend/src/pages/ProgramForm.vue:269 #: frontend/src/pages/ProgramForm.vue:272
msgid "Items removed successfully" msgid "Items removed successfully"
msgstr "Artiklar borttagna" msgstr "Artiklar borttagna"
@@ -2496,17 +2488,17 @@ msgstr "Emblem Tilldelning"
#: 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
msgid "LMS Batch" msgid "LMS Batch"
msgstr "Omgång" msgstr "Grupp"
#. Name of a DocType #. Name of a DocType
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
msgid "LMS Batch Old" msgid "LMS Batch Old"
msgstr "Omgång Gammal" msgstr "Gammal Grupp"
#. Name of a DocType #. Name of a DocType
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
msgid "LMS Batch Timetable" msgid "LMS Batch Timetable"
msgstr "Omgång Tidtabell" msgstr "Grupp Tidtabell"
#. Name of a DocType #. Name of a DocType
#: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_category/lms_category.json
@@ -2757,7 +2749,7 @@ msgid "Letter Grade (e.g. A, B-)"
msgstr "Bokstavsbetyg (t.ex. A, B-)" msgstr "Bokstavsbetyg (t.ex. A, B-)"
#. Label of the limit_questions_to (Int) field in DocType 'LMS Quiz' #. Label of the limit_questions_to (Int) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:107 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:108 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Limit Questions To" msgid "Limit Questions To"
msgstr "Begränsa frågor till" msgstr "Begränsa frågor till"
@@ -2807,7 +2799,7 @@ msgstr "Ladda Mer"
#: frontend/src/pages/Batches.vue:40 #: frontend/src/pages/Batches.vue:40
msgid "Loading Batches..." msgid "Loading Batches..."
msgstr "Laddar Omgångar..." msgstr "Laddar Grupper..."
#. Option for the 'Auto Recording' (Select) field in DocType 'LMS Live Class' #. Option for the 'Auto Recording' (Select) 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
@@ -2817,7 +2809,7 @@ msgstr "Lokal"
#. Label of the location (Data) field in DocType 'Job Opportunity' #. Label of the location (Data) field in DocType 'Job Opportunity'
#. Label of the location (Data) field in DocType 'Education Detail' #. Label of the location (Data) field in DocType 'Education Detail'
#. Label of the location (Data) field in DocType 'Work Experience' #. Label of the location (Data) field in DocType 'Work Experience'
#: frontend/src/pages/JobCreation.vue:23 frontend/src/pages/JobDetail.vue:89 #: frontend/src/pages/JobCreation.vue:26 frontend/src/pages/JobDetail.vue:89
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/education_detail/education_detail.json #: lms/lms/doctype/education_detail/education_detail.json
#: lms/lms/doctype/work_experience/work_experience.json #: lms/lms/doctype/work_experience/work_experience.json
@@ -2855,7 +2847,7 @@ msgstr "Se till att ange rätt faktureringsnamn eftersom det kommer att använda
#: frontend/src/components/BatchOverlay.vue:54 #: frontend/src/components/BatchOverlay.vue:54
msgid "Manage Batch" msgid "Manage Batch"
msgstr "Hantera Omgång" msgstr "Hantera Grupp"
#. Option for the 'Role' (Select) field in DocType 'Cohort Staff' #. Option for the 'Role' (Select) field in DocType 'Cohort Staff'
#: lms/lms/doctype/cohort_staff/cohort_staff.json #: lms/lms/doctype/cohort_staff/cohort_staff.json
@@ -2887,21 +2879,21 @@ msgstr "Markera som läst"
#. Label of the marks (Int) field in DocType 'LMS Quiz Question' #. Label of the marks (Int) field in DocType 'LMS Quiz Question'
#. Label of the marks (Int) field in DocType 'LMS Quiz Result' #. Label of the marks (Int) field in DocType 'LMS Quiz Result'
#: frontend/src/components/Modals/Question.vue:50 #: frontend/src/components/Modals/Question.vue:50
#: frontend/src/components/Modals/Question.vue:96 #: frontend/src/components/Modals/Question.vue:99
#: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:394 #: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:394
#: frontend/src/pages/QuizSubmission.vue:52 #: frontend/src/pages/QuizSubmission.vue:59
#: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json #: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json
#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json
#: lms/templates/quiz/quiz.html:59 #: lms/templates/quiz/quiz.html:59
msgid "Marks" msgid "Marks"
msgstr "Märken" msgstr "Märken"
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:19 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:23
msgid "Marks for question number {0} cannot be greater than the marks allotted for that question." msgid "Marks for question number {0} cannot be greater than the marks allotted for that question."
msgstr "Poängen för fråga nummer {0} får inte vara högre än de poäng som tilldelats för denna fråga." msgstr "Poängen för fråga nummer {0} får inte vara högre än de poäng som tilldelats för denna fråga."
#. Label of the marks_out_of (Int) field in DocType 'LMS Quiz Result' #. Label of the marks_out_of (Int) field in DocType 'LMS Quiz Result'
#: frontend/src/pages/QuizSubmission.vue:55 #: frontend/src/pages/QuizSubmission.vue:62
#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json
msgid "Marks out of" msgid "Marks out of"
msgstr "Poäng utav" msgstr "Poäng utav"
@@ -2911,7 +2903,7 @@ msgstr "Poäng utav"
msgid "Max Attempts" msgid "Max Attempts"
msgstr "Maximalt antal försök" msgstr "Maximalt antal försök"
#: frontend/src/pages/QuizForm.vue:57 #: frontend/src/pages/QuizForm.vue:58
msgid "Maximun Attempts" msgid "Maximun Attempts"
msgstr "Maximalt antal försök" msgstr "Maximalt antal försök"
@@ -2945,7 +2937,7 @@ msgstr "Medium:"
#. Label of the member (Link) field in DocType 'LMS Payment' #. Label of the member (Link) field in DocType 'LMS Payment'
#. Label of the member (Link) field in DocType 'LMS Program Member' #. Label of the member (Link) field in DocType 'LMS Program Member'
#. Label of the member (Link) field in DocType 'LMS Quiz Submission' #. Label of the member (Link) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizSubmission.vue:27 #: frontend/src/pages/QuizSubmission.vue:31
#: frontend/src/pages/QuizSubmissionList.vue:77 #: frontend/src/pages/QuizSubmissionList.vue:77
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
#: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json
@@ -3008,13 +3000,13 @@ msgstr "Medlem Undergrupp"
msgid "Member Type" msgid "Member Type"
msgstr "Medlem Typ" msgstr "Medlem Typ"
#: frontend/src/pages/ProgramForm.vue:248 #: frontend/src/pages/ProgramForm.vue:251
msgid "Member added to program" msgid "Member added to program"
msgstr "Medlem tillagd till program" msgstr "Medlem tillagd till program"
#: lms/lms/doctype/lms_program/lms_program.py:29 #: lms/lms/doctype/lms_program/lms_program.py:29
msgid "Member {0} has already been added to this batch." msgid "Member {0} has already been added to this batch."
msgstr "Medlem {0} har redan lagts till i denna omgång." msgstr "Medlem {0} har redan lagts till denna grupp."
#. Group in LMS Batch Old's connections #. Group in LMS Batch Old's connections
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -3173,19 +3165,19 @@ msgstr "Nya Jobb"
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "Ny Jobb Sökande" msgstr "Ny Jobb Sökande"
#: frontend/src/pages/Programs.vue:96 #: frontend/src/pages/Programs.vue:107
msgid "New Program" msgid "New Program"
msgstr "Ny Program" msgstr "Ny Program"
#: frontend/src/pages/ProgramForm.vue:132 #: frontend/src/pages/ProgramForm.vue:133
msgid "New Program Course" msgid "New Program Course"
msgstr "Ny Program Kurs" msgstr "Ny Program Kurs"
#: frontend/src/pages/ProgramForm.vue:133 #: frontend/src/pages/ProgramForm.vue:134
msgid "New Program Member" msgid "New Program Member"
msgstr "Ny Program Medlem" msgstr "Ny Program Medlem"
#: frontend/src/pages/QuizForm.vue:122 #: frontend/src/pages/QuizForm.vue:123
msgid "New Question" msgid "New Question"
msgstr "Ny Fråga" msgstr "Ny Fråga"
@@ -3198,11 +3190,11 @@ msgstr "Nytt Frågesport"
msgid "New Sign Up" msgid "New Sign Up"
msgstr "Ny Registrering" msgstr "Ny Registrering"
#: lms/lms/utils.py:627 #: lms/lms/utils.py:623
msgid "New comment in batch {0}" msgid "New comment in batch {0}"
msgstr "Ny kommentar i omgång {0}" msgstr "Ny kommentar i grupp {0}"
#: lms/lms/utils.py:620 #: lms/lms/utils.py:616
msgid "New reply on the topic {0} in course {1}" msgid "New reply on the topic {0} in course {1}"
msgstr "Nytt svar i ämne {0} i kurs {1}" msgstr "Nytt svar i ämne {0} i kurs {1}"
@@ -3242,7 +3234,7 @@ msgstr "Inga tillkännagivanden"
#: frontend/src/pages/Batches.vue:125 #: frontend/src/pages/Batches.vue:125
msgid "No batches found" msgid "No batches found"
msgstr "Inga omgångar hittades" msgstr "Inga grupper hittades"
#: lms/templates/certificates_section.html:23 #: lms/templates/certificates_section.html:23
msgid "No certificates" msgid "No certificates"
@@ -3256,7 +3248,7 @@ msgstr "Inga kurser skapade"
msgid "No courses found" msgid "No courses found"
msgstr "Inga kurser hittades" msgstr "Inga kurser hittades"
#: frontend/src/pages/Programs.vue:72 #: frontend/src/pages/Programs.vue:83
msgid "No courses in this program" msgid "No courses in this program"
msgstr "Inga kurser i detta program" msgstr "Inga kurser i detta program"
@@ -3276,7 +3268,7 @@ msgstr "Inga jobb utannonserade"
msgid "No live classes scheduled" msgid "No live classes scheduled"
msgstr "Inga live lektioner schemalagda" msgstr "Inga live lektioner schemalagda"
#: frontend/src/pages/Programs.vue:82 #: frontend/src/pages/Programs.vue:93
msgid "No programs found" msgid "No programs found"
msgstr "Inga program hittades" msgstr "Inga program hittades"
@@ -3298,7 +3290,7 @@ msgstr "Ingen {0}"
#: frontend/src/pages/Batches.vue:84 #: frontend/src/pages/Batches.vue:84
msgid "No {0} batches" msgid "No {0} batches"
msgstr "Inga {0} omgångar" msgstr "Inga {0} grupper"
#: frontend/src/pages/Courses.vue:107 #: frontend/src/pages/Courses.vue:107
msgid "No {0} courses" msgid "No {0} courses"
@@ -3388,7 +3380,7 @@ msgstr "När moderator betygsatt din inlämning, hittar du detaljerna här."
msgid "Online" msgid "Online"
msgstr "Uppkopplad" msgstr "Uppkopplad"
#: frontend/src/pages/ProgramForm.vue:156 #: frontend/src/pages/ProgramForm.vue:157
msgid "Only courses for which self learning is disabled can be added to program." msgid "Only courses for which self learning is disabled can be added to program."
msgstr "Endast kurser för vilka självinlärning är inaktiverat kan läggas till program." msgstr "Endast kurser för vilka självinlärning är inaktiverat kan läggas till program."
@@ -3396,7 +3388,7 @@ msgstr "Endast kurser för vilka självinlärning är inaktiverat kan läggas ti
msgid "Only files of type {0} will be accepted." msgid "Only files of type {0} will be accepted."
msgstr "Endast filer av typ {0} kommer att accepteras." msgstr "Endast filer av typ {0} kommer att accepteras."
#: frontend/src/pages/CourseForm.vue:497 frontend/src/utils/index.js:518 #: frontend/src/pages/CourseForm.vue:497 frontend/src/utils/index.js:520
msgid "Only image file is allowed." msgid "Only image file is allowed."
msgstr "Endast bildfiler är tillåtna." msgstr "Endast bildfiler är tillåtna."
@@ -3432,7 +3424,7 @@ msgid "Open Network"
msgstr "Öppna Nätverk" msgstr "Öppna Nätverk"
#. Label of the option (Data) field in DocType 'LMS Option' #. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:63 #: frontend/src/components/Modals/Question.vue:64
#: lms/lms/doctype/lms_option/lms_option.json #: lms/lms/doctype/lms_option/lms_option.json
msgid "Option" msgid "Option"
msgstr "Alternativ" msgstr "Alternativ"
@@ -3547,7 +3539,7 @@ msgstr "Lösenord"
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz' #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz'
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission' #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizForm.vue:71 frontend/src/pages/Quizzes.vue:125 #: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:125
#: lms/lms/doctype/lms_quiz/lms_quiz.json #: lms/lms/doctype/lms_quiz/lms_quiz.json
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
msgid "Passing Percentage" msgid "Passing Percentage"
@@ -3641,7 +3633,7 @@ msgid "Pending"
msgstr "Pågående" msgstr "Pågående"
#. Label of the percentage (Int) field in DocType 'LMS Quiz Submission' #. Label of the percentage (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizSubmission.vue:40 #: frontend/src/pages/QuizSubmission.vue:44
#: frontend/src/pages/QuizSubmissionList.vue:93 #: frontend/src/pages/QuizSubmissionList.vue:93
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
msgid "Percentage" msgid "Percentage"
@@ -3676,7 +3668,7 @@ msgstr "Kontrollera din E-post för verifiering"
msgid "Please click on the following button to set your new password" msgid "Please click on the following button to set your new password"
msgstr "Klicka på följande knapp för att ange ditt nya lösenord" msgstr "Klicka på följande knapp för att ange ditt nya lösenord"
#: lms/lms/utils.py:1817 lms/lms/utils.py:1821 #: lms/lms/utils.py:1824 lms/lms/utils.py:1828
msgid "Please complete the previous courses in the program to enroll in this course." msgid "Please complete the previous courses in the program to enroll in this course."
msgstr "Slutför tidigare kurser i program för att anmäla dig till denna kurs." msgstr "Slutför tidigare kurser i program för att anmäla dig till denna kurs."
@@ -3715,7 +3707,7 @@ msgstr "Ange ditt svar"
#: lms/lms/doctype/lms_batch/lms_batch.py:66 #: lms/lms/doctype/lms_batch/lms_batch.py:66
msgid "Please install the Payments app to create a paid batches." msgid "Please install the Payments app to create a paid batches."
msgstr "Installera Betalning App för att skapa betalda omgångar." msgstr "Installera Betalning app för att skapa betalda grupper."
#: lms/lms/doctype/lms_course/lms_course.py:53 #: lms/lms/doctype/lms_course/lms_course.py:53
msgid "Please install the Payments app to create a paid courses." msgid "Please install the Payments app to create a paid courses."
@@ -3779,7 +3771,7 @@ msgstr "Ladda upp tilldelning fil."
msgid "Point of Score (e.g. 70)" msgid "Point of Score (e.g. 70)"
msgstr "Poäng (t.ex. 70)" msgstr "Poäng (t.ex. 70)"
#: frontend/src/components/Modals/Question.vue:83 #: frontend/src/components/Modals/Question.vue:85
msgid "Possibility" msgid "Possibility"
msgstr "Möjlighet" msgstr "Möjlighet"
@@ -3875,7 +3867,7 @@ msgstr "Primära Länder"
msgid "Primary Subgroup" msgid "Primary Subgroup"
msgstr "Primär Undergrupp" msgstr "Primär Undergrupp"
#: lms/lms/utils.py:441 #: lms/lms/utils.py:437
msgid "Privacy Policy" msgid "Privacy Policy"
msgstr "Integritet Princip" msgstr "Integritet Princip"
@@ -3903,7 +3895,7 @@ msgstr "Yrke"
msgid "Profile Image" msgid "Profile Image"
msgstr "Profilbild" msgstr "Profilbild"
#: frontend/src/pages/ProgramForm.vue:154 #: frontend/src/pages/ProgramForm.vue:155
msgid "Program Course" msgid "Program Course"
msgstr "Program Kurs" msgstr "Program Kurs"
@@ -3913,12 +3905,12 @@ msgstr "Program Kurs"
msgid "Program Courses" msgid "Program Courses"
msgstr "Program Kurser" msgstr "Program Kurser"
#: frontend/src/pages/ProgramForm.vue:169 #: frontend/src/pages/ProgramForm.vue:170
msgid "Program Member" msgid "Program Member"
msgstr "Program Medlem" msgstr "Program Medlem"
#. Label of the program_members (Table) field in DocType 'LMS Program' #. Label of the program_members (Table) field in DocType 'LMS Program'
#: frontend/src/pages/ProgramForm.vue:78 #: frontend/src/pages/ProgramForm.vue:79
#: lms/lms/doctype/lms_program/lms_program.json #: lms/lms/doctype/lms_program/lms_program.json
msgid "Program Members" msgid "Program Members"
msgstr "Program Medlemmar" msgstr "Program Medlemmar"
@@ -4001,11 +3993,11 @@ msgstr "Fråga Detalj"
msgid "Question Name" msgid "Question Name"
msgstr "Fråga Namn" msgstr "Fråga Namn"
#: frontend/src/components/Modals/Question.vue:261 #: frontend/src/components/Modals/Question.vue:264
msgid "Question added successfully" msgid "Question added successfully"
msgstr "Fråga tillagd" msgstr "Fråga tillagd"
#: frontend/src/components/Modals/Question.vue:313 #: frontend/src/components/Modals/Question.vue:316
msgid "Question updated successfully" msgid "Question updated successfully"
msgstr "Fråga uppdaterad" msgstr "Fråga uppdaterad"
@@ -4018,7 +4010,7 @@ msgid "Question {0} of {1}"
msgstr "Fråga {0} av {1}" msgstr "Fråga {0} av {1}"
#. Label of the questions (Table) field in DocType 'LMS Quiz' #. Label of the questions (Table) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:116 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:117 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Questions" msgid "Questions"
msgstr "Frågor" msgstr "Frågor"
@@ -4028,7 +4020,7 @@ msgstr "Frågor är borttagna"
#. Label of the quiz (Link) field in DocType 'LMS Quiz Submission' #. Label of the quiz (Link) field in DocType 'LMS Quiz Submission'
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#: frontend/src/pages/QuizSubmission.vue:22 #: frontend/src/pages/QuizSubmission.vue:26
#: frontend/src/pages/QuizSubmissionList.vue:82 frontend/src/utils/quiz.js:24 #: frontend/src/pages/QuizSubmissionList.vue:82 frontend/src/utils/quiz.js:24
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
#: lms/lms/workspace/lms/lms.json #: lms/lms/workspace/lms/lms.json
@@ -4046,7 +4038,7 @@ msgstr "Frågesport ID"
msgid "Quiz Submission" msgid "Quiz Submission"
msgstr "Frågesport Inlämning" msgstr "Frågesport Inlämning"
#: frontend/src/pages/QuizSubmission.vue:98 #: frontend/src/pages/QuizSubmission.vue:122
#: frontend/src/pages/QuizSubmissionList.vue:102 #: frontend/src/pages/QuizSubmissionList.vue:102
msgid "Quiz Submissions" msgid "Quiz Submissions"
msgstr "Frågesport Inlämningar" msgstr "Frågesport Inlämningar"
@@ -4236,11 +4228,11 @@ msgstr "Sökväg"
#: lms/lms/doctype/lms_batch/lms_batch.py:199 #: lms/lms/doctype/lms_batch/lms_batch.py:199
msgid "Row #{0} Date cannot be outside the batch duration." msgid "Row #{0} Date cannot be outside the batch duration."
msgstr "Rad #{0} Datum kan inte vara utanför omgång varaktighet." msgstr "Rad #{0} Datum kan inte vara utanför grupp varaktighet."
#: lms/lms/doctype/lms_batch/lms_batch.py:194 #: lms/lms/doctype/lms_batch/lms_batch.py:194
msgid "Row #{0} End time cannot be outside the batch duration." msgid "Row #{0} End time cannot be outside the batch duration."
msgstr "Rad #{0} Sluttid kan inte vara utanför omgång varaktighet." msgstr "Rad #{0} Sluttid kan inte vara utanför grupp varaktighet."
#: lms/lms/doctype/lms_batch/lms_batch.py:176 #: lms/lms/doctype/lms_batch/lms_batch.py:176
msgid "Row #{0} Start time cannot be greater than or equal to end time." msgid "Row #{0} Start time cannot be greater than or equal to end time."
@@ -4248,7 +4240,7 @@ msgstr "Rad #{0} Starttid kan inte vara senare än eller lika med sluttid."
#: lms/lms/doctype/lms_batch/lms_batch.py:185 #: lms/lms/doctype/lms_batch/lms_batch.py:185
msgid "Row #{0} Start time cannot be outside the batch duration." msgid "Row #{0} Start time cannot be outside the batch duration."
msgstr "Rad #{0} Starttid kan inte vara utanför omgång varaktighet." msgstr "Rad #{0} Starttid kan inte vara utanför grupp varaktighet."
#: lms/lms/doctype/lms_quiz/lms_quiz.py:34 #: lms/lms/doctype/lms_quiz/lms_quiz.py:34
msgid "Rows {0} have the duplicate questions." msgid "Rows {0} have the duplicate questions."
@@ -4315,7 +4307,7 @@ msgid "Scope"
msgstr "Omfatning" msgstr "Omfatning"
#. Label of the score (Int) field in DocType 'LMS Quiz Submission' #. Label of the score (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizSubmission.vue:35 #: frontend/src/pages/QuizSubmission.vue:39
#: frontend/src/pages/QuizSubmissionList.vue:87 #: frontend/src/pages/QuizSubmissionList.vue:87
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
#: lms/templates/quiz/quiz.html:148 #: lms/templates/quiz/quiz.html:148
@@ -4352,7 +4344,7 @@ msgstr "Antal Plater Kvar"
msgid "Seats Left" msgid "Seats Left"
msgstr "Antal Platser Kvar" msgstr "Antal Platser Kvar"
#: frontend/src/components/Modals/Question.vue:91 #: frontend/src/components/Modals/Question.vue:94
msgid "Select a question" msgid "Select a question"
msgstr "Välj fråga" msgstr "Välj fråga"
@@ -4381,7 +4373,7 @@ msgstr "Ange Lösenord"
#: frontend/src/components/Modals/Settings.vue:7 #: frontend/src/components/Modals/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:165 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:79
msgid "Settings" msgid "Settings"
msgstr "Inställningar" msgstr "Inställningar"
@@ -4397,7 +4389,7 @@ msgstr "Kort Introduktion"
#: frontend/src/pages/BatchForm.vue:99 #: 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 grupp"
#. Label of the show_answer (Check) field in DocType 'LMS Assignment' #. Label of the show_answer (Check) field in DocType 'LMS Assignment'
#: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment/lms_assignment.json
@@ -4405,12 +4397,12 @@ msgid "Show Answer"
msgstr "Visa Svar" msgstr "Visa Svar"
#. Label of the show_answers (Check) field in DocType 'LMS Quiz' #. Label of the show_answers (Check) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:84 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:85 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Show Answers" msgid "Show Answers"
msgstr "Visa Svar" msgstr "Visa Svar"
#. Label of the show_submission_history (Check) field in DocType 'LMS Quiz' #. Label of the show_submission_history (Check) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:89 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:90 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Show Submission History" msgid "Show Submission History"
msgstr "Visa inlämningshistorik" msgstr "Visa inlämningshistorik"
@@ -4435,11 +4427,11 @@ msgid "Show live class"
msgstr "Visa live klass" msgstr "Visa live klass"
#. Label of the shuffle_questions (Check) field in DocType 'LMS Quiz' #. Label of the shuffle_questions (Check) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:102 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:103 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Shuffle Questions" msgid "Shuffle Questions"
msgstr "Blanda frågor" msgstr "Blanda frågor"
#: frontend/src/pages/QuizForm.vue:96 #: frontend/src/pages/QuizForm.vue:97
msgid "Shuffle Settings" msgid "Shuffle Settings"
msgstr "Blandning inställningar" msgstr "Blandning inställningar"
@@ -4635,7 +4627,7 @@ msgstr "Statistik"
#. Label of the status (Select) field in DocType 'LMS Course Progress' #. Label of the status (Select) field in DocType 'LMS Course Progress'
#. Label of the status (Select) field in DocType 'LMS Mentor Request' #. Label of the status (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:91 #: frontend/src/components/Modals/Event.vue:91
#: frontend/src/pages/JobCreation.vue:35 #: frontend/src/pages/JobCreation.vue:41
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_join_request/cohort_join_request.json #: lms/lms/doctype/cohort_join_request/cohort_join_request.json
@@ -4684,7 +4676,7 @@ msgstr "Student Recensioner"
#: lms/lms/doctype/lms_batch/lms_batch.py:48 #: lms/lms/doctype/lms_batch/lms_batch.py:48
msgid "Student {0} has already been added to this batch." msgid "Student {0} has already been added to this batch."
msgstr "Student {0} har redan lagts till i denna omgång." msgstr "Student {0} har redan lagts till denna grupp."
#. Label of the students (Table) field in DocType 'LMS Batch' #. Label of the students (Table) field in DocType 'LMS Batch'
#. Label of the show_students (Check) field in DocType 'LMS Settings' #. Label of the show_students (Check) field in DocType 'LMS Settings'
@@ -4701,7 +4693,7 @@ msgstr "Studenter borttagna"
#. Description of the 'Paid Batch' (Check) field in DocType 'LMS Batch' #. Description of the 'Paid Batch' (Check) field in DocType 'LMS Batch'
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
msgid "Students will be enrolled in a paid batch once they complete the payment" msgid "Students will be enrolled in a paid batch once they complete the payment"
msgstr "Studenter kommer att registreras i betald omgång när de slutför betalning" msgstr "Studenter kommer att registreras i betald grupp när de slutför betalning"
#. Label of the subgroup (Link) field in DocType 'Cohort Join Request' #. Label of the subgroup (Link) field in DocType 'Cohort Join Request'
#. Option for the 'Scope' (Select) field in DocType 'Cohort Web Page' #. Option for the 'Scope' (Select) field in DocType 'Cohort Web Page'
@@ -4727,7 +4719,7 @@ msgstr "Inlämning Lista"
#: frontend/src/components/Modals/AssessmentModal.vue:9 #: frontend/src/components/Modals/AssessmentModal.vue:9
#: frontend/src/components/Modals/BatchCourseModal.vue:9 #: frontend/src/components/Modals/BatchCourseModal.vue:9
#: frontend/src/components/Modals/EvaluationModal.vue:9 #: frontend/src/components/Modals/EvaluationModal.vue:9
#: frontend/src/components/Modals/Question.vue:335 #: frontend/src/components/Modals/Question.vue:338
#: frontend/src/components/Quiz.vue:214 lms/templates/assignment.html:9 #: frontend/src/components/Quiz.vue:214 lms/templates/assignment.html:9
#: lms/templates/livecode/extension_footer.html:25 #: lms/templates/livecode/extension_footer.html:25
#: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163 #: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163
@@ -4754,12 +4746,12 @@ msgstr "Inskickad {0}"
#: frontend/src/components/Modals/ChapterModal.vue:198 #: frontend/src/components/Modals/ChapterModal.vue:198
#: 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:264
#: frontend/src/components/Modals/Question.vue:312 #: frontend/src/components/Modals/Question.vue:315
#: frontend/src/pages/CourseForm.vue:460 frontend/src/pages/ProgramForm.vue:226 #: frontend/src/pages/CourseForm.vue:460 frontend/src/pages/ProgramForm.vue:229
#: frontend/src/pages/ProgramForm.vue:248 #: frontend/src/pages/ProgramForm.vue:251
#: frontend/src/pages/ProgramForm.vue:269 #: frontend/src/pages/ProgramForm.vue:272
#: frontend/src/pages/ProgramForm.vue:295 frontend/src/pages/QuizForm.vue:343 #: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:343
#: frontend/src/pages/QuizForm.vue:362 frontend/src/pages/QuizForm.vue:431 #: frontend/src/pages/QuizForm.vue:362 frontend/src/pages/QuizForm.vue:431
msgid "Success" msgid "Success"
msgstr "Klar" msgstr "Klar"
@@ -4856,7 +4848,7 @@ msgstr "Mall"
msgid "Temporarily Disabled" msgid "Temporarily Disabled"
msgstr "Tillfälligt Inaktiverad" msgstr "Tillfälligt Inaktiverad"
#: lms/lms/utils.py:440 #: lms/lms/utils.py:436
msgid "Terms of Use" msgid "Terms of Use"
msgstr "Villkor" msgstr "Villkor"
@@ -4910,7 +4902,7 @@ msgstr "Status för din ansökan har förändrats."
#: frontend/src/pages/Batches.vue:129 #: frontend/src/pages/Batches.vue:129
msgid "There are no batches available at the moment. Keep an eye out, fresh learning experiences are on the way soon!" msgid "There are no batches available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr "Det finns inga omgångar tillgängliga just nu. Håll utkik, färska inlärningsupplevelser är på väg snart!" msgstr "Det finns inga grupper tillgängliga just nu. Håll utkik, färska inlärningsupplevelser är på väg snart!"
#: frontend/src/components/CreateOutline.vue:12 #: frontend/src/components/CreateOutline.vue:12
msgid "There are no chapters in this course. Create and manage chapters from here." msgid "There are no chapters in this course. Create and manage chapters from here."
@@ -4920,27 +4912,31 @@ msgstr "Det finns inga kapitel i denna kurs. Skapa och hantera kapitel härifrå
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!" msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr "Det finns inga kurser tillgängliga just nu. Håll utkik, färska inlärningsupplevelser är på väg snart!" msgstr "Det finns inga kurser tillgängliga just nu. Håll utkik, färska inlärningsupplevelser är på väg snart!"
#: frontend/src/pages/Programs.vue:86 #: frontend/src/pages/Programs.vue:97
msgid "There are no programs available at the moment. Keep an eye out, fresh learning experiences are on the way soon!" msgid "There are no programs available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr "Det finns inga program tillgängliga för tillfället. Håll utkik, nya inlärningsupplevelser är på väg snart!" msgstr "Det finns inga program tillgängliga för tillfället. Håll utkik, nya inlärningsupplevelser är på väg snart!"
#: lms/lms/doctype/lms_batch/lms_batch.py:146 #: lms/lms/doctype/lms_batch/lms_batch.py:146
msgid "There are no seats available in this batch." msgid "There are no seats available in this batch."
msgstr "Det finns inga platser tillgängliga i denna omgång." msgstr "Det finns inga platser tillgängliga i denna grupp."
#: frontend/src/components/BatchStudents.vue:67 #: frontend/src/components/BatchStudents.vue:67
msgid "There are no students in this batch." msgid "There are no students in this batch."
msgstr "Det finns inga studenter i denna omgång." msgstr "Det finns inga studenter i denna grupp."
#: lms/templates/course_list.html:14 #: lms/templates/course_list.html:14
msgid "There are no {0} on this site." msgid "There are no {0} on this site."
msgstr "Det finns ingen {0} på denna webbplats." msgstr "Det finns ingen {0} på denna webbplats."
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:41
msgid "There has been an update on your submission. You have got a score of {0} for the quiz {1}"
msgstr "Det har skett uppdatering av din inlämning. Du har fått resultat av {0} för frågesport {1}"
#. Description of the 'section_break_ubxi' (Section Break) field in DocType #. Description of the 'section_break_ubxi' (Section Break) field in DocType
#. 'LMS Batch' #. 'LMS Batch'
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
msgid "These customisations will work on the main batch page." msgid "These customisations will work on the main batch page."
msgstr "Dessa anpassningar kommer att fungera på Huvudomgång Sida." msgstr "Dessa anpassningar kommer att fungera på huvudgrupp sida."
#: frontend/src/pages/Badge.vue:10 #: frontend/src/pages/Badge.vue:10
msgid "This badge has been awarded to {0} on {1}." msgid "This badge has been awarded to {0} on {1}."
@@ -4955,7 +4951,7 @@ msgstr "Detta certifikat upphör inte att gälla"
msgid "This course has:" msgid "This course has:"
msgstr "Denna kurs har:" msgstr "Denna kurs har:"
#: lms/lms/utils.py:1585 #: 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."
@@ -5060,7 +5056,7 @@ msgstr "Tidpunkter:"
#: frontend/src/components/Modals/LiveClassModal.vue:23 #: frontend/src/components/Modals/LiveClassModal.vue:23
#: frontend/src/pages/BatchForm.vue:20 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/ProgramForm.vue:11 #: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/ProgramForm.vue:11
#: frontend/src/pages/Programs.vue:107 frontend/src/pages/QuizForm.vue:48 #: frontend/src/pages/Programs.vue:118 frontend/src/pages/QuizForm.vue:48
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json #: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json
@@ -5097,9 +5093,9 @@ msgstr "Till"
msgid "To Date" msgid "To Date"
msgstr "Till Datum" msgstr "Till Datum"
#: lms/lms/utils.py:1596 #: lms/lms/utils.py:1593
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 grupp, kontakta Administratör."
#: frontend/src/components/LessonHelp.vue:34 #: frontend/src/components/LessonHelp.vue:34
msgid "To upload Image, Video, Audio or PDF from your system, click on the add icon and select upload from the menu. Then choose the file you want to add to the lesson and it gets added to your lesson." msgid "To upload Image, Video, Audio or PDF from your system, click on the add icon and select upload from the menu. Then choose the file you want to add to the lesson and it gets added to your lesson."
@@ -5114,7 +5110,7 @@ msgid "Total"
msgstr "Totalt" msgstr "Totalt"
#. Label of the total_marks (Int) field in DocType 'LMS Quiz' #. Label of the total_marks (Int) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:66 frontend/src/pages/Quizzes.vue:119 #: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:119
#: lms/lms/doctype/lms_quiz/lms_quiz.json #: lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Total Marks" msgid "Total Marks"
msgstr "Totalt antal markeringar" msgstr "Totalt antal markeringar"
@@ -5151,7 +5147,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/Jobs.vue:16 #: frontend/src/pages/JobCreation.vue:33 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
@@ -5221,7 +5217,7 @@ msgstr "Kommande"
#: frontend/src/pages/Batch.vue:158 #: frontend/src/pages/Batch.vue:158
msgid "Upcoming Batches" msgid "Upcoming Batches"
msgstr "Kommande omgångar" msgstr "Kommande grupper"
#: frontend/src/components/UpcomingEvaluations.vue:7 #: frontend/src/components/UpcomingEvaluations.vue:7
#: lms/templates/upcoming_evals.html:3 #: lms/templates/upcoming_evals.html:3
@@ -5344,7 +5340,7 @@ msgstr "Volontärarbete eller Praktik"
#: lms/templates/emails/batch_confirmation.html:6 #: lms/templates/emails/batch_confirmation.html:6
msgid "We are pleased to inform you that you have been enrolled in our upcoming batch. Congratulations!" msgid "We are pleased to inform you that you have been enrolled in our upcoming batch. Congratulations!"
msgstr "Vi är glada att informera dig om att du har blivit inskriven i vår kommande omgång. Grattis!" msgstr "Vi är glada att informera dig om att du har blivit antagen i vår kommande grupp. Grattis!"
#. Label of the web_page (Link) field in DocType 'LMS Sidebar Item' #. Label of the web_page (Link) field in DocType 'LMS Sidebar Item'
#: frontend/src/components/Modals/PageModal.vue:23 #: frontend/src/components/Modals/PageModal.vue:23
@@ -5423,7 +5419,7 @@ msgstr "Du har redan utvärdering {0} kl. {1} för kurs {2}."
#: lms/lms/api.py:213 #: 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 grupp."
#: lms/lms/api.py:205 #: lms/lms/api.py:205
msgid "You are already enrolled for this course." msgid "You are already enrolled for this course."
@@ -5509,12 +5505,16 @@ msgstr "Du har redan granskat denna kurs"
#: frontend/src/components/BatchOverlay.vue:136 #: frontend/src/components/BatchOverlay.vue:136
msgid "You have been enrolled in this batch" msgid "You have been enrolled in this batch"
msgstr "Du har blivit registrerad i denna omgång" msgstr "Du har blivit registrerad i denna grupp"
#: frontend/src/components/CourseCardOverlay.vue:162 #: frontend/src/components/CourseCardOverlay.vue:162
msgid "You have been enrolled in this course" msgid "You have been enrolled in this course"
msgstr "Du har blivit registrerad på denna kurs" msgstr "Du har blivit registrerad på denna kurs"
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:38
msgid "You have got a score of {0} for the quiz {1}"
msgstr "Du har fått resultat av {0} för frågesport {1}"
#: frontend/src/pages/Quizzes.vue:60 #: frontend/src/pages/Quizzes.vue:60
msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above." msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above."
msgstr "Du har inte skapat några frågesporter än. För att skapa ny frågesport, klicka på knapp \"Nytt Frågesport\" ovan." msgstr "Du har inte skapat några frågesporter än. För att skapa ny frågesport, klicka på knapp \"Nytt Frågesport\" ovan."
@@ -5667,7 +5667,7 @@ msgstr "{0} har lämnat in uppgift {1}"
#: lms/lms/doctype/lms_enrollment/lms_enrollment.py:57 #: lms/lms/doctype/lms_enrollment/lms_enrollment.py:57
msgid "{0} is already a Student of {1} course through {2} batch" msgid "{0} is already a Student of {1} course through {2} batch"
msgstr "{0} är redan student på {1} kurs genom {2} omgång" msgstr "{0} är redan student på {1} kurs genom {2} grupp"
#: lms/lms/doctype/lms_course_mentor_mapping/lms_course_mentor_mapping.py:16 #: lms/lms/doctype/lms_course_mentor_mapping/lms_course_mentor_mapping.py:16
msgid "{0} is already a mentor for course {1}" msgid "{0} is already a mentor for course {1}"
@@ -5685,7 +5685,7 @@ msgstr "{0} är redan certifierad för kurs {1}"
msgid "{0} is your evaluator" msgid "{0} is your evaluator"
msgstr "{0} är din utvärderare" msgstr "{0} är din utvärderare"
#: lms/lms/utils.py:704 #: lms/lms/utils.py:700
msgid "{0} mentioned you in a comment" msgid "{0} mentioned you in a comment"
msgstr "{0} nämnde dig i en kommentar" msgstr "{0} nämnde dig i en kommentar"
@@ -5693,11 +5693,11 @@ msgstr "{0} nämnde dig i en kommentar"
msgid "{0} mentioned you in a comment in your batch." msgid "{0} mentioned you in a comment in your batch."
msgstr "{0} nämnde dig i en kommentar i din grupp." msgstr "{0} nämnde dig i en kommentar i din grupp."
#: lms/lms/utils.py:657 lms/lms/utils.py:663 #: lms/lms/utils.py:653 lms/lms/utils.py:659
msgid "{0} mentioned you in a comment in {1}" msgid "{0} mentioned you in a comment in {1}"
msgstr "{0} hänvisade dig i kommentar i {1}" msgstr "{0} hänvisade dig i kommentar i {1}"
#: lms/lms/utils.py:480 #: lms/lms/utils.py:476
msgid "{0}k" msgid "{0}k"
msgstr "{0}k" msgstr "{0}k"

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-11-22 16:05+0000\n" "POT-Creation-Date: 2024-11-29 16:04+0000\n"
"PO-Revision-Date: 2024-11-25 19:29\n" "PO-Revision-Date: 2024-12-02 22:11\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"
@@ -105,7 +105,7 @@ msgstr "Aktif"
#: frontend/src/components/Categories.vue:26 #: frontend/src/components/Categories.vue:26
#: frontend/src/components/LiveClass.vue:11 #: frontend/src/components/LiveClass.vue:11
#: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30 #: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30
#: frontend/src/pages/ProgramForm.vue:91 frontend/src/pages/ProgramForm.vue:136 #: frontend/src/pages/ProgramForm.vue:92 frontend/src/pages/ProgramForm.vue:137
msgid "Add" msgid "Add"
msgstr "Ekle" msgstr "Ekle"
@@ -147,8 +147,8 @@ msgstr "Kurs Ekle"
msgid "Add a lesson" msgid "Add a lesson"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Question.vue:141 #: frontend/src/components/Modals/Question.vue:144
#: frontend/src/pages/QuizForm.vue:182 #: frontend/src/pages/QuizForm.vue:183
msgid "Add a new question" msgid "Add a new question"
msgstr "Yeni Soru Ekle" msgstr "Yeni Soru Ekle"
@@ -269,7 +269,7 @@ msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:70 #: lms/lms/doctype/lms_batch/lms_batch.py:70
msgid "Amount and currency are required for paid batches." msgid "Amount and currency are required for paid batches."
msgstr "" msgstr "Ödenen partiler için tutar ve para birimi gereklidir."
#: lms/lms/doctype/lms_course/lms_course.py:57 #: lms/lms/doctype/lms_course/lms_course.py:57
msgid "Amount and currency are required for paid courses." msgid "Amount and currency are required for paid courses."
@@ -304,7 +304,7 @@ msgstr ""
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/BatchForm.vue:77 #: 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 "Parti URLsi herhangi bir çevrimiçi platformda paylaşıldığında görünür."
#: frontend/src/pages/JobDetail.vue:131 #: frontend/src/pages/JobDetail.vue:131
msgid "Applications Received" msgid "Applications Received"
@@ -497,7 +497,7 @@ msgstr "Toplu İş Oluşturuldu"
#. Old' #. Old'
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
msgid "Batch Description" msgid "Batch Description"
msgstr "" msgstr "Parti Açıklaması"
#. 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:104 #: frontend/src/pages/BatchForm.vue:104
@@ -505,7 +505,7 @@ msgstr ""
#: lms/public/js/common_functions.js:349 #: lms/public/js/common_functions.js:349
#: lms/templates/emails/batch_confirmation.html:30 #: lms/templates/emails/batch_confirmation.html:30
msgid "Batch Details" msgid "Batch Details"
msgstr "" msgstr "Parti Detayları"
#. Label of the batch_details_raw (HTML Editor) field in DocType 'LMS Batch' #. Label of the batch_details_raw (HTML Editor) field in DocType 'LMS Batch'
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
@@ -922,25 +922,25 @@ msgstr "Şirket"
#. Label of the company_details_section (Section Break) field in DocType 'Job #. Label of the company_details_section (Section Break) field in DocType 'Job
#. Opportunity' #. Opportunity'
#: frontend/src/pages/JobCreation.vue:56 #: frontend/src/pages/JobCreation.vue:64
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Details" msgid "Company Details"
msgstr "Şirket Detayları" msgstr "Şirket Detayları"
#. Label of the company_email_address (Data) field in DocType 'Job Opportunity' #. Label of the company_email_address (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobCreation.vue:73 #: frontend/src/pages/JobCreation.vue:83
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Email Address" msgid "Company Email Address"
msgstr "Şirket E-posta Adresi" msgstr "Şirket E-posta Adresi"
#. Label of the company_logo (Attach Image) field in DocType 'Job Opportunity' #. Label of the company_logo (Attach Image) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobCreation.vue:77 #: frontend/src/pages/JobCreation.vue:88
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Logo" msgid "Company Logo"
msgstr "Şirket Logosu" msgstr "Şirket Logosu"
#. Label of the company_name (Data) field in DocType 'Job Opportunity' #. Label of the company_name (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobCreation.vue:62 #: frontend/src/pages/JobCreation.vue:70
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Name" msgid "Company Name"
msgstr "Şirket Adı" msgstr "Şirket Adı"
@@ -951,7 +951,7 @@ msgid "Company Type"
msgstr "Şirket Türü" msgstr "Şirket Türü"
#. Label of the company_website (Data) field in DocType 'Job Opportunity' #. Label of the company_website (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobCreation.vue:67 #: frontend/src/pages/JobCreation.vue:76
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Website" msgid "Company Website"
msgstr "Şirket Web Sitesi" msgstr "Şirket Web Sitesi"
@@ -1025,7 +1025,7 @@ msgstr "Öğrenmeye Devam Et"
msgid "Contract" msgid "Contract"
msgstr "Sözleşme" msgstr "Sözleşme"
#: lms/lms/utils.py:442 #: lms/lms/utils.py:438
msgid "Cookie Policy" msgid "Cookie Policy"
msgstr "Çerez Politikası" msgstr "Çerez Politikası"
@@ -1047,7 +1047,7 @@ msgstr "Kurumsal Organizasyon"
msgid "Correct" msgid "Correct"
msgstr "Doğru" msgstr "Doğru"
#: frontend/src/components/Modals/Question.vue:71 #: frontend/src/components/Modals/Question.vue:73
msgid "Correct Answer" msgid "Correct Answer"
msgstr "Doğru Cevap" msgstr "Doğru Cevap"
@@ -1218,7 +1218,7 @@ msgstr "Kurs İstatistikleri"
msgid "Course Title" msgid "Course Title"
msgstr "Kurs Başlığı" msgstr "Kurs Başlığı"
#: frontend/src/pages/ProgramForm.vue:226 #: frontend/src/pages/ProgramForm.vue:229
msgid "Course added to program" msgid "Course added to program"
msgstr "" msgstr ""
@@ -1230,7 +1230,7 @@ msgstr "Kurs zaten gruba eklendi."
msgid "Course deleted successfully" msgid "Course deleted successfully"
msgstr "Kurs başarıyla silindi" msgstr "Kurs başarıyla silindi"
#: frontend/src/pages/ProgramForm.vue:295 #: frontend/src/pages/ProgramForm.vue:298
msgid "Course moved successfully" msgid "Course moved successfully"
msgstr "" msgstr ""
@@ -1270,7 +1270,7 @@ msgid "Cover Image"
msgstr "Kapak Resmi" msgstr "Kapak Resmi"
#: frontend/src/components/Modals/ChapterModal.vue:9 #: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/pages/Programs.vue:99 #: frontend/src/pages/Programs.vue:110
msgid "Create" msgid "Create"
msgstr "Oluştur" msgstr "Oluştur"
@@ -1446,7 +1446,7 @@ msgstr ""
#. Label of the description (Text) field in DocType 'LMS Live Class' #. Label of the description (Text) field in DocType 'LMS Live Class'
#. Label of the description (Small Text) field in DocType 'Work Experience' #. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:78 #: frontend/src/components/Modals/LiveClassModal.vue:78
#: frontend/src/pages/BatchForm.vue:96 frontend/src/pages/JobCreation.vue:43 #: frontend/src/pages/BatchForm.vue:96 frontend/src/pages/JobCreation.vue:50
#: 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
@@ -1527,7 +1527,7 @@ msgstr "Bu soru için yinelenen seçenekler bulundu."
msgid "Duration" msgid "Duration"
msgstr "Süre" msgstr "Süre"
#: frontend/src/pages/QuizForm.vue:62 #: frontend/src/pages/QuizForm.vue:63
msgid "Duration (in minutes)" msgid "Duration (in minutes)"
msgstr "Süre (dk)" msgstr "Süre (dk)"
@@ -1562,7 +1562,7 @@ msgstr "Bölümü Düzenle"
msgid "Edit Profile" msgid "Edit Profile"
msgstr "Profili Düzenle" msgstr "Profili Düzenle"
#: frontend/src/pages/QuizForm.vue:181 #: frontend/src/pages/QuizForm.vue:182
msgid "Edit the question" msgid "Edit the question"
msgstr "Soruyu düzenle" msgstr "Soruyu düzenle"
@@ -1693,7 +1693,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:1705 #: 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"
@@ -1725,12 +1725,12 @@ msgstr "Doğru cevabı girin"
#: frontend/src/components/Modals/ChapterModal.vue:159 #: frontend/src/components/Modals/ChapterModal.vue:159
#: frontend/src/components/Modals/ChapterModal.vue:166 #: frontend/src/components/Modals/ChapterModal.vue:166
#: frontend/src/components/Modals/ChapterModal.vue:202 #: frontend/src/components/Modals/ChapterModal.vue:202
#: frontend/src/components/Modals/Question.vue:246 #: frontend/src/components/Modals/Question.vue:249
#: frontend/src/components/Modals/Question.vue:266 #: frontend/src/components/Modals/Question.vue:269
#: frontend/src/components/Modals/Question.vue:323 #: frontend/src/components/Modals/Question.vue:326
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350 #: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350
#: frontend/src/pages/QuizForm.vue:365 #: frontend/src/pages/QuizForm.vue:365
#: frontend/src/pages/QuizSubmission.vue:117 #: frontend/src/pages/QuizSubmission.vue:141
msgid "Error" msgid "Error"
msgstr "Hata" msgstr "Hata"
@@ -1858,7 +1858,7 @@ msgstr "Son Kullanım Tarihi"
#. Label of the explanation_1 (Small Text) field in DocType 'LMS Question' #. Label of the explanation_1 (Small Text) field in DocType 'LMS Question'
#. Label of the explanation_3 (Small Text) field in DocType 'LMS Question' #. Label of the explanation_3 (Small Text) field in DocType 'LMS Question'
#. Label of the explanation_4 (Small Text) field in DocType 'LMS Question' #. Label of the explanation_4 (Small Text) field in DocType 'LMS Question'
#: frontend/src/components/Modals/Question.vue:67 #: frontend/src/components/Modals/Question.vue:69
#: lms/lms/doctype/lms_question/lms_question.json #: lms/lms/doctype/lms_question/lms_question.json
msgid "Explanation" msgid "Explanation"
msgstr "Açıklamalar" msgstr "Açıklamalar"
@@ -2116,14 +2116,6 @@ msgstr ""
msgid "How to add a Quiz?" msgid "How to add a Quiz?"
msgstr "Sınav nasıl eklenir?" msgstr "Sınav nasıl eklenir?"
#: frontend/src/components/LessonHelp.vue:47
msgid "How to add a YouTube Video?"
msgstr "YouTube Videosu Nasıl Eklenir?"
#: frontend/src/components/LessonHelp.vue:28
msgid "How to upload content from your system?"
msgstr "Sisteminizden içerik nasıl yüklenir?"
#. Label of the current (Check) field in DocType 'Work Experience' #. Label of the current (Check) field in DocType 'Work Experience'
#: lms/lms/doctype/work_experience/work_experience.json #: lms/lms/doctype/work_experience/work_experience.json
msgid "I am currently working here" msgid "I am currently working here"
@@ -2202,7 +2194,7 @@ msgstr "Resim"
msgid "Image search powered by" msgid "Image search powered by"
msgstr "" msgstr ""
#: lms/lms/doctype/lms_quiz/lms_quiz.py:222 #: lms/lms/doctype/lms_quiz/lms_quiz.py:221
msgid "Image: Corrupted Data Stream" msgid "Image: Corrupted Data Stream"
msgstr "Resim: Bozuk Veri Akışı" msgstr "Resim: Bozuk Veri Akışı"
@@ -2388,7 +2380,7 @@ msgstr "Yayınlanma Tarihi"
msgid "Items in Sidebar" msgid "Items in Sidebar"
msgstr "Kenar Çubuğundaki Öğeler" msgstr "Kenar Çubuğundaki Öğeler"
#: frontend/src/pages/ProgramForm.vue:269 #: frontend/src/pages/ProgramForm.vue:272
msgid "Items removed successfully" msgid "Items removed successfully"
msgstr "" msgstr ""
@@ -2757,7 +2749,7 @@ msgid "Letter Grade (e.g. A, B-)"
msgstr "" msgstr ""
#. Label of the limit_questions_to (Int) field in DocType 'LMS Quiz' #. Label of the limit_questions_to (Int) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:107 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:108 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Limit Questions To" msgid "Limit Questions To"
msgstr "" msgstr ""
@@ -2817,7 +2809,7 @@ msgstr "Yerel"
#. Label of the location (Data) field in DocType 'Job Opportunity' #. Label of the location (Data) field in DocType 'Job Opportunity'
#. Label of the location (Data) field in DocType 'Education Detail' #. Label of the location (Data) field in DocType 'Education Detail'
#. Label of the location (Data) field in DocType 'Work Experience' #. Label of the location (Data) field in DocType 'Work Experience'
#: frontend/src/pages/JobCreation.vue:23 frontend/src/pages/JobDetail.vue:89 #: frontend/src/pages/JobCreation.vue:26 frontend/src/pages/JobDetail.vue:89
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/education_detail/education_detail.json #: lms/lms/doctype/education_detail/education_detail.json
#: lms/lms/doctype/work_experience/work_experience.json #: lms/lms/doctype/work_experience/work_experience.json
@@ -2887,21 +2879,21 @@ msgstr "Okundu olarak İşaretle"
#. Label of the marks (Int) field in DocType 'LMS Quiz Question' #. Label of the marks (Int) field in DocType 'LMS Quiz Question'
#. Label of the marks (Int) field in DocType 'LMS Quiz Result' #. Label of the marks (Int) field in DocType 'LMS Quiz Result'
#: frontend/src/components/Modals/Question.vue:50 #: frontend/src/components/Modals/Question.vue:50
#: frontend/src/components/Modals/Question.vue:96 #: frontend/src/components/Modals/Question.vue:99
#: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:394 #: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:394
#: frontend/src/pages/QuizSubmission.vue:52 #: frontend/src/pages/QuizSubmission.vue:59
#: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json #: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json
#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json
#: lms/templates/quiz/quiz.html:59 #: lms/templates/quiz/quiz.html:59
msgid "Marks" msgid "Marks"
msgstr "" msgstr ""
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:19 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:23
msgid "Marks for question number {0} cannot be greater than the marks allotted for that question." msgid "Marks for question number {0} cannot be greater than the marks allotted for that question."
msgstr "" msgstr ""
#. Label of the marks_out_of (Int) field in DocType 'LMS Quiz Result' #. Label of the marks_out_of (Int) field in DocType 'LMS Quiz Result'
#: frontend/src/pages/QuizSubmission.vue:55 #: frontend/src/pages/QuizSubmission.vue:62
#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json
msgid "Marks out of" msgid "Marks out of"
msgstr "" msgstr ""
@@ -2911,7 +2903,7 @@ msgstr ""
msgid "Max Attempts" msgid "Max Attempts"
msgstr "Maksimum Deneme" msgstr "Maksimum Deneme"
#: frontend/src/pages/QuizForm.vue:57 #: frontend/src/pages/QuizForm.vue:58
msgid "Maximun Attempts" msgid "Maximun Attempts"
msgstr "" msgstr ""
@@ -2945,7 +2937,7 @@ msgstr "Orta:"
#. Label of the member (Link) field in DocType 'LMS Payment' #. Label of the member (Link) field in DocType 'LMS Payment'
#. Label of the member (Link) field in DocType 'LMS Program Member' #. Label of the member (Link) field in DocType 'LMS Program Member'
#. Label of the member (Link) field in DocType 'LMS Quiz Submission' #. Label of the member (Link) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizSubmission.vue:27 #: frontend/src/pages/QuizSubmission.vue:31
#: frontend/src/pages/QuizSubmissionList.vue:77 #: frontend/src/pages/QuizSubmissionList.vue:77
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
#: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json
@@ -3008,7 +3000,7 @@ msgstr "Üye Alt Grubu"
msgid "Member Type" msgid "Member Type"
msgstr "Üye Türü" msgstr "Üye Türü"
#: frontend/src/pages/ProgramForm.vue:248 #: frontend/src/pages/ProgramForm.vue:251
msgid "Member added to program" msgid "Member added to program"
msgstr "" msgstr ""
@@ -3173,19 +3165,19 @@ msgstr "Yeni İş"
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "Yeni İş Başvurusu" msgstr "Yeni İş Başvurusu"
#: frontend/src/pages/Programs.vue:96 #: frontend/src/pages/Programs.vue:107
msgid "New Program" msgid "New Program"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:132 #: frontend/src/pages/ProgramForm.vue:133
msgid "New Program Course" msgid "New Program Course"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:133 #: frontend/src/pages/ProgramForm.vue:134
msgid "New Program Member" msgid "New Program Member"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:122 #: frontend/src/pages/QuizForm.vue:123
msgid "New Question" msgid "New Question"
msgstr "Yeni Soru" msgstr "Yeni Soru"
@@ -3198,11 +3190,11 @@ msgstr "Yeni Test"
msgid "New Sign Up" msgid "New Sign Up"
msgstr "Yeni Kayıt" msgstr "Yeni Kayıt"
#: lms/lms/utils.py:627 #: lms/lms/utils.py:623
msgid "New comment in batch {0}" msgid "New comment in batch {0}"
msgstr "Toplu işlerde yeni yorum {0}" msgstr "Toplu işlerde yeni yorum {0}"
#: lms/lms/utils.py:620 #: lms/lms/utils.py:616
msgid "New reply on the topic {0} in course {1}" msgid "New reply on the topic {0} in course {1}"
msgstr "{1} dersinde {0} konusuna yeni yanıt" msgstr "{1} dersinde {0} konusuna yeni yanıt"
@@ -3256,7 +3248,7 @@ msgstr "Hiçbir kurs oluşturulmadı"
msgid "No courses found" msgid "No courses found"
msgstr "Hiçbir kurs bulunamadı" msgstr "Hiçbir kurs bulunamadı"
#: frontend/src/pages/Programs.vue:72 #: frontend/src/pages/Programs.vue:83
msgid "No courses in this program" msgid "No courses in this program"
msgstr "" msgstr ""
@@ -3276,7 +3268,7 @@ msgstr "Hiçbir iş ilanı yayınlanmadı"
msgid "No live classes scheduled" msgid "No live classes scheduled"
msgstr "Planlanmış canlı ders yok" msgstr "Planlanmış canlı ders yok"
#: frontend/src/pages/Programs.vue:82 #: frontend/src/pages/Programs.vue:93
msgid "No programs found" msgid "No programs found"
msgstr "" msgstr ""
@@ -3388,7 +3380,7 @@ msgstr "Moderatör başvurunuzu değerlendirdiğinde, ayrıntıları burada bula
msgid "Online" msgid "Online"
msgstr "Çevrimiçi" msgstr "Çevrimiçi"
#: frontend/src/pages/ProgramForm.vue:156 #: frontend/src/pages/ProgramForm.vue:157
msgid "Only courses for which self learning is disabled can be added to program." msgid "Only courses for which self learning is disabled can be added to program."
msgstr "" msgstr ""
@@ -3396,7 +3388,7 @@ msgstr ""
msgid "Only files of type {0} will be accepted." msgid "Only files of type {0} will be accepted."
msgstr "Sadece {0} türündeki dosyalar kabul edilecektir." msgstr "Sadece {0} türündeki dosyalar kabul edilecektir."
#: frontend/src/pages/CourseForm.vue:497 frontend/src/utils/index.js:518 #: frontend/src/pages/CourseForm.vue:497 frontend/src/utils/index.js:520
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."
@@ -3432,7 +3424,7 @@ msgid "Open Network"
msgstr "" msgstr ""
#. Label of the option (Data) field in DocType 'LMS Option' #. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:63 #: frontend/src/components/Modals/Question.vue:64
#: lms/lms/doctype/lms_option/lms_option.json #: lms/lms/doctype/lms_option/lms_option.json
msgid "Option" msgid "Option"
msgstr "Seçenek" msgstr "Seçenek"
@@ -3547,7 +3539,7 @@ msgstr "Başarılı"
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz' #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz'
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission' #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizForm.vue:71 frontend/src/pages/Quizzes.vue:125 #: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:125
#: lms/lms/doctype/lms_quiz/lms_quiz.json #: lms/lms/doctype/lms_quiz/lms_quiz.json
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
msgid "Passing Percentage" msgid "Passing Percentage"
@@ -3641,7 +3633,7 @@ msgid "Pending"
msgstr "Bekliyor" msgstr "Bekliyor"
#. Label of the percentage (Int) field in DocType 'LMS Quiz Submission' #. Label of the percentage (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizSubmission.vue:40 #: frontend/src/pages/QuizSubmission.vue:44
#: frontend/src/pages/QuizSubmissionList.vue:93 #: frontend/src/pages/QuizSubmissionList.vue:93
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
msgid "Percentage" msgid "Percentage"
@@ -3676,7 +3668,7 @@ msgstr "Doğrulama için lütfen e-postanızı kontrol edin"
msgid "Please click on the following button to set your new password" msgid "Please click on the following button to set your new password"
msgstr "Yeni şifrenizi belirlemek için lütfen aşağıdaki linke tıklayınız" msgstr "Yeni şifrenizi belirlemek için lütfen aşağıdaki linke tıklayınız"
#: lms/lms/utils.py:1817 lms/lms/utils.py:1821 #: lms/lms/utils.py:1824 lms/lms/utils.py:1828
msgid "Please complete the previous courses in the program to enroll in this course." msgid "Please complete the previous courses in the program to enroll in this course."
msgstr "" msgstr ""
@@ -3779,7 +3771,7 @@ msgstr "Lütfen ödev dosyasını yükleyin."
msgid "Point of Score (e.g. 70)" msgid "Point of Score (e.g. 70)"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Question.vue:83 #: frontend/src/components/Modals/Question.vue:85
msgid "Possibility" msgid "Possibility"
msgstr "Olasılık" msgstr "Olasılık"
@@ -3875,7 +3867,7 @@ msgstr ""
msgid "Primary Subgroup" msgid "Primary Subgroup"
msgstr "Birincil Alt Grup" msgstr "Birincil Alt Grup"
#: lms/lms/utils.py:441 #: lms/lms/utils.py:437
msgid "Privacy Policy" msgid "Privacy Policy"
msgstr "" msgstr ""
@@ -3903,7 +3895,7 @@ msgstr "Meslek"
msgid "Profile Image" msgid "Profile Image"
msgstr "Profil Resmi" msgstr "Profil Resmi"
#: frontend/src/pages/ProgramForm.vue:154 #: frontend/src/pages/ProgramForm.vue:155
msgid "Program Course" msgid "Program Course"
msgstr "" msgstr ""
@@ -3913,12 +3905,12 @@ msgstr ""
msgid "Program Courses" msgid "Program Courses"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:169 #: frontend/src/pages/ProgramForm.vue:170
msgid "Program Member" msgid "Program Member"
msgstr "" msgstr ""
#. Label of the program_members (Table) field in DocType 'LMS Program' #. Label of the program_members (Table) field in DocType 'LMS Program'
#: frontend/src/pages/ProgramForm.vue:78 #: frontend/src/pages/ProgramForm.vue:79
#: lms/lms/doctype/lms_program/lms_program.json #: lms/lms/doctype/lms_program/lms_program.json
msgid "Program Members" msgid "Program Members"
msgstr "" msgstr ""
@@ -4001,11 +3993,11 @@ msgstr "Soru Detayı"
msgid "Question Name" msgid "Question Name"
msgstr "Soru Adı" msgstr "Soru Adı"
#: frontend/src/components/Modals/Question.vue:261 #: frontend/src/components/Modals/Question.vue:264
msgid "Question added successfully" msgid "Question added successfully"
msgstr "Soru başarıyla eklendi" msgstr "Soru başarıyla eklendi"
#: frontend/src/components/Modals/Question.vue:313 #: frontend/src/components/Modals/Question.vue:316
msgid "Question updated successfully" msgid "Question updated successfully"
msgstr "Soru başarıyla güncellendi" msgstr "Soru başarıyla güncellendi"
@@ -4018,7 +4010,7 @@ msgid "Question {0} of {1}"
msgstr "Soru {0} / {1}" msgstr "Soru {0} / {1}"
#. Label of the questions (Table) field in DocType 'LMS Quiz' #. Label of the questions (Table) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:116 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:117 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Questions" msgid "Questions"
msgstr "Sorular" msgstr "Sorular"
@@ -4028,7 +4020,7 @@ msgstr "Sorular başarıyla silindi"
#. Label of the quiz (Link) field in DocType 'LMS Quiz Submission' #. Label of the quiz (Link) field in DocType 'LMS Quiz Submission'
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#: frontend/src/pages/QuizSubmission.vue:22 #: frontend/src/pages/QuizSubmission.vue:26
#: frontend/src/pages/QuizSubmissionList.vue:82 frontend/src/utils/quiz.js:24 #: frontend/src/pages/QuizSubmissionList.vue:82 frontend/src/utils/quiz.js:24
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
#: lms/lms/workspace/lms/lms.json #: lms/lms/workspace/lms/lms.json
@@ -4046,7 +4038,7 @@ msgstr ""
msgid "Quiz Submission" msgid "Quiz Submission"
msgstr "Sınav Gönderimi" msgstr "Sınav Gönderimi"
#: frontend/src/pages/QuizSubmission.vue:98 #: frontend/src/pages/QuizSubmission.vue:122
#: frontend/src/pages/QuizSubmissionList.vue:102 #: frontend/src/pages/QuizSubmissionList.vue:102
msgid "Quiz Submissions" msgid "Quiz Submissions"
msgstr "" msgstr ""
@@ -4315,7 +4307,7 @@ msgid "Scope"
msgstr "Kapsam" msgstr "Kapsam"
#. Label of the score (Int) field in DocType 'LMS Quiz Submission' #. Label of the score (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizSubmission.vue:35 #: frontend/src/pages/QuizSubmission.vue:39
#: frontend/src/pages/QuizSubmissionList.vue:87 #: frontend/src/pages/QuizSubmissionList.vue:87
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
#: lms/templates/quiz/quiz.html:148 #: lms/templates/quiz/quiz.html:148
@@ -4352,7 +4344,7 @@ msgstr "Kalan Koltuk"
msgid "Seats Left" msgid "Seats Left"
msgstr "Kalan Koltuk Sayısı" msgstr "Kalan Koltuk Sayısı"
#: frontend/src/components/Modals/Question.vue:91 #: frontend/src/components/Modals/Question.vue:94
msgid "Select a question" msgid "Select a question"
msgstr "Bir soru seçin" msgstr "Bir soru seçin"
@@ -4381,7 +4373,7 @@ msgstr "Şifrenizi Ayarlayın"
#: frontend/src/components/Modals/Settings.vue:7 #: frontend/src/components/Modals/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:165 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:79
msgid "Settings" msgid "Settings"
msgstr "Ayarlar" msgstr "Ayarlar"
@@ -4405,12 +4397,12 @@ msgid "Show Answer"
msgstr "Cevabı Göster" msgstr "Cevabı Göster"
#. Label of the show_answers (Check) field in DocType 'LMS Quiz' #. Label of the show_answers (Check) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:84 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:85 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Show Answers" msgid "Show Answers"
msgstr "Cevapları Göster" msgstr "Cevapları Göster"
#. Label of the show_submission_history (Check) field in DocType 'LMS Quiz' #. Label of the show_submission_history (Check) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:89 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:90 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Show Submission History" msgid "Show Submission History"
msgstr "Gönderim Geçmişini Göster" msgstr "Gönderim Geçmişini Göster"
@@ -4435,11 +4427,11 @@ msgid "Show live class"
msgstr "Canlı dersi göster" msgstr "Canlı dersi göster"
#. Label of the shuffle_questions (Check) field in DocType 'LMS Quiz' #. Label of the shuffle_questions (Check) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:102 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:103 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Shuffle Questions" msgid "Shuffle Questions"
msgstr "Soruları Karıştır" msgstr "Soruları Karıştır"
#: frontend/src/pages/QuizForm.vue:96 #: frontend/src/pages/QuizForm.vue:97
msgid "Shuffle Settings" msgid "Shuffle Settings"
msgstr "" msgstr ""
@@ -4525,7 +4517,7 @@ msgstr "Kısaltma"
#: frontend/src/components/BatchCard.vue:23 #: frontend/src/components/BatchCard.vue:23
#: frontend/src/components/BatchOverlay.vue:16 #: frontend/src/components/BatchOverlay.vue:16
msgid "Sold Out" msgid "Sold Out"
msgstr "" msgstr "Tükendi"
#. Label of the solution (Code) field in DocType 'Exercise Latest Submission' #. Label of the solution (Code) field in DocType 'Exercise Latest Submission'
#. Label of the solution (Code) field in DocType 'Exercise Submission' #. Label of the solution (Code) field in DocType 'Exercise Submission'
@@ -4635,7 +4627,7 @@ msgstr "İstatistik"
#. Label of the status (Select) field in DocType 'LMS Course Progress' #. Label of the status (Select) field in DocType 'LMS Course Progress'
#. Label of the status (Select) field in DocType 'LMS Mentor Request' #. Label of the status (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:91 #: frontend/src/components/Modals/Event.vue:91
#: frontend/src/pages/JobCreation.vue:35 #: frontend/src/pages/JobCreation.vue:41
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_join_request/cohort_join_request.json #: lms/lms/doctype/cohort_join_request/cohort_join_request.json
@@ -4684,7 +4676,7 @@ msgstr "Öğrenci İncelemeleri"
#: lms/lms/doctype/lms_batch/lms_batch.py:48 #: lms/lms/doctype/lms_batch/lms_batch.py:48
msgid "Student {0} has already been added to this batch." msgid "Student {0} has already been added to this batch."
msgstr "" msgstr "Öğrenci {0} zaten bu gruba eklendi."
#. Label of the students (Table) field in DocType 'LMS Batch' #. Label of the students (Table) field in DocType 'LMS Batch'
#. Label of the show_students (Check) field in DocType 'LMS Settings' #. Label of the show_students (Check) field in DocType 'LMS Settings'
@@ -4727,7 +4719,7 @@ msgstr ""
#: frontend/src/components/Modals/AssessmentModal.vue:9 #: frontend/src/components/Modals/AssessmentModal.vue:9
#: frontend/src/components/Modals/BatchCourseModal.vue:9 #: frontend/src/components/Modals/BatchCourseModal.vue:9
#: frontend/src/components/Modals/EvaluationModal.vue:9 #: frontend/src/components/Modals/EvaluationModal.vue:9
#: frontend/src/components/Modals/Question.vue:335 #: frontend/src/components/Modals/Question.vue:338
#: frontend/src/components/Quiz.vue:214 lms/templates/assignment.html:9 #: frontend/src/components/Quiz.vue:214 lms/templates/assignment.html:9
#: lms/templates/livecode/extension_footer.html:25 #: lms/templates/livecode/extension_footer.html:25
#: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163 #: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163
@@ -4754,12 +4746,12 @@ msgstr "Kaydedildi {0}"
#: frontend/src/components/Modals/ChapterModal.vue:198 #: frontend/src/components/Modals/ChapterModal.vue:198
#: 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:264
#: frontend/src/components/Modals/Question.vue:312 #: frontend/src/components/Modals/Question.vue:315
#: frontend/src/pages/CourseForm.vue:460 frontend/src/pages/ProgramForm.vue:226 #: frontend/src/pages/CourseForm.vue:460 frontend/src/pages/ProgramForm.vue:229
#: frontend/src/pages/ProgramForm.vue:248 #: frontend/src/pages/ProgramForm.vue:251
#: frontend/src/pages/ProgramForm.vue:269 #: frontend/src/pages/ProgramForm.vue:272
#: frontend/src/pages/ProgramForm.vue:295 frontend/src/pages/QuizForm.vue:343 #: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:343
#: frontend/src/pages/QuizForm.vue:362 frontend/src/pages/QuizForm.vue:431 #: frontend/src/pages/QuizForm.vue:362 frontend/src/pages/QuizForm.vue:431
msgid "Success" msgid "Success"
msgstr "Başarılı" msgstr "Başarılı"
@@ -4856,7 +4848,7 @@ msgstr "Şablon"
msgid "Temporarily Disabled" msgid "Temporarily Disabled"
msgstr "Geçici Olarak Devre Dışı" msgstr "Geçici Olarak Devre Dışı"
#: lms/lms/utils.py:440 #: lms/lms/utils.py:436
msgid "Terms of Use" msgid "Terms of Use"
msgstr "Kullanım Koşulları" msgstr "Kullanım Koşulları"
@@ -4920,7 +4912,7 @@ msgstr "Bu kursta bölüm bulunmamaktadır. Bölümleri buradan oluşturun ve y
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!" msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr "Şu anda mevcut toplu ders bulunmamaktadır. Gözünüzü dört açın, yeni öğrenme deneyimleri yakında yolda!" msgstr "Şu anda mevcut toplu ders bulunmamaktadır. Gözünüzü dört açın, yeni öğrenme deneyimleri yakında yolda!"
#: frontend/src/pages/Programs.vue:86 #: frontend/src/pages/Programs.vue:97
msgid "There are no programs available at the moment. Keep an eye out, fresh learning experiences are on the way soon!" msgid "There are no programs available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr "" msgstr ""
@@ -4936,6 +4928,10 @@ msgstr "Bu grupta hiç öğrenci bulunmamaktadır."
msgid "There are no {0} on this site." msgid "There are no {0} on this site."
msgstr "Bu sitede {0} yok." msgstr "Bu sitede {0} yok."
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:41
msgid "There has been an update on your submission. You have got a score of {0} for the quiz {1}"
msgstr ""
#. Description of the 'section_break_ubxi' (Section Break) field in DocType #. Description of the 'section_break_ubxi' (Section Break) field in DocType
#. 'LMS Batch' #. 'LMS Batch'
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
@@ -4955,7 +4951,7 @@ msgstr ""
msgid "This course has:" msgid "This course has:"
msgstr "Bu kursta:" msgstr "Bu kursta:"
#: lms/lms/utils.py:1585 #: lms/lms/utils.py:1582
msgid "This course is free." msgid "This course is free."
msgstr "Bu kurs ücretsizdir." msgstr "Bu kurs ücretsizdir."
@@ -5060,7 +5056,7 @@ msgstr ""
#: frontend/src/components/Modals/LiveClassModal.vue:23 #: frontend/src/components/Modals/LiveClassModal.vue:23
#: frontend/src/pages/BatchForm.vue:20 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/ProgramForm.vue:11 #: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/ProgramForm.vue:11
#: frontend/src/pages/Programs.vue:107 frontend/src/pages/QuizForm.vue:48 #: frontend/src/pages/Programs.vue:118 frontend/src/pages/QuizForm.vue:48
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json #: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json
@@ -5097,7 +5093,7 @@ msgstr "Alıcı"
msgid "To Date" msgid "To Date"
msgstr "Bitiş Tarihi" msgstr "Bitiş Tarihi"
#: lms/lms/utils.py:1596 #: 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 ""
@@ -5114,7 +5110,7 @@ msgid "Total"
msgstr "Toplam" msgstr "Toplam"
#. Label of the total_marks (Int) field in DocType 'LMS Quiz' #. Label of the total_marks (Int) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:66 frontend/src/pages/Quizzes.vue:119 #: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:119
#: lms/lms/doctype/lms_quiz/lms_quiz.json #: lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Total Marks" msgid "Total Marks"
msgstr "" msgstr ""
@@ -5151,7 +5147,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/Jobs.vue:16 #: frontend/src/pages/JobCreation.vue:33 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
@@ -5509,12 +5505,16 @@ msgstr "Bu kursa zaten yorum eklediniz"
#: frontend/src/components/BatchOverlay.vue:136 #: frontend/src/components/BatchOverlay.vue:136
msgid "You have been enrolled in this batch" msgid "You have been enrolled in this batch"
msgstr "" msgstr "Bu gruba kayıt oldunuz"
#: frontend/src/components/CourseCardOverlay.vue:162 #: frontend/src/components/CourseCardOverlay.vue:162
msgid "You have been enrolled in this course" msgid "You have been enrolled in this course"
msgstr "Bu kursa zaten kayıtlısınız" msgstr "Bu kursa zaten kayıtlısınız"
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:38
msgid "You have got a score of {0} for the quiz {1}"
msgstr ""
#: frontend/src/pages/Quizzes.vue:60 #: frontend/src/pages/Quizzes.vue:60
msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above." msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above."
msgstr "" msgstr ""
@@ -5667,7 +5667,7 @@ msgstr ""
#: lms/lms/doctype/lms_enrollment/lms_enrollment.py:57 #: lms/lms/doctype/lms_enrollment/lms_enrollment.py:57
msgid "{0} is already a Student of {1} course through {2} batch" msgid "{0} is already a Student of {1} course through {2} batch"
msgstr "" msgstr "{0} halihazırda {2} grubu aracılığıyla {1} kursu öğrencisidir"
#: lms/lms/doctype/lms_course_mentor_mapping/lms_course_mentor_mapping.py:16 #: lms/lms/doctype/lms_course_mentor_mapping/lms_course_mentor_mapping.py:16
msgid "{0} is already a mentor for course {1}" msgid "{0} is already a mentor for course {1}"
@@ -5685,7 +5685,7 @@ msgstr ""
msgid "{0} is your evaluator" msgid "{0} is your evaluator"
msgstr "" msgstr ""
#: lms/lms/utils.py:704 #: lms/lms/utils.py:700
msgid "{0} mentioned you in a comment" msgid "{0} mentioned you in a comment"
msgstr "{0} bir yorumda sizden bahsetti" msgstr "{0} bir yorumda sizden bahsetti"
@@ -5693,11 +5693,11 @@ msgstr "{0} bir yorumda sizden bahsetti"
msgid "{0} mentioned you in a comment in your batch." msgid "{0} mentioned you in a comment in your batch."
msgstr "" msgstr ""
#: lms/lms/utils.py:657 lms/lms/utils.py:663 #: lms/lms/utils.py:653 lms/lms/utils.py:659
msgid "{0} mentioned you in a comment in {1}" msgid "{0} mentioned you in a comment in {1}"
msgstr "" msgstr ""
#: lms/lms/utils.py:480 #: lms/lms/utils.py:476
msgid "{0}k" msgid "{0}k"
msgstr "" msgstr ""

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-11-22 16:05+0000\n" "POT-Creation-Date: 2024-11-29 16:04+0000\n"
"PO-Revision-Date: 2024-11-25 19:29\n" "PO-Revision-Date: 2024-12-02 22:11\n"
"Last-Translator: jannat@frappe.io\n" "Last-Translator: jannat@frappe.io\n"
"Language-Team: Chinese Simplified\n" "Language-Team: Chinese Simplified\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -105,7 +105,7 @@ msgstr "活动"
#: frontend/src/components/Categories.vue:26 #: frontend/src/components/Categories.vue:26
#: frontend/src/components/LiveClass.vue:11 #: frontend/src/components/LiveClass.vue:11
#: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30 #: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30
#: frontend/src/pages/ProgramForm.vue:91 frontend/src/pages/ProgramForm.vue:136 #: frontend/src/pages/ProgramForm.vue:92 frontend/src/pages/ProgramForm.vue:137
msgid "Add" msgid "Add"
msgstr "添加" msgstr "添加"
@@ -147,8 +147,8 @@ msgstr ""
msgid "Add a lesson" msgid "Add a lesson"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Question.vue:141 #: frontend/src/components/Modals/Question.vue:144
#: frontend/src/pages/QuizForm.vue:182 #: frontend/src/pages/QuizForm.vue:183
msgid "Add a new question" msgid "Add a new question"
msgstr "" msgstr ""
@@ -922,25 +922,25 @@ msgstr "公司"
#. Label of the company_details_section (Section Break) field in DocType 'Job #. Label of the company_details_section (Section Break) field in DocType 'Job
#. Opportunity' #. Opportunity'
#: frontend/src/pages/JobCreation.vue:56 #: frontend/src/pages/JobCreation.vue:64
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Details" msgid "Company Details"
msgstr "公司详情" msgstr "公司详情"
#. Label of the company_email_address (Data) field in DocType 'Job Opportunity' #. Label of the company_email_address (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobCreation.vue:73 #: frontend/src/pages/JobCreation.vue:83
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Email Address" msgid "Company Email Address"
msgstr "" msgstr ""
#. Label of the company_logo (Attach Image) field in DocType 'Job Opportunity' #. Label of the company_logo (Attach Image) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobCreation.vue:77 #: frontend/src/pages/JobCreation.vue:88
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Logo" msgid "Company Logo"
msgstr "" msgstr ""
#. Label of the company_name (Data) field in DocType 'Job Opportunity' #. Label of the company_name (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobCreation.vue:62 #: frontend/src/pages/JobCreation.vue:70
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Name" msgid "Company Name"
msgstr "公司名称" msgstr "公司名称"
@@ -951,7 +951,7 @@ msgid "Company Type"
msgstr "" msgstr ""
#. Label of the company_website (Data) field in DocType 'Job Opportunity' #. Label of the company_website (Data) field in DocType 'Job Opportunity'
#: frontend/src/pages/JobCreation.vue:67 #: frontend/src/pages/JobCreation.vue:76
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Company Website" msgid "Company Website"
msgstr "" msgstr ""
@@ -1025,7 +1025,7 @@ msgstr ""
msgid "Contract" msgid "Contract"
msgstr "合同" msgstr "合同"
#: lms/lms/utils.py:442 #: lms/lms/utils.py:438
msgid "Cookie Policy" msgid "Cookie Policy"
msgstr "" msgstr ""
@@ -1047,7 +1047,7 @@ msgstr ""
msgid "Correct" msgid "Correct"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Question.vue:71 #: frontend/src/components/Modals/Question.vue:73
msgid "Correct Answer" msgid "Correct Answer"
msgstr "" msgstr ""
@@ -1218,7 +1218,7 @@ msgstr ""
msgid "Course Title" msgid "Course Title"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:226 #: frontend/src/pages/ProgramForm.vue:229
msgid "Course added to program" msgid "Course added to program"
msgstr "" msgstr ""
@@ -1230,7 +1230,7 @@ msgstr ""
msgid "Course deleted successfully" msgid "Course deleted successfully"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:295 #: frontend/src/pages/ProgramForm.vue:298
msgid "Course moved successfully" msgid "Course moved successfully"
msgstr "" msgstr ""
@@ -1270,7 +1270,7 @@ msgid "Cover Image"
msgstr "" msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:9 #: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/pages/Programs.vue:99 #: frontend/src/pages/Programs.vue:110
msgid "Create" msgid "Create"
msgstr "创建" msgstr "创建"
@@ -1446,7 +1446,7 @@ msgstr ""
#. Label of the description (Text) field in DocType 'LMS Live Class' #. Label of the description (Text) field in DocType 'LMS Live Class'
#. Label of the description (Small Text) field in DocType 'Work Experience' #. Label of the description (Small Text) field in DocType 'Work Experience'
#: frontend/src/components/Modals/LiveClassModal.vue:78 #: frontend/src/components/Modals/LiveClassModal.vue:78
#: frontend/src/pages/BatchForm.vue:96 frontend/src/pages/JobCreation.vue:43 #: frontend/src/pages/BatchForm.vue:96 frontend/src/pages/JobCreation.vue:50
#: 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
@@ -1527,7 +1527,7 @@ msgstr ""
msgid "Duration" msgid "Duration"
msgstr "持续时间" msgstr "持续时间"
#: frontend/src/pages/QuizForm.vue:62 #: frontend/src/pages/QuizForm.vue:63
msgid "Duration (in minutes)" msgid "Duration (in minutes)"
msgstr "" msgstr ""
@@ -1562,7 +1562,7 @@ msgstr ""
msgid "Edit Profile" msgid "Edit Profile"
msgstr "编辑个人资料" msgstr "编辑个人资料"
#: frontend/src/pages/QuizForm.vue:181 #: frontend/src/pages/QuizForm.vue:182
msgid "Edit the question" msgid "Edit the question"
msgstr "" msgstr ""
@@ -1693,7 +1693,7 @@ msgstr ""
msgid "Enrollment Count" msgid "Enrollment Count"
msgstr "" msgstr ""
#: lms/lms/utils.py:1705 #: lms/lms/utils.py:1702
msgid "Enrollment Failed" msgid "Enrollment Failed"
msgstr "" msgstr ""
@@ -1725,12 +1725,12 @@ msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:159 #: frontend/src/components/Modals/ChapterModal.vue:159
#: frontend/src/components/Modals/ChapterModal.vue:166 #: frontend/src/components/Modals/ChapterModal.vue:166
#: frontend/src/components/Modals/ChapterModal.vue:202 #: frontend/src/components/Modals/ChapterModal.vue:202
#: frontend/src/components/Modals/Question.vue:246 #: frontend/src/components/Modals/Question.vue:249
#: frontend/src/components/Modals/Question.vue:266 #: frontend/src/components/Modals/Question.vue:269
#: frontend/src/components/Modals/Question.vue:323 #: frontend/src/components/Modals/Question.vue:326
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350 #: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350
#: frontend/src/pages/QuizForm.vue:365 #: frontend/src/pages/QuizForm.vue:365
#: frontend/src/pages/QuizSubmission.vue:117 #: frontend/src/pages/QuizSubmission.vue:141
msgid "Error" msgid "Error"
msgstr "错误" msgstr "错误"
@@ -1858,7 +1858,7 @@ msgstr ""
#. Label of the explanation_1 (Small Text) field in DocType 'LMS Question' #. Label of the explanation_1 (Small Text) field in DocType 'LMS Question'
#. Label of the explanation_3 (Small Text) field in DocType 'LMS Question' #. Label of the explanation_3 (Small Text) field in DocType 'LMS Question'
#. Label of the explanation_4 (Small Text) field in DocType 'LMS Question' #. Label of the explanation_4 (Small Text) field in DocType 'LMS Question'
#: frontend/src/components/Modals/Question.vue:67 #: frontend/src/components/Modals/Question.vue:69
#: lms/lms/doctype/lms_question/lms_question.json #: lms/lms/doctype/lms_question/lms_question.json
msgid "Explanation" msgid "Explanation"
msgstr "" msgstr ""
@@ -2116,14 +2116,6 @@ msgstr ""
msgid "How to add a Quiz?" msgid "How to add a Quiz?"
msgstr "" msgstr ""
#: frontend/src/components/LessonHelp.vue:47
msgid "How to add a YouTube Video?"
msgstr ""
#: frontend/src/components/LessonHelp.vue:28
msgid "How to upload content from your system?"
msgstr ""
#. Label of the current (Check) field in DocType 'Work Experience' #. Label of the current (Check) field in DocType 'Work Experience'
#: lms/lms/doctype/work_experience/work_experience.json #: lms/lms/doctype/work_experience/work_experience.json
msgid "I am currently working here" msgid "I am currently working here"
@@ -2202,7 +2194,7 @@ msgstr ""
msgid "Image search powered by" msgid "Image search powered by"
msgstr "" msgstr ""
#: lms/lms/doctype/lms_quiz/lms_quiz.py:222 #: lms/lms/doctype/lms_quiz/lms_quiz.py:221
msgid "Image: Corrupted Data Stream" msgid "Image: Corrupted Data Stream"
msgstr "" msgstr ""
@@ -2388,7 +2380,7 @@ msgstr ""
msgid "Items in Sidebar" msgid "Items in Sidebar"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:269 #: frontend/src/pages/ProgramForm.vue:272
msgid "Items removed successfully" msgid "Items removed successfully"
msgstr "" msgstr ""
@@ -2757,7 +2749,7 @@ msgid "Letter Grade (e.g. A, B-)"
msgstr "" msgstr ""
#. Label of the limit_questions_to (Int) field in DocType 'LMS Quiz' #. Label of the limit_questions_to (Int) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:107 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:108 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Limit Questions To" msgid "Limit Questions To"
msgstr "" msgstr ""
@@ -2817,7 +2809,7 @@ msgstr "当地"
#. Label of the location (Data) field in DocType 'Job Opportunity' #. Label of the location (Data) field in DocType 'Job Opportunity'
#. Label of the location (Data) field in DocType 'Education Detail' #. Label of the location (Data) field in DocType 'Education Detail'
#. Label of the location (Data) field in DocType 'Work Experience' #. Label of the location (Data) field in DocType 'Work Experience'
#: frontend/src/pages/JobCreation.vue:23 frontend/src/pages/JobDetail.vue:89 #: frontend/src/pages/JobCreation.vue:26 frontend/src/pages/JobDetail.vue:89
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/education_detail/education_detail.json #: lms/lms/doctype/education_detail/education_detail.json
#: lms/lms/doctype/work_experience/work_experience.json #: lms/lms/doctype/work_experience/work_experience.json
@@ -2887,21 +2879,21 @@ msgstr ""
#. Label of the marks (Int) field in DocType 'LMS Quiz Question' #. Label of the marks (Int) field in DocType 'LMS Quiz Question'
#. Label of the marks (Int) field in DocType 'LMS Quiz Result' #. Label of the marks (Int) field in DocType 'LMS Quiz Result'
#: frontend/src/components/Modals/Question.vue:50 #: frontend/src/components/Modals/Question.vue:50
#: frontend/src/components/Modals/Question.vue:96 #: frontend/src/components/Modals/Question.vue:99
#: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:394 #: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:394
#: frontend/src/pages/QuizSubmission.vue:52 #: frontend/src/pages/QuizSubmission.vue:59
#: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json #: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json
#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json
#: lms/templates/quiz/quiz.html:59 #: lms/templates/quiz/quiz.html:59
msgid "Marks" msgid "Marks"
msgstr "" msgstr ""
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:19 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:23
msgid "Marks for question number {0} cannot be greater than the marks allotted for that question." msgid "Marks for question number {0} cannot be greater than the marks allotted for that question."
msgstr "" msgstr ""
#. Label of the marks_out_of (Int) field in DocType 'LMS Quiz Result' #. Label of the marks_out_of (Int) field in DocType 'LMS Quiz Result'
#: frontend/src/pages/QuizSubmission.vue:55 #: frontend/src/pages/QuizSubmission.vue:62
#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json
msgid "Marks out of" msgid "Marks out of"
msgstr "" msgstr ""
@@ -2911,7 +2903,7 @@ msgstr ""
msgid "Max Attempts" msgid "Max Attempts"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:57 #: frontend/src/pages/QuizForm.vue:58
msgid "Maximun Attempts" msgid "Maximun Attempts"
msgstr "" msgstr ""
@@ -2945,7 +2937,7 @@ msgstr "中:"
#. Label of the member (Link) field in DocType 'LMS Payment' #. Label of the member (Link) field in DocType 'LMS Payment'
#. Label of the member (Link) field in DocType 'LMS Program Member' #. Label of the member (Link) field in DocType 'LMS Program Member'
#. Label of the member (Link) field in DocType 'LMS Quiz Submission' #. Label of the member (Link) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizSubmission.vue:27 #: frontend/src/pages/QuizSubmission.vue:31
#: frontend/src/pages/QuizSubmissionList.vue:77 #: frontend/src/pages/QuizSubmissionList.vue:77
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
#: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json
@@ -3008,7 +3000,7 @@ msgstr ""
msgid "Member Type" msgid "Member Type"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:248 #: frontend/src/pages/ProgramForm.vue:251
msgid "Member added to program" msgid "Member added to program"
msgstr "" msgstr ""
@@ -3173,19 +3165,19 @@ msgstr ""
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "" msgstr ""
#: frontend/src/pages/Programs.vue:96 #: frontend/src/pages/Programs.vue:107
msgid "New Program" msgid "New Program"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:132 #: frontend/src/pages/ProgramForm.vue:133
msgid "New Program Course" msgid "New Program Course"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:133 #: frontend/src/pages/ProgramForm.vue:134
msgid "New Program Member" msgid "New Program Member"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:122 #: frontend/src/pages/QuizForm.vue:123
msgid "New Question" msgid "New Question"
msgstr "" msgstr ""
@@ -3198,11 +3190,11 @@ msgstr ""
msgid "New Sign Up" msgid "New Sign Up"
msgstr "" msgstr ""
#: lms/lms/utils.py:627 #: lms/lms/utils.py:623
msgid "New comment in batch {0}" msgid "New comment in batch {0}"
msgstr "" msgstr ""
#: lms/lms/utils.py:620 #: lms/lms/utils.py:616
msgid "New reply on the topic {0} in course {1}" msgid "New reply on the topic {0} in course {1}"
msgstr "" msgstr ""
@@ -3256,7 +3248,7 @@ msgstr ""
msgid "No courses found" msgid "No courses found"
msgstr "" msgstr ""
#: frontend/src/pages/Programs.vue:72 #: frontend/src/pages/Programs.vue:83
msgid "No courses in this program" msgid "No courses in this program"
msgstr "" msgstr ""
@@ -3276,7 +3268,7 @@ msgstr ""
msgid "No live classes scheduled" msgid "No live classes scheduled"
msgstr "" msgstr ""
#: frontend/src/pages/Programs.vue:82 #: frontend/src/pages/Programs.vue:93
msgid "No programs found" msgid "No programs found"
msgstr "" msgstr ""
@@ -3388,7 +3380,7 @@ msgstr ""
msgid "Online" msgid "Online"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:156 #: frontend/src/pages/ProgramForm.vue:157
msgid "Only courses for which self learning is disabled can be added to program." msgid "Only courses for which self learning is disabled can be added to program."
msgstr "" msgstr ""
@@ -3396,7 +3388,7 @@ msgstr ""
msgid "Only files of type {0} will be accepted." msgid "Only files of type {0} will be accepted."
msgstr "" msgstr ""
#: frontend/src/pages/CourseForm.vue:497 frontend/src/utils/index.js:518 #: frontend/src/pages/CourseForm.vue:497 frontend/src/utils/index.js:520
msgid "Only image file is allowed." msgid "Only image file is allowed."
msgstr "" msgstr ""
@@ -3432,7 +3424,7 @@ msgid "Open Network"
msgstr "" msgstr ""
#. Label of the option (Data) field in DocType 'LMS Option' #. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:63 #: frontend/src/components/Modals/Question.vue:64
#: lms/lms/doctype/lms_option/lms_option.json #: lms/lms/doctype/lms_option/lms_option.json
msgid "Option" msgid "Option"
msgstr "" msgstr ""
@@ -3547,7 +3539,7 @@ msgstr ""
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz' #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz'
#. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission' #. Label of the passing_percentage (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizForm.vue:71 frontend/src/pages/Quizzes.vue:125 #: frontend/src/pages/QuizForm.vue:72 frontend/src/pages/Quizzes.vue:125
#: lms/lms/doctype/lms_quiz/lms_quiz.json #: lms/lms/doctype/lms_quiz/lms_quiz.json
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
msgid "Passing Percentage" msgid "Passing Percentage"
@@ -3641,7 +3633,7 @@ msgid "Pending"
msgstr "有待" msgstr "有待"
#. Label of the percentage (Int) field in DocType 'LMS Quiz Submission' #. Label of the percentage (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizSubmission.vue:40 #: frontend/src/pages/QuizSubmission.vue:44
#: frontend/src/pages/QuizSubmissionList.vue:93 #: frontend/src/pages/QuizSubmissionList.vue:93
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
msgid "Percentage" msgid "Percentage"
@@ -3676,7 +3668,7 @@ msgstr "请检查您的电子邮件验证"
msgid "Please click on the following button to set your new password" msgid "Please click on the following button to set your new password"
msgstr "" msgstr ""
#: lms/lms/utils.py:1817 lms/lms/utils.py:1821 #: lms/lms/utils.py:1824 lms/lms/utils.py:1828
msgid "Please complete the previous courses in the program to enroll in this course." msgid "Please complete the previous courses in the program to enroll in this course."
msgstr "" msgstr ""
@@ -3779,7 +3771,7 @@ msgstr ""
msgid "Point of Score (e.g. 70)" msgid "Point of Score (e.g. 70)"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Question.vue:83 #: frontend/src/components/Modals/Question.vue:85
msgid "Possibility" msgid "Possibility"
msgstr "" msgstr ""
@@ -3875,7 +3867,7 @@ msgstr ""
msgid "Primary Subgroup" msgid "Primary Subgroup"
msgstr "" msgstr ""
#: lms/lms/utils.py:441 #: lms/lms/utils.py:437
msgid "Privacy Policy" msgid "Privacy Policy"
msgstr "" msgstr ""
@@ -3903,7 +3895,7 @@ msgstr ""
msgid "Profile Image" msgid "Profile Image"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:154 #: frontend/src/pages/ProgramForm.vue:155
msgid "Program Course" msgid "Program Course"
msgstr "" msgstr ""
@@ -3913,12 +3905,12 @@ msgstr ""
msgid "Program Courses" msgid "Program Courses"
msgstr "" msgstr ""
#: frontend/src/pages/ProgramForm.vue:169 #: frontend/src/pages/ProgramForm.vue:170
msgid "Program Member" msgid "Program Member"
msgstr "" msgstr ""
#. Label of the program_members (Table) field in DocType 'LMS Program' #. Label of the program_members (Table) field in DocType 'LMS Program'
#: frontend/src/pages/ProgramForm.vue:78 #: frontend/src/pages/ProgramForm.vue:79
#: lms/lms/doctype/lms_program/lms_program.json #: lms/lms/doctype/lms_program/lms_program.json
msgid "Program Members" msgid "Program Members"
msgstr "" msgstr ""
@@ -4001,11 +3993,11 @@ msgstr ""
msgid "Question Name" msgid "Question Name"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Question.vue:261 #: frontend/src/components/Modals/Question.vue:264
msgid "Question added successfully" msgid "Question added successfully"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Question.vue:313 #: frontend/src/components/Modals/Question.vue:316
msgid "Question updated successfully" msgid "Question updated successfully"
msgstr "" msgstr ""
@@ -4018,7 +4010,7 @@ msgid "Question {0} of {1}"
msgstr "" msgstr ""
#. Label of the questions (Table) field in DocType 'LMS Quiz' #. Label of the questions (Table) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:116 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:117 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Questions" msgid "Questions"
msgstr "" msgstr ""
@@ -4028,7 +4020,7 @@ msgstr ""
#. Label of the quiz (Link) field in DocType 'LMS Quiz Submission' #. Label of the quiz (Link) field in DocType 'LMS Quiz Submission'
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#: frontend/src/pages/QuizSubmission.vue:22 #: frontend/src/pages/QuizSubmission.vue:26
#: frontend/src/pages/QuizSubmissionList.vue:82 frontend/src/utils/quiz.js:24 #: frontend/src/pages/QuizSubmissionList.vue:82 frontend/src/utils/quiz.js:24
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
#: lms/lms/workspace/lms/lms.json #: lms/lms/workspace/lms/lms.json
@@ -4046,7 +4038,7 @@ msgstr ""
msgid "Quiz Submission" msgid "Quiz Submission"
msgstr "" msgstr ""
#: frontend/src/pages/QuizSubmission.vue:98 #: frontend/src/pages/QuizSubmission.vue:122
#: frontend/src/pages/QuizSubmissionList.vue:102 #: frontend/src/pages/QuizSubmissionList.vue:102
msgid "Quiz Submissions" msgid "Quiz Submissions"
msgstr "" msgstr ""
@@ -4315,7 +4307,7 @@ msgid "Scope"
msgstr "" msgstr ""
#. Label of the score (Int) field in DocType 'LMS Quiz Submission' #. Label of the score (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizSubmission.vue:35 #: frontend/src/pages/QuizSubmission.vue:39
#: frontend/src/pages/QuizSubmissionList.vue:87 #: frontend/src/pages/QuizSubmissionList.vue:87
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
#: lms/templates/quiz/quiz.html:148 #: lms/templates/quiz/quiz.html:148
@@ -4352,7 +4344,7 @@ msgstr ""
msgid "Seats Left" msgid "Seats Left"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Question.vue:91 #: frontend/src/components/Modals/Question.vue:94
msgid "Select a question" msgid "Select a question"
msgstr "" msgstr ""
@@ -4381,7 +4373,7 @@ msgstr ""
#: frontend/src/components/Modals/Settings.vue:7 #: frontend/src/components/Modals/Settings.vue:7
#: frontend/src/pages/BatchForm.vue:165 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:79
msgid "Settings" msgid "Settings"
msgstr "设置" msgstr "设置"
@@ -4405,12 +4397,12 @@ msgid "Show Answer"
msgstr "" msgstr ""
#. Label of the show_answers (Check) field in DocType 'LMS Quiz' #. Label of the show_answers (Check) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:84 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:85 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Show Answers" msgid "Show Answers"
msgstr "" msgstr ""
#. Label of the show_submission_history (Check) field in DocType 'LMS Quiz' #. Label of the show_submission_history (Check) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:89 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:90 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Show Submission History" msgid "Show Submission History"
msgstr "" msgstr ""
@@ -4435,11 +4427,11 @@ msgid "Show live class"
msgstr "" msgstr ""
#. Label of the shuffle_questions (Check) field in DocType 'LMS Quiz' #. Label of the shuffle_questions (Check) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:102 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:103 lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Shuffle Questions" msgid "Shuffle Questions"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:96 #: frontend/src/pages/QuizForm.vue:97
msgid "Shuffle Settings" msgid "Shuffle Settings"
msgstr "" msgstr ""
@@ -4635,7 +4627,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Course Progress' #. Label of the status (Select) field in DocType 'LMS Course Progress'
#. Label of the status (Select) field in DocType 'LMS Mentor Request' #. Label of the status (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:91 #: frontend/src/components/Modals/Event.vue:91
#: frontend/src/pages/JobCreation.vue:35 #: frontend/src/pages/JobCreation.vue:41
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_join_request/cohort_join_request.json #: lms/lms/doctype/cohort_join_request/cohort_join_request.json
@@ -4727,7 +4719,7 @@ msgstr ""
#: frontend/src/components/Modals/AssessmentModal.vue:9 #: frontend/src/components/Modals/AssessmentModal.vue:9
#: frontend/src/components/Modals/BatchCourseModal.vue:9 #: frontend/src/components/Modals/BatchCourseModal.vue:9
#: frontend/src/components/Modals/EvaluationModal.vue:9 #: frontend/src/components/Modals/EvaluationModal.vue:9
#: frontend/src/components/Modals/Question.vue:335 #: frontend/src/components/Modals/Question.vue:338
#: frontend/src/components/Quiz.vue:214 lms/templates/assignment.html:9 #: frontend/src/components/Quiz.vue:214 lms/templates/assignment.html:9
#: lms/templates/livecode/extension_footer.html:25 #: lms/templates/livecode/extension_footer.html:25
#: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163 #: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163
@@ -4754,12 +4746,12 @@ msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:198 #: frontend/src/components/Modals/ChapterModal.vue:198
#: 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:264
#: frontend/src/components/Modals/Question.vue:312 #: frontend/src/components/Modals/Question.vue:315
#: frontend/src/pages/CourseForm.vue:460 frontend/src/pages/ProgramForm.vue:226 #: frontend/src/pages/CourseForm.vue:460 frontend/src/pages/ProgramForm.vue:229
#: frontend/src/pages/ProgramForm.vue:248 #: frontend/src/pages/ProgramForm.vue:251
#: frontend/src/pages/ProgramForm.vue:269 #: frontend/src/pages/ProgramForm.vue:272
#: frontend/src/pages/ProgramForm.vue:295 frontend/src/pages/QuizForm.vue:343 #: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:343
#: frontend/src/pages/QuizForm.vue:362 frontend/src/pages/QuizForm.vue:431 #: frontend/src/pages/QuizForm.vue:362 frontend/src/pages/QuizForm.vue:431
msgid "Success" msgid "Success"
msgstr "成功" msgstr "成功"
@@ -4856,7 +4848,7 @@ msgstr "模板"
msgid "Temporarily Disabled" msgid "Temporarily Disabled"
msgstr "暂时禁用" msgstr "暂时禁用"
#: lms/lms/utils.py:440 #: lms/lms/utils.py:436
msgid "Terms of Use" msgid "Terms of Use"
msgstr "" msgstr ""
@@ -4920,7 +4912,7 @@ msgstr ""
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!" msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr "" msgstr ""
#: frontend/src/pages/Programs.vue:86 #: frontend/src/pages/Programs.vue:97
msgid "There are no programs available at the moment. Keep an eye out, fresh learning experiences are on the way soon!" msgid "There are no programs available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
msgstr "" msgstr ""
@@ -4936,6 +4928,10 @@ msgstr ""
msgid "There are no {0} on this site." msgid "There are no {0} on this site."
msgstr "" msgstr ""
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:41
msgid "There has been an update on your submission. You have got a score of {0} for the quiz {1}"
msgstr ""
#. Description of the 'section_break_ubxi' (Section Break) field in DocType #. Description of the 'section_break_ubxi' (Section Break) field in DocType
#. 'LMS Batch' #. 'LMS Batch'
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
@@ -4955,7 +4951,7 @@ msgstr ""
msgid "This course has:" msgid "This course has:"
msgstr "" msgstr ""
#: lms/lms/utils.py:1585 #: lms/lms/utils.py:1582
msgid "This course is free." msgid "This course is free."
msgstr "" msgstr ""
@@ -5060,7 +5056,7 @@ msgstr ""
#: frontend/src/components/Modals/LiveClassModal.vue:23 #: frontend/src/components/Modals/LiveClassModal.vue:23
#: frontend/src/pages/BatchForm.vue:20 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/ProgramForm.vue:11 #: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/ProgramForm.vue:11
#: frontend/src/pages/Programs.vue:107 frontend/src/pages/QuizForm.vue:48 #: frontend/src/pages/Programs.vue:118 frontend/src/pages/QuizForm.vue:48
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json #: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json
@@ -5097,7 +5093,7 @@ msgstr "至"
msgid "To Date" msgid "To Date"
msgstr "至今" msgstr "至今"
#: lms/lms/utils.py:1596 #: 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 ""
@@ -5114,7 +5110,7 @@ msgid "Total"
msgstr "总" msgstr "总"
#. Label of the total_marks (Int) field in DocType 'LMS Quiz' #. Label of the total_marks (Int) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:66 frontend/src/pages/Quizzes.vue:119 #: frontend/src/pages/QuizForm.vue:67 frontend/src/pages/Quizzes.vue:119
#: lms/lms/doctype/lms_quiz/lms_quiz.json #: lms/lms/doctype/lms_quiz/lms_quiz.json
msgid "Total Marks" msgid "Total Marks"
msgstr "" msgstr ""
@@ -5151,7 +5147,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/Jobs.vue:16 #: frontend/src/pages/JobCreation.vue:33 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
@@ -5515,6 +5511,10 @@ msgstr ""
msgid "You have been enrolled in this course" msgid "You have been enrolled in this course"
msgstr "" msgstr ""
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:38
msgid "You have got a score of {0} for the quiz {1}"
msgstr ""
#: frontend/src/pages/Quizzes.vue:60 #: frontend/src/pages/Quizzes.vue:60
msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above." msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above."
msgstr "" msgstr ""
@@ -5685,7 +5685,7 @@ msgstr ""
msgid "{0} is your evaluator" msgid "{0} is your evaluator"
msgstr "" msgstr ""
#: lms/lms/utils.py:704 #: lms/lms/utils.py:700
msgid "{0} mentioned you in a comment" msgid "{0} mentioned you in a comment"
msgstr "" msgstr ""
@@ -5693,11 +5693,11 @@ msgstr ""
msgid "{0} mentioned you in a comment in your batch." msgid "{0} mentioned you in a comment in your batch."
msgstr "" msgstr ""
#: lms/lms/utils.py:657 lms/lms/utils.py:663 #: lms/lms/utils.py:653 lms/lms/utils.py:659
msgid "{0} mentioned you in a comment in {1}" msgid "{0} mentioned you in a comment in {1}"
msgstr "" msgstr ""
#: lms/lms/utils.py:480 #: lms/lms/utils.py:476
msgid "{0}k" msgid "{0}k"
msgstr "" msgstr ""

View File

@@ -95,3 +95,4 @@ lms.patches.v2_0.add_course_statistics #21-10-2024
lms.patches.v2_0.give_discussions_permissions lms.patches.v2_0.give_discussions_permissions
lms.patches.v2_0.delete_web_forms lms.patches.v2_0.delete_web_forms
lms.patches.v2_0.update_desk_access_for_lms_roles lms.patches.v2_0.update_desk_access_for_lms_roles
lms.patches.v2_0.update_quiz_submission_data

View File

@@ -2,4 +2,4 @@ import frappe
def execute(): def execute():
frappe.db.delete("Web Form", {"module": "LMS"}) frappe.db.delete("Web Form", {"module": "LMS", "is_standard": 1})

View File

@@ -0,0 +1,47 @@
import frappe
def execute():
set_question_data()
set_submission_data()
def set_question_data():
questions = frappe.get_all("LMS Quiz Question", fields=["name", "question"])
for question in questions:
question_doc = frappe.db.get_value(
"LMS Question", question.question, ["question", "type"], as_dict=1
)
frappe.db.set_value(
"LMS Quiz Question",
question.name,
{"question_detail": question_doc.question, "type": question_doc.type},
)
def set_submission_data():
submissions = frappe.get_all("LMS Quiz Submission", fields=["name", "quiz"])
for submission in submissions:
quiz_title = frappe.db.get_value("LMS Quiz", submission.quiz, "title")
frappe.db.set_value("LMS Quiz Submission", submission.name, "quiz_title", quiz_title)
questions = frappe.get_all(
"LMS Quiz Result", filters={"parent": submission.name}, fields=["question_name"]
)
for question in questions:
if question.question_name:
marks_out_of = frappe.db.get_value(
"LMS Quiz Question",
{"parent": submission.quiz, "question": question.question_name},
["marks"],
)
frappe.db.set_value(
"LMS Quiz Result",
{"parent": submission.name, "question_name": question.question_name},
"marks_out_of",
marks_out_of,
)

View File

@@ -1,74 +0,0 @@
import frappe
from lms.lms.utils import get_lesson_url, get_lessons, get_membership
from frappe.utils import cstr
from lms.lms.utils import redirect_to_courses_list
def get_common_context(context):
context.no_cache = 1
try:
batch_name = frappe.form_dict["batch"]
except KeyError:
batch_name = None
course = frappe.db.get_value(
"LMS Course",
frappe.form_dict["course"],
["name", "title", "video_link", "enable_certification", "status"],
as_dict=True,
)
if not course:
redirect_to_courses_list()
context.course = course
context.lessons = get_lessons(course.name)
membership = get_membership(course.name, frappe.session.user, batch_name)
context.membership = membership
context.progress = frappe.utils.cint(membership.progress) if membership else 0
context.batch_old = (
membership.batch_old if membership and membership.batch_old else None
)
context.course.query_parameter = (
"?batch=" + membership.batch_old if membership and membership.batch_old else ""
)
context.livecode_url = get_livecode_url()
def get_livecode_url():
return frappe.db.get_single_value("LMS Settings", "livecode_url")
def redirect_to_lesson(course, index_="1.1"):
frappe.local.flags.redirect_location = (
get_lesson_url(course.name, index_) + course.query_parameter
)
raise frappe.Redirect
def get_current_lesson_details(lesson_number, context, is_edit=False):
details_list = list(filter(lambda x: cstr(x.number) == lesson_number, context.lessons))
if not len(details_list):
if is_edit:
return None
else:
redirect_to_lesson(context.course)
lesson_info = details_list[0]
lesson_info.body = lesson_info.body.replace('"', "'")
return lesson_info
def is_student(batch, member=None):
if not member:
member = frappe.session.user
return frappe.db.exists(
"Batch Student",
{
"student": member,
"parent": batch,
},
)