Merge pull request #1155 from frappe/develop
chore: merge 'develop' into 'main'
This commit is contained in:
@@ -18,6 +18,7 @@
|
||||
"@editorjs/nested-list": "^1.4.2",
|
||||
"@editorjs/paragraph": "^2.11.3",
|
||||
"@editorjs/simple-image": "^1.6.0",
|
||||
"@editorjs/table": "^2.4.2",
|
||||
"ace-builds": "^1.36.2",
|
||||
"chart.js": "^4.4.1",
|
||||
"codemirror-editor-vue3": "^2.8.0",
|
||||
|
||||
@@ -186,18 +186,27 @@ const addQuizzes = () => {
|
||||
}
|
||||
|
||||
const addPrograms = () => {
|
||||
if (settingsStore.learningPaths.data) {
|
||||
let activeFor = ['Programs', 'ProgramForm']
|
||||
let index = 1
|
||||
if (!isInstructor.value && !isModerator.value) {
|
||||
sidebarLinks.value = sidebarLinks.value.filter(
|
||||
(link) => link.label !== 'Courses'
|
||||
)
|
||||
activeFor.push('CourseDetail')
|
||||
activeFor.push('Lesson')
|
||||
index = 0
|
||||
}
|
||||
let activeFor = ['Programs', 'ProgramForm']
|
||||
let index = 1
|
||||
let canAddProgram = false
|
||||
|
||||
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, {
|
||||
label: 'Programs',
|
||||
icon: 'Route',
|
||||
|
||||
@@ -8,7 +8,6 @@
|
||||
<AppSidebar />
|
||||
</div>
|
||||
<div class="w-full overflow-auto" id="scrollContainer">
|
||||
<OnboardingBanner />
|
||||
<slot />
|
||||
</div>
|
||||
</div>
|
||||
@@ -17,5 +16,4 @@
|
||||
</template>
|
||||
<script setup>
|
||||
import AppSidebar from './AppSidebar.vue'
|
||||
import OnboardingBanner from '@/components/OnboardingBanner.vue'
|
||||
</script>
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
@click="openHelpDialog('upload')"
|
||||
>
|
||||
<span class="leading-5">
|
||||
{{ __('How to upload content from your system?') }}
|
||||
{{ __(contentMap['upload']) }}
|
||||
</span>
|
||||
<Info class="w-3 h-3 text-gray-700" />
|
||||
</div>
|
||||
@@ -44,7 +44,7 @@
|
||||
@click="openHelpDialog('youtube')"
|
||||
>
|
||||
<span>
|
||||
{{ __('How to add a YouTube Video?') }}
|
||||
{{ __(contentMap['youtube']) }}
|
||||
</span>
|
||||
<Info class="w-3 h-3 text-gray-700" />
|
||||
</div>
|
||||
@@ -72,7 +72,7 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<ExplanationVideos v-model="showExplanation" :type="type" />
|
||||
<ExplanationVideos v-model="showExplanation" :title="title" :type="type" />
|
||||
</template>
|
||||
<script setup>
|
||||
import { Info } from 'lucide-vue-next'
|
||||
@@ -81,9 +81,16 @@ import ExplanationVideos from '@/components/Modals/ExplanationVideos.vue'
|
||||
|
||||
const showExplanation = ref(false)
|
||||
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) => {
|
||||
type.value = contentType
|
||||
title.value = contentMap[contentType]
|
||||
showExplanation.value = true
|
||||
}
|
||||
</script>
|
||||
|
||||
@@ -3,10 +3,11 @@
|
||||
v-model="show"
|
||||
:options="{
|
||||
size: '4xl',
|
||||
title: title,
|
||||
}"
|
||||
>
|
||||
<template #body>
|
||||
<div class="p-4">
|
||||
<template #body-content>
|
||||
<div>
|
||||
<VideoBlock :file="file" />
|
||||
</div>
|
||||
</template>
|
||||
@@ -24,6 +25,10 @@ const props = defineProps({
|
||||
type: [String, null],
|
||||
required: true,
|
||||
},
|
||||
title: {
|
||||
type: String,
|
||||
required: true,
|
||||
},
|
||||
})
|
||||
|
||||
const file = computed(() => {
|
||||
|
||||
@@ -56,12 +56,14 @@
|
||||
type="select"
|
||||
:options="['Choices', 'User Input', 'Open Ended']"
|
||||
class="pb-2"
|
||||
:required="true"
|
||||
/>
|
||||
<div v-if="question.type == 'Choices'" class="divide-y border-t">
|
||||
<div v-for="n in 4" class="space-y-4 py-2">
|
||||
<FormControl
|
||||
:label="__('Option') + ' ' + n"
|
||||
v-model="question[`option_${n}`]"
|
||||
:required="n <= 2 ? true : false"
|
||||
/>
|
||||
<FormControl
|
||||
:label="__('Explanation')"
|
||||
@@ -82,6 +84,7 @@
|
||||
<FormControl
|
||||
:label="__('Possibility') + ' ' + n"
|
||||
v-model="question[`possibility_${n}`]"
|
||||
:required="n == 1 ? true : false"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -11,11 +11,11 @@
|
||||
@click="redirectToCourseForm()"
|
||||
class="flex items-center space-x-2"
|
||||
:class="{
|
||||
'cursor-pointer': !onboardingDetails.data.course_created.length,
|
||||
'cursor-pointer': !onboardingDetails.data.course_created?.length,
|
||||
}"
|
||||
>
|
||||
<span
|
||||
v-if="onboardingDetails.data.course_created.length"
|
||||
v-if="onboardingDetails.data.course_created?.length"
|
||||
class="py-1 px-1 bg-white rounded-full"
|
||||
>
|
||||
<Check class="h-4 w-4 stroke-2 text-green-600" />
|
||||
@@ -32,13 +32,13 @@
|
||||
class="flex items-center space-x-2"
|
||||
:class="{
|
||||
'cursor-pointer':
|
||||
onboardingDetails.data.course_created.length &&
|
||||
!onboardingDetails.data.chapter_created.length,
|
||||
'text-gray-400': !onboardingDetails.data.course_created.length,
|
||||
onboardingDetails.data.course_created?.length &&
|
||||
!onboardingDetails.data.chapter_created?.length,
|
||||
'text-gray-400': !onboardingDetails.data.course_created?.length,
|
||||
}"
|
||||
>
|
||||
<span
|
||||
v-if="onboardingDetails.data.chapter_created.length"
|
||||
v-if="onboardingDetails.data.chapter_created?.length"
|
||||
class="py-1 px-1 bg-white rounded-full"
|
||||
>
|
||||
<Check class="h-4 w-4 stroke-2 text-green-600" />
|
||||
@@ -55,15 +55,15 @@
|
||||
class="flex items-center space-x-2"
|
||||
:class="{
|
||||
'cursor-pointer':
|
||||
onboardingDetails.data.course_created.length &&
|
||||
onboardingDetails.data.chapter_created.length,
|
||||
onboardingDetails.data.course_created?.length &&
|
||||
onboardingDetails.data.chapter_created?.length,
|
||||
'text-gray-400':
|
||||
!onboardingDetails.data.course_created.length ||
|
||||
!onboardingDetails.data.chapter_created.length,
|
||||
!onboardingDetails.data.course_created?.length ||
|
||||
!onboardingDetails.data.chapter_created?.length,
|
||||
}"
|
||||
>
|
||||
<span
|
||||
v-if="onboardingDetails.data.lesson_created.length"
|
||||
v-if="onboardingDetails.data.lesson_created?.length"
|
||||
class="py-1 px-1 bg-white rounded-full"
|
||||
>
|
||||
<Check class="h-4 w-4 stroke-2 text-green-600" />
|
||||
|
||||
@@ -19,8 +19,13 @@
|
||||
v-model="job.job_title"
|
||||
:label="__('Title')"
|
||||
class="mb-4"
|
||||
:required="true"
|
||||
/>
|
||||
<FormControl
|
||||
v-model="job.location"
|
||||
:label="__('Location')"
|
||||
:required="true"
|
||||
/>
|
||||
<FormControl v-model="job.location" :label="__('Location')" />
|
||||
</div>
|
||||
<div>
|
||||
<FormControl
|
||||
@@ -29,18 +34,21 @@
|
||||
type="select"
|
||||
:options="jobTypes"
|
||||
class="mb-4"
|
||||
:required="true"
|
||||
/>
|
||||
<FormControl
|
||||
v-model="job.status"
|
||||
:label="__('Status')"
|
||||
type="select"
|
||||
:options="jobStatuses"
|
||||
:required="true"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="mt-4">
|
||||
<label class="block text-gray-600 text-xs mb-1">
|
||||
{{ __('Description') }}
|
||||
<span class="text-red-500">*</span>
|
||||
</label>
|
||||
<TextEditor
|
||||
:content="job.description"
|
||||
@@ -61,10 +69,12 @@
|
||||
v-model="job.company_name"
|
||||
:label="__('Company Name')"
|
||||
class="mb-4"
|
||||
:required="true"
|
||||
/>
|
||||
<FormControl
|
||||
v-model="job.company_website"
|
||||
:label="__('Company Website')"
|
||||
:required="true"
|
||||
/>
|
||||
</div>
|
||||
<div>
|
||||
@@ -72,9 +82,11 @@
|
||||
v-model="job.company_email_address"
|
||||
:label="__('Company Email Address')"
|
||||
class="mb-4"
|
||||
:required="true"
|
||||
/>
|
||||
<label class="block text-gray-600 text-xs mb-1 mt-4">
|
||||
{{ __('Company Logo') }}
|
||||
<span class="text-red-500">*</span>
|
||||
</label>
|
||||
<FileUploader
|
||||
v-if="!job.image"
|
||||
|
||||
@@ -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"
|
||||
>
|
||||
<Breadcrumbs :items="breadbrumbs" />
|
||||
<Button variant="solid">
|
||||
<Button variant="solid" @click="saveProgram()">
|
||||
{{ __('Save') }}
|
||||
</Button>
|
||||
</header>
|
||||
@@ -50,6 +50,7 @@
|
||||
item-key="name"
|
||||
group="items"
|
||||
@end="updateOrder"
|
||||
class="cursor-move"
|
||||
>
|
||||
<template #item="{ element: row }">
|
||||
<ListRow :row="row" />
|
||||
@@ -191,11 +192,13 @@ import { Plus, Trash2 } from 'lucide-vue-next'
|
||||
import Link from '@/components/Controls/Link.vue'
|
||||
import { showToast } from '@/utils/'
|
||||
import Draggable from 'vuedraggable'
|
||||
import { useRouter } from 'vue-router'
|
||||
|
||||
const showDialog = ref(false)
|
||||
const currentForm = ref(null)
|
||||
const course = ref(null)
|
||||
const member = ref(null)
|
||||
const router = useRouter()
|
||||
|
||||
const props = defineProps({
|
||||
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(() => {
|
||||
return [
|
||||
{
|
||||
@@ -332,10 +345,10 @@ const memberColumns = computed(() => {
|
||||
align: 'left',
|
||||
},
|
||||
{
|
||||
label: 'Progress',
|
||||
label: 'Progress (%)',
|
||||
key: 'progress',
|
||||
width: 3,
|
||||
align: 'left',
|
||||
align: 'right',
|
||||
},
|
||||
]
|
||||
})
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
</Button>
|
||||
</header>
|
||||
<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="text-xl font-semibold">
|
||||
{{ program.name }}
|
||||
@@ -61,12 +61,23 @@
|
||||
v-if="program.courses?.length"
|
||||
class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-5 mt-5"
|
||||
>
|
||||
<CourseCard
|
||||
v-for="course in program.courses"
|
||||
:course="course"
|
||||
@click="enrollMember(program.name, course.name)"
|
||||
class="cursor-pointer"
|
||||
/>
|
||||
<div v-for="course in program.courses" class="relative group">
|
||||
<CourseCard
|
||||
:course="course"
|
||||
@click="enrollMember(program.name, course.name)"
|
||||
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 v-else class="text-sm italic text-gray-600 mt-4">
|
||||
{{ __('No courses in this program') }}
|
||||
@@ -118,16 +129,28 @@ import {
|
||||
Dialog,
|
||||
FormControl,
|
||||
} from 'frappe-ui'
|
||||
import { computed, inject, ref } from 'vue'
|
||||
import { BookOpen, Edit, Plus } from 'lucide-vue-next'
|
||||
import { computed, inject, onMounted, ref } from 'vue'
|
||||
import { BookOpen, Edit, Plus, LockKeyhole } from 'lucide-vue-next'
|
||||
import CourseCard from '@/components/CourseCard.vue'
|
||||
import { useRouter } from 'vue-router'
|
||||
import { showToast, singularize } from '@/utils'
|
||||
import { useSettings } from '@/stores/settings'
|
||||
|
||||
const user = inject('$user')
|
||||
const showDialog = ref(false)
|
||||
const router = useRouter()
|
||||
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({
|
||||
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(() => [
|
||||
{
|
||||
label: 'Programs',
|
||||
|
||||
@@ -48,6 +48,7 @@
|
||||
? __('Title')
|
||||
: __('Enter a title and save the quiz to proceed')
|
||||
"
|
||||
:required="true"
|
||||
/>
|
||||
<div v-if="quizDetails.data?.name">
|
||||
<div class="grid grid-cols-2 gap-5 mt-4 mb-8">
|
||||
@@ -205,7 +206,6 @@ import {
|
||||
inject,
|
||||
onBeforeUnmount,
|
||||
watch,
|
||||
isReactive,
|
||||
} from 'vue'
|
||||
import { Plus, Trash2 } from 'lucide-vue-next'
|
||||
import Question from '@/components/Modals/Question.vue'
|
||||
|
||||
@@ -15,38 +15,45 @@
|
||||
</Button>
|
||||
</div>
|
||||
</header>
|
||||
<div v-if="submisisonDetails.doc" class="w-1/2 mx-auto py-5 space-y-4">
|
||||
<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 v-if="submisisonDetails.doc" class="w-1/2 mx-auto py-5 space-y-5">
|
||||
<div class="text-xl font-semibold">
|
||||
{{ submisisonDetails.doc.member_name }}
|
||||
</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">
|
||||
<FormControl
|
||||
v-model="submisisonDetails.doc.score"
|
||||
:label="__('Score')"
|
||||
:disabled="true"
|
||||
/>
|
||||
<FormControl
|
||||
v-model="submisisonDetails.doc.percentage"
|
||||
:label="__('Percentage')"
|
||||
:disabled="true"
|
||||
/>
|
||||
<div class="grid grid-cols-2 gap-5">
|
||||
<FormControl
|
||||
v-model="submisisonDetails.doc.score"
|
||||
:label="__('Score')"
|
||||
:disabled="true"
|
||||
/>
|
||||
<FormControl
|
||||
v-model="submisisonDetails.doc.percentage"
|
||||
:label="__('Percentage')"
|
||||
:disabled="true"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div
|
||||
v-for="row in submisisonDetails.doc.result"
|
||||
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 class="grid grid-cols-2 gap-5">
|
||||
<FormControl v-model="row.marks" :label="__('Marks')" />
|
||||
@@ -67,7 +74,7 @@ import {
|
||||
Button,
|
||||
Badge,
|
||||
} from 'frappe-ui'
|
||||
import { computed, onMounted, inject } from 'vue'
|
||||
import { computed, onBeforeUnmount, onMounted, inject } from 'vue'
|
||||
import { useRouter } from 'vue-router'
|
||||
import { showToast } from '@/utils'
|
||||
|
||||
@@ -77,8 +84,25 @@ const user = inject('$user')
|
||||
onMounted(() => {
|
||||
if (!user.data?.is_instructor && !user.data?.is_moderator)
|
||||
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({
|
||||
submission: {
|
||||
type: String,
|
||||
|
||||
@@ -11,6 +11,7 @@ import { watch } from 'vue'
|
||||
import dayjs from '@/utils/dayjs'
|
||||
import Embed from '@editorjs/embed'
|
||||
import SimpleImage from '@editorjs/simple-image'
|
||||
import Table from '@editorjs/table'
|
||||
|
||||
export function createToast(options) {
|
||||
toast({
|
||||
@@ -150,6 +151,7 @@ export function getEditorTools() {
|
||||
quiz: Quiz,
|
||||
upload: Upload,
|
||||
image: SimpleImage,
|
||||
table: Table,
|
||||
paragraph: {
|
||||
class: Paragraph,
|
||||
inlineToolbar: true,
|
||||
|
||||
@@ -60,6 +60,9 @@ export class Quiz {
|
||||
}
|
||||
|
||||
renderQuizModal() {
|
||||
if (this.readOnly) {
|
||||
return
|
||||
}
|
||||
const app = createApp(QuizPlugin, {
|
||||
onQuizAddition: (quiz) => {
|
||||
this.data.quiz = quiz
|
||||
|
||||
@@ -120,6 +120,13 @@
|
||||
dependencies:
|
||||
"@codexteam/icons" "^0.0.6"
|
||||
|
||||
"@editorjs/table@^2.4.2":
|
||||
version "2.4.2"
|
||||
resolved "https://registry.yarnpkg.com/@editorjs/table/-/table-2.4.2.tgz#99a2b3f9ea8f39c9ca4df80b8e63bff6e21d0193"
|
||||
integrity sha512-zGmwLCarsaTgOfccxR3Lc6oC3QTX0JdoK0O3+8TE/VCR/xnW92VO7rAcu4cqTwtbFMQErYl8id9a5hM23vyFng==
|
||||
dependencies:
|
||||
"@codexteam/icons" "^0.0.6"
|
||||
|
||||
"@esbuild/aix-ppc64@0.21.5":
|
||||
version "0.21.5"
|
||||
resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz#c7184a326533fcdf1b8ee0733e21c713b975575f"
|
||||
|
||||
@@ -1 +1 @@
|
||||
__version__ = "2.13.0"
|
||||
__version__ = "2.14.0"
|
||||
|
||||
@@ -34,7 +34,7 @@
|
||||
],
|
||||
"index_web_pages_for_search": 1,
|
||||
"links": [],
|
||||
"modified": "2024-11-20 12:26:02.214628",
|
||||
"modified": "2024-11-28 22:06:16.742867",
|
||||
"modified_by": "Administrator",
|
||||
"module": "LMS",
|
||||
"name": "LMS Program",
|
||||
@@ -80,5 +80,6 @@
|
||||
],
|
||||
"sort_field": "creation",
|
||||
"sort_order": "DESC",
|
||||
"states": []
|
||||
"states": [],
|
||||
"track_changes": 1
|
||||
}
|
||||
@@ -134,7 +134,6 @@ def quiz_summary(quiz, results):
|
||||
result["marks"] = marks
|
||||
score += marks
|
||||
|
||||
del result["question_name"]
|
||||
else:
|
||||
result["is_correct"] = 0
|
||||
is_open_ended = True
|
||||
|
||||
@@ -5,6 +5,7 @@ import frappe
|
||||
from frappe.model.document import Document
|
||||
from frappe.utils import cint
|
||||
from frappe import _
|
||||
from frappe.desk.doctype.notification_log.notification_log import make_notification_logs
|
||||
|
||||
|
||||
class LMSQuizSubmission(Document):
|
||||
@@ -12,6 +13,9 @@ class LMSQuizSubmission(Document):
|
||||
self.validate_marks()
|
||||
self.set_percentage()
|
||||
|
||||
def on_update(self):
|
||||
self.notify_member()
|
||||
|
||||
def validate_marks(self):
|
||||
for row in self.result:
|
||||
if cint(row.marks) > cint(row.marks_out_of):
|
||||
@@ -26,3 +30,24 @@ class LMSQuizSubmission(Document):
|
||||
def set_percentage(self):
|
||||
if self.score and self.score_out_of:
|
||||
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])
|
||||
|
||||
@@ -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
|
||||
@@ -1,13 +1,16 @@
|
||||
import frappe
|
||||
from payments.utils import get_payment_gateway_controller
|
||||
|
||||
|
||||
def get_payment_gateway():
|
||||
|
||||
return frappe.db.get_single_value("LMS Settings", "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):
|
||||
|
||||
@@ -6,11 +6,7 @@ import razorpay
|
||||
import requests
|
||||
from frappe import _
|
||||
from frappe.desk.doctype.dashboard_chart.dashboard_chart import get_result
|
||||
from frappe.desk.doctype.notification_log.notification_log import (
|
||||
make_notification_logs,
|
||||
enqueue_create_notification,
|
||||
get_title,
|
||||
)
|
||||
from frappe.desk.doctype.notification_log.notification_log import make_notification_logs
|
||||
from frappe.desk.search import get_user_groups
|
||||
from frappe.desk.notifications import extract_mentions
|
||||
from frappe.utils import (
|
||||
@@ -858,7 +854,8 @@ def get_telemetry_boot_info():
|
||||
@frappe.whitelist()
|
||||
def is_onboarding_complete():
|
||||
if not has_course_moderator_role():
|
||||
return {"is_onboarded": False}
|
||||
return {"is_onboarded": True}
|
||||
|
||||
course_created = frappe.db.a_row_exists("LMS Course")
|
||||
chapter_created = frappe.db.a_row_exists("Course Chapter")
|
||||
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"
|
||||
)
|
||||
program.courses = []
|
||||
for course in program_courses:
|
||||
program.courses.append(get_course_details(course.course))
|
||||
previous_progress = 0
|
||||
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})
|
||||
|
||||
|
||||
340
lms/locale/ar.po
340
lms/locale/ar.po
@@ -2,8 +2,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: frappe\n"
|
||||
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
||||
"POT-Creation-Date: 2024-11-15 16:04+0000\n"
|
||||
"PO-Revision-Date: 2024-11-18 17:31\n"
|
||||
"POT-Creation-Date: 2024-11-22 16:05+0000\n"
|
||||
"PO-Revision-Date: 2024-11-25 19:29\n"
|
||||
"Last-Translator: jannat@frappe.io\n"
|
||||
"Language-Team: Arabic\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -22,6 +22,11 @@ msgstr ""
|
||||
msgid " Please evaluate and grade it."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:41
|
||||
#, python-format
|
||||
msgid "% completed"
|
||||
msgstr "% أكتمل"
|
||||
|
||||
#. Paragraph text in the LMS Workspace
|
||||
#: lms/lms/workspace/lms/lms.json
|
||||
msgid "<a href=\"/app/lms-settings/LMS%20Settings\">LMS Settings</a>"
|
||||
@@ -99,7 +104,8 @@ msgstr "نشط"
|
||||
#: frontend/src/components/BatchStudents.vue:6
|
||||
#: frontend/src/components/Categories.vue:26
|
||||
#: frontend/src/components/LiveClass.vue:11
|
||||
#: frontend/src/components/Members.vue:43
|
||||
#: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30
|
||||
#: frontend/src/pages/ProgramForm.vue:91 frontend/src/pages/ProgramForm.vue:136
|
||||
msgid "Add"
|
||||
msgstr "إضافة"
|
||||
|
||||
@@ -129,12 +135,20 @@ msgstr ""
|
||||
msgid "Add a Student"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/OnboardingBanner.vue:50
|
||||
msgid "Add a chapter"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/BatchCourseModal.vue:5
|
||||
msgid "Add a course"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/OnboardingBanner.vue:73
|
||||
msgid "Add a lesson"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/Question.vue:141
|
||||
#: frontend/src/pages/QuizForm.vue:181
|
||||
#: frontend/src/pages/QuizForm.vue:182
|
||||
msgid "Add a new question"
|
||||
msgstr ""
|
||||
|
||||
@@ -150,7 +164,7 @@ msgstr ""
|
||||
msgid "Add an existing question"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:60
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:66
|
||||
msgid "Add at least one possible answer for this question: {0}"
|
||||
msgstr ""
|
||||
|
||||
@@ -253,6 +267,14 @@ msgstr ""
|
||||
msgid "Amount Field"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:70
|
||||
msgid "Amount and currency are required for paid batches."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_course/lms_course.py:57
|
||||
msgid "Amount and currency are required for paid courses."
|
||||
msgstr ""
|
||||
|
||||
#. Label of the amount_with_gst (Currency) field in DocType 'LMS Payment'
|
||||
#: lms/lms/doctype/lms_payment/lms_payment.json
|
||||
msgid "Amount with GST"
|
||||
@@ -346,7 +368,7 @@ msgstr ""
|
||||
msgid "Assessment added successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:75
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:80
|
||||
msgid "Assessment {0} has already been added to this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -397,7 +419,7 @@ msgstr ""
|
||||
msgid "Assignment will appear at the bottom of the lesson."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:42
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:43
|
||||
msgid "At least one option must be correct for this question."
|
||||
msgstr ""
|
||||
|
||||
@@ -540,7 +562,7 @@ msgstr ""
|
||||
msgid "Batch Updated"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:40
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:41
|
||||
msgid "Batch end date cannot be before the batch start date"
|
||||
msgstr ""
|
||||
|
||||
@@ -727,11 +749,11 @@ msgstr ""
|
||||
msgid "Chapter Reference"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:149
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:154
|
||||
msgid "Chapter added successfully"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:193
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:198
|
||||
msgid "Chapter updated successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -764,7 +786,7 @@ msgstr ""
|
||||
msgid "Choices"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Quiz.vue:578 lms/templates/quiz/quiz.html:53
|
||||
#: frontend/src/components/Quiz.vue:581 lms/templates/quiz/quiz.html:53
|
||||
msgid "Choose all answers that apply"
|
||||
msgstr ""
|
||||
|
||||
@@ -772,7 +794,7 @@ msgstr ""
|
||||
msgid "Choose an icon"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Quiz.vue:579 lms/templates/quiz/quiz.html:53
|
||||
#: frontend/src/components/Quiz.vue:582 lms/templates/quiz/quiz.html:53
|
||||
msgid "Choose one answer"
|
||||
msgstr ""
|
||||
|
||||
@@ -988,7 +1010,7 @@ msgid "Contact the Administrator to enroll for this course."
|
||||
msgstr ""
|
||||
|
||||
#. Label of the content (Text) field in DocType 'Course Lesson'
|
||||
#: frontend/src/pages/LessonForm.vue:58
|
||||
#: frontend/src/pages/LessonForm.vue:62
|
||||
#: lms/lms/doctype/course_lesson/course_lesson.json
|
||||
msgid "Content"
|
||||
msgstr "محتوى"
|
||||
@@ -1057,6 +1079,7 @@ msgstr "الدولة"
|
||||
#. Label of the course (Link) field in DocType 'LMS Enrollment'
|
||||
#. Label of the course (Link) field in DocType 'LMS Exercise'
|
||||
#. Label of the course (Link) field in DocType 'LMS Mentor Request'
|
||||
#. Label of the course (Link) field in DocType 'LMS Program Course'
|
||||
#. Label of the course (Link) field in DocType 'LMS Quiz'
|
||||
#. Label of the course (Link) field in DocType 'LMS Quiz Submission'
|
||||
#. Label of the course (Link) field in DocType 'Related Courses'
|
||||
@@ -1086,6 +1109,7 @@ msgstr "الدولة"
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
#: lms/lms/doctype/lms_exercise/lms_exercise.json
|
||||
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
|
||||
#: lms/lms/doctype/lms_program_course/lms_program_course.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/lms/doctype/related_courses/related_courses.json
|
||||
@@ -1114,6 +1138,7 @@ msgstr ""
|
||||
#. Name of a role
|
||||
#: frontend/src/pages/ProfileRoles.vue:16
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
#: lms/lms/doctype/lms_question/lms_question.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
msgid "Course Creator"
|
||||
@@ -1184,22 +1209,33 @@ msgstr ""
|
||||
#. Label of the course_title (Data) field in DocType 'Course Chapter'
|
||||
#. Label of the course_title (Data) field in DocType 'LMS Certificate'
|
||||
#. Label of the course_title (Data) field in DocType 'LMS Certificate Request'
|
||||
#. Label of the course_title (Data) field in DocType 'LMS Program Course'
|
||||
#: lms/lms/doctype/batch_course/batch_course.json
|
||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
#: lms/lms/doctype/lms_program_course/lms_program_course.json
|
||||
msgid "Course Title"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:340
|
||||
#: frontend/src/pages/ProgramForm.vue:226
|
||||
msgid "Course added to program"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:345
|
||||
msgid "Course already added to the batch."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:457
|
||||
#: frontend/src/pages/CourseForm.vue:460
|
||||
msgid "Course deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:58
|
||||
#: frontend/src/pages/ProgramForm.vue:295
|
||||
msgid "Course moved successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:59
|
||||
#: lms/lms/doctype/lms_program/lms_program.py:19
|
||||
msgid "Course {0} has already been added to this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -1234,6 +1270,7 @@ msgid "Cover Image"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:9
|
||||
#: frontend/src/pages/Programs.vue:99
|
||||
msgid "Create"
|
||||
msgstr "انشاء"
|
||||
|
||||
@@ -1249,7 +1286,7 @@ msgstr ""
|
||||
msgid "Create a Batch"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:131 lms/templates/onboarding_header.html:19
|
||||
#: frontend/src/pages/Courses.vue:132 lms/templates/onboarding_header.html:19
|
||||
msgid "Create a Course"
|
||||
msgstr ""
|
||||
|
||||
@@ -1257,6 +1294,10 @@ msgstr ""
|
||||
msgid "Create a Live Class"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/OnboardingBanner.vue:27
|
||||
msgid "Create a course"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/Question.vue:31
|
||||
msgid "Create a new question"
|
||||
msgstr ""
|
||||
@@ -1360,7 +1401,7 @@ msgstr ""
|
||||
|
||||
#: frontend/src/components/CourseOutline.vue:235
|
||||
#: frontend/src/components/CourseOutline.vue:293
|
||||
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:470
|
||||
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:473
|
||||
msgid "Delete"
|
||||
msgstr "حذف"
|
||||
|
||||
@@ -1368,7 +1409,7 @@ msgstr "حذف"
|
||||
msgid "Delete Chapter"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:464
|
||||
#: frontend/src/pages/CourseForm.vue:467
|
||||
msgid "Delete Course"
|
||||
msgstr ""
|
||||
|
||||
@@ -1380,7 +1421,7 @@ msgstr ""
|
||||
msgid "Delete this lesson?"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:465
|
||||
#: frontend/src/pages/CourseForm.vue:468
|
||||
msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?"
|
||||
msgstr ""
|
||||
|
||||
@@ -1470,7 +1511,7 @@ msgstr "وثيقة"
|
||||
msgid "Dream Companies"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:32
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:33
|
||||
msgid "Duplicate options found for this question."
|
||||
msgstr ""
|
||||
|
||||
@@ -1508,7 +1549,7 @@ msgstr ""
|
||||
#: frontend/src/components/CourseCardOverlay.vue:86
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:9
|
||||
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:65
|
||||
#: frontend/src/pages/Profile.vue:32
|
||||
#: frontend/src/pages/Profile.vue:32 frontend/src/pages/Programs.vue:55
|
||||
msgid "Edit"
|
||||
msgstr "تصحيح"
|
||||
|
||||
@@ -1521,7 +1562,7 @@ msgstr ""
|
||||
msgid "Edit Profile"
|
||||
msgstr "تعديل الملف الشخصي"
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:180
|
||||
#: frontend/src/pages/QuizForm.vue:181
|
||||
msgid "Edit the question"
|
||||
msgstr ""
|
||||
|
||||
@@ -1582,6 +1623,15 @@ msgstr ""
|
||||
msgid "Enable Google API in Google Settings to send calendar invites for evaluations."
|
||||
msgstr ""
|
||||
|
||||
#. Label of the enable_learning_paths (Check) field in DocType 'LMS Settings'
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Enable Learning Paths"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:24
|
||||
msgid "Enable this only if you want to upload a SCORM package as a chapter."
|
||||
msgstr ""
|
||||
|
||||
#. Label of the enabled (Check) field in DocType 'LMS Badge'
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "Enabled"
|
||||
@@ -1634,7 +1684,7 @@ msgstr ""
|
||||
msgid "Enrolled successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:98
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:103
|
||||
msgid "Enrollment Confirmation for the Next Training Batch"
|
||||
msgstr ""
|
||||
|
||||
@@ -1643,7 +1693,7 @@ msgstr ""
|
||||
msgid "Enrollment Count"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1702
|
||||
#: lms/lms/utils.py:1705
|
||||
msgid "Enrollment Failed"
|
||||
msgstr ""
|
||||
|
||||
@@ -1672,14 +1722,14 @@ msgid "Enter the correct answer"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/AnnouncementModal.vue:105
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:154
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:161
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:197
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:159
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:166
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:202
|
||||
#: frontend/src/components/Modals/Question.vue:246
|
||||
#: frontend/src/components/Modals/Question.vue:266
|
||||
#: frontend/src/components/Modals/Question.vue:323
|
||||
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:349
|
||||
#: frontend/src/pages/QuizForm.vue:364
|
||||
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350
|
||||
#: frontend/src/pages/QuizForm.vue:365
|
||||
#: frontend/src/pages/QuizSubmission.vue:117
|
||||
msgid "Error"
|
||||
msgstr "خطأ"
|
||||
@@ -1708,7 +1758,7 @@ msgstr ""
|
||||
msgid "Evaluation Request"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:82
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:87
|
||||
msgid "Evaluation end date cannot be less than the batch end date."
|
||||
msgstr ""
|
||||
|
||||
@@ -1874,7 +1924,7 @@ msgstr ""
|
||||
msgid "Flexible Time"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:462
|
||||
#: frontend/src/pages/QuizForm.vue:463
|
||||
msgid "Form to create and edit quizzes"
|
||||
msgstr ""
|
||||
|
||||
@@ -1922,7 +1972,9 @@ msgid "From Date"
|
||||
msgstr "من تاريخ"
|
||||
|
||||
#. Label of the full_name (Data) field in DocType 'Invite Request'
|
||||
#. Label of the full_name (Data) field in DocType 'LMS Program Member'
|
||||
#: lms/lms/doctype/invite_request/invite_request.json
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
#: lms/templates/signup-form.html:5
|
||||
msgid "Full Name"
|
||||
msgstr "الاسم الكامل"
|
||||
@@ -1954,6 +2006,11 @@ msgstr ""
|
||||
msgid "GSTIN"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the general_tab (Tab Break) field in DocType 'LMS Settings'
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "General"
|
||||
msgstr "عام"
|
||||
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:18
|
||||
msgid "Generate Google Meet Link"
|
||||
msgstr ""
|
||||
@@ -2085,7 +2142,7 @@ msgstr ""
|
||||
msgid "I am unavailable"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:383
|
||||
#: frontend/src/pages/QuizForm.vue:384
|
||||
msgid "ID"
|
||||
msgstr "هوية شخصية"
|
||||
|
||||
@@ -2226,7 +2283,7 @@ msgstr ""
|
||||
|
||||
#. Label of the instructor_notes (Markdown Editor) field in DocType 'Course
|
||||
#. Lesson'
|
||||
#: frontend/src/pages/Lesson.vue:128 frontend/src/pages/LessonForm.vue:38
|
||||
#: frontend/src/pages/Lesson.vue:128 frontend/src/pages/LessonForm.vue:42
|
||||
#: lms/lms/doctype/course_lesson/course_lesson.json
|
||||
msgid "Instructor Notes"
|
||||
msgstr ""
|
||||
@@ -2302,7 +2359,6 @@ msgstr ""
|
||||
|
||||
#. Label of the is_scorm_package (Check) field in DocType 'Course Chapter'
|
||||
#. Label of the is_scorm_package (Check) field in DocType 'Course Lesson'
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:26
|
||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||
#: lms/lms/doctype/course_lesson/course_lesson.json
|
||||
msgid "Is SCORM Package"
|
||||
@@ -2332,6 +2388,10 @@ msgstr ""
|
||||
msgid "Items in Sidebar"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:269
|
||||
msgid "Items removed successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/signup-form.html:6
|
||||
msgid "Jane Doe"
|
||||
msgstr ""
|
||||
@@ -2531,6 +2591,21 @@ msgstr ""
|
||||
msgid "LMS Payment"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
msgid "LMS Program"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_program_course/lms_program_course.json
|
||||
msgid "LMS Program Course"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
msgid "LMS Program Member"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_question/lms_question.json
|
||||
msgid "LMS Question"
|
||||
@@ -2590,6 +2665,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
#: lms/lms/doctype/lms_source/lms_source.json
|
||||
#: lms/lms/doctype/user_skill/user_skill.json
|
||||
msgid "LMS Student"
|
||||
@@ -2812,7 +2888,7 @@ msgstr ""
|
||||
#. Label of the marks (Int) field in DocType 'LMS Quiz Result'
|
||||
#: frontend/src/components/Modals/Question.vue:50
|
||||
#: frontend/src/components/Modals/Question.vue:96
|
||||
#: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:393
|
||||
#: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:394
|
||||
#: frontend/src/pages/QuizSubmission.vue:52
|
||||
#: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json
|
||||
#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json
|
||||
@@ -2867,6 +2943,7 @@ msgstr "متوسط:"
|
||||
#. Option for the 'Role' (Select) field in DocType 'LMS Enrollment'
|
||||
#. Label of the member (Link) field in DocType 'LMS Mentor Request'
|
||||
#. 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 Quiz Submission'
|
||||
#: frontend/src/pages/QuizSubmission.vue:27
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:77
|
||||
@@ -2881,6 +2958,7 @@ msgstr "متوسط:"
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
|
||||
#: lms/lms/doctype/lms_payment/lms_payment.json
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/lms/report/course_progress_summary/course_progress_summary.py:64
|
||||
msgid "Member"
|
||||
@@ -2930,6 +3008,14 @@ msgstr ""
|
||||
msgid "Member Type"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:248
|
||||
msgid "Member added to program"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_program/lms_program.py:29
|
||||
msgid "Member {0} has already been added to this batch."
|
||||
msgstr ""
|
||||
|
||||
#. Group in LMS Batch Old's connections
|
||||
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
||||
msgid "Members"
|
||||
@@ -3002,6 +3088,10 @@ msgstr "معلم"
|
||||
msgid "Milestones"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:48
|
||||
msgid "Minimum two options are required for multiple choice questions."
|
||||
msgstr ""
|
||||
|
||||
#. Name of a role
|
||||
#: frontend/src/pages/ProfileRoles.vue:10
|
||||
#: lms/lms/doctype/course_evaluator/course_evaluator.json
|
||||
@@ -3013,6 +3103,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
#: lms/lms/doctype/lms_question/lms_question.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_source/lms_source.json
|
||||
@@ -3057,8 +3148,8 @@ msgid "My calendar"
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
||||
#: frontend/src/pages/Batches.vue:30 frontend/src/pages/Courses.vue:44
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
#: frontend/src/pages/Batches.vue:30 frontend/src/pages/Courses.vue:45
|
||||
#: frontend/src/pages/Programs.vue:14 lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "New"
|
||||
msgstr "جديد"
|
||||
|
||||
@@ -3082,11 +3173,23 @@ msgstr ""
|
||||
msgid "New Job Applicant"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:96
|
||||
msgid "New Program"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:132
|
||||
msgid "New Program Course"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:133
|
||||
msgid "New Program Member"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:122
|
||||
msgid "New Question"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:453 frontend/src/pages/QuizForm.vue:461
|
||||
#: frontend/src/pages/QuizForm.vue:454 frontend/src/pages/QuizForm.vue:462
|
||||
#: frontend/src/pages/Quizzes.vue:18
|
||||
msgid "New Quiz"
|
||||
msgstr ""
|
||||
@@ -3149,10 +3252,14 @@ msgstr ""
|
||||
msgid "No courses created"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:146
|
||||
#: frontend/src/pages/Courses.vue:147
|
||||
msgid "No courses found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:72
|
||||
msgid "No courses in this program"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/courses_under_review.html:14
|
||||
msgid "No courses under review"
|
||||
msgstr ""
|
||||
@@ -3169,6 +3276,10 @@ msgstr ""
|
||||
msgid "No live classes scheduled"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:82
|
||||
msgid "No programs found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Quizzes.vue:56
|
||||
msgid "No quizzes found"
|
||||
msgstr ""
|
||||
@@ -3189,7 +3300,7 @@ msgstr ""
|
||||
msgid "No {0} batches"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:106
|
||||
#: frontend/src/pages/Courses.vue:107
|
||||
msgid "No {0} courses"
|
||||
msgstr ""
|
||||
|
||||
@@ -3277,15 +3388,19 @@ msgstr ""
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:156
|
||||
msgid "Only courses for which self learning is disabled can be added to program."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/assignment.html:6
|
||||
msgid "Only files of type {0} will be accepted."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:494 frontend/src/utils/index.js:518
|
||||
#: frontend/src/pages/CourseForm.vue:497 frontend/src/utils/index.js:518
|
||||
msgid "Only image file is allowed."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:223
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:220
|
||||
msgid "Only zip files are allowed"
|
||||
msgstr ""
|
||||
|
||||
@@ -3561,7 +3676,11 @@ msgstr "يرجى التحقق من بريدك الالكتروني للتحقق"
|
||||
msgid "Please click on the following button to set your new password"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:251
|
||||
#: lms/lms/utils.py:1817 lms/lms/utils.py:1821
|
||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:256
|
||||
msgid "Please enable Zoom Settings to use this feature."
|
||||
msgstr ""
|
||||
|
||||
@@ -3573,11 +3692,19 @@ msgstr ""
|
||||
msgid "Please ensure that you complete all the questions in {0} minutes."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:164
|
||||
msgid "Please enter a title."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:38
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:98
|
||||
msgid "Please enter a valid URL."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:176
|
||||
msgid "Please enter a valid time in the format HH:mm."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:92
|
||||
msgid "Please enter the URL for assignment submission."
|
||||
msgstr ""
|
||||
@@ -3586,11 +3713,11 @@ msgstr ""
|
||||
msgid "Please enter your answer"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:65
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:66
|
||||
msgid "Please install the Payments app to create a paid batches."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_course/lms_course.py:52
|
||||
#: lms/lms/doctype/lms_course/lms_course.py:53
|
||||
msgid "Please install the Payments app to create a paid courses."
|
||||
msgstr ""
|
||||
|
||||
@@ -3615,11 +3742,31 @@ msgstr ""
|
||||
msgid "Please prepare well and be on time for the evaluations."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:167
|
||||
msgid "Please select a date."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:191
|
||||
msgid "Please select a duration."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:188
|
||||
msgid "Please select a future date and time."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:170
|
||||
msgid "Please select a time."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:173
|
||||
msgid "Please select a timezone."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/emails/job_report.html:6
|
||||
msgid "Please take appropriate action at {0}"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:172
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:177
|
||||
msgid "Please upload a SCORM package"
|
||||
msgstr ""
|
||||
|
||||
@@ -3756,8 +3903,30 @@ msgstr ""
|
||||
msgid "Profile Image"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:154
|
||||
msgid "Program Course"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the program_courses (Table) field in DocType 'LMS Program'
|
||||
#: frontend/src/pages/ProgramForm.vue:17
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
msgid "Program Courses"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:169
|
||||
msgid "Program Member"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the program_members (Table) field in DocType 'LMS Program'
|
||||
#: frontend/src/pages/ProgramForm.vue:78
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
msgid "Program Members"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the progress (Float) field in DocType 'LMS Enrollment'
|
||||
#. Label of the progress (Int) field in DocType 'LMS Program Member'
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
msgid "Progress"
|
||||
msgstr "تقدم"
|
||||
|
||||
@@ -3807,7 +3976,7 @@ msgstr "نشرت في"
|
||||
#. Label of the question (Text) field in DocType 'LMS Quiz Result'
|
||||
#: frontend/src/components/Modals/Question.vue:38
|
||||
#: frontend/src/pages/AssignmentSubmission.vue:26
|
||||
#: frontend/src/pages/QuizForm.vue:388
|
||||
#: frontend/src/pages/QuizForm.vue:389
|
||||
#: lms/lms/doctype/course_lesson/course_lesson.json
|
||||
#: lms/lms/doctype/lms_assignment/lms_assignment.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
@@ -3853,7 +4022,7 @@ msgstr ""
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:430
|
||||
#: frontend/src/pages/QuizForm.vue:431
|
||||
msgid "Questions deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -3891,7 +4060,7 @@ msgstr ""
|
||||
msgid "Quiz Title"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:342
|
||||
#: frontend/src/pages/QuizForm.vue:343
|
||||
msgid "Quiz created successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -3899,7 +4068,7 @@ msgstr ""
|
||||
msgid "Quiz is not available to Guest users. Please login to continue."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:361
|
||||
#: frontend/src/pages/QuizForm.vue:362
|
||||
msgid "Quiz updated successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -3908,7 +4077,7 @@ msgstr ""
|
||||
msgid "Quiz will appear at the bottom of the lesson."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:441 frontend/src/pages/Quizzes.vue:136
|
||||
#: frontend/src/pages/QuizForm.vue:442 frontend/src/pages/Quizzes.vue:136
|
||||
#: frontend/src/pages/Quizzes.vue:146
|
||||
msgid "Quizzes"
|
||||
msgstr ""
|
||||
@@ -4065,19 +4234,19 @@ msgstr ""
|
||||
msgid "Route"
|
||||
msgstr "مسار"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:194
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:199
|
||||
msgid "Row #{0} Date cannot be outside the batch duration."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:189
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:194
|
||||
msgid "Row #{0} End time cannot be outside the batch duration."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:171
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:176
|
||||
msgid "Row #{0} Start time cannot be greater than or equal to end time."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:180
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:185
|
||||
msgid "Row #{0} Start time cannot be outside the batch duration."
|
||||
msgstr ""
|
||||
|
||||
@@ -4095,6 +4264,7 @@ msgid "SCORM"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the scorm_package (Link) field in DocType 'Course Chapter'
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:22
|
||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||
msgid "SCORM Package"
|
||||
msgstr ""
|
||||
@@ -4117,8 +4287,9 @@ msgstr "السبت"
|
||||
#: frontend/src/components/QuizPlugin.vue:23
|
||||
#: frontend/src/pages/AssignmentSubmission.vue:7
|
||||
#: frontend/src/pages/BatchForm.vue:8 frontend/src/pages/CourseForm.vue:20
|
||||
#: frontend/src/pages/JobCreation.vue:8 frontend/src/pages/LessonForm.vue:10
|
||||
#: frontend/src/pages/QuizForm.vue:34 frontend/src/pages/QuizSubmission.vue:14
|
||||
#: frontend/src/pages/JobCreation.vue:8 frontend/src/pages/LessonForm.vue:14
|
||||
#: frontend/src/pages/ProgramForm.vue:7 frontend/src/pages/QuizForm.vue:34
|
||||
#: frontend/src/pages/QuizSubmission.vue:14
|
||||
#: lms/public/js/common_functions.js:405
|
||||
msgid "Save"
|
||||
msgstr "حفظ"
|
||||
@@ -4334,6 +4505,10 @@ msgstr ""
|
||||
msgid "Skip"
|
||||
msgstr "تخطى"
|
||||
|
||||
#: frontend/src/components/OnboardingBanner.vue:3
|
||||
msgid "Skip Onboarding"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/course_evaluator/course_evaluator.py:57
|
||||
msgid "Slot Times are overlapping for some schedules."
|
||||
msgstr ""
|
||||
@@ -4507,7 +4682,7 @@ msgstr ""
|
||||
msgid "Student Reviews"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:47
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:48
|
||||
msgid "Student {0} has already been added to this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -4575,14 +4750,17 @@ msgstr ""
|
||||
#: frontend/src/components/CourseCardOverlay.vue:161
|
||||
#: frontend/src/components/Modals/AnnouncementModal.vue:99
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:73
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:148
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:193
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:153
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:198
|
||||
#: frontend/src/components/Modals/Event.vue:255
|
||||
#: frontend/src/components/Modals/Event.vue:310
|
||||
#: frontend/src/components/Modals/Question.vue:261
|
||||
#: frontend/src/components/Modals/Question.vue:312
|
||||
#: frontend/src/pages/CourseForm.vue:457 frontend/src/pages/QuizForm.vue:342
|
||||
#: frontend/src/pages/QuizForm.vue:361 frontend/src/pages/QuizForm.vue:430
|
||||
#: frontend/src/pages/CourseForm.vue:460 frontend/src/pages/ProgramForm.vue:226
|
||||
#: frontend/src/pages/ProgramForm.vue:248
|
||||
#: frontend/src/pages/ProgramForm.vue:269
|
||||
#: frontend/src/pages/ProgramForm.vue:295 frontend/src/pages/QuizForm.vue:343
|
||||
#: frontend/src/pages/QuizForm.vue:362 frontend/src/pages/QuizForm.vue:431
|
||||
msgid "Success"
|
||||
msgstr "نجاح"
|
||||
|
||||
@@ -4637,6 +4815,7 @@ msgstr "الأحد"
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
|
||||
#: lms/lms/doctype/lms_payment/lms_payment.json
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
#: lms/lms/doctype/lms_question/lms_question.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
@@ -4737,11 +4916,15 @@ msgstr ""
|
||||
msgid "There are no chapters in this course. Create and manage chapters from here."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:150
|
||||
#: frontend/src/pages/Courses.vue:151
|
||||
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:141
|
||||
#: frontend/src/pages/Programs.vue:86
|
||||
msgid "There are no programs available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:146
|
||||
msgid "There are no seats available in this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -4772,11 +4955,11 @@ msgstr ""
|
||||
msgid "This course has:"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1582
|
||||
#: lms/lms/utils.py:1585
|
||||
msgid "This course is free."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/SCORMChapter.vue:198
|
||||
#: frontend/src/pages/SCORMChapter.vue:197
|
||||
msgid "This is a chapter in the course {0}"
|
||||
msgstr ""
|
||||
|
||||
@@ -4868,6 +5051,7 @@ msgstr ""
|
||||
#. Label of the title (Data) field in DocType 'LMS Course'
|
||||
#. Label of the title (Data) field in DocType 'LMS Exercise'
|
||||
#. Label of the title (Data) field in DocType 'LMS Live Class'
|
||||
#. Label of the title (Data) field in DocType 'LMS Program'
|
||||
#. Label of the title (Data) field in DocType 'LMS Quiz'
|
||||
#. Label of the title (Data) field in DocType 'LMS Sidebar Item'
|
||||
#. Label of the title (Data) field in DocType 'LMS Timetable Template'
|
||||
@@ -4875,7 +5059,8 @@ msgstr ""
|
||||
#: frontend/src/components/Modals/DiscussionModal.vue:18
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:23
|
||||
#: frontend/src/pages/BatchForm.vue:20 frontend/src/pages/CourseForm.vue:32
|
||||
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/QuizForm.vue:48
|
||||
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/ProgramForm.vue:11
|
||||
#: frontend/src/pages/Programs.vue:107 frontend/src/pages/QuizForm.vue:48
|
||||
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
|
||||
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
|
||||
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json
|
||||
@@ -4888,6 +5073,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_exercise/lms_exercise.json
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_sidebar_item/lms_sidebar_item.json
|
||||
#: lms/lms/doctype/lms_timetable_template/lms_timetable_template.json
|
||||
@@ -4896,7 +5082,7 @@ msgstr ""
|
||||
msgid "Title"
|
||||
msgstr "اللقب"
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:169
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:174
|
||||
msgid "Title is required"
|
||||
msgstr ""
|
||||
|
||||
@@ -4911,7 +5097,7 @@ msgstr "إلى"
|
||||
msgid "To Date"
|
||||
msgstr "إلى تاريخ"
|
||||
|
||||
#: lms/lms/utils.py:1593
|
||||
#: lms/lms/utils.py:1596
|
||||
msgid "To join this batch, please contact the Administrator."
|
||||
msgstr ""
|
||||
|
||||
@@ -4975,7 +5161,7 @@ msgstr ""
|
||||
msgid "Type"
|
||||
msgstr "النوع"
|
||||
|
||||
#: frontend/src/components/Quiz.vue:580
|
||||
#: frontend/src/components/Quiz.vue:583
|
||||
msgid "Type your answer"
|
||||
msgstr ""
|
||||
|
||||
@@ -5259,7 +5445,7 @@ msgstr ""
|
||||
msgid "You are not enrolled in this course. Please enroll to access this lesson."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:134
|
||||
#: frontend/src/pages/Courses.vue:135
|
||||
msgid "You can add chapters and lessons to it."
|
||||
msgstr ""
|
||||
|
||||
@@ -5431,6 +5617,10 @@ msgstr ""
|
||||
msgid "jane@example.com"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:32
|
||||
msgid "members"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/quiz/quiz.html:106
|
||||
msgid "of"
|
||||
msgstr ""
|
||||
@@ -5443,7 +5633,7 @@ msgstr ""
|
||||
msgid "posted by"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:389
|
||||
#: frontend/src/pages/QuizForm.vue:390
|
||||
msgid "question_detail"
|
||||
msgstr ""
|
||||
|
||||
@@ -5475,7 +5665,7 @@ msgstr ""
|
||||
msgid "{0} has submitted the assignment {1}"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.py:53
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.py:57
|
||||
msgid "{0} is already a Student of {1} course through {2} batch"
|
||||
msgstr ""
|
||||
|
||||
@@ -5483,7 +5673,7 @@ msgstr ""
|
||||
msgid "{0} is already a mentor for course {1}"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.py:26
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.py:30
|
||||
msgid "{0} is already a {1} of the course {2}"
|
||||
msgstr ""
|
||||
|
||||
|
||||
340
lms/locale/bs.po
340
lms/locale/bs.po
@@ -2,8 +2,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: frappe\n"
|
||||
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
||||
"POT-Creation-Date: 2024-11-15 16:04+0000\n"
|
||||
"PO-Revision-Date: 2024-11-18 17:32\n"
|
||||
"POT-Creation-Date: 2024-11-22 16:05+0000\n"
|
||||
"PO-Revision-Date: 2024-11-25 19:29\n"
|
||||
"Last-Translator: jannat@frappe.io\n"
|
||||
"Language-Team: Bosnian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -22,6 +22,11 @@ msgstr ""
|
||||
msgid " Please evaluate and grade it."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:41
|
||||
#, python-format
|
||||
msgid "% completed"
|
||||
msgstr "% završeno"
|
||||
|
||||
#. Paragraph text in the LMS Workspace
|
||||
#: lms/lms/workspace/lms/lms.json
|
||||
msgid "<a href=\"/app/lms-settings/LMS%20Settings\">LMS Settings</a>"
|
||||
@@ -99,7 +104,8 @@ msgstr "Aktivan"
|
||||
#: frontend/src/components/BatchStudents.vue:6
|
||||
#: frontend/src/components/Categories.vue:26
|
||||
#: frontend/src/components/LiveClass.vue:11
|
||||
#: frontend/src/components/Members.vue:43
|
||||
#: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30
|
||||
#: frontend/src/pages/ProgramForm.vue:91 frontend/src/pages/ProgramForm.vue:136
|
||||
msgid "Add"
|
||||
msgstr "Dodaj"
|
||||
|
||||
@@ -129,12 +135,20 @@ msgstr ""
|
||||
msgid "Add a Student"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/OnboardingBanner.vue:50
|
||||
msgid "Add a chapter"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/BatchCourseModal.vue:5
|
||||
msgid "Add a course"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/OnboardingBanner.vue:73
|
||||
msgid "Add a lesson"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/Question.vue:141
|
||||
#: frontend/src/pages/QuizForm.vue:181
|
||||
#: frontend/src/pages/QuizForm.vue:182
|
||||
msgid "Add a new question"
|
||||
msgstr ""
|
||||
|
||||
@@ -150,7 +164,7 @@ msgstr ""
|
||||
msgid "Add an existing question"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:60
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:66
|
||||
msgid "Add at least one possible answer for this question: {0}"
|
||||
msgstr ""
|
||||
|
||||
@@ -253,6 +267,14 @@ msgstr ""
|
||||
msgid "Amount Field"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:70
|
||||
msgid "Amount and currency are required for paid batches."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_course/lms_course.py:57
|
||||
msgid "Amount and currency are required for paid courses."
|
||||
msgstr ""
|
||||
|
||||
#. Label of the amount_with_gst (Currency) field in DocType 'LMS Payment'
|
||||
#: lms/lms/doctype/lms_payment/lms_payment.json
|
||||
msgid "Amount with GST"
|
||||
@@ -346,7 +368,7 @@ msgstr ""
|
||||
msgid "Assessment added successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:75
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:80
|
||||
msgid "Assessment {0} has already been added to this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -397,7 +419,7 @@ msgstr ""
|
||||
msgid "Assignment will appear at the bottom of the lesson."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:42
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:43
|
||||
msgid "At least one option must be correct for this question."
|
||||
msgstr ""
|
||||
|
||||
@@ -540,7 +562,7 @@ msgstr ""
|
||||
msgid "Batch Updated"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:40
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:41
|
||||
msgid "Batch end date cannot be before the batch start date"
|
||||
msgstr ""
|
||||
|
||||
@@ -727,11 +749,11 @@ msgstr ""
|
||||
msgid "Chapter Reference"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:149
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:154
|
||||
msgid "Chapter added successfully"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:193
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:198
|
||||
msgid "Chapter updated successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -764,7 +786,7 @@ msgstr ""
|
||||
msgid "Choices"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Quiz.vue:578 lms/templates/quiz/quiz.html:53
|
||||
#: frontend/src/components/Quiz.vue:581 lms/templates/quiz/quiz.html:53
|
||||
msgid "Choose all answers that apply"
|
||||
msgstr ""
|
||||
|
||||
@@ -772,7 +794,7 @@ msgstr ""
|
||||
msgid "Choose an icon"
|
||||
msgstr "Odaberi ikonu"
|
||||
|
||||
#: frontend/src/components/Quiz.vue:579 lms/templates/quiz/quiz.html:53
|
||||
#: frontend/src/components/Quiz.vue:582 lms/templates/quiz/quiz.html:53
|
||||
msgid "Choose one answer"
|
||||
msgstr ""
|
||||
|
||||
@@ -988,7 +1010,7 @@ msgid "Contact the Administrator to enroll for this course."
|
||||
msgstr ""
|
||||
|
||||
#. Label of the content (Text) field in DocType 'Course Lesson'
|
||||
#: frontend/src/pages/LessonForm.vue:58
|
||||
#: frontend/src/pages/LessonForm.vue:62
|
||||
#: lms/lms/doctype/course_lesson/course_lesson.json
|
||||
msgid "Content"
|
||||
msgstr "Sadržaj"
|
||||
@@ -1057,6 +1079,7 @@ msgstr "Država"
|
||||
#. Label of the course (Link) field in DocType 'LMS Enrollment'
|
||||
#. Label of the course (Link) field in DocType 'LMS Exercise'
|
||||
#. Label of the course (Link) field in DocType 'LMS Mentor Request'
|
||||
#. Label of the course (Link) field in DocType 'LMS Program Course'
|
||||
#. Label of the course (Link) field in DocType 'LMS Quiz'
|
||||
#. Label of the course (Link) field in DocType 'LMS Quiz Submission'
|
||||
#. Label of the course (Link) field in DocType 'Related Courses'
|
||||
@@ -1086,6 +1109,7 @@ msgstr "Država"
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
#: lms/lms/doctype/lms_exercise/lms_exercise.json
|
||||
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
|
||||
#: lms/lms/doctype/lms_program_course/lms_program_course.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/lms/doctype/related_courses/related_courses.json
|
||||
@@ -1114,6 +1138,7 @@ msgstr ""
|
||||
#. Name of a role
|
||||
#: frontend/src/pages/ProfileRoles.vue:16
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
#: lms/lms/doctype/lms_question/lms_question.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
msgid "Course Creator"
|
||||
@@ -1184,22 +1209,33 @@ msgstr ""
|
||||
#. Label of the course_title (Data) field in DocType 'Course Chapter'
|
||||
#. Label of the course_title (Data) field in DocType 'LMS Certificate'
|
||||
#. Label of the course_title (Data) field in DocType 'LMS Certificate Request'
|
||||
#. Label of the course_title (Data) field in DocType 'LMS Program Course'
|
||||
#: lms/lms/doctype/batch_course/batch_course.json
|
||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
#: lms/lms/doctype/lms_program_course/lms_program_course.json
|
||||
msgid "Course Title"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:340
|
||||
#: frontend/src/pages/ProgramForm.vue:226
|
||||
msgid "Course added to program"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:345
|
||||
msgid "Course already added to the batch."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:457
|
||||
#: frontend/src/pages/CourseForm.vue:460
|
||||
msgid "Course deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:58
|
||||
#: frontend/src/pages/ProgramForm.vue:295
|
||||
msgid "Course moved successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:59
|
||||
#: lms/lms/doctype/lms_program/lms_program.py:19
|
||||
msgid "Course {0} has already been added to this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -1234,6 +1270,7 @@ msgid "Cover Image"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:9
|
||||
#: frontend/src/pages/Programs.vue:99
|
||||
msgid "Create"
|
||||
msgstr "Kreiraj"
|
||||
|
||||
@@ -1249,7 +1286,7 @@ msgstr ""
|
||||
msgid "Create a Batch"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:131 lms/templates/onboarding_header.html:19
|
||||
#: frontend/src/pages/Courses.vue:132 lms/templates/onboarding_header.html:19
|
||||
msgid "Create a Course"
|
||||
msgstr ""
|
||||
|
||||
@@ -1257,6 +1294,10 @@ msgstr ""
|
||||
msgid "Create a Live Class"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/OnboardingBanner.vue:27
|
||||
msgid "Create a course"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/Question.vue:31
|
||||
msgid "Create a new question"
|
||||
msgstr ""
|
||||
@@ -1360,7 +1401,7 @@ msgstr ""
|
||||
|
||||
#: frontend/src/components/CourseOutline.vue:235
|
||||
#: frontend/src/components/CourseOutline.vue:293
|
||||
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:470
|
||||
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:473
|
||||
msgid "Delete"
|
||||
msgstr "Izbriši"
|
||||
|
||||
@@ -1368,7 +1409,7 @@ msgstr "Izbriši"
|
||||
msgid "Delete Chapter"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:464
|
||||
#: frontend/src/pages/CourseForm.vue:467
|
||||
msgid "Delete Course"
|
||||
msgstr ""
|
||||
|
||||
@@ -1380,7 +1421,7 @@ msgstr ""
|
||||
msgid "Delete this lesson?"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:465
|
||||
#: frontend/src/pages/CourseForm.vue:468
|
||||
msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?"
|
||||
msgstr ""
|
||||
|
||||
@@ -1470,7 +1511,7 @@ msgstr "Dokument"
|
||||
msgid "Dream Companies"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:32
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:33
|
||||
msgid "Duplicate options found for this question."
|
||||
msgstr ""
|
||||
|
||||
@@ -1508,7 +1549,7 @@ msgstr ""
|
||||
#: frontend/src/components/CourseCardOverlay.vue:86
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:9
|
||||
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:65
|
||||
#: frontend/src/pages/Profile.vue:32
|
||||
#: frontend/src/pages/Profile.vue:32 frontend/src/pages/Programs.vue:55
|
||||
msgid "Edit"
|
||||
msgstr "Uredi"
|
||||
|
||||
@@ -1521,7 +1562,7 @@ msgstr ""
|
||||
msgid "Edit Profile"
|
||||
msgstr "Uredi profil"
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:180
|
||||
#: frontend/src/pages/QuizForm.vue:181
|
||||
msgid "Edit the question"
|
||||
msgstr ""
|
||||
|
||||
@@ -1582,6 +1623,15 @@ msgstr ""
|
||||
msgid "Enable Google API in Google Settings to send calendar invites for evaluations."
|
||||
msgstr ""
|
||||
|
||||
#. Label of the enable_learning_paths (Check) field in DocType 'LMS Settings'
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Enable Learning Paths"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:24
|
||||
msgid "Enable this only if you want to upload a SCORM package as a chapter."
|
||||
msgstr ""
|
||||
|
||||
#. Label of the enabled (Check) field in DocType 'LMS Badge'
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "Enabled"
|
||||
@@ -1634,7 +1684,7 @@ msgstr ""
|
||||
msgid "Enrolled successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:98
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:103
|
||||
msgid "Enrollment Confirmation for the Next Training Batch"
|
||||
msgstr ""
|
||||
|
||||
@@ -1643,7 +1693,7 @@ msgstr ""
|
||||
msgid "Enrollment Count"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1702
|
||||
#: lms/lms/utils.py:1705
|
||||
msgid "Enrollment Failed"
|
||||
msgstr ""
|
||||
|
||||
@@ -1672,14 +1722,14 @@ msgid "Enter the correct answer"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/AnnouncementModal.vue:105
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:154
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:161
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:197
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:159
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:166
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:202
|
||||
#: frontend/src/components/Modals/Question.vue:246
|
||||
#: frontend/src/components/Modals/Question.vue:266
|
||||
#: frontend/src/components/Modals/Question.vue:323
|
||||
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:349
|
||||
#: frontend/src/pages/QuizForm.vue:364
|
||||
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350
|
||||
#: frontend/src/pages/QuizForm.vue:365
|
||||
#: frontend/src/pages/QuizSubmission.vue:117
|
||||
msgid "Error"
|
||||
msgstr "Grеška"
|
||||
@@ -1708,7 +1758,7 @@ msgstr ""
|
||||
msgid "Evaluation Request"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:82
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:87
|
||||
msgid "Evaluation end date cannot be less than the batch end date."
|
||||
msgstr ""
|
||||
|
||||
@@ -1874,7 +1924,7 @@ msgstr ""
|
||||
msgid "Flexible Time"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:462
|
||||
#: frontend/src/pages/QuizForm.vue:463
|
||||
msgid "Form to create and edit quizzes"
|
||||
msgstr ""
|
||||
|
||||
@@ -1922,7 +1972,9 @@ msgid "From Date"
|
||||
msgstr "Od datuma"
|
||||
|
||||
#. Label of the full_name (Data) field in DocType 'Invite Request'
|
||||
#. Label of the full_name (Data) field in DocType 'LMS Program Member'
|
||||
#: lms/lms/doctype/invite_request/invite_request.json
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
#: lms/templates/signup-form.html:5
|
||||
msgid "Full Name"
|
||||
msgstr "Puno ime"
|
||||
@@ -1954,6 +2006,11 @@ msgstr ""
|
||||
msgid "GSTIN"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the general_tab (Tab Break) field in DocType 'LMS Settings'
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "General"
|
||||
msgstr "Općenito"
|
||||
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:18
|
||||
msgid "Generate Google Meet Link"
|
||||
msgstr ""
|
||||
@@ -2085,7 +2142,7 @@ msgstr ""
|
||||
msgid "I am unavailable"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:383
|
||||
#: frontend/src/pages/QuizForm.vue:384
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
@@ -2226,7 +2283,7 @@ msgstr ""
|
||||
|
||||
#. Label of the instructor_notes (Markdown Editor) field in DocType 'Course
|
||||
#. Lesson'
|
||||
#: frontend/src/pages/Lesson.vue:128 frontend/src/pages/LessonForm.vue:38
|
||||
#: frontend/src/pages/Lesson.vue:128 frontend/src/pages/LessonForm.vue:42
|
||||
#: lms/lms/doctype/course_lesson/course_lesson.json
|
||||
msgid "Instructor Notes"
|
||||
msgstr ""
|
||||
@@ -2302,7 +2359,6 @@ msgstr ""
|
||||
|
||||
#. Label of the is_scorm_package (Check) field in DocType 'Course Chapter'
|
||||
#. Label of the is_scorm_package (Check) field in DocType 'Course Lesson'
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:26
|
||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||
#: lms/lms/doctype/course_lesson/course_lesson.json
|
||||
msgid "Is SCORM Package"
|
||||
@@ -2332,6 +2388,10 @@ msgstr ""
|
||||
msgid "Items in Sidebar"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:269
|
||||
msgid "Items removed successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/signup-form.html:6
|
||||
msgid "Jane Doe"
|
||||
msgstr "Jane Doe"
|
||||
@@ -2531,6 +2591,21 @@ msgstr ""
|
||||
msgid "LMS Payment"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
msgid "LMS Program"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_program_course/lms_program_course.json
|
||||
msgid "LMS Program Course"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
msgid "LMS Program Member"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_question/lms_question.json
|
||||
msgid "LMS Question"
|
||||
@@ -2590,6 +2665,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
#: lms/lms/doctype/lms_source/lms_source.json
|
||||
#: lms/lms/doctype/user_skill/user_skill.json
|
||||
msgid "LMS Student"
|
||||
@@ -2812,7 +2888,7 @@ msgstr ""
|
||||
#. Label of the marks (Int) field in DocType 'LMS Quiz Result'
|
||||
#: frontend/src/components/Modals/Question.vue:50
|
||||
#: frontend/src/components/Modals/Question.vue:96
|
||||
#: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:393
|
||||
#: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:394
|
||||
#: frontend/src/pages/QuizSubmission.vue:52
|
||||
#: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json
|
||||
#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json
|
||||
@@ -2867,6 +2943,7 @@ msgstr "Srednje:"
|
||||
#. Option for the 'Role' (Select) field in DocType 'LMS Enrollment'
|
||||
#. Label of the member (Link) field in DocType 'LMS Mentor Request'
|
||||
#. 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 Quiz Submission'
|
||||
#: frontend/src/pages/QuizSubmission.vue:27
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:77
|
||||
@@ -2881,6 +2958,7 @@ msgstr "Srednje:"
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
|
||||
#: lms/lms/doctype/lms_payment/lms_payment.json
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/lms/report/course_progress_summary/course_progress_summary.py:64
|
||||
msgid "Member"
|
||||
@@ -2930,6 +3008,14 @@ msgstr ""
|
||||
msgid "Member Type"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:248
|
||||
msgid "Member added to program"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_program/lms_program.py:29
|
||||
msgid "Member {0} has already been added to this batch."
|
||||
msgstr ""
|
||||
|
||||
#. Group in LMS Batch Old's connections
|
||||
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
||||
msgid "Members"
|
||||
@@ -3002,6 +3088,10 @@ msgstr "Prekretnica"
|
||||
msgid "Milestones"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:48
|
||||
msgid "Minimum two options are required for multiple choice questions."
|
||||
msgstr ""
|
||||
|
||||
#. Name of a role
|
||||
#: frontend/src/pages/ProfileRoles.vue:10
|
||||
#: lms/lms/doctype/course_evaluator/course_evaluator.json
|
||||
@@ -3013,6 +3103,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
#: lms/lms/doctype/lms_question/lms_question.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_source/lms_source.json
|
||||
@@ -3057,8 +3148,8 @@ msgid "My calendar"
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
||||
#: frontend/src/pages/Batches.vue:30 frontend/src/pages/Courses.vue:44
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
#: frontend/src/pages/Batches.vue:30 frontend/src/pages/Courses.vue:45
|
||||
#: frontend/src/pages/Programs.vue:14 lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "New"
|
||||
msgstr ""
|
||||
|
||||
@@ -3082,11 +3173,23 @@ msgstr ""
|
||||
msgid "New Job Applicant"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:96
|
||||
msgid "New Program"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:132
|
||||
msgid "New Program Course"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:133
|
||||
msgid "New Program Member"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:122
|
||||
msgid "New Question"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:453 frontend/src/pages/QuizForm.vue:461
|
||||
#: frontend/src/pages/QuizForm.vue:454 frontend/src/pages/QuizForm.vue:462
|
||||
#: frontend/src/pages/Quizzes.vue:18
|
||||
msgid "New Quiz"
|
||||
msgstr ""
|
||||
@@ -3149,10 +3252,14 @@ msgstr ""
|
||||
msgid "No courses created"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:146
|
||||
#: frontend/src/pages/Courses.vue:147
|
||||
msgid "No courses found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:72
|
||||
msgid "No courses in this program"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/courses_under_review.html:14
|
||||
msgid "No courses under review"
|
||||
msgstr ""
|
||||
@@ -3169,6 +3276,10 @@ msgstr ""
|
||||
msgid "No live classes scheduled"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:82
|
||||
msgid "No programs found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Quizzes.vue:56
|
||||
msgid "No quizzes found"
|
||||
msgstr ""
|
||||
@@ -3189,7 +3300,7 @@ msgstr "Bez {0}"
|
||||
msgid "No {0} batches"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:106
|
||||
#: frontend/src/pages/Courses.vue:107
|
||||
msgid "No {0} courses"
|
||||
msgstr ""
|
||||
|
||||
@@ -3277,15 +3388,19 @@ msgstr ""
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:156
|
||||
msgid "Only courses for which self learning is disabled can be added to program."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/assignment.html:6
|
||||
msgid "Only files of type {0} will be accepted."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:494 frontend/src/utils/index.js:518
|
||||
#: frontend/src/pages/CourseForm.vue:497 frontend/src/utils/index.js:518
|
||||
msgid "Only image file is allowed."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:223
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:220
|
||||
msgid "Only zip files are allowed"
|
||||
msgstr ""
|
||||
|
||||
@@ -3561,7 +3676,11 @@ msgstr "Molimo provjerite svoju e-poštu za potvrdu"
|
||||
msgid "Please click on the following button to set your new password"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:251
|
||||
#: lms/lms/utils.py:1817 lms/lms/utils.py:1821
|
||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:256
|
||||
msgid "Please enable Zoom Settings to use this feature."
|
||||
msgstr ""
|
||||
|
||||
@@ -3573,11 +3692,19 @@ msgstr ""
|
||||
msgid "Please ensure that you complete all the questions in {0} minutes."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:164
|
||||
msgid "Please enter a title."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:38
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:98
|
||||
msgid "Please enter a valid URL."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:176
|
||||
msgid "Please enter a valid time in the format HH:mm."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:92
|
||||
msgid "Please enter the URL for assignment submission."
|
||||
msgstr ""
|
||||
@@ -3586,11 +3713,11 @@ msgstr ""
|
||||
msgid "Please enter your answer"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:65
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:66
|
||||
msgid "Please install the Payments app to create a paid batches."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_course/lms_course.py:52
|
||||
#: lms/lms/doctype/lms_course/lms_course.py:53
|
||||
msgid "Please install the Payments app to create a paid courses."
|
||||
msgstr ""
|
||||
|
||||
@@ -3615,11 +3742,31 @@ msgstr ""
|
||||
msgid "Please prepare well and be on time for the evaluations."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:167
|
||||
msgid "Please select a date."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:191
|
||||
msgid "Please select a duration."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:188
|
||||
msgid "Please select a future date and time."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:170
|
||||
msgid "Please select a time."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:173
|
||||
msgid "Please select a timezone."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/emails/job_report.html:6
|
||||
msgid "Please take appropriate action at {0}"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:172
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:177
|
||||
msgid "Please upload a SCORM package"
|
||||
msgstr ""
|
||||
|
||||
@@ -3756,8 +3903,30 @@ msgstr ""
|
||||
msgid "Profile Image"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:154
|
||||
msgid "Program Course"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the program_courses (Table) field in DocType 'LMS Program'
|
||||
#: frontend/src/pages/ProgramForm.vue:17
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
msgid "Program Courses"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:169
|
||||
msgid "Program Member"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the program_members (Table) field in DocType 'LMS Program'
|
||||
#: frontend/src/pages/ProgramForm.vue:78
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
msgid "Program Members"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the progress (Float) field in DocType 'LMS Enrollment'
|
||||
#. Label of the progress (Int) field in DocType 'LMS Program Member'
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
msgid "Progress"
|
||||
msgstr "Napredak"
|
||||
|
||||
@@ -3807,7 +3976,7 @@ msgstr "Objavljeno dana"
|
||||
#. Label of the question (Text) field in DocType 'LMS Quiz Result'
|
||||
#: frontend/src/components/Modals/Question.vue:38
|
||||
#: frontend/src/pages/AssignmentSubmission.vue:26
|
||||
#: frontend/src/pages/QuizForm.vue:388
|
||||
#: frontend/src/pages/QuizForm.vue:389
|
||||
#: lms/lms/doctype/course_lesson/course_lesson.json
|
||||
#: lms/lms/doctype/lms_assignment/lms_assignment.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
@@ -3853,7 +4022,7 @@ msgstr ""
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:430
|
||||
#: frontend/src/pages/QuizForm.vue:431
|
||||
msgid "Questions deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -3891,7 +4060,7 @@ msgstr ""
|
||||
msgid "Quiz Title"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:342
|
||||
#: frontend/src/pages/QuizForm.vue:343
|
||||
msgid "Quiz created successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -3899,7 +4068,7 @@ msgstr ""
|
||||
msgid "Quiz is not available to Guest users. Please login to continue."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:361
|
||||
#: frontend/src/pages/QuizForm.vue:362
|
||||
msgid "Quiz updated successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -3908,7 +4077,7 @@ msgstr ""
|
||||
msgid "Quiz will appear at the bottom of the lesson."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:441 frontend/src/pages/Quizzes.vue:136
|
||||
#: frontend/src/pages/QuizForm.vue:442 frontend/src/pages/Quizzes.vue:136
|
||||
#: frontend/src/pages/Quizzes.vue:146
|
||||
msgid "Quizzes"
|
||||
msgstr ""
|
||||
@@ -4065,19 +4234,19 @@ msgstr ""
|
||||
msgid "Route"
|
||||
msgstr "Ruta"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:194
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:199
|
||||
msgid "Row #{0} Date cannot be outside the batch duration."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:189
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:194
|
||||
msgid "Row #{0} End time cannot be outside the batch duration."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:171
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:176
|
||||
msgid "Row #{0} Start time cannot be greater than or equal to end time."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:180
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:185
|
||||
msgid "Row #{0} Start time cannot be outside the batch duration."
|
||||
msgstr ""
|
||||
|
||||
@@ -4095,6 +4264,7 @@ msgid "SCORM"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the scorm_package (Link) field in DocType 'Course Chapter'
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:22
|
||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||
msgid "SCORM Package"
|
||||
msgstr ""
|
||||
@@ -4117,8 +4287,9 @@ msgstr ""
|
||||
#: frontend/src/components/QuizPlugin.vue:23
|
||||
#: frontend/src/pages/AssignmentSubmission.vue:7
|
||||
#: frontend/src/pages/BatchForm.vue:8 frontend/src/pages/CourseForm.vue:20
|
||||
#: frontend/src/pages/JobCreation.vue:8 frontend/src/pages/LessonForm.vue:10
|
||||
#: frontend/src/pages/QuizForm.vue:34 frontend/src/pages/QuizSubmission.vue:14
|
||||
#: frontend/src/pages/JobCreation.vue:8 frontend/src/pages/LessonForm.vue:14
|
||||
#: frontend/src/pages/ProgramForm.vue:7 frontend/src/pages/QuizForm.vue:34
|
||||
#: frontend/src/pages/QuizSubmission.vue:14
|
||||
#: lms/public/js/common_functions.js:405
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
@@ -4334,6 +4505,10 @@ msgstr ""
|
||||
msgid "Skip"
|
||||
msgstr "Preskoči"
|
||||
|
||||
#: frontend/src/components/OnboardingBanner.vue:3
|
||||
msgid "Skip Onboarding"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/course_evaluator/course_evaluator.py:57
|
||||
msgid "Slot Times are overlapping for some schedules."
|
||||
msgstr ""
|
||||
@@ -4507,7 +4682,7 @@ msgstr ""
|
||||
msgid "Student Reviews"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:47
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:48
|
||||
msgid "Student {0} has already been added to this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -4575,14 +4750,17 @@ msgstr ""
|
||||
#: frontend/src/components/CourseCardOverlay.vue:161
|
||||
#: frontend/src/components/Modals/AnnouncementModal.vue:99
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:73
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:148
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:193
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:153
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:198
|
||||
#: frontend/src/components/Modals/Event.vue:255
|
||||
#: frontend/src/components/Modals/Event.vue:310
|
||||
#: frontend/src/components/Modals/Question.vue:261
|
||||
#: frontend/src/components/Modals/Question.vue:312
|
||||
#: frontend/src/pages/CourseForm.vue:457 frontend/src/pages/QuizForm.vue:342
|
||||
#: frontend/src/pages/QuizForm.vue:361 frontend/src/pages/QuizForm.vue:430
|
||||
#: frontend/src/pages/CourseForm.vue:460 frontend/src/pages/ProgramForm.vue:226
|
||||
#: frontend/src/pages/ProgramForm.vue:248
|
||||
#: frontend/src/pages/ProgramForm.vue:269
|
||||
#: frontend/src/pages/ProgramForm.vue:295 frontend/src/pages/QuizForm.vue:343
|
||||
#: frontend/src/pages/QuizForm.vue:362 frontend/src/pages/QuizForm.vue:431
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
@@ -4637,6 +4815,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
|
||||
#: lms/lms/doctype/lms_payment/lms_payment.json
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
#: lms/lms/doctype/lms_question/lms_question.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
@@ -4737,11 +4916,15 @@ msgstr ""
|
||||
msgid "There are no chapters in this course. Create and manage chapters from here."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:150
|
||||
#: frontend/src/pages/Courses.vue:151
|
||||
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:141
|
||||
#: frontend/src/pages/Programs.vue:86
|
||||
msgid "There are no programs available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:146
|
||||
msgid "There are no seats available in this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -4772,11 +4955,11 @@ msgstr ""
|
||||
msgid "This course has:"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1582
|
||||
#: lms/lms/utils.py:1585
|
||||
msgid "This course is free."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/SCORMChapter.vue:198
|
||||
#: frontend/src/pages/SCORMChapter.vue:197
|
||||
msgid "This is a chapter in the course {0}"
|
||||
msgstr ""
|
||||
|
||||
@@ -4868,6 +5051,7 @@ msgstr ""
|
||||
#. Label of the title (Data) field in DocType 'LMS Course'
|
||||
#. Label of the title (Data) field in DocType 'LMS Exercise'
|
||||
#. Label of the title (Data) field in DocType 'LMS Live Class'
|
||||
#. Label of the title (Data) field in DocType 'LMS Program'
|
||||
#. Label of the title (Data) field in DocType 'LMS Quiz'
|
||||
#. Label of the title (Data) field in DocType 'LMS Sidebar Item'
|
||||
#. Label of the title (Data) field in DocType 'LMS Timetable Template'
|
||||
@@ -4875,7 +5059,8 @@ msgstr ""
|
||||
#: frontend/src/components/Modals/DiscussionModal.vue:18
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:23
|
||||
#: frontend/src/pages/BatchForm.vue:20 frontend/src/pages/CourseForm.vue:32
|
||||
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/QuizForm.vue:48
|
||||
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/ProgramForm.vue:11
|
||||
#: frontend/src/pages/Programs.vue:107 frontend/src/pages/QuizForm.vue:48
|
||||
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
|
||||
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
|
||||
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json
|
||||
@@ -4888,6 +5073,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_exercise/lms_exercise.json
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_sidebar_item/lms_sidebar_item.json
|
||||
#: lms/lms/doctype/lms_timetable_template/lms_timetable_template.json
|
||||
@@ -4896,7 +5082,7 @@ msgstr ""
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:169
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:174
|
||||
msgid "Title is required"
|
||||
msgstr ""
|
||||
|
||||
@@ -4911,7 +5097,7 @@ msgstr ""
|
||||
msgid "To Date"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1593
|
||||
#: lms/lms/utils.py:1596
|
||||
msgid "To join this batch, please contact the Administrator."
|
||||
msgstr ""
|
||||
|
||||
@@ -4975,7 +5161,7 @@ msgstr ""
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Quiz.vue:580
|
||||
#: frontend/src/components/Quiz.vue:583
|
||||
msgid "Type your answer"
|
||||
msgstr ""
|
||||
|
||||
@@ -5259,7 +5445,7 @@ msgstr ""
|
||||
msgid "You are not enrolled in this course. Please enroll to access this lesson."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:134
|
||||
#: frontend/src/pages/Courses.vue:135
|
||||
msgid "You can add chapters and lessons to it."
|
||||
msgstr ""
|
||||
|
||||
@@ -5431,6 +5617,10 @@ msgstr ""
|
||||
msgid "jane@example.com"
|
||||
msgstr "jane@example.com"
|
||||
|
||||
#: frontend/src/pages/Programs.vue:32
|
||||
msgid "members"
|
||||
msgstr "članovi"
|
||||
|
||||
#: lms/templates/quiz/quiz.html:106
|
||||
msgid "of"
|
||||
msgstr "od"
|
||||
@@ -5443,7 +5633,7 @@ msgstr ""
|
||||
msgid "posted by"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:389
|
||||
#: frontend/src/pages/QuizForm.vue:390
|
||||
msgid "question_detail"
|
||||
msgstr ""
|
||||
|
||||
@@ -5475,7 +5665,7 @@ msgstr ""
|
||||
msgid "{0} has submitted the assignment {1}"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.py:53
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.py:57
|
||||
msgid "{0} is already a Student of {1} course through {2} batch"
|
||||
msgstr ""
|
||||
|
||||
@@ -5483,7 +5673,7 @@ msgstr ""
|
||||
msgid "{0} is already a mentor for course {1}"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.py:26
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.py:30
|
||||
msgid "{0} is already a {1} of the course {2}"
|
||||
msgstr ""
|
||||
|
||||
|
||||
340
lms/locale/de.po
340
lms/locale/de.po
@@ -2,8 +2,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: frappe\n"
|
||||
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
||||
"POT-Creation-Date: 2024-11-15 16:04+0000\n"
|
||||
"PO-Revision-Date: 2024-11-18 17:31\n"
|
||||
"POT-Creation-Date: 2024-11-22 16:05+0000\n"
|
||||
"PO-Revision-Date: 2024-11-25 19:29\n"
|
||||
"Last-Translator: jannat@frappe.io\n"
|
||||
"Language-Team: German\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -22,6 +22,11 @@ msgstr ""
|
||||
msgid " Please evaluate and grade it."
|
||||
msgstr " Bitte bewerten und benoten Sie es."
|
||||
|
||||
#: frontend/src/pages/Programs.vue:41
|
||||
#, python-format
|
||||
msgid "% completed"
|
||||
msgstr "% abgeschlossen"
|
||||
|
||||
#. Paragraph text in the LMS Workspace
|
||||
#: lms/lms/workspace/lms/lms.json
|
||||
msgid "<a href=\"/app/lms-settings/LMS%20Settings\">LMS Settings</a>"
|
||||
@@ -99,7 +104,8 @@ msgstr "Aktiv"
|
||||
#: frontend/src/components/BatchStudents.vue:6
|
||||
#: frontend/src/components/Categories.vue:26
|
||||
#: frontend/src/components/LiveClass.vue:11
|
||||
#: frontend/src/components/Members.vue:43
|
||||
#: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30
|
||||
#: frontend/src/pages/ProgramForm.vue:91 frontend/src/pages/ProgramForm.vue:136
|
||||
msgid "Add"
|
||||
msgstr "Hinzufügen"
|
||||
|
||||
@@ -129,12 +135,20 @@ msgstr "Lektion hinzufügen"
|
||||
msgid "Add a Student"
|
||||
msgstr "Schüler hinzufügen"
|
||||
|
||||
#: frontend/src/components/OnboardingBanner.vue:50
|
||||
msgid "Add a chapter"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/BatchCourseModal.vue:5
|
||||
msgid "Add a course"
|
||||
msgstr "Kurs hinzufügen"
|
||||
|
||||
#: frontend/src/components/OnboardingBanner.vue:73
|
||||
msgid "Add a lesson"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/Question.vue:141
|
||||
#: frontend/src/pages/QuizForm.vue:181
|
||||
#: frontend/src/pages/QuizForm.vue:182
|
||||
msgid "Add a new question"
|
||||
msgstr ""
|
||||
|
||||
@@ -150,7 +164,7 @@ msgstr ""
|
||||
msgid "Add an existing question"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:60
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:66
|
||||
msgid "Add at least one possible answer for this question: {0}"
|
||||
msgstr "Fügen Sie mindestens eine mögliche Antwort für diese Frage hinzu: {0}"
|
||||
|
||||
@@ -253,6 +267,14 @@ msgstr ""
|
||||
msgid "Amount Field"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:70
|
||||
msgid "Amount and currency are required for paid batches."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_course/lms_course.py:57
|
||||
msgid "Amount and currency are required for paid courses."
|
||||
msgstr ""
|
||||
|
||||
#. Label of the amount_with_gst (Currency) field in DocType 'LMS Payment'
|
||||
#: lms/lms/doctype/lms_payment/lms_payment.json
|
||||
msgid "Amount with GST"
|
||||
@@ -346,7 +368,7 @@ msgstr "Prüfungstyp"
|
||||
msgid "Assessment added successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:75
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:80
|
||||
msgid "Assessment {0} has already been added to this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -397,7 +419,7 @@ msgstr "Die Aufgabe für Lektion {0} von {1} existiert bereits."
|
||||
msgid "Assignment will appear at the bottom of the lesson."
|
||||
msgstr "Die Aufgabe wird unten in der Lektion angezeigt."
|
||||
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:42
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:43
|
||||
msgid "At least one option must be correct for this question."
|
||||
msgstr "Bei dieser Frage muss mindestens eine Antwortmöglichkeit richtig sein."
|
||||
|
||||
@@ -540,7 +562,7 @@ msgstr ""
|
||||
msgid "Batch Updated"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:40
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:41
|
||||
msgid "Batch end date cannot be before the batch start date"
|
||||
msgstr ""
|
||||
|
||||
@@ -727,11 +749,11 @@ msgstr "Kapitel"
|
||||
msgid "Chapter Reference"
|
||||
msgstr "Kapitelreferenz"
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:149
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:154
|
||||
msgid "Chapter added successfully"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:193
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:198
|
||||
msgid "Chapter updated successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -764,7 +786,7 @@ msgstr ""
|
||||
msgid "Choices"
|
||||
msgstr "Auswahlmöglichkeiten"
|
||||
|
||||
#: frontend/src/components/Quiz.vue:578 lms/templates/quiz/quiz.html:53
|
||||
#: frontend/src/components/Quiz.vue:581 lms/templates/quiz/quiz.html:53
|
||||
msgid "Choose all answers that apply"
|
||||
msgstr "Wählen Sie alle zutreffenden Antworten aus"
|
||||
|
||||
@@ -772,7 +794,7 @@ msgstr "Wählen Sie alle zutreffenden Antworten aus"
|
||||
msgid "Choose an icon"
|
||||
msgstr "Symbol auswählen"
|
||||
|
||||
#: frontend/src/components/Quiz.vue:579 lms/templates/quiz/quiz.html:53
|
||||
#: frontend/src/components/Quiz.vue:582 lms/templates/quiz/quiz.html:53
|
||||
msgid "Choose one answer"
|
||||
msgstr "Wählen Sie eine Antwort"
|
||||
|
||||
@@ -988,7 +1010,7 @@ msgid "Contact the Administrator to enroll for this course."
|
||||
msgstr ""
|
||||
|
||||
#. Label of the content (Text) field in DocType 'Course Lesson'
|
||||
#: frontend/src/pages/LessonForm.vue:58
|
||||
#: frontend/src/pages/LessonForm.vue:62
|
||||
#: lms/lms/doctype/course_lesson/course_lesson.json
|
||||
msgid "Content"
|
||||
msgstr "Inhalt"
|
||||
@@ -1057,6 +1079,7 @@ msgstr "Land"
|
||||
#. Label of the course (Link) field in DocType 'LMS Enrollment'
|
||||
#. Label of the course (Link) field in DocType 'LMS Exercise'
|
||||
#. Label of the course (Link) field in DocType 'LMS Mentor Request'
|
||||
#. Label of the course (Link) field in DocType 'LMS Program Course'
|
||||
#. Label of the course (Link) field in DocType 'LMS Quiz'
|
||||
#. Label of the course (Link) field in DocType 'LMS Quiz Submission'
|
||||
#. Label of the course (Link) field in DocType 'Related Courses'
|
||||
@@ -1086,6 +1109,7 @@ msgstr "Land"
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
#: lms/lms/doctype/lms_exercise/lms_exercise.json
|
||||
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
|
||||
#: lms/lms/doctype/lms_program_course/lms_program_course.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/lms/doctype/related_courses/related_courses.json
|
||||
@@ -1114,6 +1138,7 @@ msgstr "Kursinhalt"
|
||||
#. Name of a role
|
||||
#: frontend/src/pages/ProfileRoles.vue:16
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
#: lms/lms/doctype/lms_question/lms_question.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
msgid "Course Creator"
|
||||
@@ -1184,22 +1209,33 @@ msgstr "Kurs-Statistiken"
|
||||
#. Label of the course_title (Data) field in DocType 'Course Chapter'
|
||||
#. Label of the course_title (Data) field in DocType 'LMS Certificate'
|
||||
#. Label of the course_title (Data) field in DocType 'LMS Certificate Request'
|
||||
#. Label of the course_title (Data) field in DocType 'LMS Program Course'
|
||||
#: lms/lms/doctype/batch_course/batch_course.json
|
||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
#: lms/lms/doctype/lms_program_course/lms_program_course.json
|
||||
msgid "Course Title"
|
||||
msgstr "Kurstitel"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:340
|
||||
#: frontend/src/pages/ProgramForm.vue:226
|
||||
msgid "Course added to program"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:345
|
||||
msgid "Course already added to the batch."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:457
|
||||
#: frontend/src/pages/CourseForm.vue:460
|
||||
msgid "Course deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:58
|
||||
#: frontend/src/pages/ProgramForm.vue:295
|
||||
msgid "Course moved successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:59
|
||||
#: lms/lms/doctype/lms_program/lms_program.py:19
|
||||
msgid "Course {0} has already been added to this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -1234,6 +1270,7 @@ msgid "Cover Image"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:9
|
||||
#: frontend/src/pages/Programs.vue:99
|
||||
msgid "Create"
|
||||
msgstr "Erstellen"
|
||||
|
||||
@@ -1249,7 +1286,7 @@ msgstr ""
|
||||
msgid "Create a Batch"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:131 lms/templates/onboarding_header.html:19
|
||||
#: frontend/src/pages/Courses.vue:132 lms/templates/onboarding_header.html:19
|
||||
msgid "Create a Course"
|
||||
msgstr "Einen Kurs erstellen"
|
||||
|
||||
@@ -1257,6 +1294,10 @@ msgstr "Einen Kurs erstellen"
|
||||
msgid "Create a Live Class"
|
||||
msgstr "Eine Live-Klasse erstellen"
|
||||
|
||||
#: frontend/src/components/OnboardingBanner.vue:27
|
||||
msgid "Create a course"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/Question.vue:31
|
||||
msgid "Create a new question"
|
||||
msgstr ""
|
||||
@@ -1360,7 +1401,7 @@ msgstr "Abschlussart"
|
||||
|
||||
#: frontend/src/components/CourseOutline.vue:235
|
||||
#: frontend/src/components/CourseOutline.vue:293
|
||||
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:470
|
||||
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:473
|
||||
msgid "Delete"
|
||||
msgstr "Löschen"
|
||||
|
||||
@@ -1368,7 +1409,7 @@ msgstr "Löschen"
|
||||
msgid "Delete Chapter"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:464
|
||||
#: frontend/src/pages/CourseForm.vue:467
|
||||
msgid "Delete Course"
|
||||
msgstr ""
|
||||
|
||||
@@ -1380,7 +1421,7 @@ msgstr ""
|
||||
msgid "Delete this lesson?"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:465
|
||||
#: frontend/src/pages/CourseForm.vue:468
|
||||
msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?"
|
||||
msgstr ""
|
||||
|
||||
@@ -1470,7 +1511,7 @@ msgstr "Dokument"
|
||||
msgid "Dream Companies"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:32
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:33
|
||||
msgid "Duplicate options found for this question."
|
||||
msgstr "Doppelte Optionen für diese Frage gefunden."
|
||||
|
||||
@@ -1508,7 +1549,7 @@ msgstr "E-Mail"
|
||||
#: frontend/src/components/CourseCardOverlay.vue:86
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:9
|
||||
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:65
|
||||
#: frontend/src/pages/Profile.vue:32
|
||||
#: frontend/src/pages/Profile.vue:32 frontend/src/pages/Programs.vue:55
|
||||
msgid "Edit"
|
||||
msgstr "Bearbeiten"
|
||||
|
||||
@@ -1521,7 +1562,7 @@ msgstr "Kapitel bearbeiten"
|
||||
msgid "Edit Profile"
|
||||
msgstr "Profil bearbeiten"
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:180
|
||||
#: frontend/src/pages/QuizForm.vue:181
|
||||
msgid "Edit the question"
|
||||
msgstr ""
|
||||
|
||||
@@ -1582,6 +1623,15 @@ msgstr "Zertifizierung aktivieren"
|
||||
msgid "Enable Google API in Google Settings to send calendar invites for evaluations."
|
||||
msgstr "Aktivieren Sie die Google API in den Google-Einstellungen, um Kalendereinladungen für Bewertungen zu versenden."
|
||||
|
||||
#. Label of the enable_learning_paths (Check) field in DocType 'LMS Settings'
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Enable Learning Paths"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:24
|
||||
msgid "Enable this only if you want to upload a SCORM package as a chapter."
|
||||
msgstr ""
|
||||
|
||||
#. Label of the enabled (Check) field in DocType 'LMS Badge'
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "Enabled"
|
||||
@@ -1634,7 +1684,7 @@ msgstr "Eingeschriebene Studenten"
|
||||
msgid "Enrolled successfully"
|
||||
msgstr "Erfolgreich eingeschrieben"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:98
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:103
|
||||
msgid "Enrollment Confirmation for the Next Training Batch"
|
||||
msgstr ""
|
||||
|
||||
@@ -1643,7 +1693,7 @@ msgstr ""
|
||||
msgid "Enrollment Count"
|
||||
msgstr "Anzahl der Einschreibungen"
|
||||
|
||||
#: lms/lms/utils.py:1702
|
||||
#: lms/lms/utils.py:1705
|
||||
msgid "Enrollment Failed"
|
||||
msgstr ""
|
||||
|
||||
@@ -1672,14 +1722,14 @@ msgid "Enter the correct answer"
|
||||
msgstr "Geben Sie die richtige Antwort ein"
|
||||
|
||||
#: frontend/src/components/Modals/AnnouncementModal.vue:105
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:154
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:161
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:197
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:159
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:166
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:202
|
||||
#: frontend/src/components/Modals/Question.vue:246
|
||||
#: frontend/src/components/Modals/Question.vue:266
|
||||
#: frontend/src/components/Modals/Question.vue:323
|
||||
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:349
|
||||
#: frontend/src/pages/QuizForm.vue:364
|
||||
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350
|
||||
#: frontend/src/pages/QuizForm.vue:365
|
||||
#: frontend/src/pages/QuizSubmission.vue:117
|
||||
msgid "Error"
|
||||
msgstr "Fehler"
|
||||
@@ -1708,7 +1758,7 @@ msgstr ""
|
||||
msgid "Evaluation Request"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:82
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:87
|
||||
msgid "Evaluation end date cannot be less than the batch end date."
|
||||
msgstr ""
|
||||
|
||||
@@ -1874,7 +1924,7 @@ msgstr ""
|
||||
msgid "Flexible Time"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:462
|
||||
#: frontend/src/pages/QuizForm.vue:463
|
||||
msgid "Form to create and edit quizzes"
|
||||
msgstr ""
|
||||
|
||||
@@ -1922,7 +1972,9 @@ msgid "From Date"
|
||||
msgstr "Von-Datum"
|
||||
|
||||
#. Label of the full_name (Data) field in DocType 'Invite Request'
|
||||
#. Label of the full_name (Data) field in DocType 'LMS Program Member'
|
||||
#: lms/lms/doctype/invite_request/invite_request.json
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
#: lms/templates/signup-form.html:5
|
||||
msgid "Full Name"
|
||||
msgstr "Vollständiger Name"
|
||||
@@ -1954,6 +2006,11 @@ msgstr ""
|
||||
msgid "GSTIN"
|
||||
msgstr "GSTIN"
|
||||
|
||||
#. Label of the general_tab (Tab Break) field in DocType 'LMS Settings'
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "General"
|
||||
msgstr "Allgemein"
|
||||
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:18
|
||||
msgid "Generate Google Meet Link"
|
||||
msgstr "Google Meet-Link generieren"
|
||||
@@ -2085,7 +2142,7 @@ msgstr ""
|
||||
msgid "I am unavailable"
|
||||
msgstr "Ich bin nicht verfügbar"
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:383
|
||||
#: frontend/src/pages/QuizForm.vue:384
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
@@ -2226,7 +2283,7 @@ msgstr ""
|
||||
|
||||
#. Label of the instructor_notes (Markdown Editor) field in DocType 'Course
|
||||
#. Lesson'
|
||||
#: frontend/src/pages/Lesson.vue:128 frontend/src/pages/LessonForm.vue:38
|
||||
#: frontend/src/pages/Lesson.vue:128 frontend/src/pages/LessonForm.vue:42
|
||||
#: lms/lms/doctype/course_lesson/course_lesson.json
|
||||
msgid "Instructor Notes"
|
||||
msgstr ""
|
||||
@@ -2302,7 +2359,6 @@ msgstr ""
|
||||
|
||||
#. Label of the is_scorm_package (Check) field in DocType 'Course Chapter'
|
||||
#. Label of the is_scorm_package (Check) field in DocType 'Course Lesson'
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:26
|
||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||
#: lms/lms/doctype/course_lesson/course_lesson.json
|
||||
msgid "Is SCORM Package"
|
||||
@@ -2332,6 +2388,10 @@ msgstr "Ausgestellt am"
|
||||
msgid "Items in Sidebar"
|
||||
msgstr "Elemente in der Seitenleiste"
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:269
|
||||
msgid "Items removed successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/signup-form.html:6
|
||||
msgid "Jane Doe"
|
||||
msgstr "Beate Beispiel"
|
||||
@@ -2531,6 +2591,21 @@ msgstr ""
|
||||
msgid "LMS Payment"
|
||||
msgstr "LMS-Zahlung"
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
msgid "LMS Program"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_program_course/lms_program_course.json
|
||||
msgid "LMS Program Course"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
msgid "LMS Program Member"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_question/lms_question.json
|
||||
msgid "LMS Question"
|
||||
@@ -2590,6 +2665,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
#: lms/lms/doctype/lms_source/lms_source.json
|
||||
#: lms/lms/doctype/user_skill/user_skill.json
|
||||
msgid "LMS Student"
|
||||
@@ -2812,7 +2888,7 @@ msgstr "Als gelesen markieren"
|
||||
#. Label of the marks (Int) field in DocType 'LMS Quiz Result'
|
||||
#: frontend/src/components/Modals/Question.vue:50
|
||||
#: frontend/src/components/Modals/Question.vue:96
|
||||
#: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:393
|
||||
#: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:394
|
||||
#: frontend/src/pages/QuizSubmission.vue:52
|
||||
#: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json
|
||||
#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json
|
||||
@@ -2867,6 +2943,7 @@ msgstr "Mittel:"
|
||||
#. Option for the 'Role' (Select) field in DocType 'LMS Enrollment'
|
||||
#. Label of the member (Link) field in DocType 'LMS Mentor Request'
|
||||
#. 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 Quiz Submission'
|
||||
#: frontend/src/pages/QuizSubmission.vue:27
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:77
|
||||
@@ -2881,6 +2958,7 @@ msgstr "Mittel:"
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
|
||||
#: lms/lms/doctype/lms_payment/lms_payment.json
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/lms/report/course_progress_summary/course_progress_summary.py:64
|
||||
msgid "Member"
|
||||
@@ -2930,6 +3008,14 @@ msgstr ""
|
||||
msgid "Member Type"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:248
|
||||
msgid "Member added to program"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_program/lms_program.py:29
|
||||
msgid "Member {0} has already been added to this batch."
|
||||
msgstr ""
|
||||
|
||||
#. Group in LMS Batch Old's connections
|
||||
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
||||
msgid "Members"
|
||||
@@ -3002,6 +3088,10 @@ msgstr "Ecktermin"
|
||||
msgid "Milestones"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:48
|
||||
msgid "Minimum two options are required for multiple choice questions."
|
||||
msgstr ""
|
||||
|
||||
#. Name of a role
|
||||
#: frontend/src/pages/ProfileRoles.vue:10
|
||||
#: lms/lms/doctype/course_evaluator/course_evaluator.json
|
||||
@@ -3013,6 +3103,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
#: lms/lms/doctype/lms_question/lms_question.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_source/lms_source.json
|
||||
@@ -3057,8 +3148,8 @@ msgid "My calendar"
|
||||
msgstr "Mein Kalender"
|
||||
|
||||
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
||||
#: frontend/src/pages/Batches.vue:30 frontend/src/pages/Courses.vue:44
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
#: frontend/src/pages/Batches.vue:30 frontend/src/pages/Courses.vue:45
|
||||
#: frontend/src/pages/Programs.vue:14 lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "New"
|
||||
msgstr "Neu"
|
||||
|
||||
@@ -3082,11 +3173,23 @@ msgstr ""
|
||||
msgid "New Job Applicant"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:96
|
||||
msgid "New Program"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:132
|
||||
msgid "New Program Course"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:133
|
||||
msgid "New Program Member"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:122
|
||||
msgid "New Question"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:453 frontend/src/pages/QuizForm.vue:461
|
||||
#: frontend/src/pages/QuizForm.vue:454 frontend/src/pages/QuizForm.vue:462
|
||||
#: frontend/src/pages/Quizzes.vue:18
|
||||
msgid "New Quiz"
|
||||
msgstr ""
|
||||
@@ -3149,10 +3252,14 @@ msgstr "Keine Zertifikate"
|
||||
msgid "No courses created"
|
||||
msgstr "Keine Kurse erstellt"
|
||||
|
||||
#: frontend/src/pages/Courses.vue:146
|
||||
#: frontend/src/pages/Courses.vue:147
|
||||
msgid "No courses found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:72
|
||||
msgid "No courses in this program"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/courses_under_review.html:14
|
||||
msgid "No courses under review"
|
||||
msgstr "Keine Kurse in Überprüfung"
|
||||
@@ -3169,6 +3276,10 @@ msgstr "Keine Stellen ausgeschrieben"
|
||||
msgid "No live classes scheduled"
|
||||
msgstr "Keine Live-Kurse geplant"
|
||||
|
||||
#: frontend/src/pages/Programs.vue:82
|
||||
msgid "No programs found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Quizzes.vue:56
|
||||
msgid "No quizzes found"
|
||||
msgstr ""
|
||||
@@ -3189,7 +3300,7 @@ msgstr "Keine {0}"
|
||||
msgid "No {0} batches"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:106
|
||||
#: frontend/src/pages/Courses.vue:107
|
||||
msgid "No {0} courses"
|
||||
msgstr ""
|
||||
|
||||
@@ -3277,15 +3388,19 @@ msgstr "Sobald der Moderator Ihren Beitrag bewertet hat, finden Sie hier die Det
|
||||
msgid "Online"
|
||||
msgstr "Online"
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:156
|
||||
msgid "Only courses for which self learning is disabled can be added to program."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/assignment.html:6
|
||||
msgid "Only files of type {0} will be accepted."
|
||||
msgstr "Es werden nur Dateien vom Typ {0} akzeptiert."
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:494 frontend/src/utils/index.js:518
|
||||
#: frontend/src/pages/CourseForm.vue:497 frontend/src/utils/index.js:518
|
||||
msgid "Only image file is allowed."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:223
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:220
|
||||
msgid "Only zip files are allowed"
|
||||
msgstr ""
|
||||
|
||||
@@ -3561,7 +3676,11 @@ 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"
|
||||
msgstr "Bitte klicken Sie auf die folgende Schaltfläche, um Ihr neues Passwort festzulegen"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:251
|
||||
#: lms/lms/utils.py:1817 lms/lms/utils.py:1821
|
||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:256
|
||||
msgid "Please enable Zoom Settings to use this feature."
|
||||
msgstr "Bitte aktivieren Sie die Zoom-Einstellungen, um diese Funktion zu nutzen."
|
||||
|
||||
@@ -3573,11 +3692,19 @@ msgstr ""
|
||||
msgid "Please ensure that you complete all the questions in {0} minutes."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:164
|
||||
msgid "Please enter a title."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:38
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:98
|
||||
msgid "Please enter a valid URL."
|
||||
msgstr "Bitte geben Sie eine gültige URL ein."
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:176
|
||||
msgid "Please enter a valid time in the format HH:mm."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:92
|
||||
msgid "Please enter the URL for assignment submission."
|
||||
msgstr "Bitte geben Sie die URL zur Aufgabeneinreichung ein."
|
||||
@@ -3586,11 +3713,11 @@ msgstr "Bitte geben Sie die URL zur Aufgabeneinreichung ein."
|
||||
msgid "Please enter your answer"
|
||||
msgstr "Bitte geben Sie Ihre Antwort ein"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:65
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:66
|
||||
msgid "Please install the Payments app to create a paid batches."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_course/lms_course.py:52
|
||||
#: lms/lms/doctype/lms_course/lms_course.py:53
|
||||
msgid "Please install the Payments app to create a paid courses."
|
||||
msgstr ""
|
||||
|
||||
@@ -3615,11 +3742,31 @@ msgstr "Bitte loggen Sie sich ein, um mit der Zahlung fortzufahren."
|
||||
msgid "Please prepare well and be on time for the evaluations."
|
||||
msgstr "Bitte bereiten Sie sich gut vor und erscheinen Sie pünktlich zu den Prüfungen."
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:167
|
||||
msgid "Please select a date."
|
||||
msgstr "Bitte wählen Sie ein Datum aus."
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:191
|
||||
msgid "Please select a duration."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:188
|
||||
msgid "Please select a future date and time."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:170
|
||||
msgid "Please select a time."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:173
|
||||
msgid "Please select a timezone."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/emails/job_report.html:6
|
||||
msgid "Please take appropriate action at {0}"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:172
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:177
|
||||
msgid "Please upload a SCORM package"
|
||||
msgstr ""
|
||||
|
||||
@@ -3756,8 +3903,30 @@ msgstr ""
|
||||
msgid "Profile Image"
|
||||
msgstr "Profilbild"
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:154
|
||||
msgid "Program Course"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the program_courses (Table) field in DocType 'LMS Program'
|
||||
#: frontend/src/pages/ProgramForm.vue:17
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
msgid "Program Courses"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:169
|
||||
msgid "Program Member"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the program_members (Table) field in DocType 'LMS Program'
|
||||
#: frontend/src/pages/ProgramForm.vue:78
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
msgid "Program Members"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the progress (Float) field in DocType 'LMS Enrollment'
|
||||
#. Label of the progress (Int) field in DocType 'LMS Program Member'
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
msgid "Progress"
|
||||
msgstr "Fortschritt"
|
||||
|
||||
@@ -3807,7 +3976,7 @@ msgstr "Veröffentlicht am"
|
||||
#. Label of the question (Text) field in DocType 'LMS Quiz Result'
|
||||
#: frontend/src/components/Modals/Question.vue:38
|
||||
#: frontend/src/pages/AssignmentSubmission.vue:26
|
||||
#: frontend/src/pages/QuizForm.vue:388
|
||||
#: frontend/src/pages/QuizForm.vue:389
|
||||
#: lms/lms/doctype/course_lesson/course_lesson.json
|
||||
#: lms/lms/doctype/lms_assignment/lms_assignment.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
@@ -3853,7 +4022,7 @@ msgstr "Frage {0} von {1}"
|
||||
msgid "Questions"
|
||||
msgstr "Fragen"
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:430
|
||||
#: frontend/src/pages/QuizForm.vue:431
|
||||
msgid "Questions deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -3891,7 +4060,7 @@ msgstr "Quiz-Zusammenfassung"
|
||||
msgid "Quiz Title"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:342
|
||||
#: frontend/src/pages/QuizForm.vue:343
|
||||
msgid "Quiz created successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -3899,7 +4068,7 @@ msgstr ""
|
||||
msgid "Quiz is not available to Guest users. Please login to continue."
|
||||
msgstr "Das Quiz ist für Gastbenutzer nicht verfügbar. Bitte melden Sie sich an, um fortzufahren."
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:361
|
||||
#: frontend/src/pages/QuizForm.vue:362
|
||||
msgid "Quiz updated successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -3908,7 +4077,7 @@ msgstr ""
|
||||
msgid "Quiz will appear at the bottom of the lesson."
|
||||
msgstr "Das Quiz wird am Ende der Lektion angezeigt."
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:441 frontend/src/pages/Quizzes.vue:136
|
||||
#: frontend/src/pages/QuizForm.vue:442 frontend/src/pages/Quizzes.vue:136
|
||||
#: frontend/src/pages/Quizzes.vue:146
|
||||
msgid "Quizzes"
|
||||
msgstr ""
|
||||
@@ -4065,19 +4234,19 @@ msgstr ""
|
||||
msgid "Route"
|
||||
msgstr "Pfad"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:194
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:199
|
||||
msgid "Row #{0} Date cannot be outside the batch duration."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:189
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:194
|
||||
msgid "Row #{0} End time cannot be outside the batch duration."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:171
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:176
|
||||
msgid "Row #{0} Start time cannot be greater than or equal to end time."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:180
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:185
|
||||
msgid "Row #{0} Start time cannot be outside the batch duration."
|
||||
msgstr ""
|
||||
|
||||
@@ -4095,6 +4264,7 @@ msgid "SCORM"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the scorm_package (Link) field in DocType 'Course Chapter'
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:22
|
||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||
msgid "SCORM Package"
|
||||
msgstr ""
|
||||
@@ -4117,8 +4287,9 @@ msgstr "Samstag"
|
||||
#: frontend/src/components/QuizPlugin.vue:23
|
||||
#: frontend/src/pages/AssignmentSubmission.vue:7
|
||||
#: frontend/src/pages/BatchForm.vue:8 frontend/src/pages/CourseForm.vue:20
|
||||
#: frontend/src/pages/JobCreation.vue:8 frontend/src/pages/LessonForm.vue:10
|
||||
#: frontend/src/pages/QuizForm.vue:34 frontend/src/pages/QuizSubmission.vue:14
|
||||
#: frontend/src/pages/JobCreation.vue:8 frontend/src/pages/LessonForm.vue:14
|
||||
#: frontend/src/pages/ProgramForm.vue:7 frontend/src/pages/QuizForm.vue:34
|
||||
#: frontend/src/pages/QuizSubmission.vue:14
|
||||
#: lms/public/js/common_functions.js:405
|
||||
msgid "Save"
|
||||
msgstr "Speichern"
|
||||
@@ -4334,6 +4505,10 @@ msgstr ""
|
||||
msgid "Skip"
|
||||
msgstr "Überspringen"
|
||||
|
||||
#: frontend/src/components/OnboardingBanner.vue:3
|
||||
msgid "Skip Onboarding"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/course_evaluator/course_evaluator.py:57
|
||||
msgid "Slot Times are overlapping for some schedules."
|
||||
msgstr ""
|
||||
@@ -4507,7 +4682,7 @@ msgstr ""
|
||||
msgid "Student Reviews"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:47
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:48
|
||||
msgid "Student {0} has already been added to this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -4575,14 +4750,17 @@ msgstr ""
|
||||
#: frontend/src/components/CourseCardOverlay.vue:161
|
||||
#: frontend/src/components/Modals/AnnouncementModal.vue:99
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:73
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:148
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:193
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:153
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:198
|
||||
#: frontend/src/components/Modals/Event.vue:255
|
||||
#: frontend/src/components/Modals/Event.vue:310
|
||||
#: frontend/src/components/Modals/Question.vue:261
|
||||
#: frontend/src/components/Modals/Question.vue:312
|
||||
#: frontend/src/pages/CourseForm.vue:457 frontend/src/pages/QuizForm.vue:342
|
||||
#: frontend/src/pages/QuizForm.vue:361 frontend/src/pages/QuizForm.vue:430
|
||||
#: frontend/src/pages/CourseForm.vue:460 frontend/src/pages/ProgramForm.vue:226
|
||||
#: frontend/src/pages/ProgramForm.vue:248
|
||||
#: frontend/src/pages/ProgramForm.vue:269
|
||||
#: frontend/src/pages/ProgramForm.vue:295 frontend/src/pages/QuizForm.vue:343
|
||||
#: frontend/src/pages/QuizForm.vue:362 frontend/src/pages/QuizForm.vue:431
|
||||
msgid "Success"
|
||||
msgstr "Erfolg"
|
||||
|
||||
@@ -4637,6 +4815,7 @@ msgstr "Sonntag"
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
|
||||
#: lms/lms/doctype/lms_payment/lms_payment.json
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
#: lms/lms/doctype/lms_question/lms_question.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
@@ -4737,11 +4916,15 @@ msgstr ""
|
||||
msgid "There are no chapters in this course. Create and manage chapters from here."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:150
|
||||
#: frontend/src/pages/Courses.vue:151
|
||||
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:141
|
||||
#: frontend/src/pages/Programs.vue:86
|
||||
msgid "There are no programs available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:146
|
||||
msgid "There are no seats available in this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -4772,11 +4955,11 @@ msgstr "Dieses Zertifikat läuft nicht ab"
|
||||
msgid "This course has:"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1582
|
||||
#: lms/lms/utils.py:1585
|
||||
msgid "This course is free."
|
||||
msgstr "Dieser Kurs ist kostenlos."
|
||||
|
||||
#: frontend/src/pages/SCORMChapter.vue:198
|
||||
#: frontend/src/pages/SCORMChapter.vue:197
|
||||
msgid "This is a chapter in the course {0}"
|
||||
msgstr ""
|
||||
|
||||
@@ -4868,6 +5051,7 @@ msgstr ""
|
||||
#. Label of the title (Data) field in DocType 'LMS Course'
|
||||
#. Label of the title (Data) field in DocType 'LMS Exercise'
|
||||
#. Label of the title (Data) field in DocType 'LMS Live Class'
|
||||
#. Label of the title (Data) field in DocType 'LMS Program'
|
||||
#. Label of the title (Data) field in DocType 'LMS Quiz'
|
||||
#. Label of the title (Data) field in DocType 'LMS Sidebar Item'
|
||||
#. Label of the title (Data) field in DocType 'LMS Timetable Template'
|
||||
@@ -4875,7 +5059,8 @@ msgstr ""
|
||||
#: frontend/src/components/Modals/DiscussionModal.vue:18
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:23
|
||||
#: frontend/src/pages/BatchForm.vue:20 frontend/src/pages/CourseForm.vue:32
|
||||
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/QuizForm.vue:48
|
||||
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/ProgramForm.vue:11
|
||||
#: frontend/src/pages/Programs.vue:107 frontend/src/pages/QuizForm.vue:48
|
||||
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
|
||||
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
|
||||
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json
|
||||
@@ -4888,6 +5073,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_exercise/lms_exercise.json
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_sidebar_item/lms_sidebar_item.json
|
||||
#: lms/lms/doctype/lms_timetable_template/lms_timetable_template.json
|
||||
@@ -4896,7 +5082,7 @@ msgstr ""
|
||||
msgid "Title"
|
||||
msgstr "Bezeichnung"
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:169
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:174
|
||||
msgid "Title is required"
|
||||
msgstr ""
|
||||
|
||||
@@ -4911,7 +5097,7 @@ msgstr "An"
|
||||
msgid "To Date"
|
||||
msgstr "Bis-Datum"
|
||||
|
||||
#: lms/lms/utils.py:1593
|
||||
#: lms/lms/utils.py:1596
|
||||
msgid "To join this batch, please contact the Administrator."
|
||||
msgstr "Um dieser Gruppe beizutreten, wenden Sie sich bitte an den Administrator."
|
||||
|
||||
@@ -4975,7 +5161,7 @@ msgstr "Twitter"
|
||||
msgid "Type"
|
||||
msgstr "Typ"
|
||||
|
||||
#: frontend/src/components/Quiz.vue:580
|
||||
#: frontend/src/components/Quiz.vue:583
|
||||
msgid "Type your answer"
|
||||
msgstr ""
|
||||
|
||||
@@ -5259,7 +5445,7 @@ msgstr ""
|
||||
msgid "You are not enrolled in this course. Please enroll to access this lesson."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:134
|
||||
#: frontend/src/pages/Courses.vue:135
|
||||
msgid "You can add chapters and lessons to it."
|
||||
msgstr ""
|
||||
|
||||
@@ -5431,6 +5617,10 @@ msgstr "ausgestellt am"
|
||||
msgid "jane@example.com"
|
||||
msgstr "beate@beispiel.de"
|
||||
|
||||
#: frontend/src/pages/Programs.vue:32
|
||||
msgid "members"
|
||||
msgstr "mitglieder"
|
||||
|
||||
#: lms/templates/quiz/quiz.html:106
|
||||
msgid "of"
|
||||
msgstr "von"
|
||||
@@ -5443,7 +5633,7 @@ msgstr "von"
|
||||
msgid "posted by"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:389
|
||||
#: frontend/src/pages/QuizForm.vue:390
|
||||
msgid "question_detail"
|
||||
msgstr ""
|
||||
|
||||
@@ -5475,7 +5665,7 @@ msgstr "{0} hat eine Stellenanzeige aus folgendem Grund gemeldet."
|
||||
msgid "{0} has submitted the assignment {1}"
|
||||
msgstr "{0} hat die Aufgabe {1} eingereicht"
|
||||
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.py:53
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.py:57
|
||||
msgid "{0} is already a Student of {1} course through {2} batch"
|
||||
msgstr ""
|
||||
|
||||
@@ -5483,7 +5673,7 @@ msgstr ""
|
||||
msgid "{0} is already a mentor for course {1}"
|
||||
msgstr "{0} ist bereits Mentor für Kurs {1}"
|
||||
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.py:26
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.py:30
|
||||
msgid "{0} is already a {1} of the course {2}"
|
||||
msgstr ""
|
||||
|
||||
|
||||
340
lms/locale/eo.po
340
lms/locale/eo.po
@@ -2,8 +2,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: frappe\n"
|
||||
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
||||
"POT-Creation-Date: 2024-11-15 16:04+0000\n"
|
||||
"PO-Revision-Date: 2024-11-18 17:32\n"
|
||||
"POT-Creation-Date: 2024-11-22 16:05+0000\n"
|
||||
"PO-Revision-Date: 2024-11-25 19:29\n"
|
||||
"Last-Translator: jannat@frappe.io\n"
|
||||
"Language-Team: Esperanto\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -22,6 +22,11 @@ msgstr ""
|
||||
msgid " Please evaluate and grade it."
|
||||
msgstr "crwdns149182:0crwdne149182:0"
|
||||
|
||||
#: frontend/src/pages/Programs.vue:41
|
||||
#, python-format
|
||||
msgid "% completed"
|
||||
msgstr "crwdns151724:0crwdne151724:0"
|
||||
|
||||
#. Paragraph text in the LMS Workspace
|
||||
#: lms/lms/workspace/lms/lms.json
|
||||
msgid "<a href=\"/app/lms-settings/LMS%20Settings\">LMS Settings</a>"
|
||||
@@ -99,7 +104,8 @@ msgstr "crwdns149210:0crwdne149210:0"
|
||||
#: frontend/src/components/BatchStudents.vue:6
|
||||
#: frontend/src/components/Categories.vue:26
|
||||
#: frontend/src/components/LiveClass.vue:11
|
||||
#: frontend/src/components/Members.vue:43
|
||||
#: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30
|
||||
#: frontend/src/pages/ProgramForm.vue:91 frontend/src/pages/ProgramForm.vue:136
|
||||
msgid "Add"
|
||||
msgstr "crwdns149212:0crwdne149212:0"
|
||||
|
||||
@@ -129,12 +135,20 @@ msgstr "crwdns149222:0crwdne149222:0"
|
||||
msgid "Add a Student"
|
||||
msgstr "crwdns149224:0crwdne149224:0"
|
||||
|
||||
#: frontend/src/components/OnboardingBanner.vue:50
|
||||
msgid "Add a chapter"
|
||||
msgstr "crwdns151726:0crwdne151726:0"
|
||||
|
||||
#: frontend/src/components/Modals/BatchCourseModal.vue:5
|
||||
msgid "Add a course"
|
||||
msgstr "crwdns149226:0crwdne149226:0"
|
||||
|
||||
#: frontend/src/components/OnboardingBanner.vue:73
|
||||
msgid "Add a lesson"
|
||||
msgstr "crwdns151728:0crwdne151728:0"
|
||||
|
||||
#: frontend/src/components/Modals/Question.vue:141
|
||||
#: frontend/src/pages/QuizForm.vue:181
|
||||
#: frontend/src/pages/QuizForm.vue:182
|
||||
msgid "Add a new question"
|
||||
msgstr "crwdns149228:0crwdne149228:0"
|
||||
|
||||
@@ -150,7 +164,7 @@ msgstr "crwdns149232:0crwdne149232:0"
|
||||
msgid "Add an existing question"
|
||||
msgstr "crwdns149234:0crwdne149234:0"
|
||||
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:60
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:66
|
||||
msgid "Add at least one possible answer for this question: {0}"
|
||||
msgstr "crwdns149236:0{0}crwdne149236:0"
|
||||
|
||||
@@ -253,6 +267,14 @@ msgstr "crwdns149272:0crwdne149272:0"
|
||||
msgid "Amount Field"
|
||||
msgstr "crwdns149274:0crwdne149274:0"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:70
|
||||
msgid "Amount and currency are required for paid batches."
|
||||
msgstr "crwdns151730:0crwdne151730:0"
|
||||
|
||||
#: lms/lms/doctype/lms_course/lms_course.py:57
|
||||
msgid "Amount and currency are required for paid courses."
|
||||
msgstr "crwdns151732:0crwdne151732:0"
|
||||
|
||||
#. Label of the amount_with_gst (Currency) field in DocType 'LMS Payment'
|
||||
#: lms/lms/doctype/lms_payment/lms_payment.json
|
||||
msgid "Amount with GST"
|
||||
@@ -346,7 +368,7 @@ msgstr "crwdns149304:0crwdne149304:0"
|
||||
msgid "Assessment added successfully"
|
||||
msgstr "crwdns149306:0crwdne149306:0"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:75
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:80
|
||||
msgid "Assessment {0} has already been added to this batch."
|
||||
msgstr "crwdns149308:0{0}crwdne149308:0"
|
||||
|
||||
@@ -397,7 +419,7 @@ msgstr "crwdns149322:0{0}crwdnd149322:0{1}crwdne149322:0"
|
||||
msgid "Assignment will appear at the bottom of the lesson."
|
||||
msgstr "crwdns149324:0crwdne149324:0"
|
||||
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:42
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:43
|
||||
msgid "At least one option must be correct for this question."
|
||||
msgstr "crwdns149326:0crwdne149326:0"
|
||||
|
||||
@@ -540,7 +562,7 @@ msgstr "crwdns149372:0crwdne149372:0"
|
||||
msgid "Batch Updated"
|
||||
msgstr "crwdns149374:0crwdne149374:0"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:40
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:41
|
||||
msgid "Batch end date cannot be before the batch start date"
|
||||
msgstr "crwdns149376:0crwdne149376:0"
|
||||
|
||||
@@ -727,11 +749,11 @@ msgstr "crwdns149442:0crwdne149442:0"
|
||||
msgid "Chapter Reference"
|
||||
msgstr "crwdns149444:0crwdne149444:0"
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:149
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:154
|
||||
msgid "Chapter added successfully"
|
||||
msgstr "crwdns151620:0crwdne151620:0"
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:193
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:198
|
||||
msgid "Chapter updated successfully"
|
||||
msgstr "crwdns151622:0crwdne151622:0"
|
||||
|
||||
@@ -764,7 +786,7 @@ msgstr "crwdns149454:0crwdne149454:0"
|
||||
msgid "Choices"
|
||||
msgstr "crwdns149456:0crwdne149456:0"
|
||||
|
||||
#: frontend/src/components/Quiz.vue:578 lms/templates/quiz/quiz.html:53
|
||||
#: frontend/src/components/Quiz.vue:581 lms/templates/quiz/quiz.html:53
|
||||
msgid "Choose all answers that apply"
|
||||
msgstr "crwdns149458:0crwdne149458:0"
|
||||
|
||||
@@ -772,7 +794,7 @@ msgstr "crwdns149458:0crwdne149458:0"
|
||||
msgid "Choose an icon"
|
||||
msgstr "crwdns149460:0crwdne149460:0"
|
||||
|
||||
#: frontend/src/components/Quiz.vue:579 lms/templates/quiz/quiz.html:53
|
||||
#: frontend/src/components/Quiz.vue:582 lms/templates/quiz/quiz.html:53
|
||||
msgid "Choose one answer"
|
||||
msgstr "crwdns149462:0crwdne149462:0"
|
||||
|
||||
@@ -988,7 +1010,7 @@ msgid "Contact the Administrator to enroll for this course."
|
||||
msgstr "crwdns149536:0crwdne149536:0"
|
||||
|
||||
#. Label of the content (Text) field in DocType 'Course Lesson'
|
||||
#: frontend/src/pages/LessonForm.vue:58
|
||||
#: frontend/src/pages/LessonForm.vue:62
|
||||
#: lms/lms/doctype/course_lesson/course_lesson.json
|
||||
msgid "Content"
|
||||
msgstr "crwdns149538:0crwdne149538:0"
|
||||
@@ -1057,6 +1079,7 @@ msgstr "crwdns149554:0crwdne149554:0"
|
||||
#. Label of the course (Link) field in DocType 'LMS Enrollment'
|
||||
#. Label of the course (Link) field in DocType 'LMS Exercise'
|
||||
#. Label of the course (Link) field in DocType 'LMS Mentor Request'
|
||||
#. Label of the course (Link) field in DocType 'LMS Program Course'
|
||||
#. Label of the course (Link) field in DocType 'LMS Quiz'
|
||||
#. Label of the course (Link) field in DocType 'LMS Quiz Submission'
|
||||
#. Label of the course (Link) field in DocType 'Related Courses'
|
||||
@@ -1086,6 +1109,7 @@ msgstr "crwdns149554:0crwdne149554:0"
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
#: lms/lms/doctype/lms_exercise/lms_exercise.json
|
||||
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
|
||||
#: lms/lms/doctype/lms_program_course/lms_program_course.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/lms/doctype/related_courses/related_courses.json
|
||||
@@ -1114,6 +1138,7 @@ msgstr "crwdns149562:0crwdne149562:0"
|
||||
#. Name of a role
|
||||
#: frontend/src/pages/ProfileRoles.vue:16
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
#: lms/lms/doctype/lms_question/lms_question.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
msgid "Course Creator"
|
||||
@@ -1184,22 +1209,33 @@ msgstr "crwdns149588:0crwdne149588:0"
|
||||
#. Label of the course_title (Data) field in DocType 'Course Chapter'
|
||||
#. Label of the course_title (Data) field in DocType 'LMS Certificate'
|
||||
#. Label of the course_title (Data) field in DocType 'LMS Certificate Request'
|
||||
#. Label of the course_title (Data) field in DocType 'LMS Program Course'
|
||||
#: lms/lms/doctype/batch_course/batch_course.json
|
||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
#: lms/lms/doctype/lms_program_course/lms_program_course.json
|
||||
msgid "Course Title"
|
||||
msgstr "crwdns149590:0crwdne149590:0"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:340
|
||||
#: frontend/src/pages/ProgramForm.vue:226
|
||||
msgid "Course added to program"
|
||||
msgstr "crwdns151734:0crwdne151734:0"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:345
|
||||
msgid "Course already added to the batch."
|
||||
msgstr "crwdns149592:0crwdne149592:0"
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:457
|
||||
#: frontend/src/pages/CourseForm.vue:460
|
||||
msgid "Course deleted successfully"
|
||||
msgstr "crwdns151586:0crwdne151586:0"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:58
|
||||
#: frontend/src/pages/ProgramForm.vue:295
|
||||
msgid "Course moved successfully"
|
||||
msgstr "crwdns151736:0crwdne151736:0"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:59
|
||||
#: lms/lms/doctype/lms_program/lms_program.py:19
|
||||
msgid "Course {0} has already been added to this batch."
|
||||
msgstr "crwdns149596:0{0}crwdne149596:0"
|
||||
|
||||
@@ -1234,6 +1270,7 @@ msgid "Cover Image"
|
||||
msgstr "crwdns149606:0crwdne149606:0"
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:9
|
||||
#: frontend/src/pages/Programs.vue:99
|
||||
msgid "Create"
|
||||
msgstr "crwdns151468:0crwdne151468:0"
|
||||
|
||||
@@ -1249,7 +1286,7 @@ msgstr "crwdns149610:0crwdne149610:0"
|
||||
msgid "Create a Batch"
|
||||
msgstr "crwdns151470:0crwdne151470:0"
|
||||
|
||||
#: frontend/src/pages/Courses.vue:131 lms/templates/onboarding_header.html:19
|
||||
#: frontend/src/pages/Courses.vue:132 lms/templates/onboarding_header.html:19
|
||||
msgid "Create a Course"
|
||||
msgstr "crwdns149612:0crwdne149612:0"
|
||||
|
||||
@@ -1257,6 +1294,10 @@ msgstr "crwdns149612:0crwdne149612:0"
|
||||
msgid "Create a Live Class"
|
||||
msgstr "crwdns149614:0crwdne149614:0"
|
||||
|
||||
#: frontend/src/components/OnboardingBanner.vue:27
|
||||
msgid "Create a course"
|
||||
msgstr "crwdns151738:0crwdne151738:0"
|
||||
|
||||
#: frontend/src/components/Modals/Question.vue:31
|
||||
msgid "Create a new question"
|
||||
msgstr "crwdns149616:0crwdne149616:0"
|
||||
@@ -1360,7 +1401,7 @@ msgstr "crwdns149644:0crwdne149644:0"
|
||||
|
||||
#: frontend/src/components/CourseOutline.vue:235
|
||||
#: frontend/src/components/CourseOutline.vue:293
|
||||
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:470
|
||||
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:473
|
||||
msgid "Delete"
|
||||
msgstr "crwdns149646:0crwdne149646:0"
|
||||
|
||||
@@ -1368,7 +1409,7 @@ msgstr "crwdns149646:0crwdne149646:0"
|
||||
msgid "Delete Chapter"
|
||||
msgstr "crwdns151626:0crwdne151626:0"
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:464
|
||||
#: frontend/src/pages/CourseForm.vue:467
|
||||
msgid "Delete Course"
|
||||
msgstr "crwdns151588:0crwdne151588:0"
|
||||
|
||||
@@ -1380,7 +1421,7 @@ msgstr "crwdns151628:0crwdne151628:0"
|
||||
msgid "Delete this lesson?"
|
||||
msgstr "crwdns151630:0crwdne151630:0"
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:465
|
||||
#: frontend/src/pages/CourseForm.vue:468
|
||||
msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?"
|
||||
msgstr "crwdns151590:0crwdne151590:0"
|
||||
|
||||
@@ -1470,7 +1511,7 @@ msgstr "crwdns149666:0crwdne149666:0"
|
||||
msgid "Dream Companies"
|
||||
msgstr "crwdns149668:0crwdne149668:0"
|
||||
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:32
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:33
|
||||
msgid "Duplicate options found for this question."
|
||||
msgstr "crwdns149670:0crwdne149670:0"
|
||||
|
||||
@@ -1508,7 +1549,7 @@ msgstr "crwdns149680:0crwdne149680:0"
|
||||
#: frontend/src/components/CourseCardOverlay.vue:86
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:9
|
||||
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:65
|
||||
#: frontend/src/pages/Profile.vue:32
|
||||
#: frontend/src/pages/Profile.vue:32 frontend/src/pages/Programs.vue:55
|
||||
msgid "Edit"
|
||||
msgstr "crwdns149682:0crwdne149682:0"
|
||||
|
||||
@@ -1521,7 +1562,7 @@ msgstr "crwdns149684:0crwdne149684:0"
|
||||
msgid "Edit Profile"
|
||||
msgstr "crwdns149686:0crwdne149686:0"
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:180
|
||||
#: frontend/src/pages/QuizForm.vue:181
|
||||
msgid "Edit the question"
|
||||
msgstr "crwdns149688:0crwdne149688:0"
|
||||
|
||||
@@ -1582,6 +1623,15 @@ msgstr "crwdns149710:0crwdne149710:0"
|
||||
msgid "Enable Google API in Google Settings to send calendar invites for evaluations."
|
||||
msgstr "crwdns149712:0crwdne149712:0"
|
||||
|
||||
#. Label of the enable_learning_paths (Check) field in DocType 'LMS Settings'
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Enable Learning Paths"
|
||||
msgstr "crwdns151740:0crwdne151740:0"
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:24
|
||||
msgid "Enable this only if you want to upload a SCORM package as a chapter."
|
||||
msgstr "crwdns151742:0crwdne151742:0"
|
||||
|
||||
#. Label of the enabled (Check) field in DocType 'LMS Badge'
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "Enabled"
|
||||
@@ -1634,7 +1684,7 @@ msgstr "crwdns149724:0crwdne149724:0"
|
||||
msgid "Enrolled successfully"
|
||||
msgstr "crwdns149726:0crwdne149726:0"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:98
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:103
|
||||
msgid "Enrollment Confirmation for the Next Training Batch"
|
||||
msgstr "crwdns149728:0crwdne149728:0"
|
||||
|
||||
@@ -1643,7 +1693,7 @@ msgstr "crwdns149728:0crwdne149728:0"
|
||||
msgid "Enrollment Count"
|
||||
msgstr "crwdns149730:0crwdne149730:0"
|
||||
|
||||
#: lms/lms/utils.py:1702
|
||||
#: lms/lms/utils.py:1705
|
||||
msgid "Enrollment Failed"
|
||||
msgstr "crwdns149732:0crwdne149732:0"
|
||||
|
||||
@@ -1672,14 +1722,14 @@ msgid "Enter the correct answer"
|
||||
msgstr "crwdns149742:0crwdne149742:0"
|
||||
|
||||
#: frontend/src/components/Modals/AnnouncementModal.vue:105
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:154
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:161
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:197
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:159
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:166
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:202
|
||||
#: frontend/src/components/Modals/Question.vue:246
|
||||
#: frontend/src/components/Modals/Question.vue:266
|
||||
#: frontend/src/components/Modals/Question.vue:323
|
||||
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:349
|
||||
#: frontend/src/pages/QuizForm.vue:364
|
||||
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350
|
||||
#: frontend/src/pages/QuizForm.vue:365
|
||||
#: frontend/src/pages/QuizSubmission.vue:117
|
||||
msgid "Error"
|
||||
msgstr "crwdns149744:0crwdne149744:0"
|
||||
@@ -1708,7 +1758,7 @@ msgstr "crwdns149750:0crwdne149750:0"
|
||||
msgid "Evaluation Request"
|
||||
msgstr "crwdns149752:0crwdne149752:0"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:82
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:87
|
||||
msgid "Evaluation end date cannot be less than the batch end date."
|
||||
msgstr "crwdns149754:0crwdne149754:0"
|
||||
|
||||
@@ -1874,7 +1924,7 @@ msgstr "crwdns149802:0crwdne149802:0"
|
||||
msgid "Flexible Time"
|
||||
msgstr "crwdns149804:0crwdne149804:0"
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:462
|
||||
#: frontend/src/pages/QuizForm.vue:463
|
||||
msgid "Form to create and edit quizzes"
|
||||
msgstr "crwdns149806:0crwdne149806:0"
|
||||
|
||||
@@ -1922,7 +1972,9 @@ msgid "From Date"
|
||||
msgstr "crwdns149822:0crwdne149822:0"
|
||||
|
||||
#. Label of the full_name (Data) field in DocType 'Invite Request'
|
||||
#. Label of the full_name (Data) field in DocType 'LMS Program Member'
|
||||
#: lms/lms/doctype/invite_request/invite_request.json
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
#: lms/templates/signup-form.html:5
|
||||
msgid "Full Name"
|
||||
msgstr "crwdns149824:0crwdne149824:0"
|
||||
@@ -1954,6 +2006,11 @@ msgstr "crwdns149832:0crwdne149832:0"
|
||||
msgid "GSTIN"
|
||||
msgstr "crwdns149834:0crwdne149834:0"
|
||||
|
||||
#. Label of the general_tab (Tab Break) field in DocType 'LMS Settings'
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "General"
|
||||
msgstr "crwdns151744:0crwdne151744:0"
|
||||
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:18
|
||||
msgid "Generate Google Meet Link"
|
||||
msgstr "crwdns149836:0crwdne149836:0"
|
||||
@@ -2085,7 +2142,7 @@ msgstr "crwdns149892:0crwdne149892:0"
|
||||
msgid "I am unavailable"
|
||||
msgstr "crwdns149894:0crwdne149894:0"
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:383
|
||||
#: frontend/src/pages/QuizForm.vue:384
|
||||
msgid "ID"
|
||||
msgstr "crwdns149896:0crwdne149896:0"
|
||||
|
||||
@@ -2226,7 +2283,7 @@ msgstr "crwdns149938:0crwdne149938:0"
|
||||
|
||||
#. Label of the instructor_notes (Markdown Editor) field in DocType 'Course
|
||||
#. Lesson'
|
||||
#: frontend/src/pages/Lesson.vue:128 frontend/src/pages/LessonForm.vue:38
|
||||
#: frontend/src/pages/Lesson.vue:128 frontend/src/pages/LessonForm.vue:42
|
||||
#: lms/lms/doctype/course_lesson/course_lesson.json
|
||||
msgid "Instructor Notes"
|
||||
msgstr "crwdns149940:0crwdne149940:0"
|
||||
@@ -2302,7 +2359,6 @@ msgstr "crwdns149966:0crwdne149966:0"
|
||||
|
||||
#. Label of the is_scorm_package (Check) field in DocType 'Course Chapter'
|
||||
#. Label of the is_scorm_package (Check) field in DocType 'Course Lesson'
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:26
|
||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||
#: lms/lms/doctype/course_lesson/course_lesson.json
|
||||
msgid "Is SCORM Package"
|
||||
@@ -2332,6 +2388,10 @@ msgstr "crwdns149972:0crwdne149972:0"
|
||||
msgid "Items in Sidebar"
|
||||
msgstr "crwdns149974:0crwdne149974:0"
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:269
|
||||
msgid "Items removed successfully"
|
||||
msgstr "crwdns151746:0crwdne151746:0"
|
||||
|
||||
#: lms/templates/signup-form.html:6
|
||||
msgid "Jane Doe"
|
||||
msgstr "crwdns149976:0crwdne149976:0"
|
||||
@@ -2531,6 +2591,21 @@ msgstr "crwdns150048:0crwdne150048:0"
|
||||
msgid "LMS Payment"
|
||||
msgstr "crwdns150050:0crwdne150050:0"
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
msgid "LMS Program"
|
||||
msgstr "crwdns151748:0crwdne151748:0"
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_program_course/lms_program_course.json
|
||||
msgid "LMS Program Course"
|
||||
msgstr "crwdns151750:0crwdne151750:0"
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
msgid "LMS Program Member"
|
||||
msgstr "crwdns151752:0crwdne151752:0"
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_question/lms_question.json
|
||||
msgid "LMS Question"
|
||||
@@ -2590,6 +2665,7 @@ msgstr "crwdns150066:0crwdne150066:0"
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
#: lms/lms/doctype/lms_source/lms_source.json
|
||||
#: lms/lms/doctype/user_skill/user_skill.json
|
||||
msgid "LMS Student"
|
||||
@@ -2812,7 +2888,7 @@ msgstr "crwdns150142:0crwdne150142:0"
|
||||
#. Label of the marks (Int) field in DocType 'LMS Quiz Result'
|
||||
#: frontend/src/components/Modals/Question.vue:50
|
||||
#: frontend/src/components/Modals/Question.vue:96
|
||||
#: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:393
|
||||
#: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:394
|
||||
#: frontend/src/pages/QuizSubmission.vue:52
|
||||
#: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json
|
||||
#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json
|
||||
@@ -2867,6 +2943,7 @@ msgstr "crwdns150158:0crwdne150158:0"
|
||||
#. Option for the 'Role' (Select) field in DocType 'LMS Enrollment'
|
||||
#. Label of the member (Link) field in DocType 'LMS Mentor Request'
|
||||
#. 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 Quiz Submission'
|
||||
#: frontend/src/pages/QuizSubmission.vue:27
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:77
|
||||
@@ -2881,6 +2958,7 @@ msgstr "crwdns150158:0crwdne150158:0"
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
|
||||
#: lms/lms/doctype/lms_payment/lms_payment.json
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/lms/report/course_progress_summary/course_progress_summary.py:64
|
||||
msgid "Member"
|
||||
@@ -2930,6 +3008,14 @@ msgstr "crwdns150168:0crwdne150168:0"
|
||||
msgid "Member Type"
|
||||
msgstr "crwdns150170:0crwdne150170:0"
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:248
|
||||
msgid "Member added to program"
|
||||
msgstr "crwdns151754:0crwdne151754:0"
|
||||
|
||||
#: lms/lms/doctype/lms_program/lms_program.py:29
|
||||
msgid "Member {0} has already been added to this batch."
|
||||
msgstr "crwdns151756:0{0}crwdne151756:0"
|
||||
|
||||
#. Group in LMS Batch Old's connections
|
||||
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
||||
msgid "Members"
|
||||
@@ -3002,6 +3088,10 @@ msgstr "crwdns150192:0crwdne150192:0"
|
||||
msgid "Milestones"
|
||||
msgstr "crwdns150194:0crwdne150194:0"
|
||||
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:48
|
||||
msgid "Minimum two options are required for multiple choice questions."
|
||||
msgstr "crwdns151758:0crwdne151758:0"
|
||||
|
||||
#. Name of a role
|
||||
#: frontend/src/pages/ProfileRoles.vue:10
|
||||
#: lms/lms/doctype/course_evaluator/course_evaluator.json
|
||||
@@ -3013,6 +3103,7 @@ msgstr "crwdns150194:0crwdne150194:0"
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
#: lms/lms/doctype/lms_question/lms_question.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_source/lms_source.json
|
||||
@@ -3057,8 +3148,8 @@ msgid "My calendar"
|
||||
msgstr "crwdns150212:0crwdne150212:0"
|
||||
|
||||
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
||||
#: frontend/src/pages/Batches.vue:30 frontend/src/pages/Courses.vue:44
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
#: frontend/src/pages/Batches.vue:30 frontend/src/pages/Courses.vue:45
|
||||
#: frontend/src/pages/Programs.vue:14 lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "New"
|
||||
msgstr "crwdns150214:0crwdne150214:0"
|
||||
|
||||
@@ -3082,11 +3173,23 @@ msgstr "crwdns150222:0crwdne150222:0"
|
||||
msgid "New Job Applicant"
|
||||
msgstr "crwdns150224:0crwdne150224:0"
|
||||
|
||||
#: frontend/src/pages/Programs.vue:96
|
||||
msgid "New Program"
|
||||
msgstr "crwdns151760:0crwdne151760:0"
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:132
|
||||
msgid "New Program Course"
|
||||
msgstr "crwdns151762:0crwdne151762:0"
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:133
|
||||
msgid "New Program Member"
|
||||
msgstr "crwdns151764:0crwdne151764:0"
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:122
|
||||
msgid "New Question"
|
||||
msgstr "crwdns150226:0crwdne150226:0"
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:453 frontend/src/pages/QuizForm.vue:461
|
||||
#: frontend/src/pages/QuizForm.vue:454 frontend/src/pages/QuizForm.vue:462
|
||||
#: frontend/src/pages/Quizzes.vue:18
|
||||
msgid "New Quiz"
|
||||
msgstr "crwdns150228:0crwdne150228:0"
|
||||
@@ -3149,10 +3252,14 @@ msgstr "crwdns150252:0crwdne150252:0"
|
||||
msgid "No courses created"
|
||||
msgstr "crwdns150254:0crwdne150254:0"
|
||||
|
||||
#: frontend/src/pages/Courses.vue:146
|
||||
#: frontend/src/pages/Courses.vue:147
|
||||
msgid "No courses found"
|
||||
msgstr "crwdns151480:0crwdne151480:0"
|
||||
|
||||
#: frontend/src/pages/Programs.vue:72
|
||||
msgid "No courses in this program"
|
||||
msgstr "crwdns151766:0crwdne151766:0"
|
||||
|
||||
#: lms/templates/courses_under_review.html:14
|
||||
msgid "No courses under review"
|
||||
msgstr "crwdns150256:0crwdne150256:0"
|
||||
@@ -3169,6 +3276,10 @@ msgstr "crwdns150260:0crwdne150260:0"
|
||||
msgid "No live classes scheduled"
|
||||
msgstr "crwdns150262:0crwdne150262:0"
|
||||
|
||||
#: frontend/src/pages/Programs.vue:82
|
||||
msgid "No programs found"
|
||||
msgstr "crwdns151768:0crwdne151768:0"
|
||||
|
||||
#: frontend/src/pages/Quizzes.vue:56
|
||||
msgid "No quizzes found"
|
||||
msgstr "crwdns151592:0crwdne151592:0"
|
||||
@@ -3189,7 +3300,7 @@ msgstr "crwdns150268:0{0}crwdne150268:0"
|
||||
msgid "No {0} batches"
|
||||
msgstr "crwdns151482:0{0}crwdne151482:0"
|
||||
|
||||
#: frontend/src/pages/Courses.vue:106
|
||||
#: frontend/src/pages/Courses.vue:107
|
||||
msgid "No {0} courses"
|
||||
msgstr "crwdns151484:0{0}crwdne151484:0"
|
||||
|
||||
@@ -3277,15 +3388,19 @@ msgstr "crwdns150304:0crwdne150304:0"
|
||||
msgid "Online"
|
||||
msgstr "crwdns150306:0crwdne150306:0"
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:156
|
||||
msgid "Only courses for which self learning is disabled can be added to program."
|
||||
msgstr "crwdns151770:0crwdne151770:0"
|
||||
|
||||
#: lms/templates/assignment.html:6
|
||||
msgid "Only files of type {0} will be accepted."
|
||||
msgstr "crwdns150308:0{0}crwdne150308:0"
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:494 frontend/src/utils/index.js:518
|
||||
#: frontend/src/pages/CourseForm.vue:497 frontend/src/utils/index.js:518
|
||||
msgid "Only image file is allowed."
|
||||
msgstr "crwdns150310:0crwdne150310:0"
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:223
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:220
|
||||
msgid "Only zip files are allowed"
|
||||
msgstr "crwdns151642:0crwdne151642:0"
|
||||
|
||||
@@ -3561,7 +3676,11 @@ msgstr "crwdns150404:0crwdne150404:0"
|
||||
msgid "Please click on the following button to set your new password"
|
||||
msgstr "crwdns150406:0crwdne150406:0"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:251
|
||||
#: lms/lms/utils.py:1817 lms/lms/utils.py:1821
|
||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||
msgstr "crwdns151772:0crwdne151772:0"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:256
|
||||
msgid "Please enable Zoom Settings to use this feature."
|
||||
msgstr "crwdns150408:0crwdne150408:0"
|
||||
|
||||
@@ -3573,11 +3692,19 @@ msgstr "crwdns151644:0crwdne151644:0"
|
||||
msgid "Please ensure that you complete all the questions in {0} minutes."
|
||||
msgstr "crwdns150410:0{0}crwdne150410:0"
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:164
|
||||
msgid "Please enter a title."
|
||||
msgstr "crwdns151774:0crwdne151774:0"
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:38
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:98
|
||||
msgid "Please enter a valid URL."
|
||||
msgstr "crwdns150412:0crwdne150412:0"
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:176
|
||||
msgid "Please enter a valid time in the format HH:mm."
|
||||
msgstr "crwdns151776:0crwdne151776:0"
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:92
|
||||
msgid "Please enter the URL for assignment submission."
|
||||
msgstr "crwdns150414:0crwdne150414:0"
|
||||
@@ -3586,11 +3713,11 @@ msgstr "crwdns150414:0crwdne150414:0"
|
||||
msgid "Please enter your answer"
|
||||
msgstr "crwdns150416:0crwdne150416:0"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:65
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:66
|
||||
msgid "Please install the Payments app to create a paid batches."
|
||||
msgstr "crwdns150418:0crwdne150418:0"
|
||||
|
||||
#: lms/lms/doctype/lms_course/lms_course.py:52
|
||||
#: lms/lms/doctype/lms_course/lms_course.py:53
|
||||
msgid "Please install the Payments app to create a paid courses."
|
||||
msgstr "crwdns150420:0crwdne150420:0"
|
||||
|
||||
@@ -3615,11 +3742,31 @@ msgstr "crwdns150428:0crwdne150428:0"
|
||||
msgid "Please prepare well and be on time for the evaluations."
|
||||
msgstr "crwdns150430:0crwdne150430:0"
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:167
|
||||
msgid "Please select a date."
|
||||
msgstr "crwdns151778:0crwdne151778:0"
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:191
|
||||
msgid "Please select a duration."
|
||||
msgstr "crwdns151780:0crwdne151780:0"
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:188
|
||||
msgid "Please select a future date and time."
|
||||
msgstr "crwdns151782:0crwdne151782:0"
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:170
|
||||
msgid "Please select a time."
|
||||
msgstr "crwdns151784:0crwdne151784:0"
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:173
|
||||
msgid "Please select a timezone."
|
||||
msgstr "crwdns151786:0crwdne151786:0"
|
||||
|
||||
#: lms/templates/emails/job_report.html:6
|
||||
msgid "Please take appropriate action at {0}"
|
||||
msgstr "crwdns150432:0{0}crwdne150432:0"
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:172
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:177
|
||||
msgid "Please upload a SCORM package"
|
||||
msgstr "crwdns151646:0crwdne151646:0"
|
||||
|
||||
@@ -3756,8 +3903,30 @@ msgstr "crwdns150484:0crwdne150484:0"
|
||||
msgid "Profile Image"
|
||||
msgstr "crwdns150486:0crwdne150486:0"
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:154
|
||||
msgid "Program Course"
|
||||
msgstr "crwdns151788:0crwdne151788:0"
|
||||
|
||||
#. Label of the program_courses (Table) field in DocType 'LMS Program'
|
||||
#: frontend/src/pages/ProgramForm.vue:17
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
msgid "Program Courses"
|
||||
msgstr "crwdns151790:0crwdne151790:0"
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:169
|
||||
msgid "Program Member"
|
||||
msgstr "crwdns151792:0crwdne151792:0"
|
||||
|
||||
#. Label of the program_members (Table) field in DocType 'LMS Program'
|
||||
#: frontend/src/pages/ProgramForm.vue:78
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
msgid "Program Members"
|
||||
msgstr "crwdns151794:0crwdne151794:0"
|
||||
|
||||
#. Label of the progress (Float) field in DocType 'LMS Enrollment'
|
||||
#. Label of the progress (Int) field in DocType 'LMS Program Member'
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
msgid "Progress"
|
||||
msgstr "crwdns150488:0crwdne150488:0"
|
||||
|
||||
@@ -3807,7 +3976,7 @@ msgstr "crwdns150500:0crwdne150500:0"
|
||||
#. Label of the question (Text) field in DocType 'LMS Quiz Result'
|
||||
#: frontend/src/components/Modals/Question.vue:38
|
||||
#: frontend/src/pages/AssignmentSubmission.vue:26
|
||||
#: frontend/src/pages/QuizForm.vue:388
|
||||
#: frontend/src/pages/QuizForm.vue:389
|
||||
#: lms/lms/doctype/course_lesson/course_lesson.json
|
||||
#: lms/lms/doctype/lms_assignment/lms_assignment.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
@@ -3853,7 +4022,7 @@ msgstr "crwdns150516:0{0}crwdnd150516:0{1}crwdne150516:0"
|
||||
msgid "Questions"
|
||||
msgstr "crwdns150518:0crwdne150518:0"
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:430
|
||||
#: frontend/src/pages/QuizForm.vue:431
|
||||
msgid "Questions deleted successfully"
|
||||
msgstr "crwdns150520:0crwdne150520:0"
|
||||
|
||||
@@ -3891,7 +4060,7 @@ msgstr "crwdns150530:0crwdne150530:0"
|
||||
msgid "Quiz Title"
|
||||
msgstr "crwdns150532:0crwdne150532:0"
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:342
|
||||
#: frontend/src/pages/QuizForm.vue:343
|
||||
msgid "Quiz created successfully"
|
||||
msgstr "crwdns150534:0crwdne150534:0"
|
||||
|
||||
@@ -3899,7 +4068,7 @@ msgstr "crwdns150534:0crwdne150534:0"
|
||||
msgid "Quiz is not available to Guest users. Please login to continue."
|
||||
msgstr "crwdns150536:0crwdne150536:0"
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:361
|
||||
#: frontend/src/pages/QuizForm.vue:362
|
||||
msgid "Quiz updated successfully"
|
||||
msgstr "crwdns150538:0crwdne150538:0"
|
||||
|
||||
@@ -3908,7 +4077,7 @@ msgstr "crwdns150538:0crwdne150538:0"
|
||||
msgid "Quiz will appear at the bottom of the lesson."
|
||||
msgstr "crwdns150540:0crwdne150540:0"
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:441 frontend/src/pages/Quizzes.vue:136
|
||||
#: frontend/src/pages/QuizForm.vue:442 frontend/src/pages/Quizzes.vue:136
|
||||
#: frontend/src/pages/Quizzes.vue:146
|
||||
msgid "Quizzes"
|
||||
msgstr "crwdns150542:0crwdne150542:0"
|
||||
@@ -4065,19 +4234,19 @@ msgstr "crwdns150594:0crwdne150594:0"
|
||||
msgid "Route"
|
||||
msgstr "crwdns150596:0crwdne150596:0"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:194
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:199
|
||||
msgid "Row #{0} Date cannot be outside the batch duration."
|
||||
msgstr "crwdns150598:0#{0}crwdne150598:0"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:189
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:194
|
||||
msgid "Row #{0} End time cannot be outside the batch duration."
|
||||
msgstr "crwdns150600:0#{0}crwdne150600:0"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:171
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:176
|
||||
msgid "Row #{0} Start time cannot be greater than or equal to end time."
|
||||
msgstr "crwdns150602:0#{0}crwdne150602:0"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:180
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:185
|
||||
msgid "Row #{0} Start time cannot be outside the batch duration."
|
||||
msgstr "crwdns150604:0#{0}crwdne150604:0"
|
||||
|
||||
@@ -4095,6 +4264,7 @@ msgid "SCORM"
|
||||
msgstr "crwdns151648:0crwdne151648:0"
|
||||
|
||||
#. Label of the scorm_package (Link) field in DocType 'Course Chapter'
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:22
|
||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||
msgid "SCORM Package"
|
||||
msgstr "crwdns151650:0crwdne151650:0"
|
||||
@@ -4117,8 +4287,9 @@ msgstr "crwdns150610:0crwdne150610:0"
|
||||
#: frontend/src/components/QuizPlugin.vue:23
|
||||
#: frontend/src/pages/AssignmentSubmission.vue:7
|
||||
#: frontend/src/pages/BatchForm.vue:8 frontend/src/pages/CourseForm.vue:20
|
||||
#: frontend/src/pages/JobCreation.vue:8 frontend/src/pages/LessonForm.vue:10
|
||||
#: frontend/src/pages/QuizForm.vue:34 frontend/src/pages/QuizSubmission.vue:14
|
||||
#: frontend/src/pages/JobCreation.vue:8 frontend/src/pages/LessonForm.vue:14
|
||||
#: frontend/src/pages/ProgramForm.vue:7 frontend/src/pages/QuizForm.vue:34
|
||||
#: frontend/src/pages/QuizSubmission.vue:14
|
||||
#: lms/public/js/common_functions.js:405
|
||||
msgid "Save"
|
||||
msgstr "crwdns150612:0crwdne150612:0"
|
||||
@@ -4334,6 +4505,10 @@ msgstr "crwdns150694:0crwdne150694:0"
|
||||
msgid "Skip"
|
||||
msgstr "crwdns150696:0crwdne150696:0"
|
||||
|
||||
#: frontend/src/components/OnboardingBanner.vue:3
|
||||
msgid "Skip Onboarding"
|
||||
msgstr "crwdns151796:0crwdne151796:0"
|
||||
|
||||
#: lms/lms/doctype/course_evaluator/course_evaluator.py:57
|
||||
msgid "Slot Times are overlapping for some schedules."
|
||||
msgstr "crwdns150698:0crwdne150698:0"
|
||||
@@ -4507,7 +4682,7 @@ msgstr "crwdns150742:0crwdne150742:0"
|
||||
msgid "Student Reviews"
|
||||
msgstr "crwdns150744:0crwdne150744:0"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:47
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:48
|
||||
msgid "Student {0} has already been added to this batch."
|
||||
msgstr "crwdns150746:0{0}crwdne150746:0"
|
||||
|
||||
@@ -4575,14 +4750,17 @@ msgstr "crwdns150766:0{0}crwdne150766:0"
|
||||
#: frontend/src/components/CourseCardOverlay.vue:161
|
||||
#: frontend/src/components/Modals/AnnouncementModal.vue:99
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:73
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:148
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:193
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:153
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:198
|
||||
#: frontend/src/components/Modals/Event.vue:255
|
||||
#: frontend/src/components/Modals/Event.vue:310
|
||||
#: frontend/src/components/Modals/Question.vue:261
|
||||
#: frontend/src/components/Modals/Question.vue:312
|
||||
#: frontend/src/pages/CourseForm.vue:457 frontend/src/pages/QuizForm.vue:342
|
||||
#: frontend/src/pages/QuizForm.vue:361 frontend/src/pages/QuizForm.vue:430
|
||||
#: frontend/src/pages/CourseForm.vue:460 frontend/src/pages/ProgramForm.vue:226
|
||||
#: frontend/src/pages/ProgramForm.vue:248
|
||||
#: frontend/src/pages/ProgramForm.vue:269
|
||||
#: frontend/src/pages/ProgramForm.vue:295 frontend/src/pages/QuizForm.vue:343
|
||||
#: frontend/src/pages/QuizForm.vue:362 frontend/src/pages/QuizForm.vue:431
|
||||
msgid "Success"
|
||||
msgstr "crwdns150768:0crwdne150768:0"
|
||||
|
||||
@@ -4637,6 +4815,7 @@ msgstr "crwdns150772:0crwdne150772:0"
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
|
||||
#: lms/lms/doctype/lms_payment/lms_payment.json
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
#: lms/lms/doctype/lms_question/lms_question.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
@@ -4737,11 +4916,15 @@ msgstr "crwdns151494:0crwdne151494:0"
|
||||
msgid "There are no chapters in this course. Create and manage chapters from here."
|
||||
msgstr "crwdns150806:0crwdne150806:0"
|
||||
|
||||
#: frontend/src/pages/Courses.vue:150
|
||||
#: frontend/src/pages/Courses.vue:151
|
||||
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr "crwdns151496:0crwdne151496:0"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:141
|
||||
#: frontend/src/pages/Programs.vue:86
|
||||
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"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:146
|
||||
msgid "There are no seats available in this batch."
|
||||
msgstr "crwdns150808:0crwdne150808:0"
|
||||
|
||||
@@ -4772,11 +4955,11 @@ msgstr "crwdns150818:0crwdne150818:0"
|
||||
msgid "This course has:"
|
||||
msgstr "crwdns150820:0crwdne150820:0"
|
||||
|
||||
#: lms/lms/utils.py:1582
|
||||
#: lms/lms/utils.py:1585
|
||||
msgid "This course is free."
|
||||
msgstr "crwdns150822:0crwdne150822:0"
|
||||
|
||||
#: frontend/src/pages/SCORMChapter.vue:198
|
||||
#: frontend/src/pages/SCORMChapter.vue:197
|
||||
msgid "This is a chapter in the course {0}"
|
||||
msgstr "crwdns151654:0{0}crwdne151654:0"
|
||||
|
||||
@@ -4868,6 +5051,7 @@ msgstr "crwdns150848:0crwdne150848:0"
|
||||
#. Label of the title (Data) field in DocType 'LMS Course'
|
||||
#. Label of the title (Data) field in DocType 'LMS Exercise'
|
||||
#. Label of the title (Data) field in DocType 'LMS Live Class'
|
||||
#. Label of the title (Data) field in DocType 'LMS Program'
|
||||
#. Label of the title (Data) field in DocType 'LMS Quiz'
|
||||
#. Label of the title (Data) field in DocType 'LMS Sidebar Item'
|
||||
#. Label of the title (Data) field in DocType 'LMS Timetable Template'
|
||||
@@ -4875,7 +5059,8 @@ msgstr "crwdns150848:0crwdne150848:0"
|
||||
#: frontend/src/components/Modals/DiscussionModal.vue:18
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:23
|
||||
#: frontend/src/pages/BatchForm.vue:20 frontend/src/pages/CourseForm.vue:32
|
||||
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/QuizForm.vue:48
|
||||
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/ProgramForm.vue:11
|
||||
#: frontend/src/pages/Programs.vue:107 frontend/src/pages/QuizForm.vue:48
|
||||
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
|
||||
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
|
||||
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json
|
||||
@@ -4888,6 +5073,7 @@ msgstr "crwdns150848:0crwdne150848:0"
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_exercise/lms_exercise.json
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_sidebar_item/lms_sidebar_item.json
|
||||
#: lms/lms/doctype/lms_timetable_template/lms_timetable_template.json
|
||||
@@ -4896,7 +5082,7 @@ msgstr "crwdns150848:0crwdne150848:0"
|
||||
msgid "Title"
|
||||
msgstr "crwdns150850:0crwdne150850:0"
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:169
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:174
|
||||
msgid "Title is required"
|
||||
msgstr "crwdns151656:0crwdne151656:0"
|
||||
|
||||
@@ -4911,7 +5097,7 @@ msgstr "crwdns150852:0crwdne150852:0"
|
||||
msgid "To Date"
|
||||
msgstr "crwdns150854:0crwdne150854:0"
|
||||
|
||||
#: lms/lms/utils.py:1593
|
||||
#: lms/lms/utils.py:1596
|
||||
msgid "To join this batch, please contact the Administrator."
|
||||
msgstr "crwdns150858:0crwdne150858:0"
|
||||
|
||||
@@ -4975,7 +5161,7 @@ msgstr "crwdns150876:0crwdne150876:0"
|
||||
msgid "Type"
|
||||
msgstr "crwdns150878:0crwdne150878:0"
|
||||
|
||||
#: frontend/src/components/Quiz.vue:580
|
||||
#: frontend/src/components/Quiz.vue:583
|
||||
msgid "Type your answer"
|
||||
msgstr "crwdns150880:0crwdne150880:0"
|
||||
|
||||
@@ -5259,7 +5445,7 @@ msgstr "crwdns151658:0crwdne151658:0"
|
||||
msgid "You are not enrolled in this course. Please enroll to access this lesson."
|
||||
msgstr "crwdns151660:0crwdne151660:0"
|
||||
|
||||
#: frontend/src/pages/Courses.vue:134
|
||||
#: frontend/src/pages/Courses.vue:135
|
||||
msgid "You can add chapters and lessons to it."
|
||||
msgstr "crwdns151502:0crwdne151502:0"
|
||||
|
||||
@@ -5431,6 +5617,10 @@ msgstr "crwdns151060:0crwdne151060:0"
|
||||
msgid "jane@example.com"
|
||||
msgstr "crwdns151062:0crwdne151062:0"
|
||||
|
||||
#: frontend/src/pages/Programs.vue:32
|
||||
msgid "members"
|
||||
msgstr "crwdns151800:0crwdne151800:0"
|
||||
|
||||
#: lms/templates/quiz/quiz.html:106
|
||||
msgid "of"
|
||||
msgstr "crwdns151064:0crwdne151064:0"
|
||||
@@ -5443,7 +5633,7 @@ msgstr "crwdns151066:0crwdne151066:0"
|
||||
msgid "posted by"
|
||||
msgstr "crwdns151068:0crwdne151068:0"
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:389
|
||||
#: frontend/src/pages/QuizForm.vue:390
|
||||
msgid "question_detail"
|
||||
msgstr "crwdns151070:0crwdne151070:0"
|
||||
|
||||
@@ -5475,7 +5665,7 @@ msgstr "crwdns151082:0{0}crwdne151082:0"
|
||||
msgid "{0} has submitted the assignment {1}"
|
||||
msgstr "crwdns151084:0{0}crwdnd151084:0{1}crwdne151084:0"
|
||||
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.py:53
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.py:57
|
||||
msgid "{0} is already a Student of {1} course through {2} batch"
|
||||
msgstr "crwdns151086:0{0}crwdnd151086:0{1}crwdnd151086:0{2}crwdne151086:0"
|
||||
|
||||
@@ -5483,7 +5673,7 @@ msgstr "crwdns151086:0{0}crwdnd151086:0{1}crwdnd151086:0{2}crwdne151086:0"
|
||||
msgid "{0} is already a mentor for course {1}"
|
||||
msgstr "crwdns151088:0{0}crwdnd151088:0{1}crwdne151088:0"
|
||||
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.py:26
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.py:30
|
||||
msgid "{0} is already a {1} of the course {2}"
|
||||
msgstr "crwdns151090:0{0}crwdnd151090:0{1}crwdnd151090:0{2}crwdne151090:0"
|
||||
|
||||
|
||||
340
lms/locale/es.po
340
lms/locale/es.po
@@ -2,8 +2,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: frappe\n"
|
||||
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
||||
"POT-Creation-Date: 2024-11-15 16:04+0000\n"
|
||||
"PO-Revision-Date: 2024-11-18 17:31\n"
|
||||
"POT-Creation-Date: 2024-11-22 16:05+0000\n"
|
||||
"PO-Revision-Date: 2024-11-25 19:29\n"
|
||||
"Last-Translator: jannat@frappe.io\n"
|
||||
"Language-Team: Spanish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -22,6 +22,11 @@ msgstr ""
|
||||
msgid " Please evaluate and grade it."
|
||||
msgstr " Por favor evalúelo y califíquelo."
|
||||
|
||||
#: frontend/src/pages/Programs.vue:41
|
||||
#, python-format
|
||||
msgid "% completed"
|
||||
msgstr "% completado"
|
||||
|
||||
#. Paragraph text in the LMS Workspace
|
||||
#: lms/lms/workspace/lms/lms.json
|
||||
msgid "<a href=\"/app/lms-settings/LMS%20Settings\">LMS Settings</a>"
|
||||
@@ -99,7 +104,8 @@ msgstr "Activo"
|
||||
#: frontend/src/components/BatchStudents.vue:6
|
||||
#: frontend/src/components/Categories.vue:26
|
||||
#: frontend/src/components/LiveClass.vue:11
|
||||
#: frontend/src/components/Members.vue:43
|
||||
#: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30
|
||||
#: frontend/src/pages/ProgramForm.vue:91 frontend/src/pages/ProgramForm.vue:136
|
||||
msgid "Add"
|
||||
msgstr "Agregar"
|
||||
|
||||
@@ -129,12 +135,20 @@ msgstr "Añadir una lección"
|
||||
msgid "Add a Student"
|
||||
msgstr "Añadir a un estudiante"
|
||||
|
||||
#: frontend/src/components/OnboardingBanner.vue:50
|
||||
msgid "Add a chapter"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/BatchCourseModal.vue:5
|
||||
msgid "Add a course"
|
||||
msgstr "Añadir un curso"
|
||||
|
||||
#: frontend/src/components/OnboardingBanner.vue:73
|
||||
msgid "Add a lesson"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/Question.vue:141
|
||||
#: frontend/src/pages/QuizForm.vue:181
|
||||
#: frontend/src/pages/QuizForm.vue:182
|
||||
msgid "Add a new question"
|
||||
msgstr "Añadir una nueva pregunta"
|
||||
|
||||
@@ -150,7 +164,7 @@ msgstr "Añadir un examen"
|
||||
msgid "Add an existing question"
|
||||
msgstr "Añadir una pregunta existente"
|
||||
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:60
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:66
|
||||
msgid "Add at least one possible answer for this question: {0}"
|
||||
msgstr "Añadir al menos una respuesta posible para esta pregunta: {0}"
|
||||
|
||||
@@ -253,6 +267,14 @@ msgstr "Cantidad basada en el campo"
|
||||
msgid "Amount Field"
|
||||
msgstr "Campo cantidad"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:70
|
||||
msgid "Amount and currency are required for paid batches."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_course/lms_course.py:57
|
||||
msgid "Amount and currency are required for paid courses."
|
||||
msgstr ""
|
||||
|
||||
#. Label of the amount_with_gst (Currency) field in DocType 'LMS Payment'
|
||||
#: lms/lms/doctype/lms_payment/lms_payment.json
|
||||
msgid "Amount with GST"
|
||||
@@ -346,7 +368,7 @@ msgstr "Tipo de evaluación"
|
||||
msgid "Assessment added successfully"
|
||||
msgstr "Examen añadido correctamente"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:75
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:80
|
||||
msgid "Assessment {0} has already been added to this batch."
|
||||
msgstr "La evaluación {0} ya se ha agregado a este lote."
|
||||
|
||||
@@ -397,7 +419,7 @@ msgstr "Ya existe una asignación para la lección {0} por {1}."
|
||||
msgid "Assignment will appear at the bottom of the lesson."
|
||||
msgstr "La tarea aparecerá al final de la lección."
|
||||
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:42
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:43
|
||||
msgid "At least one option must be correct for this question."
|
||||
msgstr "Al menos una opción debe ser correcta para esta pregunta."
|
||||
|
||||
@@ -540,7 +562,7 @@ msgstr "Título del grupo"
|
||||
msgid "Batch Updated"
|
||||
msgstr "Lote actualizado"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:40
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:41
|
||||
msgid "Batch end date cannot be before the batch start date"
|
||||
msgstr "La fecha de finalización del grupo no puede ser anterior a la fecha de inicio del lote"
|
||||
|
||||
@@ -727,11 +749,11 @@ msgstr "Capítulo"
|
||||
msgid "Chapter Reference"
|
||||
msgstr "Referencia del capítulo"
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:149
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:154
|
||||
msgid "Chapter added successfully"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:193
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:198
|
||||
msgid "Chapter updated successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -764,7 +786,7 @@ msgstr "Comprobar cursos"
|
||||
msgid "Choices"
|
||||
msgstr "Opciones"
|
||||
|
||||
#: frontend/src/components/Quiz.vue:578 lms/templates/quiz/quiz.html:53
|
||||
#: frontend/src/components/Quiz.vue:581 lms/templates/quiz/quiz.html:53
|
||||
msgid "Choose all answers that apply"
|
||||
msgstr "Elegir todas las respuestas que apliquen"
|
||||
|
||||
@@ -772,7 +794,7 @@ msgstr "Elegir todas las respuestas que apliquen"
|
||||
msgid "Choose an icon"
|
||||
msgstr "Elegir icono"
|
||||
|
||||
#: frontend/src/components/Quiz.vue:579 lms/templates/quiz/quiz.html:53
|
||||
#: frontend/src/components/Quiz.vue:582 lms/templates/quiz/quiz.html:53
|
||||
msgid "Choose one answer"
|
||||
msgstr "Elige una respuesta"
|
||||
|
||||
@@ -988,7 +1010,7 @@ msgid "Contact the Administrator to enroll for this course."
|
||||
msgstr "Póngase en contacto con el administrador para inscribirse en este curso."
|
||||
|
||||
#. Label of the content (Text) field in DocType 'Course Lesson'
|
||||
#: frontend/src/pages/LessonForm.vue:58
|
||||
#: frontend/src/pages/LessonForm.vue:62
|
||||
#: lms/lms/doctype/course_lesson/course_lesson.json
|
||||
msgid "Content"
|
||||
msgstr "Contenido"
|
||||
@@ -1057,6 +1079,7 @@ msgstr "País"
|
||||
#. Label of the course (Link) field in DocType 'LMS Enrollment'
|
||||
#. Label of the course (Link) field in DocType 'LMS Exercise'
|
||||
#. Label of the course (Link) field in DocType 'LMS Mentor Request'
|
||||
#. Label of the course (Link) field in DocType 'LMS Program Course'
|
||||
#. Label of the course (Link) field in DocType 'LMS Quiz'
|
||||
#. Label of the course (Link) field in DocType 'LMS Quiz Submission'
|
||||
#. Label of the course (Link) field in DocType 'Related Courses'
|
||||
@@ -1086,6 +1109,7 @@ msgstr "País"
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
#: lms/lms/doctype/lms_exercise/lms_exercise.json
|
||||
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
|
||||
#: lms/lms/doctype/lms_program_course/lms_program_course.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/lms/doctype/related_courses/related_courses.json
|
||||
@@ -1114,6 +1138,7 @@ msgstr "Contenido del curso"
|
||||
#. Name of a role
|
||||
#: frontend/src/pages/ProfileRoles.vue:16
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
#: lms/lms/doctype/lms_question/lms_question.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
msgid "Course Creator"
|
||||
@@ -1184,22 +1209,33 @@ msgstr "Estadísticas del curso"
|
||||
#. Label of the course_title (Data) field in DocType 'Course Chapter'
|
||||
#. Label of the course_title (Data) field in DocType 'LMS Certificate'
|
||||
#. Label of the course_title (Data) field in DocType 'LMS Certificate Request'
|
||||
#. Label of the course_title (Data) field in DocType 'LMS Program Course'
|
||||
#: lms/lms/doctype/batch_course/batch_course.json
|
||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
#: lms/lms/doctype/lms_program_course/lms_program_course.json
|
||||
msgid "Course Title"
|
||||
msgstr "Título del curso"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:340
|
||||
#: frontend/src/pages/ProgramForm.vue:226
|
||||
msgid "Course added to program"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:345
|
||||
msgid "Course already added to the batch."
|
||||
msgstr "Curso ya agregado al lote."
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:457
|
||||
#: frontend/src/pages/CourseForm.vue:460
|
||||
msgid "Course deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:58
|
||||
#: frontend/src/pages/ProgramForm.vue:295
|
||||
msgid "Course moved successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:59
|
||||
#: lms/lms/doctype/lms_program/lms_program.py:19
|
||||
msgid "Course {0} has already been added to this batch."
|
||||
msgstr "El curso {0} ya se ha agregado a este lote."
|
||||
|
||||
@@ -1234,6 +1270,7 @@ msgid "Cover Image"
|
||||
msgstr "Imagen de portada"
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:9
|
||||
#: frontend/src/pages/Programs.vue:99
|
||||
msgid "Create"
|
||||
msgstr "Crear"
|
||||
|
||||
@@ -1249,7 +1286,7 @@ msgstr "Crear evaluación de certificados LMS"
|
||||
msgid "Create a Batch"
|
||||
msgstr "Crear un grupo"
|
||||
|
||||
#: frontend/src/pages/Courses.vue:131 lms/templates/onboarding_header.html:19
|
||||
#: frontend/src/pages/Courses.vue:132 lms/templates/onboarding_header.html:19
|
||||
msgid "Create a Course"
|
||||
msgstr "Crear un curso"
|
||||
|
||||
@@ -1257,6 +1294,10 @@ msgstr "Crear un curso"
|
||||
msgid "Create a Live Class"
|
||||
msgstr "Crear una clase en vivo"
|
||||
|
||||
#: frontend/src/components/OnboardingBanner.vue:27
|
||||
msgid "Create a course"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/Question.vue:31
|
||||
msgid "Create a new question"
|
||||
msgstr "Crear una nueva pregunta"
|
||||
@@ -1360,7 +1401,7 @@ msgstr "Tipo de Grado"
|
||||
|
||||
#: frontend/src/components/CourseOutline.vue:235
|
||||
#: frontend/src/components/CourseOutline.vue:293
|
||||
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:470
|
||||
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:473
|
||||
msgid "Delete"
|
||||
msgstr "Eliminar"
|
||||
|
||||
@@ -1368,7 +1409,7 @@ msgstr "Eliminar"
|
||||
msgid "Delete Chapter"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:464
|
||||
#: frontend/src/pages/CourseForm.vue:467
|
||||
msgid "Delete Course"
|
||||
msgstr ""
|
||||
|
||||
@@ -1380,7 +1421,7 @@ msgstr ""
|
||||
msgid "Delete this lesson?"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:465
|
||||
#: frontend/src/pages/CourseForm.vue:468
|
||||
msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?"
|
||||
msgstr ""
|
||||
|
||||
@@ -1470,7 +1511,7 @@ msgstr "Documento"
|
||||
msgid "Dream Companies"
|
||||
msgstr "Empresas de ensueño"
|
||||
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:32
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:33
|
||||
msgid "Duplicate options found for this question."
|
||||
msgstr "Se encontraron opciones duplicadas para esta pregunta."
|
||||
|
||||
@@ -1508,7 +1549,7 @@ msgstr "Correo Electrónico"
|
||||
#: frontend/src/components/CourseCardOverlay.vue:86
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:9
|
||||
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:65
|
||||
#: frontend/src/pages/Profile.vue:32
|
||||
#: frontend/src/pages/Profile.vue:32 frontend/src/pages/Programs.vue:55
|
||||
msgid "Edit"
|
||||
msgstr "Editar"
|
||||
|
||||
@@ -1521,7 +1562,7 @@ msgstr "Editar capítulo"
|
||||
msgid "Edit Profile"
|
||||
msgstr "Editar perfil"
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:180
|
||||
#: frontend/src/pages/QuizForm.vue:181
|
||||
msgid "Edit the question"
|
||||
msgstr "Editar la pregunta"
|
||||
|
||||
@@ -1582,6 +1623,15 @@ msgstr "Habilitar certificación"
|
||||
msgid "Enable Google API in Google Settings to send calendar invites for evaluations."
|
||||
msgstr "Habilite la API de Google en la configuración de Google para enviar invitaciones de calendario para evaluaciones."
|
||||
|
||||
#. Label of the enable_learning_paths (Check) field in DocType 'LMS Settings'
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Enable Learning Paths"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:24
|
||||
msgid "Enable this only if you want to upload a SCORM package as a chapter."
|
||||
msgstr ""
|
||||
|
||||
#. Label of the enabled (Check) field in DocType 'LMS Badge'
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "Enabled"
|
||||
@@ -1634,7 +1684,7 @@ msgstr "Estudiantes inscritos"
|
||||
msgid "Enrolled successfully"
|
||||
msgstr "Inscrito exitosamente"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:98
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:103
|
||||
msgid "Enrollment Confirmation for the Next Training Batch"
|
||||
msgstr "Confirmación de inscripción para el próximo Lote de Entrenamiento"
|
||||
|
||||
@@ -1643,7 +1693,7 @@ msgstr "Confirmación de inscripción para el próximo Lote de Entrenamiento"
|
||||
msgid "Enrollment Count"
|
||||
msgstr "Recuento de inscripciones"
|
||||
|
||||
#: lms/lms/utils.py:1702
|
||||
#: lms/lms/utils.py:1705
|
||||
msgid "Enrollment Failed"
|
||||
msgstr "Error al inscribirse"
|
||||
|
||||
@@ -1672,14 +1722,14 @@ msgid "Enter the correct answer"
|
||||
msgstr "Ingrese la respuesta correcta"
|
||||
|
||||
#: frontend/src/components/Modals/AnnouncementModal.vue:105
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:154
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:161
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:197
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:159
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:166
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:202
|
||||
#: frontend/src/components/Modals/Question.vue:246
|
||||
#: frontend/src/components/Modals/Question.vue:266
|
||||
#: frontend/src/components/Modals/Question.vue:323
|
||||
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:349
|
||||
#: frontend/src/pages/QuizForm.vue:364
|
||||
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350
|
||||
#: frontend/src/pages/QuizForm.vue:365
|
||||
#: frontend/src/pages/QuizSubmission.vue:117
|
||||
msgid "Error"
|
||||
msgstr "Error"
|
||||
@@ -1708,7 +1758,7 @@ msgstr "Fecha de finalización de la evaluación"
|
||||
msgid "Evaluation Request"
|
||||
msgstr "Solicitud de evaluación"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:82
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:87
|
||||
msgid "Evaluation end date cannot be less than the batch end date."
|
||||
msgstr "La fecha de finalización de la evaluación no puede ser inferior a la fecha de finalización"
|
||||
|
||||
@@ -1874,7 +1924,7 @@ msgstr "Horario fijo de 9 a 5"
|
||||
msgid "Flexible Time"
|
||||
msgstr "Horario flexible"
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:462
|
||||
#: frontend/src/pages/QuizForm.vue:463
|
||||
msgid "Form to create and edit quizzes"
|
||||
msgstr "Formulario para crear y editar cuestionarios"
|
||||
|
||||
@@ -1922,7 +1972,9 @@ msgid "From Date"
|
||||
msgstr "Desde la fecha"
|
||||
|
||||
#. Label of the full_name (Data) field in DocType 'Invite Request'
|
||||
#. Label of the full_name (Data) field in DocType 'LMS Program Member'
|
||||
#: lms/lms/doctype/invite_request/invite_request.json
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
#: lms/templates/signup-form.html:5
|
||||
msgid "Full Name"
|
||||
msgstr "Nombre completo"
|
||||
@@ -1954,6 +2006,11 @@ msgstr "Número de GST"
|
||||
msgid "GSTIN"
|
||||
msgstr "GSTIN"
|
||||
|
||||
#. Label of the general_tab (Tab Break) field in DocType 'LMS Settings'
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "General"
|
||||
msgstr "General"
|
||||
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:18
|
||||
msgid "Generate Google Meet Link"
|
||||
msgstr "Generar enlace de Google Meet"
|
||||
@@ -2085,7 +2142,7 @@ msgstr "Estoy buscando un trabajo"
|
||||
msgid "I am unavailable"
|
||||
msgstr "No estoy disponible"
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:383
|
||||
#: frontend/src/pages/QuizForm.vue:384
|
||||
msgid "ID"
|
||||
msgstr "Identificador"
|
||||
|
||||
@@ -2226,7 +2283,7 @@ msgstr "Contenido del instructor"
|
||||
|
||||
#. Label of the instructor_notes (Markdown Editor) field in DocType 'Course
|
||||
#. Lesson'
|
||||
#: frontend/src/pages/Lesson.vue:128 frontend/src/pages/LessonForm.vue:38
|
||||
#: frontend/src/pages/Lesson.vue:128 frontend/src/pages/LessonForm.vue:42
|
||||
#: lms/lms/doctype/course_lesson/course_lesson.json
|
||||
msgid "Instructor Notes"
|
||||
msgstr "Notas del instructor"
|
||||
@@ -2302,7 +2359,6 @@ msgstr "¿Se ha completado la incorporación?"
|
||||
|
||||
#. Label of the is_scorm_package (Check) field in DocType 'Course Chapter'
|
||||
#. Label of the is_scorm_package (Check) field in DocType 'Course Lesson'
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:26
|
||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||
#: lms/lms/doctype/course_lesson/course_lesson.json
|
||||
msgid "Is SCORM Package"
|
||||
@@ -2332,6 +2388,10 @@ msgstr "Emitido el"
|
||||
msgid "Items in Sidebar"
|
||||
msgstr "Elementos en la barra lateral"
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:269
|
||||
msgid "Items removed successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/signup-form.html:6
|
||||
msgid "Jane Doe"
|
||||
msgstr "María Pérez"
|
||||
@@ -2531,6 +2591,21 @@ msgstr "Opción LMS"
|
||||
msgid "LMS Payment"
|
||||
msgstr "Pago LMS"
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
msgid "LMS Program"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_program_course/lms_program_course.json
|
||||
msgid "LMS Program Course"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
msgid "LMS Program Member"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_question/lms_question.json
|
||||
msgid "LMS Question"
|
||||
@@ -2590,6 +2665,7 @@ msgstr "Fuente LMS"
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
#: lms/lms/doctype/lms_source/lms_source.json
|
||||
#: lms/lms/doctype/user_skill/user_skill.json
|
||||
msgid "LMS Student"
|
||||
@@ -2812,7 +2888,7 @@ msgstr "Marcar como leído"
|
||||
#. Label of the marks (Int) field in DocType 'LMS Quiz Result'
|
||||
#: frontend/src/components/Modals/Question.vue:50
|
||||
#: frontend/src/components/Modals/Question.vue:96
|
||||
#: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:393
|
||||
#: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:394
|
||||
#: frontend/src/pages/QuizSubmission.vue:52
|
||||
#: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json
|
||||
#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json
|
||||
@@ -2867,6 +2943,7 @@ msgstr "Medio:"
|
||||
#. Option for the 'Role' (Select) field in DocType 'LMS Enrollment'
|
||||
#. Label of the member (Link) field in DocType 'LMS Mentor Request'
|
||||
#. 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 Quiz Submission'
|
||||
#: frontend/src/pages/QuizSubmission.vue:27
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:77
|
||||
@@ -2881,6 +2958,7 @@ msgstr "Medio:"
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
|
||||
#: lms/lms/doctype/lms_payment/lms_payment.json
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/lms/report/course_progress_summary/course_progress_summary.py:64
|
||||
msgid "Member"
|
||||
@@ -2930,6 +3008,14 @@ msgstr "Subgrupo de miembros"
|
||||
msgid "Member Type"
|
||||
msgstr "Tipo de miembro"
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:248
|
||||
msgid "Member added to program"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_program/lms_program.py:29
|
||||
msgid "Member {0} has already been added to this batch."
|
||||
msgstr ""
|
||||
|
||||
#. Group in LMS Batch Old's connections
|
||||
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
||||
msgid "Members"
|
||||
@@ -3002,6 +3088,10 @@ msgstr "Evento importante"
|
||||
msgid "Milestones"
|
||||
msgstr "Hitos"
|
||||
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:48
|
||||
msgid "Minimum two options are required for multiple choice questions."
|
||||
msgstr ""
|
||||
|
||||
#. Name of a role
|
||||
#: frontend/src/pages/ProfileRoles.vue:10
|
||||
#: lms/lms/doctype/course_evaluator/course_evaluator.json
|
||||
@@ -3013,6 +3103,7 @@ msgstr "Hitos"
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
#: lms/lms/doctype/lms_question/lms_question.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_source/lms_source.json
|
||||
@@ -3057,8 +3148,8 @@ msgid "My calendar"
|
||||
msgstr "Mi calendario"
|
||||
|
||||
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
||||
#: frontend/src/pages/Batches.vue:30 frontend/src/pages/Courses.vue:44
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
#: frontend/src/pages/Batches.vue:30 frontend/src/pages/Courses.vue:45
|
||||
#: frontend/src/pages/Programs.vue:14 lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "New"
|
||||
msgstr "Nuevo"
|
||||
|
||||
@@ -3082,11 +3173,23 @@ msgstr "Nuevo trabajo"
|
||||
msgid "New Job Applicant"
|
||||
msgstr "Nuevo solicitante de trabajo"
|
||||
|
||||
#: frontend/src/pages/Programs.vue:96
|
||||
msgid "New Program"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:132
|
||||
msgid "New Program Course"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:133
|
||||
msgid "New Program Member"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:122
|
||||
msgid "New Question"
|
||||
msgstr "Nueva pregunta"
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:453 frontend/src/pages/QuizForm.vue:461
|
||||
#: frontend/src/pages/QuizForm.vue:454 frontend/src/pages/QuizForm.vue:462
|
||||
#: frontend/src/pages/Quizzes.vue:18
|
||||
msgid "New Quiz"
|
||||
msgstr "Nuevo cuestionario"
|
||||
@@ -3149,10 +3252,14 @@ msgstr "No hay certificados"
|
||||
msgid "No courses created"
|
||||
msgstr "No hay cursos creados"
|
||||
|
||||
#: frontend/src/pages/Courses.vue:146
|
||||
#: frontend/src/pages/Courses.vue:147
|
||||
msgid "No courses found"
|
||||
msgstr "No se encontraron cursos"
|
||||
|
||||
#: frontend/src/pages/Programs.vue:72
|
||||
msgid "No courses in this program"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/courses_under_review.html:14
|
||||
msgid "No courses under review"
|
||||
msgstr "No hay cursos en revisión"
|
||||
@@ -3169,6 +3276,10 @@ msgstr "No hay trabajos publicados"
|
||||
msgid "No live classes scheduled"
|
||||
msgstr "No hay clases en vivo programadas"
|
||||
|
||||
#: frontend/src/pages/Programs.vue:82
|
||||
msgid "No programs found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Quizzes.vue:56
|
||||
msgid "No quizzes found"
|
||||
msgstr ""
|
||||
@@ -3189,7 +3300,7 @@ msgstr "No {0}"
|
||||
msgid "No {0} batches"
|
||||
msgstr "Grupos {0} inexistentes"
|
||||
|
||||
#: frontend/src/pages/Courses.vue:106
|
||||
#: frontend/src/pages/Courses.vue:107
|
||||
msgid "No {0} courses"
|
||||
msgstr "Cursos {0} inexistentes"
|
||||
|
||||
@@ -3277,15 +3388,19 @@ msgstr "Una vez que el moderador califique su envío, encontrará los detalles a
|
||||
msgid "Online"
|
||||
msgstr "En línea"
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:156
|
||||
msgid "Only courses for which self learning is disabled can be added to program."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/assignment.html:6
|
||||
msgid "Only files of type {0} will be accepted."
|
||||
msgstr "Sólo se aceptarán archivos del tipo {0}."
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:494 frontend/src/utils/index.js:518
|
||||
#: frontend/src/pages/CourseForm.vue:497 frontend/src/utils/index.js:518
|
||||
msgid "Only image file is allowed."
|
||||
msgstr "Sólo se permiten archivos de imagen."
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:223
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:220
|
||||
msgid "Only zip files are allowed"
|
||||
msgstr ""
|
||||
|
||||
@@ -3561,7 +3676,11 @@ msgstr "Por favor, consultar su correo electrónico para la verificación"
|
||||
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"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:251
|
||||
#: lms/lms/utils.py:1817 lms/lms/utils.py:1821
|
||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:256
|
||||
msgid "Please enable Zoom Settings to use this feature."
|
||||
msgstr "Habilite la configuración de Zoom para utilizar esta funcionalidad."
|
||||
|
||||
@@ -3573,11 +3692,19 @@ msgstr ""
|
||||
msgid "Please ensure that you complete all the questions in {0} minutes."
|
||||
msgstr "Asegúrese de completar todas las preguntas en {0} minutos."
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:164
|
||||
msgid "Please enter a title."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:38
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:98
|
||||
msgid "Please enter a valid URL."
|
||||
msgstr "Introduce una URL válida."
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:176
|
||||
msgid "Please enter a valid time in the format HH:mm."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:92
|
||||
msgid "Please enter the URL for assignment submission."
|
||||
msgstr "Por favor, introduzca la URL para el envío de la tarea."
|
||||
@@ -3586,11 +3713,11 @@ msgstr "Por favor, introduzca la URL para el envío de la tarea."
|
||||
msgid "Please enter your answer"
|
||||
msgstr "Por favor escriba su respuesta"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:65
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:66
|
||||
msgid "Please install the Payments app to create a paid batches."
|
||||
msgstr "Por favor, instale la aplicación de pagos para crear un grupo de pagos."
|
||||
|
||||
#: lms/lms/doctype/lms_course/lms_course.py:52
|
||||
#: lms/lms/doctype/lms_course/lms_course.py:53
|
||||
msgid "Please install the Payments app to create a paid courses."
|
||||
msgstr "Instale la aplicación Pagos para crear un curso pago."
|
||||
|
||||
@@ -3615,11 +3742,31 @@ msgstr "Por favor inicie sesión para continuar con el pago."
|
||||
msgid "Please prepare well and be on time for the evaluations."
|
||||
msgstr "Por favor, prepárese bien y llegue a tiempo a las evaluaciones."
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:167
|
||||
msgid "Please select a date."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:191
|
||||
msgid "Please select a duration."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:188
|
||||
msgid "Please select a future date and time."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:170
|
||||
msgid "Please select a time."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:173
|
||||
msgid "Please select a timezone."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/emails/job_report.html:6
|
||||
msgid "Please take appropriate action at {0}"
|
||||
msgstr "Tome las medidas adecuadas en {0}"
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:172
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:177
|
||||
msgid "Please upload a SCORM package"
|
||||
msgstr ""
|
||||
|
||||
@@ -3756,8 +3903,30 @@ msgstr "Profesión"
|
||||
msgid "Profile Image"
|
||||
msgstr "Imagen del Perfil"
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:154
|
||||
msgid "Program Course"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the program_courses (Table) field in DocType 'LMS Program'
|
||||
#: frontend/src/pages/ProgramForm.vue:17
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
msgid "Program Courses"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:169
|
||||
msgid "Program Member"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the program_members (Table) field in DocType 'LMS Program'
|
||||
#: frontend/src/pages/ProgramForm.vue:78
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
msgid "Program Members"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the progress (Float) field in DocType 'LMS Enrollment'
|
||||
#. Label of the progress (Int) field in DocType 'LMS Program Member'
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
msgid "Progress"
|
||||
msgstr "Progreso"
|
||||
|
||||
@@ -3807,7 +3976,7 @@ msgstr "Publicado el"
|
||||
#. Label of the question (Text) field in DocType 'LMS Quiz Result'
|
||||
#: frontend/src/components/Modals/Question.vue:38
|
||||
#: frontend/src/pages/AssignmentSubmission.vue:26
|
||||
#: frontend/src/pages/QuizForm.vue:388
|
||||
#: frontend/src/pages/QuizForm.vue:389
|
||||
#: lms/lms/doctype/course_lesson/course_lesson.json
|
||||
#: lms/lms/doctype/lms_assignment/lms_assignment.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
@@ -3853,7 +4022,7 @@ msgstr "Pregunta {0} de {1}"
|
||||
msgid "Questions"
|
||||
msgstr "Preguntas"
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:430
|
||||
#: frontend/src/pages/QuizForm.vue:431
|
||||
msgid "Questions deleted successfully"
|
||||
msgstr "Preguntas eliminadas correctamente"
|
||||
|
||||
@@ -3891,7 +4060,7 @@ msgstr "Resumen del cuestionario"
|
||||
msgid "Quiz Title"
|
||||
msgstr "Título del cuestionario"
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:342
|
||||
#: frontend/src/pages/QuizForm.vue:343
|
||||
msgid "Quiz created successfully"
|
||||
msgstr "Cuestionario creado correctamente"
|
||||
|
||||
@@ -3899,7 +4068,7 @@ msgstr "Cuestionario creado correctamente"
|
||||
msgid "Quiz is not available to Guest users. Please login to continue."
|
||||
msgstr "El cuestionario no está disponible para usuarios invitados. Por favor inicie sesión para continuar."
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:361
|
||||
#: frontend/src/pages/QuizForm.vue:362
|
||||
msgid "Quiz updated successfully"
|
||||
msgstr "Cuestionario actualizado correctamente"
|
||||
|
||||
@@ -3908,7 +4077,7 @@ msgstr "Cuestionario actualizado correctamente"
|
||||
msgid "Quiz will appear at the bottom of the lesson."
|
||||
msgstr "El cuestionario aparecerá al final de la lección."
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:441 frontend/src/pages/Quizzes.vue:136
|
||||
#: frontend/src/pages/QuizForm.vue:442 frontend/src/pages/Quizzes.vue:136
|
||||
#: frontend/src/pages/Quizzes.vue:146
|
||||
msgid "Quizzes"
|
||||
msgstr "Cuestionarios"
|
||||
@@ -4065,19 +4234,19 @@ msgstr "Preferencia de rol"
|
||||
msgid "Route"
|
||||
msgstr "Ruta"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:194
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:199
|
||||
msgid "Row #{0} Date cannot be outside the batch duration."
|
||||
msgstr "Fila #{0} La fecha no puede estar fuera de la duración del lote."
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:189
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:194
|
||||
msgid "Row #{0} End time cannot be outside the batch duration."
|
||||
msgstr "Fila #{0} La hora de finalización no puede estar fuera de la duración del lote."
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:171
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:176
|
||||
msgid "Row #{0} Start time cannot be greater than or equal to end time."
|
||||
msgstr "Fila #{0} La hora de inicio no puede ser mayor o igual que la hora final."
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:180
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:185
|
||||
msgid "Row #{0} Start time cannot be outside the batch duration."
|
||||
msgstr "Fila #{0} La hora de inicio no puede estar fuera de la duración del lote."
|
||||
|
||||
@@ -4095,6 +4264,7 @@ msgid "SCORM"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the scorm_package (Link) field in DocType 'Course Chapter'
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:22
|
||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||
msgid "SCORM Package"
|
||||
msgstr ""
|
||||
@@ -4117,8 +4287,9 @@ msgstr "Sábado"
|
||||
#: frontend/src/components/QuizPlugin.vue:23
|
||||
#: frontend/src/pages/AssignmentSubmission.vue:7
|
||||
#: frontend/src/pages/BatchForm.vue:8 frontend/src/pages/CourseForm.vue:20
|
||||
#: frontend/src/pages/JobCreation.vue:8 frontend/src/pages/LessonForm.vue:10
|
||||
#: frontend/src/pages/QuizForm.vue:34 frontend/src/pages/QuizSubmission.vue:14
|
||||
#: frontend/src/pages/JobCreation.vue:8 frontend/src/pages/LessonForm.vue:14
|
||||
#: frontend/src/pages/ProgramForm.vue:7 frontend/src/pages/QuizForm.vue:34
|
||||
#: frontend/src/pages/QuizSubmission.vue:14
|
||||
#: lms/public/js/common_functions.js:405
|
||||
msgid "Save"
|
||||
msgstr "Guardar"
|
||||
@@ -4334,6 +4505,10 @@ msgstr "Las aptitudes deben ser únicas"
|
||||
msgid "Skip"
|
||||
msgstr "Omitir"
|
||||
|
||||
#: frontend/src/components/OnboardingBanner.vue:3
|
||||
msgid "Skip Onboarding"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/course_evaluator/course_evaluator.py:57
|
||||
msgid "Slot Times are overlapping for some schedules."
|
||||
msgstr "Los horarios de las franjas horarias se superponen."
|
||||
@@ -4507,7 +4682,7 @@ msgstr "Nombre del Estudiante"
|
||||
msgid "Student Reviews"
|
||||
msgstr "Reseñas de estudiantes"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:47
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:48
|
||||
msgid "Student {0} has already been added to this batch."
|
||||
msgstr "El estudiante {0} ya ha sido añadido a este lote."
|
||||
|
||||
@@ -4575,14 +4750,17 @@ msgstr "Enviado {0}"
|
||||
#: frontend/src/components/CourseCardOverlay.vue:161
|
||||
#: frontend/src/components/Modals/AnnouncementModal.vue:99
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:73
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:148
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:193
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:153
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:198
|
||||
#: frontend/src/components/Modals/Event.vue:255
|
||||
#: frontend/src/components/Modals/Event.vue:310
|
||||
#: frontend/src/components/Modals/Question.vue:261
|
||||
#: frontend/src/components/Modals/Question.vue:312
|
||||
#: frontend/src/pages/CourseForm.vue:457 frontend/src/pages/QuizForm.vue:342
|
||||
#: frontend/src/pages/QuizForm.vue:361 frontend/src/pages/QuizForm.vue:430
|
||||
#: frontend/src/pages/CourseForm.vue:460 frontend/src/pages/ProgramForm.vue:226
|
||||
#: frontend/src/pages/ProgramForm.vue:248
|
||||
#: frontend/src/pages/ProgramForm.vue:269
|
||||
#: frontend/src/pages/ProgramForm.vue:295 frontend/src/pages/QuizForm.vue:343
|
||||
#: frontend/src/pages/QuizForm.vue:362 frontend/src/pages/QuizForm.vue:431
|
||||
msgid "Success"
|
||||
msgstr "Éxito"
|
||||
|
||||
@@ -4637,6 +4815,7 @@ msgstr "Domingo"
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
|
||||
#: lms/lms/doctype/lms_payment/lms_payment.json
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
#: lms/lms/doctype/lms_question/lms_question.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
@@ -4737,11 +4916,15 @@ msgstr "No hay grupos disponibles en este momento. ¡Esté atento, pronto habrá
|
||||
msgid "There are no chapters in this course. Create and manage chapters from here."
|
||||
msgstr "No hay capítulos en este curso. Crea y administra capítulos desde aquí."
|
||||
|
||||
#: frontend/src/pages/Courses.vue:150
|
||||
#: frontend/src/pages/Courses.vue:151
|
||||
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!"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:141
|
||||
#: frontend/src/pages/Programs.vue:86
|
||||
msgid "There are no programs available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:146
|
||||
msgid "There are no seats available in this batch."
|
||||
msgstr "No hay asientos disponibles en este lote."
|
||||
|
||||
@@ -4772,11 +4955,11 @@ msgstr "Este certificado no caduca"
|
||||
msgid "This course has:"
|
||||
msgstr "Este curso tiene:"
|
||||
|
||||
#: lms/lms/utils.py:1582
|
||||
#: lms/lms/utils.py:1585
|
||||
msgid "This course is free."
|
||||
msgstr "Este curso es gratuito."
|
||||
|
||||
#: frontend/src/pages/SCORMChapter.vue:198
|
||||
#: frontend/src/pages/SCORMChapter.vue:197
|
||||
msgid "This is a chapter in the course {0}"
|
||||
msgstr ""
|
||||
|
||||
@@ -4868,6 +5051,7 @@ msgstr "Horarios:"
|
||||
#. Label of the title (Data) field in DocType 'LMS Course'
|
||||
#. Label of the title (Data) field in DocType 'LMS Exercise'
|
||||
#. Label of the title (Data) field in DocType 'LMS Live Class'
|
||||
#. Label of the title (Data) field in DocType 'LMS Program'
|
||||
#. Label of the title (Data) field in DocType 'LMS Quiz'
|
||||
#. Label of the title (Data) field in DocType 'LMS Sidebar Item'
|
||||
#. Label of the title (Data) field in DocType 'LMS Timetable Template'
|
||||
@@ -4875,7 +5059,8 @@ msgstr "Horarios:"
|
||||
#: frontend/src/components/Modals/DiscussionModal.vue:18
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:23
|
||||
#: frontend/src/pages/BatchForm.vue:20 frontend/src/pages/CourseForm.vue:32
|
||||
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/QuizForm.vue:48
|
||||
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/ProgramForm.vue:11
|
||||
#: frontend/src/pages/Programs.vue:107 frontend/src/pages/QuizForm.vue:48
|
||||
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
|
||||
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
|
||||
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json
|
||||
@@ -4888,6 +5073,7 @@ msgstr "Horarios:"
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_exercise/lms_exercise.json
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_sidebar_item/lms_sidebar_item.json
|
||||
#: lms/lms/doctype/lms_timetable_template/lms_timetable_template.json
|
||||
@@ -4896,7 +5082,7 @@ msgstr "Horarios:"
|
||||
msgid "Title"
|
||||
msgstr "Nombre"
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:169
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:174
|
||||
msgid "Title is required"
|
||||
msgstr ""
|
||||
|
||||
@@ -4911,7 +5097,7 @@ msgstr "A"
|
||||
msgid "To Date"
|
||||
msgstr "Hasta la fecha"
|
||||
|
||||
#: lms/lms/utils.py:1593
|
||||
#: lms/lms/utils.py:1596
|
||||
msgid "To join this batch, please contact the Administrator."
|
||||
msgstr "Para unirse a este lote, comuníquese con el Administrador."
|
||||
|
||||
@@ -4975,7 +5161,7 @@ msgstr "Twitter"
|
||||
msgid "Type"
|
||||
msgstr "Tipo"
|
||||
|
||||
#: frontend/src/components/Quiz.vue:580
|
||||
#: frontend/src/components/Quiz.vue:583
|
||||
msgid "Type your answer"
|
||||
msgstr "Escribe tu respuesta"
|
||||
|
||||
@@ -5259,7 +5445,7 @@ msgstr ""
|
||||
msgid "You are not enrolled in this course. Please enroll to access this lesson."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:134
|
||||
#: frontend/src/pages/Courses.vue:135
|
||||
msgid "You can add chapters and lessons to it."
|
||||
msgstr "Puedes añadir capítulos y lecciones a él."
|
||||
|
||||
@@ -5431,6 +5617,10 @@ msgstr "emitido el"
|
||||
msgid "jane@example.com"
|
||||
msgstr "juan@example.com"
|
||||
|
||||
#: frontend/src/pages/Programs.vue:32
|
||||
msgid "members"
|
||||
msgstr "miembros"
|
||||
|
||||
#: lms/templates/quiz/quiz.html:106
|
||||
msgid "of"
|
||||
msgstr "de"
|
||||
@@ -5443,7 +5633,7 @@ msgstr "fuera de"
|
||||
msgid "posted by"
|
||||
msgstr "publicado por"
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:389
|
||||
#: frontend/src/pages/QuizForm.vue:390
|
||||
msgid "question_detail"
|
||||
msgstr "pregunta_detalle"
|
||||
|
||||
@@ -5475,7 +5665,7 @@ msgstr "{0} ha reportado una publicación de trabajo por el siguiente motivo."
|
||||
msgid "{0} has submitted the assignment {1}"
|
||||
msgstr "{0} ha enviado la tarea {1}"
|
||||
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.py:53
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.py:57
|
||||
msgid "{0} is already a Student of {1} course through {2} batch"
|
||||
msgstr "{0} ya es alumno del curso {1} a través del lote {2}"
|
||||
|
||||
@@ -5483,7 +5673,7 @@ msgstr "{0} ya es alumno del curso {1} a través del lote {2}"
|
||||
msgid "{0} is already a mentor for course {1}"
|
||||
msgstr "{0} ya es mentor del curso {1}"
|
||||
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.py:26
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.py:30
|
||||
msgid "{0} is already a {1} of the course {2}"
|
||||
msgstr "{0} ya es un {1} del curso {2}"
|
||||
|
||||
|
||||
348
lms/locale/fa.po
348
lms/locale/fa.po
@@ -2,8 +2,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: frappe\n"
|
||||
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
||||
"POT-Creation-Date: 2024-11-15 16:04+0000\n"
|
||||
"PO-Revision-Date: 2024-11-23 18:16\n"
|
||||
"POT-Creation-Date: 2024-11-22 16:05+0000\n"
|
||||
"PO-Revision-Date: 2024-11-26 19:27\n"
|
||||
"Last-Translator: jannat@frappe.io\n"
|
||||
"Language-Team: Persian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -22,6 +22,11 @@ msgstr ""
|
||||
msgid " Please evaluate and grade it."
|
||||
msgstr " لطفا آن را ارزیابی و نمره دهید."
|
||||
|
||||
#: frontend/src/pages/Programs.vue:41
|
||||
#, python-format
|
||||
msgid "% completed"
|
||||
msgstr "% تکمیل شده"
|
||||
|
||||
#. Paragraph text in the LMS Workspace
|
||||
#: lms/lms/workspace/lms/lms.json
|
||||
msgid "<a href=\"/app/lms-settings/LMS%20Settings\">LMS Settings</a>"
|
||||
@@ -99,7 +104,8 @@ msgstr "فعال"
|
||||
#: frontend/src/components/BatchStudents.vue:6
|
||||
#: frontend/src/components/Categories.vue:26
|
||||
#: frontend/src/components/LiveClass.vue:11
|
||||
#: frontend/src/components/Members.vue:43
|
||||
#: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30
|
||||
#: frontend/src/pages/ProgramForm.vue:91 frontend/src/pages/ProgramForm.vue:136
|
||||
msgid "Add"
|
||||
msgstr "اضافه کردن"
|
||||
|
||||
@@ -129,12 +135,20 @@ msgstr "درس را اضافه کنید"
|
||||
msgid "Add a Student"
|
||||
msgstr "دانشآموز را اضافه کنید"
|
||||
|
||||
#: frontend/src/components/OnboardingBanner.vue:50
|
||||
msgid "Add a chapter"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/BatchCourseModal.vue:5
|
||||
msgid "Add a course"
|
||||
msgstr "دوره را اضافه کنید"
|
||||
|
||||
#: frontend/src/components/OnboardingBanner.vue:73
|
||||
msgid "Add a lesson"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/Question.vue:141
|
||||
#: frontend/src/pages/QuizForm.vue:181
|
||||
#: frontend/src/pages/QuizForm.vue:182
|
||||
msgid "Add a new question"
|
||||
msgstr ""
|
||||
|
||||
@@ -150,7 +164,7 @@ msgstr ""
|
||||
msgid "Add an existing question"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:60
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:66
|
||||
msgid "Add at least one possible answer for this question: {0}"
|
||||
msgstr "حداقل یک پاسخ ممکن برای این سؤال اضافه کنید: {0}"
|
||||
|
||||
@@ -253,6 +267,14 @@ msgstr ""
|
||||
msgid "Amount Field"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:70
|
||||
msgid "Amount and currency are required for paid batches."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_course/lms_course.py:57
|
||||
msgid "Amount and currency are required for paid courses."
|
||||
msgstr ""
|
||||
|
||||
#. Label of the amount_with_gst (Currency) field in DocType 'LMS Payment'
|
||||
#: lms/lms/doctype/lms_payment/lms_payment.json
|
||||
msgid "Amount with GST"
|
||||
@@ -346,7 +368,7 @@ msgstr "نوع ارزیابی"
|
||||
msgid "Assessment added successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:75
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:80
|
||||
msgid "Assessment {0} has already been added to this batch."
|
||||
msgstr "ارزیابی {0} قبلاً به این دسته اضافه شده است."
|
||||
|
||||
@@ -397,7 +419,7 @@ msgstr "تکلیف برای درس {0} توسط {1} از قبل وجود دار
|
||||
msgid "Assignment will appear at the bottom of the lesson."
|
||||
msgstr "تکلیف زیر درس نشان داده می شود."
|
||||
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:42
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:43
|
||||
msgid "At least one option must be correct for this question."
|
||||
msgstr "حداقل یک گزینه برای این سؤال باید صحیح باشد."
|
||||
|
||||
@@ -540,7 +562,7 @@ msgstr ""
|
||||
msgid "Batch Updated"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:40
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:41
|
||||
msgid "Batch end date cannot be before the batch start date"
|
||||
msgstr ""
|
||||
|
||||
@@ -727,11 +749,11 @@ msgstr "فصل"
|
||||
msgid "Chapter Reference"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:149
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:154
|
||||
msgid "Chapter added successfully"
|
||||
msgstr "فصل با موفقیت اضافه شد"
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:193
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:198
|
||||
msgid "Chapter updated successfully"
|
||||
msgstr "فصل با موفقیت به روز شد"
|
||||
|
||||
@@ -764,7 +786,7 @@ msgstr ""
|
||||
msgid "Choices"
|
||||
msgstr "گزینهها"
|
||||
|
||||
#: frontend/src/components/Quiz.vue:578 lms/templates/quiz/quiz.html:53
|
||||
#: frontend/src/components/Quiz.vue:581 lms/templates/quiz/quiz.html:53
|
||||
msgid "Choose all answers that apply"
|
||||
msgstr "همهی پاسخهایی که صحیح هستند را انتخاب کردن کنید"
|
||||
|
||||
@@ -772,7 +794,7 @@ msgstr "همهی پاسخهایی که صحیح هستند را انتخا
|
||||
msgid "Choose an icon"
|
||||
msgstr "یک تصویر انتخاب کن"
|
||||
|
||||
#: frontend/src/components/Quiz.vue:579 lms/templates/quiz/quiz.html:53
|
||||
#: frontend/src/components/Quiz.vue:582 lms/templates/quiz/quiz.html:53
|
||||
msgid "Choose one answer"
|
||||
msgstr "یک پاسخ را انتخاب کردن کنید"
|
||||
|
||||
@@ -988,7 +1010,7 @@ msgid "Contact the Administrator to enroll for this course."
|
||||
msgstr ""
|
||||
|
||||
#. Label of the content (Text) field in DocType 'Course Lesson'
|
||||
#: frontend/src/pages/LessonForm.vue:58
|
||||
#: frontend/src/pages/LessonForm.vue:62
|
||||
#: lms/lms/doctype/course_lesson/course_lesson.json
|
||||
msgid "Content"
|
||||
msgstr "محتوا"
|
||||
@@ -1057,6 +1079,7 @@ msgstr "کشور"
|
||||
#. Label of the course (Link) field in DocType 'LMS Enrollment'
|
||||
#. Label of the course (Link) field in DocType 'LMS Exercise'
|
||||
#. Label of the course (Link) field in DocType 'LMS Mentor Request'
|
||||
#. Label of the course (Link) field in DocType 'LMS Program Course'
|
||||
#. Label of the course (Link) field in DocType 'LMS Quiz'
|
||||
#. Label of the course (Link) field in DocType 'LMS Quiz Submission'
|
||||
#. Label of the course (Link) field in DocType 'Related Courses'
|
||||
@@ -1086,6 +1109,7 @@ msgstr "کشور"
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
#: lms/lms/doctype/lms_exercise/lms_exercise.json
|
||||
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
|
||||
#: lms/lms/doctype/lms_program_course/lms_program_course.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/lms/doctype/related_courses/related_courses.json
|
||||
@@ -1114,6 +1138,7 @@ msgstr "محتوای دوره"
|
||||
#. Name of a role
|
||||
#: frontend/src/pages/ProfileRoles.vue:16
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
#: lms/lms/doctype/lms_question/lms_question.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
msgid "Course Creator"
|
||||
@@ -1184,22 +1209,33 @@ msgstr ""
|
||||
#. Label of the course_title (Data) field in DocType 'Course Chapter'
|
||||
#. Label of the course_title (Data) field in DocType 'LMS Certificate'
|
||||
#. Label of the course_title (Data) field in DocType 'LMS Certificate Request'
|
||||
#. Label of the course_title (Data) field in DocType 'LMS Program Course'
|
||||
#: lms/lms/doctype/batch_course/batch_course.json
|
||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
#: lms/lms/doctype/lms_program_course/lms_program_course.json
|
||||
msgid "Course Title"
|
||||
msgstr "عنوان دوره"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:340
|
||||
#: frontend/src/pages/ProgramForm.vue:226
|
||||
msgid "Course added to program"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:345
|
||||
msgid "Course already added to the batch."
|
||||
msgstr "دوره قبلاً به دسته اضافه شده است."
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:457
|
||||
#: frontend/src/pages/CourseForm.vue:460
|
||||
msgid "Course deleted successfully"
|
||||
msgstr "دوره با موفقیت حذف شد"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:58
|
||||
#: frontend/src/pages/ProgramForm.vue:295
|
||||
msgid "Course moved successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:59
|
||||
#: lms/lms/doctype/lms_program/lms_program.py:19
|
||||
msgid "Course {0} has already been added to this batch."
|
||||
msgstr "دوره {0} قبلاً به این دسته اضافه شده است."
|
||||
|
||||
@@ -1234,6 +1270,7 @@ msgid "Cover Image"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:9
|
||||
#: frontend/src/pages/Programs.vue:99
|
||||
msgid "Create"
|
||||
msgstr "ایجاد کردن"
|
||||
|
||||
@@ -1249,7 +1286,7 @@ msgstr ""
|
||||
msgid "Create a Batch"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:131 lms/templates/onboarding_header.html:19
|
||||
#: frontend/src/pages/Courses.vue:132 lms/templates/onboarding_header.html:19
|
||||
msgid "Create a Course"
|
||||
msgstr "ایجاد دوره"
|
||||
|
||||
@@ -1257,6 +1294,10 @@ msgstr "ایجاد دوره"
|
||||
msgid "Create a Live Class"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/OnboardingBanner.vue:27
|
||||
msgid "Create a course"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/Question.vue:31
|
||||
msgid "Create a new question"
|
||||
msgstr ""
|
||||
@@ -1360,7 +1401,7 @@ msgstr "نوع مدرک"
|
||||
|
||||
#: frontend/src/components/CourseOutline.vue:235
|
||||
#: frontend/src/components/CourseOutline.vue:293
|
||||
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:470
|
||||
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:473
|
||||
msgid "Delete"
|
||||
msgstr "حذف"
|
||||
|
||||
@@ -1368,7 +1409,7 @@ msgstr "حذف"
|
||||
msgid "Delete Chapter"
|
||||
msgstr "حذف فصل"
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:464
|
||||
#: frontend/src/pages/CourseForm.vue:467
|
||||
msgid "Delete Course"
|
||||
msgstr "حذف دوره"
|
||||
|
||||
@@ -1380,7 +1421,7 @@ msgstr "این فصل حذف شود؟"
|
||||
msgid "Delete this lesson?"
|
||||
msgstr "این درس حذف شود؟"
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:465
|
||||
#: frontend/src/pages/CourseForm.vue:468
|
||||
msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?"
|
||||
msgstr ""
|
||||
|
||||
@@ -1470,7 +1511,7 @@ msgstr "سند"
|
||||
msgid "Dream Companies"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:32
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:33
|
||||
msgid "Duplicate options found for this question."
|
||||
msgstr "گزینه های تکراری برای این سوال پیدا شد."
|
||||
|
||||
@@ -1488,7 +1529,7 @@ msgstr "مدت زمان"
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:62
|
||||
msgid "Duration (in minutes)"
|
||||
msgstr ""
|
||||
msgstr "مدت زمان (بر حسب دقیقه)"
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:58
|
||||
msgid "Duration of the live class in minutes"
|
||||
@@ -1508,7 +1549,7 @@ msgstr "ایمیل"
|
||||
#: frontend/src/components/CourseCardOverlay.vue:86
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:9
|
||||
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:65
|
||||
#: frontend/src/pages/Profile.vue:32
|
||||
#: frontend/src/pages/Profile.vue:32 frontend/src/pages/Programs.vue:55
|
||||
msgid "Edit"
|
||||
msgstr "ویرایش"
|
||||
|
||||
@@ -1521,7 +1562,7 @@ msgstr "ویرایش فصل"
|
||||
msgid "Edit Profile"
|
||||
msgstr "ویرایش نمایه"
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:180
|
||||
#: frontend/src/pages/QuizForm.vue:181
|
||||
msgid "Edit the question"
|
||||
msgstr ""
|
||||
|
||||
@@ -1582,6 +1623,15 @@ msgstr "فعال کردن صدور گواهینامه"
|
||||
msgid "Enable Google API in Google Settings to send calendar invites for evaluations."
|
||||
msgstr ""
|
||||
|
||||
#. Label of the enable_learning_paths (Check) field in DocType 'LMS Settings'
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Enable Learning Paths"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:24
|
||||
msgid "Enable this only if you want to upload a SCORM package as a chapter."
|
||||
msgstr ""
|
||||
|
||||
#. Label of the enabled (Check) field in DocType 'LMS Badge'
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "Enabled"
|
||||
@@ -1634,7 +1684,7 @@ msgstr "دانش آموزان ثبت نام شده"
|
||||
msgid "Enrolled successfully"
|
||||
msgstr "با موفقیت ثبت نام شد"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:98
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:103
|
||||
msgid "Enrollment Confirmation for the Next Training Batch"
|
||||
msgstr ""
|
||||
|
||||
@@ -1643,7 +1693,7 @@ msgstr ""
|
||||
msgid "Enrollment Count"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1702
|
||||
#: lms/lms/utils.py:1705
|
||||
msgid "Enrollment Failed"
|
||||
msgstr ""
|
||||
|
||||
@@ -1672,14 +1722,14 @@ msgid "Enter the correct answer"
|
||||
msgstr "پاسخ صحیح را وارد کنید"
|
||||
|
||||
#: frontend/src/components/Modals/AnnouncementModal.vue:105
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:154
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:161
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:197
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:159
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:166
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:202
|
||||
#: frontend/src/components/Modals/Question.vue:246
|
||||
#: frontend/src/components/Modals/Question.vue:266
|
||||
#: frontend/src/components/Modals/Question.vue:323
|
||||
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:349
|
||||
#: frontend/src/pages/QuizForm.vue:364
|
||||
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350
|
||||
#: frontend/src/pages/QuizForm.vue:365
|
||||
#: frontend/src/pages/QuizSubmission.vue:117
|
||||
msgid "Error"
|
||||
msgstr "خطا"
|
||||
@@ -1708,7 +1758,7 @@ msgstr ""
|
||||
msgid "Evaluation Request"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:82
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:87
|
||||
msgid "Evaluation end date cannot be less than the batch end date."
|
||||
msgstr ""
|
||||
|
||||
@@ -1874,7 +1924,7 @@ msgstr ""
|
||||
msgid "Flexible Time"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:462
|
||||
#: frontend/src/pages/QuizForm.vue:463
|
||||
msgid "Form to create and edit quizzes"
|
||||
msgstr ""
|
||||
|
||||
@@ -1922,7 +1972,9 @@ msgid "From Date"
|
||||
msgstr "از تاریخ"
|
||||
|
||||
#. Label of the full_name (Data) field in DocType 'Invite Request'
|
||||
#. Label of the full_name (Data) field in DocType 'LMS Program Member'
|
||||
#: lms/lms/doctype/invite_request/invite_request.json
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
#: lms/templates/signup-form.html:5
|
||||
msgid "Full Name"
|
||||
msgstr "نام و نام خانوادگی"
|
||||
@@ -1954,6 +2006,11 @@ msgstr ""
|
||||
msgid "GSTIN"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the general_tab (Tab Break) field in DocType 'LMS Settings'
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "General"
|
||||
msgstr "عمومی"
|
||||
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:18
|
||||
msgid "Generate Google Meet Link"
|
||||
msgstr "لینک Google Meet را ایجاد کنید"
|
||||
@@ -2043,7 +2100,7 @@ msgstr "سلام،"
|
||||
#. Label of the hide_private (Check) field in DocType 'User'
|
||||
#: lms/fixtures/custom_field.json
|
||||
msgid "Hide my Private Information from others"
|
||||
msgstr ""
|
||||
msgstr "مخفی کردن اطلاعات خصوصی من از دیگران"
|
||||
|
||||
#. Label of the hints (Small Text) field in DocType 'LMS Exercise'
|
||||
#: lms/lms/doctype/lms_exercise/lms_exercise.json
|
||||
@@ -2085,7 +2142,7 @@ msgstr ""
|
||||
msgid "I am unavailable"
|
||||
msgstr "من در دسترس نیستم"
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:383
|
||||
#: frontend/src/pages/QuizForm.vue:384
|
||||
msgid "ID"
|
||||
msgstr "شناسه"
|
||||
|
||||
@@ -2226,7 +2283,7 @@ msgstr ""
|
||||
|
||||
#. Label of the instructor_notes (Markdown Editor) field in DocType 'Course
|
||||
#. Lesson'
|
||||
#: frontend/src/pages/Lesson.vue:128 frontend/src/pages/LessonForm.vue:38
|
||||
#: frontend/src/pages/Lesson.vue:128 frontend/src/pages/LessonForm.vue:42
|
||||
#: lms/lms/doctype/course_lesson/course_lesson.json
|
||||
msgid "Instructor Notes"
|
||||
msgstr "یادداشت های مدرس"
|
||||
@@ -2302,7 +2359,6 @@ msgstr ""
|
||||
|
||||
#. Label of the is_scorm_package (Check) field in DocType 'Course Chapter'
|
||||
#. Label of the is_scorm_package (Check) field in DocType 'Course Lesson'
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:26
|
||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||
#: lms/lms/doctype/course_lesson/course_lesson.json
|
||||
msgid "Is SCORM Package"
|
||||
@@ -2332,6 +2388,10 @@ msgstr "صادر شده در"
|
||||
msgid "Items in Sidebar"
|
||||
msgstr "موارد موجود در نوار کناری"
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:269
|
||||
msgid "Items removed successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/signup-form.html:6
|
||||
msgid "Jane Doe"
|
||||
msgstr "جین دو"
|
||||
@@ -2531,6 +2591,21 @@ msgstr ""
|
||||
msgid "LMS Payment"
|
||||
msgstr "پرداخت LMS"
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
msgid "LMS Program"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_program_course/lms_program_course.json
|
||||
msgid "LMS Program Course"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
msgid "LMS Program Member"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_question/lms_question.json
|
||||
msgid "LMS Question"
|
||||
@@ -2590,6 +2665,7 @@ msgstr "منبع LMS"
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
#: lms/lms/doctype/lms_source/lms_source.json
|
||||
#: lms/lms/doctype/user_skill/user_skill.json
|
||||
msgid "LMS Student"
|
||||
@@ -2812,7 +2888,7 @@ msgstr "علامتگذاری به عنوان خوانده شد"
|
||||
#. Label of the marks (Int) field in DocType 'LMS Quiz Result'
|
||||
#: frontend/src/components/Modals/Question.vue:50
|
||||
#: frontend/src/components/Modals/Question.vue:96
|
||||
#: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:393
|
||||
#: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:394
|
||||
#: frontend/src/pages/QuizSubmission.vue:52
|
||||
#: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json
|
||||
#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json
|
||||
@@ -2867,6 +2943,7 @@ msgstr "متوسط:"
|
||||
#. Option for the 'Role' (Select) field in DocType 'LMS Enrollment'
|
||||
#. Label of the member (Link) field in DocType 'LMS Mentor Request'
|
||||
#. 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 Quiz Submission'
|
||||
#: frontend/src/pages/QuizSubmission.vue:27
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:77
|
||||
@@ -2881,6 +2958,7 @@ msgstr "متوسط:"
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
|
||||
#: lms/lms/doctype/lms_payment/lms_payment.json
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/lms/report/course_progress_summary/course_progress_summary.py:64
|
||||
msgid "Member"
|
||||
@@ -2930,6 +3008,14 @@ msgstr ""
|
||||
msgid "Member Type"
|
||||
msgstr "نوع عضو"
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:248
|
||||
msgid "Member added to program"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_program/lms_program.py:29
|
||||
msgid "Member {0} has already been added to this batch."
|
||||
msgstr ""
|
||||
|
||||
#. Group in LMS Batch Old's connections
|
||||
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
||||
msgid "Members"
|
||||
@@ -3002,6 +3088,10 @@ msgstr "نقطه عطف"
|
||||
msgid "Milestones"
|
||||
msgstr "نقاط عطف"
|
||||
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:48
|
||||
msgid "Minimum two options are required for multiple choice questions."
|
||||
msgstr ""
|
||||
|
||||
#. Name of a role
|
||||
#: frontend/src/pages/ProfileRoles.vue:10
|
||||
#: lms/lms/doctype/course_evaluator/course_evaluator.json
|
||||
@@ -3013,6 +3103,7 @@ msgstr "نقاط عطف"
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
#: lms/lms/doctype/lms_question/lms_question.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_source/lms_source.json
|
||||
@@ -3057,8 +3148,8 @@ msgid "My calendar"
|
||||
msgstr "تقویم من"
|
||||
|
||||
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
||||
#: frontend/src/pages/Batches.vue:30 frontend/src/pages/Courses.vue:44
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
#: frontend/src/pages/Batches.vue:30 frontend/src/pages/Courses.vue:45
|
||||
#: frontend/src/pages/Programs.vue:14 lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "New"
|
||||
msgstr "جدید"
|
||||
|
||||
@@ -3082,11 +3173,23 @@ msgstr "شغل جدید"
|
||||
msgid "New Job Applicant"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:96
|
||||
msgid "New Program"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:132
|
||||
msgid "New Program Course"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:133
|
||||
msgid "New Program Member"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:122
|
||||
msgid "New Question"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:453 frontend/src/pages/QuizForm.vue:461
|
||||
#: frontend/src/pages/QuizForm.vue:454 frontend/src/pages/QuizForm.vue:462
|
||||
#: frontend/src/pages/Quizzes.vue:18
|
||||
msgid "New Quiz"
|
||||
msgstr ""
|
||||
@@ -3149,10 +3252,14 @@ msgstr ""
|
||||
msgid "No courses created"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:146
|
||||
#: frontend/src/pages/Courses.vue:147
|
||||
msgid "No courses found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:72
|
||||
msgid "No courses in this program"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/courses_under_review.html:14
|
||||
msgid "No courses under review"
|
||||
msgstr ""
|
||||
@@ -3169,6 +3276,10 @@ msgstr ""
|
||||
msgid "No live classes scheduled"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:82
|
||||
msgid "No programs found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Quizzes.vue:56
|
||||
msgid "No quizzes found"
|
||||
msgstr ""
|
||||
@@ -3189,7 +3300,7 @@ msgstr "نه {0}"
|
||||
msgid "No {0} batches"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:106
|
||||
#: frontend/src/pages/Courses.vue:107
|
||||
msgid "No {0} courses"
|
||||
msgstr ""
|
||||
|
||||
@@ -3277,15 +3388,19 @@ msgstr ""
|
||||
msgid "Online"
|
||||
msgstr "آنلاین"
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:156
|
||||
msgid "Only courses for which self learning is disabled can be added to program."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/assignment.html:6
|
||||
msgid "Only files of type {0} will be accepted."
|
||||
msgstr "فقط فایل هایی از نوع {0} پذیرفته می شوند."
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:494 frontend/src/utils/index.js:518
|
||||
#: frontend/src/pages/CourseForm.vue:497 frontend/src/utils/index.js:518
|
||||
msgid "Only image file is allowed."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:223
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:220
|
||||
msgid "Only zip files are allowed"
|
||||
msgstr "فقط فایل های zip مجاز هستند"
|
||||
|
||||
@@ -3367,7 +3482,7 @@ msgstr ""
|
||||
#. Option for the 'User Category' (Select) field in DocType 'User'
|
||||
#: lms/fixtures/custom_field.json lms/templates/signup-form.html:28
|
||||
msgid "Others"
|
||||
msgstr "دیگران"
|
||||
msgstr "سایر"
|
||||
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.js:39
|
||||
msgid "Owner"
|
||||
@@ -3561,7 +3676,11 @@ msgstr "لطفا ایمیل خود را برای تایید بررسی کنید"
|
||||
msgid "Please click on the following button to set your new password"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:251
|
||||
#: lms/lms/utils.py:1817 lms/lms/utils.py:1821
|
||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:256
|
||||
msgid "Please enable Zoom Settings to use this feature."
|
||||
msgstr ""
|
||||
|
||||
@@ -3573,11 +3692,19 @@ msgstr "لطفا برای مشاهده این درس در این دوره ثبت
|
||||
msgid "Please ensure that you complete all the questions in {0} minutes."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:164
|
||||
msgid "Please enter a title."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:38
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:98
|
||||
msgid "Please enter a valid URL."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:176
|
||||
msgid "Please enter a valid time in the format HH:mm."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:92
|
||||
msgid "Please enter the URL for assignment submission."
|
||||
msgstr ""
|
||||
@@ -3586,11 +3713,11 @@ msgstr ""
|
||||
msgid "Please enter your answer"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:65
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:66
|
||||
msgid "Please install the Payments app to create a paid batches."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_course/lms_course.py:52
|
||||
#: lms/lms/doctype/lms_course/lms_course.py:53
|
||||
msgid "Please install the Payments app to create a paid courses."
|
||||
msgstr ""
|
||||
|
||||
@@ -3615,11 +3742,31 @@ msgstr ""
|
||||
msgid "Please prepare well and be on time for the evaluations."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:167
|
||||
msgid "Please select a date."
|
||||
msgstr "لطفا تاریخ را انتخاب کنید"
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:191
|
||||
msgid "Please select a duration."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:188
|
||||
msgid "Please select a future date and time."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:170
|
||||
msgid "Please select a time."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:173
|
||||
msgid "Please select a timezone."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/emails/job_report.html:6
|
||||
msgid "Please take appropriate action at {0}"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:172
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:177
|
||||
msgid "Please upload a SCORM package"
|
||||
msgstr ""
|
||||
|
||||
@@ -3756,8 +3903,30 @@ msgstr ""
|
||||
msgid "Profile Image"
|
||||
msgstr "عکس پروفایل"
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:154
|
||||
msgid "Program Course"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the program_courses (Table) field in DocType 'LMS Program'
|
||||
#: frontend/src/pages/ProgramForm.vue:17
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
msgid "Program Courses"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:169
|
||||
msgid "Program Member"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the program_members (Table) field in DocType 'LMS Program'
|
||||
#: frontend/src/pages/ProgramForm.vue:78
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
msgid "Program Members"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the progress (Float) field in DocType 'LMS Enrollment'
|
||||
#. Label of the progress (Int) field in DocType 'LMS Program Member'
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
msgid "Progress"
|
||||
msgstr "پیشرفت"
|
||||
|
||||
@@ -3807,7 +3976,7 @@ msgstr "منتشر شده در"
|
||||
#. Label of the question (Text) field in DocType 'LMS Quiz Result'
|
||||
#: frontend/src/components/Modals/Question.vue:38
|
||||
#: frontend/src/pages/AssignmentSubmission.vue:26
|
||||
#: frontend/src/pages/QuizForm.vue:388
|
||||
#: frontend/src/pages/QuizForm.vue:389
|
||||
#: lms/lms/doctype/course_lesson/course_lesson.json
|
||||
#: lms/lms/doctype/lms_assignment/lms_assignment.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
@@ -3853,7 +4022,7 @@ msgstr "سوال {0} از {1}"
|
||||
msgid "Questions"
|
||||
msgstr "سوالات"
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:430
|
||||
#: frontend/src/pages/QuizForm.vue:431
|
||||
msgid "Questions deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -3891,7 +4060,7 @@ msgstr ""
|
||||
msgid "Quiz Title"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:342
|
||||
#: frontend/src/pages/QuizForm.vue:343
|
||||
msgid "Quiz created successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -3899,7 +4068,7 @@ msgstr ""
|
||||
msgid "Quiz is not available to Guest users. Please login to continue."
|
||||
msgstr "آزمون برای کاربران مهمان در دسترس نیست. لطفا برای ادامه وارد شوید."
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:361
|
||||
#: frontend/src/pages/QuizForm.vue:362
|
||||
msgid "Quiz updated successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -3908,7 +4077,7 @@ msgstr ""
|
||||
msgid "Quiz will appear at the bottom of the lesson."
|
||||
msgstr "تکلیف زیر درس نشان داده می شود."
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:441 frontend/src/pages/Quizzes.vue:136
|
||||
#: frontend/src/pages/QuizForm.vue:442 frontend/src/pages/Quizzes.vue:136
|
||||
#: frontend/src/pages/Quizzes.vue:146
|
||||
msgid "Quizzes"
|
||||
msgstr ""
|
||||
@@ -4065,19 +4234,19 @@ msgstr ""
|
||||
msgid "Route"
|
||||
msgstr "مسیر"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:194
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:199
|
||||
msgid "Row #{0} Date cannot be outside the batch duration."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:189
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:194
|
||||
msgid "Row #{0} End time cannot be outside the batch duration."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:171
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:176
|
||||
msgid "Row #{0} Start time cannot be greater than or equal to end time."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:180
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:185
|
||||
msgid "Row #{0} Start time cannot be outside the batch duration."
|
||||
msgstr ""
|
||||
|
||||
@@ -4095,6 +4264,7 @@ msgid "SCORM"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the scorm_package (Link) field in DocType 'Course Chapter'
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:22
|
||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||
msgid "SCORM Package"
|
||||
msgstr ""
|
||||
@@ -4117,8 +4287,9 @@ msgstr "شنبه"
|
||||
#: frontend/src/components/QuizPlugin.vue:23
|
||||
#: frontend/src/pages/AssignmentSubmission.vue:7
|
||||
#: frontend/src/pages/BatchForm.vue:8 frontend/src/pages/CourseForm.vue:20
|
||||
#: frontend/src/pages/JobCreation.vue:8 frontend/src/pages/LessonForm.vue:10
|
||||
#: frontend/src/pages/QuizForm.vue:34 frontend/src/pages/QuizSubmission.vue:14
|
||||
#: frontend/src/pages/JobCreation.vue:8 frontend/src/pages/LessonForm.vue:14
|
||||
#: frontend/src/pages/ProgramForm.vue:7 frontend/src/pages/QuizForm.vue:34
|
||||
#: frontend/src/pages/QuizSubmission.vue:14
|
||||
#: lms/public/js/common_functions.js:405
|
||||
msgid "Save"
|
||||
msgstr "ذخیره"
|
||||
@@ -4334,6 +4505,10 @@ msgstr ""
|
||||
msgid "Skip"
|
||||
msgstr "پرش کنید"
|
||||
|
||||
#: frontend/src/components/OnboardingBanner.vue:3
|
||||
msgid "Skip Onboarding"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/course_evaluator/course_evaluator.py:57
|
||||
msgid "Slot Times are overlapping for some schedules."
|
||||
msgstr ""
|
||||
@@ -4507,7 +4682,7 @@ msgstr "اسم دانشآموز"
|
||||
msgid "Student Reviews"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:47
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:48
|
||||
msgid "Student {0} has already been added to this batch."
|
||||
msgstr "دانشآموز {0} قبلاً به این دسته اضافه شده است."
|
||||
|
||||
@@ -4575,14 +4750,17 @@ msgstr ""
|
||||
#: frontend/src/components/CourseCardOverlay.vue:161
|
||||
#: frontend/src/components/Modals/AnnouncementModal.vue:99
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:73
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:148
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:193
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:153
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:198
|
||||
#: frontend/src/components/Modals/Event.vue:255
|
||||
#: frontend/src/components/Modals/Event.vue:310
|
||||
#: frontend/src/components/Modals/Question.vue:261
|
||||
#: frontend/src/components/Modals/Question.vue:312
|
||||
#: frontend/src/pages/CourseForm.vue:457 frontend/src/pages/QuizForm.vue:342
|
||||
#: frontend/src/pages/QuizForm.vue:361 frontend/src/pages/QuizForm.vue:430
|
||||
#: frontend/src/pages/CourseForm.vue:460 frontend/src/pages/ProgramForm.vue:226
|
||||
#: frontend/src/pages/ProgramForm.vue:248
|
||||
#: frontend/src/pages/ProgramForm.vue:269
|
||||
#: frontend/src/pages/ProgramForm.vue:295 frontend/src/pages/QuizForm.vue:343
|
||||
#: frontend/src/pages/QuizForm.vue:362 frontend/src/pages/QuizForm.vue:431
|
||||
msgid "Success"
|
||||
msgstr "موفقیت"
|
||||
|
||||
@@ -4637,6 +4815,7 @@ msgstr "یکشنبه"
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
|
||||
#: lms/lms/doctype/lms_payment/lms_payment.json
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
#: lms/lms/doctype/lms_question/lms_question.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
@@ -4737,11 +4916,15 @@ msgstr ""
|
||||
msgid "There are no chapters in this course. Create and manage chapters from here."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:150
|
||||
#: frontend/src/pages/Courses.vue:151
|
||||
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:141
|
||||
#: frontend/src/pages/Programs.vue:86
|
||||
msgid "There are no programs available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:146
|
||||
msgid "There are no seats available in this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -4772,11 +4955,11 @@ msgstr ""
|
||||
msgid "This course has:"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1582
|
||||
#: lms/lms/utils.py:1585
|
||||
msgid "This course is free."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/SCORMChapter.vue:198
|
||||
#: frontend/src/pages/SCORMChapter.vue:197
|
||||
msgid "This is a chapter in the course {0}"
|
||||
msgstr "این یک فصل از دوره {0} است"
|
||||
|
||||
@@ -4868,6 +5051,7 @@ msgstr ""
|
||||
#. Label of the title (Data) field in DocType 'LMS Course'
|
||||
#. Label of the title (Data) field in DocType 'LMS Exercise'
|
||||
#. Label of the title (Data) field in DocType 'LMS Live Class'
|
||||
#. Label of the title (Data) field in DocType 'LMS Program'
|
||||
#. Label of the title (Data) field in DocType 'LMS Quiz'
|
||||
#. Label of the title (Data) field in DocType 'LMS Sidebar Item'
|
||||
#. Label of the title (Data) field in DocType 'LMS Timetable Template'
|
||||
@@ -4875,7 +5059,8 @@ msgstr ""
|
||||
#: frontend/src/components/Modals/DiscussionModal.vue:18
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:23
|
||||
#: frontend/src/pages/BatchForm.vue:20 frontend/src/pages/CourseForm.vue:32
|
||||
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/QuizForm.vue:48
|
||||
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/ProgramForm.vue:11
|
||||
#: frontend/src/pages/Programs.vue:107 frontend/src/pages/QuizForm.vue:48
|
||||
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
|
||||
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
|
||||
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json
|
||||
@@ -4888,6 +5073,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_exercise/lms_exercise.json
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_sidebar_item/lms_sidebar_item.json
|
||||
#: lms/lms/doctype/lms_timetable_template/lms_timetable_template.json
|
||||
@@ -4896,7 +5082,7 @@ msgstr ""
|
||||
msgid "Title"
|
||||
msgstr "عنوان"
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:169
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:174
|
||||
msgid "Title is required"
|
||||
msgstr "عنوان الزامی است"
|
||||
|
||||
@@ -4911,7 +5097,7 @@ msgstr "به"
|
||||
msgid "To Date"
|
||||
msgstr "تا تاریخ"
|
||||
|
||||
#: lms/lms/utils.py:1593
|
||||
#: lms/lms/utils.py:1596
|
||||
msgid "To join this batch, please contact the Administrator."
|
||||
msgstr ""
|
||||
|
||||
@@ -4941,7 +5127,7 @@ msgstr ""
|
||||
#. Option for the 'Location Preference' (Select) field in DocType 'User'
|
||||
#: lms/fixtures/custom_field.json
|
||||
msgid "Travel"
|
||||
msgstr "مسافرت رفتن"
|
||||
msgstr "سفر"
|
||||
|
||||
#: frontend/src/components/Quiz.vue:252 lms/templates/quiz/quiz.html:131
|
||||
msgid "Try Again"
|
||||
@@ -4975,7 +5161,7 @@ msgstr "توییتر"
|
||||
msgid "Type"
|
||||
msgstr "نوع"
|
||||
|
||||
#: frontend/src/components/Quiz.vue:580
|
||||
#: frontend/src/components/Quiz.vue:583
|
||||
msgid "Type your answer"
|
||||
msgstr ""
|
||||
|
||||
@@ -5259,7 +5445,7 @@ msgstr "شما ثبت نام نکرده اید"
|
||||
msgid "You are not enrolled in this course. Please enroll to access this lesson."
|
||||
msgstr "شما در این دوره ثبت نام نکرده اید. لطفا برای دسترسی به این دوره ثبت نام کنید."
|
||||
|
||||
#: frontend/src/pages/Courses.vue:134
|
||||
#: frontend/src/pages/Courses.vue:135
|
||||
msgid "You can add chapters and lessons to it."
|
||||
msgstr ""
|
||||
|
||||
@@ -5431,6 +5617,10 @@ msgstr "صادر شده در"
|
||||
msgid "jane@example.com"
|
||||
msgstr "jane@example.com"
|
||||
|
||||
#: frontend/src/pages/Programs.vue:32
|
||||
msgid "members"
|
||||
msgstr "اعضا"
|
||||
|
||||
#: lms/templates/quiz/quiz.html:106
|
||||
msgid "of"
|
||||
msgstr "از"
|
||||
@@ -5443,7 +5633,7 @@ msgstr "از"
|
||||
msgid "posted by"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:389
|
||||
#: frontend/src/pages/QuizForm.vue:390
|
||||
msgid "question_detail"
|
||||
msgstr ""
|
||||
|
||||
@@ -5475,7 +5665,7 @@ msgstr ""
|
||||
msgid "{0} has submitted the assignment {1}"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.py:53
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.py:57
|
||||
msgid "{0} is already a Student of {1} course through {2} batch"
|
||||
msgstr ""
|
||||
|
||||
@@ -5483,7 +5673,7 @@ msgstr ""
|
||||
msgid "{0} is already a mentor for course {1}"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.py:26
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.py:30
|
||||
msgid "{0} is already a {1} of the course {2}"
|
||||
msgstr ""
|
||||
|
||||
|
||||
340
lms/locale/fr.po
340
lms/locale/fr.po
@@ -2,8 +2,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: frappe\n"
|
||||
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
||||
"POT-Creation-Date: 2024-11-15 16:04+0000\n"
|
||||
"PO-Revision-Date: 2024-11-18 17:31\n"
|
||||
"POT-Creation-Date: 2024-11-22 16:05+0000\n"
|
||||
"PO-Revision-Date: 2024-11-25 19:28\n"
|
||||
"Last-Translator: jannat@frappe.io\n"
|
||||
"Language-Team: French\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -22,6 +22,11 @@ msgstr ""
|
||||
msgid " Please evaluate and grade it."
|
||||
msgstr " Veuillez l'évaluer et le noter."
|
||||
|
||||
#: frontend/src/pages/Programs.vue:41
|
||||
#, python-format
|
||||
msgid "% completed"
|
||||
msgstr "% complété"
|
||||
|
||||
#. Paragraph text in the LMS Workspace
|
||||
#: lms/lms/workspace/lms/lms.json
|
||||
msgid "<a href=\"/app/lms-settings/LMS%20Settings\">LMS Settings</a>"
|
||||
@@ -99,7 +104,8 @@ msgstr "actif"
|
||||
#: frontend/src/components/BatchStudents.vue:6
|
||||
#: frontend/src/components/Categories.vue:26
|
||||
#: frontend/src/components/LiveClass.vue:11
|
||||
#: frontend/src/components/Members.vue:43
|
||||
#: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30
|
||||
#: frontend/src/pages/ProgramForm.vue:91 frontend/src/pages/ProgramForm.vue:136
|
||||
msgid "Add"
|
||||
msgstr "Ajouter"
|
||||
|
||||
@@ -129,12 +135,20 @@ msgstr "Ajouter une leçon"
|
||||
msgid "Add a Student"
|
||||
msgstr "Ajouter un élève"
|
||||
|
||||
#: frontend/src/components/OnboardingBanner.vue:50
|
||||
msgid "Add a chapter"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/BatchCourseModal.vue:5
|
||||
msgid "Add a course"
|
||||
msgstr "Ajouter un cours"
|
||||
|
||||
#: frontend/src/components/OnboardingBanner.vue:73
|
||||
msgid "Add a lesson"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/Question.vue:141
|
||||
#: frontend/src/pages/QuizForm.vue:181
|
||||
#: frontend/src/pages/QuizForm.vue:182
|
||||
msgid "Add a new question"
|
||||
msgstr ""
|
||||
|
||||
@@ -150,7 +164,7 @@ msgstr ""
|
||||
msgid "Add an existing question"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:60
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:66
|
||||
msgid "Add at least one possible answer for this question: {0}"
|
||||
msgstr "Ajoutez au moins une réponse possible à cette question : {0}"
|
||||
|
||||
@@ -253,6 +267,14 @@ msgstr ""
|
||||
msgid "Amount Field"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:70
|
||||
msgid "Amount and currency are required for paid batches."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_course/lms_course.py:57
|
||||
msgid "Amount and currency are required for paid courses."
|
||||
msgstr ""
|
||||
|
||||
#. Label of the amount_with_gst (Currency) field in DocType 'LMS Payment'
|
||||
#: lms/lms/doctype/lms_payment/lms_payment.json
|
||||
msgid "Amount with GST"
|
||||
@@ -346,7 +368,7 @@ msgstr "Type d'évaluation"
|
||||
msgid "Assessment added successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:75
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:80
|
||||
msgid "Assessment {0} has already been added to this batch."
|
||||
msgstr "L'évaluation {0} a déjà été ajoutée à ce lot."
|
||||
|
||||
@@ -397,7 +419,7 @@ msgstr "Le devoir pour la leçon {0} de {1} existe déjà."
|
||||
msgid "Assignment will appear at the bottom of the lesson."
|
||||
msgstr "Le devoir apparaîtra au bas de la leçon."
|
||||
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:42
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:43
|
||||
msgid "At least one option must be correct for this question."
|
||||
msgstr "Au moins une option doit être correcte pour cette question."
|
||||
|
||||
@@ -540,7 +562,7 @@ msgstr ""
|
||||
msgid "Batch Updated"
|
||||
msgstr "Lot mis à jour"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:40
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:41
|
||||
msgid "Batch end date cannot be before the batch start date"
|
||||
msgstr ""
|
||||
|
||||
@@ -727,11 +749,11 @@ msgstr "Chapitre"
|
||||
msgid "Chapter Reference"
|
||||
msgstr "Référence de chapitre"
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:149
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:154
|
||||
msgid "Chapter added successfully"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:193
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:198
|
||||
msgid "Chapter updated successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -764,7 +786,7 @@ msgstr "Cours de vérification"
|
||||
msgid "Choices"
|
||||
msgstr "Choix"
|
||||
|
||||
#: frontend/src/components/Quiz.vue:578 lms/templates/quiz/quiz.html:53
|
||||
#: frontend/src/components/Quiz.vue:581 lms/templates/quiz/quiz.html:53
|
||||
msgid "Choose all answers that apply"
|
||||
msgstr "Choisissez toutes les réponses qui s'appliquent"
|
||||
|
||||
@@ -772,7 +794,7 @@ msgstr "Choisissez toutes les réponses qui s'appliquent"
|
||||
msgid "Choose an icon"
|
||||
msgstr "Choisir une icône"
|
||||
|
||||
#: frontend/src/components/Quiz.vue:579 lms/templates/quiz/quiz.html:53
|
||||
#: frontend/src/components/Quiz.vue:582 lms/templates/quiz/quiz.html:53
|
||||
msgid "Choose one answer"
|
||||
msgstr "Choisissez une réponse"
|
||||
|
||||
@@ -988,7 +1010,7 @@ msgid "Contact the Administrator to enroll for this course."
|
||||
msgstr ""
|
||||
|
||||
#. Label of the content (Text) field in DocType 'Course Lesson'
|
||||
#: frontend/src/pages/LessonForm.vue:58
|
||||
#: frontend/src/pages/LessonForm.vue:62
|
||||
#: lms/lms/doctype/course_lesson/course_lesson.json
|
||||
msgid "Content"
|
||||
msgstr "Contenu"
|
||||
@@ -1057,6 +1079,7 @@ msgstr "Pays"
|
||||
#. Label of the course (Link) field in DocType 'LMS Enrollment'
|
||||
#. Label of the course (Link) field in DocType 'LMS Exercise'
|
||||
#. Label of the course (Link) field in DocType 'LMS Mentor Request'
|
||||
#. Label of the course (Link) field in DocType 'LMS Program Course'
|
||||
#. Label of the course (Link) field in DocType 'LMS Quiz'
|
||||
#. Label of the course (Link) field in DocType 'LMS Quiz Submission'
|
||||
#. Label of the course (Link) field in DocType 'Related Courses'
|
||||
@@ -1086,6 +1109,7 @@ msgstr "Pays"
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
#: lms/lms/doctype/lms_exercise/lms_exercise.json
|
||||
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
|
||||
#: lms/lms/doctype/lms_program_course/lms_program_course.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/lms/doctype/related_courses/related_courses.json
|
||||
@@ -1114,6 +1138,7 @@ msgstr "Contenu du cours"
|
||||
#. Name of a role
|
||||
#: frontend/src/pages/ProfileRoles.vue:16
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
#: lms/lms/doctype/lms_question/lms_question.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
msgid "Course Creator"
|
||||
@@ -1184,22 +1209,33 @@ msgstr "Statistiques du cours"
|
||||
#. Label of the course_title (Data) field in DocType 'Course Chapter'
|
||||
#. Label of the course_title (Data) field in DocType 'LMS Certificate'
|
||||
#. Label of the course_title (Data) field in DocType 'LMS Certificate Request'
|
||||
#. Label of the course_title (Data) field in DocType 'LMS Program Course'
|
||||
#: lms/lms/doctype/batch_course/batch_course.json
|
||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
#: lms/lms/doctype/lms_program_course/lms_program_course.json
|
||||
msgid "Course Title"
|
||||
msgstr "Titre du cours"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:340
|
||||
#: frontend/src/pages/ProgramForm.vue:226
|
||||
msgid "Course added to program"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:345
|
||||
msgid "Course already added to the batch."
|
||||
msgstr "Cours déjà ajouté au lot."
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:457
|
||||
#: frontend/src/pages/CourseForm.vue:460
|
||||
msgid "Course deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:58
|
||||
#: frontend/src/pages/ProgramForm.vue:295
|
||||
msgid "Course moved successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:59
|
||||
#: lms/lms/doctype/lms_program/lms_program.py:19
|
||||
msgid "Course {0} has already been added to this batch."
|
||||
msgstr "Le cours {0} a déjà été ajouté à ce lot."
|
||||
|
||||
@@ -1234,6 +1270,7 @@ msgid "Cover Image"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:9
|
||||
#: frontend/src/pages/Programs.vue:99
|
||||
msgid "Create"
|
||||
msgstr "Créer"
|
||||
|
||||
@@ -1249,7 +1286,7 @@ msgstr "Créer une évaluation de certificat LMS"
|
||||
msgid "Create a Batch"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:131 lms/templates/onboarding_header.html:19
|
||||
#: frontend/src/pages/Courses.vue:132 lms/templates/onboarding_header.html:19
|
||||
msgid "Create a Course"
|
||||
msgstr "Créer un cours"
|
||||
|
||||
@@ -1257,6 +1294,10 @@ msgstr "Créer un cours"
|
||||
msgid "Create a Live Class"
|
||||
msgstr "Créer une classe en direct"
|
||||
|
||||
#: frontend/src/components/OnboardingBanner.vue:27
|
||||
msgid "Create a course"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/Question.vue:31
|
||||
msgid "Create a new question"
|
||||
msgstr ""
|
||||
@@ -1360,7 +1401,7 @@ msgstr "Type de diplôme"
|
||||
|
||||
#: frontend/src/components/CourseOutline.vue:235
|
||||
#: frontend/src/components/CourseOutline.vue:293
|
||||
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:470
|
||||
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:473
|
||||
msgid "Delete"
|
||||
msgstr "Supprimer"
|
||||
|
||||
@@ -1368,7 +1409,7 @@ msgstr "Supprimer"
|
||||
msgid "Delete Chapter"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:464
|
||||
#: frontend/src/pages/CourseForm.vue:467
|
||||
msgid "Delete Course"
|
||||
msgstr ""
|
||||
|
||||
@@ -1380,7 +1421,7 @@ msgstr ""
|
||||
msgid "Delete this lesson?"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:465
|
||||
#: frontend/src/pages/CourseForm.vue:468
|
||||
msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?"
|
||||
msgstr ""
|
||||
|
||||
@@ -1470,7 +1511,7 @@ msgstr "Document"
|
||||
msgid "Dream Companies"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:32
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:33
|
||||
msgid "Duplicate options found for this question."
|
||||
msgstr ""
|
||||
|
||||
@@ -1508,7 +1549,7 @@ msgstr ""
|
||||
#: frontend/src/components/CourseCardOverlay.vue:86
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:9
|
||||
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:65
|
||||
#: frontend/src/pages/Profile.vue:32
|
||||
#: frontend/src/pages/Profile.vue:32 frontend/src/pages/Programs.vue:55
|
||||
msgid "Edit"
|
||||
msgstr "modifier"
|
||||
|
||||
@@ -1521,7 +1562,7 @@ msgstr ""
|
||||
msgid "Edit Profile"
|
||||
msgstr "Modifier le Profil"
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:180
|
||||
#: frontend/src/pages/QuizForm.vue:181
|
||||
msgid "Edit the question"
|
||||
msgstr ""
|
||||
|
||||
@@ -1582,6 +1623,15 @@ msgstr ""
|
||||
msgid "Enable Google API in Google Settings to send calendar invites for evaluations."
|
||||
msgstr ""
|
||||
|
||||
#. Label of the enable_learning_paths (Check) field in DocType 'LMS Settings'
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Enable Learning Paths"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:24
|
||||
msgid "Enable this only if you want to upload a SCORM package as a chapter."
|
||||
msgstr ""
|
||||
|
||||
#. Label of the enabled (Check) field in DocType 'LMS Badge'
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "Enabled"
|
||||
@@ -1634,7 +1684,7 @@ msgstr ""
|
||||
msgid "Enrolled successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:98
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:103
|
||||
msgid "Enrollment Confirmation for the Next Training Batch"
|
||||
msgstr ""
|
||||
|
||||
@@ -1643,7 +1693,7 @@ msgstr ""
|
||||
msgid "Enrollment Count"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1702
|
||||
#: lms/lms/utils.py:1705
|
||||
msgid "Enrollment Failed"
|
||||
msgstr ""
|
||||
|
||||
@@ -1672,14 +1722,14 @@ msgid "Enter the correct answer"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/AnnouncementModal.vue:105
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:154
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:161
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:197
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:159
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:166
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:202
|
||||
#: frontend/src/components/Modals/Question.vue:246
|
||||
#: frontend/src/components/Modals/Question.vue:266
|
||||
#: frontend/src/components/Modals/Question.vue:323
|
||||
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:349
|
||||
#: frontend/src/pages/QuizForm.vue:364
|
||||
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350
|
||||
#: frontend/src/pages/QuizForm.vue:365
|
||||
#: frontend/src/pages/QuizSubmission.vue:117
|
||||
msgid "Error"
|
||||
msgstr "Erreur"
|
||||
@@ -1708,7 +1758,7 @@ msgstr ""
|
||||
msgid "Evaluation Request"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:82
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:87
|
||||
msgid "Evaluation end date cannot be less than the batch end date."
|
||||
msgstr ""
|
||||
|
||||
@@ -1874,7 +1924,7 @@ msgstr ""
|
||||
msgid "Flexible Time"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:462
|
||||
#: frontend/src/pages/QuizForm.vue:463
|
||||
msgid "Form to create and edit quizzes"
|
||||
msgstr ""
|
||||
|
||||
@@ -1922,7 +1972,9 @@ msgid "From Date"
|
||||
msgstr "A partir du"
|
||||
|
||||
#. Label of the full_name (Data) field in DocType 'Invite Request'
|
||||
#. Label of the full_name (Data) field in DocType 'LMS Program Member'
|
||||
#: lms/lms/doctype/invite_request/invite_request.json
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
#: lms/templates/signup-form.html:5
|
||||
msgid "Full Name"
|
||||
msgstr "Nom Complet"
|
||||
@@ -1954,6 +2006,11 @@ msgstr ""
|
||||
msgid "GSTIN"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the general_tab (Tab Break) field in DocType 'LMS Settings'
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "General"
|
||||
msgstr "Général"
|
||||
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:18
|
||||
msgid "Generate Google Meet Link"
|
||||
msgstr ""
|
||||
@@ -2085,7 +2142,7 @@ msgstr ""
|
||||
msgid "I am unavailable"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:383
|
||||
#: frontend/src/pages/QuizForm.vue:384
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
@@ -2226,7 +2283,7 @@ msgstr ""
|
||||
|
||||
#. Label of the instructor_notes (Markdown Editor) field in DocType 'Course
|
||||
#. Lesson'
|
||||
#: frontend/src/pages/Lesson.vue:128 frontend/src/pages/LessonForm.vue:38
|
||||
#: frontend/src/pages/Lesson.vue:128 frontend/src/pages/LessonForm.vue:42
|
||||
#: lms/lms/doctype/course_lesson/course_lesson.json
|
||||
msgid "Instructor Notes"
|
||||
msgstr ""
|
||||
@@ -2302,7 +2359,6 @@ msgstr ""
|
||||
|
||||
#. Label of the is_scorm_package (Check) field in DocType 'Course Chapter'
|
||||
#. Label of the is_scorm_package (Check) field in DocType 'Course Lesson'
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:26
|
||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||
#: lms/lms/doctype/course_lesson/course_lesson.json
|
||||
msgid "Is SCORM Package"
|
||||
@@ -2332,6 +2388,10 @@ msgstr ""
|
||||
msgid "Items in Sidebar"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:269
|
||||
msgid "Items removed successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/signup-form.html:6
|
||||
msgid "Jane Doe"
|
||||
msgstr ""
|
||||
@@ -2531,6 +2591,21 @@ msgstr ""
|
||||
msgid "LMS Payment"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
msgid "LMS Program"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_program_course/lms_program_course.json
|
||||
msgid "LMS Program Course"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
msgid "LMS Program Member"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_question/lms_question.json
|
||||
msgid "LMS Question"
|
||||
@@ -2590,6 +2665,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
#: lms/lms/doctype/lms_source/lms_source.json
|
||||
#: lms/lms/doctype/user_skill/user_skill.json
|
||||
msgid "LMS Student"
|
||||
@@ -2812,7 +2888,7 @@ msgstr ""
|
||||
#. Label of the marks (Int) field in DocType 'LMS Quiz Result'
|
||||
#: frontend/src/components/Modals/Question.vue:50
|
||||
#: frontend/src/components/Modals/Question.vue:96
|
||||
#: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:393
|
||||
#: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:394
|
||||
#: frontend/src/pages/QuizSubmission.vue:52
|
||||
#: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json
|
||||
#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json
|
||||
@@ -2867,6 +2943,7 @@ msgstr "Moyen:"
|
||||
#. Option for the 'Role' (Select) field in DocType 'LMS Enrollment'
|
||||
#. Label of the member (Link) field in DocType 'LMS Mentor Request'
|
||||
#. 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 Quiz Submission'
|
||||
#: frontend/src/pages/QuizSubmission.vue:27
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:77
|
||||
@@ -2881,6 +2958,7 @@ msgstr "Moyen:"
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
|
||||
#: lms/lms/doctype/lms_payment/lms_payment.json
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/lms/report/course_progress_summary/course_progress_summary.py:64
|
||||
msgid "Member"
|
||||
@@ -2930,6 +3008,14 @@ msgstr ""
|
||||
msgid "Member Type"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:248
|
||||
msgid "Member added to program"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_program/lms_program.py:29
|
||||
msgid "Member {0} has already been added to this batch."
|
||||
msgstr ""
|
||||
|
||||
#. Group in LMS Batch Old's connections
|
||||
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
||||
msgid "Members"
|
||||
@@ -3002,6 +3088,10 @@ msgstr "Étape importante"
|
||||
msgid "Milestones"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:48
|
||||
msgid "Minimum two options are required for multiple choice questions."
|
||||
msgstr ""
|
||||
|
||||
#. Name of a role
|
||||
#: frontend/src/pages/ProfileRoles.vue:10
|
||||
#: lms/lms/doctype/course_evaluator/course_evaluator.json
|
||||
@@ -3013,6 +3103,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
#: lms/lms/doctype/lms_question/lms_question.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_source/lms_source.json
|
||||
@@ -3057,8 +3148,8 @@ msgid "My calendar"
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
||||
#: frontend/src/pages/Batches.vue:30 frontend/src/pages/Courses.vue:44
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
#: frontend/src/pages/Batches.vue:30 frontend/src/pages/Courses.vue:45
|
||||
#: frontend/src/pages/Programs.vue:14 lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "New"
|
||||
msgstr "Nouveau"
|
||||
|
||||
@@ -3082,11 +3173,23 @@ msgstr ""
|
||||
msgid "New Job Applicant"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:96
|
||||
msgid "New Program"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:132
|
||||
msgid "New Program Course"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:133
|
||||
msgid "New Program Member"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:122
|
||||
msgid "New Question"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:453 frontend/src/pages/QuizForm.vue:461
|
||||
#: frontend/src/pages/QuizForm.vue:454 frontend/src/pages/QuizForm.vue:462
|
||||
#: frontend/src/pages/Quizzes.vue:18
|
||||
msgid "New Quiz"
|
||||
msgstr ""
|
||||
@@ -3149,10 +3252,14 @@ msgstr ""
|
||||
msgid "No courses created"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:146
|
||||
#: frontend/src/pages/Courses.vue:147
|
||||
msgid "No courses found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:72
|
||||
msgid "No courses in this program"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/courses_under_review.html:14
|
||||
msgid "No courses under review"
|
||||
msgstr ""
|
||||
@@ -3169,6 +3276,10 @@ msgstr ""
|
||||
msgid "No live classes scheduled"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:82
|
||||
msgid "No programs found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Quizzes.vue:56
|
||||
msgid "No quizzes found"
|
||||
msgstr ""
|
||||
@@ -3189,7 +3300,7 @@ msgstr ""
|
||||
msgid "No {0} batches"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:106
|
||||
#: frontend/src/pages/Courses.vue:107
|
||||
msgid "No {0} courses"
|
||||
msgstr ""
|
||||
|
||||
@@ -3277,15 +3388,19 @@ msgstr ""
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:156
|
||||
msgid "Only courses for which self learning is disabled can be added to program."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/assignment.html:6
|
||||
msgid "Only files of type {0} will be accepted."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:494 frontend/src/utils/index.js:518
|
||||
#: frontend/src/pages/CourseForm.vue:497 frontend/src/utils/index.js:518
|
||||
msgid "Only image file is allowed."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:223
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:220
|
||||
msgid "Only zip files are allowed"
|
||||
msgstr ""
|
||||
|
||||
@@ -3561,7 +3676,11 @@ msgstr "Veuillez vérifier votre email pour validation"
|
||||
msgid "Please click on the following button to set your new password"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:251
|
||||
#: lms/lms/utils.py:1817 lms/lms/utils.py:1821
|
||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:256
|
||||
msgid "Please enable Zoom Settings to use this feature."
|
||||
msgstr ""
|
||||
|
||||
@@ -3573,11 +3692,19 @@ msgstr ""
|
||||
msgid "Please ensure that you complete all the questions in {0} minutes."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:164
|
||||
msgid "Please enter a title."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:38
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:98
|
||||
msgid "Please enter a valid URL."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:176
|
||||
msgid "Please enter a valid time in the format HH:mm."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:92
|
||||
msgid "Please enter the URL for assignment submission."
|
||||
msgstr ""
|
||||
@@ -3586,11 +3713,11 @@ msgstr ""
|
||||
msgid "Please enter your answer"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:65
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:66
|
||||
msgid "Please install the Payments app to create a paid batches."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_course/lms_course.py:52
|
||||
#: lms/lms/doctype/lms_course/lms_course.py:53
|
||||
msgid "Please install the Payments app to create a paid courses."
|
||||
msgstr ""
|
||||
|
||||
@@ -3615,11 +3742,31 @@ msgstr ""
|
||||
msgid "Please prepare well and be on time for the evaluations."
|
||||
msgstr "Veuillez bien vous préparer et être à temps pour les évaluations."
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:167
|
||||
msgid "Please select a date."
|
||||
msgstr "Veuillez sélectionner une date."
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:191
|
||||
msgid "Please select a duration."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:188
|
||||
msgid "Please select a future date and time."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:170
|
||||
msgid "Please select a time."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:173
|
||||
msgid "Please select a timezone."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/emails/job_report.html:6
|
||||
msgid "Please take appropriate action at {0}"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:172
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:177
|
||||
msgid "Please upload a SCORM package"
|
||||
msgstr ""
|
||||
|
||||
@@ -3756,8 +3903,30 @@ msgstr ""
|
||||
msgid "Profile Image"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:154
|
||||
msgid "Program Course"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the program_courses (Table) field in DocType 'LMS Program'
|
||||
#: frontend/src/pages/ProgramForm.vue:17
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
msgid "Program Courses"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:169
|
||||
msgid "Program Member"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the program_members (Table) field in DocType 'LMS Program'
|
||||
#: frontend/src/pages/ProgramForm.vue:78
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
msgid "Program Members"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the progress (Float) field in DocType 'LMS Enrollment'
|
||||
#. Label of the progress (Int) field in DocType 'LMS Program Member'
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
msgid "Progress"
|
||||
msgstr "Progression"
|
||||
|
||||
@@ -3807,7 +3976,7 @@ msgstr "Publié le"
|
||||
#. Label of the question (Text) field in DocType 'LMS Quiz Result'
|
||||
#: frontend/src/components/Modals/Question.vue:38
|
||||
#: frontend/src/pages/AssignmentSubmission.vue:26
|
||||
#: frontend/src/pages/QuizForm.vue:388
|
||||
#: frontend/src/pages/QuizForm.vue:389
|
||||
#: lms/lms/doctype/course_lesson/course_lesson.json
|
||||
#: lms/lms/doctype/lms_assignment/lms_assignment.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
@@ -3853,7 +4022,7 @@ msgstr ""
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:430
|
||||
#: frontend/src/pages/QuizForm.vue:431
|
||||
msgid "Questions deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -3891,7 +4060,7 @@ msgstr ""
|
||||
msgid "Quiz Title"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:342
|
||||
#: frontend/src/pages/QuizForm.vue:343
|
||||
msgid "Quiz created successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -3899,7 +4068,7 @@ msgstr ""
|
||||
msgid "Quiz is not available to Guest users. Please login to continue."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:361
|
||||
#: frontend/src/pages/QuizForm.vue:362
|
||||
msgid "Quiz updated successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -3908,7 +4077,7 @@ msgstr ""
|
||||
msgid "Quiz will appear at the bottom of the lesson."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:441 frontend/src/pages/Quizzes.vue:136
|
||||
#: frontend/src/pages/QuizForm.vue:442 frontend/src/pages/Quizzes.vue:136
|
||||
#: frontend/src/pages/Quizzes.vue:146
|
||||
msgid "Quizzes"
|
||||
msgstr ""
|
||||
@@ -4065,19 +4234,19 @@ msgstr ""
|
||||
msgid "Route"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:194
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:199
|
||||
msgid "Row #{0} Date cannot be outside the batch duration."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:189
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:194
|
||||
msgid "Row #{0} End time cannot be outside the batch duration."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:171
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:176
|
||||
msgid "Row #{0} Start time cannot be greater than or equal to end time."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:180
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:185
|
||||
msgid "Row #{0} Start time cannot be outside the batch duration."
|
||||
msgstr ""
|
||||
|
||||
@@ -4095,6 +4264,7 @@ msgid "SCORM"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the scorm_package (Link) field in DocType 'Course Chapter'
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:22
|
||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||
msgid "SCORM Package"
|
||||
msgstr ""
|
||||
@@ -4117,8 +4287,9 @@ msgstr "Samedi"
|
||||
#: frontend/src/components/QuizPlugin.vue:23
|
||||
#: frontend/src/pages/AssignmentSubmission.vue:7
|
||||
#: frontend/src/pages/BatchForm.vue:8 frontend/src/pages/CourseForm.vue:20
|
||||
#: frontend/src/pages/JobCreation.vue:8 frontend/src/pages/LessonForm.vue:10
|
||||
#: frontend/src/pages/QuizForm.vue:34 frontend/src/pages/QuizSubmission.vue:14
|
||||
#: frontend/src/pages/JobCreation.vue:8 frontend/src/pages/LessonForm.vue:14
|
||||
#: frontend/src/pages/ProgramForm.vue:7 frontend/src/pages/QuizForm.vue:34
|
||||
#: frontend/src/pages/QuizSubmission.vue:14
|
||||
#: lms/public/js/common_functions.js:405
|
||||
msgid "Save"
|
||||
msgstr "Sauvegarder"
|
||||
@@ -4334,6 +4505,10 @@ msgstr ""
|
||||
msgid "Skip"
|
||||
msgstr "Sauter"
|
||||
|
||||
#: frontend/src/components/OnboardingBanner.vue:3
|
||||
msgid "Skip Onboarding"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/course_evaluator/course_evaluator.py:57
|
||||
msgid "Slot Times are overlapping for some schedules."
|
||||
msgstr ""
|
||||
@@ -4507,7 +4682,7 @@ msgstr ""
|
||||
msgid "Student Reviews"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:47
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:48
|
||||
msgid "Student {0} has already been added to this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -4575,14 +4750,17 @@ msgstr ""
|
||||
#: frontend/src/components/CourseCardOverlay.vue:161
|
||||
#: frontend/src/components/Modals/AnnouncementModal.vue:99
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:73
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:148
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:193
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:153
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:198
|
||||
#: frontend/src/components/Modals/Event.vue:255
|
||||
#: frontend/src/components/Modals/Event.vue:310
|
||||
#: frontend/src/components/Modals/Question.vue:261
|
||||
#: frontend/src/components/Modals/Question.vue:312
|
||||
#: frontend/src/pages/CourseForm.vue:457 frontend/src/pages/QuizForm.vue:342
|
||||
#: frontend/src/pages/QuizForm.vue:361 frontend/src/pages/QuizForm.vue:430
|
||||
#: frontend/src/pages/CourseForm.vue:460 frontend/src/pages/ProgramForm.vue:226
|
||||
#: frontend/src/pages/ProgramForm.vue:248
|
||||
#: frontend/src/pages/ProgramForm.vue:269
|
||||
#: frontend/src/pages/ProgramForm.vue:295 frontend/src/pages/QuizForm.vue:343
|
||||
#: frontend/src/pages/QuizForm.vue:362 frontend/src/pages/QuizForm.vue:431
|
||||
msgid "Success"
|
||||
msgstr "Succès"
|
||||
|
||||
@@ -4637,6 +4815,7 @@ msgstr "Dimanche"
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
|
||||
#: lms/lms/doctype/lms_payment/lms_payment.json
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
#: lms/lms/doctype/lms_question/lms_question.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
@@ -4737,11 +4916,15 @@ msgstr ""
|
||||
msgid "There are no chapters in this course. Create and manage chapters from here."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:150
|
||||
#: frontend/src/pages/Courses.vue:151
|
||||
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:141
|
||||
#: frontend/src/pages/Programs.vue:86
|
||||
msgid "There are no programs available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:146
|
||||
msgid "There are no seats available in this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -4772,11 +4955,11 @@ msgstr ""
|
||||
msgid "This course has:"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1582
|
||||
#: lms/lms/utils.py:1585
|
||||
msgid "This course is free."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/SCORMChapter.vue:198
|
||||
#: frontend/src/pages/SCORMChapter.vue:197
|
||||
msgid "This is a chapter in the course {0}"
|
||||
msgstr ""
|
||||
|
||||
@@ -4868,6 +5051,7 @@ msgstr ""
|
||||
#. Label of the title (Data) field in DocType 'LMS Course'
|
||||
#. Label of the title (Data) field in DocType 'LMS Exercise'
|
||||
#. Label of the title (Data) field in DocType 'LMS Live Class'
|
||||
#. Label of the title (Data) field in DocType 'LMS Program'
|
||||
#. Label of the title (Data) field in DocType 'LMS Quiz'
|
||||
#. Label of the title (Data) field in DocType 'LMS Sidebar Item'
|
||||
#. Label of the title (Data) field in DocType 'LMS Timetable Template'
|
||||
@@ -4875,7 +5059,8 @@ msgstr ""
|
||||
#: frontend/src/components/Modals/DiscussionModal.vue:18
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:23
|
||||
#: frontend/src/pages/BatchForm.vue:20 frontend/src/pages/CourseForm.vue:32
|
||||
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/QuizForm.vue:48
|
||||
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/ProgramForm.vue:11
|
||||
#: frontend/src/pages/Programs.vue:107 frontend/src/pages/QuizForm.vue:48
|
||||
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
|
||||
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
|
||||
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json
|
||||
@@ -4888,6 +5073,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_exercise/lms_exercise.json
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_sidebar_item/lms_sidebar_item.json
|
||||
#: lms/lms/doctype/lms_timetable_template/lms_timetable_template.json
|
||||
@@ -4896,7 +5082,7 @@ msgstr ""
|
||||
msgid "Title"
|
||||
msgstr "Titre"
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:169
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:174
|
||||
msgid "Title is required"
|
||||
msgstr ""
|
||||
|
||||
@@ -4911,7 +5097,7 @@ msgstr "À"
|
||||
msgid "To Date"
|
||||
msgstr "Jusqu'au"
|
||||
|
||||
#: lms/lms/utils.py:1593
|
||||
#: lms/lms/utils.py:1596
|
||||
msgid "To join this batch, please contact the Administrator."
|
||||
msgstr ""
|
||||
|
||||
@@ -4975,7 +5161,7 @@ msgstr ""
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Quiz.vue:580
|
||||
#: frontend/src/components/Quiz.vue:583
|
||||
msgid "Type your answer"
|
||||
msgstr ""
|
||||
|
||||
@@ -5259,7 +5445,7 @@ msgstr ""
|
||||
msgid "You are not enrolled in this course. Please enroll to access this lesson."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:134
|
||||
#: frontend/src/pages/Courses.vue:135
|
||||
msgid "You can add chapters and lessons to it."
|
||||
msgstr ""
|
||||
|
||||
@@ -5431,6 +5617,10 @@ msgstr ""
|
||||
msgid "jane@example.com"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:32
|
||||
msgid "members"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/quiz/quiz.html:106
|
||||
msgid "of"
|
||||
msgstr ""
|
||||
@@ -5443,7 +5633,7 @@ msgstr "sur"
|
||||
msgid "posted by"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:389
|
||||
#: frontend/src/pages/QuizForm.vue:390
|
||||
msgid "question_detail"
|
||||
msgstr ""
|
||||
|
||||
@@ -5475,7 +5665,7 @@ msgstr ""
|
||||
msgid "{0} has submitted the assignment {1}"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.py:53
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.py:57
|
||||
msgid "{0} is already a Student of {1} course through {2} batch"
|
||||
msgstr ""
|
||||
|
||||
@@ -5483,7 +5673,7 @@ msgstr ""
|
||||
msgid "{0} is already a mentor for course {1}"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.py:26
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.py:30
|
||||
msgid "{0} is already a {1} of the course {2}"
|
||||
msgstr ""
|
||||
|
||||
|
||||
340
lms/locale/hu.po
340
lms/locale/hu.po
@@ -2,8 +2,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: frappe\n"
|
||||
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
||||
"POT-Creation-Date: 2024-11-15 16:04+0000\n"
|
||||
"PO-Revision-Date: 2024-11-18 17:31\n"
|
||||
"POT-Creation-Date: 2024-11-22 16:05+0000\n"
|
||||
"PO-Revision-Date: 2024-11-25 19:29\n"
|
||||
"Last-Translator: jannat@frappe.io\n"
|
||||
"Language-Team: Hungarian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -22,6 +22,11 @@ msgstr ""
|
||||
msgid " Please evaluate and grade it."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:41
|
||||
#, python-format
|
||||
msgid "% completed"
|
||||
msgstr "% befejezve"
|
||||
|
||||
#. Paragraph text in the LMS Workspace
|
||||
#: lms/lms/workspace/lms/lms.json
|
||||
msgid "<a href=\"/app/lms-settings/LMS%20Settings\">LMS Settings</a>"
|
||||
@@ -99,7 +104,8 @@ msgstr ""
|
||||
#: frontend/src/components/BatchStudents.vue:6
|
||||
#: frontend/src/components/Categories.vue:26
|
||||
#: frontend/src/components/LiveClass.vue:11
|
||||
#: frontend/src/components/Members.vue:43
|
||||
#: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30
|
||||
#: frontend/src/pages/ProgramForm.vue:91 frontend/src/pages/ProgramForm.vue:136
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
@@ -129,12 +135,20 @@ msgstr ""
|
||||
msgid "Add a Student"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/OnboardingBanner.vue:50
|
||||
msgid "Add a chapter"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/BatchCourseModal.vue:5
|
||||
msgid "Add a course"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/OnboardingBanner.vue:73
|
||||
msgid "Add a lesson"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/Question.vue:141
|
||||
#: frontend/src/pages/QuizForm.vue:181
|
||||
#: frontend/src/pages/QuizForm.vue:182
|
||||
msgid "Add a new question"
|
||||
msgstr ""
|
||||
|
||||
@@ -150,7 +164,7 @@ msgstr ""
|
||||
msgid "Add an existing question"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:60
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:66
|
||||
msgid "Add at least one possible answer for this question: {0}"
|
||||
msgstr ""
|
||||
|
||||
@@ -253,6 +267,14 @@ msgstr ""
|
||||
msgid "Amount Field"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:70
|
||||
msgid "Amount and currency are required for paid batches."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_course/lms_course.py:57
|
||||
msgid "Amount and currency are required for paid courses."
|
||||
msgstr ""
|
||||
|
||||
#. Label of the amount_with_gst (Currency) field in DocType 'LMS Payment'
|
||||
#: lms/lms/doctype/lms_payment/lms_payment.json
|
||||
msgid "Amount with GST"
|
||||
@@ -346,7 +368,7 @@ msgstr ""
|
||||
msgid "Assessment added successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:75
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:80
|
||||
msgid "Assessment {0} has already been added to this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -397,7 +419,7 @@ msgstr ""
|
||||
msgid "Assignment will appear at the bottom of the lesson."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:42
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:43
|
||||
msgid "At least one option must be correct for this question."
|
||||
msgstr ""
|
||||
|
||||
@@ -540,7 +562,7 @@ msgstr ""
|
||||
msgid "Batch Updated"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:40
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:41
|
||||
msgid "Batch end date cannot be before the batch start date"
|
||||
msgstr ""
|
||||
|
||||
@@ -727,11 +749,11 @@ msgstr ""
|
||||
msgid "Chapter Reference"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:149
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:154
|
||||
msgid "Chapter added successfully"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:193
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:198
|
||||
msgid "Chapter updated successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -764,7 +786,7 @@ msgstr ""
|
||||
msgid "Choices"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Quiz.vue:578 lms/templates/quiz/quiz.html:53
|
||||
#: frontend/src/components/Quiz.vue:581 lms/templates/quiz/quiz.html:53
|
||||
msgid "Choose all answers that apply"
|
||||
msgstr ""
|
||||
|
||||
@@ -772,7 +794,7 @@ msgstr ""
|
||||
msgid "Choose an icon"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Quiz.vue:579 lms/templates/quiz/quiz.html:53
|
||||
#: frontend/src/components/Quiz.vue:582 lms/templates/quiz/quiz.html:53
|
||||
msgid "Choose one answer"
|
||||
msgstr ""
|
||||
|
||||
@@ -988,7 +1010,7 @@ msgid "Contact the Administrator to enroll for this course."
|
||||
msgstr ""
|
||||
|
||||
#. Label of the content (Text) field in DocType 'Course Lesson'
|
||||
#: frontend/src/pages/LessonForm.vue:58
|
||||
#: frontend/src/pages/LessonForm.vue:62
|
||||
#: lms/lms/doctype/course_lesson/course_lesson.json
|
||||
msgid "Content"
|
||||
msgstr "Tartalom"
|
||||
@@ -1057,6 +1079,7 @@ msgstr ""
|
||||
#. Label of the course (Link) field in DocType 'LMS Enrollment'
|
||||
#. Label of the course (Link) field in DocType 'LMS Exercise'
|
||||
#. Label of the course (Link) field in DocType 'LMS Mentor Request'
|
||||
#. Label of the course (Link) field in DocType 'LMS Program Course'
|
||||
#. Label of the course (Link) field in DocType 'LMS Quiz'
|
||||
#. Label of the course (Link) field in DocType 'LMS Quiz Submission'
|
||||
#. Label of the course (Link) field in DocType 'Related Courses'
|
||||
@@ -1086,6 +1109,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
#: lms/lms/doctype/lms_exercise/lms_exercise.json
|
||||
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
|
||||
#: lms/lms/doctype/lms_program_course/lms_program_course.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/lms/doctype/related_courses/related_courses.json
|
||||
@@ -1114,6 +1138,7 @@ msgstr ""
|
||||
#. Name of a role
|
||||
#: frontend/src/pages/ProfileRoles.vue:16
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
#: lms/lms/doctype/lms_question/lms_question.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
msgid "Course Creator"
|
||||
@@ -1184,22 +1209,33 @@ msgstr ""
|
||||
#. Label of the course_title (Data) field in DocType 'Course Chapter'
|
||||
#. Label of the course_title (Data) field in DocType 'LMS Certificate'
|
||||
#. Label of the course_title (Data) field in DocType 'LMS Certificate Request'
|
||||
#. Label of the course_title (Data) field in DocType 'LMS Program Course'
|
||||
#: lms/lms/doctype/batch_course/batch_course.json
|
||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
#: lms/lms/doctype/lms_program_course/lms_program_course.json
|
||||
msgid "Course Title"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:340
|
||||
#: frontend/src/pages/ProgramForm.vue:226
|
||||
msgid "Course added to program"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:345
|
||||
msgid "Course already added to the batch."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:457
|
||||
#: frontend/src/pages/CourseForm.vue:460
|
||||
msgid "Course deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:58
|
||||
#: frontend/src/pages/ProgramForm.vue:295
|
||||
msgid "Course moved successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:59
|
||||
#: lms/lms/doctype/lms_program/lms_program.py:19
|
||||
msgid "Course {0} has already been added to this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -1234,6 +1270,7 @@ msgid "Cover Image"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:9
|
||||
#: frontend/src/pages/Programs.vue:99
|
||||
msgid "Create"
|
||||
msgstr ""
|
||||
|
||||
@@ -1249,7 +1286,7 @@ msgstr ""
|
||||
msgid "Create a Batch"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:131 lms/templates/onboarding_header.html:19
|
||||
#: frontend/src/pages/Courses.vue:132 lms/templates/onboarding_header.html:19
|
||||
msgid "Create a Course"
|
||||
msgstr ""
|
||||
|
||||
@@ -1257,6 +1294,10 @@ msgstr ""
|
||||
msgid "Create a Live Class"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/OnboardingBanner.vue:27
|
||||
msgid "Create a course"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/Question.vue:31
|
||||
msgid "Create a new question"
|
||||
msgstr ""
|
||||
@@ -1360,7 +1401,7 @@ msgstr ""
|
||||
|
||||
#: frontend/src/components/CourseOutline.vue:235
|
||||
#: frontend/src/components/CourseOutline.vue:293
|
||||
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:470
|
||||
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:473
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
@@ -1368,7 +1409,7 @@ msgstr ""
|
||||
msgid "Delete Chapter"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:464
|
||||
#: frontend/src/pages/CourseForm.vue:467
|
||||
msgid "Delete Course"
|
||||
msgstr ""
|
||||
|
||||
@@ -1380,7 +1421,7 @@ msgstr ""
|
||||
msgid "Delete this lesson?"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:465
|
||||
#: frontend/src/pages/CourseForm.vue:468
|
||||
msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?"
|
||||
msgstr ""
|
||||
|
||||
@@ -1470,7 +1511,7 @@ msgstr ""
|
||||
msgid "Dream Companies"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:32
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:33
|
||||
msgid "Duplicate options found for this question."
|
||||
msgstr ""
|
||||
|
||||
@@ -1508,7 +1549,7 @@ msgstr ""
|
||||
#: frontend/src/components/CourseCardOverlay.vue:86
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:9
|
||||
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:65
|
||||
#: frontend/src/pages/Profile.vue:32
|
||||
#: frontend/src/pages/Profile.vue:32 frontend/src/pages/Programs.vue:55
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
@@ -1521,7 +1562,7 @@ msgstr ""
|
||||
msgid "Edit Profile"
|
||||
msgstr "Profil szerkesztése"
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:180
|
||||
#: frontend/src/pages/QuizForm.vue:181
|
||||
msgid "Edit the question"
|
||||
msgstr ""
|
||||
|
||||
@@ -1582,6 +1623,15 @@ msgstr ""
|
||||
msgid "Enable Google API in Google Settings to send calendar invites for evaluations."
|
||||
msgstr ""
|
||||
|
||||
#. Label of the enable_learning_paths (Check) field in DocType 'LMS Settings'
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Enable Learning Paths"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:24
|
||||
msgid "Enable this only if you want to upload a SCORM package as a chapter."
|
||||
msgstr ""
|
||||
|
||||
#. Label of the enabled (Check) field in DocType 'LMS Badge'
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "Enabled"
|
||||
@@ -1634,7 +1684,7 @@ msgstr ""
|
||||
msgid "Enrolled successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:98
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:103
|
||||
msgid "Enrollment Confirmation for the Next Training Batch"
|
||||
msgstr ""
|
||||
|
||||
@@ -1643,7 +1693,7 @@ msgstr ""
|
||||
msgid "Enrollment Count"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1702
|
||||
#: lms/lms/utils.py:1705
|
||||
msgid "Enrollment Failed"
|
||||
msgstr ""
|
||||
|
||||
@@ -1672,14 +1722,14 @@ msgid "Enter the correct answer"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/AnnouncementModal.vue:105
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:154
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:161
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:197
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:159
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:166
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:202
|
||||
#: frontend/src/components/Modals/Question.vue:246
|
||||
#: frontend/src/components/Modals/Question.vue:266
|
||||
#: frontend/src/components/Modals/Question.vue:323
|
||||
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:349
|
||||
#: frontend/src/pages/QuizForm.vue:364
|
||||
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350
|
||||
#: frontend/src/pages/QuizForm.vue:365
|
||||
#: frontend/src/pages/QuizSubmission.vue:117
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
@@ -1708,7 +1758,7 @@ msgstr ""
|
||||
msgid "Evaluation Request"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:82
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:87
|
||||
msgid "Evaluation end date cannot be less than the batch end date."
|
||||
msgstr ""
|
||||
|
||||
@@ -1874,7 +1924,7 @@ msgstr ""
|
||||
msgid "Flexible Time"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:462
|
||||
#: frontend/src/pages/QuizForm.vue:463
|
||||
msgid "Form to create and edit quizzes"
|
||||
msgstr ""
|
||||
|
||||
@@ -1922,7 +1972,9 @@ msgid "From Date"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the full_name (Data) field in DocType 'Invite Request'
|
||||
#. Label of the full_name (Data) field in DocType 'LMS Program Member'
|
||||
#: lms/lms/doctype/invite_request/invite_request.json
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
#: lms/templates/signup-form.html:5
|
||||
msgid "Full Name"
|
||||
msgstr "Teljes név"
|
||||
@@ -1954,6 +2006,11 @@ msgstr ""
|
||||
msgid "GSTIN"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the general_tab (Tab Break) field in DocType 'LMS Settings'
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "General"
|
||||
msgstr "Általános"
|
||||
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:18
|
||||
msgid "Generate Google Meet Link"
|
||||
msgstr ""
|
||||
@@ -2085,7 +2142,7 @@ msgstr ""
|
||||
msgid "I am unavailable"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:383
|
||||
#: frontend/src/pages/QuizForm.vue:384
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
@@ -2226,7 +2283,7 @@ msgstr ""
|
||||
|
||||
#. Label of the instructor_notes (Markdown Editor) field in DocType 'Course
|
||||
#. Lesson'
|
||||
#: frontend/src/pages/Lesson.vue:128 frontend/src/pages/LessonForm.vue:38
|
||||
#: frontend/src/pages/Lesson.vue:128 frontend/src/pages/LessonForm.vue:42
|
||||
#: lms/lms/doctype/course_lesson/course_lesson.json
|
||||
msgid "Instructor Notes"
|
||||
msgstr ""
|
||||
@@ -2302,7 +2359,6 @@ msgstr ""
|
||||
|
||||
#. Label of the is_scorm_package (Check) field in DocType 'Course Chapter'
|
||||
#. Label of the is_scorm_package (Check) field in DocType 'Course Lesson'
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:26
|
||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||
#: lms/lms/doctype/course_lesson/course_lesson.json
|
||||
msgid "Is SCORM Package"
|
||||
@@ -2332,6 +2388,10 @@ msgstr ""
|
||||
msgid "Items in Sidebar"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:269
|
||||
msgid "Items removed successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/signup-form.html:6
|
||||
msgid "Jane Doe"
|
||||
msgstr ""
|
||||
@@ -2531,6 +2591,21 @@ msgstr ""
|
||||
msgid "LMS Payment"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
msgid "LMS Program"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_program_course/lms_program_course.json
|
||||
msgid "LMS Program Course"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
msgid "LMS Program Member"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_question/lms_question.json
|
||||
msgid "LMS Question"
|
||||
@@ -2590,6 +2665,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
#: lms/lms/doctype/lms_source/lms_source.json
|
||||
#: lms/lms/doctype/user_skill/user_skill.json
|
||||
msgid "LMS Student"
|
||||
@@ -2812,7 +2888,7 @@ msgstr ""
|
||||
#. Label of the marks (Int) field in DocType 'LMS Quiz Result'
|
||||
#: frontend/src/components/Modals/Question.vue:50
|
||||
#: frontend/src/components/Modals/Question.vue:96
|
||||
#: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:393
|
||||
#: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:394
|
||||
#: frontend/src/pages/QuizSubmission.vue:52
|
||||
#: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json
|
||||
#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json
|
||||
@@ -2867,6 +2943,7 @@ msgstr "Közepes:"
|
||||
#. Option for the 'Role' (Select) field in DocType 'LMS Enrollment'
|
||||
#. Label of the member (Link) field in DocType 'LMS Mentor Request'
|
||||
#. 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 Quiz Submission'
|
||||
#: frontend/src/pages/QuizSubmission.vue:27
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:77
|
||||
@@ -2881,6 +2958,7 @@ msgstr "Közepes:"
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
|
||||
#: lms/lms/doctype/lms_payment/lms_payment.json
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/lms/report/course_progress_summary/course_progress_summary.py:64
|
||||
msgid "Member"
|
||||
@@ -2930,6 +3008,14 @@ msgstr ""
|
||||
msgid "Member Type"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:248
|
||||
msgid "Member added to program"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_program/lms_program.py:29
|
||||
msgid "Member {0} has already been added to this batch."
|
||||
msgstr ""
|
||||
|
||||
#. Group in LMS Batch Old's connections
|
||||
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
||||
msgid "Members"
|
||||
@@ -3002,6 +3088,10 @@ msgstr "Mérföldkő"
|
||||
msgid "Milestones"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:48
|
||||
msgid "Minimum two options are required for multiple choice questions."
|
||||
msgstr ""
|
||||
|
||||
#. Name of a role
|
||||
#: frontend/src/pages/ProfileRoles.vue:10
|
||||
#: lms/lms/doctype/course_evaluator/course_evaluator.json
|
||||
@@ -3013,6 +3103,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
#: lms/lms/doctype/lms_question/lms_question.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_source/lms_source.json
|
||||
@@ -3057,8 +3148,8 @@ msgid "My calendar"
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
||||
#: frontend/src/pages/Batches.vue:30 frontend/src/pages/Courses.vue:44
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
#: frontend/src/pages/Batches.vue:30 frontend/src/pages/Courses.vue:45
|
||||
#: frontend/src/pages/Programs.vue:14 lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "New"
|
||||
msgstr ""
|
||||
|
||||
@@ -3082,11 +3173,23 @@ msgstr ""
|
||||
msgid "New Job Applicant"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:96
|
||||
msgid "New Program"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:132
|
||||
msgid "New Program Course"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:133
|
||||
msgid "New Program Member"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:122
|
||||
msgid "New Question"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:453 frontend/src/pages/QuizForm.vue:461
|
||||
#: frontend/src/pages/QuizForm.vue:454 frontend/src/pages/QuizForm.vue:462
|
||||
#: frontend/src/pages/Quizzes.vue:18
|
||||
msgid "New Quiz"
|
||||
msgstr ""
|
||||
@@ -3149,10 +3252,14 @@ msgstr ""
|
||||
msgid "No courses created"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:146
|
||||
#: frontend/src/pages/Courses.vue:147
|
||||
msgid "No courses found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:72
|
||||
msgid "No courses in this program"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/courses_under_review.html:14
|
||||
msgid "No courses under review"
|
||||
msgstr ""
|
||||
@@ -3169,6 +3276,10 @@ msgstr ""
|
||||
msgid "No live classes scheduled"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:82
|
||||
msgid "No programs found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Quizzes.vue:56
|
||||
msgid "No quizzes found"
|
||||
msgstr ""
|
||||
@@ -3189,7 +3300,7 @@ msgstr ""
|
||||
msgid "No {0} batches"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:106
|
||||
#: frontend/src/pages/Courses.vue:107
|
||||
msgid "No {0} courses"
|
||||
msgstr ""
|
||||
|
||||
@@ -3277,15 +3388,19 @@ msgstr ""
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:156
|
||||
msgid "Only courses for which self learning is disabled can be added to program."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/assignment.html:6
|
||||
msgid "Only files of type {0} will be accepted."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:494 frontend/src/utils/index.js:518
|
||||
#: frontend/src/pages/CourseForm.vue:497 frontend/src/utils/index.js:518
|
||||
msgid "Only image file is allowed."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:223
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:220
|
||||
msgid "Only zip files are allowed"
|
||||
msgstr ""
|
||||
|
||||
@@ -3561,7 +3676,11 @@ msgstr "Kérjük, ellenőrizze e-mail a vizsgálathoz"
|
||||
msgid "Please click on the following button to set your new password"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:251
|
||||
#: lms/lms/utils.py:1817 lms/lms/utils.py:1821
|
||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:256
|
||||
msgid "Please enable Zoom Settings to use this feature."
|
||||
msgstr ""
|
||||
|
||||
@@ -3573,11 +3692,19 @@ msgstr ""
|
||||
msgid "Please ensure that you complete all the questions in {0} minutes."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:164
|
||||
msgid "Please enter a title."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:38
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:98
|
||||
msgid "Please enter a valid URL."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:176
|
||||
msgid "Please enter a valid time in the format HH:mm."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:92
|
||||
msgid "Please enter the URL for assignment submission."
|
||||
msgstr ""
|
||||
@@ -3586,11 +3713,11 @@ msgstr ""
|
||||
msgid "Please enter your answer"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:65
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:66
|
||||
msgid "Please install the Payments app to create a paid batches."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_course/lms_course.py:52
|
||||
#: lms/lms/doctype/lms_course/lms_course.py:53
|
||||
msgid "Please install the Payments app to create a paid courses."
|
||||
msgstr ""
|
||||
|
||||
@@ -3615,11 +3742,31 @@ msgstr ""
|
||||
msgid "Please prepare well and be on time for the evaluations."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:167
|
||||
msgid "Please select a date."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:191
|
||||
msgid "Please select a duration."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:188
|
||||
msgid "Please select a future date and time."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:170
|
||||
msgid "Please select a time."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:173
|
||||
msgid "Please select a timezone."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/emails/job_report.html:6
|
||||
msgid "Please take appropriate action at {0}"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:172
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:177
|
||||
msgid "Please upload a SCORM package"
|
||||
msgstr ""
|
||||
|
||||
@@ -3756,8 +3903,30 @@ msgstr ""
|
||||
msgid "Profile Image"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:154
|
||||
msgid "Program Course"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the program_courses (Table) field in DocType 'LMS Program'
|
||||
#: frontend/src/pages/ProgramForm.vue:17
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
msgid "Program Courses"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:169
|
||||
msgid "Program Member"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the program_members (Table) field in DocType 'LMS Program'
|
||||
#: frontend/src/pages/ProgramForm.vue:78
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
msgid "Program Members"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the progress (Float) field in DocType 'LMS Enrollment'
|
||||
#. Label of the progress (Int) field in DocType 'LMS Program Member'
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
msgid "Progress"
|
||||
msgstr "Előrehaladás"
|
||||
|
||||
@@ -3807,7 +3976,7 @@ msgstr ""
|
||||
#. Label of the question (Text) field in DocType 'LMS Quiz Result'
|
||||
#: frontend/src/components/Modals/Question.vue:38
|
||||
#: frontend/src/pages/AssignmentSubmission.vue:26
|
||||
#: frontend/src/pages/QuizForm.vue:388
|
||||
#: frontend/src/pages/QuizForm.vue:389
|
||||
#: lms/lms/doctype/course_lesson/course_lesson.json
|
||||
#: lms/lms/doctype/lms_assignment/lms_assignment.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
@@ -3853,7 +4022,7 @@ msgstr ""
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:430
|
||||
#: frontend/src/pages/QuizForm.vue:431
|
||||
msgid "Questions deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -3891,7 +4060,7 @@ msgstr ""
|
||||
msgid "Quiz Title"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:342
|
||||
#: frontend/src/pages/QuizForm.vue:343
|
||||
msgid "Quiz created successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -3899,7 +4068,7 @@ msgstr ""
|
||||
msgid "Quiz is not available to Guest users. Please login to continue."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:361
|
||||
#: frontend/src/pages/QuizForm.vue:362
|
||||
msgid "Quiz updated successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -3908,7 +4077,7 @@ msgstr ""
|
||||
msgid "Quiz will appear at the bottom of the lesson."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:441 frontend/src/pages/Quizzes.vue:136
|
||||
#: frontend/src/pages/QuizForm.vue:442 frontend/src/pages/Quizzes.vue:136
|
||||
#: frontend/src/pages/Quizzes.vue:146
|
||||
msgid "Quizzes"
|
||||
msgstr ""
|
||||
@@ -4065,19 +4234,19 @@ msgstr ""
|
||||
msgid "Route"
|
||||
msgstr "Útvonal"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:194
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:199
|
||||
msgid "Row #{0} Date cannot be outside the batch duration."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:189
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:194
|
||||
msgid "Row #{0} End time cannot be outside the batch duration."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:171
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:176
|
||||
msgid "Row #{0} Start time cannot be greater than or equal to end time."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:180
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:185
|
||||
msgid "Row #{0} Start time cannot be outside the batch duration."
|
||||
msgstr ""
|
||||
|
||||
@@ -4095,6 +4264,7 @@ msgid "SCORM"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the scorm_package (Link) field in DocType 'Course Chapter'
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:22
|
||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||
msgid "SCORM Package"
|
||||
msgstr ""
|
||||
@@ -4117,8 +4287,9 @@ msgstr "Szombat"
|
||||
#: frontend/src/components/QuizPlugin.vue:23
|
||||
#: frontend/src/pages/AssignmentSubmission.vue:7
|
||||
#: frontend/src/pages/BatchForm.vue:8 frontend/src/pages/CourseForm.vue:20
|
||||
#: frontend/src/pages/JobCreation.vue:8 frontend/src/pages/LessonForm.vue:10
|
||||
#: frontend/src/pages/QuizForm.vue:34 frontend/src/pages/QuizSubmission.vue:14
|
||||
#: frontend/src/pages/JobCreation.vue:8 frontend/src/pages/LessonForm.vue:14
|
||||
#: frontend/src/pages/ProgramForm.vue:7 frontend/src/pages/QuizForm.vue:34
|
||||
#: frontend/src/pages/QuizSubmission.vue:14
|
||||
#: lms/public/js/common_functions.js:405
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
@@ -4334,6 +4505,10 @@ msgstr ""
|
||||
msgid "Skip"
|
||||
msgstr "Ugrás"
|
||||
|
||||
#: frontend/src/components/OnboardingBanner.vue:3
|
||||
msgid "Skip Onboarding"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/course_evaluator/course_evaluator.py:57
|
||||
msgid "Slot Times are overlapping for some schedules."
|
||||
msgstr ""
|
||||
@@ -4507,7 +4682,7 @@ msgstr ""
|
||||
msgid "Student Reviews"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:47
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:48
|
||||
msgid "Student {0} has already been added to this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -4575,14 +4750,17 @@ msgstr ""
|
||||
#: frontend/src/components/CourseCardOverlay.vue:161
|
||||
#: frontend/src/components/Modals/AnnouncementModal.vue:99
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:73
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:148
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:193
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:153
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:198
|
||||
#: frontend/src/components/Modals/Event.vue:255
|
||||
#: frontend/src/components/Modals/Event.vue:310
|
||||
#: frontend/src/components/Modals/Question.vue:261
|
||||
#: frontend/src/components/Modals/Question.vue:312
|
||||
#: frontend/src/pages/CourseForm.vue:457 frontend/src/pages/QuizForm.vue:342
|
||||
#: frontend/src/pages/QuizForm.vue:361 frontend/src/pages/QuizForm.vue:430
|
||||
#: frontend/src/pages/CourseForm.vue:460 frontend/src/pages/ProgramForm.vue:226
|
||||
#: frontend/src/pages/ProgramForm.vue:248
|
||||
#: frontend/src/pages/ProgramForm.vue:269
|
||||
#: frontend/src/pages/ProgramForm.vue:295 frontend/src/pages/QuizForm.vue:343
|
||||
#: frontend/src/pages/QuizForm.vue:362 frontend/src/pages/QuizForm.vue:431
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
@@ -4637,6 +4815,7 @@ msgstr "Vasárnap"
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
|
||||
#: lms/lms/doctype/lms_payment/lms_payment.json
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
#: lms/lms/doctype/lms_question/lms_question.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
@@ -4737,11 +4916,15 @@ msgstr ""
|
||||
msgid "There are no chapters in this course. Create and manage chapters from here."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:150
|
||||
#: frontend/src/pages/Courses.vue:151
|
||||
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:141
|
||||
#: frontend/src/pages/Programs.vue:86
|
||||
msgid "There are no programs available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:146
|
||||
msgid "There are no seats available in this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -4772,11 +4955,11 @@ msgstr ""
|
||||
msgid "This course has:"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1582
|
||||
#: lms/lms/utils.py:1585
|
||||
msgid "This course is free."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/SCORMChapter.vue:198
|
||||
#: frontend/src/pages/SCORMChapter.vue:197
|
||||
msgid "This is a chapter in the course {0}"
|
||||
msgstr ""
|
||||
|
||||
@@ -4868,6 +5051,7 @@ msgstr ""
|
||||
#. Label of the title (Data) field in DocType 'LMS Course'
|
||||
#. Label of the title (Data) field in DocType 'LMS Exercise'
|
||||
#. Label of the title (Data) field in DocType 'LMS Live Class'
|
||||
#. Label of the title (Data) field in DocType 'LMS Program'
|
||||
#. Label of the title (Data) field in DocType 'LMS Quiz'
|
||||
#. Label of the title (Data) field in DocType 'LMS Sidebar Item'
|
||||
#. Label of the title (Data) field in DocType 'LMS Timetable Template'
|
||||
@@ -4875,7 +5059,8 @@ msgstr ""
|
||||
#: frontend/src/components/Modals/DiscussionModal.vue:18
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:23
|
||||
#: frontend/src/pages/BatchForm.vue:20 frontend/src/pages/CourseForm.vue:32
|
||||
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/QuizForm.vue:48
|
||||
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/ProgramForm.vue:11
|
||||
#: frontend/src/pages/Programs.vue:107 frontend/src/pages/QuizForm.vue:48
|
||||
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
|
||||
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
|
||||
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json
|
||||
@@ -4888,6 +5073,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_exercise/lms_exercise.json
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_sidebar_item/lms_sidebar_item.json
|
||||
#: lms/lms/doctype/lms_timetable_template/lms_timetable_template.json
|
||||
@@ -4896,7 +5082,7 @@ msgstr ""
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:169
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:174
|
||||
msgid "Title is required"
|
||||
msgstr ""
|
||||
|
||||
@@ -4911,7 +5097,7 @@ msgstr ""
|
||||
msgid "To Date"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1593
|
||||
#: lms/lms/utils.py:1596
|
||||
msgid "To join this batch, please contact the Administrator."
|
||||
msgstr ""
|
||||
|
||||
@@ -4975,7 +5161,7 @@ msgstr ""
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Quiz.vue:580
|
||||
#: frontend/src/components/Quiz.vue:583
|
||||
msgid "Type your answer"
|
||||
msgstr ""
|
||||
|
||||
@@ -5259,7 +5445,7 @@ msgstr ""
|
||||
msgid "You are not enrolled in this course. Please enroll to access this lesson."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:134
|
||||
#: frontend/src/pages/Courses.vue:135
|
||||
msgid "You can add chapters and lessons to it."
|
||||
msgstr ""
|
||||
|
||||
@@ -5431,6 +5617,10 @@ msgstr ""
|
||||
msgid "jane@example.com"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:32
|
||||
msgid "members"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/quiz/quiz.html:106
|
||||
msgid "of"
|
||||
msgstr "nak,-nek"
|
||||
@@ -5443,7 +5633,7 @@ msgstr ""
|
||||
msgid "posted by"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:389
|
||||
#: frontend/src/pages/QuizForm.vue:390
|
||||
msgid "question_detail"
|
||||
msgstr ""
|
||||
|
||||
@@ -5475,7 +5665,7 @@ msgstr ""
|
||||
msgid "{0} has submitted the assignment {1}"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.py:53
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.py:57
|
||||
msgid "{0} is already a Student of {1} course through {2} batch"
|
||||
msgstr ""
|
||||
|
||||
@@ -5483,7 +5673,7 @@ msgstr ""
|
||||
msgid "{0} is already a mentor for course {1}"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.py:26
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.py:30
|
||||
msgid "{0} is already a {1} of the course {2}"
|
||||
msgstr ""
|
||||
|
||||
|
||||
340
lms/locale/pl.po
340
lms/locale/pl.po
@@ -2,8 +2,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: frappe\n"
|
||||
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
||||
"POT-Creation-Date: 2024-11-15 16:04+0000\n"
|
||||
"PO-Revision-Date: 2024-11-18 17:31\n"
|
||||
"POT-Creation-Date: 2024-11-22 16:05+0000\n"
|
||||
"PO-Revision-Date: 2024-11-25 19:29\n"
|
||||
"Last-Translator: jannat@frappe.io\n"
|
||||
"Language-Team: Polish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -22,6 +22,11 @@ msgstr ""
|
||||
msgid " Please evaluate and grade it."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:41
|
||||
#, python-format
|
||||
msgid "% completed"
|
||||
msgstr "% zakończono"
|
||||
|
||||
#. Paragraph text in the LMS Workspace
|
||||
#: lms/lms/workspace/lms/lms.json
|
||||
msgid "<a href=\"/app/lms-settings/LMS%20Settings\">LMS Settings</a>"
|
||||
@@ -99,7 +104,8 @@ msgstr ""
|
||||
#: frontend/src/components/BatchStudents.vue:6
|
||||
#: frontend/src/components/Categories.vue:26
|
||||
#: frontend/src/components/LiveClass.vue:11
|
||||
#: frontend/src/components/Members.vue:43
|
||||
#: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30
|
||||
#: frontend/src/pages/ProgramForm.vue:91 frontend/src/pages/ProgramForm.vue:136
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
@@ -129,12 +135,20 @@ msgstr ""
|
||||
msgid "Add a Student"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/OnboardingBanner.vue:50
|
||||
msgid "Add a chapter"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/BatchCourseModal.vue:5
|
||||
msgid "Add a course"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/OnboardingBanner.vue:73
|
||||
msgid "Add a lesson"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/Question.vue:141
|
||||
#: frontend/src/pages/QuizForm.vue:181
|
||||
#: frontend/src/pages/QuizForm.vue:182
|
||||
msgid "Add a new question"
|
||||
msgstr ""
|
||||
|
||||
@@ -150,7 +164,7 @@ msgstr ""
|
||||
msgid "Add an existing question"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:60
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:66
|
||||
msgid "Add at least one possible answer for this question: {0}"
|
||||
msgstr ""
|
||||
|
||||
@@ -253,6 +267,14 @@ msgstr ""
|
||||
msgid "Amount Field"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:70
|
||||
msgid "Amount and currency are required for paid batches."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_course/lms_course.py:57
|
||||
msgid "Amount and currency are required for paid courses."
|
||||
msgstr ""
|
||||
|
||||
#. Label of the amount_with_gst (Currency) field in DocType 'LMS Payment'
|
||||
#: lms/lms/doctype/lms_payment/lms_payment.json
|
||||
msgid "Amount with GST"
|
||||
@@ -346,7 +368,7 @@ msgstr ""
|
||||
msgid "Assessment added successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:75
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:80
|
||||
msgid "Assessment {0} has already been added to this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -397,7 +419,7 @@ msgstr ""
|
||||
msgid "Assignment will appear at the bottom of the lesson."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:42
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:43
|
||||
msgid "At least one option must be correct for this question."
|
||||
msgstr ""
|
||||
|
||||
@@ -540,7 +562,7 @@ msgstr ""
|
||||
msgid "Batch Updated"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:40
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:41
|
||||
msgid "Batch end date cannot be before the batch start date"
|
||||
msgstr ""
|
||||
|
||||
@@ -727,11 +749,11 @@ msgstr ""
|
||||
msgid "Chapter Reference"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:149
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:154
|
||||
msgid "Chapter added successfully"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:193
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:198
|
||||
msgid "Chapter updated successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -764,7 +786,7 @@ msgstr ""
|
||||
msgid "Choices"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Quiz.vue:578 lms/templates/quiz/quiz.html:53
|
||||
#: frontend/src/components/Quiz.vue:581 lms/templates/quiz/quiz.html:53
|
||||
msgid "Choose all answers that apply"
|
||||
msgstr ""
|
||||
|
||||
@@ -772,7 +794,7 @@ msgstr ""
|
||||
msgid "Choose an icon"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Quiz.vue:579 lms/templates/quiz/quiz.html:53
|
||||
#: frontend/src/components/Quiz.vue:582 lms/templates/quiz/quiz.html:53
|
||||
msgid "Choose one answer"
|
||||
msgstr ""
|
||||
|
||||
@@ -988,7 +1010,7 @@ msgid "Contact the Administrator to enroll for this course."
|
||||
msgstr ""
|
||||
|
||||
#. Label of the content (Text) field in DocType 'Course Lesson'
|
||||
#: frontend/src/pages/LessonForm.vue:58
|
||||
#: frontend/src/pages/LessonForm.vue:62
|
||||
#: lms/lms/doctype/course_lesson/course_lesson.json
|
||||
msgid "Content"
|
||||
msgstr ""
|
||||
@@ -1057,6 +1079,7 @@ msgstr ""
|
||||
#. Label of the course (Link) field in DocType 'LMS Enrollment'
|
||||
#. Label of the course (Link) field in DocType 'LMS Exercise'
|
||||
#. Label of the course (Link) field in DocType 'LMS Mentor Request'
|
||||
#. Label of the course (Link) field in DocType 'LMS Program Course'
|
||||
#. Label of the course (Link) field in DocType 'LMS Quiz'
|
||||
#. Label of the course (Link) field in DocType 'LMS Quiz Submission'
|
||||
#. Label of the course (Link) field in DocType 'Related Courses'
|
||||
@@ -1086,6 +1109,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
#: lms/lms/doctype/lms_exercise/lms_exercise.json
|
||||
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
|
||||
#: lms/lms/doctype/lms_program_course/lms_program_course.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/lms/doctype/related_courses/related_courses.json
|
||||
@@ -1114,6 +1138,7 @@ msgstr ""
|
||||
#. Name of a role
|
||||
#: frontend/src/pages/ProfileRoles.vue:16
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
#: lms/lms/doctype/lms_question/lms_question.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
msgid "Course Creator"
|
||||
@@ -1184,22 +1209,33 @@ msgstr ""
|
||||
#. Label of the course_title (Data) field in DocType 'Course Chapter'
|
||||
#. Label of the course_title (Data) field in DocType 'LMS Certificate'
|
||||
#. Label of the course_title (Data) field in DocType 'LMS Certificate Request'
|
||||
#. Label of the course_title (Data) field in DocType 'LMS Program Course'
|
||||
#: lms/lms/doctype/batch_course/batch_course.json
|
||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
#: lms/lms/doctype/lms_program_course/lms_program_course.json
|
||||
msgid "Course Title"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:340
|
||||
#: frontend/src/pages/ProgramForm.vue:226
|
||||
msgid "Course added to program"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:345
|
||||
msgid "Course already added to the batch."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:457
|
||||
#: frontend/src/pages/CourseForm.vue:460
|
||||
msgid "Course deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:58
|
||||
#: frontend/src/pages/ProgramForm.vue:295
|
||||
msgid "Course moved successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:59
|
||||
#: lms/lms/doctype/lms_program/lms_program.py:19
|
||||
msgid "Course {0} has already been added to this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -1234,6 +1270,7 @@ msgid "Cover Image"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:9
|
||||
#: frontend/src/pages/Programs.vue:99
|
||||
msgid "Create"
|
||||
msgstr ""
|
||||
|
||||
@@ -1249,7 +1286,7 @@ msgstr ""
|
||||
msgid "Create a Batch"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:131 lms/templates/onboarding_header.html:19
|
||||
#: frontend/src/pages/Courses.vue:132 lms/templates/onboarding_header.html:19
|
||||
msgid "Create a Course"
|
||||
msgstr ""
|
||||
|
||||
@@ -1257,6 +1294,10 @@ msgstr ""
|
||||
msgid "Create a Live Class"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/OnboardingBanner.vue:27
|
||||
msgid "Create a course"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/Question.vue:31
|
||||
msgid "Create a new question"
|
||||
msgstr ""
|
||||
@@ -1360,7 +1401,7 @@ msgstr ""
|
||||
|
||||
#: frontend/src/components/CourseOutline.vue:235
|
||||
#: frontend/src/components/CourseOutline.vue:293
|
||||
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:470
|
||||
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:473
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
@@ -1368,7 +1409,7 @@ msgstr ""
|
||||
msgid "Delete Chapter"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:464
|
||||
#: frontend/src/pages/CourseForm.vue:467
|
||||
msgid "Delete Course"
|
||||
msgstr ""
|
||||
|
||||
@@ -1380,7 +1421,7 @@ msgstr ""
|
||||
msgid "Delete this lesson?"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:465
|
||||
#: frontend/src/pages/CourseForm.vue:468
|
||||
msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?"
|
||||
msgstr ""
|
||||
|
||||
@@ -1470,7 +1511,7 @@ msgstr ""
|
||||
msgid "Dream Companies"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:32
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:33
|
||||
msgid "Duplicate options found for this question."
|
||||
msgstr ""
|
||||
|
||||
@@ -1508,7 +1549,7 @@ msgstr ""
|
||||
#: frontend/src/components/CourseCardOverlay.vue:86
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:9
|
||||
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:65
|
||||
#: frontend/src/pages/Profile.vue:32
|
||||
#: frontend/src/pages/Profile.vue:32 frontend/src/pages/Programs.vue:55
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
@@ -1521,7 +1562,7 @@ msgstr ""
|
||||
msgid "Edit Profile"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:180
|
||||
#: frontend/src/pages/QuizForm.vue:181
|
||||
msgid "Edit the question"
|
||||
msgstr ""
|
||||
|
||||
@@ -1582,6 +1623,15 @@ msgstr ""
|
||||
msgid "Enable Google API in Google Settings to send calendar invites for evaluations."
|
||||
msgstr ""
|
||||
|
||||
#. Label of the enable_learning_paths (Check) field in DocType 'LMS Settings'
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Enable Learning Paths"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:24
|
||||
msgid "Enable this only if you want to upload a SCORM package as a chapter."
|
||||
msgstr ""
|
||||
|
||||
#. Label of the enabled (Check) field in DocType 'LMS Badge'
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "Enabled"
|
||||
@@ -1634,7 +1684,7 @@ msgstr ""
|
||||
msgid "Enrolled successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:98
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:103
|
||||
msgid "Enrollment Confirmation for the Next Training Batch"
|
||||
msgstr ""
|
||||
|
||||
@@ -1643,7 +1693,7 @@ msgstr ""
|
||||
msgid "Enrollment Count"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1702
|
||||
#: lms/lms/utils.py:1705
|
||||
msgid "Enrollment Failed"
|
||||
msgstr ""
|
||||
|
||||
@@ -1672,14 +1722,14 @@ msgid "Enter the correct answer"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/AnnouncementModal.vue:105
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:154
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:161
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:197
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:159
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:166
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:202
|
||||
#: frontend/src/components/Modals/Question.vue:246
|
||||
#: frontend/src/components/Modals/Question.vue:266
|
||||
#: frontend/src/components/Modals/Question.vue:323
|
||||
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:349
|
||||
#: frontend/src/pages/QuizForm.vue:364
|
||||
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350
|
||||
#: frontend/src/pages/QuizForm.vue:365
|
||||
#: frontend/src/pages/QuizSubmission.vue:117
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
@@ -1708,7 +1758,7 @@ msgstr ""
|
||||
msgid "Evaluation Request"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:82
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:87
|
||||
msgid "Evaluation end date cannot be less than the batch end date."
|
||||
msgstr ""
|
||||
|
||||
@@ -1874,7 +1924,7 @@ msgstr ""
|
||||
msgid "Flexible Time"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:462
|
||||
#: frontend/src/pages/QuizForm.vue:463
|
||||
msgid "Form to create and edit quizzes"
|
||||
msgstr ""
|
||||
|
||||
@@ -1922,7 +1972,9 @@ msgid "From Date"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the full_name (Data) field in DocType 'Invite Request'
|
||||
#. Label of the full_name (Data) field in DocType 'LMS Program Member'
|
||||
#: lms/lms/doctype/invite_request/invite_request.json
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
#: lms/templates/signup-form.html:5
|
||||
msgid "Full Name"
|
||||
msgstr ""
|
||||
@@ -1954,6 +2006,11 @@ msgstr ""
|
||||
msgid "GSTIN"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the general_tab (Tab Break) field in DocType 'LMS Settings'
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:18
|
||||
msgid "Generate Google Meet Link"
|
||||
msgstr ""
|
||||
@@ -2085,7 +2142,7 @@ msgstr ""
|
||||
msgid "I am unavailable"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:383
|
||||
#: frontend/src/pages/QuizForm.vue:384
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
@@ -2226,7 +2283,7 @@ msgstr ""
|
||||
|
||||
#. Label of the instructor_notes (Markdown Editor) field in DocType 'Course
|
||||
#. Lesson'
|
||||
#: frontend/src/pages/Lesson.vue:128 frontend/src/pages/LessonForm.vue:38
|
||||
#: frontend/src/pages/Lesson.vue:128 frontend/src/pages/LessonForm.vue:42
|
||||
#: lms/lms/doctype/course_lesson/course_lesson.json
|
||||
msgid "Instructor Notes"
|
||||
msgstr ""
|
||||
@@ -2302,7 +2359,6 @@ msgstr ""
|
||||
|
||||
#. Label of the is_scorm_package (Check) field in DocType 'Course Chapter'
|
||||
#. Label of the is_scorm_package (Check) field in DocType 'Course Lesson'
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:26
|
||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||
#: lms/lms/doctype/course_lesson/course_lesson.json
|
||||
msgid "Is SCORM Package"
|
||||
@@ -2332,6 +2388,10 @@ msgstr ""
|
||||
msgid "Items in Sidebar"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:269
|
||||
msgid "Items removed successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/signup-form.html:6
|
||||
msgid "Jane Doe"
|
||||
msgstr ""
|
||||
@@ -2531,6 +2591,21 @@ msgstr ""
|
||||
msgid "LMS Payment"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
msgid "LMS Program"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_program_course/lms_program_course.json
|
||||
msgid "LMS Program Course"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
msgid "LMS Program Member"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_question/lms_question.json
|
||||
msgid "LMS Question"
|
||||
@@ -2590,6 +2665,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
#: lms/lms/doctype/lms_source/lms_source.json
|
||||
#: lms/lms/doctype/user_skill/user_skill.json
|
||||
msgid "LMS Student"
|
||||
@@ -2812,7 +2888,7 @@ msgstr ""
|
||||
#. Label of the marks (Int) field in DocType 'LMS Quiz Result'
|
||||
#: frontend/src/components/Modals/Question.vue:50
|
||||
#: frontend/src/components/Modals/Question.vue:96
|
||||
#: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:393
|
||||
#: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:394
|
||||
#: frontend/src/pages/QuizSubmission.vue:52
|
||||
#: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json
|
||||
#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json
|
||||
@@ -2867,6 +2943,7 @@ msgstr "Średni:"
|
||||
#. Option for the 'Role' (Select) field in DocType 'LMS Enrollment'
|
||||
#. Label of the member (Link) field in DocType 'LMS Mentor Request'
|
||||
#. 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 Quiz Submission'
|
||||
#: frontend/src/pages/QuizSubmission.vue:27
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:77
|
||||
@@ -2881,6 +2958,7 @@ msgstr "Średni:"
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
|
||||
#: lms/lms/doctype/lms_payment/lms_payment.json
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/lms/report/course_progress_summary/course_progress_summary.py:64
|
||||
msgid "Member"
|
||||
@@ -2930,6 +3008,14 @@ msgstr ""
|
||||
msgid "Member Type"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:248
|
||||
msgid "Member added to program"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_program/lms_program.py:29
|
||||
msgid "Member {0} has already been added to this batch."
|
||||
msgstr ""
|
||||
|
||||
#. Group in LMS Batch Old's connections
|
||||
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
||||
msgid "Members"
|
||||
@@ -3002,6 +3088,10 @@ msgstr ""
|
||||
msgid "Milestones"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:48
|
||||
msgid "Minimum two options are required for multiple choice questions."
|
||||
msgstr ""
|
||||
|
||||
#. Name of a role
|
||||
#: frontend/src/pages/ProfileRoles.vue:10
|
||||
#: lms/lms/doctype/course_evaluator/course_evaluator.json
|
||||
@@ -3013,6 +3103,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
#: lms/lms/doctype/lms_question/lms_question.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_source/lms_source.json
|
||||
@@ -3057,8 +3148,8 @@ msgid "My calendar"
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
||||
#: frontend/src/pages/Batches.vue:30 frontend/src/pages/Courses.vue:44
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
#: frontend/src/pages/Batches.vue:30 frontend/src/pages/Courses.vue:45
|
||||
#: frontend/src/pages/Programs.vue:14 lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "New"
|
||||
msgstr ""
|
||||
|
||||
@@ -3082,11 +3173,23 @@ msgstr ""
|
||||
msgid "New Job Applicant"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:96
|
||||
msgid "New Program"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:132
|
||||
msgid "New Program Course"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:133
|
||||
msgid "New Program Member"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:122
|
||||
msgid "New Question"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:453 frontend/src/pages/QuizForm.vue:461
|
||||
#: frontend/src/pages/QuizForm.vue:454 frontend/src/pages/QuizForm.vue:462
|
||||
#: frontend/src/pages/Quizzes.vue:18
|
||||
msgid "New Quiz"
|
||||
msgstr ""
|
||||
@@ -3149,10 +3252,14 @@ msgstr ""
|
||||
msgid "No courses created"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:146
|
||||
#: frontend/src/pages/Courses.vue:147
|
||||
msgid "No courses found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:72
|
||||
msgid "No courses in this program"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/courses_under_review.html:14
|
||||
msgid "No courses under review"
|
||||
msgstr ""
|
||||
@@ -3169,6 +3276,10 @@ msgstr ""
|
||||
msgid "No live classes scheduled"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:82
|
||||
msgid "No programs found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Quizzes.vue:56
|
||||
msgid "No quizzes found"
|
||||
msgstr ""
|
||||
@@ -3189,7 +3300,7 @@ msgstr ""
|
||||
msgid "No {0} batches"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:106
|
||||
#: frontend/src/pages/Courses.vue:107
|
||||
msgid "No {0} courses"
|
||||
msgstr ""
|
||||
|
||||
@@ -3277,15 +3388,19 @@ msgstr ""
|
||||
msgid "Online"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:156
|
||||
msgid "Only courses for which self learning is disabled can be added to program."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/assignment.html:6
|
||||
msgid "Only files of type {0} will be accepted."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:494 frontend/src/utils/index.js:518
|
||||
#: frontend/src/pages/CourseForm.vue:497 frontend/src/utils/index.js:518
|
||||
msgid "Only image file is allowed."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:223
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:220
|
||||
msgid "Only zip files are allowed"
|
||||
msgstr ""
|
||||
|
||||
@@ -3561,7 +3676,11 @@ msgstr ""
|
||||
msgid "Please click on the following button to set your new password"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:251
|
||||
#: lms/lms/utils.py:1817 lms/lms/utils.py:1821
|
||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:256
|
||||
msgid "Please enable Zoom Settings to use this feature."
|
||||
msgstr ""
|
||||
|
||||
@@ -3573,11 +3692,19 @@ msgstr ""
|
||||
msgid "Please ensure that you complete all the questions in {0} minutes."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:164
|
||||
msgid "Please enter a title."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:38
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:98
|
||||
msgid "Please enter a valid URL."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:176
|
||||
msgid "Please enter a valid time in the format HH:mm."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:92
|
||||
msgid "Please enter the URL for assignment submission."
|
||||
msgstr ""
|
||||
@@ -3586,11 +3713,11 @@ msgstr ""
|
||||
msgid "Please enter your answer"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:65
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:66
|
||||
msgid "Please install the Payments app to create a paid batches."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_course/lms_course.py:52
|
||||
#: lms/lms/doctype/lms_course/lms_course.py:53
|
||||
msgid "Please install the Payments app to create a paid courses."
|
||||
msgstr ""
|
||||
|
||||
@@ -3615,11 +3742,31 @@ msgstr ""
|
||||
msgid "Please prepare well and be on time for the evaluations."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:167
|
||||
msgid "Please select a date."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:191
|
||||
msgid "Please select a duration."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:188
|
||||
msgid "Please select a future date and time."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:170
|
||||
msgid "Please select a time."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:173
|
||||
msgid "Please select a timezone."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/emails/job_report.html:6
|
||||
msgid "Please take appropriate action at {0}"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:172
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:177
|
||||
msgid "Please upload a SCORM package"
|
||||
msgstr ""
|
||||
|
||||
@@ -3756,8 +3903,30 @@ msgstr ""
|
||||
msgid "Profile Image"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:154
|
||||
msgid "Program Course"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the program_courses (Table) field in DocType 'LMS Program'
|
||||
#: frontend/src/pages/ProgramForm.vue:17
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
msgid "Program Courses"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:169
|
||||
msgid "Program Member"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the program_members (Table) field in DocType 'LMS Program'
|
||||
#: frontend/src/pages/ProgramForm.vue:78
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
msgid "Program Members"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the progress (Float) field in DocType 'LMS Enrollment'
|
||||
#. Label of the progress (Int) field in DocType 'LMS Program Member'
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
msgid "Progress"
|
||||
msgstr "Postępu"
|
||||
|
||||
@@ -3807,7 +3976,7 @@ msgstr ""
|
||||
#. Label of the question (Text) field in DocType 'LMS Quiz Result'
|
||||
#: frontend/src/components/Modals/Question.vue:38
|
||||
#: frontend/src/pages/AssignmentSubmission.vue:26
|
||||
#: frontend/src/pages/QuizForm.vue:388
|
||||
#: frontend/src/pages/QuizForm.vue:389
|
||||
#: lms/lms/doctype/course_lesson/course_lesson.json
|
||||
#: lms/lms/doctype/lms_assignment/lms_assignment.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
@@ -3853,7 +4022,7 @@ msgstr ""
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:430
|
||||
#: frontend/src/pages/QuizForm.vue:431
|
||||
msgid "Questions deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -3891,7 +4060,7 @@ msgstr ""
|
||||
msgid "Quiz Title"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:342
|
||||
#: frontend/src/pages/QuizForm.vue:343
|
||||
msgid "Quiz created successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -3899,7 +4068,7 @@ msgstr ""
|
||||
msgid "Quiz is not available to Guest users. Please login to continue."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:361
|
||||
#: frontend/src/pages/QuizForm.vue:362
|
||||
msgid "Quiz updated successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -3908,7 +4077,7 @@ msgstr ""
|
||||
msgid "Quiz will appear at the bottom of the lesson."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:441 frontend/src/pages/Quizzes.vue:136
|
||||
#: frontend/src/pages/QuizForm.vue:442 frontend/src/pages/Quizzes.vue:136
|
||||
#: frontend/src/pages/Quizzes.vue:146
|
||||
msgid "Quizzes"
|
||||
msgstr ""
|
||||
@@ -4065,19 +4234,19 @@ msgstr ""
|
||||
msgid "Route"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:194
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:199
|
||||
msgid "Row #{0} Date cannot be outside the batch duration."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:189
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:194
|
||||
msgid "Row #{0} End time cannot be outside the batch duration."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:171
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:176
|
||||
msgid "Row #{0} Start time cannot be greater than or equal to end time."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:180
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:185
|
||||
msgid "Row #{0} Start time cannot be outside the batch duration."
|
||||
msgstr ""
|
||||
|
||||
@@ -4095,6 +4264,7 @@ msgid "SCORM"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the scorm_package (Link) field in DocType 'Course Chapter'
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:22
|
||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||
msgid "SCORM Package"
|
||||
msgstr ""
|
||||
@@ -4117,8 +4287,9 @@ msgstr ""
|
||||
#: frontend/src/components/QuizPlugin.vue:23
|
||||
#: frontend/src/pages/AssignmentSubmission.vue:7
|
||||
#: frontend/src/pages/BatchForm.vue:8 frontend/src/pages/CourseForm.vue:20
|
||||
#: frontend/src/pages/JobCreation.vue:8 frontend/src/pages/LessonForm.vue:10
|
||||
#: frontend/src/pages/QuizForm.vue:34 frontend/src/pages/QuizSubmission.vue:14
|
||||
#: frontend/src/pages/JobCreation.vue:8 frontend/src/pages/LessonForm.vue:14
|
||||
#: frontend/src/pages/ProgramForm.vue:7 frontend/src/pages/QuizForm.vue:34
|
||||
#: frontend/src/pages/QuizSubmission.vue:14
|
||||
#: lms/public/js/common_functions.js:405
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
@@ -4334,6 +4505,10 @@ msgstr ""
|
||||
msgid "Skip"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/OnboardingBanner.vue:3
|
||||
msgid "Skip Onboarding"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/course_evaluator/course_evaluator.py:57
|
||||
msgid "Slot Times are overlapping for some schedules."
|
||||
msgstr ""
|
||||
@@ -4507,7 +4682,7 @@ msgstr ""
|
||||
msgid "Student Reviews"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:47
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:48
|
||||
msgid "Student {0} has already been added to this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -4575,14 +4750,17 @@ msgstr ""
|
||||
#: frontend/src/components/CourseCardOverlay.vue:161
|
||||
#: frontend/src/components/Modals/AnnouncementModal.vue:99
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:73
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:148
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:193
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:153
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:198
|
||||
#: frontend/src/components/Modals/Event.vue:255
|
||||
#: frontend/src/components/Modals/Event.vue:310
|
||||
#: frontend/src/components/Modals/Question.vue:261
|
||||
#: frontend/src/components/Modals/Question.vue:312
|
||||
#: frontend/src/pages/CourseForm.vue:457 frontend/src/pages/QuizForm.vue:342
|
||||
#: frontend/src/pages/QuizForm.vue:361 frontend/src/pages/QuizForm.vue:430
|
||||
#: frontend/src/pages/CourseForm.vue:460 frontend/src/pages/ProgramForm.vue:226
|
||||
#: frontend/src/pages/ProgramForm.vue:248
|
||||
#: frontend/src/pages/ProgramForm.vue:269
|
||||
#: frontend/src/pages/ProgramForm.vue:295 frontend/src/pages/QuizForm.vue:343
|
||||
#: frontend/src/pages/QuizForm.vue:362 frontend/src/pages/QuizForm.vue:431
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
@@ -4637,6 +4815,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
|
||||
#: lms/lms/doctype/lms_payment/lms_payment.json
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
#: lms/lms/doctype/lms_question/lms_question.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
@@ -4737,11 +4916,15 @@ msgstr ""
|
||||
msgid "There are no chapters in this course. Create and manage chapters from here."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:150
|
||||
#: frontend/src/pages/Courses.vue:151
|
||||
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:141
|
||||
#: frontend/src/pages/Programs.vue:86
|
||||
msgid "There are no programs available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:146
|
||||
msgid "There are no seats available in this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -4772,11 +4955,11 @@ msgstr ""
|
||||
msgid "This course has:"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1582
|
||||
#: lms/lms/utils.py:1585
|
||||
msgid "This course is free."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/SCORMChapter.vue:198
|
||||
#: frontend/src/pages/SCORMChapter.vue:197
|
||||
msgid "This is a chapter in the course {0}"
|
||||
msgstr ""
|
||||
|
||||
@@ -4868,6 +5051,7 @@ msgstr ""
|
||||
#. Label of the title (Data) field in DocType 'LMS Course'
|
||||
#. Label of the title (Data) field in DocType 'LMS Exercise'
|
||||
#. Label of the title (Data) field in DocType 'LMS Live Class'
|
||||
#. Label of the title (Data) field in DocType 'LMS Program'
|
||||
#. Label of the title (Data) field in DocType 'LMS Quiz'
|
||||
#. Label of the title (Data) field in DocType 'LMS Sidebar Item'
|
||||
#. Label of the title (Data) field in DocType 'LMS Timetable Template'
|
||||
@@ -4875,7 +5059,8 @@ msgstr ""
|
||||
#: frontend/src/components/Modals/DiscussionModal.vue:18
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:23
|
||||
#: frontend/src/pages/BatchForm.vue:20 frontend/src/pages/CourseForm.vue:32
|
||||
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/QuizForm.vue:48
|
||||
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/ProgramForm.vue:11
|
||||
#: frontend/src/pages/Programs.vue:107 frontend/src/pages/QuizForm.vue:48
|
||||
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
|
||||
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
|
||||
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json
|
||||
@@ -4888,6 +5073,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_exercise/lms_exercise.json
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_sidebar_item/lms_sidebar_item.json
|
||||
#: lms/lms/doctype/lms_timetable_template/lms_timetable_template.json
|
||||
@@ -4896,7 +5082,7 @@ msgstr ""
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:169
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:174
|
||||
msgid "Title is required"
|
||||
msgstr ""
|
||||
|
||||
@@ -4911,7 +5097,7 @@ msgstr ""
|
||||
msgid "To Date"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1593
|
||||
#: lms/lms/utils.py:1596
|
||||
msgid "To join this batch, please contact the Administrator."
|
||||
msgstr ""
|
||||
|
||||
@@ -4975,7 +5161,7 @@ msgstr ""
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Quiz.vue:580
|
||||
#: frontend/src/components/Quiz.vue:583
|
||||
msgid "Type your answer"
|
||||
msgstr ""
|
||||
|
||||
@@ -5259,7 +5445,7 @@ msgstr ""
|
||||
msgid "You are not enrolled in this course. Please enroll to access this lesson."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:134
|
||||
#: frontend/src/pages/Courses.vue:135
|
||||
msgid "You can add chapters and lessons to it."
|
||||
msgstr ""
|
||||
|
||||
@@ -5431,6 +5617,10 @@ msgstr ""
|
||||
msgid "jane@example.com"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:32
|
||||
msgid "members"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/quiz/quiz.html:106
|
||||
msgid "of"
|
||||
msgstr ""
|
||||
@@ -5443,7 +5633,7 @@ msgstr "spośród"
|
||||
msgid "posted by"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:389
|
||||
#: frontend/src/pages/QuizForm.vue:390
|
||||
msgid "question_detail"
|
||||
msgstr ""
|
||||
|
||||
@@ -5475,7 +5665,7 @@ msgstr ""
|
||||
msgid "{0} has submitted the assignment {1}"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.py:53
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.py:57
|
||||
msgid "{0} is already a Student of {1} course through {2} batch"
|
||||
msgstr ""
|
||||
|
||||
@@ -5483,7 +5673,7 @@ msgstr ""
|
||||
msgid "{0} is already a mentor for course {1}"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.py:26
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.py:30
|
||||
msgid "{0} is already a {1} of the course {2}"
|
||||
msgstr ""
|
||||
|
||||
|
||||
340
lms/locale/ru.po
340
lms/locale/ru.po
@@ -2,8 +2,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: frappe\n"
|
||||
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
||||
"POT-Creation-Date: 2024-11-15 16:04+0000\n"
|
||||
"PO-Revision-Date: 2024-11-18 17:31\n"
|
||||
"POT-Creation-Date: 2024-11-22 16:05+0000\n"
|
||||
"PO-Revision-Date: 2024-11-25 19:29\n"
|
||||
"Last-Translator: jannat@frappe.io\n"
|
||||
"Language-Team: Russian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -22,6 +22,11 @@ msgstr ""
|
||||
msgid " Please evaluate and grade it."
|
||||
msgstr " Пожалуйста, оцените и поставьте оценку."
|
||||
|
||||
#: frontend/src/pages/Programs.vue:41
|
||||
#, python-format
|
||||
msgid "% completed"
|
||||
msgstr "% завершено"
|
||||
|
||||
#. Paragraph text in the LMS Workspace
|
||||
#: lms/lms/workspace/lms/lms.json
|
||||
msgid "<a href=\"/app/lms-settings/LMS%20Settings\">LMS Settings</a>"
|
||||
@@ -99,7 +104,8 @@ msgstr ""
|
||||
#: frontend/src/components/BatchStudents.vue:6
|
||||
#: frontend/src/components/Categories.vue:26
|
||||
#: frontend/src/components/LiveClass.vue:11
|
||||
#: frontend/src/components/Members.vue:43
|
||||
#: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30
|
||||
#: frontend/src/pages/ProgramForm.vue:91 frontend/src/pages/ProgramForm.vue:136
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
@@ -129,12 +135,20 @@ msgstr "Добавить урок"
|
||||
msgid "Add a Student"
|
||||
msgstr "Добавить студента"
|
||||
|
||||
#: frontend/src/components/OnboardingBanner.vue:50
|
||||
msgid "Add a chapter"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/BatchCourseModal.vue:5
|
||||
msgid "Add a course"
|
||||
msgstr "Добавить курс"
|
||||
|
||||
#: frontend/src/components/OnboardingBanner.vue:73
|
||||
msgid "Add a lesson"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/Question.vue:141
|
||||
#: frontend/src/pages/QuizForm.vue:181
|
||||
#: frontend/src/pages/QuizForm.vue:182
|
||||
msgid "Add a new question"
|
||||
msgstr ""
|
||||
|
||||
@@ -150,7 +164,7 @@ msgstr ""
|
||||
msgid "Add an existing question"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:60
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:66
|
||||
msgid "Add at least one possible answer for this question: {0}"
|
||||
msgstr "Добавьте хотя бы один возможный ответ на этот вопрос: {0}"
|
||||
|
||||
@@ -253,6 +267,14 @@ msgstr ""
|
||||
msgid "Amount Field"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:70
|
||||
msgid "Amount and currency are required for paid batches."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_course/lms_course.py:57
|
||||
msgid "Amount and currency are required for paid courses."
|
||||
msgstr ""
|
||||
|
||||
#. Label of the amount_with_gst (Currency) field in DocType 'LMS Payment'
|
||||
#: lms/lms/doctype/lms_payment/lms_payment.json
|
||||
msgid "Amount with GST"
|
||||
@@ -346,7 +368,7 @@ msgstr "Тип оценки"
|
||||
msgid "Assessment added successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:75
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:80
|
||||
msgid "Assessment {0} has already been added to this batch."
|
||||
msgstr "Оценка {0} уже добавлена в этот пакет."
|
||||
|
||||
@@ -397,7 +419,7 @@ msgstr "Задание для урока {0} от {1} уже существуе
|
||||
msgid "Assignment will appear at the bottom of the lesson."
|
||||
msgstr "Задание появится в конце урока."
|
||||
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:42
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:43
|
||||
msgid "At least one option must be correct for this question."
|
||||
msgstr "Для этого вопроса должен быть верным хотя бы один вариант."
|
||||
|
||||
@@ -540,7 +562,7 @@ msgstr ""
|
||||
msgid "Batch Updated"
|
||||
msgstr "Группа обновлена"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:40
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:41
|
||||
msgid "Batch end date cannot be before the batch start date"
|
||||
msgstr ""
|
||||
|
||||
@@ -727,11 +749,11 @@ msgstr "Глава"
|
||||
msgid "Chapter Reference"
|
||||
msgstr "Ссылка на главу"
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:149
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:154
|
||||
msgid "Chapter added successfully"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:193
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:198
|
||||
msgid "Chapter updated successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -764,7 +786,7 @@ msgstr "Оформить заказ на Курсы"
|
||||
msgid "Choices"
|
||||
msgstr "Варианты ответов"
|
||||
|
||||
#: frontend/src/components/Quiz.vue:578 lms/templates/quiz/quiz.html:53
|
||||
#: frontend/src/components/Quiz.vue:581 lms/templates/quiz/quiz.html:53
|
||||
msgid "Choose all answers that apply"
|
||||
msgstr "Выберите все подходящие ответы"
|
||||
|
||||
@@ -772,7 +794,7 @@ msgstr "Выберите все подходящие ответы"
|
||||
msgid "Choose an icon"
|
||||
msgstr "Выберите иконку"
|
||||
|
||||
#: frontend/src/components/Quiz.vue:579 lms/templates/quiz/quiz.html:53
|
||||
#: frontend/src/components/Quiz.vue:582 lms/templates/quiz/quiz.html:53
|
||||
msgid "Choose one answer"
|
||||
msgstr "Выберите один ответ"
|
||||
|
||||
@@ -988,7 +1010,7 @@ msgid "Contact the Administrator to enroll for this course."
|
||||
msgstr ""
|
||||
|
||||
#. Label of the content (Text) field in DocType 'Course Lesson'
|
||||
#: frontend/src/pages/LessonForm.vue:58
|
||||
#: frontend/src/pages/LessonForm.vue:62
|
||||
#: lms/lms/doctype/course_lesson/course_lesson.json
|
||||
msgid "Content"
|
||||
msgstr "Содержание"
|
||||
@@ -1057,6 +1079,7 @@ msgstr ""
|
||||
#. Label of the course (Link) field in DocType 'LMS Enrollment'
|
||||
#. Label of the course (Link) field in DocType 'LMS Exercise'
|
||||
#. Label of the course (Link) field in DocType 'LMS Mentor Request'
|
||||
#. Label of the course (Link) field in DocType 'LMS Program Course'
|
||||
#. Label of the course (Link) field in DocType 'LMS Quiz'
|
||||
#. Label of the course (Link) field in DocType 'LMS Quiz Submission'
|
||||
#. Label of the course (Link) field in DocType 'Related Courses'
|
||||
@@ -1086,6 +1109,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
#: lms/lms/doctype/lms_exercise/lms_exercise.json
|
||||
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
|
||||
#: lms/lms/doctype/lms_program_course/lms_program_course.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/lms/doctype/related_courses/related_courses.json
|
||||
@@ -1114,6 +1138,7 @@ msgstr "Содержание курса"
|
||||
#. Name of a role
|
||||
#: frontend/src/pages/ProfileRoles.vue:16
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
#: lms/lms/doctype/lms_question/lms_question.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
msgid "Course Creator"
|
||||
@@ -1184,22 +1209,33 @@ msgstr "Статистика курса"
|
||||
#. Label of the course_title (Data) field in DocType 'Course Chapter'
|
||||
#. Label of the course_title (Data) field in DocType 'LMS Certificate'
|
||||
#. Label of the course_title (Data) field in DocType 'LMS Certificate Request'
|
||||
#. Label of the course_title (Data) field in DocType 'LMS Program Course'
|
||||
#: lms/lms/doctype/batch_course/batch_course.json
|
||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
#: lms/lms/doctype/lms_program_course/lms_program_course.json
|
||||
msgid "Course Title"
|
||||
msgstr "Заголовок курса"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:340
|
||||
#: frontend/src/pages/ProgramForm.vue:226
|
||||
msgid "Course added to program"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:345
|
||||
msgid "Course already added to the batch."
|
||||
msgstr "Курс уже добавлен в группу."
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:457
|
||||
#: frontend/src/pages/CourseForm.vue:460
|
||||
msgid "Course deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:58
|
||||
#: frontend/src/pages/ProgramForm.vue:295
|
||||
msgid "Course moved successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:59
|
||||
#: lms/lms/doctype/lms_program/lms_program.py:19
|
||||
msgid "Course {0} has already been added to this batch."
|
||||
msgstr "Курс {0} уже добавлен в группу."
|
||||
|
||||
@@ -1234,6 +1270,7 @@ msgid "Cover Image"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:9
|
||||
#: frontend/src/pages/Programs.vue:99
|
||||
msgid "Create"
|
||||
msgstr ""
|
||||
|
||||
@@ -1249,7 +1286,7 @@ msgstr "Создать оценку сертификата LMS"
|
||||
msgid "Create a Batch"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:131 lms/templates/onboarding_header.html:19
|
||||
#: frontend/src/pages/Courses.vue:132 lms/templates/onboarding_header.html:19
|
||||
msgid "Create a Course"
|
||||
msgstr "Создать курс"
|
||||
|
||||
@@ -1257,6 +1294,10 @@ msgstr "Создать курс"
|
||||
msgid "Create a Live Class"
|
||||
msgstr "Создайте живой класс"
|
||||
|
||||
#: frontend/src/components/OnboardingBanner.vue:27
|
||||
msgid "Create a course"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/Question.vue:31
|
||||
msgid "Create a new question"
|
||||
msgstr ""
|
||||
@@ -1360,7 +1401,7 @@ msgstr "Тип степени"
|
||||
|
||||
#: frontend/src/components/CourseOutline.vue:235
|
||||
#: frontend/src/components/CourseOutline.vue:293
|
||||
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:470
|
||||
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:473
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
@@ -1368,7 +1409,7 @@ msgstr ""
|
||||
msgid "Delete Chapter"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:464
|
||||
#: frontend/src/pages/CourseForm.vue:467
|
||||
msgid "Delete Course"
|
||||
msgstr ""
|
||||
|
||||
@@ -1380,7 +1421,7 @@ msgstr ""
|
||||
msgid "Delete this lesson?"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:465
|
||||
#: frontend/src/pages/CourseForm.vue:468
|
||||
msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?"
|
||||
msgstr ""
|
||||
|
||||
@@ -1470,7 +1511,7 @@ msgstr "Документ"
|
||||
msgid "Dream Companies"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:32
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:33
|
||||
msgid "Duplicate options found for this question."
|
||||
msgstr "Для этого вопроса найдены дубликаты вариантов."
|
||||
|
||||
@@ -1508,7 +1549,7 @@ msgstr "E-mail"
|
||||
#: frontend/src/components/CourseCardOverlay.vue:86
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:9
|
||||
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:65
|
||||
#: frontend/src/pages/Profile.vue:32
|
||||
#: frontend/src/pages/Profile.vue:32 frontend/src/pages/Programs.vue:55
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
@@ -1521,7 +1562,7 @@ msgstr "Редактировать главу"
|
||||
msgid "Edit Profile"
|
||||
msgstr "Редактировать профиль"
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:180
|
||||
#: frontend/src/pages/QuizForm.vue:181
|
||||
msgid "Edit the question"
|
||||
msgstr ""
|
||||
|
||||
@@ -1582,6 +1623,15 @@ msgstr "Включить сертификацию"
|
||||
msgid "Enable Google API in Google Settings to send calendar invites for evaluations."
|
||||
msgstr "Включите Google API в настройках Google, чтобы отправлять приглашения в календарь для оценки."
|
||||
|
||||
#. Label of the enable_learning_paths (Check) field in DocType 'LMS Settings'
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Enable Learning Paths"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:24
|
||||
msgid "Enable this only if you want to upload a SCORM package as a chapter."
|
||||
msgstr ""
|
||||
|
||||
#. Label of the enabled (Check) field in DocType 'LMS Badge'
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "Enabled"
|
||||
@@ -1634,7 +1684,7 @@ msgstr "Зачисленные студенты"
|
||||
msgid "Enrolled successfully"
|
||||
msgstr "Зачислен успешно"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:98
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:103
|
||||
msgid "Enrollment Confirmation for the Next Training Batch"
|
||||
msgstr "Подтверждение регистрации на следующую группу обучения"
|
||||
|
||||
@@ -1643,7 +1693,7 @@ msgstr "Подтверждение регистрации на следующу
|
||||
msgid "Enrollment Count"
|
||||
msgstr "Количество регистраций"
|
||||
|
||||
#: lms/lms/utils.py:1702
|
||||
#: lms/lms/utils.py:1705
|
||||
msgid "Enrollment Failed"
|
||||
msgstr ""
|
||||
|
||||
@@ -1672,14 +1722,14 @@ msgid "Enter the correct answer"
|
||||
msgstr "Введите правильный ответ"
|
||||
|
||||
#: frontend/src/components/Modals/AnnouncementModal.vue:105
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:154
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:161
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:197
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:159
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:166
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:202
|
||||
#: frontend/src/components/Modals/Question.vue:246
|
||||
#: frontend/src/components/Modals/Question.vue:266
|
||||
#: frontend/src/components/Modals/Question.vue:323
|
||||
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:349
|
||||
#: frontend/src/pages/QuizForm.vue:364
|
||||
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350
|
||||
#: frontend/src/pages/QuizForm.vue:365
|
||||
#: frontend/src/pages/QuizSubmission.vue:117
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
@@ -1708,7 +1758,7 @@ msgstr "Дата окончания оценки"
|
||||
msgid "Evaluation Request"
|
||||
msgstr "Запрос на оценку"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:82
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:87
|
||||
msgid "Evaluation end date cannot be less than the batch end date."
|
||||
msgstr "Дата окончания оценки не может быть меньше даты окончания группы."
|
||||
|
||||
@@ -1874,7 +1924,7 @@ msgstr ""
|
||||
msgid "Flexible Time"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:462
|
||||
#: frontend/src/pages/QuizForm.vue:463
|
||||
msgid "Form to create and edit quizzes"
|
||||
msgstr ""
|
||||
|
||||
@@ -1922,7 +1972,9 @@ msgid "From Date"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the full_name (Data) field in DocType 'Invite Request'
|
||||
#. Label of the full_name (Data) field in DocType 'LMS Program Member'
|
||||
#: lms/lms/doctype/invite_request/invite_request.json
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
#: lms/templates/signup-form.html:5
|
||||
msgid "Full Name"
|
||||
msgstr "Полное имя"
|
||||
@@ -1954,6 +2006,11 @@ msgstr ""
|
||||
msgid "GSTIN"
|
||||
msgstr "GSTIN"
|
||||
|
||||
#. Label of the general_tab (Tab Break) field in DocType 'LMS Settings'
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "General"
|
||||
msgstr "Основные"
|
||||
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:18
|
||||
msgid "Generate Google Meet Link"
|
||||
msgstr "Сгенерировать ссылку Google Meet"
|
||||
@@ -2085,7 +2142,7 @@ msgstr ""
|
||||
msgid "I am unavailable"
|
||||
msgstr "Я недоступен"
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:383
|
||||
#: frontend/src/pages/QuizForm.vue:384
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
@@ -2226,7 +2283,7 @@ msgstr "Содержание инструктора"
|
||||
|
||||
#. Label of the instructor_notes (Markdown Editor) field in DocType 'Course
|
||||
#. Lesson'
|
||||
#: frontend/src/pages/Lesson.vue:128 frontend/src/pages/LessonForm.vue:38
|
||||
#: frontend/src/pages/Lesson.vue:128 frontend/src/pages/LessonForm.vue:42
|
||||
#: lms/lms/doctype/course_lesson/course_lesson.json
|
||||
msgid "Instructor Notes"
|
||||
msgstr "Заметки инструктора"
|
||||
@@ -2302,7 +2359,6 @@ msgstr "Завершена ли адаптация?"
|
||||
|
||||
#. Label of the is_scorm_package (Check) field in DocType 'Course Chapter'
|
||||
#. Label of the is_scorm_package (Check) field in DocType 'Course Lesson'
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:26
|
||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||
#: lms/lms/doctype/course_lesson/course_lesson.json
|
||||
msgid "Is SCORM Package"
|
||||
@@ -2332,6 +2388,10 @@ msgstr "Дата выпуска:"
|
||||
msgid "Items in Sidebar"
|
||||
msgstr "Элементы боковой панели"
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:269
|
||||
msgid "Items removed successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/signup-form.html:6
|
||||
msgid "Jane Doe"
|
||||
msgstr "Иван Иванов"
|
||||
@@ -2531,6 +2591,21 @@ msgstr "Опция LMS"
|
||||
msgid "LMS Payment"
|
||||
msgstr "Оплата LMS"
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
msgid "LMS Program"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_program_course/lms_program_course.json
|
||||
msgid "LMS Program Course"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
msgid "LMS Program Member"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_question/lms_question.json
|
||||
msgid "LMS Question"
|
||||
@@ -2590,6 +2665,7 @@ msgstr "Источник LMS"
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
#: lms/lms/doctype/lms_source/lms_source.json
|
||||
#: lms/lms/doctype/user_skill/user_skill.json
|
||||
msgid "LMS Student"
|
||||
@@ -2812,7 +2888,7 @@ msgstr "Отметить как прочитанное"
|
||||
#. Label of the marks (Int) field in DocType 'LMS Quiz Result'
|
||||
#: frontend/src/components/Modals/Question.vue:50
|
||||
#: frontend/src/components/Modals/Question.vue:96
|
||||
#: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:393
|
||||
#: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:394
|
||||
#: frontend/src/pages/QuizSubmission.vue:52
|
||||
#: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json
|
||||
#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json
|
||||
@@ -2867,6 +2943,7 @@ msgstr "Средний:"
|
||||
#. Option for the 'Role' (Select) field in DocType 'LMS Enrollment'
|
||||
#. Label of the member (Link) field in DocType 'LMS Mentor Request'
|
||||
#. 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 Quiz Submission'
|
||||
#: frontend/src/pages/QuizSubmission.vue:27
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:77
|
||||
@@ -2881,6 +2958,7 @@ msgstr "Средний:"
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
|
||||
#: lms/lms/doctype/lms_payment/lms_payment.json
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/lms/report/course_progress_summary/course_progress_summary.py:64
|
||||
msgid "Member"
|
||||
@@ -2930,6 +3008,14 @@ msgstr "Подгруппа участников"
|
||||
msgid "Member Type"
|
||||
msgstr "Тип участника"
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:248
|
||||
msgid "Member added to program"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_program/lms_program.py:29
|
||||
msgid "Member {0} has already been added to this batch."
|
||||
msgstr ""
|
||||
|
||||
#. Group in LMS Batch Old's connections
|
||||
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
||||
msgid "Members"
|
||||
@@ -3002,6 +3088,10 @@ msgstr "Этап"
|
||||
msgid "Milestones"
|
||||
msgstr "Этапы"
|
||||
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:48
|
||||
msgid "Minimum two options are required for multiple choice questions."
|
||||
msgstr ""
|
||||
|
||||
#. Name of a role
|
||||
#: frontend/src/pages/ProfileRoles.vue:10
|
||||
#: lms/lms/doctype/course_evaluator/course_evaluator.json
|
||||
@@ -3013,6 +3103,7 @@ msgstr "Этапы"
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
#: lms/lms/doctype/lms_question/lms_question.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_source/lms_source.json
|
||||
@@ -3057,8 +3148,8 @@ msgid "My calendar"
|
||||
msgstr "Мой календарь"
|
||||
|
||||
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
||||
#: frontend/src/pages/Batches.vue:30 frontend/src/pages/Courses.vue:44
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
#: frontend/src/pages/Batches.vue:30 frontend/src/pages/Courses.vue:45
|
||||
#: frontend/src/pages/Programs.vue:14 lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "New"
|
||||
msgstr ""
|
||||
|
||||
@@ -3082,11 +3173,23 @@ msgstr "Новая Вакансия"
|
||||
msgid "New Job Applicant"
|
||||
msgstr "Новый соискатель работы"
|
||||
|
||||
#: frontend/src/pages/Programs.vue:96
|
||||
msgid "New Program"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:132
|
||||
msgid "New Program Course"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:133
|
||||
msgid "New Program Member"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:122
|
||||
msgid "New Question"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:453 frontend/src/pages/QuizForm.vue:461
|
||||
#: frontend/src/pages/QuizForm.vue:454 frontend/src/pages/QuizForm.vue:462
|
||||
#: frontend/src/pages/Quizzes.vue:18
|
||||
msgid "New Quiz"
|
||||
msgstr ""
|
||||
@@ -3149,10 +3252,14 @@ msgstr "Нет сертификатов"
|
||||
msgid "No courses created"
|
||||
msgstr "Курсы не созданы"
|
||||
|
||||
#: frontend/src/pages/Courses.vue:146
|
||||
#: frontend/src/pages/Courses.vue:147
|
||||
msgid "No courses found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:72
|
||||
msgid "No courses in this program"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/courses_under_review.html:14
|
||||
msgid "No courses under review"
|
||||
msgstr "Нет рассматриваемых курсов"
|
||||
@@ -3169,6 +3276,10 @@ msgstr "Вакансии не опубликованы"
|
||||
msgid "No live classes scheduled"
|
||||
msgstr "Не запланированы онлайн-курсы"
|
||||
|
||||
#: frontend/src/pages/Programs.vue:82
|
||||
msgid "No programs found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Quizzes.vue:56
|
||||
msgid "No quizzes found"
|
||||
msgstr ""
|
||||
@@ -3189,7 +3300,7 @@ msgstr "Нет {0}"
|
||||
msgid "No {0} batches"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:106
|
||||
#: frontend/src/pages/Courses.vue:107
|
||||
msgid "No {0} courses"
|
||||
msgstr ""
|
||||
|
||||
@@ -3277,15 +3388,19 @@ msgstr "Как только модератор оценит вашу заявк
|
||||
msgid "Online"
|
||||
msgstr "Online"
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:156
|
||||
msgid "Only courses for which self learning is disabled can be added to program."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/assignment.html:6
|
||||
msgid "Only files of type {0} will be accepted."
|
||||
msgstr "Принимаются только файлы типа {0} ."
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:494 frontend/src/utils/index.js:518
|
||||
#: frontend/src/pages/CourseForm.vue:497 frontend/src/utils/index.js:518
|
||||
msgid "Only image file is allowed."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:223
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:220
|
||||
msgid "Only zip files are allowed"
|
||||
msgstr ""
|
||||
|
||||
@@ -3561,7 +3676,11 @@ msgstr "Пожалуйста, проверьте свой email для подт
|
||||
msgid "Please click on the following button to set your new password"
|
||||
msgstr "Нажмите на следующую кнопку, чтобы установить новый пароль."
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:251
|
||||
#: lms/lms/utils.py:1817 lms/lms/utils.py:1821
|
||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:256
|
||||
msgid "Please enable Zoom Settings to use this feature."
|
||||
msgstr "Чтобы использовать эту функцию, включите настройки Zoom."
|
||||
|
||||
@@ -3573,11 +3692,19 @@ msgstr ""
|
||||
msgid "Please ensure that you complete all the questions in {0} minutes."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:164
|
||||
msgid "Please enter a title."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:38
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:98
|
||||
msgid "Please enter a valid URL."
|
||||
msgstr "Введите действительный URL-адрес."
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:176
|
||||
msgid "Please enter a valid time in the format HH:mm."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:92
|
||||
msgid "Please enter the URL for assignment submission."
|
||||
msgstr "Введите URL для отправки задания."
|
||||
@@ -3586,11 +3713,11 @@ msgstr "Введите URL для отправки задания."
|
||||
msgid "Please enter your answer"
|
||||
msgstr "Пожалуйста, введите ваш ответ"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:65
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:66
|
||||
msgid "Please install the Payments app to create a paid batches."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_course/lms_course.py:52
|
||||
#: lms/lms/doctype/lms_course/lms_course.py:53
|
||||
msgid "Please install the Payments app to create a paid courses."
|
||||
msgstr ""
|
||||
|
||||
@@ -3615,11 +3742,31 @@ msgstr "Пожалуйста, войдите в систему, чтобы пр
|
||||
msgid "Please prepare well and be on time for the evaluations."
|
||||
msgstr "Пожалуйста, хорошо подготовьтесь и приходите на оценку вовремя."
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:167
|
||||
msgid "Please select a date."
|
||||
msgstr "Пожалуйста, выберите дату."
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:191
|
||||
msgid "Please select a duration."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:188
|
||||
msgid "Please select a future date and time."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:170
|
||||
msgid "Please select a time."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:173
|
||||
msgid "Please select a timezone."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/emails/job_report.html:6
|
||||
msgid "Please take appropriate action at {0}"
|
||||
msgstr "Пожалуйста, примите соответствующие меры в {0}"
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:172
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:177
|
||||
msgid "Please upload a SCORM package"
|
||||
msgstr ""
|
||||
|
||||
@@ -3756,8 +3903,30 @@ msgstr ""
|
||||
msgid "Profile Image"
|
||||
msgstr "Изображение профиля"
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:154
|
||||
msgid "Program Course"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the program_courses (Table) field in DocType 'LMS Program'
|
||||
#: frontend/src/pages/ProgramForm.vue:17
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
msgid "Program Courses"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:169
|
||||
msgid "Program Member"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the program_members (Table) field in DocType 'LMS Program'
|
||||
#: frontend/src/pages/ProgramForm.vue:78
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
msgid "Program Members"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the progress (Float) field in DocType 'LMS Enrollment'
|
||||
#. Label of the progress (Int) field in DocType 'LMS Program Member'
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
msgid "Progress"
|
||||
msgstr "Прогресс"
|
||||
|
||||
@@ -3807,7 +3976,7 @@ msgstr "Опубликована"
|
||||
#. Label of the question (Text) field in DocType 'LMS Quiz Result'
|
||||
#: frontend/src/components/Modals/Question.vue:38
|
||||
#: frontend/src/pages/AssignmentSubmission.vue:26
|
||||
#: frontend/src/pages/QuizForm.vue:388
|
||||
#: frontend/src/pages/QuizForm.vue:389
|
||||
#: lms/lms/doctype/course_lesson/course_lesson.json
|
||||
#: lms/lms/doctype/lms_assignment/lms_assignment.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
@@ -3853,7 +4022,7 @@ msgstr "Вопрос {0} из {1}"
|
||||
msgid "Questions"
|
||||
msgstr "Вопросы"
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:430
|
||||
#: frontend/src/pages/QuizForm.vue:431
|
||||
msgid "Questions deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -3891,7 +4060,7 @@ msgstr "Краткое содержание теста"
|
||||
msgid "Quiz Title"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:342
|
||||
#: frontend/src/pages/QuizForm.vue:343
|
||||
msgid "Quiz created successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -3899,7 +4068,7 @@ msgstr ""
|
||||
msgid "Quiz is not available to Guest users. Please login to continue."
|
||||
msgstr "Тест недоступен для гостевых пользователей. Пожалуйста, войдите, чтобы продолжить."
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:361
|
||||
#: frontend/src/pages/QuizForm.vue:362
|
||||
msgid "Quiz updated successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -3908,7 +4077,7 @@ msgstr ""
|
||||
msgid "Quiz will appear at the bottom of the lesson."
|
||||
msgstr "Тест появится в конце урока."
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:441 frontend/src/pages/Quizzes.vue:136
|
||||
#: frontend/src/pages/QuizForm.vue:442 frontend/src/pages/Quizzes.vue:136
|
||||
#: frontend/src/pages/Quizzes.vue:146
|
||||
msgid "Quizzes"
|
||||
msgstr ""
|
||||
@@ -4065,19 +4234,19 @@ msgstr ""
|
||||
msgid "Route"
|
||||
msgstr "Маршрут"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:194
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:199
|
||||
msgid "Row #{0} Date cannot be outside the batch duration."
|
||||
msgstr "Строка #{0} Дата не может выходить за пределы длительности партии."
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:189
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:194
|
||||
msgid "Row #{0} End time cannot be outside the batch duration."
|
||||
msgstr "Строка #{0} Время окончания не может выходить за рамки длительности партии."
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:171
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:176
|
||||
msgid "Row #{0} Start time cannot be greater than or equal to end time."
|
||||
msgstr "Строка #{0} Время начала не может быть больше или равно времени окончания."
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:180
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:185
|
||||
msgid "Row #{0} Start time cannot be outside the batch duration."
|
||||
msgstr "Строка #{0} Время начала не может выходить за рамки длительности партии."
|
||||
|
||||
@@ -4095,6 +4264,7 @@ msgid "SCORM"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the scorm_package (Link) field in DocType 'Course Chapter'
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:22
|
||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||
msgid "SCORM Package"
|
||||
msgstr ""
|
||||
@@ -4117,8 +4287,9 @@ msgstr "Суббота"
|
||||
#: frontend/src/components/QuizPlugin.vue:23
|
||||
#: frontend/src/pages/AssignmentSubmission.vue:7
|
||||
#: frontend/src/pages/BatchForm.vue:8 frontend/src/pages/CourseForm.vue:20
|
||||
#: frontend/src/pages/JobCreation.vue:8 frontend/src/pages/LessonForm.vue:10
|
||||
#: frontend/src/pages/QuizForm.vue:34 frontend/src/pages/QuizSubmission.vue:14
|
||||
#: frontend/src/pages/JobCreation.vue:8 frontend/src/pages/LessonForm.vue:14
|
||||
#: frontend/src/pages/ProgramForm.vue:7 frontend/src/pages/QuizForm.vue:34
|
||||
#: frontend/src/pages/QuizSubmission.vue:14
|
||||
#: lms/public/js/common_functions.js:405
|
||||
msgid "Save"
|
||||
msgstr ""
|
||||
@@ -4334,6 +4505,10 @@ msgstr "Навыки должны быть уникальными"
|
||||
msgid "Skip"
|
||||
msgstr "Пропустить"
|
||||
|
||||
#: frontend/src/components/OnboardingBanner.vue:3
|
||||
msgid "Skip Onboarding"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/course_evaluator/course_evaluator.py:57
|
||||
msgid "Slot Times are overlapping for some schedules."
|
||||
msgstr "В некоторых расписаниях интервалы времени пересекаются."
|
||||
@@ -4507,7 +4682,7 @@ msgstr "Имя студента"
|
||||
msgid "Student Reviews"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:47
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:48
|
||||
msgid "Student {0} has already been added to this batch."
|
||||
msgstr "Курс {0} уже добавлен в группу."
|
||||
|
||||
@@ -4575,14 +4750,17 @@ msgstr "Отправлено {0}"
|
||||
#: frontend/src/components/CourseCardOverlay.vue:161
|
||||
#: frontend/src/components/Modals/AnnouncementModal.vue:99
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:73
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:148
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:193
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:153
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:198
|
||||
#: frontend/src/components/Modals/Event.vue:255
|
||||
#: frontend/src/components/Modals/Event.vue:310
|
||||
#: frontend/src/components/Modals/Question.vue:261
|
||||
#: frontend/src/components/Modals/Question.vue:312
|
||||
#: frontend/src/pages/CourseForm.vue:457 frontend/src/pages/QuizForm.vue:342
|
||||
#: frontend/src/pages/QuizForm.vue:361 frontend/src/pages/QuizForm.vue:430
|
||||
#: frontend/src/pages/CourseForm.vue:460 frontend/src/pages/ProgramForm.vue:226
|
||||
#: frontend/src/pages/ProgramForm.vue:248
|
||||
#: frontend/src/pages/ProgramForm.vue:269
|
||||
#: frontend/src/pages/ProgramForm.vue:295 frontend/src/pages/QuizForm.vue:343
|
||||
#: frontend/src/pages/QuizForm.vue:362 frontend/src/pages/QuizForm.vue:431
|
||||
msgid "Success"
|
||||
msgstr ""
|
||||
|
||||
@@ -4637,6 +4815,7 @@ msgstr "Воскресенье"
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
|
||||
#: lms/lms/doctype/lms_payment/lms_payment.json
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
#: lms/lms/doctype/lms_question/lms_question.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
@@ -4737,11 +4916,15 @@ msgstr ""
|
||||
msgid "There are no chapters in this course. Create and manage chapters from here."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:150
|
||||
#: frontend/src/pages/Courses.vue:151
|
||||
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:141
|
||||
#: frontend/src/pages/Programs.vue:86
|
||||
msgid "There are no programs available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:146
|
||||
msgid "There are no seats available in this batch."
|
||||
msgstr "В этой группе нет свободных мест."
|
||||
|
||||
@@ -4772,11 +4955,11 @@ msgstr "Этот сертификат является бессрочным"
|
||||
msgid "This course has:"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1582
|
||||
#: lms/lms/utils.py:1585
|
||||
msgid "This course is free."
|
||||
msgstr "Этот курс бесплатный."
|
||||
|
||||
#: frontend/src/pages/SCORMChapter.vue:198
|
||||
#: frontend/src/pages/SCORMChapter.vue:197
|
||||
msgid "This is a chapter in the course {0}"
|
||||
msgstr ""
|
||||
|
||||
@@ -4868,6 +5051,7 @@ msgstr "Сроки:"
|
||||
#. Label of the title (Data) field in DocType 'LMS Course'
|
||||
#. Label of the title (Data) field in DocType 'LMS Exercise'
|
||||
#. Label of the title (Data) field in DocType 'LMS Live Class'
|
||||
#. Label of the title (Data) field in DocType 'LMS Program'
|
||||
#. Label of the title (Data) field in DocType 'LMS Quiz'
|
||||
#. Label of the title (Data) field in DocType 'LMS Sidebar Item'
|
||||
#. Label of the title (Data) field in DocType 'LMS Timetable Template'
|
||||
@@ -4875,7 +5059,8 @@ msgstr "Сроки:"
|
||||
#: frontend/src/components/Modals/DiscussionModal.vue:18
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:23
|
||||
#: frontend/src/pages/BatchForm.vue:20 frontend/src/pages/CourseForm.vue:32
|
||||
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/QuizForm.vue:48
|
||||
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/ProgramForm.vue:11
|
||||
#: frontend/src/pages/Programs.vue:107 frontend/src/pages/QuizForm.vue:48
|
||||
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
|
||||
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
|
||||
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json
|
||||
@@ -4888,6 +5073,7 @@ msgstr "Сроки:"
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_exercise/lms_exercise.json
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_sidebar_item/lms_sidebar_item.json
|
||||
#: lms/lms/doctype/lms_timetable_template/lms_timetable_template.json
|
||||
@@ -4896,7 +5082,7 @@ msgstr "Сроки:"
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:169
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:174
|
||||
msgid "Title is required"
|
||||
msgstr ""
|
||||
|
||||
@@ -4911,7 +5097,7 @@ msgstr ""
|
||||
msgid "To Date"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1593
|
||||
#: lms/lms/utils.py:1596
|
||||
msgid "To join this batch, please contact the Administrator."
|
||||
msgstr "Чтобы присоединиться к этой группе, свяжитесь с администратором."
|
||||
|
||||
@@ -4975,7 +5161,7 @@ msgstr "Twitter"
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Quiz.vue:580
|
||||
#: frontend/src/components/Quiz.vue:583
|
||||
msgid "Type your answer"
|
||||
msgstr ""
|
||||
|
||||
@@ -5259,7 +5445,7 @@ msgstr ""
|
||||
msgid "You are not enrolled in this course. Please enroll to access this lesson."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:134
|
||||
#: frontend/src/pages/Courses.vue:135
|
||||
msgid "You can add chapters and lessons to it."
|
||||
msgstr ""
|
||||
|
||||
@@ -5431,6 +5617,10 @@ msgstr "дата выпуска:"
|
||||
msgid "jane@example.com"
|
||||
msgstr "ivan@example.com"
|
||||
|
||||
#: frontend/src/pages/Programs.vue:32
|
||||
msgid "members"
|
||||
msgstr "участники"
|
||||
|
||||
#: lms/templates/quiz/quiz.html:106
|
||||
msgid "of"
|
||||
msgstr "из"
|
||||
@@ -5443,7 +5633,7 @@ msgstr "из"
|
||||
msgid "posted by"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:389
|
||||
#: frontend/src/pages/QuizForm.vue:390
|
||||
msgid "question_detail"
|
||||
msgstr ""
|
||||
|
||||
@@ -5475,7 +5665,7 @@ msgstr "{0} сообщил о вакансии по следующей прич
|
||||
msgid "{0} has submitted the assignment {1}"
|
||||
msgstr "{0} отправил(а) задание {1}"
|
||||
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.py:53
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.py:57
|
||||
msgid "{0} is already a Student of {1} course through {2} batch"
|
||||
msgstr "{0} уже является студентом курса {1} по {2} группу"
|
||||
|
||||
@@ -5483,7 +5673,7 @@ msgstr "{0} уже является студентом курса {1} по {2}
|
||||
msgid "{0} is already a mentor for course {1}"
|
||||
msgstr "{0} уже является наставником курса {1}"
|
||||
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.py:26
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.py:30
|
||||
msgid "{0} is already a {1} of the course {2}"
|
||||
msgstr "{0} уже является {1} курса {2}"
|
||||
|
||||
|
||||
436
lms/locale/sv.po
436
lms/locale/sv.po
File diff suppressed because it is too large
Load Diff
340
lms/locale/tr.po
340
lms/locale/tr.po
@@ -2,8 +2,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: frappe\n"
|
||||
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
||||
"POT-Creation-Date: 2024-11-15 16:04+0000\n"
|
||||
"PO-Revision-Date: 2024-11-18 17:31\n"
|
||||
"POT-Creation-Date: 2024-11-22 16:05+0000\n"
|
||||
"PO-Revision-Date: 2024-11-25 19:29\n"
|
||||
"Last-Translator: jannat@frappe.io\n"
|
||||
"Language-Team: Turkish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -22,6 +22,11 @@ msgstr ""
|
||||
msgid " Please evaluate and grade it."
|
||||
msgstr " Lütfen değerlendirin ve not verin."
|
||||
|
||||
#: frontend/src/pages/Programs.vue:41
|
||||
#, python-format
|
||||
msgid "% completed"
|
||||
msgstr "% tamamlandı"
|
||||
|
||||
#. Paragraph text in the LMS Workspace
|
||||
#: lms/lms/workspace/lms/lms.json
|
||||
msgid "<a href=\"/app/lms-settings/LMS%20Settings\">LMS Settings</a>"
|
||||
@@ -99,7 +104,8 @@ msgstr "Aktif"
|
||||
#: frontend/src/components/BatchStudents.vue:6
|
||||
#: frontend/src/components/Categories.vue:26
|
||||
#: frontend/src/components/LiveClass.vue:11
|
||||
#: frontend/src/components/Members.vue:43
|
||||
#: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30
|
||||
#: frontend/src/pages/ProgramForm.vue:91 frontend/src/pages/ProgramForm.vue:136
|
||||
msgid "Add"
|
||||
msgstr "Ekle"
|
||||
|
||||
@@ -129,12 +135,20 @@ msgstr "Ders Ekle"
|
||||
msgid "Add a Student"
|
||||
msgstr "Öğrenci Ekle"
|
||||
|
||||
#: frontend/src/components/OnboardingBanner.vue:50
|
||||
msgid "Add a chapter"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/BatchCourseModal.vue:5
|
||||
msgid "Add a course"
|
||||
msgstr "Kurs Ekle"
|
||||
|
||||
#: frontend/src/components/OnboardingBanner.vue:73
|
||||
msgid "Add a lesson"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/Question.vue:141
|
||||
#: frontend/src/pages/QuizForm.vue:181
|
||||
#: frontend/src/pages/QuizForm.vue:182
|
||||
msgid "Add a new question"
|
||||
msgstr "Yeni Soru Ekle"
|
||||
|
||||
@@ -150,7 +164,7 @@ msgstr "Bir değerlendirme ekleyin"
|
||||
msgid "Add an existing question"
|
||||
msgstr "Mevcut bir soruyu ekle"
|
||||
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:60
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:66
|
||||
msgid "Add at least one possible answer for this question: {0}"
|
||||
msgstr "Bu soru için en azından bir olası cevap ekleyin: {0}"
|
||||
|
||||
@@ -253,6 +267,14 @@ msgstr ""
|
||||
msgid "Amount Field"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:70
|
||||
msgid "Amount and currency are required for paid batches."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_course/lms_course.py:57
|
||||
msgid "Amount and currency are required for paid courses."
|
||||
msgstr ""
|
||||
|
||||
#. Label of the amount_with_gst (Currency) field in DocType 'LMS Payment'
|
||||
#: lms/lms/doctype/lms_payment/lms_payment.json
|
||||
msgid "Amount with GST"
|
||||
@@ -346,7 +368,7 @@ msgstr "Değerlendirme Türü"
|
||||
msgid "Assessment added successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:75
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:80
|
||||
msgid "Assessment {0} has already been added to this batch."
|
||||
msgstr "Değerlendirme {0} bu gruba zaten eklendi."
|
||||
|
||||
@@ -397,7 +419,7 @@ msgstr "{1} tarafından verilen {0} Dersi için ödev zaten mevcut."
|
||||
msgid "Assignment will appear at the bottom of the lesson."
|
||||
msgstr "Ödev dersin alt kısmında görünecektir."
|
||||
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:42
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:43
|
||||
msgid "At least one option must be correct for this question."
|
||||
msgstr "Bu soruda en az bir seçeneğin doğru olması gerekmektedir."
|
||||
|
||||
@@ -540,7 +562,7 @@ msgstr ""
|
||||
msgid "Batch Updated"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:40
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:41
|
||||
msgid "Batch end date cannot be before the batch start date"
|
||||
msgstr ""
|
||||
|
||||
@@ -727,11 +749,11 @@ msgstr "Bölüm"
|
||||
msgid "Chapter Reference"
|
||||
msgstr "Bölüm Referansı"
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:149
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:154
|
||||
msgid "Chapter added successfully"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:193
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:198
|
||||
msgid "Chapter updated successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -764,7 +786,7 @@ msgstr "Kursları Kontrol Et"
|
||||
msgid "Choices"
|
||||
msgstr "Seçimler"
|
||||
|
||||
#: frontend/src/components/Quiz.vue:578 lms/templates/quiz/quiz.html:53
|
||||
#: frontend/src/components/Quiz.vue:581 lms/templates/quiz/quiz.html:53
|
||||
msgid "Choose all answers that apply"
|
||||
msgstr "Uygulanabilir tüm cevapları seçin"
|
||||
|
||||
@@ -772,7 +794,7 @@ msgstr "Uygulanabilir tüm cevapları seçin"
|
||||
msgid "Choose an icon"
|
||||
msgstr "Bir simge seçimi"
|
||||
|
||||
#: frontend/src/components/Quiz.vue:579 lms/templates/quiz/quiz.html:53
|
||||
#: frontend/src/components/Quiz.vue:582 lms/templates/quiz/quiz.html:53
|
||||
msgid "Choose one answer"
|
||||
msgstr "Bir cevap seçin"
|
||||
|
||||
@@ -988,7 +1010,7 @@ msgid "Contact the Administrator to enroll for this course."
|
||||
msgstr "Bu kursa kayıt olmak için Yönetici ile iletişime geçin."
|
||||
|
||||
#. Label of the content (Text) field in DocType 'Course Lesson'
|
||||
#: frontend/src/pages/LessonForm.vue:58
|
||||
#: frontend/src/pages/LessonForm.vue:62
|
||||
#: lms/lms/doctype/course_lesson/course_lesson.json
|
||||
msgid "Content"
|
||||
msgstr "İçerik"
|
||||
@@ -1057,6 +1079,7 @@ msgstr "Ülke"
|
||||
#. Label of the course (Link) field in DocType 'LMS Enrollment'
|
||||
#. Label of the course (Link) field in DocType 'LMS Exercise'
|
||||
#. Label of the course (Link) field in DocType 'LMS Mentor Request'
|
||||
#. Label of the course (Link) field in DocType 'LMS Program Course'
|
||||
#. Label of the course (Link) field in DocType 'LMS Quiz'
|
||||
#. Label of the course (Link) field in DocType 'LMS Quiz Submission'
|
||||
#. Label of the course (Link) field in DocType 'Related Courses'
|
||||
@@ -1086,6 +1109,7 @@ msgstr "Ülke"
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
#: lms/lms/doctype/lms_exercise/lms_exercise.json
|
||||
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
|
||||
#: lms/lms/doctype/lms_program_course/lms_program_course.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/lms/doctype/related_courses/related_courses.json
|
||||
@@ -1114,6 +1138,7 @@ msgstr "Kurs İçeriği"
|
||||
#. Name of a role
|
||||
#: frontend/src/pages/ProfileRoles.vue:16
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
#: lms/lms/doctype/lms_question/lms_question.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
msgid "Course Creator"
|
||||
@@ -1184,22 +1209,33 @@ msgstr "Kurs İstatistikleri"
|
||||
#. Label of the course_title (Data) field in DocType 'Course Chapter'
|
||||
#. Label of the course_title (Data) field in DocType 'LMS Certificate'
|
||||
#. Label of the course_title (Data) field in DocType 'LMS Certificate Request'
|
||||
#. Label of the course_title (Data) field in DocType 'LMS Program Course'
|
||||
#: lms/lms/doctype/batch_course/batch_course.json
|
||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
#: lms/lms/doctype/lms_program_course/lms_program_course.json
|
||||
msgid "Course Title"
|
||||
msgstr "Kurs Başlığı"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:340
|
||||
#: frontend/src/pages/ProgramForm.vue:226
|
||||
msgid "Course added to program"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:345
|
||||
msgid "Course already added to the batch."
|
||||
msgstr "Kurs zaten gruba eklendi."
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:457
|
||||
#: frontend/src/pages/CourseForm.vue:460
|
||||
msgid "Course deleted successfully"
|
||||
msgstr "Kurs başarıyla silindi"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:58
|
||||
#: frontend/src/pages/ProgramForm.vue:295
|
||||
msgid "Course moved successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:59
|
||||
#: lms/lms/doctype/lms_program/lms_program.py:19
|
||||
msgid "Course {0} has already been added to this batch."
|
||||
msgstr "Kurs {0} bu gruba zaten eklenmiştir."
|
||||
|
||||
@@ -1234,6 +1270,7 @@ msgid "Cover Image"
|
||||
msgstr "Kapak Resmi"
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:9
|
||||
#: frontend/src/pages/Programs.vue:99
|
||||
msgid "Create"
|
||||
msgstr "Oluştur"
|
||||
|
||||
@@ -1249,7 +1286,7 @@ msgstr "ÖYS Sertifika Değerlendirmesi Oluştur"
|
||||
msgid "Create a Batch"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:131 lms/templates/onboarding_header.html:19
|
||||
#: frontend/src/pages/Courses.vue:132 lms/templates/onboarding_header.html:19
|
||||
msgid "Create a Course"
|
||||
msgstr "Kurs Oluştur"
|
||||
|
||||
@@ -1257,6 +1294,10 @@ msgstr "Kurs Oluştur"
|
||||
msgid "Create a Live Class"
|
||||
msgstr "Canlı Sınıf Oluştur"
|
||||
|
||||
#: frontend/src/components/OnboardingBanner.vue:27
|
||||
msgid "Create a course"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/Question.vue:31
|
||||
msgid "Create a new question"
|
||||
msgstr "Yeni bir soru oluştur"
|
||||
@@ -1360,7 +1401,7 @@ msgstr "Derece Türü"
|
||||
|
||||
#: frontend/src/components/CourseOutline.vue:235
|
||||
#: frontend/src/components/CourseOutline.vue:293
|
||||
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:470
|
||||
#: frontend/src/pages/CourseForm.vue:15 frontend/src/pages/CourseForm.vue:473
|
||||
msgid "Delete"
|
||||
msgstr "Sil"
|
||||
|
||||
@@ -1368,7 +1409,7 @@ msgstr "Sil"
|
||||
msgid "Delete Chapter"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:464
|
||||
#: frontend/src/pages/CourseForm.vue:467
|
||||
msgid "Delete Course"
|
||||
msgstr "Kursu Sil"
|
||||
|
||||
@@ -1380,7 +1421,7 @@ msgstr ""
|
||||
msgid "Delete this lesson?"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:465
|
||||
#: frontend/src/pages/CourseForm.vue:468
|
||||
msgid "Deleting the course will also delete all its chapters and lessons. Are you sure you want to delete this course?"
|
||||
msgstr "Kursu silmek, tüm bölümlerini ve derslerini de silecektir. Bu kursu silmek istediğinizden emin misiniz?"
|
||||
|
||||
@@ -1470,7 +1511,7 @@ msgstr "Belge"
|
||||
msgid "Dream Companies"
|
||||
msgstr "Rüya Şirketler"
|
||||
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:32
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:33
|
||||
msgid "Duplicate options found for this question."
|
||||
msgstr "Bu soru için yinelenen seçenekler bulundu."
|
||||
|
||||
@@ -1508,7 +1549,7 @@ msgstr "E-Posta"
|
||||
#: frontend/src/components/CourseCardOverlay.vue:86
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:9
|
||||
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:65
|
||||
#: frontend/src/pages/Profile.vue:32
|
||||
#: frontend/src/pages/Profile.vue:32 frontend/src/pages/Programs.vue:55
|
||||
msgid "Edit"
|
||||
msgstr "Düzenle"
|
||||
|
||||
@@ -1521,7 +1562,7 @@ msgstr "Bölümü Düzenle"
|
||||
msgid "Edit Profile"
|
||||
msgstr "Profili Düzenle"
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:180
|
||||
#: frontend/src/pages/QuizForm.vue:181
|
||||
msgid "Edit the question"
|
||||
msgstr "Soruyu düzenle"
|
||||
|
||||
@@ -1582,6 +1623,15 @@ msgstr "Sertifikasyonu Etkinleştir"
|
||||
msgid "Enable Google API in Google Settings to send calendar invites for evaluations."
|
||||
msgstr "Değerlendirmeler için takvim davetleri göndermek üzere Google Ayarları'nda Google API'yi etkinleştirin."
|
||||
|
||||
#. Label of the enable_learning_paths (Check) field in DocType 'LMS Settings'
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Enable Learning Paths"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:24
|
||||
msgid "Enable this only if you want to upload a SCORM package as a chapter."
|
||||
msgstr ""
|
||||
|
||||
#. Label of the enabled (Check) field in DocType 'LMS Badge'
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "Enabled"
|
||||
@@ -1634,7 +1684,7 @@ msgstr "Kayıtlı Öğrenci"
|
||||
msgid "Enrolled successfully"
|
||||
msgstr "Başarıyla kaydoldu"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:98
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:103
|
||||
msgid "Enrollment Confirmation for the Next Training Batch"
|
||||
msgstr "Sonraki Eğitim Grubu için Kayıt Onayı"
|
||||
|
||||
@@ -1643,7 +1693,7 @@ msgstr "Sonraki Eğitim Grubu için Kayıt Onayı"
|
||||
msgid "Enrollment Count"
|
||||
msgstr "Kayıt Sayısı"
|
||||
|
||||
#: lms/lms/utils.py:1702
|
||||
#: lms/lms/utils.py:1705
|
||||
msgid "Enrollment Failed"
|
||||
msgstr "Kayıt Başarısız"
|
||||
|
||||
@@ -1672,14 +1722,14 @@ msgid "Enter the correct answer"
|
||||
msgstr "Doğru cevabı girin"
|
||||
|
||||
#: frontend/src/components/Modals/AnnouncementModal.vue:105
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:154
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:161
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:197
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:159
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:166
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:202
|
||||
#: frontend/src/components/Modals/Question.vue:246
|
||||
#: frontend/src/components/Modals/Question.vue:266
|
||||
#: frontend/src/components/Modals/Question.vue:323
|
||||
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:349
|
||||
#: frontend/src/pages/QuizForm.vue:364
|
||||
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350
|
||||
#: frontend/src/pages/QuizForm.vue:365
|
||||
#: frontend/src/pages/QuizSubmission.vue:117
|
||||
msgid "Error"
|
||||
msgstr "Hata"
|
||||
@@ -1708,7 +1758,7 @@ msgstr "Değerlendirme Bitiş Tarihi"
|
||||
msgid "Evaluation Request"
|
||||
msgstr "Değerlendirme Talebi"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:82
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:87
|
||||
msgid "Evaluation end date cannot be less than the batch end date."
|
||||
msgstr ""
|
||||
|
||||
@@ -1874,7 +1924,7 @@ msgstr "Sabit 8-5"
|
||||
msgid "Flexible Time"
|
||||
msgstr "Esnek Zaman"
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:462
|
||||
#: frontend/src/pages/QuizForm.vue:463
|
||||
msgid "Form to create and edit quizzes"
|
||||
msgstr ""
|
||||
|
||||
@@ -1922,7 +1972,9 @@ msgid "From Date"
|
||||
msgstr "Başlangıç Tarihi"
|
||||
|
||||
#. Label of the full_name (Data) field in DocType 'Invite Request'
|
||||
#. Label of the full_name (Data) field in DocType 'LMS Program Member'
|
||||
#: lms/lms/doctype/invite_request/invite_request.json
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
#: lms/templates/signup-form.html:5
|
||||
msgid "Full Name"
|
||||
msgstr "Tam Adı"
|
||||
@@ -1954,6 +2006,11 @@ msgstr ""
|
||||
msgid "GSTIN"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the general_tab (Tab Break) field in DocType 'LMS Settings'
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "General"
|
||||
msgstr "Genel"
|
||||
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.js:18
|
||||
msgid "Generate Google Meet Link"
|
||||
msgstr ""
|
||||
@@ -2085,7 +2142,7 @@ msgstr "Bir iş arıyorum"
|
||||
msgid "I am unavailable"
|
||||
msgstr "Müsait değilim"
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:383
|
||||
#: frontend/src/pages/QuizForm.vue:384
|
||||
msgid "ID"
|
||||
msgstr "ID"
|
||||
|
||||
@@ -2226,7 +2283,7 @@ msgstr "Eğitmen İçeriği"
|
||||
|
||||
#. Label of the instructor_notes (Markdown Editor) field in DocType 'Course
|
||||
#. Lesson'
|
||||
#: frontend/src/pages/Lesson.vue:128 frontend/src/pages/LessonForm.vue:38
|
||||
#: frontend/src/pages/Lesson.vue:128 frontend/src/pages/LessonForm.vue:42
|
||||
#: lms/lms/doctype/course_lesson/course_lesson.json
|
||||
msgid "Instructor Notes"
|
||||
msgstr "Eğitmen Notları"
|
||||
@@ -2302,7 +2359,6 @@ msgstr "Tanıtım Tamamlandı"
|
||||
|
||||
#. Label of the is_scorm_package (Check) field in DocType 'Course Chapter'
|
||||
#. Label of the is_scorm_package (Check) field in DocType 'Course Lesson'
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:26
|
||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||
#: lms/lms/doctype/course_lesson/course_lesson.json
|
||||
msgid "Is SCORM Package"
|
||||
@@ -2332,6 +2388,10 @@ msgstr "Yayınlanma Tarihi"
|
||||
msgid "Items in Sidebar"
|
||||
msgstr "Kenar Çubuğundaki Öğeler"
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:269
|
||||
msgid "Items removed successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/signup-form.html:6
|
||||
msgid "Jane Doe"
|
||||
msgstr "İsim Soyisim"
|
||||
@@ -2531,6 +2591,21 @@ msgstr "ÖYS Seçeneği"
|
||||
msgid "LMS Payment"
|
||||
msgstr "ÖYS Ödeme"
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
msgid "LMS Program"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_program_course/lms_program_course.json
|
||||
msgid "LMS Program Course"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
msgid "LMS Program Member"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_question/lms_question.json
|
||||
msgid "LMS Question"
|
||||
@@ -2590,6 +2665,7 @@ msgstr "ÖYS Kaynağı"
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
#: lms/lms/doctype/lms_source/lms_source.json
|
||||
#: lms/lms/doctype/user_skill/user_skill.json
|
||||
msgid "LMS Student"
|
||||
@@ -2812,7 +2888,7 @@ msgstr "Okundu olarak İşaretle"
|
||||
#. Label of the marks (Int) field in DocType 'LMS Quiz Result'
|
||||
#: frontend/src/components/Modals/Question.vue:50
|
||||
#: frontend/src/components/Modals/Question.vue:96
|
||||
#: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:393
|
||||
#: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:394
|
||||
#: frontend/src/pages/QuizSubmission.vue:52
|
||||
#: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json
|
||||
#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json
|
||||
@@ -2867,6 +2943,7 @@ msgstr "Orta:"
|
||||
#. Option for the 'Role' (Select) field in DocType 'LMS Enrollment'
|
||||
#. Label of the member (Link) field in DocType 'LMS Mentor Request'
|
||||
#. 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 Quiz Submission'
|
||||
#: frontend/src/pages/QuizSubmission.vue:27
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:77
|
||||
@@ -2881,6 +2958,7 @@ msgstr "Orta:"
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
|
||||
#: lms/lms/doctype/lms_payment/lms_payment.json
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
#: lms/lms/report/course_progress_summary/course_progress_summary.py:64
|
||||
msgid "Member"
|
||||
@@ -2930,6 +3008,14 @@ msgstr "Üye Alt Grubu"
|
||||
msgid "Member Type"
|
||||
msgstr "Üye Türü"
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:248
|
||||
msgid "Member added to program"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_program/lms_program.py:29
|
||||
msgid "Member {0} has already been added to this batch."
|
||||
msgstr ""
|
||||
|
||||
#. Group in LMS Batch Old's connections
|
||||
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
||||
msgid "Members"
|
||||
@@ -3002,6 +3088,10 @@ msgstr "Kilometre Taşı"
|
||||
msgid "Milestones"
|
||||
msgstr "Kilometre Taşı"
|
||||
|
||||
#: lms/lms/doctype/lms_question/lms_question.py:48
|
||||
msgid "Minimum two options are required for multiple choice questions."
|
||||
msgstr ""
|
||||
|
||||
#. Name of a role
|
||||
#: frontend/src/pages/ProfileRoles.vue:10
|
||||
#: lms/lms/doctype/course_evaluator/course_evaluator.json
|
||||
@@ -3013,6 +3103,7 @@ msgstr "Kilometre Taşı"
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
#: lms/lms/doctype/lms_question/lms_question.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_source/lms_source.json
|
||||
@@ -3057,8 +3148,8 @@ msgid "My calendar"
|
||||
msgstr "Takvimim"
|
||||
|
||||
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
||||
#: frontend/src/pages/Batches.vue:30 frontend/src/pages/Courses.vue:44
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
#: frontend/src/pages/Batches.vue:30 frontend/src/pages/Courses.vue:45
|
||||
#: frontend/src/pages/Programs.vue:14 lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "New"
|
||||
msgstr "Yeni"
|
||||
|
||||
@@ -3082,11 +3173,23 @@ msgstr "Yeni İş"
|
||||
msgid "New Job Applicant"
|
||||
msgstr "Yeni İş Başvurusu"
|
||||
|
||||
#: frontend/src/pages/Programs.vue:96
|
||||
msgid "New Program"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:132
|
||||
msgid "New Program Course"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:133
|
||||
msgid "New Program Member"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:122
|
||||
msgid "New Question"
|
||||
msgstr "Yeni Soru"
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:453 frontend/src/pages/QuizForm.vue:461
|
||||
#: frontend/src/pages/QuizForm.vue:454 frontend/src/pages/QuizForm.vue:462
|
||||
#: frontend/src/pages/Quizzes.vue:18
|
||||
msgid "New Quiz"
|
||||
msgstr "Yeni Test"
|
||||
@@ -3149,10 +3252,14 @@ msgstr "Sertifika yok"
|
||||
msgid "No courses created"
|
||||
msgstr "Hiçbir kurs oluşturulmadı"
|
||||
|
||||
#: frontend/src/pages/Courses.vue:146
|
||||
#: frontend/src/pages/Courses.vue:147
|
||||
msgid "No courses found"
|
||||
msgstr "Hiçbir kurs bulunamadı"
|
||||
|
||||
#: frontend/src/pages/Programs.vue:72
|
||||
msgid "No courses in this program"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/courses_under_review.html:14
|
||||
msgid "No courses under review"
|
||||
msgstr "İncelenmekte olan kurs yok"
|
||||
@@ -3169,6 +3276,10 @@ msgstr "Hiçbir iş ilanı yayınlanmadı"
|
||||
msgid "No live classes scheduled"
|
||||
msgstr "Planlanmış canlı ders yok"
|
||||
|
||||
#: frontend/src/pages/Programs.vue:82
|
||||
msgid "No programs found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Quizzes.vue:56
|
||||
msgid "No quizzes found"
|
||||
msgstr ""
|
||||
@@ -3189,7 +3300,7 @@ msgstr "{0} Yok"
|
||||
msgid "No {0} batches"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:106
|
||||
#: frontend/src/pages/Courses.vue:107
|
||||
msgid "No {0} courses"
|
||||
msgstr ""
|
||||
|
||||
@@ -3277,15 +3388,19 @@ msgstr "Moderatör başvurunuzu değerlendirdiğinde, ayrıntıları burada bula
|
||||
msgid "Online"
|
||||
msgstr "Çevrimiçi"
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:156
|
||||
msgid "Only courses for which self learning is disabled can be added to program."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/assignment.html:6
|
||||
msgid "Only files of type {0} will be accepted."
|
||||
msgstr "Sadece {0} türündeki dosyalar kabul edilecektir."
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:494 frontend/src/utils/index.js:518
|
||||
#: frontend/src/pages/CourseForm.vue:497 frontend/src/utils/index.js:518
|
||||
msgid "Only image file is allowed."
|
||||
msgstr "Sadece resim dosyasına izin verilir."
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:223
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:220
|
||||
msgid "Only zip files are allowed"
|
||||
msgstr ""
|
||||
|
||||
@@ -3561,7 +3676,11 @@ msgstr "Doğrulama için lütfen e-postanızı kontrol edin"
|
||||
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"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:251
|
||||
#: lms/lms/utils.py:1817 lms/lms/utils.py:1821
|
||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:256
|
||||
msgid "Please enable Zoom Settings to use this feature."
|
||||
msgstr "Bu özelliği kullanmak için lütfen Zoom Ayarlarını etkinleştirin."
|
||||
|
||||
@@ -3573,11 +3692,19 @@ msgstr ""
|
||||
msgid "Please ensure that you complete all the questions in {0} minutes."
|
||||
msgstr "Lütfen tüm soruları {0} dakika içinde yanıtladığınızdan emin olun."
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:164
|
||||
msgid "Please enter a title."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:38
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:98
|
||||
msgid "Please enter a valid URL."
|
||||
msgstr "Lütfen geçerli bir URL girin."
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:176
|
||||
msgid "Please enter a valid time in the format HH:mm."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:92
|
||||
msgid "Please enter the URL for assignment submission."
|
||||
msgstr "Lütfen ödev gönderimi için URL'yi girin."
|
||||
@@ -3586,11 +3713,11 @@ msgstr "Lütfen ödev gönderimi için URL'yi girin."
|
||||
msgid "Please enter your answer"
|
||||
msgstr "Lütfen cevabınızı girin"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:65
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:66
|
||||
msgid "Please install the Payments app to create a paid batches."
|
||||
msgstr "Ücretli ödeme grupları oluşturmak için lütfen Ödemeler uygulamasını yükleyin."
|
||||
|
||||
#: lms/lms/doctype/lms_course/lms_course.py:52
|
||||
#: lms/lms/doctype/lms_course/lms_course.py:53
|
||||
msgid "Please install the Payments app to create a paid courses."
|
||||
msgstr "Ücretli kurslar oluşturmak için lütfen Ödemeler uygulamasını yükleyin."
|
||||
|
||||
@@ -3615,11 +3742,31 @@ msgstr "Ödeme işlemine devam etmek için lütfen giriş yapın."
|
||||
msgid "Please prepare well and be on time for the evaluations."
|
||||
msgstr "Lütfen iyi hazırlanın ve değerlendirmelere zamanında katılın."
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:167
|
||||
msgid "Please select a date."
|
||||
msgstr "Lütfen bir tarih seçin."
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:191
|
||||
msgid "Please select a duration."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:188
|
||||
msgid "Please select a future date and time."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:170
|
||||
msgid "Please select a time."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:173
|
||||
msgid "Please select a timezone."
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/emails/job_report.html:6
|
||||
msgid "Please take appropriate action at {0}"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:172
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:177
|
||||
msgid "Please upload a SCORM package"
|
||||
msgstr ""
|
||||
|
||||
@@ -3756,8 +3903,30 @@ msgstr "Meslek"
|
||||
msgid "Profile Image"
|
||||
msgstr "Profil Resmi"
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:154
|
||||
msgid "Program Course"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the program_courses (Table) field in DocType 'LMS Program'
|
||||
#: frontend/src/pages/ProgramForm.vue:17
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
msgid "Program Courses"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProgramForm.vue:169
|
||||
msgid "Program Member"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the program_members (Table) field in DocType 'LMS Program'
|
||||
#: frontend/src/pages/ProgramForm.vue:78
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
msgid "Program Members"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the progress (Float) field in DocType 'LMS Enrollment'
|
||||
#. Label of the progress (Int) field in DocType 'LMS Program Member'
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
msgid "Progress"
|
||||
msgstr "İlerleme"
|
||||
|
||||
@@ -3807,7 +3976,7 @@ msgstr "Yayınlanma Zamanı"
|
||||
#. Label of the question (Text) field in DocType 'LMS Quiz Result'
|
||||
#: frontend/src/components/Modals/Question.vue:38
|
||||
#: frontend/src/pages/AssignmentSubmission.vue:26
|
||||
#: frontend/src/pages/QuizForm.vue:388
|
||||
#: frontend/src/pages/QuizForm.vue:389
|
||||
#: lms/lms/doctype/course_lesson/course_lesson.json
|
||||
#: lms/lms/doctype/lms_assignment/lms_assignment.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
@@ -3853,7 +4022,7 @@ msgstr "Soru {0} / {1}"
|
||||
msgid "Questions"
|
||||
msgstr "Sorular"
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:430
|
||||
#: frontend/src/pages/QuizForm.vue:431
|
||||
msgid "Questions deleted successfully"
|
||||
msgstr "Sorular başarıyla silindi"
|
||||
|
||||
@@ -3891,7 +4060,7 @@ msgstr ""
|
||||
msgid "Quiz Title"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:342
|
||||
#: frontend/src/pages/QuizForm.vue:343
|
||||
msgid "Quiz created successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -3899,7 +4068,7 @@ msgstr ""
|
||||
msgid "Quiz is not available to Guest users. Please login to continue."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:361
|
||||
#: frontend/src/pages/QuizForm.vue:362
|
||||
msgid "Quiz updated successfully"
|
||||
msgstr "Sınav başarıyla güncellendi"
|
||||
|
||||
@@ -3908,7 +4077,7 @@ msgstr "Sınav başarıyla güncellendi"
|
||||
msgid "Quiz will appear at the bottom of the lesson."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:441 frontend/src/pages/Quizzes.vue:136
|
||||
#: frontend/src/pages/QuizForm.vue:442 frontend/src/pages/Quizzes.vue:136
|
||||
#: frontend/src/pages/Quizzes.vue:146
|
||||
msgid "Quizzes"
|
||||
msgstr ""
|
||||
@@ -4065,19 +4234,19 @@ msgstr ""
|
||||
msgid "Route"
|
||||
msgstr "Rota"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:194
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:199
|
||||
msgid "Row #{0} Date cannot be outside the batch duration."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:189
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:194
|
||||
msgid "Row #{0} End time cannot be outside the batch duration."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:171
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:176
|
||||
msgid "Row #{0} Start time cannot be greater than or equal to end time."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:180
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:185
|
||||
msgid "Row #{0} Start time cannot be outside the batch duration."
|
||||
msgstr ""
|
||||
|
||||
@@ -4095,6 +4264,7 @@ msgid "SCORM"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the scorm_package (Link) field in DocType 'Course Chapter'
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:22
|
||||
#: lms/lms/doctype/course_chapter/course_chapter.json
|
||||
msgid "SCORM Package"
|
||||
msgstr ""
|
||||
@@ -4117,8 +4287,9 @@ msgstr "Cumartesi"
|
||||
#: frontend/src/components/QuizPlugin.vue:23
|
||||
#: frontend/src/pages/AssignmentSubmission.vue:7
|
||||
#: frontend/src/pages/BatchForm.vue:8 frontend/src/pages/CourseForm.vue:20
|
||||
#: frontend/src/pages/JobCreation.vue:8 frontend/src/pages/LessonForm.vue:10
|
||||
#: frontend/src/pages/QuizForm.vue:34 frontend/src/pages/QuizSubmission.vue:14
|
||||
#: frontend/src/pages/JobCreation.vue:8 frontend/src/pages/LessonForm.vue:14
|
||||
#: frontend/src/pages/ProgramForm.vue:7 frontend/src/pages/QuizForm.vue:34
|
||||
#: frontend/src/pages/QuizSubmission.vue:14
|
||||
#: lms/public/js/common_functions.js:405
|
||||
msgid "Save"
|
||||
msgstr "Kaydet"
|
||||
@@ -4334,6 +4505,10 @@ msgstr "Yetenekler Benzersiz Olmalıdır"
|
||||
msgid "Skip"
|
||||
msgstr "Geç"
|
||||
|
||||
#: frontend/src/components/OnboardingBanner.vue:3
|
||||
msgid "Skip Onboarding"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/course_evaluator/course_evaluator.py:57
|
||||
msgid "Slot Times are overlapping for some schedules."
|
||||
msgstr ""
|
||||
@@ -4507,7 +4682,7 @@ msgstr "Öğrenci Adı"
|
||||
msgid "Student Reviews"
|
||||
msgstr "Öğrenci İncelemeleri"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:47
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:48
|
||||
msgid "Student {0} has already been added to this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -4575,14 +4750,17 @@ msgstr "Kaydedildi {0}"
|
||||
#: frontend/src/components/CourseCardOverlay.vue:161
|
||||
#: frontend/src/components/Modals/AnnouncementModal.vue:99
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:73
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:148
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:193
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:153
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:198
|
||||
#: frontend/src/components/Modals/Event.vue:255
|
||||
#: frontend/src/components/Modals/Event.vue:310
|
||||
#: frontend/src/components/Modals/Question.vue:261
|
||||
#: frontend/src/components/Modals/Question.vue:312
|
||||
#: frontend/src/pages/CourseForm.vue:457 frontend/src/pages/QuizForm.vue:342
|
||||
#: frontend/src/pages/QuizForm.vue:361 frontend/src/pages/QuizForm.vue:430
|
||||
#: frontend/src/pages/CourseForm.vue:460 frontend/src/pages/ProgramForm.vue:226
|
||||
#: frontend/src/pages/ProgramForm.vue:248
|
||||
#: frontend/src/pages/ProgramForm.vue:269
|
||||
#: frontend/src/pages/ProgramForm.vue:295 frontend/src/pages/QuizForm.vue:343
|
||||
#: frontend/src/pages/QuizForm.vue:362 frontend/src/pages/QuizForm.vue:431
|
||||
msgid "Success"
|
||||
msgstr "Başarılı"
|
||||
|
||||
@@ -4637,6 +4815,7 @@ msgstr "Pazar"
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
|
||||
#: lms/lms/doctype/lms_payment/lms_payment.json
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
#: lms/lms/doctype/lms_question/lms_question.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.json
|
||||
@@ -4737,11 +4916,15 @@ msgstr "Şu anda mevcut toplu ders bulunmamaktadır. Gözünüzü dört açın,
|
||||
msgid "There are no chapters in this course. Create and manage chapters from here."
|
||||
msgstr "Bu kursta bölüm bulunmamaktadır. Bölümleri buradan oluşturun ve yönetin."
|
||||
|
||||
#: frontend/src/pages/Courses.vue:150
|
||||
#: frontend/src/pages/Courses.vue:151
|
||||
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!"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:141
|
||||
#: frontend/src/pages/Programs.vue:86
|
||||
msgid "There are no programs available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:146
|
||||
msgid "There are no seats available in this batch."
|
||||
msgstr "Bu grupta boş yer bulunmamaktadır."
|
||||
|
||||
@@ -4772,11 +4955,11 @@ msgstr ""
|
||||
msgid "This course has:"
|
||||
msgstr "Bu kursta:"
|
||||
|
||||
#: lms/lms/utils.py:1582
|
||||
#: lms/lms/utils.py:1585
|
||||
msgid "This course is free."
|
||||
msgstr "Bu kurs ücretsizdir."
|
||||
|
||||
#: frontend/src/pages/SCORMChapter.vue:198
|
||||
#: frontend/src/pages/SCORMChapter.vue:197
|
||||
msgid "This is a chapter in the course {0}"
|
||||
msgstr ""
|
||||
|
||||
@@ -4868,6 +5051,7 @@ msgstr ""
|
||||
#. Label of the title (Data) field in DocType 'LMS Course'
|
||||
#. Label of the title (Data) field in DocType 'LMS Exercise'
|
||||
#. Label of the title (Data) field in DocType 'LMS Live Class'
|
||||
#. Label of the title (Data) field in DocType 'LMS Program'
|
||||
#. Label of the title (Data) field in DocType 'LMS Quiz'
|
||||
#. Label of the title (Data) field in DocType 'LMS Sidebar Item'
|
||||
#. Label of the title (Data) field in DocType 'LMS Timetable Template'
|
||||
@@ -4875,7 +5059,8 @@ msgstr ""
|
||||
#: frontend/src/components/Modals/DiscussionModal.vue:18
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:23
|
||||
#: frontend/src/pages/BatchForm.vue:20 frontend/src/pages/CourseForm.vue:32
|
||||
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/QuizForm.vue:48
|
||||
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/ProgramForm.vue:11
|
||||
#: frontend/src/pages/Programs.vue:107 frontend/src/pages/QuizForm.vue:48
|
||||
#: frontend/src/pages/Quizzes.vue:114 lms/lms/doctype/cohort/cohort.json
|
||||
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
|
||||
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json
|
||||
@@ -4888,6 +5073,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_exercise/lms_exercise.json
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/lms_program/lms_program.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
#: lms/lms/doctype/lms_sidebar_item/lms_sidebar_item.json
|
||||
#: lms/lms/doctype/lms_timetable_template/lms_timetable_template.json
|
||||
@@ -4896,7 +5082,7 @@ msgstr ""
|
||||
msgid "Title"
|
||||
msgstr "Başlık"
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:169
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:174
|
||||
msgid "Title is required"
|
||||
msgstr ""
|
||||
|
||||
@@ -4911,7 +5097,7 @@ msgstr "Alıcı"
|
||||
msgid "To Date"
|
||||
msgstr "Bitiş Tarihi"
|
||||
|
||||
#: lms/lms/utils.py:1593
|
||||
#: lms/lms/utils.py:1596
|
||||
msgid "To join this batch, please contact the Administrator."
|
||||
msgstr ""
|
||||
|
||||
@@ -4975,7 +5161,7 @@ msgstr ""
|
||||
msgid "Type"
|
||||
msgstr "Türü"
|
||||
|
||||
#: frontend/src/components/Quiz.vue:580
|
||||
#: frontend/src/components/Quiz.vue:583
|
||||
msgid "Type your answer"
|
||||
msgstr "Cevabınızı yazın"
|
||||
|
||||
@@ -5259,7 +5445,7 @@ msgstr ""
|
||||
msgid "You are not enrolled in this course. Please enroll to access this lesson."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:134
|
||||
#: frontend/src/pages/Courses.vue:135
|
||||
msgid "You can add chapters and lessons to it."
|
||||
msgstr "İçerisine bölümler ve dersler ekleyebilirsiniz."
|
||||
|
||||
@@ -5431,6 +5617,10 @@ msgstr "yayınlanma Tarihi"
|
||||
msgid "jane@example.com"
|
||||
msgstr "eposta@ornek.com.tr"
|
||||
|
||||
#: frontend/src/pages/Programs.vue:32
|
||||
msgid "members"
|
||||
msgstr "üyeler"
|
||||
|
||||
#: lms/templates/quiz/quiz.html:106
|
||||
msgid "of"
|
||||
msgstr "/"
|
||||
@@ -5443,7 +5633,7 @@ msgstr ""
|
||||
msgid "posted by"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:389
|
||||
#: frontend/src/pages/QuizForm.vue:390
|
||||
msgid "question_detail"
|
||||
msgstr ""
|
||||
|
||||
@@ -5475,7 +5665,7 @@ msgstr ""
|
||||
msgid "{0} has submitted the assignment {1}"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.py:53
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.py:57
|
||||
msgid "{0} is already a Student of {1} course through {2} batch"
|
||||
msgstr ""
|
||||
|
||||
@@ -5483,7 +5673,7 @@ msgstr ""
|
||||
msgid "{0} is already a mentor for course {1}"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.py:26
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.py:30
|
||||
msgid "{0} is already a {1} of the course {2}"
|
||||
msgstr ""
|
||||
|
||||
|
||||
2039
lms/locale/zh.po
2039
lms/locale/zh.po
File diff suppressed because it is too large
Load Diff
@@ -94,4 +94,5 @@ lms.patches.v2_0.delete_certificate_request_notification #18-09-2024
|
||||
lms.patches.v2_0.add_course_statistics #21-10-2024
|
||||
lms.patches.v2_0.give_discussions_permissions
|
||||
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
|
||||
47
lms/patches/v2_0/update_quiz_submission_data.py
Normal file
47
lms/patches/v2_0/update_quiz_submission_data.py
Normal 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,
|
||||
)
|
||||
@@ -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,
|
||||
},
|
||||
)
|
||||
Reference in New Issue
Block a user