Compare commits
54 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
015e228304 | ||
|
|
a9f40d16f0 | ||
|
|
b8da14a32e | ||
|
|
34ba2fb361 | ||
|
|
98ccb15796 | ||
|
|
6c06f7d19b | ||
|
|
86b129a25f | ||
|
|
6e8d4cd8e8 | ||
|
|
1b4622bdb2 | ||
|
|
58d51579e3 | ||
|
|
06706ea41b | ||
|
|
d634a0f784 | ||
|
|
a92159b811 | ||
|
|
7e1e37393c | ||
|
|
d2f9a2cea4 | ||
|
|
5111d83eee | ||
|
|
0dc77343c4 | ||
|
|
cec5913632 | ||
|
|
75d43a1563 | ||
|
|
1ecdbd9e06 | ||
|
|
a90e3d611c | ||
|
|
d49d638253 | ||
|
|
83338a56c0 | ||
|
|
562020de70 | ||
|
|
044907edeb | ||
|
|
cfa1aa87fc | ||
|
|
0ac32ee474 | ||
|
|
de0675f850 | ||
|
|
1c529790f2 | ||
|
|
40bcc4d572 | ||
|
|
58f109e79c | ||
|
|
cb324f6269 | ||
|
|
7cafaf5cbc | ||
|
|
a394952630 | ||
|
|
68e87f20aa | ||
|
|
64ed0b3e94 | ||
|
|
fcaaee958d | ||
|
|
29e356ff86 | ||
|
|
460edc7bc7 | ||
|
|
582c7af12d | ||
|
|
e1a78382c3 | ||
|
|
4ee1693434 | ||
|
|
1ba63a2175 | ||
|
|
b5551fd8ba | ||
|
|
fac0038af8 | ||
|
|
ee6685e324 | ||
|
|
0fb18f995c | ||
|
|
af838121d9 | ||
|
|
93b3eda05c | ||
|
|
740584d883 | ||
|
|
5e6160149f | ||
|
|
be66c563a8 | ||
|
|
822603128d | ||
|
|
9dbe8fbb1f |
@@ -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",
|
||||
|
||||
@@ -99,6 +99,7 @@ import { getSidebarLinks } from '../utils'
|
||||
import { usersStore } from '@/stores/user'
|
||||
import { sessionStore } from '@/stores/session'
|
||||
import { useSidebar } from '@/stores/sidebar'
|
||||
import { useSettings } from '@/stores/settings'
|
||||
import { ChevronRight, Plus } from 'lucide-vue-next'
|
||||
import { createResource, Button } from 'frappe-ui'
|
||||
import PageModal from '@/components/Modals/PageModal.vue'
|
||||
@@ -114,6 +115,7 @@ const isModerator = ref(false)
|
||||
const isInstructor = ref(false)
|
||||
const pageToEdit = ref(null)
|
||||
const showWebPages = ref(false)
|
||||
const settingsStore = useSettings()
|
||||
|
||||
onMounted(() => {
|
||||
socket.on('publish_lms_notifications', (data) => {
|
||||
@@ -183,6 +185,28 @@ const addQuizzes = () => {
|
||||
}
|
||||
}
|
||||
|
||||
const addPrograms = () => {
|
||||
if (settingsStore.learningPaths.data) {
|
||||
let activeFor = ['Programs', 'ProgramForm']
|
||||
let index = 1
|
||||
if (!isInstructor.value && !isModerator.value) {
|
||||
sidebarLinks.value = sidebarLinks.value.filter(
|
||||
(link) => link.label !== 'Courses'
|
||||
)
|
||||
activeFor.push('CourseDetail')
|
||||
activeFor.push('Lesson')
|
||||
index = 0
|
||||
}
|
||||
|
||||
sidebarLinks.value.splice(index, 0, {
|
||||
label: 'Programs',
|
||||
icon: 'Route',
|
||||
to: 'Programs',
|
||||
activeFor: activeFor,
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
const openPageModal = (link) => {
|
||||
showPageModal.value = true
|
||||
pageToEdit.value = link
|
||||
@@ -215,6 +239,7 @@ watch(userResource, () => {
|
||||
isModerator.value = userResource.data.is_moderator
|
||||
isInstructor.value = userResource.data.is_instructor
|
||||
addQuizzes()
|
||||
addPrograms()
|
||||
}
|
||||
})
|
||||
|
||||
|
||||
@@ -92,7 +92,7 @@
|
||||
{{ option.label }}
|
||||
</div>
|
||||
<div
|
||||
v-if="option.label != option.description"
|
||||
v-if="option.description"
|
||||
class="text-xs text-gray-700"
|
||||
v-html="option.description"
|
||||
></div>
|
||||
|
||||
@@ -44,6 +44,7 @@
|
||||
</div>
|
||||
</template>
|
||||
</Autocomplete>
|
||||
<p v-if="description" class="text-sm text-gray-600">{{ description }}</p>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@@ -67,6 +68,10 @@ const props = defineProps({
|
||||
type: String,
|
||||
default: '',
|
||||
},
|
||||
description: {
|
||||
type: String,
|
||||
default: '',
|
||||
},
|
||||
})
|
||||
|
||||
const emit = defineEmits(['update:modelValue', 'change'])
|
||||
@@ -118,7 +123,7 @@ const options = createResource({
|
||||
transform: (data) => {
|
||||
return data.map((option) => {
|
||||
return {
|
||||
label: option.value,
|
||||
label: option.label || option.value,
|
||||
value: option.value,
|
||||
description: option.description,
|
||||
}
|
||||
|
||||
@@ -303,9 +303,9 @@ const trashChapter = (chapterName) => {
|
||||
}
|
||||
|
||||
const redirectToChapter = (chapter) => {
|
||||
if (!chapter.is_scorm_package) return
|
||||
event.preventDefault()
|
||||
if (props.allowEdit) return
|
||||
if (!chapter.is_scorm_package) return
|
||||
if (!user.data) {
|
||||
showToast(
|
||||
__('You are not enrolled'),
|
||||
|
||||
@@ -8,6 +8,7 @@
|
||||
<AppSidebar />
|
||||
</div>
|
||||
<div class="w-full overflow-auto" id="scrollContainer">
|
||||
<OnboardingBanner />
|
||||
<slot />
|
||||
</div>
|
||||
</div>
|
||||
@@ -16,4 +17,5 @@
|
||||
</template>
|
||||
<script setup>
|
||||
import AppSidebar from './AppSidebar.vue'
|
||||
import OnboardingBanner from '@/components/OnboardingBanner.vue'
|
||||
</script>
|
||||
|
||||
@@ -17,10 +17,15 @@
|
||||
<template #body-content>
|
||||
<div class="space-y-4 text-base">
|
||||
<FormControl label="Title" v-model="chapter.title" :required="true" />
|
||||
<FormControl
|
||||
:label="__('Is SCORM Package')"
|
||||
<Switch
|
||||
size="sm"
|
||||
:label="__('SCORM Package')"
|
||||
:description="
|
||||
__(
|
||||
'Enable this only if you want to upload a SCORM package as a chapter.'
|
||||
)
|
||||
"
|
||||
v-model="chapter.is_scorm_package"
|
||||
type="checkbox"
|
||||
/>
|
||||
<div v-if="chapter.is_scorm_package">
|
||||
<FileUploader
|
||||
@@ -70,14 +75,17 @@ import {
|
||||
Dialog,
|
||||
FileUploader,
|
||||
FormControl,
|
||||
Switch,
|
||||
} from 'frappe-ui'
|
||||
import { defineModel, reactive, watch, ref } from 'vue'
|
||||
import { defineModel, reactive, watch } from 'vue'
|
||||
import { showToast, getFileSize } from '@/utils/'
|
||||
import { capture } from '@/telemetry'
|
||||
import { FileText, X } from 'lucide-vue-next'
|
||||
import { useSettings } from '@/stores/settings'
|
||||
|
||||
const show = defineModel()
|
||||
const outline = defineModel('outline')
|
||||
const settingsStore = useSettings()
|
||||
|
||||
const props = defineProps({
|
||||
course: {
|
||||
@@ -137,6 +145,9 @@ const addChapter = async (close) => {
|
||||
{
|
||||
onSuccess(data) {
|
||||
cleanChapter()
|
||||
if (!settingsStore.onboardingDetails.data?.is_onboarded) {
|
||||
settingsStore.onboardingDetails.reload()
|
||||
}
|
||||
outline.value.reload()
|
||||
showToast(
|
||||
__('Success'),
|
||||
|
||||
@@ -108,9 +108,31 @@ const tabsStructure = computed(() => {
|
||||
hideLabel: true,
|
||||
items: [
|
||||
{
|
||||
label: 'Members',
|
||||
description: 'Manage the members of your learning system',
|
||||
icon: 'UserRoundPlus',
|
||||
label: 'General',
|
||||
icon: 'Wrench',
|
||||
fields: [
|
||||
{
|
||||
label: 'Enable Learning Paths',
|
||||
name: 'enable_learning_paths',
|
||||
description:
|
||||
'This will enforce students to go through programs assigned to them in the correct order.',
|
||||
type: 'checkbox',
|
||||
},
|
||||
{
|
||||
label: 'Send calendar invite for evaluations',
|
||||
name: 'send_calendar_invite_for_evaluations',
|
||||
description:
|
||||
'If enabled, it sends google calendar invite to the student for evaluations.',
|
||||
type: 'checkbox',
|
||||
},
|
||||
{
|
||||
label: 'Unsplash Access Key',
|
||||
name: 'unsplash_access_key',
|
||||
description:
|
||||
'Optional. If this is set, students can pick a cover image from the unsplash library for their profile page. https://unsplash.com/documentation#getting-started.',
|
||||
type: 'text',
|
||||
},
|
||||
],
|
||||
},
|
||||
],
|
||||
},
|
||||
@@ -156,9 +178,14 @@ const tabsStructure = computed(() => {
|
||||
],
|
||||
},
|
||||
{
|
||||
label: 'Settings',
|
||||
hideLabel: true,
|
||||
label: 'Lists',
|
||||
hideLabel: false,
|
||||
items: [
|
||||
{
|
||||
label: 'Members',
|
||||
description: 'Manage the members of your learning system',
|
||||
icon: 'UserRoundPlus',
|
||||
},
|
||||
{
|
||||
label: 'Categories',
|
||||
description: 'Manage the members of your learning system',
|
||||
|
||||
151
frontend/src/components/OnboardingBanner.vue
Normal file
151
frontend/src/components/OnboardingBanner.vue
Normal file
@@ -0,0 +1,151 @@
|
||||
<template>
|
||||
<div v-if="showOnboardingBanner && onboardingDetails.data">
|
||||
<Tooltip :text="__('Skip Onboarding')" placement="left">
|
||||
<X
|
||||
class="w-4 h-4 stroke-1 absolute top-2 right-2 cursor-pointer mr-1"
|
||||
@click="skipOnboarding.reload()"
|
||||
/>
|
||||
</Tooltip>
|
||||
<div class="flex items-center justify-evenly bg-gray-100 p-10">
|
||||
<div
|
||||
@click="redirectToCourseForm()"
|
||||
class="flex items-center space-x-2"
|
||||
:class="{
|
||||
'cursor-pointer': !onboardingDetails.data.course_created.length,
|
||||
}"
|
||||
>
|
||||
<span
|
||||
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" />
|
||||
</span>
|
||||
<span v-else class="font-semibold bg-white px-2 py-1 rounded-full">
|
||||
1
|
||||
</span>
|
||||
<span class="text-lg font-semibold">
|
||||
{{ __('Create a course') }}
|
||||
</span>
|
||||
</div>
|
||||
<div
|
||||
@click="redirectToChapterForm()"
|
||||
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,
|
||||
}"
|
||||
>
|
||||
<span
|
||||
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" />
|
||||
</span>
|
||||
<span v-else class="font-semibold bg-white px-2 py-1 rounded-full">
|
||||
2
|
||||
</span>
|
||||
<span class="text-lg font-semibold">
|
||||
{{ __('Add a chapter') }}
|
||||
</span>
|
||||
</div>
|
||||
<div
|
||||
@click="redirectToLessonForm()"
|
||||
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.chapter_created.length,
|
||||
}"
|
||||
>
|
||||
<span
|
||||
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" />
|
||||
</span>
|
||||
<span class="font-semibold bg-white px-2 py-1 rounded-full"> 3 </span>
|
||||
<span class="text-lg font-semibold">
|
||||
{{ __('Add a lesson') }}
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
<script setup lang="ts">
|
||||
import { ref, watch } from 'vue'
|
||||
import { Check, X } from 'lucide-vue-next'
|
||||
import { useRouter } from 'vue-router'
|
||||
import { useSettings } from '@/stores/settings'
|
||||
import { createResource, Tooltip } from 'frappe-ui'
|
||||
|
||||
const showOnboardingBanner = ref(false)
|
||||
const settings = useSettings()
|
||||
const onboardingDetails = settings.onboardingDetails
|
||||
const router = useRouter()
|
||||
|
||||
watch(onboardingDetails, () => {
|
||||
if (!onboardingDetails.data?.is_onboarded) {
|
||||
showOnboardingBanner.value = true
|
||||
} else {
|
||||
showOnboardingBanner.value = false
|
||||
}
|
||||
})
|
||||
|
||||
const redirectToCourseForm = () => {
|
||||
if (onboardingDetails.data?.course_created.length) {
|
||||
return
|
||||
} else {
|
||||
router.push({ name: 'CourseForm', params: { courseName: 'new' } })
|
||||
}
|
||||
}
|
||||
|
||||
const redirectToChapterForm = () => {
|
||||
if (!onboardingDetails.data?.course_created.length) {
|
||||
return
|
||||
} else {
|
||||
router.push({
|
||||
name: 'CourseForm',
|
||||
params: {
|
||||
courseName: onboardingDetails.data?.first_course,
|
||||
},
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
const redirectToLessonForm = () => {
|
||||
if (!onboardingDetails.data?.course_created.length) {
|
||||
return
|
||||
} else if (!onboardingDetails.data?.chapter_created.length) {
|
||||
return
|
||||
} else {
|
||||
router.push({
|
||||
name: 'LessonForm',
|
||||
params: {
|
||||
courseName: onboardingDetails.data?.first_course,
|
||||
chapterNumber: 1,
|
||||
lessonNumber: 1,
|
||||
},
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
const skipOnboarding = createResource({
|
||||
url: 'frappe.client.set_value',
|
||||
makeParams() {
|
||||
return {
|
||||
doctype: 'LMS Settings',
|
||||
name: 'LMS Settings',
|
||||
fieldname: 'is_onboarding_complete',
|
||||
value: 1,
|
||||
}
|
||||
},
|
||||
onSuccess(data) {
|
||||
onboardingDetails.reload()
|
||||
},
|
||||
})
|
||||
</script>
|
||||
@@ -397,6 +397,9 @@ const attempts = createResource({
|
||||
watch(
|
||||
() => quiz.data,
|
||||
() => {
|
||||
if (quiz.data) {
|
||||
populateQuestions()
|
||||
}
|
||||
if (quiz.data && quiz.data.max_attempts) {
|
||||
attempts.reload()
|
||||
resetQuiz()
|
||||
|
||||
@@ -29,6 +29,7 @@
|
||||
<script setup>
|
||||
import { Button, Badge } from 'frappe-ui'
|
||||
import SettingFields from '@/components/SettingFields.vue'
|
||||
import { showToast } from '@/utils'
|
||||
|
||||
const props = defineProps({
|
||||
fields: {
|
||||
@@ -54,7 +55,14 @@ const update = () => {
|
||||
props.data.doc[f.name] = f.value
|
||||
}
|
||||
})
|
||||
props.data.save.submit()
|
||||
props.data.save.submit(
|
||||
{},
|
||||
{
|
||||
onError(err) {
|
||||
showToast('Error', err.messages?.[0] || err, 'x')
|
||||
},
|
||||
}
|
||||
)
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
@@ -90,6 +90,7 @@
|
||||
:type="field.type"
|
||||
:rows="field.rows"
|
||||
:options="field.options"
|
||||
:description="field.description"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
@@ -100,7 +101,7 @@
|
||||
import { FormControl, FileUploader, Button, Switch } from 'frappe-ui'
|
||||
import { computed } from 'vue'
|
||||
import { getFileSize, validateFile } from '@/utils'
|
||||
import { X, FileText } from 'lucide-vue-next'
|
||||
import { X } from 'lucide-vue-next'
|
||||
import Link from '@/components/Controls/Link.vue'
|
||||
import CodeEditor from '@/components/Controls/CodeEditor.vue'
|
||||
|
||||
|
||||
@@ -434,6 +434,9 @@ const submitCourse = () => {
|
||||
onSuccess(data) {
|
||||
capture('course_created')
|
||||
showToast('Success', 'Course created successfully', 'check')
|
||||
if (!settingsStore.onboardingDetails.data?.is_onboarded) {
|
||||
settingsStore.onboardingDetails.reload()
|
||||
}
|
||||
router.push({
|
||||
name: 'CourseForm',
|
||||
params: { courseName: data.name },
|
||||
|
||||
@@ -160,30 +160,45 @@
|
||||
|
||||
<script setup>
|
||||
import {
|
||||
Breadcrumbs,
|
||||
Tabs,
|
||||
Badge,
|
||||
Breadcrumbs,
|
||||
Button,
|
||||
FormControl,
|
||||
call,
|
||||
createResource,
|
||||
FormControl,
|
||||
Tabs,
|
||||
} from 'frappe-ui'
|
||||
import CourseCard from '@/components/CourseCard.vue'
|
||||
import { BookOpen, Plus, Search } from 'lucide-vue-next'
|
||||
import { ref, computed, inject, onMounted, watch } from 'vue'
|
||||
import { updateDocumentTitle } from '@/utils'
|
||||
import { useRouter } from 'vue-router'
|
||||
import { useSettings } from '@/stores/settings'
|
||||
|
||||
const user = inject('$user')
|
||||
const searchQuery = ref('')
|
||||
const currentCategory = ref(null)
|
||||
const hasCourses = ref(false)
|
||||
const router = useRouter()
|
||||
const settings = useSettings()
|
||||
|
||||
onMounted(() => {
|
||||
checkLearningPath()
|
||||
let queries = new URLSearchParams(location.search)
|
||||
if (queries.has('category')) {
|
||||
currentCategory.value = queries.get('category')
|
||||
}
|
||||
})
|
||||
|
||||
const checkLearningPath = () => {
|
||||
if (
|
||||
settings.learningPaths.data &&
|
||||
(!user.data?.is_moderator || !user.data?.is_instructor)
|
||||
) {
|
||||
router.push({ name: 'Programs' })
|
||||
}
|
||||
}
|
||||
|
||||
const courses = createResource({
|
||||
url: 'lms.lms.utils.get_courses',
|
||||
cache: ['courses', user.data?.email],
|
||||
|
||||
@@ -92,11 +92,13 @@ import LessonHelp from '@/components/LessonHelp.vue'
|
||||
import { ChevronRight } from 'lucide-vue-next'
|
||||
import { updateDocumentTitle, createToast, getEditorTools } from '@/utils'
|
||||
import { capture } from '@/telemetry'
|
||||
import { useSettings } from '@/stores/settings'
|
||||
|
||||
const editor = ref(null)
|
||||
const instructorEditor = ref(null)
|
||||
const user = inject('$user')
|
||||
const openInstructorEditor = ref(false)
|
||||
const settingsStore = useSettings()
|
||||
let autoSaveInterval
|
||||
let showSuccessMessage = false
|
||||
|
||||
@@ -393,6 +395,9 @@ const createNewLesson = () => {
|
||||
onSuccess() {
|
||||
capture('lesson_created')
|
||||
showToast('Success', 'Lesson created successfully', 'check')
|
||||
if (!settingsStore.onboardingDetails.data?.is_onboarded) {
|
||||
settingsStore.onboardingDetails.reload()
|
||||
}
|
||||
lessonDetails.reload()
|
||||
},
|
||||
}
|
||||
|
||||
354
frontend/src/pages/ProgramForm.vue
Normal file
354
frontend/src/pages/ProgramForm.vue
Normal file
@@ -0,0 +1,354 @@
|
||||
<template>
|
||||
<header
|
||||
class="sticky top-0 z-10 flex flex-col md:flex-row md:items-center justify-between border-b bg-white px-3 py-2.5 sm:px-5"
|
||||
>
|
||||
<Breadcrumbs :items="breadbrumbs" />
|
||||
<Button variant="solid">
|
||||
{{ __('Save') }}
|
||||
</Button>
|
||||
</header>
|
||||
<div v-if="program.doc" class="pt-5 px-5 w-3/4 mx-auto space-y-10">
|
||||
<FormControl v-model="program.doc.title" :label="__('Title')" />
|
||||
|
||||
<!-- Courses -->
|
||||
<div>
|
||||
<div class="flex items-center justify-between mb-2">
|
||||
<div class="text-lg font-semibold">
|
||||
{{ __('Program Courses') }}
|
||||
</div>
|
||||
<Button
|
||||
@click="
|
||||
() => {
|
||||
currentForm = 'course'
|
||||
showDialog = true
|
||||
}
|
||||
"
|
||||
>
|
||||
<template #prefix>
|
||||
<Plus class="w-4 h-4" />
|
||||
</template>
|
||||
{{ __('Add') }}
|
||||
</Button>
|
||||
</div>
|
||||
|
||||
<ListView
|
||||
:columns="courseColumns"
|
||||
:rows="program.doc.program_courses"
|
||||
row-key="name"
|
||||
:options="{
|
||||
showTooltip: false,
|
||||
}"
|
||||
>
|
||||
<ListHeader
|
||||
class="mb-2 grid items-center space-x-4 rounded bg-gray-100 p-2"
|
||||
>
|
||||
<ListHeaderItem :item="item" v-for="item in courseColumns" />
|
||||
</ListHeader>
|
||||
<ListRows>
|
||||
<Draggable
|
||||
:list="program.doc.program_courses"
|
||||
item-key="name"
|
||||
group="items"
|
||||
@end="updateOrder"
|
||||
>
|
||||
<template #item="{ element: row }">
|
||||
<ListRow :row="row" />
|
||||
</template>
|
||||
</Draggable>
|
||||
</ListRows>
|
||||
<ListSelectBanner>
|
||||
<template #actions="{ unselectAll, selections }">
|
||||
<div class="flex gap-2">
|
||||
<Button
|
||||
variant="ghost"
|
||||
@click="remove(selections, unselectAll, 'program_courses')"
|
||||
>
|
||||
<Trash2 class="h-4 w-4 stroke-1.5" />
|
||||
</Button>
|
||||
</div>
|
||||
</template>
|
||||
</ListSelectBanner>
|
||||
</ListView>
|
||||
</div>
|
||||
|
||||
<!-- Members -->
|
||||
<div>
|
||||
<div class="flex items-center justify-between mb-2">
|
||||
<div class="text-lg font-semibold">
|
||||
{{ __('Program Members') }}
|
||||
</div>
|
||||
<Button
|
||||
@click="
|
||||
() => {
|
||||
currentForm = 'member'
|
||||
showDialog = true
|
||||
}
|
||||
"
|
||||
>
|
||||
<template #prefix>
|
||||
<Plus class="w-4 h-4" />
|
||||
</template>
|
||||
{{ __('Add') }}
|
||||
</Button>
|
||||
</div>
|
||||
|
||||
<ListView
|
||||
:columns="memberColumns"
|
||||
:rows="program.doc.program_members"
|
||||
row-key="name"
|
||||
:options="{
|
||||
showTooltip: false,
|
||||
}"
|
||||
>
|
||||
<ListHeader
|
||||
class="mb-2 grid items-center space-x-4 rounded bg-gray-100 p-2"
|
||||
>
|
||||
<ListHeaderItem :item="item" v-for="item in memberColumns" />
|
||||
</ListHeader>
|
||||
<ListRows>
|
||||
<ListRow :row="row" v-for="row in program.doc.program_members" />
|
||||
</ListRows>
|
||||
<ListSelectBanner>
|
||||
<template #actions="{ unselectAll, selections }">
|
||||
<div class="flex gap-2">
|
||||
<Button
|
||||
variant="ghost"
|
||||
@click="remove(selections, unselectAll, 'program_members')"
|
||||
>
|
||||
<Trash2 class="h-4 w-4 stroke-1.5" />
|
||||
</Button>
|
||||
</div>
|
||||
</template>
|
||||
</ListSelectBanner>
|
||||
</ListView>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<Dialog
|
||||
v-model="showDialog"
|
||||
:options="{
|
||||
title:
|
||||
currentForm == 'course'
|
||||
? __('New Program Course')
|
||||
: __('New Program Member'),
|
||||
actions: [
|
||||
{
|
||||
label: __('Add'),
|
||||
variant: 'solid',
|
||||
onClick: () =>
|
||||
currentForm == 'course'
|
||||
? addProgramCourse(close)
|
||||
: addProgramMember(close),
|
||||
},
|
||||
],
|
||||
}"
|
||||
>
|
||||
<template #body-content>
|
||||
<Link
|
||||
v-if="currentForm == 'course'"
|
||||
v-model="course"
|
||||
doctype="LMS Course"
|
||||
:filters="{
|
||||
disable_self_learning: 1,
|
||||
}"
|
||||
:label="__('Program Course')"
|
||||
:description="
|
||||
__(
|
||||
'Only courses for which self learning is disabled can be added to program.'
|
||||
)
|
||||
"
|
||||
/>
|
||||
|
||||
<Link
|
||||
v-if="currentForm == 'member'"
|
||||
v-model="member"
|
||||
doctype="User"
|
||||
:filters="{
|
||||
ignore_user_type: 1,
|
||||
}"
|
||||
:label="__('Program Member')"
|
||||
/>
|
||||
</template>
|
||||
</Dialog>
|
||||
</template>
|
||||
<script setup>
|
||||
import {
|
||||
Breadcrumbs,
|
||||
Button,
|
||||
call,
|
||||
createDocumentResource,
|
||||
Dialog,
|
||||
FormControl,
|
||||
ListView,
|
||||
ListRows,
|
||||
ListRow,
|
||||
ListHeader,
|
||||
ListHeaderItem,
|
||||
ListSelectBanner,
|
||||
} from 'frappe-ui'
|
||||
import { computed, ref } from 'vue'
|
||||
import { Plus, Trash2 } from 'lucide-vue-next'
|
||||
import Link from '@/components/Controls/Link.vue'
|
||||
import { showToast } from '@/utils/'
|
||||
import Draggable from 'vuedraggable'
|
||||
|
||||
const showDialog = ref(false)
|
||||
const currentForm = ref(null)
|
||||
const course = ref(null)
|
||||
const member = ref(null)
|
||||
|
||||
const props = defineProps({
|
||||
programName: {
|
||||
type: String,
|
||||
required: true,
|
||||
},
|
||||
})
|
||||
|
||||
const program = createDocumentResource({
|
||||
doctype: 'LMS Program',
|
||||
name: props.programName,
|
||||
auto: true,
|
||||
cache: ['program', props.programName],
|
||||
})
|
||||
|
||||
const addProgramCourse = () => {
|
||||
program.setValue.submit(
|
||||
{
|
||||
program_courses: [
|
||||
...program.doc.program_courses,
|
||||
{ course: course.value },
|
||||
],
|
||||
},
|
||||
{
|
||||
onSuccess(data) {
|
||||
showDialog.value = false
|
||||
course.value = null
|
||||
showToast(__('Success'), __('Course added to program'), 'check')
|
||||
program.reload()
|
||||
},
|
||||
onError(err) {
|
||||
showToast('Error', err.messages?.[0] || err, 'x')
|
||||
},
|
||||
}
|
||||
)
|
||||
}
|
||||
|
||||
const addProgramMember = () => {
|
||||
program.setValue.submit(
|
||||
{
|
||||
program_members: [
|
||||
...program.doc.program_members,
|
||||
{ member: member.value },
|
||||
],
|
||||
},
|
||||
{
|
||||
onSuccess(data) {
|
||||
showDialog.value = false
|
||||
member.value = null
|
||||
showToast(__('Success'), __('Member added to program'), 'check')
|
||||
program.reload()
|
||||
},
|
||||
onError(err) {
|
||||
showToast('Error', err.messages?.[0] || err, 'x')
|
||||
},
|
||||
}
|
||||
)
|
||||
}
|
||||
|
||||
const remove = (selections, unselectAll, doctype) => {
|
||||
selections = Array.from(selections)
|
||||
program.setValue.submit(
|
||||
{
|
||||
[doctype]: program.doc[doctype].filter(
|
||||
(row) => !selections.includes(row.name)
|
||||
),
|
||||
},
|
||||
{
|
||||
onSuccess(data) {
|
||||
unselectAll()
|
||||
showToast(__('Success'), __('Items removed successfully'), 'check')
|
||||
program.reload()
|
||||
},
|
||||
onError(err) {
|
||||
showToast('Error', err.messages?.[0] || err, 'x')
|
||||
},
|
||||
}
|
||||
)
|
||||
}
|
||||
|
||||
const updateOrder = (e) => {
|
||||
let sourceIdx = e.from.dataset.idx
|
||||
let targetIdx = e.to.dataset.idx
|
||||
let courses = program.doc.program_courses
|
||||
courses.splice(targetIdx, 0, courses.splice(sourceIdx, 1)[0])
|
||||
|
||||
courses.forEach((course, index) => {
|
||||
course.idx = index + 1
|
||||
})
|
||||
|
||||
program.setValue.submit(
|
||||
{
|
||||
program_courses: courses,
|
||||
},
|
||||
{
|
||||
onSuccess(data) {
|
||||
showToast(__('Success'), __('Course moved successfully'), 'check')
|
||||
program.reload()
|
||||
},
|
||||
onError(err) {
|
||||
showToast('Error', err.messages?.[0] || err, 'x')
|
||||
},
|
||||
}
|
||||
)
|
||||
}
|
||||
|
||||
const courseColumns = computed(() => {
|
||||
return [
|
||||
{
|
||||
label: 'Title',
|
||||
key: 'course_title',
|
||||
width: 3,
|
||||
},
|
||||
{
|
||||
label: 'ID',
|
||||
key: 'course',
|
||||
width: 3,
|
||||
},
|
||||
]
|
||||
})
|
||||
|
||||
const memberColumns = computed(() => {
|
||||
return [
|
||||
{
|
||||
label: 'Member',
|
||||
key: 'member',
|
||||
width: 3,
|
||||
align: 'left',
|
||||
},
|
||||
{
|
||||
label: 'Full Name',
|
||||
key: 'full_name',
|
||||
width: 3,
|
||||
align: 'left',
|
||||
},
|
||||
{
|
||||
label: 'Progress',
|
||||
key: 'progress',
|
||||
width: 3,
|
||||
align: 'left',
|
||||
},
|
||||
]
|
||||
})
|
||||
|
||||
const breadbrumbs = computed(() => {
|
||||
return [
|
||||
{
|
||||
label: 'Programs',
|
||||
route: { name: 'Programs' },
|
||||
},
|
||||
{
|
||||
label: props.programName === 'new' ? 'New Program' : props.programName,
|
||||
},
|
||||
]
|
||||
})
|
||||
</script>
|
||||
185
frontend/src/pages/Programs.vue
Normal file
185
frontend/src/pages/Programs.vue
Normal file
@@ -0,0 +1,185 @@
|
||||
<template>
|
||||
<header
|
||||
class="sticky top-0 z-10 flex items-center justify-between border-b bg-white px-3 py-2.5 sm:px-5"
|
||||
>
|
||||
<Breadcrumbs :items="breadbrumbs" />
|
||||
<Button
|
||||
v-if="user.data?.is_moderator || user.data?.is_instructor"
|
||||
@click="showDialog = true"
|
||||
variant="solid"
|
||||
>
|
||||
<template #prefix>
|
||||
<Plus class="h-4 w-4 stroke-1.5" />
|
||||
</template>
|
||||
{{ __('New') }}
|
||||
</Button>
|
||||
</header>
|
||||
<div v-if="programs.data?.length" class="pt-5 px-5">
|
||||
<div v-for="program in programs.data" class="mb-20">
|
||||
<div class="flex items-center justify-between">
|
||||
<div class="text-xl font-semibold">
|
||||
{{ program.name }}
|
||||
</div>
|
||||
<div class="flex items-center space-x-2">
|
||||
<Badge
|
||||
v-if="program.members"
|
||||
variant="subtle"
|
||||
theme="green"
|
||||
size="lg"
|
||||
>
|
||||
{{ program.members }}
|
||||
{{
|
||||
program.members == 1 ? __(singularize('members')) : __('members')
|
||||
}}
|
||||
</Badge>
|
||||
<Badge
|
||||
v-if="program.progress"
|
||||
variant="subtle"
|
||||
theme="blue"
|
||||
size="lg"
|
||||
>
|
||||
{{ program.progress }}{{ __('% completed') }}
|
||||
</Badge>
|
||||
|
||||
<router-link
|
||||
v-if="user.data?.is_moderator || user.data?.is_instructor"
|
||||
:to="{
|
||||
name: 'ProgramForm',
|
||||
params: { programName: program.name },
|
||||
}"
|
||||
>
|
||||
<Button>
|
||||
<template #prefix>
|
||||
<Edit class="h-4 w-4 stroke-1.5" />
|
||||
</template>
|
||||
{{ __('Edit') }}
|
||||
</Button>
|
||||
</router-link>
|
||||
</div>
|
||||
</div>
|
||||
<div
|
||||
v-if="program.courses?.length"
|
||||
class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-5 mt-5"
|
||||
>
|
||||
<CourseCard
|
||||
v-for="course in program.courses"
|
||||
:course="course"
|
||||
@click="enrollMember(program.name, course.name)"
|
||||
class="cursor-pointer"
|
||||
/>
|
||||
</div>
|
||||
<div v-else class="text-sm italic text-gray-600 mt-4">
|
||||
{{ __('No courses in this program') }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div
|
||||
v-else
|
||||
class="text-center p-5 text-gray-600 mt-52 w-3/4 md:w-1/2 mx-auto space-y-2"
|
||||
>
|
||||
<BookOpen class="size-10 mx-auto stroke-1 text-gray-500" />
|
||||
<div class="text-xl font-medium">
|
||||
{{ __('No programs found') }}
|
||||
</div>
|
||||
<div class="leading-5">
|
||||
{{
|
||||
__(
|
||||
'There are no programs available at the moment. Keep an eye out, fresh learning experiences are on the way soon!'
|
||||
)
|
||||
}}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<Dialog
|
||||
v-model="showDialog"
|
||||
:options="{
|
||||
title: __('New Program'),
|
||||
actions: [
|
||||
{
|
||||
label: __('Create'),
|
||||
variant: 'solid',
|
||||
onClick: () => createProgram(close),
|
||||
},
|
||||
],
|
||||
}"
|
||||
>
|
||||
<template #body-content>
|
||||
<FormControl :label="__('Title')" v-model="title" />
|
||||
</template>
|
||||
</Dialog>
|
||||
</template>
|
||||
<script setup>
|
||||
import {
|
||||
Badge,
|
||||
Breadcrumbs,
|
||||
Button,
|
||||
call,
|
||||
createResource,
|
||||
Dialog,
|
||||
FormControl,
|
||||
} from 'frappe-ui'
|
||||
import { computed, inject, ref } from 'vue'
|
||||
import { BookOpen, Edit, Plus } from 'lucide-vue-next'
|
||||
import CourseCard from '@/components/CourseCard.vue'
|
||||
import { useRouter } from 'vue-router'
|
||||
import { showToast, singularize } from '@/utils'
|
||||
|
||||
const user = inject('$user')
|
||||
const showDialog = ref(false)
|
||||
const router = useRouter()
|
||||
const title = ref('')
|
||||
|
||||
const programs = createResource({
|
||||
url: 'lms.lms.utils.get_programs',
|
||||
auto: true,
|
||||
cache: 'programs',
|
||||
})
|
||||
|
||||
const createProgram = (close) => {
|
||||
call('frappe.client.insert', {
|
||||
doc: {
|
||||
doctype: 'LMS Program',
|
||||
title: title.value,
|
||||
},
|
||||
}).then((res) => {
|
||||
router.push({ name: 'ProgramForm', params: { programName: res.name } })
|
||||
})
|
||||
}
|
||||
|
||||
const enrollMember = (program, course) => {
|
||||
call('lms.lms.utils.enroll_in_program_course', {
|
||||
program: program,
|
||||
course: course,
|
||||
})
|
||||
.then((data) => {
|
||||
if (data.current_lesson) {
|
||||
router.push({
|
||||
name: 'Lesson',
|
||||
params: {
|
||||
courseName: course,
|
||||
chapterNumber: data.current_lesson.split('-')[0],
|
||||
lessonNumber: data.current_lesson.split('-')[1],
|
||||
},
|
||||
})
|
||||
} else if (data) {
|
||||
router.push({
|
||||
name: 'Lesson',
|
||||
params: {
|
||||
courseName: course,
|
||||
chapterNumber: 1,
|
||||
lessonNumber: 1,
|
||||
},
|
||||
})
|
||||
}
|
||||
})
|
||||
.catch((err) => {
|
||||
showToast('Error', err.messages?.[0] || err, 'x')
|
||||
})
|
||||
}
|
||||
|
||||
const breadbrumbs = computed(() => [
|
||||
{
|
||||
label: 'Programs',
|
||||
},
|
||||
])
|
||||
</script>
|
||||
@@ -182,6 +182,17 @@ const routes = [
|
||||
component: () => import('@/pages/QuizSubmission.vue'),
|
||||
props: true,
|
||||
},
|
||||
{
|
||||
path: '/programs/:programName',
|
||||
name: 'ProgramForm',
|
||||
component: () => import('@/pages/ProgramForm.vue'),
|
||||
props: true,
|
||||
},
|
||||
{
|
||||
path: '/programs',
|
||||
name: 'Programs',
|
||||
component: () => import('@/pages/Programs.vue'),
|
||||
},
|
||||
]
|
||||
|
||||
let router = createRouter({
|
||||
|
||||
@@ -1,12 +1,32 @@
|
||||
import { defineStore } from 'pinia'
|
||||
import { ref } from 'vue'
|
||||
import { createResource } from 'frappe-ui'
|
||||
|
||||
export const useSettings = defineStore('settings', () => {
|
||||
const isSettingsOpen = ref(false)
|
||||
const activeTab = ref(null)
|
||||
const learningPaths = createResource({
|
||||
url: 'frappe.client.get_single_value',
|
||||
makeParams(values) {
|
||||
return {
|
||||
doctype: 'LMS Settings',
|
||||
field: 'enable_learning_paths',
|
||||
}
|
||||
},
|
||||
auto: true,
|
||||
cache: ['learningPaths'],
|
||||
})
|
||||
|
||||
const onboardingDetails = createResource({
|
||||
url: 'lms.lms.utils.is_onboarding_complete',
|
||||
auto: true,
|
||||
cache: ['onboardingDetails'],
|
||||
})
|
||||
|
||||
return {
|
||||
isSettingsOpen,
|
||||
activeTab,
|
||||
learningPaths,
|
||||
onboardingDetails,
|
||||
}
|
||||
})
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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.12.0"
|
||||
__version__ = "2.14.0"
|
||||
|
||||
@@ -66,7 +66,9 @@ def delete_lms_roles():
|
||||
|
||||
|
||||
def create_course_creator_role():
|
||||
if not frappe.db.exists("Role", "Course Creator"):
|
||||
if frappe.db.exists("Role", "Course Creator"):
|
||||
frappe.db.set_value("Role", "Course Creator", "desk_access", 0)
|
||||
else:
|
||||
role = frappe.get_doc(
|
||||
{
|
||||
"doctype": "Role",
|
||||
@@ -79,7 +81,9 @@ def create_course_creator_role():
|
||||
|
||||
|
||||
def create_moderator_role():
|
||||
if not frappe.db.exists("Role", "Moderator"):
|
||||
if frappe.db.exists("Role", "Moderator"):
|
||||
frappe.db.set_value("Role", "Moderator", "desk_access", 0)
|
||||
else:
|
||||
role = frappe.get_doc(
|
||||
{
|
||||
"doctype": "Role",
|
||||
@@ -92,7 +96,9 @@ def create_moderator_role():
|
||||
|
||||
|
||||
def create_evaluator_role():
|
||||
if not frappe.db.exists("Role", "Batch Evaluator"):
|
||||
if frappe.db.exists("Role", "Batch Evaluator"):
|
||||
frappe.db.set_value("Role", "Batch Evaluator", "desk_access", 0)
|
||||
else:
|
||||
role = frappe.new_doc("Role")
|
||||
role.update(
|
||||
{
|
||||
@@ -105,7 +111,9 @@ def create_evaluator_role():
|
||||
|
||||
|
||||
def create_lms_student_role():
|
||||
if not frappe.db.exists("Role", "LMS Student"):
|
||||
if frappe.db.exists("Role", "LMS Student"):
|
||||
frappe.db.set_value("Role", "LMS Student", "desk_access", 0)
|
||||
else:
|
||||
role = frappe.new_doc("Role")
|
||||
role.update(
|
||||
{
|
||||
|
||||
@@ -93,15 +93,15 @@ def save_progress(lesson, course):
|
||||
|
||||
frappe.db.set_value("LMS Enrollment", membership, "current_lesson", lesson)
|
||||
|
||||
quiz_completed = get_quiz_progress(lesson)
|
||||
if not quiz_completed:
|
||||
return 0
|
||||
|
||||
if frappe.db.exists(
|
||||
"LMS Course Progress", {"lesson": lesson, "member": frappe.session.user}
|
||||
):
|
||||
return
|
||||
|
||||
quiz_completed = get_quiz_progress(lesson)
|
||||
if not quiz_completed:
|
||||
return 0
|
||||
|
||||
frappe.get_doc(
|
||||
{
|
||||
"doctype": "LMS Course Progress",
|
||||
|
||||
@@ -53,7 +53,7 @@ class LMSCourse(Document):
|
||||
frappe.throw(_("Please install the Payments app to create a paid courses."))
|
||||
|
||||
def validate_amount_and_currency(self):
|
||||
if self.paid_course and (not self.amount and not self.currency):
|
||||
if self.paid_course and (not self.course_price and not self.currency):
|
||||
frappe.throw(_("Amount and currency are required for paid courses."))
|
||||
|
||||
def on_update(self):
|
||||
|
||||
@@ -4,6 +4,7 @@
|
||||
import frappe
|
||||
from frappe import _
|
||||
from frappe.model.document import Document
|
||||
from frappe.utils import ceil
|
||||
|
||||
|
||||
class LMSEnrollment(Document):
|
||||
@@ -11,6 +12,9 @@ class LMSEnrollment(Document):
|
||||
self.validate_membership_in_same_batch()
|
||||
self.validate_membership_in_different_batch_same_course()
|
||||
|
||||
def on_update(self):
|
||||
self.update_program_progress()
|
||||
|
||||
def validate_membership_in_same_batch(self):
|
||||
filters = {"member": self.member, "course": self.course, "name": ["!=", self.name]}
|
||||
if self.batch_old:
|
||||
@@ -55,6 +59,26 @@ class LMSEnrollment(Document):
|
||||
)
|
||||
)
|
||||
|
||||
def update_program_progress(self):
|
||||
programs = frappe.get_all(
|
||||
"LMS Program Member", {"member": self.member}, ["parent", "name"]
|
||||
)
|
||||
|
||||
for program in programs:
|
||||
total_progress = 0
|
||||
courses = frappe.get_all(
|
||||
"LMS Program Course", {"parent": program.parent}, pluck="course"
|
||||
)
|
||||
for course in courses:
|
||||
progress = frappe.db.get_value(
|
||||
"LMS Enrollment", {"course": course, "member": self.member}, "progress"
|
||||
)
|
||||
progress = progress or 0
|
||||
total_progress += progress
|
||||
|
||||
average_progress = ceil(total_progress / len(courses))
|
||||
frappe.db.set_value("LMS Program Member", program.name, "progress", average_progress)
|
||||
|
||||
|
||||
@frappe.whitelist()
|
||||
def create_membership(
|
||||
|
||||
0
lms/lms/doctype/lms_program/__init__.py
Normal file
0
lms/lms/doctype/lms_program/__init__.py
Normal file
8
lms/lms/doctype/lms_program/lms_program.js
Normal file
8
lms/lms/doctype/lms_program/lms_program.js
Normal file
@@ -0,0 +1,8 @@
|
||||
// Copyright (c) 2024, Frappe and contributors
|
||||
// For license information, please see license.txt
|
||||
|
||||
// frappe.ui.form.on("LMS Program", {
|
||||
// refresh(frm) {
|
||||
|
||||
// },
|
||||
// });
|
||||
84
lms/lms/doctype/lms_program/lms_program.json
Normal file
84
lms/lms/doctype/lms_program/lms_program.json
Normal file
@@ -0,0 +1,84 @@
|
||||
{
|
||||
"actions": [],
|
||||
"allow_rename": 1,
|
||||
"autoname": "field:title",
|
||||
"creation": "2024-11-18 12:27:13.283169",
|
||||
"doctype": "DocType",
|
||||
"engine": "InnoDB",
|
||||
"field_order": [
|
||||
"title",
|
||||
"program_courses",
|
||||
"program_members"
|
||||
],
|
||||
"fields": [
|
||||
{
|
||||
"fieldname": "program_courses",
|
||||
"fieldtype": "Table",
|
||||
"label": "Program Courses",
|
||||
"options": "LMS Program Course"
|
||||
},
|
||||
{
|
||||
"fieldname": "program_members",
|
||||
"fieldtype": "Table",
|
||||
"label": "Program Members",
|
||||
"options": "LMS Program Member"
|
||||
},
|
||||
{
|
||||
"fieldname": "title",
|
||||
"fieldtype": "Data",
|
||||
"in_list_view": 1,
|
||||
"label": "Title",
|
||||
"reqd": 1,
|
||||
"unique": 1
|
||||
}
|
||||
],
|
||||
"index_web_pages_for_search": 1,
|
||||
"links": [],
|
||||
"modified": "2024-11-20 12:26:02.214628",
|
||||
"modified_by": "Administrator",
|
||||
"module": "LMS",
|
||||
"name": "LMS Program",
|
||||
"naming_rule": "By fieldname",
|
||||
"owner": "Administrator",
|
||||
"permissions": [
|
||||
{
|
||||
"create": 1,
|
||||
"delete": 1,
|
||||
"email": 1,
|
||||
"export": 1,
|
||||
"print": 1,
|
||||
"read": 1,
|
||||
"report": 1,
|
||||
"role": "System Manager",
|
||||
"share": 1,
|
||||
"write": 1
|
||||
},
|
||||
{
|
||||
"create": 1,
|
||||
"delete": 1,
|
||||
"email": 1,
|
||||
"export": 1,
|
||||
"print": 1,
|
||||
"read": 1,
|
||||
"report": 1,
|
||||
"role": "Moderator",
|
||||
"share": 1,
|
||||
"write": 1
|
||||
},
|
||||
{
|
||||
"create": 1,
|
||||
"delete": 1,
|
||||
"email": 1,
|
||||
"export": 1,
|
||||
"print": 1,
|
||||
"read": 1,
|
||||
"report": 1,
|
||||
"role": "Course Creator",
|
||||
"share": 1,
|
||||
"write": 1
|
||||
}
|
||||
],
|
||||
"sort_field": "creation",
|
||||
"sort_order": "DESC",
|
||||
"states": []
|
||||
}
|
||||
32
lms/lms/doctype/lms_program/lms_program.py
Normal file
32
lms/lms/doctype/lms_program/lms_program.py
Normal file
@@ -0,0 +1,32 @@
|
||||
# Copyright (c) 2024, Frappe and contributors
|
||||
# For license information, please see license.txt
|
||||
|
||||
import frappe
|
||||
from frappe import _
|
||||
from frappe.model.document import Document
|
||||
|
||||
|
||||
class LMSProgram(Document):
|
||||
def validate(self):
|
||||
self.validate_program_courses()
|
||||
self.validate_program_members()
|
||||
|
||||
def validate_program_courses(self):
|
||||
courses = [row.course for row in self.program_courses]
|
||||
duplicates = {course for course in courses if courses.count(course) > 1}
|
||||
if len(duplicates):
|
||||
frappe.throw(
|
||||
_("Course {0} has already been added to this batch.").format(
|
||||
frappe.bold(next(iter(duplicates)))
|
||||
)
|
||||
)
|
||||
|
||||
def validate_program_members(self):
|
||||
members = [row.member for row in self.program_members]
|
||||
duplicates = {member for member in members if members.count(member) > 1}
|
||||
if len(duplicates):
|
||||
frappe.throw(
|
||||
_("Member {0} has already been added to this batch.").format(
|
||||
frappe.bold(next(iter(duplicates)))
|
||||
)
|
||||
)
|
||||
21
lms/lms/doctype/lms_program/test_lms_program.py
Normal file
21
lms/lms/doctype/lms_program/test_lms_program.py
Normal file
@@ -0,0 +1,21 @@
|
||||
# Copyright (c) 2024, Frappe and Contributors
|
||||
# See license.txt
|
||||
|
||||
# import frappe
|
||||
from frappe.tests import IntegrationTestCase, UnitTestCase
|
||||
|
||||
|
||||
# On IntegrationTestCase, the doctype test records and all
|
||||
# link-field test record depdendencies are recursively loaded
|
||||
# Use these module variables to add/remove to/from that list
|
||||
EXTRA_TEST_RECORD_DEPENDENCIES = [] # eg. ["User"]
|
||||
IGNORE_TEST_RECORD_DEPENDENCIES = [] # eg. ["User"]
|
||||
|
||||
|
||||
class TestLMSProgram(UnitTestCase):
|
||||
"""
|
||||
Unit tests for LMSProgram.
|
||||
Use this class for testing individual functions and methods.
|
||||
"""
|
||||
|
||||
pass
|
||||
0
lms/lms/doctype/lms_program_course/__init__.py
Normal file
0
lms/lms/doctype/lms_program_course/__init__.py
Normal file
42
lms/lms/doctype/lms_program_course/lms_program_course.json
Normal file
42
lms/lms/doctype/lms_program_course/lms_program_course.json
Normal file
@@ -0,0 +1,42 @@
|
||||
{
|
||||
"actions": [],
|
||||
"allow_rename": 1,
|
||||
"creation": "2024-11-18 12:27:37.030302",
|
||||
"doctype": "DocType",
|
||||
"editable_grid": 1,
|
||||
"engine": "InnoDB",
|
||||
"field_order": [
|
||||
"course",
|
||||
"course_title"
|
||||
],
|
||||
"fields": [
|
||||
{
|
||||
"fieldname": "course",
|
||||
"fieldtype": "Link",
|
||||
"in_list_view": 1,
|
||||
"label": "Course",
|
||||
"options": "LMS Course",
|
||||
"reqd": 1
|
||||
},
|
||||
{
|
||||
"fetch_from": "course.title",
|
||||
"fieldname": "course_title",
|
||||
"fieldtype": "Data",
|
||||
"in_list_view": 1,
|
||||
"label": "Course Title",
|
||||
"read_only": 1
|
||||
}
|
||||
],
|
||||
"index_web_pages_for_search": 1,
|
||||
"istable": 1,
|
||||
"links": [],
|
||||
"modified": "2024-11-18 12:43:46.800199",
|
||||
"modified_by": "Administrator",
|
||||
"module": "LMS",
|
||||
"name": "LMS Program Course",
|
||||
"owner": "Administrator",
|
||||
"permissions": [],
|
||||
"sort_field": "creation",
|
||||
"sort_order": "DESC",
|
||||
"states": []
|
||||
}
|
||||
9
lms/lms/doctype/lms_program_course/lms_program_course.py
Normal file
9
lms/lms/doctype/lms_program_course/lms_program_course.py
Normal file
@@ -0,0 +1,9 @@
|
||||
# Copyright (c) 2024, Frappe and contributors
|
||||
# For license information, please see license.txt
|
||||
|
||||
# import frappe
|
||||
from frappe.model.document import Document
|
||||
|
||||
|
||||
class LMSProgramCourse(Document):
|
||||
pass
|
||||
0
lms/lms/doctype/lms_program_member/__init__.py
Normal file
0
lms/lms/doctype/lms_program_member/__init__.py
Normal file
50
lms/lms/doctype/lms_program_member/lms_program_member.json
Normal file
50
lms/lms/doctype/lms_program_member/lms_program_member.json
Normal file
@@ -0,0 +1,50 @@
|
||||
{
|
||||
"actions": [],
|
||||
"allow_rename": 1,
|
||||
"creation": "2024-11-18 12:29:13.615014",
|
||||
"doctype": "DocType",
|
||||
"editable_grid": 1,
|
||||
"engine": "InnoDB",
|
||||
"field_order": [
|
||||
"member",
|
||||
"full_name",
|
||||
"progress"
|
||||
],
|
||||
"fields": [
|
||||
{
|
||||
"fieldname": "member",
|
||||
"fieldtype": "Link",
|
||||
"in_list_view": 1,
|
||||
"label": "Member",
|
||||
"options": "User",
|
||||
"reqd": 1
|
||||
},
|
||||
{
|
||||
"fetch_from": "member.full_name",
|
||||
"fieldname": "full_name",
|
||||
"fieldtype": "Data",
|
||||
"in_list_view": 1,
|
||||
"label": "Full Name",
|
||||
"read_only": 1
|
||||
},
|
||||
{
|
||||
"default": "0",
|
||||
"fieldname": "progress",
|
||||
"fieldtype": "Int",
|
||||
"in_list_view": 1,
|
||||
"label": "Progress"
|
||||
}
|
||||
],
|
||||
"index_web_pages_for_search": 1,
|
||||
"istable": 1,
|
||||
"links": [],
|
||||
"modified": "2024-11-21 12:51:31.882576",
|
||||
"modified_by": "Administrator",
|
||||
"module": "LMS",
|
||||
"name": "LMS Program Member",
|
||||
"owner": "Administrator",
|
||||
"permissions": [],
|
||||
"sort_field": "creation",
|
||||
"sort_order": "DESC",
|
||||
"states": []
|
||||
}
|
||||
9
lms/lms/doctype/lms_program_member/lms_program_member.py
Normal file
9
lms/lms/doctype/lms_program_member/lms_program_member.py
Normal file
@@ -0,0 +1,9 @@
|
||||
# Copyright (c) 2024, Frappe and contributors
|
||||
# For license information, please see license.txt
|
||||
|
||||
# import frappe
|
||||
from frappe.model.document import Document
|
||||
|
||||
|
||||
class LMSProgramMember(Document):
|
||||
pass
|
||||
@@ -5,13 +5,15 @@
|
||||
"editable_grid": 1,
|
||||
"engine": "InnoDB",
|
||||
"field_order": [
|
||||
"general_tab",
|
||||
"default_home",
|
||||
"send_calendar_invite_for_evaluations",
|
||||
"is_onboarding_complete",
|
||||
"column_break_zdel",
|
||||
"enable_learning_paths",
|
||||
"unsplash_access_key",
|
||||
"livecode_url",
|
||||
"section_break_szgq",
|
||||
"send_calendar_invite_for_evaluations",
|
||||
"show_day_view",
|
||||
"column_break_2",
|
||||
"show_dashboard",
|
||||
@@ -80,6 +82,7 @@
|
||||
{
|
||||
"fieldname": "mentor_request_section",
|
||||
"fieldtype": "Section Break",
|
||||
"hidden": 1,
|
||||
"label": "Mentor Request"
|
||||
},
|
||||
{
|
||||
@@ -127,6 +130,7 @@
|
||||
{
|
||||
"fieldname": "section_break_szgq",
|
||||
"fieldtype": "Section Break",
|
||||
"hidden": 1,
|
||||
"label": "Batch Settings"
|
||||
},
|
||||
{
|
||||
@@ -336,12 +340,23 @@
|
||||
"fieldname": "payments_app_is_not_installed",
|
||||
"fieldtype": "HTML",
|
||||
"label": "Payments app is not installed"
|
||||
},
|
||||
{
|
||||
"default": "0",
|
||||
"fieldname": "enable_learning_paths",
|
||||
"fieldtype": "Check",
|
||||
"label": "Enable Learning Paths"
|
||||
},
|
||||
{
|
||||
"fieldname": "general_tab",
|
||||
"fieldtype": "Tab Break",
|
||||
"label": "General"
|
||||
}
|
||||
],
|
||||
"index_web_pages_for_search": 1,
|
||||
"issingle": 1,
|
||||
"links": [],
|
||||
"modified": "2024-10-01 12:15:49.800242",
|
||||
"modified": "2024-11-20 11:55:05.358421",
|
||||
"modified_by": "Administrator",
|
||||
"module": "LMS",
|
||||
"name": "LMS Settings",
|
||||
@@ -356,6 +371,13 @@
|
||||
"role": "System Manager",
|
||||
"share": 1,
|
||||
"write": 1
|
||||
},
|
||||
{
|
||||
"email": 1,
|
||||
"print": 1,
|
||||
"read": 1,
|
||||
"role": "LMS Student",
|
||||
"share": 1
|
||||
}
|
||||
],
|
||||
"sort_field": "modified",
|
||||
|
||||
@@ -855,7 +855,10 @@ def get_telemetry_boot_info():
|
||||
}
|
||||
|
||||
|
||||
@frappe.whitelist()
|
||||
def is_onboarding_complete():
|
||||
if not has_course_moderator_role():
|
||||
return {"is_onboarded": False}
|
||||
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")
|
||||
@@ -1751,3 +1754,81 @@ def enroll_in_batch(batch, payment_name=None):
|
||||
)
|
||||
|
||||
student.save(ignore_permissions=True)
|
||||
|
||||
|
||||
@frappe.whitelist()
|
||||
def get_programs():
|
||||
if (
|
||||
has_course_moderator_role()
|
||||
or has_course_instructor_role()
|
||||
or has_course_evaluator_role()
|
||||
):
|
||||
programs = frappe.get_all("LMS Program", fields=["name"])
|
||||
else:
|
||||
programs = frappe.get_all(
|
||||
"LMS Program Member", {"member": frappe.session.user}, ["parent as name", "progress"]
|
||||
)
|
||||
|
||||
for program in programs:
|
||||
program_courses = frappe.get_all(
|
||||
"LMS Program Course", {"parent": program.name}, ["course"], order_by="idx"
|
||||
)
|
||||
program.courses = []
|
||||
for course in program_courses:
|
||||
program.courses.append(get_course_details(course.course))
|
||||
|
||||
program.members = frappe.db.count("LMS Program Member", {"parent": program.name})
|
||||
|
||||
return programs
|
||||
|
||||
|
||||
@frappe.whitelist()
|
||||
def enroll_in_program_course(program, course):
|
||||
enrollment = frappe.db.exists(
|
||||
"LMS Enrollment", {"member": frappe.session.user, "course": course}
|
||||
)
|
||||
|
||||
if enrollment:
|
||||
enrollment = frappe.db.get_value(
|
||||
"LMS Enrollment", enrollment, ["name", "current_lesson"], as_dict=1
|
||||
)
|
||||
enrollment.current_lesson = get_lesson_index(enrollment.current_lesson)
|
||||
return enrollment
|
||||
|
||||
program_courses = frappe.get_all(
|
||||
"LMS Program Course", {"parent": program}, ["course", "idx"], order_by="idx"
|
||||
)
|
||||
current_course_idx = [
|
||||
program_course.idx
|
||||
for program_course in program_courses
|
||||
if program_course.course == course
|
||||
][0]
|
||||
|
||||
for program_course in program_courses:
|
||||
if program_course.idx < current_course_idx:
|
||||
enrollment = frappe.db.get_value(
|
||||
"LMS Enrollment",
|
||||
{"member": frappe.session.user, "course": program_course.course},
|
||||
["name", "progress"],
|
||||
as_dict=1,
|
||||
)
|
||||
if enrollment and enrollment.progress != 100:
|
||||
frappe.throw(
|
||||
_("Please complete the previous courses in the program to enroll in this course.")
|
||||
)
|
||||
elif not enrollment:
|
||||
frappe.throw(
|
||||
_("Please complete the previous courses in the program to enroll in this course.")
|
||||
)
|
||||
else:
|
||||
continue
|
||||
|
||||
enrollment = frappe.new_doc("LMS Enrollment")
|
||||
enrollment.update(
|
||||
{
|
||||
"member": frappe.session.user,
|
||||
"course": course,
|
||||
}
|
||||
)
|
||||
enrollment.save()
|
||||
return enrollment
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
{
|
||||
"app": "lms",
|
||||
"charts": [
|
||||
{
|
||||
"chart_name": "New Signups",
|
||||
@@ -145,7 +146,7 @@
|
||||
"type": "Link"
|
||||
}
|
||||
],
|
||||
"modified": "2024-08-09 13:19:06.273056",
|
||||
"modified": "2024-11-21 12:16:25.886431",
|
||||
"modified_by": "Administrator",
|
||||
"module": "LMS",
|
||||
"name": "LMS",
|
||||
@@ -212,5 +213,6 @@
|
||||
"type": "DocType"
|
||||
}
|
||||
],
|
||||
"title": "LMS"
|
||||
}
|
||||
"title": "LMS",
|
||||
"type": "Workspace"
|
||||
}
|
||||
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}"
|
||||
|
||||
|
||||
386
lms/locale/fa.po
386
lms/locale/fa.po
File diff suppressed because it is too large
Load Diff
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 ""
|
||||
|
||||
|
||||
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Frappe LMS VERSION\n"
|
||||
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
||||
"POT-Creation-Date: 2024-11-15 16:04+0000\n"
|
||||
"PO-Revision-Date: 2024-11-15 16:04+0000\n"
|
||||
"POT-Creation-Date: 2024-11-22 16:05+0000\n"
|
||||
"PO-Revision-Date: 2024-11-22 16:05+0000\n"
|
||||
"Last-Translator: jannat@frappe.io\n"
|
||||
"Language-Team: jannat@frappe.io\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -20,6 +20,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>"
|
||||
@@ -97,7 +102,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 ""
|
||||
|
||||
@@ -127,12 +133,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 ""
|
||||
|
||||
@@ -148,7 +162,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 ""
|
||||
|
||||
@@ -251,6 +265,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"
|
||||
@@ -344,7 +366,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 ""
|
||||
|
||||
@@ -395,7 +417,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 ""
|
||||
|
||||
@@ -538,7 +560,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 ""
|
||||
|
||||
@@ -725,11 +747,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 ""
|
||||
|
||||
@@ -762,7 +784,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 ""
|
||||
|
||||
@@ -770,7 +792,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 ""
|
||||
|
||||
@@ -986,7 +1008,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 ""
|
||||
@@ -1055,6 +1077,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'
|
||||
@@ -1084,6 +1107,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
|
||||
@@ -1112,6 +1136,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"
|
||||
@@ -1182,22 +1207,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 ""
|
||||
|
||||
@@ -1232,6 +1268,7 @@ msgid "Cover Image"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:9
|
||||
#: frontend/src/pages/Programs.vue:99
|
||||
msgid "Create"
|
||||
msgstr ""
|
||||
|
||||
@@ -1247,7 +1284,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 ""
|
||||
|
||||
@@ -1255,6 +1292,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 ""
|
||||
@@ -1358,7 +1399,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 ""
|
||||
|
||||
@@ -1366,7 +1407,7 @@ msgstr ""
|
||||
msgid "Delete Chapter"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:464
|
||||
#: frontend/src/pages/CourseForm.vue:467
|
||||
msgid "Delete Course"
|
||||
msgstr ""
|
||||
|
||||
@@ -1378,7 +1419,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 ""
|
||||
|
||||
@@ -1468,7 +1509,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 ""
|
||||
|
||||
@@ -1506,7 +1547,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 ""
|
||||
|
||||
@@ -1519,7 +1560,7 @@ msgstr ""
|
||||
msgid "Edit Profile"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:180
|
||||
#: frontend/src/pages/QuizForm.vue:181
|
||||
msgid "Edit the question"
|
||||
msgstr ""
|
||||
|
||||
@@ -1580,6 +1621,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"
|
||||
@@ -1632,7 +1682,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 ""
|
||||
|
||||
@@ -1641,7 +1691,7 @@ msgstr ""
|
||||
msgid "Enrollment Count"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1702
|
||||
#: lms/lms/utils.py:1705
|
||||
msgid "Enrollment Failed"
|
||||
msgstr ""
|
||||
|
||||
@@ -1670,14 +1720,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 ""
|
||||
@@ -1706,7 +1756,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 ""
|
||||
|
||||
@@ -1872,7 +1922,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 ""
|
||||
|
||||
@@ -1920,7 +1970,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 ""
|
||||
@@ -1952,6 +2004,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 ""
|
||||
@@ -2083,7 +2140,7 @@ msgstr ""
|
||||
msgid "I am unavailable"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:383
|
||||
#: frontend/src/pages/QuizForm.vue:384
|
||||
msgid "ID"
|
||||
msgstr ""
|
||||
|
||||
@@ -2224,7 +2281,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 ""
|
||||
@@ -2300,7 +2357,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"
|
||||
@@ -2330,6 +2386,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 ""
|
||||
@@ -2529,6 +2589,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"
|
||||
@@ -2588,6 +2663,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"
|
||||
@@ -2810,7 +2886,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
|
||||
@@ -2865,6 +2941,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
|
||||
@@ -2879,6 +2956,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"
|
||||
@@ -2928,6 +3006,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"
|
||||
@@ -3000,6 +3086,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
|
||||
@@ -3011,6 +3101,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
|
||||
@@ -3055,8 +3146,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 ""
|
||||
|
||||
@@ -3080,11 +3171,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 ""
|
||||
@@ -3147,10 +3250,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 ""
|
||||
@@ -3167,6 +3274,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 ""
|
||||
@@ -3187,7 +3298,7 @@ msgstr ""
|
||||
msgid "No {0} batches"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:106
|
||||
#: frontend/src/pages/Courses.vue:107
|
||||
msgid "No {0} courses"
|
||||
msgstr ""
|
||||
|
||||
@@ -3275,15 +3386,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 ""
|
||||
|
||||
@@ -3559,7 +3674,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 ""
|
||||
|
||||
@@ -3571,11 +3690,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 ""
|
||||
@@ -3584,11 +3711,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 ""
|
||||
|
||||
@@ -3613,11 +3740,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 ""
|
||||
|
||||
@@ -3754,8 +3901,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 ""
|
||||
|
||||
@@ -3805,7 +3974,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
|
||||
@@ -3851,7 +4020,7 @@ msgstr ""
|
||||
msgid "Questions"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:430
|
||||
#: frontend/src/pages/QuizForm.vue:431
|
||||
msgid "Questions deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -3889,7 +4058,7 @@ msgstr ""
|
||||
msgid "Quiz Title"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:342
|
||||
#: frontend/src/pages/QuizForm.vue:343
|
||||
msgid "Quiz created successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -3897,7 +4066,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 ""
|
||||
|
||||
@@ -3906,7 +4075,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 ""
|
||||
@@ -4063,19 +4232,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 ""
|
||||
|
||||
@@ -4093,6 +4262,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 ""
|
||||
@@ -4115,8 +4285,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 ""
|
||||
@@ -4332,6 +4503,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 ""
|
||||
@@ -4505,7 +4680,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 ""
|
||||
|
||||
@@ -4573,14 +4748,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 ""
|
||||
|
||||
@@ -4635,6 +4813,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
|
||||
@@ -4735,11 +4914,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 ""
|
||||
|
||||
@@ -4770,11 +4953,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 ""
|
||||
|
||||
@@ -4866,6 +5049,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'
|
||||
@@ -4873,7 +5057,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
|
||||
@@ -4886,6 +5071,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
|
||||
@@ -4894,7 +5080,7 @@ msgstr ""
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:169
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:174
|
||||
msgid "Title is required"
|
||||
msgstr ""
|
||||
|
||||
@@ -4909,7 +5095,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 ""
|
||||
|
||||
@@ -4973,7 +5159,7 @@ msgstr ""
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Quiz.vue:580
|
||||
#: frontend/src/components/Quiz.vue:583
|
||||
msgid "Type your answer"
|
||||
msgstr ""
|
||||
|
||||
@@ -5257,7 +5443,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 ""
|
||||
|
||||
@@ -5429,6 +5615,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 ""
|
||||
@@ -5441,7 +5631,7 @@ msgstr ""
|
||||
msgid "posted by"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:389
|
||||
#: frontend/src/pages/QuizForm.vue:390
|
||||
msgid "question_detail"
|
||||
msgstr ""
|
||||
|
||||
@@ -5473,7 +5663,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 ""
|
||||
|
||||
@@ -5481,7 +5671,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}"
|
||||
|
||||
|
||||
438
lms/locale/sv.po
438
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 ""
|
||||
|
||||
|
||||
340
lms/locale/zh.po
340
lms/locale/zh.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-19 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: Chinese Simplified\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 "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 ""
|
||||
@@ -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 ""
|
||||
|
||||
|
||||
@@ -93,4 +93,5 @@ lms.patches.v2_0.sidebar_settings
|
||||
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.delete_web_forms
|
||||
lms.patches.v2_0.update_desk_access_for_lms_roles
|
||||
9
lms/patches/v2_0/update_desk_access_for_lms_roles.py
Normal file
9
lms/patches/v2_0/update_desk_access_for_lms_roles.py
Normal file
@@ -0,0 +1,9 @@
|
||||
import frappe
|
||||
|
||||
|
||||
def execute():
|
||||
roles = ["Course Creator", "Moderator", "Batch Evaluator", "LMS Student"]
|
||||
|
||||
for role in roles:
|
||||
if frappe.db.exists("Role", role):
|
||||
frappe.db.set_value("Role", role, "desk_access", 0)
|
||||
Reference in New Issue
Block a user