Merge branch 'frappe:develop' into fix/video-embedding

This commit is contained in:
Raizaaa
2026-02-06 16:51:52 +05:30
committed by GitHub
77 changed files with 4193 additions and 3458 deletions
+2
View File
@@ -0,0 +1,2 @@
ignore:
- "**/test_helper.py"
Submodule frappe-semgrep-rules added at 239029b7eb
+3 -3
View File
@@ -208,12 +208,12 @@ const canAddAssessments = () => {
const getAssessmentColumns = () => {
let columns = [
{
label: 'Assessment',
label: __('Assessment'),
key: 'title',
width: '25rem',
},
{
label: 'Type',
label: __('Type'),
key: 'assessment_type',
width: '15rem',
},
@@ -221,7 +221,7 @@ const getAssessmentColumns = () => {
if (!user.data?.is_moderator) {
columns.push({
label: 'Status/Percentage',
label: __('Status/Percentage'),
key: 'status',
align: 'left',
width: '10rem',
@@ -99,18 +99,17 @@
name="item-label"
v-bind="{ active, selected, option }"
>
<div class="flex flex-col space-y-1 text-ink-gray-8">
<div>
{{ option.label }}
<div class="flex flex-col gap-1 p-1">
<div class="text-base font-medium text-ink-gray-8">
{{
option.value == option.label
? option.description
: option.label
}}
</div>
<div class="text-sm text-ink-gray-5">
{{ option.value }}
</div>
<div
v-if="
option.description &&
option.description != option.label
"
class="text-xs text-ink-gray-7"
v-html="option.description"
></div>
</div>
</slot>
</li>
+11
View File
@@ -112,6 +112,14 @@
v-else-if="lesson.icon === 'icon-quiz'"
class="h-4 w-4 stroke-1 mr-2"
/>
<NotebookPen
v-else-if="lesson.icon === 'icon-assignment'"
class="h-4 w-4 stroke-1 mr-2"
/>
<SquareCode
v-else-if="lesson.icon === 'icon-code'"
class="h-4 w-4 stroke-1 mr-2"
/>
<FileText
v-else-if="lesson.icon === 'icon-list'"
class="h-4 w-4 text-ink-gray-9 stroke-1 mr-2"
@@ -177,8 +185,11 @@ import {
FilePenLine,
HelpCircle,
MonitorPlay,
NotebookPen,
Plus,
SquareCode,
Trash2,
Notebook,
} from 'lucide-vue-next'
import { useRoute, useRouter } from 'vue-router'
import ChapterModal from '@/components/Modals/ChapterModal.vue'
+43 -35
View File
@@ -2,7 +2,7 @@
<Dialog
v-model="show"
:options="{
title: __('Add a Student'),
title: __('Enroll a Student'),
size: 'sm',
actions: [
{
@@ -19,9 +19,24 @@
doctype="User"
v-model="student"
:filters="{ ignore_user_type: 1 }"
placeholder=" "
:label="__('Student')"
:onCreate="
(value, close) => {
openSettings('Members', close)
() => {
openSettings('Members')
show = false
}
"
:required="true"
/>
<Link
doctype="LMS Payment"
v-model="payment"
placeholder=" "
:label="__('Payment')"
:onCreate="
() => {
openSettings('Transactions')
show = false
}
"
@@ -31,15 +46,16 @@
</Dialog>
</template>
<script setup>
import { Dialog, createResource, toast } from 'frappe-ui'
import { call, Dialog, toast } from 'frappe-ui'
import { ref, inject } from 'vue'
import Link from '@/components/Controls/Link.vue'
import { useOnboarding } from 'frappe-ui/frappe'
import { openSettings } from '@/utils'
import Link from '@/components/Controls/Link.vue'
const students = defineModel('reloadStudents')
const batchModal = defineModel('batchModal')
const student = ref()
const student = ref(null)
const payment = ref(null)
const user = inject('$user')
const { updateOnboardingStep } = useOnboarding('learning')
const show = defineModel()
@@ -51,36 +67,28 @@ const props = defineProps({
},
})
const studentResource = createResource({
url: 'frappe.client.insert',
makeParams(values) {
return {
doc: {
doctype: 'LMS Batch Enrollment',
batch: props.batch,
member: student.value,
},
}
},
})
const addStudent = (close) => {
studentResource.submit(
{},
{
onSuccess() {
if (user.data?.is_system_manager)
updateOnboardingStep('add_batch_student')
call('frappe.client.insert', {
doc: {
doctype: 'LMS Batch Enrollment',
batch: props.batch,
member: student.value,
payment: payment.value,
},
})
.then(() => {
if (user.data?.is_system_manager)
updateOnboardingStep('add_batch_student')
students.value.reload()
batchModal.value.reload()
student.value = null
close()
},
onError(err) {
toast.error(err.messages?.[0] || err)
},
}
)
students.value.reload()
batchModal.value.reload()
student.value = null
payment.value = null
close()
})
.catch((err) => {
toast.error(err.messages?.[0] || err)
console.error(err)
})
}
</script>
+1 -1
View File
@@ -5,7 +5,7 @@
</div>
<div class="flex items-center space-x-2">
<slot name="prefix" />
<div class="font-semibold text-2xl">
<div class="font-semibold text-ink-gray-9 text-2xl">
{{ value }}
</div>
<slot name="suffix" />
@@ -65,7 +65,7 @@
<div v-else>
<div class="flex items-center text-sm space-x-2">
<div
class="flex items-center justify-center rounded border border-outline-gray-1 bg-surface-gray-2"
class="flex items-center justify-center rounded border border-outline-gray-modals bg-surface-gray-2"
:class="field.size == 'lg' ? 'px-5 py-5' : 'px-20 py-8'"
>
<img
@@ -90,7 +90,7 @@
</div>
<X
@click="data[field.name] = null"
class="border text-ink-gray-7 border-outline-gray-3 rounded-md cursor-pointer stroke-1.5 w-5 h-5 p-1 ml-4"
class="border text-ink-gray-7 border-outline-gray-modals rounded-md cursor-pointer stroke-1.5 w-5 h-5 p-1 ml-4"
/>
</div>
</div>
+1 -1
View File
@@ -59,7 +59,7 @@ onMounted(() => {
const breadcrumbs = computed(() => {
let crumbs = [
{
label: 'Submissions',
label: __('Submissions'),
route: { name: 'AssignmentSubmissionList' },
},
{
+1 -1
View File
@@ -200,7 +200,7 @@ const assignmentTypes = computed(() => {
const breadcrumbs = computed(() => [
{
label: 'Assignments',
label: __('Assignments'),
route: { name: 'Assignments' },
},
])
+1 -1
View File
@@ -59,7 +59,7 @@ const badge = createResource({
const breadcrumbs = computed(() => {
return [
{
label: 'Badges',
label: __('Badges'),
},
{
label: badge.data.badge,
+2 -2
View File
@@ -330,10 +330,10 @@ const batch = createResource({
})
const breadcrumbs = computed(() => {
let crumbs = [{ label: 'Batches', route: { name: 'Batches' } }]
let crumbs = [{ label: __('Batches'), route: { name: 'Batches' } }]
if (!isStudent.value) {
crumbs.push({
label: 'Details',
label: __('Details'),
route: {
name: 'BatchDetail',
params: {
+3 -3
View File
@@ -120,12 +120,12 @@ const courses = createResource({
})
const breadcrumbs = computed(() => {
let items = [{ label: 'Batches', route: { name: 'Batches' } }]
items.push({
let crumbs = [{ label: __('Batches'), route: { name: 'Batches' } }]
crumbs.push({
label: batch?.data?.title,
route: { name: 'BatchDetail', params: { batchName: batch?.data?.name } },
})
return items
return crumbs
})
usePageMeta(() => {
+2 -2
View File
@@ -559,7 +559,7 @@ const trashBatch = (close) => {
const breadcrumbs = computed(() => {
let crumbs = [
{
label: 'Batches',
label: __('Batches'),
route: {
name: 'Batches',
},
@@ -577,7 +577,7 @@ const breadcrumbs = computed(() => {
})
}
crumbs.push({
label: props.batchName == 'new' ? 'New Batch' : 'Edit Batch',
label: props.batchName == 'new' ? __('New Batch') : __('Edit Batch'),
route: { name: 'BatchForm', params: { batchName: props.batchName } },
})
return crumbs
+11 -10
View File
@@ -155,7 +155,7 @@ const title = ref('')
const certification = ref(false)
const filters = ref({})
const is_student = computed(() => user.data?.is_student)
const currentTab = ref(is_student.value ? 'All' : 'Upcoming')
const currentTab = ref(is_student.value ? 'all' : 'upcoming')
const orderBy = ref('start_date')
const readOnlyMode = window.read_only_mode
const router = useRouter()
@@ -245,7 +245,7 @@ const updateTabFilter = () => {
if (!user.data) {
return
}
if (currentTab.value == 'Enrolled' && is_student.value) {
if (currentTab.value == 'enrolled' && is_student.value) {
filters.value['enrolled'] = 1
delete filters.value['start_date']
delete filters.value['published']
@@ -256,20 +256,20 @@ const updateTabFilter = () => {
delete filters.value['start_date']
delete filters.value['published']
orderBy.value = 'start_date desc'
if (currentTab.value == 'Upcoming') {
if (currentTab.value == 'upcoming') {
filters.value['start_date'] = ['>=', dayjs().format('YYYY-MM-DD')]
filters.value['published'] = 1
orderBy.value = 'start_date'
} else if (currentTab.value == 'Archived') {
} else if (currentTab.value == 'archived') {
filters.value['start_date'] = ['<=', dayjs().format('YYYY-MM-DD')]
} else if (currentTab.value == 'Unpublished') {
} else if (currentTab.value == 'unpublished') {
filters.value['published'] = 0
}
}
}
const updateStudentFilter = () => {
if (!user.data || (is_student.value && currentTab.value != 'Enrolled')) {
if (!user.data || (is_student.value && currentTab.value != 'enrolled')) {
filters.value['start_date'] = ['>=', dayjs().format('YYYY-MM-DD')]
filters.value['published'] = 1
}
@@ -319,6 +319,7 @@ const batchTabs = computed(() => {
let tabs = [
{
label: __('All'),
value: 'all',
},
]
@@ -327,11 +328,11 @@ const batchTabs = computed(() => {
user.data?.is_instructor ||
user.data?.is_evaluator
) {
tabs.push({ label: __('Upcoming') })
tabs.push({ label: __('Archived') })
tabs.push({ label: __('Unpublished') })
tabs.push({ label: __('Upcoming'), value: 'upcoming' })
tabs.push({ label: __('Archived'), value: 'archived' })
tabs.push({ label: __('Unpublished'), value: 'unpublished' })
} else if (user.data) {
tabs.push({ label: __('Enrolled') })
tabs.push({ label: __('Enrolled'), value: 'enrolled' })
}
return tabs
})
+67 -49
View File
@@ -22,7 +22,7 @@
<div class="grid grid-cols-[2fr_1fr] gap-5 items-start">
<div v-if="course.data?.enrollments" class="border rounded-lg py-3 px-4">
<div class="flex items-center justify-between mb-3">
<div class="text-lg font-semibold">
<div class="text-lg text-ink-gray-9 font-semibold">
{{ __('Students') }}
</div>
<div class="flex items-center space-x-2">
@@ -63,50 +63,52 @@
</ListHeaderItem>
</ListHeader>
<ListRows v-for="row in progressList.data" class="max-h-[500px]">
<router-link
:to="{
name: 'Profile',
params: { username: row.member_username },
}"
<ListRow
:row="row"
@click="
() => {
showProgressModal = true
currentStudent = row
}
"
class="cursor-pointer"
>
<ListRow :row="row">
<template #default="{ column, item }">
<ListRowItem
:item="row[column.key]"
:align="column.align"
class="w-full"
>
<template #prefix>
<div v-if="column.key == 'member_name'">
<Avatar
class="flex items-center"
:image="row['member_image']"
:label="item"
size="sm"
/>
</div>
<ProgressBar
v-else-if="column.key == 'progress'"
:progress="Math.ceil(row[column.key])"
class="!mx-0 !mr-4"
<template #default="{ column, item }">
<ListRowItem
:item="row[column.key]"
:align="column.align"
class="w-full"
>
<template #prefix>
<div v-if="column.key == 'member_name'">
<Avatar
class="flex items-center"
:image="row['member_image']"
:label="item"
size="sm"
/>
</template>
<div v-if="column.key == 'creation'">
{{ dayjs(row[column.key]).format('DD MMM YYYY') }}
</div>
<div
<ProgressBar
v-else-if="column.key == 'progress'"
class="text-xs !mx-0 w-5"
>
{{ Math.ceil(row[column.key]) }}%
</div>
<div v-else>
{{ row[column.key].toString() }}
</div>
</ListRowItem>
</template>
</ListRow>
</router-link>
:progress="Math.ceil(row[column.key])"
class="!mx-0 !mr-4"
/>
</template>
<div v-if="column.key == 'creation'">
{{ dayjs(row[column.key]).format('DD MMM YYYY') }}
</div>
<div
v-else-if="column.key == 'progress'"
class="text-xs !mx-0 w-5"
>
{{ Math.ceil(row[column.key]) }}%
</div>
<div v-else>
{{ row[column.key].toString() }}
</div>
</ListRowItem>
</template>
</ListRow>
</ListRows>
</ListView>
<div
@@ -130,7 +132,7 @@
<div class="grid grid-cols-[2fr_1fr] items-center justify-between">
<div class="flex flex-col space-y-4 flex-1 text-sm">
<div
class="flex items-center"
class="flex items-center text-ink-gray-7"
v-for="row in chartDetails.data?.progress_distribution"
>
<div
@@ -142,6 +144,8 @@
? 'red'
: row.name.startsWith('In')
? 'amber'
: row.name.startsWith('Adv')
? 'blue'
: 'green'
][400],
}"
@@ -151,11 +155,13 @@
{{ row.name.split('(')[0] }}
</div>
</Tooltip>
<div class="ml-auto">
{{
Math.round((row.value / course.data?.enrollments) * 100)
}}%
</div>
<Tooltip :text="row.value">
<div class="ml-auto">
{{
Math.round((row.value / course.data?.enrollments) * 100)
}}%
</div>
</Tooltip>
</div>
</div>
<ECharts
@@ -205,7 +211,7 @@
class="!w-32"
/>
</div>
<div class="divide-y max-h-[43vh] overflow-y-auto">
<div class="divide-y max-h-[43vh] text-ink-gray-7 overflow-y-auto">
<div
v-for="progress in lessonProgress.data"
class="flex justify-between text-sm py-2 my-1"
@@ -239,6 +245,13 @@
v-model="showEnrollmentModal"
:course="course"
/>
<StudentCourseProgress
v-if="showProgressModal"
v-model="showProgressModal"
:course="course"
:student="currentStudent"
:lessons="lessonProgress"
/>
</template>
<script setup lang="ts">
import {
@@ -260,12 +273,13 @@ import {
Tooltip,
} from 'frappe-ui'
import { computed, ref, watch } from 'vue'
import { ChevronDown, Plus, Star } from 'lucide-vue-next'
import { Plus, Star } from 'lucide-vue-next'
import { formatAmount } from '@/utils'
import colors from '@/utils/frappe-ui-colors.json'
import CourseEnrollmentModal from '@/pages/Courses/CourseEnrollmentModal.vue'
import NumberChartGraph from '@/components/NumberChartGraph.vue'
import ProgressBar from '@/components/ProgressBar.vue'
import StudentCourseProgress from '@/pages/Courses/StudentCourseProgress.vue'
const props = defineProps<{
course: any
@@ -273,6 +287,8 @@ const props = defineProps<{
const showEnrollmentModal = ref(false)
const searchFilter = ref<string | null>(null)
const showProgressModal = ref(false)
const currentStudent = ref<any>(null)
const theme = ref<'darkMode' | 'lightMode'>(
localStorage.getItem('theme') == 'dark' ? 'darkMode' : 'lightMode'
)
@@ -307,6 +323,7 @@ const progressList = createListResource({
],
pageLength: 100,
auto: true,
cache: ['courseProgress', props.course.data?.name],
})
const lessonProgress = createResource({
@@ -357,6 +374,7 @@ const progressColors = computed(() => {
let colorList = []
colorList.push(colors[theme.value]['red'][400])
colorList.push(colors[theme.value]['amber'][400])
colorList.push(colors[theme.value]['blue'][400])
colorList.push(colors[theme.value]['green'][400])
return colorList
})
+3 -3
View File
@@ -140,12 +140,12 @@ const isAdmin = computed(() => {
})
const breadcrumbs = computed(() => {
let items = [{ label: 'Courses', route: { name: 'Courses' } }]
items.push({
let crumbs = [{ label: __('Courses'), route: { name: 'Courses' } }]
crumbs.push({
label: course?.data?.title,
route: { name: 'CourseDetail', params: { courseName: course?.data?.name } },
})
return items
return crumbs
})
usePageMeta(() => {
@@ -19,8 +19,7 @@
placeholder=" "
v-model="student"
:required="true"
:allowCreate="true"
@create="
:onCreate="
() => {
openSettings('Members')
show = false
@@ -33,8 +32,7 @@
:label="__('Payment')"
placeholder=" "
v-model="payment"
:allowCreate="true"
@create="
:onCreate="
() => {
openSettings('Transactions')
show = false
@@ -54,9 +52,9 @@
</template>
<script setup lang="ts">
import { Button, call, Dialog, FormControl, toast } from 'frappe-ui'
import { Link } from 'frappe-ui/frappe'
import { ref } from 'vue'
import { openSettings } from '@/utils'
import Link from '@/components/Controls/Link.vue'
const show = defineModel<boolean>({ required: true, default: false })
const student = ref<string | null>(null)
+14 -11
View File
@@ -147,7 +147,7 @@ const currentCategory = ref(null)
const title = ref('')
const certification = ref(false)
const filters = ref({})
const currentTab = ref('Live')
const currentTab = ref('live')
const { brand } = sessionStore()
const courseCount = ref(0)
const router = useRouter()
@@ -267,35 +267,35 @@ const updateTabFilter = () => {
delete filters.value['published_on']
delete filters.value['upcoming']
if (currentTab.value == 'Enrolled' && user.data?.is_student) {
if (currentTab.value == 'enrolled' && user.data?.is_student) {
filters.value['enrolled'] = 1
delete filters.value['published']
} else {
delete filters.value['published']
delete filters.value['enrolled']
if (currentTab.value == 'Live') {
if (currentTab.value == 'live') {
filters.value['published'] = 1
filters.value['upcoming'] = 0
filters.value['live'] = 1
} else if (currentTab.value == 'Upcoming') {
} else if (currentTab.value == 'upcoming') {
filters.value['upcoming'] = 1
} else if (currentTab.value == 'New') {
} else if (currentTab.value == 'new') {
filters.value['published'] = 1
filters.value['published_on'] = [
'>=',
dayjs().add(-3, 'month').format('YYYY-MM-DD'),
]
} else if (currentTab.value == 'Created') {
} else if (currentTab.value == 'created') {
filters.value['created'] = 1
} else if (currentTab.value == 'Unpublished') {
} else if (currentTab.value == 'unpublished') {
filters.value['published'] = 0
}
}
}
const updateStudentFilter = () => {
if (!user.data || (user.data?.is_student && currentTab.value != 'Enrolled')) {
if (!user.data || (user.data?.is_student && currentTab.value != 'enrolled')) {
filters.value['published'] = 1
}
}
@@ -345,12 +345,15 @@ const courseTabs = computed(() => {
let tabs = [
{
label: __('Live'),
value: 'live',
},
{
label: __('New'),
value: 'new',
},
{
label: __('Upcoming'),
value: 'upcoming',
},
]
if (
@@ -358,10 +361,10 @@ const courseTabs = computed(() => {
user.data?.is_instructor ||
user.data?.is_evaluator
) {
tabs.push({ label: __('Created') })
tabs.push({ label: __('Unpublished') })
tabs.push({ label: __('Created'), value: 'created' })
tabs.push({ label: __('Unpublished'), value: 'unpublished' })
} else if (user.data) {
tabs.push({ label: __('Enrolled') })
tabs.push({ label: __('Enrolled'), value: 'enrolled' })
}
return tabs
})
@@ -0,0 +1,220 @@
<template>
<Dialog
v-model="show"
:options="{
title: __('Student Progress'),
size: hasAssessmentData ? '3xl' : 'xl',
}"
>
<template #body-content>
<div class="text-base text-ink-gray-9 max-h-[70vh] overflow-y-auto">
<div class="flex justify-between mb-5 px-2">
<div class="flex items-center space-x-2">
<Avatar
:image="student?.member_image"
:label="student?.member_name"
size="xl"
/>
<div>
<div class="font-semibold">
{{ student?.member_name }}
</div>
<div class="text-ink-gray-5">
{{ student.member }}
</div>
</div>
</div>
<div class="w-25 space-y-2">
<div class="text-ink-gray-5 text-sm">
{{ Math.round(student.progress) }}% {{ __('completed') }}
</div>
<ProgressBar
:label="__('Course Progress')"
:progress="student.progress"
/>
</div>
</div>
<div class="grid gap-5" :class="hasAssessmentData ? 'grid-cols-2' : ''">
<div
v-if="lessons.data"
class="border border-outline-gray-modals rounded-lg px-3 pt-3 max-h-[60vh] overflow-y-auto"
>
<div>
<div class="text-ink-gray-5 mb-5">
{{ __('Lesson Progress') }}
</div>
</div>
<div
v-for="progress in lessons.data"
class="flex justify-between text-sm py-2 my-1"
>
<div class="">
<span class="mr-3 text-xs">
{{ progress.chapter_idx }}.{{ progress.idx }}
</span>
<span>
{{ progress.title }}
</span>
</div>
<Tooltip
v-if="getLessonStatus(progress) == 'Complete'"
:text="__('Complete')"
>
<Check class="text-ink-green-3 size-4" />
</Tooltip>
<Tooltip v-else :text="__('Pending')">
<Minus class="text-ink-amber-2 size-4" />
</Tooltip>
<!-- <Badge :theme="getLessonStatusTheme(progress)">
{{ getLessonStatus(progress) }}
</Badge> -->
</div>
</div>
<div class="space-y-3">
<div
v-if="assessmentProgress.data?.quizzes?.length"
class="border border-outline-gray-modals rounded-lg px-3 pt-3 h-fit"
>
<div>
<div class="text-ink-gray-5 mb-5">
{{ __('Quiz Progress') }}
</div>
</div>
<div
v-for="quiz in assessmentProgress.data.quizzes"
class="flex justify-between text-sm py-2 my-1"
>
<div>
{{ quiz.quiz_title }}
</div>
<div>
{{ quiz.score }}
</div>
<div>{{ quiz.percentage }}%</div>
</div>
</div>
<div
v-if="assessmentProgress.data?.assignments?.length"
class="border border-outline-gray-modals rounded-lg px-3 pt-3 h-fit"
>
<div>
<div class="text-ink-gray-5 mb-5">
{{ __('Assignment Progress') }}
</div>
</div>
<div
v-for="assignment in assessmentProgress.data.assignments"
class="flex justify-between text-sm py-2 my-1"
>
<div>
{{ assignment.assignment_title }}
</div>
<Badge :theme="getAssessmentStatusTheme(assignment.status)">
{{ assignment.status }}
</Badge>
</div>
</div>
<div
v-if="assessmentProgress.data?.exercises?.length"
class="border border-outline-gray-modals rounded-lg px-3 pt-3 h-fit"
>
<div>
<div class="text-ink-gray-5 mb-5">
{{ __('Programming Exercise Progress') }}
</div>
</div>
<div
v-for="exercise in assessmentProgress.data.exercises"
class="flex justify-between text-sm py-2 my-1"
>
<div>
{{ exercise.exercise_title }}
</div>
<Badge :theme="getAssessmentStatusTheme(exercise.status)">
{{ exercise.status }}
</Badge>
</div>
</div>
</div>
</div>
</div>
</template>
</Dialog>
</template>
<script setup lang="ts">
import {
Avatar,
Badge,
createListResource,
createResource,
Dialog,
Tooltip,
} from 'frappe-ui'
import ProgressBar from '@/components/ProgressBar.vue'
import { computed } from 'vue'
import { Check, Minus } from 'lucide-vue-next'
const show = defineModel<boolean>({ required: true, default: false })
const props = defineProps<{
course: any
student: any
lessons: any
}>()
const lessonProgress = createListResource({
doctype: 'LMS Course Progress',
filters: {
course: ['=', props.course.data?.name],
member: ['=', props.student?.member],
},
fields: ['name', 'lesson', 'status'],
auto: true,
})
const assessmentProgress = createResource({
url: 'lms.lms.api.get_course_assessment_progress',
params: {
course: props.course.data?.name,
member: props.student?.member,
},
auto: true,
})
const getLessonStatus = (lesson: any) => {
return (
lessonProgress.data?.find((lp: any) => lp.lesson === lesson.lesson)
?.status || __('Pending')
)
}
const getLessonStatusTheme = (lesson: any) => {
const status = getLessonStatus(lesson)
if (status === 'Complete') {
return 'green'
} else {
return 'orange'
}
}
const getAssessmentStatusTheme = (status: string) => {
if (status.includes('Pass')) return 'green'
else if (status.includes('Fail')) return 'red'
else return 'orange'
}
const hasAssessmentData = computed(() => {
return (
(assessmentProgress.data?.quizzes &&
assessmentProgress.data.quizzes.length > 0) ||
(assessmentProgress.data?.assignments &&
assessmentProgress.data.assignments.length > 0) ||
(assessmentProgress.data?.exercises &&
assessmentProgress.data.exercises.length > 0)
)
})
</script>
+1 -1
View File
@@ -72,7 +72,7 @@
</div>
</div>
<div v-if="myCourses.data?.length" class="mt-10">
<div v-if="myCourses.data?.length">
<div class="flex items-center justify-between mb-3">
<span class="font-semibold text-lg text-ink-gray-9">
{{
+3 -3
View File
@@ -298,11 +298,11 @@ const jobStatuses = computed(() => {
const breadcrumbs = computed(() => {
let crumbs = [
{
label: 'Jobs',
label: __('Jobs'),
route: { name: 'Jobs' },
},
{
label: props.jobName == 'new' ? 'New Job' : 'Edit Job',
label: props.jobName == 'new' ? __('New Job') : __('Edit Job'),
route: { name: 'JobForm' },
},
]
@@ -311,7 +311,7 @@ const breadcrumbs = computed(() => {
usePageMeta(() => {
return {
title: props.jobName == 'new' ? 'New Job' : jobDetail.data?.job_title,
title: props.jobName == 'new' ? __('New Job') : jobDetail.data?.job_title,
icon: brand.favicon,
}
})
+4 -4
View File
@@ -559,12 +559,12 @@ const notes = createListResource({
})
const breadcrumbs = computed(() => {
let items = [{ label: 'Courses', route: { name: 'Courses' } }]
items.push({
let crumbs = [{ label: __('Courses'), route: { name: 'Courses' } }]
crumbs.push({
label: lesson?.data?.course_title,
route: { name: 'CourseDetail', params: { courseName: props.courseName } },
})
items.push({
crumbs.push({
label: lesson?.data?.title,
route: {
name: 'Lesson',
@@ -575,7 +575,7 @@ const breadcrumbs = computed(() => {
},
},
})
return items
return crumbs
})
const switchLesson = (direction) => {
+5 -3
View File
@@ -466,7 +466,7 @@ const validateLesson = () => {
const breadcrumbs = computed(() => {
let crumbs = [
{
label: 'Courses',
label: __('Courses'),
route: { name: 'Courses' },
},
{
@@ -493,7 +493,9 @@ const breadcrumbs = computed(() => {
})
}
crumbs.push({
label: lessonDetails?.data?.lesson ? 'Edit Lesson' : 'Create Lesson',
label: lessonDetails?.data?.lesson
? __('Edit Lesson')
: __('Create Lesson'),
route: {
name: 'LessonForm',
params: {
@@ -510,7 +512,7 @@ usePageMeta(() => {
return {
title: lessonDetails?.data?.lesson
? lessonDetails.data.lesson.title
: 'New Lesson',
: __('New Lesson'),
icon: brand.favicon,
}
})
+10 -5
View File
@@ -263,12 +263,17 @@ const isEvaluatorOrModerator = () => {
}
const getTabButtons = () => {
let buttons = [{ label: 'About' }, { label: 'Certificates' }]
if ($user.data?.is_moderator) buttons.push({ label: 'Roles' })
let buttons = [
{ label: __('About'), value: 'About' },
{ label: __('Certificates'), value: 'Certificates' },
]
if ($user.data?.is_moderator) {
buttons.push({ label: __('Roles'), value: 'Roles' })
}
if (currentUserHasHigherAccess() && isEvaluatorOrModerator()) {
buttons.push({ label: 'Slots' })
buttons.push({ label: 'Schedule' })
buttons.push({ label: __('Slots'), value: 'Slots' })
buttons.push({ label: __('Schedule'), value: 'Schedule' })
}
return buttons
}
@@ -288,7 +293,7 @@ const navigateTo = (url) => {
const breadcrumbs = computed(() => {
let crumbs = [
{
label: 'People',
label: __('People'),
},
{
label: profile.data?.full_name,
+1 -1
View File
@@ -229,7 +229,7 @@ const setupSCORMAPI = () => {
const breadcrumbs = computed(() => {
return [
{
label: 'Courses',
label: __('Courses'),
route: { name: 'Courses' },
},
{
+1 -1
View File
@@ -150,7 +150,7 @@ const { brand } = sessionStore()
const breadcrumbs = computed(() => {
return [
{
label: 'Statistics',
label: __('Statistics'),
route: {
name: 'Statistics',
},
+2 -1
View File
@@ -513,7 +513,8 @@ const getSidebarItems = () => {
: settings.data?.contact_us_email,
condition: () => {
return (
settings?.data?.contact_us_email ||
(settings?.data?.contact_us_email &&
userResource?.data) ||
settings?.data?.contact_us_url
)
},
+1 -1
View File
@@ -3,7 +3,7 @@ import frappe
from . import __version__ as app_version
app_name = "frappe_lms"
app_title = "Frappe LMS"
app_title = "Learning"
app_publisher = "Frappe"
app_description = "Frappe LMS App"
app_icon_url = "/assets/lms/images/lms-logo.png"
+139 -9
View File
@@ -1654,8 +1654,12 @@ def get_progress_distribution(progressList):
"value": len([p for p in progressList if 30 <= p < 60]),
},
{
"name": "Advanced (60-100%)",
"value": len([p for p in progressList if 60 <= p <= 100]),
"name": "Advanced (60-99%)",
"value": len([p for p in progressList if 60 <= p < 100]),
},
{
"name": "Completed (100%)",
"value": len([p for p in progressList if p == 100]),
},
]
@@ -2037,7 +2041,7 @@ def delete_programming_exercise(exercise):
@frappe.whitelist()
def get_lesson_completion_stats(course):
def get_lesson_completion_stats(course: str):
roles = frappe.get_roles()
if "Course Creator" not in roles and "Moderator" not in roles:
frappe.throw(_("You do not have permission to access lesson completion stats."))
@@ -2048,13 +2052,17 @@ def get_lesson_completion_stats(course):
Lesson = frappe.qb.DocType("Course Lesson")
rows = (
frappe.qb.from_(CourseProgress)
.join(LessonReference)
.on(CourseProgress.lesson == LessonReference.lesson)
frappe.qb.from_(LessonReference)
.join(ChapterReference)
.on(LessonReference.parent == ChapterReference.chapter)
.join(Lesson)
.on(CourseProgress.lesson == Lesson.name)
.on(LessonReference.lesson == Lesson.name)
.left_join(CourseProgress)
.on(
(CourseProgress.lesson == LessonReference.lesson)
& (CourseProgress.course == course)
& (CourseProgress.status == "Complete")
)
.select(
LessonReference.idx,
ChapterReference.idx.as_("chapter_idx"),
@@ -2063,10 +2071,132 @@ def get_lesson_completion_stats(course):
Lesson.name.as_("lesson_name"),
fn.Count(CourseProgress.name).as_("completion_count"),
)
.where((CourseProgress.course == course) & (CourseProgress.status == "Complete"))
.groupby(CourseProgress.lesson)
.where(ChapterReference.parent == course)
.groupby(LessonReference.lesson)
.orderby(ChapterReference.idx, LessonReference.idx)
.run(as_dict=True)
)
return rows
@frappe.whitelist()
def get_course_assessment_progress(course: str, member: str):
if not can_modify_course(course):
frappe.throw(
_("You do not have permission to access this course's assessment data."), frappe.PermissionError
)
quizzes = get_course_quiz_progress(course, member)
assignments = get_course_assignment_progress(course, member)
programming_exercises = get_course_programming_exercise_progress(course, member)
return {
"quizzes": quizzes,
"assignments": assignments,
"exercises": programming_exercises,
}
def get_course_quiz_progress(course: str, member: str):
quizzes = get_assessment_from_lesson(course, "quiz")
attempts = []
for quiz in quizzes:
submissions = frappe.get_all(
"LMS Quiz Submission",
{
"quiz": quiz,
"member": member,
},
["name", "score", "percentage", "quiz", "quiz_title"],
order_by="creation desc",
limit=1,
)
if len(submissions):
attempts.append(submissions[0])
else:
attempts.append(
{
"quiz": quiz,
"quiz_title": frappe.db.get_value("LMS Quiz", quiz, "title"),
"score": 0,
"percentage": 0,
}
)
return attempts
def get_course_assignment_progress(course: str, member: str):
assignments = get_assessment_from_lesson(course, "assignment")
submissions = []
for assignment in assignments:
assignment_subs = frappe.get_all(
"LMS Assignment Submission",
{
"assignment": assignment,
"member": member,
},
["name", "status", "assignment", "assignment_title"],
order_by="creation desc",
limit=1,
)
if len(assignment_subs):
submissions.append(assignment_subs[0])
else:
submissions.append(
{
"assignment": assignment,
"assignment_title": frappe.db.get_value("LMS Assignment", assignment, "title"),
"status": "Not Submitted",
}
)
return submissions
def get_course_programming_exercise_progress(course: str, member: str):
exercises = get_assessment_from_lesson(course, "program")
submissions = []
for exercise in exercises:
exercise_subs = frappe.get_all(
"LMS Programming Exercise Submission",
{
"exercise": exercise,
"member": member,
},
["name", "status", "exercise", "exercise_title"],
order_by="creation desc",
limit=1,
)
if len(exercise_subs):
submissions.append(exercise_subs[0])
else:
submissions.append(
{
"exercise": exercise,
"exercise_title": frappe.db.get_value("LMS Programming Exercise", exercise, "title"),
"status": "Not Attempted",
}
)
return submissions
def get_assessment_from_lesson(course: str, assessmentType: str):
assessments = []
lessons = frappe.get_all("Course Lesson", {"course": course}, ["name", "title", "content"])
for lesson in lessons:
if lesson.content:
content = json.loads(lesson.content)
for block in content.get("blocks", []):
if block.get("type") == assessmentType:
data_field = "exercise" if assessmentType == "program" else assessmentType
quiz_name = block.get("data", {}).get(data_field)
assessments.append(quiz_name)
return assessments
@@ -1,9 +1,39 @@
# Copyright (c) 2021, FOSS United and Contributors
# See license.txt
# import frappe
import unittest
import frappe
from lms.lms.api import delete_chapter
from lms.lms.test_helpers import BaseTestUtils
class TestCourseChapter(unittest.TestCase):
pass
class TestCourseChapter(BaseTestUtils):
def setUp(self):
super().setUp()
self.instructor = self._create_user(
"frappe@example.com", "Frappe", "Admin", ["Moderator", "Course Creator"]
)
def tearDown(self):
return super().tearDown()
def test_chapter_deletion_and_renumbering(self):
course = self._create_course(f"Test Renumbering Course {frappe.generate_hash()[:8]}")
chapters = []
for i in range(1, 4):
chapter = self._create_chapter(f"Chapter {i}", course.name)
chapters.append(chapter)
self._create_chapter_reference(course.name, chapter.name, i)
self.assertEqual(self._get_chapter_index(course.name, chapter.name), i)
delete_chapter(chapters[1].name)
idx_ch1 = self._get_chapter_index(course.name, chapters[0].name)
idx_ch3 = self._get_chapter_index(course.name, chapters[2].name)
self.assertEqual(idx_ch1, 1, "Chapter 1 index should remain 1")
self.assertEqual(idx_ch3, 2, "Chapter 3 index should be renumbered to 2 after deleting Chapter 2")
def _get_chapter_index(self, course, chapter):
return frappe.db.get_value("Chapter Reference", {"parent": course, "chapter": chapter}, "idx")
@@ -1,5 +1,6 @@
{
"actions": [],
"allow_import": 1,
"allow_rename": 1,
"autoname": "format: ASG-{#####}",
"creation": "2023-05-26 19:41:26.025081",
@@ -79,8 +80,13 @@
],
"grid_page_length": 50,
"index_web_pages_for_search": 1,
"links": [],
"modified": "2025-12-19 16:30:58.531722",
"links": [
{
"link_doctype": "LMS Assignment Submission",
"link_fieldname": "assignment"
}
],
"modified": "2026-02-05 11:37:36.492016",
"modified_by": "sayali@frappe.io",
"module": "LMS",
"name": "LMS Assignment",
@@ -104,6 +110,7 @@
"delete": 1,
"email": 1,
"export": 1,
"import": 1,
"print": 1,
"read": 1,
"report": 1,
@@ -124,6 +131,7 @@
"create": 1,
"email": 1,
"export": 1,
"import": 1,
"print": 1,
"read": 1,
"report": 1,
@@ -135,6 +143,7 @@
"create": 1,
"email": 1,
"export": 1,
"import": 1,
"print": 1,
"read": 1,
"report": 1,
@@ -42,7 +42,8 @@
"fieldname": "assignment",
"fieldtype": "Link",
"label": "Assignment",
"options": "LMS Assignment"
"options": "LMS Assignment",
"reqd": 1
},
{
"fieldname": "member",
@@ -150,7 +151,7 @@
"index_web_pages_for_search": 1,
"links": [],
"make_attachments_public": 1,
"modified": "2025-12-17 14:47:22.944223",
"modified": "2026-02-05 11:38:03.792865",
"modified_by": "sayali@frappe.io",
"module": "LMS",
"name": "LMS Assignment Submission",
+17 -3
View File
@@ -1,5 +1,6 @@
{
"actions": [],
"allow_import": 1,
"allow_rename": 1,
"autoname": "field:title",
"creation": "2024-04-30 11:29:53.548647",
@@ -99,8 +100,8 @@
"link_fieldname": "badge"
}
],
"modified": "2025-07-04 13:02:19.048994",
"modified_by": "Administrator",
"modified": "2026-02-03 10:52:37.122370",
"modified_by": "sayali@frappe.io",
"module": "LMS",
"name": "LMS Badge",
"naming_rule": "By fieldname",
@@ -118,13 +119,26 @@
"share": 1,
"write": 1
},
{
"create": 1,
"delete": 1,
"email": 1,
"export": 1,
"import": 1,
"print": 1,
"read": 1,
"report": 1,
"role": "Moderator",
"share": 1,
"write": 1
},
{
"email": 1,
"export": 1,
"print": 1,
"read": 1,
"report": 1,
"role": "All",
"role": "LMS Student",
"share": 1
}
],
@@ -1,5 +1,6 @@
{
"actions": [],
"allow_import": 1,
"allow_rename": 1,
"creation": "2025-02-10 11:17:12.462368",
"doctype": "DocType",
@@ -73,7 +74,7 @@
],
"index_web_pages_for_search": 1,
"links": [],
"modified": "2026-01-14 08:53:16.672825",
"modified": "2026-02-03 10:51:28.475356",
"modified_by": "sayali@frappe.io",
"module": "LMS",
"name": "LMS Batch Enrollment",
@@ -96,6 +97,7 @@
"delete": 1,
"email": 1,
"export": 1,
"import": 1,
"print": 1,
"read": 1,
"report": 1,
@@ -114,6 +116,7 @@
"delete": 1,
"email": 1,
"export": 1,
"import": 1,
"print": 1,
"read": 1,
"report": 1,
+5 -1
View File
@@ -1,5 +1,6 @@
{
"actions": [],
"allow_import": 1,
"allow_rename": 1,
"autoname": "hash",
"creation": "2025-10-11 21:39:11.456420",
@@ -113,7 +114,7 @@
"grid_page_length": 50,
"index_web_pages_for_search": 1,
"links": [],
"modified": "2025-10-27 19:52:11.835042",
"modified": "2026-02-03 10:50:23.387175",
"modified_by": "sayali@frappe.io",
"module": "LMS",
"name": "LMS Coupon",
@@ -149,6 +150,7 @@
"delete": 1,
"email": 1,
"export": 1,
"import": 1,
"print": 1,
"read": 1,
"report": 1,
@@ -161,6 +163,7 @@
"delete": 1,
"email": 1,
"export": 1,
"import": 1,
"print": 1,
"read": 1,
"report": 1,
@@ -173,6 +176,7 @@
"delete": 1,
"email": 1,
"export": 1,
"import": 1,
"print": 1,
"read": 1,
"report": 1,
@@ -1,5 +1,6 @@
{
"actions": [],
"allow_import": 1,
"allow_rename": 1,
"creation": "2023-03-02 10:59:01.741349",
"default_view": "List",
@@ -177,7 +178,7 @@
"link_fieldname": "live_class"
}
],
"modified": "2026-01-14 08:54:07.684781",
"modified": "2026-02-03 10:54:39.198916",
"modified_by": "sayali@frappe.io",
"module": "LMS",
"name": "LMS Live Class",
@@ -200,6 +201,7 @@
"delete": 1,
"email": 1,
"export": 1,
"import": 1,
"print": 1,
"read": 1,
"report": 1,
@@ -221,6 +223,7 @@
"delete": 1,
"email": 1,
"export": 1,
"import": 1,
"print": 1,
"read": 1,
"report": 1,
+15 -1
View File
@@ -1,5 +1,6 @@
{
"actions": [],
"allow_import": 1,
"allow_rename": 1,
"creation": "2023-08-24 17:46:52.065763",
"default_view": "List",
@@ -201,7 +202,7 @@
"link_fieldname": "payment"
}
],
"modified": "2025-12-19 17:55:25.968384",
"modified": "2026-02-03 10:54:12.361407",
"modified_by": "sayali@frappe.io",
"module": "LMS",
"name": "LMS Payment",
@@ -218,6 +219,19 @@
"role": "System Manager",
"share": 1,
"write": 1
},
{
"create": 1,
"delete": 1,
"email": 1,
"export": 1,
"import": 1,
"print": 1,
"read": 1,
"report": 1,
"role": "Moderator",
"share": 1,
"write": 1
}
],
"row_format": "Dynamic",
+4 -1
View File
@@ -1,5 +1,6 @@
{
"actions": [],
"allow_import": 1,
"allow_rename": 1,
"autoname": "field:title",
"creation": "2024-11-18 12:27:13.283169",
@@ -92,7 +93,7 @@
"grid_page_length": 50,
"index_web_pages_for_search": 1,
"links": [],
"modified": "2025-12-04 12:56:14.249363",
"modified": "2026-02-03 10:51:50.616781",
"modified_by": "sayali@frappe.io",
"module": "LMS",
"name": "LMS Program",
@@ -116,6 +117,7 @@
"delete": 1,
"email": 1,
"export": 1,
"import": 1,
"print": 1,
"read": 1,
"report": 1,
@@ -128,6 +130,7 @@
"delete": 1,
"email": 1,
"export": 1,
"import": 1,
"print": 1,
"read": 1,
"report": 1,
@@ -1,5 +1,6 @@
{
"actions": [],
"allow_import": 1,
"allow_rename": 1,
"creation": "2025-06-18 15:02:36.198855",
"doctype": "DocType",
@@ -33,7 +34,7 @@
"fieldname": "language",
"fieldtype": "Select",
"label": "Language",
"options": "Python\nJavaScript",
"options": "Python\nJavaScript\nRust\nGo",
"reqd": 1
},
{
@@ -63,7 +64,7 @@
"link_fieldname": "exercise"
}
],
"modified": "2025-06-24 14:42:27.463492",
"modified": "2026-02-03 10:45:23.687185",
"modified_by": "sayali@frappe.io",
"module": "LMS",
"name": "LMS Programming Exercise",
@@ -74,6 +75,7 @@
"delete": 1,
"email": 1,
"export": 1,
"import": 1,
"print": 1,
"read": 1,
"report": 1,
@@ -86,6 +88,7 @@
"delete": 1,
"email": 1,
"export": 1,
"import": 1,
"print": 1,
"read": 1,
"report": 1,
@@ -98,6 +101,7 @@
"delete": 1,
"email": 1,
"export": 1,
"import": 1,
"print": 1,
"read": 1,
"report": 1,
@@ -110,6 +114,7 @@
"delete": 1,
"email": 1,
"export": 1,
"import": 1,
"print": 1,
"read": 1,
"report": 1,
+3 -1
View File
@@ -1,5 +1,6 @@
{
"actions": [],
"allow_import": 1,
"allow_rename": 1,
"autoname": "field:source",
"creation": "2023-10-26 16:28:53.932278",
@@ -21,7 +22,7 @@
"grid_page_length": 50,
"index_web_pages_for_search": 1,
"links": [],
"modified": "2025-11-10 11:39:57.251861",
"modified": "2026-02-03 10:53:42.654881",
"modified_by": "sayali@frappe.io",
"module": "LMS",
"name": "LMS Source",
@@ -45,6 +46,7 @@
"delete": 1,
"email": 1,
"export": 1,
"import": 1,
"print": 1,
"read": 1,
"report": 1,
@@ -1,5 +1,6 @@
{
"actions": [],
"allow_import": 1,
"allow_rename": 1,
"autoname": "field:account_name",
"creation": "2025-05-26 13:04:18.285735",
@@ -83,7 +84,7 @@
"grid_page_length": 50,
"index_web_pages_for_search": 1,
"links": [],
"modified": "2025-11-10 11:39:13.146961",
"modified": "2026-02-03 10:50:59.906919",
"modified_by": "sayali@frappe.io",
"module": "LMS",
"name": "LMS Zoom Settings",
@@ -107,6 +108,7 @@
"delete": 1,
"email": 1,
"export": 1,
"import": 1,
"print": 1,
"read": 1,
"report": 1,
@@ -120,6 +122,7 @@
"email": 1,
"export": 1,
"if_owner": 1,
"import": 1,
"print": 1,
"read": 1,
"report": 1,
@@ -2,32 +2,36 @@
"absolute_value": 0,
"align_labels_right": 0,
"creation": "2023-08-09 17:02:21.430320",
"css": ".outer-border {\n font-family: \"Inter\" sans-serif;\n font-size: 16px;\n border-radius: 0.5rem;\n border: 1px solid #E2E6E9;\n padding: 1rem;\n}\n\n.inner-border {\n border: 8px solid #0089FF;\n border-radius: 8px;\n text-align: center;\n padding: 6rem 4rem;\n background-color: #FFFFFF;\n}\n\n.certificate-logo {\n height: 1.5rem;\n margin-bottom: 4rem;\n}\n\n.certificate-name {\n font-size: 2rem;\n font-weight: 500;\n color: #192734;\n margin-bottom: 0.5rem;\n}\n\n.certificate-footer {\n margin: 4rem auto 0;\n width: 70%;\n text-align: center;\n}\n\n.certificate-footer-item {\n color: #192734;\n}\n\n.cursive-font {\n font-family: cursive;\n font-weight: 600;\n}\n\n.certificate-divider {\n margin: 0.5rem 0;\n}\n\n.certificate-expiry {\n margin-left: 2rem;\n}",
"css": ".certificate-container {\n font-family: \"Inter\" sans-serif;\n font-size: 20px;\n}\n\n.inner-border {\n border: 8px solid #0089FF;\n border-radius: 8px;\n text-align: center;\n padding: 6rem 4rem;\n background-color: #FFFFFF;\n}\n\n.certificate-logo {\n height: 3rem;\n margin-right: 0.5rem;\n}\n\n.certificate-name {\n font-size: 2rem;\n font-weight: 500;\n color: #192734;\n margin-bottom: 0.5rem;\n}\n\n.certificate-footer {\n margin: 4rem auto 0;\n width: 70%;\n text-align: center;\n}\n\n.certificate-footer-item {\n color: #192734;\n}\n\n.cursive-font {\n font-family: cursive;\n font-weight: 600;\n}\n\n.certificate-divider {\n margin: 0.5rem 0;\n}\n\n.certificate-expiry {\n margin-left: 2rem;\n}",
"custom_format": 1,
"default_print_language": "en",
"disabled": 0,
"doc_type": "LMS Certificate",
"docstatus": 0,
"doctype": "Print Format",
"font_size": 14,
"format_data": "{\"header\":\"<div class=\\\"document-header\\\">\\n\\t<h3>LMS Certificate</h3>\\n\\t<p>{{ doc.name }}</p>\\n</div>\",\"sections\":[{\"label\":\"\",\"columns\":[{\"label\":\"\",\"fields\":[{\"label\":\"Course\",\"fieldname\":\"course\",\"fieldtype\":\"Link\",\"options\":\"LMS Course\"},{\"label\":\"Member\",\"fieldname\":\"member\",\"fieldtype\":\"Link\",\"options\":\"User\"},{\"label\":\"Member Name\",\"fieldname\":\"member_name\",\"fieldtype\":\"Data\"},{\"label\":\"Evaluator\",\"fieldname\":\"evaluator\",\"fieldtype\":\"Data\",\"options\":\"\"}]},{\"label\":\"\",\"fields\":[{\"label\":\"Issue Date\",\"fieldname\":\"issue_date\",\"fieldtype\":\"Date\"},{\"label\":\"Expiry Date\",\"fieldname\":\"expiry_date\",\"fieldtype\":\"Date\"},{\"label\":\"Version\",\"fieldname\":\"version\",\"fieldtype\":\"Select\",\"options\":\"V13\\nV14\"},{\"label\":\"Module Names for Certificate\",\"fieldname\":\"module_names_for_certificate\",\"fieldtype\":\"Data\"}]}],\"has_fields\":true}]}",
"html": "{% set certificate = frappe.db.get_value(\"LMS Certificate\", doc.name, [\"name\", \"member\", \"issue_date\", \"expiry_date\", \"course\"], as_dict=True) %}\n{% set member = frappe.db.get_value(\"User\", doc.member, [\"full_name\"], as_dict=True) %}\n{% set course = frappe.db.get_value(\"LMS Course\", doc.course, [\"title\", \"name\", \"image\"], as_dict=True) %}\n{% set logo = frappe.db.get_single_value(\"Website Settings\", \"banner_image\") %}\n{% set instructors = frappe.get_all(\"Course Instructor\", {\"parent\": doc.course}, pluck=\"instructor\", order_by=\"idx\") %}\n\n<meta name=\"pdfkit-orientation\" content=\"Landscape\">\n<link rel=\"preconnect\" href=\"https://fonts.googleapis.com\">\n<link rel=\"preconnect\" href=\"https://fonts.gstatic.com\" crossorigin>\n<link href=\"https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&display=swap\" rel=\"stylesheet\">\n\n<div>\n <div class=\"inner-border\">\n \n {% if logo %}\n <img src=\"{{ logo }}\" class=\"certificate-logo\">\n {% endif %}\n <div>\n {{ _(\"This certifies that\") }}\n </div>\n \n <div class=\"certificate-name\" style=\"\">\n {{ member.full_name }}\n </div>\n <div>\n {{ _(\"has successfully completed the course on\") }}\n <b> {{ course.title }} </b>\n on {{ frappe.utils.format_date(certificate.issue_date, \"medium\") }}.\n </div>\n \n <table class=\"certificate-footer\">\n <tr>\n {% if instructors %}\n <td>\n <div class=\"certificate-footer-item cursive-font\">\n {% for i in instructors %}\n \t\t\t\t\t{{ frappe.db.get_value(\"User\", i, \"full_name\") }}\n \t\t\t\t\t{% if not loop.last %}\n \t\t\t\t\t,\n \t\t\t\t\t{% endif %}\n \t\t\t\t\t{% endfor %}\n </div>\n <hr class=\"certificate-divider\">\n <div class=\"text-center\"> {{ _(\"Course Instructor\") }} </div>\n </td>\n {% endif %}\n \n {% if certificate.expiry_date %}\n <td style=\"width: 30%\"></td>\n \n <td class=\"certificate-expiry\">\n <div class=\"certificate-footer-item\">\n {{ frappe.utils.format_date(certificate.expiry_date, \"medium\") }}\n </div>\n <hr class=\"certificate-divider\">\n <div class=\"text-center\"> {{ _(\"Expiry Date\") }} </div>\n </td>\n {% endif %}\n </tr>\n </table>\n </div>\n </div>",
"format_data": "",
"html": "{% set member = frappe.db.get_value(\"User\", doc.member, [\"full_name\"], as_dict=True) %}\n{% set course = frappe.db.get_value(\"LMS Course\", doc.course, [\"title\", \"name\", \"image\"], as_dict=True) %}\n{% set logo = frappe.db.get_single_value(\"Website Settings\", \"banner_image\") %}\n{% set brand_name = frappe.db.get_single_value(\"Website Settings\", \"app_name\") %}\n{% set instructors = frappe.get_all(\"Course Instructor\", {\"parent\": doc.course}, pluck=\"instructor\", order_by=\"idx\") %}\n\n<meta name=\"pdfkit-orientation\" content=\"Landscape\">\n<link rel=\"preconnect\" href=\"https://fonts.googleapis.com\">\n<link rel=\"preconnect\" href=\"https://fonts.gstatic.com\" crossorigin>\n<link href=\"https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&display=swap\" rel=\"stylesheet\">\n\n<div class=\"certificate-container\">\n <div style=\"margin-bottom: 13rem;\">\n {% if logo %}\n <img src=\"{{ logo }}\" class=\"certificate-logo\"> <span style=\"font-weight: 900; font-size: 1.5rem;\"> {{ brand_name }} </span>\n {% else %}\n <span style=\"font-weight: 900; font-size: 1.5rem;\"> {{ brand_name }} </span>\n {% endif %}\n </div>\n \n <div style=\"margin-bottom: 1rem;\">\n {{ _(\"This is to certify that\") }}\n </div>\n\n <div style=\"margin-bottom: 1rem; font-weight: 900; font-size: 1.5rem;\">\n {{ member.full_name }}\n </div>\n\n <div style=\"margin-bottom: 12rem; width: 70%;\">\n {{ _(\"has successfully completed the\") }}\n <span style=\"font-weight: 900;\"> {{ course.title }} </span> {{ _(\"course\") }}\n {{ _(\"including all required assessments\") }}\n on {{ frappe.utils.format_date(doc.issue_date, \"medium\") }}.\n </div>\n\n <div>\n {% if doc.evaluator %}\n <div>\n <div style=\"margin-bottom: 0.5rem; color: gray; font-weight: 500;\">\n {{ _(\"Evaluated By\")}}\n </div>\n <div style=\"font-weight: 900;\">\n {{ doc.evaluator_name }}\n </div>\n </div>\n {% else %}\n <div style=\"margin-bottom: 0.5rem; color: gray; font-weight: 500;\">\n {{ _(\"Instructor\") if instructors|length == 1 else _(\"Instructors\") }}\n </div>\n <div>\n {% for instructor in instructors %}\n {% set instructor_name = frappe.db.get_value(\"User\", instructor, \"full_name\") %}\n <span style=\"font-weight: 900;\">\n {{ instructor_name }}{% if not loop.last %}, {% endif %}\n </span>\n {% endfor %}\n </div>\n {% endif %}\n </div>\n</div>",
"idx": 0,
"line_breaks": 0,
"margin_bottom": 0.0,
"margin_left": 0.0,
"margin_right": 0.0,
"margin_top": 0.0,
"modified": "2023-11-01 18:22:56.715846",
"modified": "2026-02-06 14:30:51.844240",
"modified_by": "Administrator",
"module": "LMS",
"name": "Certificate",
"owner": "Administrator",
"page_number": "Hide",
"pdf_generator": "wkhtmltopdf",
"print_designer": 0,
"print_designer_template_app": "print_designer",
"print_format_builder": 0,
"print_format_builder_beta": 1,
"print_format_builder_beta": 0,
"print_format_for": "DocType",
"print_format_type": "Jinja",
"raw_printing": 0,
"show_section_headings": 0,
"standard": "Yes"
}
}
+63
View File
@@ -0,0 +1,63 @@
import frappe
from lms.lms.api import get_certified_participants, get_course_assessment_progress
from lms.lms.test_helpers import BaseTestUtils
class TestLMSAPI(BaseTestUtils):
def setUp(self):
super().setUp()
self._setup_course_flow()
def test_certified_participants_with_category(self):
filters = {"category": "Utility Course"}
certified_participants = get_certified_participants(filters=filters)
self.assertEqual(len(certified_participants), 1)
self.assertEqual(certified_participants[0].member, self.student1.email)
filters = {"category": "Nonexistent Category"}
certified_participants_no_match = get_certified_participants(filters=filters)
self.assertEqual(len(certified_participants_no_match), 0)
def test_certified_participants_with_open_to_work(self):
filters = {"open_to_work": 1}
certified_participants_open_to_work = get_certified_participants(filters=filters)
self.assertEqual(len(certified_participants_open_to_work), 0)
frappe.db.set_value("User", self.student1.email, "open_to", "Work")
certified_participants_open_to_work = get_certified_participants(filters=filters)
self.assertEqual(len(certified_participants_open_to_work), 1)
frappe.db.set_value("User", self.student1.email, "open_to", "")
def test_certified_participants_with_open_to_hiring(self):
filters = {"hiring": 1}
certified_participants_hiring = get_certified_participants(filters=filters)
self.assertEqual(len(certified_participants_hiring), 0)
frappe.db.set_value("User", self.student1.email, "open_to", "Hiring")
certified_participants_hiring = get_certified_participants(filters=filters)
self.assertEqual(len(certified_participants_hiring), 1)
frappe.db.set_value("User", self.student1.email, "open_to", "")
def test_course_assessment_progress(self):
progress = get_course_assessment_progress(self.course.name, self.student1.name)
progress = frappe._dict(progress)
self.assertEqual(len(progress.quizzes), 1)
for quiz in progress.quizzes:
self.assertEqual(quiz.quiz, self.quiz.name)
self.assertEqual(quiz.quiz_title, self.quiz.title)
self.assertEqual(quiz.score, 12)
self.assertEqual(quiz.percentage, 80)
self.assertEqual(len(progress.assignments), 1)
for assignment in progress.assignments:
self.assertEqual(assignment.assignment, self.assignment.name)
self.assertEqual(assignment.assignment_title, self.assignment.title)
self.assertEqual(assignment.status, "Pass")
self.assertEqual(len(progress.exercises), 1)
for exercise in progress.exercises:
self.assertEqual(exercise.exercise, self.programming_exercise.name)
self.assertEqual(exercise.exercise_title, self.programming_exercise.title)
self.assertEqual(exercise.status, "Passed")
+293 -4
View File
@@ -19,8 +19,8 @@ class BaseTestUtils(UnitTestCase):
if frappe.db.exists(item_type, item_name):
try:
frappe.delete_doc(item_type, item_name, force=True)
except Exception:
pass
except Exception as e:
print(f"Error deleting {item_type} {item_name}: {e}")
def _create_user(self, email, first_name, last_name, roles, user_type="Website User"):
if frappe.db.exists("User", email):
@@ -82,18 +82,21 @@ class BaseTestUtils(UnitTestCase):
self.cleanup_items.append(("Course Chapter", chapter.name))
return chapter
def _create_lesson(self, title, chapter, course):
def _create_lesson(self, title, chapter, course, content=None):
existing = frappe.db.exists("Course Lesson", {"course": course, "title": title})
if existing:
return frappe.get_doc("Course Lesson", existing)
if not content:
content = '{"time":1765194986690,"blocks":[{"id":"dkLzbW14ds","type":"markdown","data":{"text":"This is a simple content for the current lesson."}},{"id":"KBwuWPc8rV","type":"markdown","data":{"text":""}}],"version":"2.29.0"}'
lesson = frappe.new_doc("Course Lesson")
lesson.update(
{
"course": course,
"chapter": chapter,
"title": title,
"content": '{"time":1765194986690,"blocks":[{"id":"dkLzbW14ds","type":"markdown","data":{"text":"This is a simple content for the current lesson."}},{"id":"KBwuWPc8rV","type":"markdown","data":{"text":""}}],"version":"2.29.0"}',
"content": content,
}
)
lesson.save()
@@ -248,3 +251,289 @@ class BaseTestUtils(UnitTestCase):
certificate.save()
self.cleanup_items.append(("LMS Certificate", certificate.name))
return certificate
def _create_quiz_questions(self):
questions = []
for index in range(1, 4):
question = frappe.new_doc("LMS Question")
question.update(
{
"question": f"Utility Question {index}?",
"type": "Choices",
"option_1": "Option 1",
"is_correct_1": 1,
"option_2": "Option 2",
"is_correct_2": 0,
}
)
question.save()
self.cleanup_items.append(("LMS Quiz Question", question.name))
questions.append(question)
return questions
def _create_quiz(self, title="Utility Quiz"):
existing = frappe.db.exists("LMS Quiz", {"title": title})
if existing:
return frappe.get_doc("LMS Quiz", existing)
quiz = frappe.new_doc("LMS Quiz")
quiz.update(
{
"title": title,
"passing_percentage": 70,
"total_marks": 15,
}
)
for question in self.questions:
quiz.append(
"questions",
{
"question": question.name,
"marks": 5,
},
)
quiz.save()
self.cleanup_items.append(("LMS Quiz", quiz.name))
return quiz
def _create_assignment(self, title="Utility Assignment"):
existing = frappe.db.exists("LMS Assignment", {"title": title})
if existing:
return frappe.get_doc("LMS Assignment", existing)
assignment = frappe.new_doc("LMS Assignment")
assignment.update(
{
"title": title,
"question": "This is a utility assignment to test the assignment creation helper method.",
"type": "Text",
"grade_assignment": 1,
}
)
assignment.save()
self.cleanup_items.append(("LMS Assignment", assignment.name))
return assignment
def _setup_course_flow(self):
self.student1 = self._create_user("student1@example.com", "Ashley", "Smith", ["LMS Student"])
self.student2 = self._create_user("student2@example.com", "John", "Doe", ["LMS Student"])
self.admin = self._create_user(
"frappe@example.com", "Frappe", "Admin", ["Moderator", "Course Creator", "Batch Evaluator"]
)
self.course = self._create_course()
self._setup_quiz()
self._setup_assignment()
self._setup_programming_exercise()
self._setup_chapters()
self._create_enrollment(self.student1.email, self.course.name)
self._add_student_progress(self.student1.email, self.course.name)
self._create_enrollment(self.student2.email, self.course.name)
self._add_student_progress(self.student2.email, self.course.name)
self._add_rating(self.course.name, self.student1.email, 0.8, "Good course")
self._add_rating(self.course.name, self.student2.email, 1, "Excellent course")
self._create_certificate(self.course.name, self.student1.email)
def _setup_quiz(self):
self.questions = self._create_quiz_questions()
self.quiz = self._create_quiz()
def _setup_assignment(self):
self.assignment = self._create_assignment()
def _setup_programming_exercise(self):
self.programming_exercise = self._create_programming_exercise()
def _setup_chapters(self):
chapters = []
for i in range(1, 4):
chapter = self._create_chapter(f"Chapter {i}", self.course.name)
chapters.append(chapter)
self.course.reload()
for chapter in chapters:
if not any(c.chapter == chapter.name for c in self.course.chapters):
self.course.append("chapters", {"chapter": chapter.name})
self.course.save()
self._setup_lessons()
def _setup_lessons(self):
for index, chapter_ref in enumerate(self.course.chapters):
chapter_doc = frappe.get_doc("Course Chapter", chapter_ref.chapter)
for j in range(1, 5):
content = None
if j == 2 and index == 2:
content = self._get_quiz_lesson_content()
if j == 3 and index == 2:
content = self._get_assignment_lesson_content()
if j == 4 and index == 2:
content = self._get_exercise_lesson_content()
lesson_title = f"Lesson {j} of {chapter_ref.chapter}"
lesson = self._create_lesson(lesson_title, chapter_ref.chapter, self.course.name, content)
if not any(l.lesson == lesson.name for l in chapter_doc.lessons):
chapter_doc.append("lessons", {"lesson": lesson.name})
chapter_doc.save()
def _get_quiz_lesson_content(self):
return f"""{{
"time": 1765194986690,
"blocks": [
{{
"id": "dkLzbW14ds",
"type": "quiz",
"data": {{ "quiz": "{self.quiz.name}" }}
}}
],
"version": "2.29.0"
}}"""
def _get_assignment_lesson_content(self):
return f"""{{
"time": 1765194986690,
"blocks": [
{{
"id": "dkLzbW14ds",
"type": "assignment",
"data": {{ "assignment": "{self.assignment.name}" }}
}}
],
"version": "2.29.0"
}}"""
def _get_exercise_lesson_content(self):
return f"""{{
"time": 1765194986690,
"blocks": [
{{
"id": "dkLzbW14ds",
"type": "program",
"data": {{ "exercise": "{self.programming_exercise.name}" }}
}}
],
"version": "2.29.0"
}}"""
def _setup_batch_flow(self):
self.evaluator = self._create_evaluator()
self.batch = self._create_batch(self.course.name)
self._create_batch_enrollment(self.student1.email, self.batch.name)
self._create_batch_enrollment(self.student2.email, self.batch.name)
def _add_student_progress(self, member, course):
self._create_quiz_submission(member)
self._create_assignment_submission(member)
self._create_programming_exercise_submission(member)
lessons = frappe.db.get_all(
"Course Lesson", {"course": course}, pluck="name", limit=2, order_by="creation desc"
)
for lesson in lessons:
self._create_lesson_progress(member, course, lesson)
def _create_lesson_progress(self, member, course, lesson):
existing = frappe.db.exists(
"LMS Course Progress", {"member": member, "course": course, "lesson": lesson}
)
if existing:
return frappe.get_doc("LMS Course Progress", existing)
progress = frappe.new_doc("LMS Course Progress")
progress.update({"member": member, "course": course, "lesson": lesson, "status": "Complete"})
progress.insert()
self.cleanup_items.append(("LMS Course Progress", progress.name))
return progress
def _create_quiz_submission(self, member):
existing = frappe.db.exists("LMS Quiz Submission", {"quiz": self.quiz.name, "member": member})
if existing:
return frappe.get_doc("LMS Quiz Submission", existing)
submission = frappe.new_doc("LMS Quiz Submission")
submission.update(
{
"quiz": self.quiz.name,
"member": member,
"score_out_of": self.quiz.total_marks,
"passing_percentage": self.quiz.passing_percentage,
}
)
for question in self.questions:
submission.append(
"result",
{
"question": question.name,
"marks": 4,
"marks_out_of": 5,
},
)
submission.insert()
self.cleanup_items.append(("LMS Quiz Submission", submission.name))
return submission
def _create_assignment_submission(self, member):
existing = frappe.db.exists(
"LMS Assignment Submission", {"assignment": self.assignment.name, "member": member}
)
if existing:
return frappe.get_doc("LMS Assignment Submission", existing)
submission = frappe.new_doc("LMS Assignment Submission")
submission.update(
{
"assignment": self.assignment.name,
"member": member,
"answer": "This is the submission content for the utility assignment.",
"status": "Pass",
}
)
submission.insert()
self.cleanup_items.append(("LMS Assignment Submission", submission.name))
return submission
def _create_programming_exercise(self, title="Utility Programming Exercise"):
existing = frappe.db.exists("LMS Programming Exercise", {"title": title})
if existing:
return frappe.get_doc("LMS Programming Exercise", existing)
programming_exercise = frappe.new_doc("LMS Programming Exercise")
programming_exercise.update(
{
"title": title,
"language": "Python",
"problem_statement": "Write a function to return the sum of two numbers.",
"test_cases": [
{"input": "2", "expected_output": "3"},
{"input": "11", "expected_output": "12"},
],
}
)
programming_exercise.save()
self.cleanup_items.append(("LMS Programming Exercise", programming_exercise.name))
return programming_exercise
def _create_programming_exercise_submission(self, member):
existing = frappe.db.exists(
"LMS Programming Exercise Submission",
{"exercise": self.programming_exercise.name, "member": member},
)
if existing:
return frappe.get_doc("LMS Programming Exercise Submission", existing)
submission = frappe.new_doc("LMS Programming Exercise Submission")
submission.update(
{
"exercise": self.programming_exercise.name,
"member": member,
"code": "print(inputs[0] + 1)",
"status": "Passed",
}
)
submission.insert()
self.cleanup_items.append(("LMS Programming Exercise Submission", submission.name))
return submission
+3 -74
View File
@@ -2,9 +2,8 @@
# See license.txt
import frappe
from frappe.utils import get_time, getdate, to_timedelta
from frappe.utils import getdate, to_timedelta
from lms.lms.api import get_certified_participants
from lms.lms.doctype.lms_certificate.lms_certificate import is_certified
from lms.lms.test_helpers import BaseTestUtils
from lms.lms.utils import (
@@ -33,48 +32,8 @@ class TestLMSUtils(BaseTestUtils):
def setUp(self):
super().setUp()
self.student1 = self._create_user("student1@example.com", "Ashley", "Smith", ["LMS Student"])
self.student2 = self._create_user("student2@example.com", "John", "Doe", ["LMS Student"])
self.admin = self._create_user(
"frappe@example.com", "Frappe", "Admin", ["Moderator", "Course Creator", "Batch Evaluator"]
)
self.course = self._create_course()
self._setup_chapters_and_lessons()
self._create_enrollment(self.student1.email, self.course.name)
self._create_enrollment(self.student2.email, self.course.name)
self._add_rating(self.course.name, self.student1.email, 0.8, "Good course")
self._add_rating(self.course.name, self.student2.email, 1, "Excellent course")
self._create_certificate(self.course.name, self.student1.email)
self.evaluator = self._create_evaluator()
self.batch = self._create_batch(self.course.name)
self._create_batch_enrollment(self.student1.email, self.batch.name)
self._create_batch_enrollment(self.student2.email, self.batch.name)
def _setup_chapters_and_lessons(self):
chapters = []
for i in range(1, 4):
chapter = self._create_chapter(f"Chapter {i}", self.course.name)
chapters.append(chapter)
self.course.reload()
for chapter in chapters:
if not any(c.chapter == chapter.name for c in self.course.chapters):
self.course.append("chapters", {"chapter": chapter.name})
self.course.save()
for chapter_ref in self.course.chapters:
chapter_doc = frappe.get_doc("Course Chapter", chapter_ref.chapter)
for j in range(1, 3):
lesson_title = f"Lesson {j} of {chapter_ref.chapter}"
lesson = self._create_lesson(lesson_title, chapter_ref.chapter, self.course.name)
if not any(l.lesson == lesson.name for l in chapter_doc.lessons):
chapter_doc.append("lessons", {"lesson": lesson.name})
chapter_doc.save()
self._setup_course_flow()
self._setup_batch_flow()
def test_simple_slugs(self):
self.assertEqual(slugify("hello-world"), "hello-world")
@@ -156,36 +115,6 @@ class TestLMSUtils(BaseTestUtils):
self.assertIsNone(is_certified(self.course.name))
frappe.session.user = "Administrator"
def test_certified_participants_with_category(self):
filters = {"category": "Utility Course"}
certified_participants = get_certified_participants(filters=filters)
self.assertEqual(len(certified_participants), 1)
self.assertEqual(certified_participants[0].member, self.student1.email)
filters = {"category": "Nonexistent Category"}
certified_participants_no_match = get_certified_participants(filters=filters)
self.assertEqual(len(certified_participants_no_match), 0)
def test_certified_participants_with_open_to_work(self):
filters = {"open_to_work": 1}
certified_participants_open_to_work = get_certified_participants(filters=filters)
self.assertEqual(len(certified_participants_open_to_work), 0)
frappe.db.set_value("User", self.student1.email, "open_to", "Work")
certified_participants_open_to_work = get_certified_participants(filters=filters)
self.assertEqual(len(certified_participants_open_to_work), 1)
frappe.db.set_value("User", self.student1.email, "open_to", "")
def test_certified_participants_with_open_to_hiring(self):
filters = {"hiring": 1}
certified_participants_hiring = get_certified_participants(filters=filters)
self.assertEqual(len(certified_participants_hiring), 0)
frappe.db.set_value("User", self.student1.email, "open_to", "Hiring")
certified_participants_hiring = get_certified_participants(filters=filters)
self.assertEqual(len(certified_participants_hiring), 1)
frappe.db.set_value("User", self.student1.email, "open_to", "")
def test_rating_validation(self):
student3 = self._create_user("student3@example.com", "Emily", "Cooper", ["LMS Student"])
with self.assertRaises(frappe.exceptions.ValidationError):
+5
View File
@@ -205,6 +205,10 @@ def get_lesson_icon(body, content):
if block.get("type") == "quiz":
return "icon-quiz"
if block.get("type") == "assignment":
return "icon-assignment"
if block.get("type") == "program":
return "icon-code"
return "icon-list"
@@ -1242,6 +1246,7 @@ def get_assessments(batch):
"LMS Assessment",
{"parent": batch},
["name", "assessment_type", "assessment_name"],
order_by="idx",
)
for assessment in assessments:
+83 -83
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2026-01-16 16:04+0000\n"
"PO-Revision-Date: 2026-01-21 20:16\n"
"POT-Creation-Date: 2026-01-23 16:05+0000\n"
"PO-Revision-Date: 2026-02-05 06:43\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Arabic\n"
"MIME-Version: 1.0\n"
@@ -319,7 +319,7 @@ msgid "Administrator"
msgstr "مدير"
#. Name of a role
#: frontend/src/pages/Batches.vue:319 lms/lms/doctype/lms_badge/lms_badge.json
#: frontend/src/pages/Batches.vue:321 lms/lms/doctype/lms_badge/lms_badge.json
msgid "All"
msgstr "الكل"
@@ -486,7 +486,7 @@ msgstr ""
msgid "Apps"
msgstr "التطبيقات"
#: frontend/src/pages/Batches.vue:329
#: frontend/src/pages/Batches.vue:331
msgid "Archived"
msgstr "أرشفة"
@@ -753,7 +753,7 @@ msgstr ""
#. Label of the batch_name (Link) field in DocType 'LMS Certificate'
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
#. Label of the batch_name (Link) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:32
#: frontend/src/components/Modals/Event.vue:35
#: frontend/src/components/Settings/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125
@@ -878,7 +878,7 @@ msgid "Batch:"
msgstr "الدفعات:"
#. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue:350 frontend/src/pages/Batches.vue:357
#: frontend/src/pages/Batches.vue:352 frontend/src/pages/Batches.vue:359
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121
msgid "Batches"
msgstr ""
@@ -1023,7 +1023,7 @@ msgstr ""
msgid "Certificate of Completion"
msgstr ""
#: frontend/src/components/Modals/Event.vue:347
#: frontend/src/components/Modals/Event.vue:353
msgid "Certificate saved successfully"
msgstr ""
@@ -1043,7 +1043,7 @@ msgstr ""
#. Label of a chart in the LMS Workspace
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:411
#: frontend/src/components/Modals/Event.vue:427
#: frontend/src/components/Sidebar/AppSidebar.vue:550
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100
#: frontend/src/pages/CourseCertification.vue:10
@@ -1195,7 +1195,7 @@ msgstr ""
#: frontend/src/components/Controls/IconPicker.vue:27
msgid "Choose an icon"
msgstr ""
msgstr "اختر رمزًا"
#: frontend/src/components/Quiz.vue:655
msgid "Choose one answer"
@@ -1771,7 +1771,7 @@ msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:365 frontend/src/pages/Courses.vue:372
#: frontend/src/pages/Courses.vue:364 frontend/src/pages/Courses.vue:371
#: frontend/src/pages/Programs/ProgramForm.vue:49
#: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1878,7 +1878,7 @@ msgstr ""
msgid "Create your first quiz"
msgstr ""
#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:355
#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:354
msgid "Created"
msgstr "أنشأ"
@@ -1954,7 +1954,7 @@ msgstr "استيراد البيانات"
#. Label of the date (Date) field in DocType 'LMS Certificate Request'
#. Label of the date (Date) field in DocType 'LMS Live Class'
#. Label of the date (Date) field in DocType 'Scheduled Flow'
#: frontend/src/components/Modals/Event.vue:40
#: frontend/src/components/Modals/Event.vue:46
#: frontend/src/components/Modals/LiveClassModal.vue:29
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -2241,7 +2241,7 @@ msgstr ""
msgid "Edit Email Template"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:13
msgid "Edit Payment Gateway"
msgstr ""
@@ -2424,7 +2424,7 @@ msgstr ""
msgid "Enroll Now"
msgstr ""
#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:358
#: frontend/src/pages/Batches.vue:334 frontend/src/pages/Courses.vue:357
#: frontend/src/pages/Programs/StudentPrograms.vue:96
msgid "Enrolled"
msgstr ""
@@ -2526,7 +2526,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json
#: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json
msgid "Evaluation"
msgstr "تقييم"
@@ -2551,7 +2551,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date."
msgstr ""
#: frontend/src/components/Modals/Event.vue:286
#: frontend/src/components/Modals/Event.vue:292
msgid "Evaluation saved successfully"
msgstr ""
@@ -2660,11 +2660,11 @@ msgstr ""
#: frontend/src/components/Settings/Coupons/CouponList.vue:176
#: lms/lms/doctype/lms_coupon/lms_coupon.json
msgid "Expires On"
msgstr ""
msgstr "تاريخ الانتهاء"
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:144
#: frontend/src/components/Modals/Event.vue:150
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date"
msgstr "تاريخ انتهاء الصلاحية"
@@ -2695,7 +2695,7 @@ msgstr ""
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:396
#: frontend/src/components/Modals/Event.vue:412
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail"
@@ -2960,7 +2960,7 @@ msgstr ""
#. Request'
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
msgid "Google Meet Link"
msgstr ""
msgstr "رابط جوجل ميت"
#. Label of the grade (Data) field in DocType 'Education Detail'
#: frontend/src/components/Assignment.vue:164
@@ -2995,7 +2995,7 @@ msgstr ""
#. Option for the 'Color' (Select) field in DocType 'LMS Course'
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Gray"
msgstr ""
msgstr "رمادي"
#. Option for the 'Color' (Select) field in DocType 'LMS Course'
#. Option for the 'Color' (Select) field in DocType 'LMS Lesson Note'
@@ -3067,7 +3067,7 @@ msgstr "أهلا{0},"
#: lms/templates/emails/lms_invite_request_approved.html:3
msgid "Hi,"
msgstr ""
msgstr "أهلاً،"
#. Label of the hide_private (Check) field in DocType 'User'
#: lms/fixtures/custom_field.json
@@ -3076,7 +3076,7 @@ msgstr ""
#: frontend/src/components/Notes/InlineLessonMenu.vue:12
msgid "Highlight"
msgstr ""
msgstr "أبرز النقاط"
#. Label of the highlighted_text (Small Text) field in DocType 'LMS Lesson
#. Note'
@@ -3192,7 +3192,7 @@ msgstr ""
#: lms/lms/doctype/lms_quiz/lms_quiz.py:231
msgid "Image: Corrupted Data Stream"
msgstr ""
msgstr "صورة: تدفق بيانات تالف"
#: frontend/src/components/Sidebar/Configuration.vue:17
msgid "Import"
@@ -3209,7 +3209,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:388
#: frontend/src/components/Modals/Event.vue:404
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "In Progress"
@@ -3353,7 +3353,7 @@ msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:138
#: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date"
@@ -3385,7 +3385,7 @@ msgstr ""
#: lms/templates/signup-form.html:6
msgid "Jane Doe"
msgstr ""
msgstr "جين دو"
#. Option for the 'Language' (Select) field in DocType 'LMS Programming
#. Exercise'
@@ -3456,7 +3456,7 @@ msgstr "انضم"
msgid "Join Call"
msgstr ""
#: frontend/src/components/Modals/Event.vue:78
#: frontend/src/components/Modals/Event.vue:84
msgid "Join Meeting"
msgstr ""
@@ -3896,7 +3896,7 @@ msgstr ""
msgid "LinkedIn ID"
msgstr ""
#: frontend/src/pages/Courses.vue:341
#: frontend/src/pages/Courses.vue:340
msgid "Live"
msgstr ""
@@ -4242,7 +4242,7 @@ msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:110
msgid "Members"
msgstr ""
msgstr "أعضاء"
#. Label of the mentor (Link) field in DocType 'LMS Course Mentor Mapping'
#. Option for the 'Member Type' (Select) field in DocType 'LMS Enrollment'
@@ -4429,7 +4429,7 @@ msgstr "اسم"
#: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17
#: frontend/src/pages/Courses.vue:344
#: frontend/src/pages/Courses.vue:343
#: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New"
@@ -4461,7 +4461,7 @@ msgstr ""
msgid "New Job Applicant"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:12
msgid "New Payment Gateway"
msgstr ""
@@ -4616,7 +4616,7 @@ msgstr ""
#: frontend/src/components/EmptyState.vue:5 lms/templates/course_list.html:13
msgid "No {0}"
msgstr ""
msgstr "لا {0}"
#: lms/lms/user.py:29
msgid "Not Allowed"
@@ -4778,14 +4778,9 @@ msgstr ""
#: frontend/src/components/UserAvatar.vue:11
#: frontend/src/pages/CertifiedParticipants.vue:46
#: frontend/src/pages/Profile.vue:69
msgid "Open to Opportunities"
msgid "Open to Work"
msgstr ""
#. Option for the 'Open to' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Opportunities"
msgstr "الفرص"
#. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:70
#: lms/lms/doctype/lms_option/lms_option.json
@@ -4819,7 +4814,7 @@ msgstr "خيارات"
#. Option for the 'Color' (Select) field in DocType 'LMS Course'
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Orange"
msgstr ""
msgstr "البرتقالي"
#. Label of the order_id (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:114
@@ -4924,7 +4919,7 @@ msgstr ""
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:392
#: frontend/src/components/Modals/Event.vue:408
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass"
@@ -5054,7 +5049,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:384
#: frontend/src/components/Modals/Event.vue:400
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending"
@@ -5194,7 +5189,7 @@ msgstr ""
msgid "Please login to continue with payment."
msgstr ""
#: lms/lms/utils.py:2081
#: lms/lms/utils.py:2082
msgid "Please login to enroll in the program."
msgstr ""
@@ -5496,7 +5491,7 @@ msgstr "تقدم"
#: frontend/src/pages/Programs/ProgramProgressSummary.vue:131
#: lms/lms/report/course_progress_summary/course_progress_summary.py:77
msgid "Progress (%)"
msgstr ""
msgstr "تقدم (٪)"
#: frontend/src/components/Modals/CourseProgressSummary.vue:113
#: frontend/src/pages/Programs/ProgramProgressSummary.vue:30
@@ -5525,7 +5520,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:122
#: frontend/src/components/Modals/Event.vue:128
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105
#: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5557,13 +5552,13 @@ msgstr ""
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
msgid "Purple"
msgstr ""
msgstr "أرجواني"
#. Option for the 'Language' (Select) field in DocType 'LMS Programming
#. Exercise'
#: lms/lms/doctype/lms_programming_exercise/lms_programming_exercise.json
msgid "Python"
msgstr ""
msgstr "بايثون"
#. Label of the question (Small Text) field in DocType 'Course Lesson'
#. Label of the question (Text Editor) field in DocType 'LMS Assignment'
@@ -5693,7 +5688,7 @@ msgstr ""
#. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/Event.vue:98
#: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -5929,14 +5924,14 @@ msgstr "السبت"
#: frontend/src/components/Modals/AssignmentForm.vue:65
#: frontend/src/components/Modals/EditProfile.vue:121
#: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:157
#: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/Coupons/CouponDetails.vue:78
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:41
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:129
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
@@ -6048,7 +6043,7 @@ msgstr ""
msgid "Select Date"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:26
msgid "Select Payment Gateway"
msgstr ""
@@ -6351,7 +6346,7 @@ msgstr "الولاية / المقاطعة"
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:203
msgid "Statistics"
msgstr ""
msgstr "إحصائيات"
#. Label of the status (Select) field in DocType 'Job Opportunity'
#. Label of a field in the job-opportunity Web Form
@@ -6364,7 +6359,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Modals/Event.vue:105
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6475,7 +6470,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:106
#: frontend/src/components/Modals/Event.vue:112
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary"
msgstr "ملخص"
@@ -6571,7 +6566,7 @@ msgstr ""
#. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:127
#: frontend/src/components/Modals/Event.vue:133
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template"
msgstr "قالب"
@@ -6620,7 +6615,7 @@ msgstr ""
msgid "Thanks and Regards"
msgstr ""
#: lms/lms/utils.py:2247
#: lms/lms/utils.py:2248
msgid "The batch does not exist."
msgstr ""
@@ -6628,7 +6623,7 @@ msgstr ""
msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session."
msgstr ""
#: lms/lms/utils.py:1747
#: lms/lms/utils.py:1748
msgid "The coupon code '{0}' is invalid."
msgstr ""
@@ -6652,7 +6647,7 @@ msgstr ""
msgid "The last day to schedule your evaluations is "
msgstr ""
#: lms/lms/utils.py:2231
#: lms/lms/utils.py:2232
msgid "The lesson does not exist."
msgstr ""
@@ -6660,7 +6655,7 @@ msgstr ""
msgid "The slot is already booked by another participant."
msgstr ""
#: lms/lms/utils.py:1361 lms/lms/utils.py:1477 lms/lms/utils.py:1944
#: lms/lms/utils.py:1362 lms/lms/utils.py:1478 lms/lms/utils.py:1945
msgid "The specified batch does not exist."
msgstr ""
@@ -6726,15 +6721,15 @@ msgstr ""
msgid "This class has ended"
msgstr ""
#: lms/lms/utils.py:1776
#: lms/lms/utils.py:1777
msgid "This coupon has expired."
msgstr ""
#: lms/lms/utils.py:1779
#: lms/lms/utils.py:1780
msgid "This coupon has reached its maximum usage limit."
msgstr ""
#: lms/lms/utils.py:1788
#: lms/lms/utils.py:1789
msgid "This coupon is not applicable to this {0}."
msgstr ""
@@ -6742,7 +6737,7 @@ msgstr ""
msgid "This course has:"
msgstr ""
#: lms/lms/utils.py:1707
#: lms/lms/utils.py:1708
msgid "This course is free."
msgstr ""
@@ -6799,7 +6794,7 @@ msgid "Thursday"
msgstr "الخميس"
#. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48
#: frontend/src/components/Modals/Event.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Quiz.vue:58
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -6934,7 +6929,7 @@ msgstr "إلى"
msgid "To Date"
msgstr "إلى تاريخ"
#: lms/lms/utils.py:1721
#: lms/lms/utils.py:1722
msgid "To join this batch, please contact the Administrator."
msgstr ""
@@ -7035,7 +7030,7 @@ msgstr "رابط الانترنت"
#. Label of the uuid (Data) field in DocType 'LMS Live Class'
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "UUID"
msgstr ""
msgstr "UUID"
#. Label of the unavailability_section (Section Break) field in DocType 'Course
#. Evaluator'
@@ -7056,7 +7051,7 @@ msgstr ""
msgid "Under Review"
msgstr ""
#: frontend/src/pages/Batches.vue:330 frontend/src/pages/Courses.vue:356
#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:355
msgid "Unpublished"
msgstr ""
@@ -7077,8 +7072,8 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
#. Label of the upcoming (Check) field in DocType 'LMS Course'
#: frontend/src/pages/Batches.vue:328 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:347
#: frontend/src/pages/Batches.vue:330 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:346
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming"
@@ -7105,7 +7100,7 @@ msgstr "تحديث"
#: lms/templates/emails/community_course_membership.html:11
msgid "Update Password"
msgstr ""
msgstr "تحديث كلمة المرور"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExercises.vue:281
msgid "Updated On"
@@ -7136,7 +7131,7 @@ msgstr ""
#: frontend/src/components/Modals/EmailTemplateModal.vue:38
msgid "Use HTML"
msgstr ""
msgstr "استخدم لغة HTML"
#. Label of the user (Link) field in DocType 'LMS Job Application'
#. Label of the user (Link) field in DocType 'LMS Course Interest'
@@ -7194,7 +7189,7 @@ msgstr ""
#: lms/templates/signup-form.html:83
msgid "Valid email and name required"
msgstr ""
msgstr "يلزم تقديم بريد إلكتروني واسم صحيحين"
#. Label of the value (Rating) field in DocType 'LMS Batch Feedback'
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
@@ -7220,7 +7215,7 @@ msgid "View Applications"
msgstr ""
#: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67
#: frontend/src/components/Modals/Event.vue:73
msgid "View Certificate"
msgstr ""
@@ -7327,6 +7322,11 @@ msgstr ""
msgid "Withdrawn"
msgstr ""
#. Option for the 'Open to' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Work"
msgstr ""
#. Label of the work_environment (Section Break) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Work Environment"
@@ -7364,7 +7364,7 @@ msgstr ""
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
msgid "Yellow"
msgstr ""
msgstr "أصفر"
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:97
msgid "You already have an evaluation on {0} at {1} for the course {2}."
@@ -7401,7 +7401,7 @@ msgstr "لا يسمح لك بالوصول إلى هذه الصفحة."
#: lms/templates/emails/lms_course_interest.html:13
#: lms/templates/emails/lms_invite_request_approved.html:11
msgid "You can also copy-paste following link in your browser"
msgstr ""
msgstr "يمكنك أيضًا نسخ الرابط التالي ولصقه في متصفحك"
#: frontend/src/components/Quiz.vue:37
msgid "You can attempt this quiz {0}."
@@ -7427,7 +7427,7 @@ msgstr ""
msgid "You cannot enroll in an unpublished course."
msgstr ""
#: lms/lms/utils.py:2085
#: lms/lms/utils.py:2086
msgid "You cannot enroll in an unpublished program."
msgstr ""
@@ -7443,11 +7443,11 @@ msgstr ""
msgid "You cannot schedule evaluations for past slots."
msgstr ""
#: lms/lms/utils.py:2259
#: lms/lms/utils.py:2260
msgid "You do not have access to this batch."
msgstr ""
#: lms/lms/utils.py:2242
#: lms/lms/utils.py:2243
msgid "You do not have access to this course."
msgstr ""
@@ -7752,7 +7752,7 @@ msgstr ""
#: lms/templates/signup-form.html:12
msgid "jane@example.com"
msgstr ""
msgstr "jane@example.com"
#: frontend/src/pages/Programs/ProgramEnrollment.vue:65
msgid "lessons"
@@ -7815,15 +7815,15 @@ msgstr ""
#: frontend/src/components/CommandPalette/CommandPalette.vue:59
msgid "to close"
msgstr ""
msgstr "للإغلاق"
#: frontend/src/components/CommandPalette/CommandPalette.vue:45
msgid "to navigate"
msgstr ""
msgstr "للتنقل"
#: frontend/src/components/CommandPalette/CommandPalette.vue:53
msgid "to select"
msgstr ""
msgstr "للاختيار"
#: frontend/src/components/BatchFeedback.vue:12
msgid "to view your feedback."
+60 -60
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2026-01-16 16:04+0000\n"
"PO-Revision-Date: 2026-01-21 20:16\n"
"POT-Creation-Date: 2026-01-23 16:05+0000\n"
"PO-Revision-Date: 2026-02-06 06:38\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Bosnian\n"
"MIME-Version: 1.0\n"
@@ -190,7 +190,7 @@ msgstr "Dodaj kviz u video"
#: frontend/src/components/Controls/ChildTable.vue:77
#: frontend/src/components/Settings/Coupons/CouponItems.vue:55
msgid "Add Row"
msgstr "Dodaj Red"
msgstr "Dodaj red"
#: frontend/src/pages/ProfileEvaluator.vue:96
msgid "Add Slot"
@@ -319,7 +319,7 @@ msgid "Administrator"
msgstr "Administrator"
#. Name of a role
#: frontend/src/pages/Batches.vue:319 lms/lms/doctype/lms_badge/lms_badge.json
#: frontend/src/pages/Batches.vue:321 lms/lms/doctype/lms_badge/lms_badge.json
msgid "All"
msgstr "Svi"
@@ -486,7 +486,7 @@ msgstr "Odobreno"
msgid "Apps"
msgstr "Aplikacije"
#: frontend/src/pages/Batches.vue:329
#: frontend/src/pages/Batches.vue:331
msgid "Archived"
msgstr "Arhivirano"
@@ -753,7 +753,7 @@ msgstr "Značka {0} je već dodijeljena ovom {1}."
#. Label of the batch_name (Link) field in DocType 'LMS Certificate'
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
#. Label of the batch_name (Link) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:32
#: frontend/src/components/Modals/Event.vue:35
#: frontend/src/components/Settings/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125
@@ -878,7 +878,7 @@ msgid "Batch:"
msgstr "Grupa:"
#. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue:350 frontend/src/pages/Batches.vue:357
#: frontend/src/pages/Batches.vue:352 frontend/src/pages/Batches.vue:359
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121
msgid "Batches"
msgstr "Grupe"
@@ -1023,7 +1023,7 @@ msgstr "Veza Certifikata"
msgid "Certificate of Completion"
msgstr "Certifikat o Završetku"
#: frontend/src/components/Modals/Event.vue:347
#: frontend/src/components/Modals/Event.vue:353
msgid "Certificate saved successfully"
msgstr "Certifikat je uspješno spremljen"
@@ -1043,7 +1043,7 @@ msgstr "Certifikati su uspješno generirani"
#. Label of a chart in the LMS Workspace
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:411
#: frontend/src/components/Modals/Event.vue:427
#: frontend/src/components/Sidebar/AppSidebar.vue:550
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100
#: frontend/src/pages/CourseCertification.vue:10
@@ -1771,7 +1771,7 @@ msgstr "Kurs {0} je već dodan u ovaj program."
#: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:365 frontend/src/pages/Courses.vue:372
#: frontend/src/pages/Courses.vue:364 frontend/src/pages/Courses.vue:371
#: frontend/src/pages/Programs/ProgramForm.vue:49
#: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1878,7 +1878,7 @@ msgstr "Kreiraj vaš prvi kurs"
msgid "Create your first quiz"
msgstr "Kreiraj vašj prvi kviz"
#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:355
#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:354
msgid "Created"
msgstr "Kreirano"
@@ -1954,7 +1954,7 @@ msgstr "Uvoz Podataka"
#. Label of the date (Date) field in DocType 'LMS Certificate Request'
#. Label of the date (Date) field in DocType 'LMS Live Class'
#. Label of the date (Date) field in DocType 'Scheduled Flow'
#: frontend/src/components/Modals/Event.vue:40
#: frontend/src/components/Modals/Event.vue:46
#: frontend/src/components/Modals/LiveClassModal.vue:29
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -2241,7 +2241,7 @@ msgstr "Uredi Kupon"
msgid "Edit Email Template"
msgstr "Uredi šablon e-pošte"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:13
msgid "Edit Payment Gateway"
msgstr "Uredi Platni Portal"
@@ -2424,7 +2424,7 @@ msgstr "Upis Člana u Program"
msgid "Enroll Now"
msgstr "Upišite se sada"
#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:358
#: frontend/src/pages/Batches.vue:334 frontend/src/pages/Courses.vue:357
#: frontend/src/pages/Programs/StudentPrograms.vue:96
msgid "Enrolled"
msgstr "Upisan"
@@ -2526,7 +2526,7 @@ msgstr "Greška pri ažuriranju šablona e-pošte"
#. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json
#: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json
msgid "Evaluation"
msgstr "Evaluacija"
@@ -2551,7 +2551,7 @@ msgstr "Zahtjev za Ocjenu"
msgid "Evaluation end date cannot be less than the batch end date."
msgstr "Datum završetka ocjenjivanja ne može biti prije od datuma završetka grupe."
#: frontend/src/components/Modals/Event.vue:286
#: frontend/src/components/Modals/Event.vue:292
msgid "Evaluation saved successfully"
msgstr "Evaluacija je uspješno sačuvana"
@@ -2664,7 +2664,7 @@ msgstr "Ističe"
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:144
#: frontend/src/components/Modals/Event.vue:150
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date"
msgstr "Datum Isteka Roka"
@@ -2695,7 +2695,7 @@ msgstr "Istraži Više"
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:396
#: frontend/src/components/Modals/Event.vue:412
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail"
@@ -3209,7 +3209,7 @@ msgstr "Uvezi Kurs"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:388
#: frontend/src/components/Modals/Event.vue:404
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "In Progress"
@@ -3353,7 +3353,7 @@ msgstr "SCORM Paket"
#. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:138
#: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date"
@@ -3456,7 +3456,7 @@ msgstr "Pridružite se"
msgid "Join Call"
msgstr "Pridružite se Pozivu"
#: frontend/src/components/Modals/Event.vue:78
#: frontend/src/components/Modals/Event.vue:84
msgid "Join Meeting"
msgstr "Pridružite se Sastanku"
@@ -3896,7 +3896,7 @@ msgstr "LinkedIn"
msgid "LinkedIn ID"
msgstr "LinkedIn ID"
#: frontend/src/pages/Courses.vue:341
#: frontend/src/pages/Courses.vue:340
msgid "Live"
msgstr "Uživo"
@@ -4429,7 +4429,7 @@ msgstr "Naziv"
#: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17
#: frontend/src/pages/Courses.vue:344
#: frontend/src/pages/Courses.vue:343
#: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New"
@@ -4461,7 +4461,7 @@ msgstr "Novi Posao"
msgid "New Job Applicant"
msgstr "Novi Kandidat za Posao"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:12
msgid "New Payment Gateway"
msgstr "Novi Sistem Plaćanja"
@@ -4778,13 +4778,8 @@ msgstr "Otvoren(a) za"
#: frontend/src/components/UserAvatar.vue:11
#: frontend/src/pages/CertifiedParticipants.vue:46
#: frontend/src/pages/Profile.vue:69
msgid "Open to Opportunities"
msgstr "Otvoren(a) za prilike"
#. Option for the 'Open to' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Opportunities"
msgstr "Prilika"
msgid "Open to Work"
msgstr "Otvoreno za Posao"
#. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:70
@@ -4924,7 +4919,7 @@ msgstr "Djelomično Završeno"
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:392
#: frontend/src/components/Modals/Event.vue:408
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass"
@@ -5054,7 +5049,7 @@ msgstr "Aplikacija plaćanja nije instalirana"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:384
#: frontend/src/components/Modals/Event.vue:400
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending"
@@ -5194,7 +5189,7 @@ msgstr "Prijavi se da pristupiš ovoj stranici."
msgid "Please login to continue with payment."
msgstr "Prijavi se da nastaviš s plaćanjem."
#: lms/lms/utils.py:2081
#: lms/lms/utils.py:2082
msgid "Please login to enroll in the program."
msgstr "Molimo vas da se prijavite da biste se prijavili u program."
@@ -5525,7 +5520,7 @@ msgstr "Objavi na Stranici Učesnika"
#. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:122
#: frontend/src/components/Modals/Event.vue:128
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105
#: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5693,7 +5688,7 @@ msgstr "Kvizovi u ovom videu"
#. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/Event.vue:98
#: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -5929,14 +5924,14 @@ msgstr "Subota"
#: frontend/src/components/Modals/AssignmentForm.vue:65
#: frontend/src/components/Modals/EditProfile.vue:121
#: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:157
#: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/Coupons/CouponDetails.vue:78
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:41
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:129
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
@@ -6048,7 +6043,7 @@ msgstr "Prikaži sve"
msgid "Select Date"
msgstr "Odaberi Datum"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:26
msgid "Select Payment Gateway"
msgstr "Odaberi Platni Portal"
@@ -6364,7 +6359,7 @@ msgstr "Statistika"
#. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Modals/Event.vue:105
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6475,7 +6470,7 @@ msgstr "Uspješno upisan/a u program"
#. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:106
#: frontend/src/components/Modals/Event.vue:112
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary"
msgstr "Sažetak"
@@ -6571,7 +6566,7 @@ msgstr "Timski Rad"
#. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:127
#: frontend/src/components/Modals/Event.vue:133
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template"
msgstr "Šablon"
@@ -6620,7 +6615,7 @@ msgstr "Hvala vam na povratnim informacijama."
msgid "Thanks and Regards"
msgstr "Hvala i Pozdrav"
#: lms/lms/utils.py:2247
#: lms/lms/utils.py:2248
msgid "The batch does not exist."
msgstr "Grupa ne postoji."
@@ -6628,7 +6623,7 @@ msgstr "Grupa ne postoji."
msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session."
msgstr "Grupa za koju ste se prijavili počinje sutra. Pripremite se i dođete na vrijeme."
#: lms/lms/utils.py:1747
#: lms/lms/utils.py:1748
msgid "The coupon code '{0}' is invalid."
msgstr "Kod kupona '{0}' nije važeći."
@@ -6652,7 +6647,7 @@ msgstr "Instruktor je ostavio komentar na vaš zadatak {0}"
msgid "The last day to schedule your evaluations is "
msgstr "Posljednji dan za zakazivanje ocjenjivanja je "
#: lms/lms/utils.py:2231
#: lms/lms/utils.py:2232
msgid "The lesson does not exist."
msgstr "Lekcija ne postoji."
@@ -6660,7 +6655,7 @@ msgstr "Lekcija ne postoji."
msgid "The slot is already booked by another participant."
msgstr "Termin je već rezervirao drugi učesnik."
#: lms/lms/utils.py:1361 lms/lms/utils.py:1477 lms/lms/utils.py:1944
#: lms/lms/utils.py:1362 lms/lms/utils.py:1478 lms/lms/utils.py:1945
msgid "The specified batch does not exist."
msgstr "Navedena grupa ne postoji."
@@ -6726,15 +6721,15 @@ msgstr "Ovaj certifikat ne ističe"
msgid "This class has ended"
msgstr "Ovaj čas je završen"
#: lms/lms/utils.py:1776
#: lms/lms/utils.py:1777
msgid "This coupon has expired."
msgstr "Ovaj kupon je istekao."
#: lms/lms/utils.py:1779
#: lms/lms/utils.py:1780
msgid "This coupon has reached its maximum usage limit."
msgstr "Ovaj kupon je dosegao maksimalni broj iskorištenja."
#: lms/lms/utils.py:1788
#: lms/lms/utils.py:1789
msgid "This coupon is not applicable to this {0}."
msgstr "Ovaj kupon se ne odnosi na {0}."
@@ -6742,7 +6737,7 @@ msgstr "Ovaj kupon se ne odnosi na {0}."
msgid "This course has:"
msgstr "Ovaj kurs ima:"
#: lms/lms/utils.py:1707
#: lms/lms/utils.py:1708
msgid "This course is free."
msgstr "Ovaj kurs je besplatan."
@@ -6799,7 +6794,7 @@ msgid "Thursday"
msgstr "Četvrtak"
#. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48
#: frontend/src/components/Modals/Event.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Quiz.vue:58
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -6934,7 +6929,7 @@ msgstr "Za"
msgid "To Date"
msgstr "Do Datuma"
#: lms/lms/utils.py:1721
#: lms/lms/utils.py:1722
msgid "To join this batch, please contact the Administrator."
msgstr "Da biste se pridružili ovoj grupi, kontaktirajte administratora."
@@ -7056,7 +7051,7 @@ msgstr "Nedostupno Od Datuma ne može biti kasnije od Nedostupno Do Datuma"
msgid "Under Review"
msgstr "Pod Recenzijom"
#: frontend/src/pages/Batches.vue:330 frontend/src/pages/Courses.vue:356
#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:355
msgid "Unpublished"
msgstr "Neobjavljeno"
@@ -7077,8 +7072,8 @@ msgstr "Nestrukturirana Uloga"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
#. Label of the upcoming (Check) field in DocType 'LMS Course'
#: frontend/src/pages/Batches.vue:328 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:347
#: frontend/src/pages/Batches.vue:330 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:346
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming"
@@ -7220,7 +7215,7 @@ msgid "View Applications"
msgstr "Prikaži prijave"
#: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67
#: frontend/src/components/Modals/Event.vue:73
msgid "View Certificate"
msgstr "Prikaži Certifikat"
@@ -7327,6 +7322,11 @@ msgstr "Uz ovaj certifikat, sada možete pokazati svoje ažurirane vještine i p
msgid "Withdrawn"
msgstr "Povučen"
#. Option for the 'Open to' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Work"
msgstr "Posao"
#. Label of the work_environment (Section Break) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Work Environment"
@@ -7427,7 +7427,7 @@ msgstr "Ne možete mijenjati uloge u načinu rada samo za čitanje."
msgid "You cannot enroll in an unpublished course."
msgstr "Ne možete se upisati na neobjavljeni kurs."
#: lms/lms/utils.py:2085
#: lms/lms/utils.py:2086
msgid "You cannot enroll in an unpublished program."
msgstr "Ne možete se upisati u neobjavljeni program."
@@ -7443,11 +7443,11 @@ msgstr "Ne možete zakazati ocjenjivanje nakon {0}."
msgid "You cannot schedule evaluations for past slots."
msgstr "Ne možete zakazati ocjenjivanje za prošle termine."
#: lms/lms/utils.py:2259
#: lms/lms/utils.py:2260
msgid "You do not have access to this batch."
msgstr "Nemate pristup ovoj grupi."
#: lms/lms/utils.py:2242
#: lms/lms/utils.py:2243
msgid "You do not have access to this course."
msgstr "Nemate pristup ovom kursu."
+58 -58
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2026-01-16 16:04+0000\n"
"PO-Revision-Date: 2026-01-19 20:13\n"
"POT-Creation-Date: 2026-01-23 16:05+0000\n"
"PO-Revision-Date: 2026-02-05 06:43\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Czech\n"
"MIME-Version: 1.0\n"
@@ -319,7 +319,7 @@ msgid "Administrator"
msgstr ""
#. Name of a role
#: frontend/src/pages/Batches.vue:319 lms/lms/doctype/lms_badge/lms_badge.json
#: frontend/src/pages/Batches.vue:321 lms/lms/doctype/lms_badge/lms_badge.json
msgid "All"
msgstr ""
@@ -486,7 +486,7 @@ msgstr ""
msgid "Apps"
msgstr ""
#: frontend/src/pages/Batches.vue:329
#: frontend/src/pages/Batches.vue:331
msgid "Archived"
msgstr ""
@@ -753,7 +753,7 @@ msgstr ""
#. Label of the batch_name (Link) field in DocType 'LMS Certificate'
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
#. Label of the batch_name (Link) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:32
#: frontend/src/components/Modals/Event.vue:35
#: frontend/src/components/Settings/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125
@@ -878,7 +878,7 @@ msgid "Batch:"
msgstr ""
#. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue:350 frontend/src/pages/Batches.vue:357
#: frontend/src/pages/Batches.vue:352 frontend/src/pages/Batches.vue:359
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121
msgid "Batches"
msgstr ""
@@ -1023,7 +1023,7 @@ msgstr ""
msgid "Certificate of Completion"
msgstr ""
#: frontend/src/components/Modals/Event.vue:347
#: frontend/src/components/Modals/Event.vue:353
msgid "Certificate saved successfully"
msgstr ""
@@ -1043,7 +1043,7 @@ msgstr ""
#. Label of a chart in the LMS Workspace
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:411
#: frontend/src/components/Modals/Event.vue:427
#: frontend/src/components/Sidebar/AppSidebar.vue:550
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100
#: frontend/src/pages/CourseCertification.vue:10
@@ -1771,7 +1771,7 @@ msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:365 frontend/src/pages/Courses.vue:372
#: frontend/src/pages/Courses.vue:364 frontend/src/pages/Courses.vue:371
#: frontend/src/pages/Programs/ProgramForm.vue:49
#: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1878,7 +1878,7 @@ msgstr ""
msgid "Create your first quiz"
msgstr ""
#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:355
#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:354
msgid "Created"
msgstr ""
@@ -1954,7 +1954,7 @@ msgstr ""
#. Label of the date (Date) field in DocType 'LMS Certificate Request'
#. Label of the date (Date) field in DocType 'LMS Live Class'
#. Label of the date (Date) field in DocType 'Scheduled Flow'
#: frontend/src/components/Modals/Event.vue:40
#: frontend/src/components/Modals/Event.vue:46
#: frontend/src/components/Modals/LiveClassModal.vue:29
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -2241,7 +2241,7 @@ msgstr ""
msgid "Edit Email Template"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:13
msgid "Edit Payment Gateway"
msgstr ""
@@ -2424,7 +2424,7 @@ msgstr ""
msgid "Enroll Now"
msgstr ""
#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:358
#: frontend/src/pages/Batches.vue:334 frontend/src/pages/Courses.vue:357
#: frontend/src/pages/Programs/StudentPrograms.vue:96
msgid "Enrolled"
msgstr ""
@@ -2526,7 +2526,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json
#: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json
msgid "Evaluation"
msgstr ""
@@ -2551,7 +2551,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date."
msgstr ""
#: frontend/src/components/Modals/Event.vue:286
#: frontend/src/components/Modals/Event.vue:292
msgid "Evaluation saved successfully"
msgstr ""
@@ -2664,7 +2664,7 @@ msgstr ""
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:144
#: frontend/src/components/Modals/Event.vue:150
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date"
msgstr ""
@@ -2695,7 +2695,7 @@ msgstr ""
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:396
#: frontend/src/components/Modals/Event.vue:412
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail"
@@ -3209,7 +3209,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:388
#: frontend/src/components/Modals/Event.vue:404
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "In Progress"
@@ -3353,7 +3353,7 @@ msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:138
#: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date"
@@ -3456,7 +3456,7 @@ msgstr ""
msgid "Join Call"
msgstr ""
#: frontend/src/components/Modals/Event.vue:78
#: frontend/src/components/Modals/Event.vue:84
msgid "Join Meeting"
msgstr ""
@@ -3896,7 +3896,7 @@ msgstr ""
msgid "LinkedIn ID"
msgstr ""
#: frontend/src/pages/Courses.vue:341
#: frontend/src/pages/Courses.vue:340
msgid "Live"
msgstr ""
@@ -4429,7 +4429,7 @@ msgstr ""
#: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17
#: frontend/src/pages/Courses.vue:344
#: frontend/src/pages/Courses.vue:343
#: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New"
@@ -4461,7 +4461,7 @@ msgstr ""
msgid "New Job Applicant"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:12
msgid "New Payment Gateway"
msgstr ""
@@ -4778,12 +4778,7 @@ msgstr ""
#: frontend/src/components/UserAvatar.vue:11
#: frontend/src/pages/CertifiedParticipants.vue:46
#: frontend/src/pages/Profile.vue:69
msgid "Open to Opportunities"
msgstr ""
#. Option for the 'Open to' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Opportunities"
msgid "Open to Work"
msgstr ""
#. Label of the option (Data) field in DocType 'LMS Option'
@@ -4924,7 +4919,7 @@ msgstr ""
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:392
#: frontend/src/components/Modals/Event.vue:408
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass"
@@ -5054,7 +5049,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:384
#: frontend/src/components/Modals/Event.vue:400
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending"
@@ -5194,7 +5189,7 @@ msgstr ""
msgid "Please login to continue with payment."
msgstr ""
#: lms/lms/utils.py:2081
#: lms/lms/utils.py:2082
msgid "Please login to enroll in the program."
msgstr ""
@@ -5525,7 +5520,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:122
#: frontend/src/components/Modals/Event.vue:128
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105
#: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5693,7 +5688,7 @@ msgstr ""
#. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/Event.vue:98
#: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -5929,14 +5924,14 @@ msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:65
#: frontend/src/components/Modals/EditProfile.vue:121
#: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:157
#: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/Coupons/CouponDetails.vue:78
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:41
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:129
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
@@ -6048,7 +6043,7 @@ msgstr ""
msgid "Select Date"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:26
msgid "Select Payment Gateway"
msgstr ""
@@ -6364,7 +6359,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Modals/Event.vue:105
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6475,7 +6470,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:106
#: frontend/src/components/Modals/Event.vue:112
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary"
msgstr ""
@@ -6571,7 +6566,7 @@ msgstr ""
#. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:127
#: frontend/src/components/Modals/Event.vue:133
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template"
msgstr ""
@@ -6620,7 +6615,7 @@ msgstr ""
msgid "Thanks and Regards"
msgstr ""
#: lms/lms/utils.py:2247
#: lms/lms/utils.py:2248
msgid "The batch does not exist."
msgstr ""
@@ -6628,7 +6623,7 @@ msgstr ""
msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session."
msgstr ""
#: lms/lms/utils.py:1747
#: lms/lms/utils.py:1748
msgid "The coupon code '{0}' is invalid."
msgstr ""
@@ -6652,7 +6647,7 @@ msgstr ""
msgid "The last day to schedule your evaluations is "
msgstr ""
#: lms/lms/utils.py:2231
#: lms/lms/utils.py:2232
msgid "The lesson does not exist."
msgstr ""
@@ -6660,7 +6655,7 @@ msgstr ""
msgid "The slot is already booked by another participant."
msgstr ""
#: lms/lms/utils.py:1361 lms/lms/utils.py:1477 lms/lms/utils.py:1944
#: lms/lms/utils.py:1362 lms/lms/utils.py:1478 lms/lms/utils.py:1945
msgid "The specified batch does not exist."
msgstr ""
@@ -6726,15 +6721,15 @@ msgstr ""
msgid "This class has ended"
msgstr ""
#: lms/lms/utils.py:1776
#: lms/lms/utils.py:1777
msgid "This coupon has expired."
msgstr ""
#: lms/lms/utils.py:1779
#: lms/lms/utils.py:1780
msgid "This coupon has reached its maximum usage limit."
msgstr ""
#: lms/lms/utils.py:1788
#: lms/lms/utils.py:1789
msgid "This coupon is not applicable to this {0}."
msgstr ""
@@ -6742,7 +6737,7 @@ msgstr ""
msgid "This course has:"
msgstr ""
#: lms/lms/utils.py:1707
#: lms/lms/utils.py:1708
msgid "This course is free."
msgstr ""
@@ -6799,7 +6794,7 @@ msgid "Thursday"
msgstr ""
#. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48
#: frontend/src/components/Modals/Event.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Quiz.vue:58
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -6934,7 +6929,7 @@ msgstr ""
msgid "To Date"
msgstr ""
#: lms/lms/utils.py:1721
#: lms/lms/utils.py:1722
msgid "To join this batch, please contact the Administrator."
msgstr ""
@@ -7056,7 +7051,7 @@ msgstr ""
msgid "Under Review"
msgstr ""
#: frontend/src/pages/Batches.vue:330 frontend/src/pages/Courses.vue:356
#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:355
msgid "Unpublished"
msgstr ""
@@ -7077,8 +7072,8 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
#. Label of the upcoming (Check) field in DocType 'LMS Course'
#: frontend/src/pages/Batches.vue:328 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:347
#: frontend/src/pages/Batches.vue:330 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:346
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming"
@@ -7220,7 +7215,7 @@ msgid "View Applications"
msgstr ""
#: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67
#: frontend/src/components/Modals/Event.vue:73
msgid "View Certificate"
msgstr ""
@@ -7327,6 +7322,11 @@ msgstr ""
msgid "Withdrawn"
msgstr ""
#. Option for the 'Open to' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Work"
msgstr ""
#. Label of the work_environment (Section Break) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Work Environment"
@@ -7427,7 +7427,7 @@ msgstr ""
msgid "You cannot enroll in an unpublished course."
msgstr ""
#: lms/lms/utils.py:2085
#: lms/lms/utils.py:2086
msgid "You cannot enroll in an unpublished program."
msgstr ""
@@ -7443,11 +7443,11 @@ msgstr ""
msgid "You cannot schedule evaluations for past slots."
msgstr ""
#: lms/lms/utils.py:2259
#: lms/lms/utils.py:2260
msgid "You do not have access to this batch."
msgstr ""
#: lms/lms/utils.py:2242
#: lms/lms/utils.py:2243
msgid "You do not have access to this course."
msgstr ""
+58 -58
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2026-01-16 16:04+0000\n"
"PO-Revision-Date: 2026-01-19 20:13\n"
"POT-Creation-Date: 2026-01-23 16:05+0000\n"
"PO-Revision-Date: 2026-02-05 06:43\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Danish\n"
"MIME-Version: 1.0\n"
@@ -319,7 +319,7 @@ msgid "Administrator"
msgstr "Administrator"
#. Name of a role
#: frontend/src/pages/Batches.vue:319 lms/lms/doctype/lms_badge/lms_badge.json
#: frontend/src/pages/Batches.vue:321 lms/lms/doctype/lms_badge/lms_badge.json
msgid "All"
msgstr "Alle"
@@ -486,7 +486,7 @@ msgstr "Godkendt"
msgid "Apps"
msgstr "Apps"
#: frontend/src/pages/Batches.vue:329
#: frontend/src/pages/Batches.vue:331
msgid "Archived"
msgstr "Arkiveret"
@@ -753,7 +753,7 @@ msgstr ""
#. Label of the batch_name (Link) field in DocType 'LMS Certificate'
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
#. Label of the batch_name (Link) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:32
#: frontend/src/components/Modals/Event.vue:35
#: frontend/src/components/Settings/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125
@@ -878,7 +878,7 @@ msgid "Batch:"
msgstr ""
#. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue:350 frontend/src/pages/Batches.vue:357
#: frontend/src/pages/Batches.vue:352 frontend/src/pages/Batches.vue:359
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121
msgid "Batches"
msgstr ""
@@ -1023,7 +1023,7 @@ msgstr ""
msgid "Certificate of Completion"
msgstr ""
#: frontend/src/components/Modals/Event.vue:347
#: frontend/src/components/Modals/Event.vue:353
msgid "Certificate saved successfully"
msgstr ""
@@ -1043,7 +1043,7 @@ msgstr ""
#. Label of a chart in the LMS Workspace
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:411
#: frontend/src/components/Modals/Event.vue:427
#: frontend/src/components/Sidebar/AppSidebar.vue:550
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100
#: frontend/src/pages/CourseCertification.vue:10
@@ -1771,7 +1771,7 @@ msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:365 frontend/src/pages/Courses.vue:372
#: frontend/src/pages/Courses.vue:364 frontend/src/pages/Courses.vue:371
#: frontend/src/pages/Programs/ProgramForm.vue:49
#: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1878,7 +1878,7 @@ msgstr ""
msgid "Create your first quiz"
msgstr ""
#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:355
#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:354
msgid "Created"
msgstr ""
@@ -1954,7 +1954,7 @@ msgstr ""
#. Label of the date (Date) field in DocType 'LMS Certificate Request'
#. Label of the date (Date) field in DocType 'LMS Live Class'
#. Label of the date (Date) field in DocType 'Scheduled Flow'
#: frontend/src/components/Modals/Event.vue:40
#: frontend/src/components/Modals/Event.vue:46
#: frontend/src/components/Modals/LiveClassModal.vue:29
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -2241,7 +2241,7 @@ msgstr ""
msgid "Edit Email Template"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:13
msgid "Edit Payment Gateway"
msgstr ""
@@ -2424,7 +2424,7 @@ msgstr ""
msgid "Enroll Now"
msgstr ""
#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:358
#: frontend/src/pages/Batches.vue:334 frontend/src/pages/Courses.vue:357
#: frontend/src/pages/Programs/StudentPrograms.vue:96
msgid "Enrolled"
msgstr ""
@@ -2526,7 +2526,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json
#: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json
msgid "Evaluation"
msgstr ""
@@ -2551,7 +2551,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date."
msgstr ""
#: frontend/src/components/Modals/Event.vue:286
#: frontend/src/components/Modals/Event.vue:292
msgid "Evaluation saved successfully"
msgstr ""
@@ -2664,7 +2664,7 @@ msgstr ""
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:144
#: frontend/src/components/Modals/Event.vue:150
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date"
msgstr ""
@@ -2695,7 +2695,7 @@ msgstr ""
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:396
#: frontend/src/components/Modals/Event.vue:412
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail"
@@ -3209,7 +3209,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:388
#: frontend/src/components/Modals/Event.vue:404
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "In Progress"
@@ -3353,7 +3353,7 @@ msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:138
#: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date"
@@ -3456,7 +3456,7 @@ msgstr ""
msgid "Join Call"
msgstr ""
#: frontend/src/components/Modals/Event.vue:78
#: frontend/src/components/Modals/Event.vue:84
msgid "Join Meeting"
msgstr ""
@@ -3896,7 +3896,7 @@ msgstr ""
msgid "LinkedIn ID"
msgstr ""
#: frontend/src/pages/Courses.vue:341
#: frontend/src/pages/Courses.vue:340
msgid "Live"
msgstr ""
@@ -4429,7 +4429,7 @@ msgstr ""
#: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17
#: frontend/src/pages/Courses.vue:344
#: frontend/src/pages/Courses.vue:343
#: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New"
@@ -4461,7 +4461,7 @@ msgstr ""
msgid "New Job Applicant"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:12
msgid "New Payment Gateway"
msgstr ""
@@ -4778,12 +4778,7 @@ msgstr ""
#: frontend/src/components/UserAvatar.vue:11
#: frontend/src/pages/CertifiedParticipants.vue:46
#: frontend/src/pages/Profile.vue:69
msgid "Open to Opportunities"
msgstr ""
#. Option for the 'Open to' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Opportunities"
msgid "Open to Work"
msgstr ""
#. Label of the option (Data) field in DocType 'LMS Option'
@@ -4924,7 +4919,7 @@ msgstr ""
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:392
#: frontend/src/components/Modals/Event.vue:408
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass"
@@ -5054,7 +5049,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:384
#: frontend/src/components/Modals/Event.vue:400
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending"
@@ -5194,7 +5189,7 @@ msgstr ""
msgid "Please login to continue with payment."
msgstr ""
#: lms/lms/utils.py:2081
#: lms/lms/utils.py:2082
msgid "Please login to enroll in the program."
msgstr ""
@@ -5525,7 +5520,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:122
#: frontend/src/components/Modals/Event.vue:128
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105
#: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5693,7 +5688,7 @@ msgstr ""
#. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/Event.vue:98
#: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -5929,14 +5924,14 @@ msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:65
#: frontend/src/components/Modals/EditProfile.vue:121
#: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:157
#: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/Coupons/CouponDetails.vue:78
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:41
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:129
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
@@ -6048,7 +6043,7 @@ msgstr ""
msgid "Select Date"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:26
msgid "Select Payment Gateway"
msgstr ""
@@ -6364,7 +6359,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Modals/Event.vue:105
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6475,7 +6470,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:106
#: frontend/src/components/Modals/Event.vue:112
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary"
msgstr ""
@@ -6571,7 +6566,7 @@ msgstr ""
#. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:127
#: frontend/src/components/Modals/Event.vue:133
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template"
msgstr ""
@@ -6620,7 +6615,7 @@ msgstr ""
msgid "Thanks and Regards"
msgstr ""
#: lms/lms/utils.py:2247
#: lms/lms/utils.py:2248
msgid "The batch does not exist."
msgstr ""
@@ -6628,7 +6623,7 @@ msgstr ""
msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session."
msgstr ""
#: lms/lms/utils.py:1747
#: lms/lms/utils.py:1748
msgid "The coupon code '{0}' is invalid."
msgstr ""
@@ -6652,7 +6647,7 @@ msgstr ""
msgid "The last day to schedule your evaluations is "
msgstr ""
#: lms/lms/utils.py:2231
#: lms/lms/utils.py:2232
msgid "The lesson does not exist."
msgstr ""
@@ -6660,7 +6655,7 @@ msgstr ""
msgid "The slot is already booked by another participant."
msgstr ""
#: lms/lms/utils.py:1361 lms/lms/utils.py:1477 lms/lms/utils.py:1944
#: lms/lms/utils.py:1362 lms/lms/utils.py:1478 lms/lms/utils.py:1945
msgid "The specified batch does not exist."
msgstr ""
@@ -6726,15 +6721,15 @@ msgstr ""
msgid "This class has ended"
msgstr ""
#: lms/lms/utils.py:1776
#: lms/lms/utils.py:1777
msgid "This coupon has expired."
msgstr ""
#: lms/lms/utils.py:1779
#: lms/lms/utils.py:1780
msgid "This coupon has reached its maximum usage limit."
msgstr ""
#: lms/lms/utils.py:1788
#: lms/lms/utils.py:1789
msgid "This coupon is not applicable to this {0}."
msgstr ""
@@ -6742,7 +6737,7 @@ msgstr ""
msgid "This course has:"
msgstr ""
#: lms/lms/utils.py:1707
#: lms/lms/utils.py:1708
msgid "This course is free."
msgstr ""
@@ -6799,7 +6794,7 @@ msgid "Thursday"
msgstr ""
#. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48
#: frontend/src/components/Modals/Event.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Quiz.vue:58
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -6934,7 +6929,7 @@ msgstr ""
msgid "To Date"
msgstr ""
#: lms/lms/utils.py:1721
#: lms/lms/utils.py:1722
msgid "To join this batch, please contact the Administrator."
msgstr ""
@@ -7056,7 +7051,7 @@ msgstr ""
msgid "Under Review"
msgstr ""
#: frontend/src/pages/Batches.vue:330 frontend/src/pages/Courses.vue:356
#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:355
msgid "Unpublished"
msgstr ""
@@ -7077,8 +7072,8 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
#. Label of the upcoming (Check) field in DocType 'LMS Course'
#: frontend/src/pages/Batches.vue:328 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:347
#: frontend/src/pages/Batches.vue:330 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:346
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming"
@@ -7220,7 +7215,7 @@ msgid "View Applications"
msgstr ""
#: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67
#: frontend/src/components/Modals/Event.vue:73
msgid "View Certificate"
msgstr ""
@@ -7327,6 +7322,11 @@ msgstr ""
msgid "Withdrawn"
msgstr ""
#. Option for the 'Open to' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Work"
msgstr ""
#. Label of the work_environment (Section Break) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Work Environment"
@@ -7427,7 +7427,7 @@ msgstr ""
msgid "You cannot enroll in an unpublished course."
msgstr ""
#: lms/lms/utils.py:2085
#: lms/lms/utils.py:2086
msgid "You cannot enroll in an unpublished program."
msgstr ""
@@ -7443,11 +7443,11 @@ msgstr ""
msgid "You cannot schedule evaluations for past slots."
msgstr ""
#: lms/lms/utils.py:2259
#: lms/lms/utils.py:2260
msgid "You do not have access to this batch."
msgstr ""
#: lms/lms/utils.py:2242
#: lms/lms/utils.py:2243
msgid "You do not have access to this course."
msgstr ""
+58 -58
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2026-01-16 16:04+0000\n"
"PO-Revision-Date: 2026-01-21 20:16\n"
"POT-Creation-Date: 2026-01-23 16:05+0000\n"
"PO-Revision-Date: 2026-02-05 06:43\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: German\n"
"MIME-Version: 1.0\n"
@@ -319,7 +319,7 @@ msgid "Administrator"
msgstr "Administrator"
#. Name of a role
#: frontend/src/pages/Batches.vue:319 lms/lms/doctype/lms_badge/lms_badge.json
#: frontend/src/pages/Batches.vue:321 lms/lms/doctype/lms_badge/lms_badge.json
msgid "All"
msgstr "Alle"
@@ -486,7 +486,7 @@ msgstr "Genehmigt"
msgid "Apps"
msgstr "Apps"
#: frontend/src/pages/Batches.vue:329
#: frontend/src/pages/Batches.vue:331
msgid "Archived"
msgstr "Archiviert"
@@ -753,7 +753,7 @@ msgstr ""
#. Label of the batch_name (Link) field in DocType 'LMS Certificate'
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
#. Label of the batch_name (Link) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:32
#: frontend/src/components/Modals/Event.vue:35
#: frontend/src/components/Settings/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125
@@ -878,7 +878,7 @@ msgid "Batch:"
msgstr "Charge:"
#. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue:350 frontend/src/pages/Batches.vue:357
#: frontend/src/pages/Batches.vue:352 frontend/src/pages/Batches.vue:359
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121
msgid "Batches"
msgstr ""
@@ -1023,7 +1023,7 @@ msgstr "Zertifikatslink"
msgid "Certificate of Completion"
msgstr ""
#: frontend/src/components/Modals/Event.vue:347
#: frontend/src/components/Modals/Event.vue:353
msgid "Certificate saved successfully"
msgstr ""
@@ -1043,7 +1043,7 @@ msgstr ""
#. Label of a chart in the LMS Workspace
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:411
#: frontend/src/components/Modals/Event.vue:427
#: frontend/src/components/Sidebar/AppSidebar.vue:550
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100
#: frontend/src/pages/CourseCertification.vue:10
@@ -1771,7 +1771,7 @@ msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:365 frontend/src/pages/Courses.vue:372
#: frontend/src/pages/Courses.vue:364 frontend/src/pages/Courses.vue:371
#: frontend/src/pages/Programs/ProgramForm.vue:49
#: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1878,7 +1878,7 @@ msgstr ""
msgid "Create your first quiz"
msgstr ""
#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:355
#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:354
msgid "Created"
msgstr "Erstellt"
@@ -1954,7 +1954,7 @@ msgstr "Datenimport"
#. Label of the date (Date) field in DocType 'LMS Certificate Request'
#. Label of the date (Date) field in DocType 'LMS Live Class'
#. Label of the date (Date) field in DocType 'Scheduled Flow'
#: frontend/src/components/Modals/Event.vue:40
#: frontend/src/components/Modals/Event.vue:46
#: frontend/src/components/Modals/LiveClassModal.vue:29
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -2241,7 +2241,7 @@ msgstr ""
msgid "Edit Email Template"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:13
msgid "Edit Payment Gateway"
msgstr ""
@@ -2424,7 +2424,7 @@ msgstr ""
msgid "Enroll Now"
msgstr ""
#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:358
#: frontend/src/pages/Batches.vue:334 frontend/src/pages/Courses.vue:357
#: frontend/src/pages/Programs/StudentPrograms.vue:96
msgid "Enrolled"
msgstr ""
@@ -2526,7 +2526,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json
#: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json
msgid "Evaluation"
msgstr "Beurteilung"
@@ -2551,7 +2551,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date."
msgstr ""
#: frontend/src/components/Modals/Event.vue:286
#: frontend/src/components/Modals/Event.vue:292
msgid "Evaluation saved successfully"
msgstr ""
@@ -2664,7 +2664,7 @@ msgstr "Verfällt am"
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:144
#: frontend/src/components/Modals/Event.vue:150
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date"
msgstr "Verfallsdatum"
@@ -2695,7 +2695,7 @@ msgstr "Mehr entdecken"
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:396
#: frontend/src/components/Modals/Event.vue:412
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail"
@@ -3209,7 +3209,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:388
#: frontend/src/components/Modals/Event.vue:404
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "In Progress"
@@ -3353,7 +3353,7 @@ msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:138
#: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date"
@@ -3456,7 +3456,7 @@ msgstr "Beitreten"
msgid "Join Call"
msgstr ""
#: frontend/src/components/Modals/Event.vue:78
#: frontend/src/components/Modals/Event.vue:84
msgid "Join Meeting"
msgstr ""
@@ -3896,7 +3896,7 @@ msgstr "LinkedIn"
msgid "LinkedIn ID"
msgstr ""
#: frontend/src/pages/Courses.vue:341
#: frontend/src/pages/Courses.vue:340
msgid "Live"
msgstr ""
@@ -4429,7 +4429,7 @@ msgstr "Name"
#: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17
#: frontend/src/pages/Courses.vue:344
#: frontend/src/pages/Courses.vue:343
#: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New"
@@ -4461,7 +4461,7 @@ msgstr ""
msgid "New Job Applicant"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:12
msgid "New Payment Gateway"
msgstr ""
@@ -4778,14 +4778,9 @@ msgstr ""
#: frontend/src/components/UserAvatar.vue:11
#: frontend/src/pages/CertifiedParticipants.vue:46
#: frontend/src/pages/Profile.vue:69
msgid "Open to Opportunities"
msgid "Open to Work"
msgstr ""
#. Option for the 'Open to' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Opportunities"
msgstr "Chancen"
#. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:70
#: lms/lms/doctype/lms_option/lms_option.json
@@ -4924,7 +4919,7 @@ msgstr "Teilweise abgeschlossen"
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:392
#: frontend/src/components/Modals/Event.vue:408
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass"
@@ -5054,7 +5049,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:384
#: frontend/src/components/Modals/Event.vue:400
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending"
@@ -5194,7 +5189,7 @@ msgstr "Bitte melden Sie sich an, um auf diese Seite zuzugreifen."
msgid "Please login to continue with payment."
msgstr "Bitte loggen Sie sich ein, um mit der Zahlung fortzufahren."
#: lms/lms/utils.py:2081
#: lms/lms/utils.py:2082
msgid "Please login to enroll in the program."
msgstr ""
@@ -5525,7 +5520,7 @@ msgstr "Auf der Teilnehmerseite veröffentlichen"
#. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:122
#: frontend/src/components/Modals/Event.vue:128
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105
#: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5693,7 +5688,7 @@ msgstr ""
#. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/Event.vue:98
#: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -5929,14 +5924,14 @@ msgstr "Samstag"
#: frontend/src/components/Modals/AssignmentForm.vue:65
#: frontend/src/components/Modals/EditProfile.vue:121
#: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:157
#: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/Coupons/CouponDetails.vue:78
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:41
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:129
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
@@ -6048,7 +6043,7 @@ msgstr ""
msgid "Select Date"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:26
msgid "Select Payment Gateway"
msgstr ""
@@ -6364,7 +6359,7 @@ msgstr "Statistiken"
#. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Modals/Event.vue:105
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6475,7 +6470,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:106
#: frontend/src/components/Modals/Event.vue:112
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary"
msgstr "Zusammenfassung"
@@ -6571,7 +6566,7 @@ msgstr ""
#. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:127
#: frontend/src/components/Modals/Event.vue:133
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template"
msgstr "Vorlage"
@@ -6620,7 +6615,7 @@ msgstr ""
msgid "Thanks and Regards"
msgstr "Danke und Grüße"
#: lms/lms/utils.py:2247
#: lms/lms/utils.py:2248
msgid "The batch does not exist."
msgstr ""
@@ -6628,7 +6623,7 @@ msgstr ""
msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session."
msgstr ""
#: lms/lms/utils.py:1747
#: lms/lms/utils.py:1748
msgid "The coupon code '{0}' is invalid."
msgstr ""
@@ -6652,7 +6647,7 @@ msgstr ""
msgid "The last day to schedule your evaluations is "
msgstr ""
#: lms/lms/utils.py:2231
#: lms/lms/utils.py:2232
msgid "The lesson does not exist."
msgstr ""
@@ -6660,7 +6655,7 @@ msgstr ""
msgid "The slot is already booked by another participant."
msgstr "Der Platz ist bereits von einem anderen Teilnehmer gebucht."
#: lms/lms/utils.py:1361 lms/lms/utils.py:1477 lms/lms/utils.py:1944
#: lms/lms/utils.py:1362 lms/lms/utils.py:1478 lms/lms/utils.py:1945
msgid "The specified batch does not exist."
msgstr ""
@@ -6726,15 +6721,15 @@ msgstr "Dieses Zertifikat läuft nicht ab"
msgid "This class has ended"
msgstr ""
#: lms/lms/utils.py:1776
#: lms/lms/utils.py:1777
msgid "This coupon has expired."
msgstr ""
#: lms/lms/utils.py:1779
#: lms/lms/utils.py:1780
msgid "This coupon has reached its maximum usage limit."
msgstr ""
#: lms/lms/utils.py:1788
#: lms/lms/utils.py:1789
msgid "This coupon is not applicable to this {0}."
msgstr ""
@@ -6742,7 +6737,7 @@ msgstr ""
msgid "This course has:"
msgstr ""
#: lms/lms/utils.py:1707
#: lms/lms/utils.py:1708
msgid "This course is free."
msgstr "Dieser Kurs ist kostenlos."
@@ -6799,7 +6794,7 @@ msgid "Thursday"
msgstr "Donnerstag"
#. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48
#: frontend/src/components/Modals/Event.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Quiz.vue:58
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -6934,7 +6929,7 @@ msgstr "An"
msgid "To Date"
msgstr "Bis-Datum"
#: lms/lms/utils.py:1721
#: lms/lms/utils.py:1722
msgid "To join this batch, please contact the Administrator."
msgstr "Um dieser Gruppe beizutreten, wenden Sie sich bitte an den Administrator."
@@ -7056,7 +7051,7 @@ msgstr "Das Datum „Nicht verfügbar ab“ kann nicht größer sein als das Dat
msgid "Under Review"
msgstr "Wird überprüft"
#: frontend/src/pages/Batches.vue:330 frontend/src/pages/Courses.vue:356
#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:355
msgid "Unpublished"
msgstr ""
@@ -7077,8 +7072,8 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
#. Label of the upcoming (Check) field in DocType 'LMS Course'
#: frontend/src/pages/Batches.vue:328 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:347
#: frontend/src/pages/Batches.vue:330 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:346
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming"
@@ -7220,7 +7215,7 @@ msgid "View Applications"
msgstr ""
#: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67
#: frontend/src/components/Modals/Event.vue:73
msgid "View Certificate"
msgstr ""
@@ -7327,6 +7322,11 @@ msgstr ""
msgid "Withdrawn"
msgstr "Zurückgezogen"
#. Option for the 'Open to' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Work"
msgstr ""
#. Label of the work_environment (Section Break) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Work Environment"
@@ -7427,7 +7427,7 @@ msgstr ""
msgid "You cannot enroll in an unpublished course."
msgstr ""
#: lms/lms/utils.py:2085
#: lms/lms/utils.py:2086
msgid "You cannot enroll in an unpublished program."
msgstr ""
@@ -7443,11 +7443,11 @@ msgstr ""
msgid "You cannot schedule evaluations for past slots."
msgstr ""
#: lms/lms/utils.py:2259
#: lms/lms/utils.py:2260
msgid "You do not have access to this batch."
msgstr ""
#: lms/lms/utils.py:2242
#: lms/lms/utils.py:2243
msgid "You do not have access to this course."
msgstr ""
+59 -59
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2026-01-16 16:04+0000\n"
"PO-Revision-Date: 2026-01-19 20:13\n"
"POT-Creation-Date: 2026-01-23 16:05+0000\n"
"PO-Revision-Date: 2026-02-05 06:43\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Esperanto\n"
"MIME-Version: 1.0\n"
@@ -319,7 +319,7 @@ msgid "Administrator"
msgstr "crwdns160952:0crwdne160952:0"
#. Name of a role
#: frontend/src/pages/Batches.vue:319 lms/lms/doctype/lms_badge/lms_badge.json
#: frontend/src/pages/Batches.vue:321 lms/lms/doctype/lms_badge/lms_badge.json
msgid "All"
msgstr "crwdns149250:0crwdne149250:0"
@@ -486,7 +486,7 @@ msgstr "crwdns149292:0crwdne149292:0"
msgid "Apps"
msgstr "crwdns149294:0crwdne149294:0"
#: frontend/src/pages/Batches.vue:329
#: frontend/src/pages/Batches.vue:331
msgid "Archived"
msgstr "crwdns152268:0crwdne152268:0"
@@ -753,7 +753,7 @@ msgstr "crwdns162040:0{0}crwdnd162040:0{1}crwdne162040:0"
#. Label of the batch_name (Link) field in DocType 'LMS Certificate'
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
#. Label of the batch_name (Link) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:32
#: frontend/src/components/Modals/Event.vue:35
#: frontend/src/components/Settings/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125
@@ -878,7 +878,7 @@ msgid "Batch:"
msgstr "crwdns152469:0crwdne152469:0"
#. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue:350 frontend/src/pages/Batches.vue:357
#: frontend/src/pages/Batches.vue:352 frontend/src/pages/Batches.vue:359
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121
msgid "Batches"
msgstr "crwdns149380:0crwdne149380:0"
@@ -1023,7 +1023,7 @@ msgstr "crwdns149424:0crwdne149424:0"
msgid "Certificate of Completion"
msgstr "crwdns152601:0crwdne152601:0"
#: frontend/src/components/Modals/Event.vue:347
#: frontend/src/components/Modals/Event.vue:353
msgid "Certificate saved successfully"
msgstr "crwdns149426:0crwdne149426:0"
@@ -1043,7 +1043,7 @@ msgstr "crwdns151924:0crwdne151924:0"
#. Label of a chart in the LMS Workspace
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:411
#: frontend/src/components/Modals/Event.vue:427
#: frontend/src/components/Sidebar/AppSidebar.vue:550
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100
#: frontend/src/pages/CourseCertification.vue:10
@@ -1771,7 +1771,7 @@ msgstr "crwdns161520:0{0}crwdne161520:0"
#: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:365 frontend/src/pages/Courses.vue:372
#: frontend/src/pages/Courses.vue:364 frontend/src/pages/Courses.vue:371
#: frontend/src/pages/Programs/ProgramForm.vue:49
#: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1878,7 +1878,7 @@ msgstr "crwdns154451:0crwdne154451:0"
msgid "Create your first quiz"
msgstr "crwdns154453:0crwdne154453:0"
#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:355
#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:354
msgid "Created"
msgstr "crwdns152116:0crwdne152116:0"
@@ -1954,7 +1954,7 @@ msgstr "crwdns161522:0crwdne161522:0"
#. Label of the date (Date) field in DocType 'LMS Certificate Request'
#. Label of the date (Date) field in DocType 'LMS Live Class'
#. Label of the date (Date) field in DocType 'Scheduled Flow'
#: frontend/src/components/Modals/Event.vue:40
#: frontend/src/components/Modals/Event.vue:46
#: frontend/src/components/Modals/LiveClassModal.vue:29
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -2241,7 +2241,7 @@ msgstr "crwdns160986:0crwdne160986:0"
msgid "Edit Email Template"
msgstr "crwdns155182:0crwdne155182:0"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:13
msgid "Edit Payment Gateway"
msgstr "crwdns159752:0crwdne159752:0"
@@ -2424,7 +2424,7 @@ msgstr "crwdns158508:0crwdne158508:0"
msgid "Enroll Now"
msgstr "crwdns149722:0crwdne149722:0"
#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:358
#: frontend/src/pages/Batches.vue:334 frontend/src/pages/Courses.vue:357
#: frontend/src/pages/Programs/StudentPrograms.vue:96
msgid "Enrolled"
msgstr "crwdns152272:0crwdne152272:0"
@@ -2526,7 +2526,7 @@ msgstr "crwdns155194:0crwdne155194:0"
#. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json
#: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json
msgid "Evaluation"
msgstr "crwdns149746:0crwdne149746:0"
@@ -2551,7 +2551,7 @@ msgstr "crwdns149752:0crwdne149752:0"
msgid "Evaluation end date cannot be less than the batch end date."
msgstr "crwdns149754:0crwdne149754:0"
#: frontend/src/components/Modals/Event.vue:286
#: frontend/src/components/Modals/Event.vue:292
msgid "Evaluation saved successfully"
msgstr "crwdns149756:0crwdne149756:0"
@@ -2664,7 +2664,7 @@ msgstr "crwdns160990:0crwdne160990:0"
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:144
#: frontend/src/components/Modals/Event.vue:150
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date"
msgstr "crwdns149780:0crwdne149780:0"
@@ -2695,7 +2695,7 @@ msgstr "crwdns149786:0crwdne149786:0"
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:396
#: frontend/src/components/Modals/Event.vue:412
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail"
@@ -3209,7 +3209,7 @@ msgstr "crwdns161528:0crwdne161528:0"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:388
#: frontend/src/components/Modals/Event.vue:404
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "In Progress"
@@ -3353,7 +3353,7 @@ msgstr "crwdns151636:0crwdne151636:0"
#. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:138
#: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date"
@@ -3456,7 +3456,7 @@ msgstr "crwdns149996:0crwdne149996:0"
msgid "Join Call"
msgstr "crwdns152499:0crwdne152499:0"
#: frontend/src/components/Modals/Event.vue:78
#: frontend/src/components/Modals/Event.vue:84
msgid "Join Meeting"
msgstr "crwdns149998:0crwdne149998:0"
@@ -3896,7 +3896,7 @@ msgstr "crwdns150098:0crwdne150098:0"
msgid "LinkedIn ID"
msgstr "crwdns150100:0crwdne150100:0"
#: frontend/src/pages/Courses.vue:341
#: frontend/src/pages/Courses.vue:340
msgid "Live"
msgstr "crwdns150106:0crwdne150106:0"
@@ -4429,7 +4429,7 @@ msgstr "crwdns155198:0crwdne155198:0"
#: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17
#: frontend/src/pages/Courses.vue:344
#: frontend/src/pages/Courses.vue:343
#: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New"
@@ -4461,7 +4461,7 @@ msgstr "crwdns150222:0crwdne150222:0"
msgid "New Job Applicant"
msgstr "crwdns150224:0crwdne150224:0"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:12
msgid "New Payment Gateway"
msgstr "crwdns159762:0crwdne159762:0"
@@ -4778,13 +4778,8 @@ msgstr "crwdns164070:0crwdne164070:0"
#: frontend/src/components/UserAvatar.vue:11
#: frontend/src/pages/CertifiedParticipants.vue:46
#: frontend/src/pages/Profile.vue:69
msgid "Open to Opportunities"
msgstr "crwdns163998:0crwdne163998:0"
#. Option for the 'Open to' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Opportunities"
msgstr "crwdns164072:0crwdne164072:0"
msgid "Open to Work"
msgstr "crwdns194934:0crwdne194934:0"
#. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:70
@@ -4924,7 +4919,7 @@ msgstr "crwdns150360:0crwdne150360:0"
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:392
#: frontend/src/components/Modals/Event.vue:408
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass"
@@ -5054,7 +5049,7 @@ msgstr "crwdns150388:0crwdne150388:0"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:384
#: frontend/src/components/Modals/Event.vue:400
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending"
@@ -5194,7 +5189,7 @@ msgstr "crwdns150426:0crwdne150426:0"
msgid "Please login to continue with payment."
msgstr "crwdns150428:0crwdne150428:0"
#: lms/lms/utils.py:2081
#: lms/lms/utils.py:2082
msgid "Please login to enroll in the program."
msgstr "crwdns158528:0crwdne158528:0"
@@ -5525,7 +5520,7 @@ msgstr "crwdns150494:0crwdne150494:0"
#. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:122
#: frontend/src/components/Modals/Event.vue:128
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105
#: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5693,7 +5688,7 @@ msgstr "crwdns155298:0crwdne155298:0"
#. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/Event.vue:98
#: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -5929,14 +5924,14 @@ msgstr "crwdns150610:0crwdne150610:0"
#: frontend/src/components/Modals/AssignmentForm.vue:65
#: frontend/src/components/Modals/EditProfile.vue:121
#: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:157
#: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/Coupons/CouponDetails.vue:78
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:41
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:129
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
@@ -6048,7 +6043,7 @@ msgstr "crwdns159374:0crwdne159374:0"
msgid "Select Date"
msgstr "crwdns155902:0crwdne155902:0"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:26
msgid "Select Payment Gateway"
msgstr "crwdns159776:0crwdne159776:0"
@@ -6364,7 +6359,7 @@ msgstr "crwdns150732:0crwdne150732:0"
#. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Modals/Event.vue:105
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6475,7 +6470,7 @@ msgstr "crwdns158542:0crwdne158542:0"
#. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:106
#: frontend/src/components/Modals/Event.vue:112
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary"
msgstr "crwdns150770:0crwdne150770:0"
@@ -6571,7 +6566,7 @@ msgstr "crwdns150780:0crwdne150780:0"
#. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:127
#: frontend/src/components/Modals/Event.vue:133
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template"
msgstr "crwdns150782:0crwdne150782:0"
@@ -6620,7 +6615,7 @@ msgstr "crwdns155204:0crwdne155204:0"
msgid "Thanks and Regards"
msgstr "crwdns150794:0crwdne150794:0"
#: lms/lms/utils.py:2247
#: lms/lms/utils.py:2248
msgid "The batch does not exist."
msgstr "crwdns162058:0crwdne162058:0"
@@ -6628,7 +6623,7 @@ msgstr "crwdns162058:0crwdne162058:0"
msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session."
msgstr "crwdns152517:0crwdne152517:0"
#: lms/lms/utils.py:1747
#: lms/lms/utils.py:1748
msgid "The coupon code '{0}' is invalid."
msgstr "crwdns161020:0{0}crwdne161020:0"
@@ -6652,7 +6647,7 @@ msgstr "crwdns164126:0{0}crwdne164126:0"
msgid "The last day to schedule your evaluations is "
msgstr "crwdns164012:0crwdne164012:0"
#: lms/lms/utils.py:2231
#: lms/lms/utils.py:2232
msgid "The lesson does not exist."
msgstr "crwdns162060:0crwdne162060:0"
@@ -6660,7 +6655,7 @@ msgstr "crwdns162060:0crwdne162060:0"
msgid "The slot is already booked by another participant."
msgstr "crwdns150802:0crwdne150802:0"
#: lms/lms/utils.py:1361 lms/lms/utils.py:1477 lms/lms/utils.py:1944
#: lms/lms/utils.py:1362 lms/lms/utils.py:1478 lms/lms/utils.py:1945
msgid "The specified batch does not exist."
msgstr "crwdns162062:0crwdne162062:0"
@@ -6726,15 +6721,15 @@ msgstr "crwdns150818:0crwdne150818:0"
msgid "This class has ended"
msgstr "crwdns152144:0crwdne152144:0"
#: lms/lms/utils.py:1776
#: lms/lms/utils.py:1777
msgid "This coupon has expired."
msgstr "crwdns161022:0crwdne161022:0"
#: lms/lms/utils.py:1779
#: lms/lms/utils.py:1780
msgid "This coupon has reached its maximum usage limit."
msgstr "crwdns161024:0crwdne161024:0"
#: lms/lms/utils.py:1788
#: lms/lms/utils.py:1789
msgid "This coupon is not applicable to this {0}."
msgstr "crwdns161026:0{0}crwdne161026:0"
@@ -6742,7 +6737,7 @@ msgstr "crwdns161026:0{0}crwdne161026:0"
msgid "This course has:"
msgstr "crwdns150820:0crwdne150820:0"
#: lms/lms/utils.py:1707
#: lms/lms/utils.py:1708
msgid "This course is free."
msgstr "crwdns150822:0crwdne150822:0"
@@ -6799,7 +6794,7 @@ msgid "Thursday"
msgstr "crwdns150832:0crwdne150832:0"
#. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48
#: frontend/src/components/Modals/Event.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Quiz.vue:58
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -6934,7 +6929,7 @@ msgstr "crwdns150852:0crwdne150852:0"
msgid "To Date"
msgstr "crwdns150854:0crwdne150854:0"
#: lms/lms/utils.py:1721
#: lms/lms/utils.py:1722
msgid "To join this batch, please contact the Administrator."
msgstr "crwdns150858:0crwdne150858:0"
@@ -7056,7 +7051,7 @@ msgstr "crwdns150888:0crwdne150888:0"
msgid "Under Review"
msgstr "crwdns150890:0crwdne150890:0"
#: frontend/src/pages/Batches.vue:330 frontend/src/pages/Courses.vue:356
#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:355
msgid "Unpublished"
msgstr "crwdns152296:0crwdne152296:0"
@@ -7077,8 +7072,8 @@ msgstr "crwdns150898:0crwdne150898:0"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
#. Label of the upcoming (Check) field in DocType 'LMS Course'
#: frontend/src/pages/Batches.vue:328 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:347
#: frontend/src/pages/Batches.vue:330 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:346
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming"
@@ -7220,7 +7215,7 @@ msgid "View Applications"
msgstr "crwdns160738:0crwdne160738:0"
#: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67
#: frontend/src/components/Modals/Event.vue:73
msgid "View Certificate"
msgstr "crwdns150940:0crwdne150940:0"
@@ -7327,6 +7322,11 @@ msgstr "crwdns150962:0crwdne150962:0"
msgid "Withdrawn"
msgstr "crwdns150964:0crwdne150964:0"
#. Option for the 'Open to' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Work"
msgstr "crwdns194936:0crwdne194936:0"
#. Label of the work_environment (Section Break) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Work Environment"
@@ -7427,7 +7427,7 @@ msgstr "crwdns154792:0crwdne154792:0"
msgid "You cannot enroll in an unpublished course."
msgstr "crwdns162070:0crwdne162070:0"
#: lms/lms/utils.py:2085
#: lms/lms/utils.py:2086
msgid "You cannot enroll in an unpublished program."
msgstr "crwdns162072:0crwdne162072:0"
@@ -7443,11 +7443,11 @@ msgstr "crwdns150996:0{0}crwdne150996:0"
msgid "You cannot schedule evaluations for past slots."
msgstr "crwdns150998:0crwdne150998:0"
#: lms/lms/utils.py:2259
#: lms/lms/utils.py:2260
msgid "You do not have access to this batch."
msgstr "crwdns162076:0crwdne162076:0"
#: lms/lms/utils.py:2242
#: lms/lms/utils.py:2243
msgid "You do not have access to this course."
msgstr "crwdns162078:0crwdne162078:0"
+71 -71
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2026-01-16 16:04+0000\n"
"PO-Revision-Date: 2026-01-21 20:16\n"
"POT-Creation-Date: 2026-01-23 16:05+0000\n"
"PO-Revision-Date: 2026-02-05 06:43\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Spanish\n"
"MIME-Version: 1.0\n"
@@ -319,7 +319,7 @@ msgid "Administrator"
msgstr "Administrador"
#. Name of a role
#: frontend/src/pages/Batches.vue:319 lms/lms/doctype/lms_badge/lms_badge.json
#: frontend/src/pages/Batches.vue:321 lms/lms/doctype/lms_badge/lms_badge.json
msgid "All"
msgstr "Todos"
@@ -486,7 +486,7 @@ msgstr "Aprobado"
msgid "Apps"
msgstr "Apps"
#: frontend/src/pages/Batches.vue:329
#: frontend/src/pages/Batches.vue:331
msgid "Archived"
msgstr "Archivado"
@@ -753,7 +753,7 @@ msgstr ""
#. Label of the batch_name (Link) field in DocType 'LMS Certificate'
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
#. Label of the batch_name (Link) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:32
#: frontend/src/components/Modals/Event.vue:35
#: frontend/src/components/Settings/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125
@@ -878,7 +878,7 @@ msgid "Batch:"
msgstr "Lote:"
#. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue:350 frontend/src/pages/Batches.vue:357
#: frontend/src/pages/Batches.vue:352 frontend/src/pages/Batches.vue:359
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121
msgid "Batches"
msgstr "Lotes"
@@ -1023,7 +1023,7 @@ msgstr "Enlace de certificado"
msgid "Certificate of Completion"
msgstr ""
#: frontend/src/components/Modals/Event.vue:347
#: frontend/src/components/Modals/Event.vue:353
msgid "Certificate saved successfully"
msgstr "Certificado guardado correctamente"
@@ -1043,7 +1043,7 @@ msgstr ""
#. Label of a chart in the LMS Workspace
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:411
#: frontend/src/components/Modals/Event.vue:427
#: frontend/src/components/Sidebar/AppSidebar.vue:550
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100
#: frontend/src/pages/CourseCertification.vue:10
@@ -1771,7 +1771,7 @@ msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:365 frontend/src/pages/Courses.vue:372
#: frontend/src/pages/Courses.vue:364 frontend/src/pages/Courses.vue:371
#: frontend/src/pages/Programs/ProgramForm.vue:49
#: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1878,7 +1878,7 @@ msgstr ""
msgid "Create your first quiz"
msgstr ""
#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:355
#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:354
msgid "Created"
msgstr "Creado"
@@ -1899,7 +1899,7 @@ msgstr ""
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Currency"
msgstr "Divisa / Moneda"
msgstr "Divisa"
#. Label of the current_lesson (Link) field in DocType 'LMS Enrollment'
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
@@ -1954,7 +1954,7 @@ msgstr "Importación de Datos"
#. Label of the date (Date) field in DocType 'LMS Certificate Request'
#. Label of the date (Date) field in DocType 'LMS Live Class'
#. Label of the date (Date) field in DocType 'Scheduled Flow'
#: frontend/src/components/Modals/Event.vue:40
#: frontend/src/components/Modals/Event.vue:46
#: frontend/src/components/Modals/LiveClassModal.vue:29
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -2086,7 +2086,7 @@ msgstr ""
#: lms/lms/doctype/lms_live_class/lms_live_class.json
#: lms/lms/doctype/work_experience/work_experience.json
msgid "Description"
msgstr ""
msgstr "Descripción"
#: frontend/src/components/Sidebar/Apps.vue:50
msgid "Desk"
@@ -2195,7 +2195,7 @@ msgstr "Se encontraron opciones duplicadas para esta pregunta."
#: lms/lms/doctype/lms_live_class/lms_live_class.json
#: lms/lms/doctype/lms_live_class_participant/lms_live_class_participant.json
msgid "Duration"
msgstr ""
msgstr "Duración"
#. Label of the duration (Data) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:67 lms/lms/doctype/lms_quiz/lms_quiz.json
@@ -2241,7 +2241,7 @@ msgstr ""
msgid "Edit Email Template"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:13
msgid "Edit Payment Gateway"
msgstr ""
@@ -2424,7 +2424,7 @@ msgstr ""
msgid "Enroll Now"
msgstr "Inscribirse ahora"
#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:358
#: frontend/src/pages/Batches.vue:334 frontend/src/pages/Courses.vue:357
#: frontend/src/pages/Programs/StudentPrograms.vue:96
msgid "Enrolled"
msgstr ""
@@ -2526,7 +2526,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json
#: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json
msgid "Evaluation"
msgstr "Evaluación"
@@ -2551,7 +2551,7 @@ msgstr "Solicitud de evaluación"
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"
#: frontend/src/components/Modals/Event.vue:286
#: frontend/src/components/Modals/Event.vue:292
msgid "Evaluation saved successfully"
msgstr "La evaluación se guardó correctamente"
@@ -2664,7 +2664,7 @@ msgstr ""
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:144
#: frontend/src/components/Modals/Event.vue:150
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date"
msgstr "Fecha de caducidad"
@@ -2695,7 +2695,7 @@ msgstr "Explorar más"
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:396
#: frontend/src/components/Modals/Event.vue:412
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail"
@@ -3183,7 +3183,7 @@ msgstr "Si desea preguntas abiertas, asegúrese de que cada pregunta del cuestio
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge/lms_badge.json
msgid "Image"
msgstr ""
msgstr "Imagen"
#: frontend/src/components/Modals/EditCoverImage.vue:58
#: frontend/src/components/UnsplashImageBrowser.vue:52
@@ -3209,7 +3209,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:388
#: frontend/src/components/Modals/Event.vue:404
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "In Progress"
@@ -3353,7 +3353,7 @@ msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:138
#: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date"
@@ -3391,7 +3391,7 @@ msgstr "María Pérez"
#. Exercise'
#: lms/lms/doctype/lms_programming_exercise/lms_programming_exercise.json
msgid "JavaScript"
msgstr ""
msgstr "JavaScript"
#. Label of the job (Link) field in DocType 'LMS Job Application'
#: frontend/src/pages/Search/Search.vue:237
@@ -3456,7 +3456,7 @@ msgstr "Unirse"
msgid "Join Call"
msgstr ""
#: frontend/src/components/Modals/Event.vue:78
#: frontend/src/components/Modals/Event.vue:84
msgid "Join Meeting"
msgstr "Unirse a la reunión"
@@ -3896,7 +3896,7 @@ msgstr "Linkedin"
msgid "LinkedIn ID"
msgstr "ID de LinkedIn"
#: frontend/src/pages/Courses.vue:341
#: frontend/src/pages/Courses.vue:340
msgid "Live"
msgstr "En vivo"
@@ -4417,7 +4417,7 @@ msgstr "Mi calendario"
#: frontend/src/components/Modals/EmailTemplateModal.vue:24
msgid "Name"
msgstr ""
msgstr "Nombre"
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
#: frontend/src/components/Settings/BadgeAssignments.vue:21
@@ -4429,7 +4429,7 @@ msgstr ""
#: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17
#: frontend/src/pages/Courses.vue:344
#: frontend/src/pages/Courses.vue:343
#: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New"
@@ -4461,7 +4461,7 @@ msgstr "Nuevo trabajo"
msgid "New Job Applicant"
msgstr "Nuevo solicitante de trabajo"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:12
msgid "New Payment Gateway"
msgstr ""
@@ -4778,14 +4778,9 @@ msgstr ""
#: frontend/src/components/UserAvatar.vue:11
#: frontend/src/pages/CertifiedParticipants.vue:46
#: frontend/src/pages/Profile.vue:69
msgid "Open to Opportunities"
msgid "Open to Work"
msgstr ""
#. Option for the 'Open to' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Opportunities"
msgstr "Oportunidades"
#. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:70
#: lms/lms/doctype/lms_option/lms_option.json
@@ -4924,7 +4919,7 @@ msgstr "Parcialmente completo"
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:392
#: frontend/src/components/Modals/Event.vue:408
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass"
@@ -5054,7 +5049,7 @@ msgstr "La aplicación de pagos no está instalada"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:384
#: frontend/src/components/Modals/Event.vue:400
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending"
@@ -5194,7 +5189,7 @@ msgstr "Por favor inicie sesión para acceder a esta página."
msgid "Please login to continue with payment."
msgstr "Por favor inicie sesión para continuar con el pago."
#: lms/lms/utils.py:2081
#: lms/lms/utils.py:2082
msgid "Please login to enroll in the program."
msgstr ""
@@ -5525,7 +5520,7 @@ msgstr "Publicar en la página del participante"
#. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:122
#: frontend/src/components/Modals/Event.vue:128
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105
#: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5563,7 +5558,7 @@ msgstr "Morado"
#. Exercise'
#: lms/lms/doctype/lms_programming_exercise/lms_programming_exercise.json
msgid "Python"
msgstr ""
msgstr "Python"
#. Label of the question (Small Text) field in DocType 'Course Lesson'
#. Label of the question (Text Editor) field in DocType 'LMS Assignment'
@@ -5693,13 +5688,13 @@ msgstr ""
#. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/Event.vue:98
#: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_course_review/lms_course_review.json
msgid "Rating"
msgstr ""
msgstr "Clasificación"
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.py:18
msgid "Rating cannot be 0"
@@ -5929,14 +5924,14 @@ msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:65
#: frontend/src/components/Modals/EditProfile.vue:121
#: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:157
#: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/Coupons/CouponDetails.vue:78
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:41
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:129
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
@@ -6048,7 +6043,7 @@ msgstr ""
msgid "Select Date"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:26
msgid "Select Payment Gateway"
msgstr ""
@@ -6114,7 +6109,7 @@ msgstr ""
#: frontend/src/components/Controls/ColorSwatches.vue:13
msgid "Set Color"
msgstr ""
msgstr "Establecer Color"
#: lms/templates/emails/community_course_membership.html:1
msgid "Set your Password"
@@ -6364,7 +6359,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Modals/Event.vue:105
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6475,7 +6470,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:106
#: frontend/src/components/Modals/Event.vue:112
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary"
msgstr "Resumen"
@@ -6571,7 +6566,7 @@ msgstr "Trabajo en equipo"
#. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:127
#: frontend/src/components/Modals/Event.vue:133
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template"
msgstr ""
@@ -6607,7 +6602,7 @@ msgstr ""
#: lms/lms/doctype/lms_assignment/lms_assignment.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
msgid "Text"
msgstr ""
msgstr "Texto"
#: frontend/src/components/BatchFeedback.vue:6
msgid "Thank you for providing your feedback."
@@ -6620,7 +6615,7 @@ msgstr ""
msgid "Thanks and Regards"
msgstr "Gracias y saludos"
#: lms/lms/utils.py:2247
#: lms/lms/utils.py:2248
msgid "The batch does not exist."
msgstr ""
@@ -6628,7 +6623,7 @@ msgstr ""
msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session."
msgstr ""
#: lms/lms/utils.py:1747
#: lms/lms/utils.py:1748
msgid "The coupon code '{0}' is invalid."
msgstr ""
@@ -6652,7 +6647,7 @@ msgstr ""
msgid "The last day to schedule your evaluations is "
msgstr ""
#: lms/lms/utils.py:2231
#: lms/lms/utils.py:2232
msgid "The lesson does not exist."
msgstr ""
@@ -6660,7 +6655,7 @@ msgstr ""
msgid "The slot is already booked by another participant."
msgstr "La plaza ya está reservada por otro participante."
#: lms/lms/utils.py:1361 lms/lms/utils.py:1477 lms/lms/utils.py:1944
#: lms/lms/utils.py:1362 lms/lms/utils.py:1478 lms/lms/utils.py:1945
msgid "The specified batch does not exist."
msgstr ""
@@ -6726,15 +6721,15 @@ msgstr "Este certificado no caduca"
msgid "This class has ended"
msgstr ""
#: lms/lms/utils.py:1776
#: lms/lms/utils.py:1777
msgid "This coupon has expired."
msgstr ""
#: lms/lms/utils.py:1779
#: lms/lms/utils.py:1780
msgid "This coupon has reached its maximum usage limit."
msgstr ""
#: lms/lms/utils.py:1788
#: lms/lms/utils.py:1789
msgid "This coupon is not applicable to this {0}."
msgstr ""
@@ -6742,7 +6737,7 @@ msgstr ""
msgid "This course has:"
msgstr "Este curso tiene:"
#: lms/lms/utils.py:1707
#: lms/lms/utils.py:1708
msgid "This course is free."
msgstr "Este curso es gratuito."
@@ -6799,7 +6794,7 @@ msgid "Thursday"
msgstr ""
#. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48
#: frontend/src/components/Modals/Event.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Quiz.vue:58
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -6934,7 +6929,7 @@ msgstr ""
msgid "To Date"
msgstr ""
#: lms/lms/utils.py:1721
#: lms/lms/utils.py:1722
msgid "To join this batch, please contact the Administrator."
msgstr "Para unirse a este lote, comuníquese con el Administrador."
@@ -7010,7 +7005,7 @@ msgstr ""
#: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json
#: lms/templates/assessments.html:14
msgid "Type"
msgstr ""
msgstr "Tipo"
#: frontend/src/utils/markdownParser.js:11
msgid "Type '/' for commands or select text to format"
@@ -7030,7 +7025,7 @@ msgstr "Calificación de Reino Unido (ej., 1º, 2:2)"
#: lms/lms/doctype/lms_assignment/lms_assignment.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
msgid "URL"
msgstr ""
msgstr "URL"
#. Label of the uuid (Data) field in DocType 'LMS Live Class'
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -7056,7 +7051,7 @@ msgstr "No disponible Desde Fecha no puede ser mayor que No disponible Hasta Fec
msgid "Under Review"
msgstr "En Revisión"
#: frontend/src/pages/Batches.vue:330 frontend/src/pages/Courses.vue:356
#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:355
msgid "Unpublished"
msgstr ""
@@ -7077,8 +7072,8 @@ msgstr "Rol no estructurado"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
#. Label of the upcoming (Check) field in DocType 'LMS Course'
#: frontend/src/pages/Batches.vue:328 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:347
#: frontend/src/pages/Batches.vue:330 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:346
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming"
@@ -7220,7 +7215,7 @@ msgid "View Applications"
msgstr ""
#: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67
#: frontend/src/components/Modals/Event.vue:73
msgid "View Certificate"
msgstr "Ver certificado"
@@ -7327,6 +7322,11 @@ msgstr "Con esta certificación, ahora puede mostrar sus habilidades actualizada
msgid "Withdrawn"
msgstr "Retirado"
#. Option for the 'Open to' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Work"
msgstr ""
#. Label of the work_environment (Section Break) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Work Environment"
@@ -7427,7 +7427,7 @@ msgstr ""
msgid "You cannot enroll in an unpublished course."
msgstr ""
#: lms/lms/utils.py:2085
#: lms/lms/utils.py:2086
msgid "You cannot enroll in an unpublished program."
msgstr ""
@@ -7443,11 +7443,11 @@ msgstr "No puede programar evaluaciones después de {0}."
msgid "You cannot schedule evaluations for past slots."
msgstr "No puede programar evaluaciones para espacios anteriores."
#: lms/lms/utils.py:2259
#: lms/lms/utils.py:2260
msgid "You do not have access to this batch."
msgstr ""
#: lms/lms/utils.py:2242
#: lms/lms/utils.py:2243
msgid "You do not have access to this course."
msgstr ""
@@ -7916,7 +7916,7 @@ msgstr ""
#. Count format of shortcut in the LMS Workspace
#: lms/lms/workspace/lms/lms.json
msgid "{} Active"
msgstr "{} Activo"
msgstr ""
#. Count format of shortcut in the LMS Workspace
#: lms/lms/workspace/lms/lms.json
+59 -59
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2026-01-16 16:04+0000\n"
"PO-Revision-Date: 2026-01-21 20:16\n"
"POT-Creation-Date: 2026-01-23 16:05+0000\n"
"PO-Revision-Date: 2026-02-05 06:43\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Persian\n"
"MIME-Version: 1.0\n"
@@ -319,7 +319,7 @@ msgid "Administrator"
msgstr "ادمین"
#. Name of a role
#: frontend/src/pages/Batches.vue:319 lms/lms/doctype/lms_badge/lms_badge.json
#: frontend/src/pages/Batches.vue:321 lms/lms/doctype/lms_badge/lms_badge.json
msgid "All"
msgstr "همه"
@@ -486,7 +486,7 @@ msgstr "تأیید شده"
msgid "Apps"
msgstr "برنامه‌ها"
#: frontend/src/pages/Batches.vue:329
#: frontend/src/pages/Batches.vue:331
msgid "Archived"
msgstr ""
@@ -753,7 +753,7 @@ msgstr ""
#. Label of the batch_name (Link) field in DocType 'LMS Certificate'
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
#. Label of the batch_name (Link) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:32
#: frontend/src/components/Modals/Event.vue:35
#: frontend/src/components/Settings/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125
@@ -878,7 +878,7 @@ msgid "Batch:"
msgstr "دسته:"
#. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue:350 frontend/src/pages/Batches.vue:357
#: frontend/src/pages/Batches.vue:352 frontend/src/pages/Batches.vue:359
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121
msgid "Batches"
msgstr ""
@@ -1023,7 +1023,7 @@ msgstr "لینک گواهی"
msgid "Certificate of Completion"
msgstr ""
#: frontend/src/components/Modals/Event.vue:347
#: frontend/src/components/Modals/Event.vue:353
msgid "Certificate saved successfully"
msgstr ""
@@ -1043,7 +1043,7 @@ msgstr ""
#. Label of a chart in the LMS Workspace
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:411
#: frontend/src/components/Modals/Event.vue:427
#: frontend/src/components/Sidebar/AppSidebar.vue:550
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100
#: frontend/src/pages/CourseCertification.vue:10
@@ -1454,7 +1454,7 @@ msgstr ""
#. Label of the confirmation_email_template (Link) field in DocType 'LMS Batch'
#: lms/lms/doctype/lms_batch/lms_batch.json
msgid "Confirmation Email Template"
msgstr ""
msgstr "الگوی ایمیل تأیید"
#: lms/lms/doctype/lms_certificate/lms_certificate.py:32
msgid "Congratulations on getting certified!"
@@ -1771,7 +1771,7 @@ msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:365 frontend/src/pages/Courses.vue:372
#: frontend/src/pages/Courses.vue:364 frontend/src/pages/Courses.vue:371
#: frontend/src/pages/Programs/ProgramForm.vue:49
#: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1878,7 +1878,7 @@ msgstr "اولین دوره خود را ایجاد کنید"
msgid "Create your first quiz"
msgstr ""
#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:355
#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:354
msgid "Created"
msgstr "ایجاد شده"
@@ -1954,7 +1954,7 @@ msgstr "درون‌بُرد داده"
#. Label of the date (Date) field in DocType 'LMS Certificate Request'
#. Label of the date (Date) field in DocType 'LMS Live Class'
#. Label of the date (Date) field in DocType 'Scheduled Flow'
#: frontend/src/components/Modals/Event.vue:40
#: frontend/src/components/Modals/Event.vue:46
#: frontend/src/components/Modals/LiveClassModal.vue:29
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -2241,7 +2241,7 @@ msgstr ""
msgid "Edit Email Template"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:13
msgid "Edit Payment Gateway"
msgstr "ویرایش درگاه پرداخت"
@@ -2424,7 +2424,7 @@ msgstr ""
msgid "Enroll Now"
msgstr ""
#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:358
#: frontend/src/pages/Batches.vue:334 frontend/src/pages/Courses.vue:357
#: frontend/src/pages/Programs/StudentPrograms.vue:96
msgid "Enrolled"
msgstr ""
@@ -2526,7 +2526,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json
#: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json
msgid "Evaluation"
msgstr "ارزیابی"
@@ -2551,7 +2551,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date."
msgstr ""
#: frontend/src/components/Modals/Event.vue:286
#: frontend/src/components/Modals/Event.vue:292
msgid "Evaluation saved successfully"
msgstr ""
@@ -2664,7 +2664,7 @@ msgstr ""
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:144
#: frontend/src/components/Modals/Event.vue:150
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date"
msgstr "تاریخ انقضا"
@@ -2695,7 +2695,7 @@ msgstr ""
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:396
#: frontend/src/components/Modals/Event.vue:412
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail"
@@ -3209,7 +3209,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:388
#: frontend/src/components/Modals/Event.vue:404
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "In Progress"
@@ -3353,7 +3353,7 @@ msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:138
#: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date"
@@ -3456,7 +3456,7 @@ msgstr "پیوستن"
msgid "Join Call"
msgstr "پیوستن به تماس"
#: frontend/src/components/Modals/Event.vue:78
#: frontend/src/components/Modals/Event.vue:84
msgid "Join Meeting"
msgstr ""
@@ -3896,7 +3896,7 @@ msgstr "لینکدین"
msgid "LinkedIn ID"
msgstr ""
#: frontend/src/pages/Courses.vue:341
#: frontend/src/pages/Courses.vue:340
msgid "Live"
msgstr "فعال"
@@ -4429,7 +4429,7 @@ msgstr "نام"
#: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17
#: frontend/src/pages/Courses.vue:344
#: frontend/src/pages/Courses.vue:343
#: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New"
@@ -4461,7 +4461,7 @@ msgstr "شغل جدید"
msgid "New Job Applicant"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:12
msgid "New Payment Gateway"
msgstr "درگاه پرداخت جدید"
@@ -4778,14 +4778,9 @@ msgstr ""
#: frontend/src/components/UserAvatar.vue:11
#: frontend/src/pages/CertifiedParticipants.vue:46
#: frontend/src/pages/Profile.vue:69
msgid "Open to Opportunities"
msgid "Open to Work"
msgstr ""
#. Option for the 'Open to' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Opportunities"
msgstr "فرصت ها"
#. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:70
#: lms/lms/doctype/lms_option/lms_option.json
@@ -4924,7 +4919,7 @@ msgstr ""
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:392
#: frontend/src/components/Modals/Event.vue:408
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass"
@@ -5054,7 +5049,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:384
#: frontend/src/components/Modals/Event.vue:400
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending"
@@ -5194,7 +5189,7 @@ msgstr ""
msgid "Please login to continue with payment."
msgstr ""
#: lms/lms/utils.py:2081
#: lms/lms/utils.py:2082
msgid "Please login to enroll in the program."
msgstr ""
@@ -5525,7 +5520,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:122
#: frontend/src/components/Modals/Event.vue:128
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105
#: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5693,7 +5688,7 @@ msgstr ""
#. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/Event.vue:98
#: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -5929,14 +5924,14 @@ msgstr "شنبه"
#: frontend/src/components/Modals/AssignmentForm.vue:65
#: frontend/src/components/Modals/EditProfile.vue:121
#: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:157
#: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/Coupons/CouponDetails.vue:78
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:41
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:129
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
@@ -6048,7 +6043,7 @@ msgstr ""
msgid "Select Date"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:26
msgid "Select Payment Gateway"
msgstr "انتخاب درگاه پرداخت"
@@ -6364,7 +6359,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Modals/Event.vue:105
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6475,7 +6470,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:106
#: frontend/src/components/Modals/Event.vue:112
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary"
msgstr "خلاصه"
@@ -6571,7 +6566,7 @@ msgstr ""
#. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:127
#: frontend/src/components/Modals/Event.vue:133
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template"
msgstr "الگو"
@@ -6620,7 +6615,7 @@ msgstr ""
msgid "Thanks and Regards"
msgstr ""
#: lms/lms/utils.py:2247
#: lms/lms/utils.py:2248
msgid "The batch does not exist."
msgstr ""
@@ -6628,7 +6623,7 @@ msgstr ""
msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session."
msgstr ""
#: lms/lms/utils.py:1747
#: lms/lms/utils.py:1748
msgid "The coupon code '{0}' is invalid."
msgstr ""
@@ -6652,7 +6647,7 @@ msgstr ""
msgid "The last day to schedule your evaluations is "
msgstr ""
#: lms/lms/utils.py:2231
#: lms/lms/utils.py:2232
msgid "The lesson does not exist."
msgstr ""
@@ -6660,7 +6655,7 @@ msgstr ""
msgid "The slot is already booked by another participant."
msgstr ""
#: lms/lms/utils.py:1361 lms/lms/utils.py:1477 lms/lms/utils.py:1944
#: lms/lms/utils.py:1362 lms/lms/utils.py:1478 lms/lms/utils.py:1945
msgid "The specified batch does not exist."
msgstr ""
@@ -6726,15 +6721,15 @@ msgstr ""
msgid "This class has ended"
msgstr "این کلاس به پایان رسید"
#: lms/lms/utils.py:1776
#: lms/lms/utils.py:1777
msgid "This coupon has expired."
msgstr ""
#: lms/lms/utils.py:1779
#: lms/lms/utils.py:1780
msgid "This coupon has reached its maximum usage limit."
msgstr ""
#: lms/lms/utils.py:1788
#: lms/lms/utils.py:1789
msgid "This coupon is not applicable to this {0}."
msgstr ""
@@ -6742,7 +6737,7 @@ msgstr ""
msgid "This course has:"
msgstr ""
#: lms/lms/utils.py:1707
#: lms/lms/utils.py:1708
msgid "This course is free."
msgstr ""
@@ -6799,7 +6794,7 @@ msgid "Thursday"
msgstr "پنج‌شنبه"
#. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48
#: frontend/src/components/Modals/Event.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Quiz.vue:58
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -6934,7 +6929,7 @@ msgstr "به"
msgid "To Date"
msgstr "تا تاریخ"
#: lms/lms/utils.py:1721
#: lms/lms/utils.py:1722
msgid "To join this batch, please contact the Administrator."
msgstr ""
@@ -7056,7 +7051,7 @@ msgstr ""
msgid "Under Review"
msgstr "تحت بررسی"
#: frontend/src/pages/Batches.vue:330 frontend/src/pages/Courses.vue:356
#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:355
msgid "Unpublished"
msgstr "منتشر نشده"
@@ -7077,8 +7072,8 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
#. Label of the upcoming (Check) field in DocType 'LMS Course'
#: frontend/src/pages/Batches.vue:328 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:347
#: frontend/src/pages/Batches.vue:330 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:346
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming"
@@ -7220,7 +7215,7 @@ msgid "View Applications"
msgstr "مشاهده درخواست‌ها"
#: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67
#: frontend/src/components/Modals/Event.vue:73
msgid "View Certificate"
msgstr ""
@@ -7327,6 +7322,11 @@ msgstr ""
msgid "Withdrawn"
msgstr ""
#. Option for the 'Open to' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Work"
msgstr ""
#. Label of the work_environment (Section Break) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Work Environment"
@@ -7427,7 +7427,7 @@ msgstr "شما نمی‌توانید نقش‌ها را در حالت فقط خ
msgid "You cannot enroll in an unpublished course."
msgstr ""
#: lms/lms/utils.py:2085
#: lms/lms/utils.py:2086
msgid "You cannot enroll in an unpublished program."
msgstr ""
@@ -7443,11 +7443,11 @@ msgstr ""
msgid "You cannot schedule evaluations for past slots."
msgstr ""
#: lms/lms/utils.py:2259
#: lms/lms/utils.py:2260
msgid "You do not have access to this batch."
msgstr ""
#: lms/lms/utils.py:2242
#: lms/lms/utils.py:2243
msgid "You do not have access to this course."
msgstr ""
+59 -59
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2026-01-16 16:04+0000\n"
"PO-Revision-Date: 2026-01-21 20:16\n"
"POT-Creation-Date: 2026-01-23 16:05+0000\n"
"PO-Revision-Date: 2026-02-05 06:43\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: French\n"
"MIME-Version: 1.0\n"
@@ -319,7 +319,7 @@ msgid "Administrator"
msgstr ""
#. Name of a role
#: frontend/src/pages/Batches.vue:319 lms/lms/doctype/lms_badge/lms_badge.json
#: frontend/src/pages/Batches.vue:321 lms/lms/doctype/lms_badge/lms_badge.json
msgid "All"
msgstr "Tous"
@@ -486,7 +486,7 @@ msgstr "Approuvé"
msgid "Apps"
msgstr ""
#: frontend/src/pages/Batches.vue:329
#: frontend/src/pages/Batches.vue:331
msgid "Archived"
msgstr ""
@@ -753,7 +753,7 @@ msgstr ""
#. Label of the batch_name (Link) field in DocType 'LMS Certificate'
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
#. Label of the batch_name (Link) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:32
#: frontend/src/components/Modals/Event.vue:35
#: frontend/src/components/Settings/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125
@@ -878,7 +878,7 @@ msgid "Batch:"
msgstr "Lot:"
#. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue:350 frontend/src/pages/Batches.vue:357
#: frontend/src/pages/Batches.vue:352 frontend/src/pages/Batches.vue:359
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121
msgid "Batches"
msgstr "Lots"
@@ -1023,7 +1023,7 @@ msgstr "Lien de certificat"
msgid "Certificate of Completion"
msgstr ""
#: frontend/src/components/Modals/Event.vue:347
#: frontend/src/components/Modals/Event.vue:353
msgid "Certificate saved successfully"
msgstr ""
@@ -1043,7 +1043,7 @@ msgstr ""
#. Label of a chart in the LMS Workspace
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:411
#: frontend/src/components/Modals/Event.vue:427
#: frontend/src/components/Sidebar/AppSidebar.vue:550
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100
#: frontend/src/pages/CourseCertification.vue:10
@@ -1771,7 +1771,7 @@ msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:365 frontend/src/pages/Courses.vue:372
#: frontend/src/pages/Courses.vue:364 frontend/src/pages/Courses.vue:371
#: frontend/src/pages/Programs/ProgramForm.vue:49
#: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1878,7 +1878,7 @@ msgstr ""
msgid "Create your first quiz"
msgstr ""
#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:355
#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:354
msgid "Created"
msgstr "Créé"
@@ -1954,7 +1954,7 @@ msgstr "Importation de données"
#. Label of the date (Date) field in DocType 'LMS Certificate Request'
#. Label of the date (Date) field in DocType 'LMS Live Class'
#. Label of the date (Date) field in DocType 'Scheduled Flow'
#: frontend/src/components/Modals/Event.vue:40
#: frontend/src/components/Modals/Event.vue:46
#: frontend/src/components/Modals/LiveClassModal.vue:29
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -2241,7 +2241,7 @@ msgstr ""
msgid "Edit Email Template"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:13
msgid "Edit Payment Gateway"
msgstr ""
@@ -2424,7 +2424,7 @@ msgstr ""
msgid "Enroll Now"
msgstr ""
#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:358
#: frontend/src/pages/Batches.vue:334 frontend/src/pages/Courses.vue:357
#: frontend/src/pages/Programs/StudentPrograms.vue:96
msgid "Enrolled"
msgstr ""
@@ -2526,7 +2526,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json
#: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json
msgid "Evaluation"
msgstr "Évaluation"
@@ -2551,7 +2551,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date."
msgstr ""
#: frontend/src/components/Modals/Event.vue:286
#: frontend/src/components/Modals/Event.vue:292
msgid "Evaluation saved successfully"
msgstr ""
@@ -2664,7 +2664,7 @@ msgstr ""
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:144
#: frontend/src/components/Modals/Event.vue:150
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date"
msgstr "Date d'expiration"
@@ -2695,7 +2695,7 @@ msgstr ""
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:396
#: frontend/src/components/Modals/Event.vue:412
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail"
@@ -3209,7 +3209,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:388
#: frontend/src/components/Modals/Event.vue:404
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "In Progress"
@@ -3353,7 +3353,7 @@ msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:138
#: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date"
@@ -3456,7 +3456,7 @@ msgstr "Joindre"
msgid "Join Call"
msgstr ""
#: frontend/src/components/Modals/Event.vue:78
#: frontend/src/components/Modals/Event.vue:84
msgid "Join Meeting"
msgstr ""
@@ -3896,7 +3896,7 @@ msgstr ""
msgid "LinkedIn ID"
msgstr ""
#: frontend/src/pages/Courses.vue:341
#: frontend/src/pages/Courses.vue:340
msgid "Live"
msgstr ""
@@ -4429,7 +4429,7 @@ msgstr ""
#: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17
#: frontend/src/pages/Courses.vue:344
#: frontend/src/pages/Courses.vue:343
#: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New"
@@ -4461,7 +4461,7 @@ msgstr ""
msgid "New Job Applicant"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:12
msgid "New Payment Gateway"
msgstr ""
@@ -4778,14 +4778,9 @@ msgstr ""
#: frontend/src/components/UserAvatar.vue:11
#: frontend/src/pages/CertifiedParticipants.vue:46
#: frontend/src/pages/Profile.vue:69
msgid "Open to Opportunities"
msgid "Open to Work"
msgstr ""
#. Option for the 'Open to' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Opportunities"
msgstr "Opportunités"
#. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:70
#: lms/lms/doctype/lms_option/lms_option.json
@@ -4842,7 +4837,7 @@ msgstr ""
#. Option for the 'User Category' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json lms/templates/signup-form.html:28
msgid "Others"
msgstr "Autres"
msgstr ""
#: frontend/src/pages/Home/StudentHome.vue:9
msgid "Our Popular Courses"
@@ -4924,7 +4919,7 @@ msgstr ""
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:392
#: frontend/src/components/Modals/Event.vue:408
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass"
@@ -5054,7 +5049,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:384
#: frontend/src/components/Modals/Event.vue:400
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending"
@@ -5194,7 +5189,7 @@ msgstr ""
msgid "Please login to continue with payment."
msgstr ""
#: lms/lms/utils.py:2081
#: lms/lms/utils.py:2082
msgid "Please login to enroll in the program."
msgstr ""
@@ -5525,7 +5520,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:122
#: frontend/src/components/Modals/Event.vue:128
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105
#: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5693,7 +5688,7 @@ msgstr ""
#. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/Event.vue:98
#: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -5929,14 +5924,14 @@ msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:65
#: frontend/src/components/Modals/EditProfile.vue:121
#: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:157
#: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/Coupons/CouponDetails.vue:78
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:41
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:129
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
@@ -6048,7 +6043,7 @@ msgstr ""
msgid "Select Date"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:26
msgid "Select Payment Gateway"
msgstr ""
@@ -6364,7 +6359,7 @@ msgstr "Statistiques"
#. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Modals/Event.vue:105
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6475,7 +6470,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:106
#: frontend/src/components/Modals/Event.vue:112
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary"
msgstr "Résumé"
@@ -6571,7 +6566,7 @@ msgstr ""
#. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:127
#: frontend/src/components/Modals/Event.vue:133
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template"
msgstr ""
@@ -6620,7 +6615,7 @@ msgstr ""
msgid "Thanks and Regards"
msgstr ""
#: lms/lms/utils.py:2247
#: lms/lms/utils.py:2248
msgid "The batch does not exist."
msgstr ""
@@ -6628,7 +6623,7 @@ msgstr ""
msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session."
msgstr ""
#: lms/lms/utils.py:1747
#: lms/lms/utils.py:1748
msgid "The coupon code '{0}' is invalid."
msgstr ""
@@ -6652,7 +6647,7 @@ msgstr ""
msgid "The last day to schedule your evaluations is "
msgstr ""
#: lms/lms/utils.py:2231
#: lms/lms/utils.py:2232
msgid "The lesson does not exist."
msgstr ""
@@ -6660,7 +6655,7 @@ msgstr ""
msgid "The slot is already booked by another participant."
msgstr ""
#: lms/lms/utils.py:1361 lms/lms/utils.py:1477 lms/lms/utils.py:1944
#: lms/lms/utils.py:1362 lms/lms/utils.py:1478 lms/lms/utils.py:1945
msgid "The specified batch does not exist."
msgstr ""
@@ -6726,15 +6721,15 @@ msgstr ""
msgid "This class has ended"
msgstr ""
#: lms/lms/utils.py:1776
#: lms/lms/utils.py:1777
msgid "This coupon has expired."
msgstr ""
#: lms/lms/utils.py:1779
#: lms/lms/utils.py:1780
msgid "This coupon has reached its maximum usage limit."
msgstr ""
#: lms/lms/utils.py:1788
#: lms/lms/utils.py:1789
msgid "This coupon is not applicable to this {0}."
msgstr ""
@@ -6742,7 +6737,7 @@ msgstr ""
msgid "This course has:"
msgstr ""
#: lms/lms/utils.py:1707
#: lms/lms/utils.py:1708
msgid "This course is free."
msgstr ""
@@ -6799,7 +6794,7 @@ msgid "Thursday"
msgstr ""
#. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48
#: frontend/src/components/Modals/Event.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Quiz.vue:58
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -6934,7 +6929,7 @@ msgstr ""
msgid "To Date"
msgstr ""
#: lms/lms/utils.py:1721
#: lms/lms/utils.py:1722
msgid "To join this batch, please contact the Administrator."
msgstr ""
@@ -7056,7 +7051,7 @@ msgstr ""
msgid "Under Review"
msgstr "En cours de révision"
#: frontend/src/pages/Batches.vue:330 frontend/src/pages/Courses.vue:356
#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:355
msgid "Unpublished"
msgstr ""
@@ -7077,8 +7072,8 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
#. Label of the upcoming (Check) field in DocType 'LMS Course'
#: frontend/src/pages/Batches.vue:328 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:347
#: frontend/src/pages/Batches.vue:330 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:346
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming"
@@ -7220,7 +7215,7 @@ msgid "View Applications"
msgstr ""
#: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67
#: frontend/src/components/Modals/Event.vue:73
msgid "View Certificate"
msgstr ""
@@ -7327,6 +7322,11 @@ msgstr ""
msgid "Withdrawn"
msgstr ""
#. Option for the 'Open to' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Work"
msgstr ""
#. Label of the work_environment (Section Break) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Work Environment"
@@ -7427,7 +7427,7 @@ msgstr ""
msgid "You cannot enroll in an unpublished course."
msgstr ""
#: lms/lms/utils.py:2085
#: lms/lms/utils.py:2086
msgid "You cannot enroll in an unpublished program."
msgstr ""
@@ -7443,11 +7443,11 @@ msgstr ""
msgid "You cannot schedule evaluations for past slots."
msgstr ""
#: lms/lms/utils.py:2259
#: lms/lms/utils.py:2260
msgid "You do not have access to this batch."
msgstr ""
#: lms/lms/utils.py:2242
#: lms/lms/utils.py:2243
msgid "You do not have access to this course."
msgstr ""
+59 -59
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2026-01-16 16:04+0000\n"
"PO-Revision-Date: 2026-01-21 20:16\n"
"POT-Creation-Date: 2026-01-23 16:05+0000\n"
"PO-Revision-Date: 2026-02-06 06:38\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Croatian\n"
"MIME-Version: 1.0\n"
@@ -319,7 +319,7 @@ msgid "Administrator"
msgstr "Administrator"
#. Name of a role
#: frontend/src/pages/Batches.vue:319 lms/lms/doctype/lms_badge/lms_badge.json
#: frontend/src/pages/Batches.vue:321 lms/lms/doctype/lms_badge/lms_badge.json
msgid "All"
msgstr "Sve"
@@ -486,7 +486,7 @@ msgstr "Odobreno"
msgid "Apps"
msgstr "Aplikacije"
#: frontend/src/pages/Batches.vue:329
#: frontend/src/pages/Batches.vue:331
msgid "Archived"
msgstr "Arhivirano"
@@ -753,7 +753,7 @@ msgstr "Značka {0} je već dodijeljena ovom {1}."
#. Label of the batch_name (Link) field in DocType 'LMS Certificate'
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
#. Label of the batch_name (Link) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:32
#: frontend/src/components/Modals/Event.vue:35
#: frontend/src/components/Settings/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125
@@ -878,7 +878,7 @@ msgid "Batch:"
msgstr "Grupa:"
#. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue:350 frontend/src/pages/Batches.vue:357
#: frontend/src/pages/Batches.vue:352 frontend/src/pages/Batches.vue:359
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121
msgid "Batches"
msgstr "Grupe"
@@ -1023,7 +1023,7 @@ msgstr "Veza Certifikata"
msgid "Certificate of Completion"
msgstr "Certifikat o Završetku"
#: frontend/src/components/Modals/Event.vue:347
#: frontend/src/components/Modals/Event.vue:353
msgid "Certificate saved successfully"
msgstr "Certifikat je uspješno spremljen"
@@ -1043,7 +1043,7 @@ msgstr "Certifikati su uspješno generirani"
#. Label of a chart in the LMS Workspace
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:411
#: frontend/src/components/Modals/Event.vue:427
#: frontend/src/components/Sidebar/AppSidebar.vue:550
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100
#: frontend/src/pages/CourseCertification.vue:10
@@ -1771,7 +1771,7 @@ msgstr "Tečaj {0} je već dodan u ovaj program."
#: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:365 frontend/src/pages/Courses.vue:372
#: frontend/src/pages/Courses.vue:364 frontend/src/pages/Courses.vue:371
#: frontend/src/pages/Programs/ProgramForm.vue:49
#: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1878,7 +1878,7 @@ msgstr "Napravi vaš prvi Tečaj"
msgid "Create your first quiz"
msgstr "Napravi vašj prvi kviz"
#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:355
#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:354
msgid "Created"
msgstr "Kreirano"
@@ -1954,7 +1954,7 @@ msgstr "Uvoz Podataka"
#. Label of the date (Date) field in DocType 'LMS Certificate Request'
#. Label of the date (Date) field in DocType 'LMS Live Class'
#. Label of the date (Date) field in DocType 'Scheduled Flow'
#: frontend/src/components/Modals/Event.vue:40
#: frontend/src/components/Modals/Event.vue:46
#: frontend/src/components/Modals/LiveClassModal.vue:29
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -2241,7 +2241,7 @@ msgstr "Uredi kupon"
msgid "Edit Email Template"
msgstr "Uredi predložak e-pošte"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:13
msgid "Edit Payment Gateway"
msgstr "Uredi Sustav Plaćanja"
@@ -2424,7 +2424,7 @@ msgstr "Upis Člana u Program"
msgid "Enroll Now"
msgstr "Upišite se sada"
#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:358
#: frontend/src/pages/Batches.vue:334 frontend/src/pages/Courses.vue:357
#: frontend/src/pages/Programs/StudentPrograms.vue:96
msgid "Enrolled"
msgstr "Upisan"
@@ -2526,7 +2526,7 @@ msgstr "Pogreška pri ažuriranju predloška e-pošte"
#. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json
#: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json
msgid "Evaluation"
msgstr "Evaluacija"
@@ -2551,7 +2551,7 @@ msgstr "Zahtjev za Ocjenu"
msgid "Evaluation end date cannot be less than the batch end date."
msgstr "Datum završetka ocjenjivanja ne može biti prije od datuma završetka grupe."
#: frontend/src/components/Modals/Event.vue:286
#: frontend/src/components/Modals/Event.vue:292
msgid "Evaluation saved successfully"
msgstr "Evaluacija je uspješno sačuvana"
@@ -2664,7 +2664,7 @@ msgstr "Ističe"
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:144
#: frontend/src/components/Modals/Event.vue:150
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date"
msgstr "Datum Isteka Roka"
@@ -2695,7 +2695,7 @@ msgstr "Istraži Više"
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:396
#: frontend/src/components/Modals/Event.vue:412
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail"
@@ -3209,7 +3209,7 @@ msgstr "Uvezi Tečaj"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:388
#: frontend/src/components/Modals/Event.vue:404
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "In Progress"
@@ -3353,7 +3353,7 @@ msgstr "SCORM Paket"
#. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:138
#: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date"
@@ -3456,7 +3456,7 @@ msgstr "Pridružite se"
msgid "Join Call"
msgstr "Pridružite se Pozivu"
#: frontend/src/components/Modals/Event.vue:78
#: frontend/src/components/Modals/Event.vue:84
msgid "Join Meeting"
msgstr "Pridružite se Sastanku"
@@ -3896,7 +3896,7 @@ msgstr "LinkedIn"
msgid "LinkedIn ID"
msgstr "LinkedIn ID"
#: frontend/src/pages/Courses.vue:341
#: frontend/src/pages/Courses.vue:340
msgid "Live"
msgstr "Uživo"
@@ -4429,7 +4429,7 @@ msgstr "Naziv"
#: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17
#: frontend/src/pages/Courses.vue:344
#: frontend/src/pages/Courses.vue:343
#: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New"
@@ -4461,7 +4461,7 @@ msgstr "Novi Posao"
msgid "New Job Applicant"
msgstr "Novi Kandidat za Posao"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:12
msgid "New Payment Gateway"
msgstr "Novi Sustav Plaćanja"
@@ -4778,13 +4778,8 @@ msgstr "Otvoren(a) za"
#: frontend/src/components/UserAvatar.vue:11
#: frontend/src/pages/CertifiedParticipants.vue:46
#: frontend/src/pages/Profile.vue:69
msgid "Open to Opportunities"
msgstr "Otvoren(a) za prilike"
#. Option for the 'Open to' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Opportunities"
msgstr "Prilika"
msgid "Open to Work"
msgstr "Otvoreno za Posao"
#. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:70
@@ -4924,7 +4919,7 @@ msgstr "Djelomično Završeno"
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:392
#: frontend/src/components/Modals/Event.vue:408
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass"
@@ -5054,7 +5049,7 @@ msgstr "Aplikacija plaćanja nije instalirana"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:384
#: frontend/src/components/Modals/Event.vue:400
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending"
@@ -5194,7 +5189,7 @@ msgstr "Prijavi se da pristupiš ovoj stranici."
msgid "Please login to continue with payment."
msgstr "Prijavi se da nastaviš s plaćanjem."
#: lms/lms/utils.py:2081
#: lms/lms/utils.py:2082
msgid "Please login to enroll in the program."
msgstr "Molimo prijavite se kako biste se prijavili u program."
@@ -5525,7 +5520,7 @@ msgstr "Objavi na Stranici Učesnika"
#. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:122
#: frontend/src/components/Modals/Event.vue:128
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105
#: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5693,7 +5688,7 @@ msgstr "Kvizovi u ovom videu"
#. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/Event.vue:98
#: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -5929,14 +5924,14 @@ msgstr "Subota"
#: frontend/src/components/Modals/AssignmentForm.vue:65
#: frontend/src/components/Modals/EditProfile.vue:121
#: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:157
#: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/Coupons/CouponDetails.vue:78
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:41
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:129
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
@@ -6048,7 +6043,7 @@ msgstr "Prikaži sve"
msgid "Select Date"
msgstr "Odaberi Datum"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:26
msgid "Select Payment Gateway"
msgstr "Odaberi Sustav Plaćanja"
@@ -6364,7 +6359,7 @@ msgstr "Statistika"
#. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Modals/Event.vue:105
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6475,7 +6470,7 @@ msgstr "Uspješno upisan u program"
#. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:106
#: frontend/src/components/Modals/Event.vue:112
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary"
msgstr "Sažetak"
@@ -6571,7 +6566,7 @@ msgstr "Timski Rad"
#. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:127
#: frontend/src/components/Modals/Event.vue:133
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template"
msgstr "Šablon"
@@ -6620,7 +6615,7 @@ msgstr "Hvala vam na povratnim informacijama."
msgid "Thanks and Regards"
msgstr "Hvala i Pozdrav"
#: lms/lms/utils.py:2247
#: lms/lms/utils.py:2248
msgid "The batch does not exist."
msgstr "Grupa ne postoji."
@@ -6628,7 +6623,7 @@ msgstr "Grupa ne postoji."
msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session."
msgstr "Grupa za koju ste se prijavili počinje sutra. Pripremite se i dođete na vrijeme."
#: lms/lms/utils.py:1747
#: lms/lms/utils.py:1748
msgid "The coupon code '{0}' is invalid."
msgstr "Kod kupona '{0}' nije važeći."
@@ -6652,7 +6647,7 @@ msgstr "Predavač je ostavio komentar na vaš zadatak {0}"
msgid "The last day to schedule your evaluations is "
msgstr "Posljednji dan za zakazivanje ocjenjivanja je "
#: lms/lms/utils.py:2231
#: lms/lms/utils.py:2232
msgid "The lesson does not exist."
msgstr "Lekcija ne postoji."
@@ -6660,7 +6655,7 @@ msgstr "Lekcija ne postoji."
msgid "The slot is already booked by another participant."
msgstr "Termin je već rezervirao drugi učesnik."
#: lms/lms/utils.py:1361 lms/lms/utils.py:1477 lms/lms/utils.py:1944
#: lms/lms/utils.py:1362 lms/lms/utils.py:1478 lms/lms/utils.py:1945
msgid "The specified batch does not exist."
msgstr "Navedena grupa ne postoji."
@@ -6726,15 +6721,15 @@ msgstr "Ovaj certifikat ne ističe"
msgid "This class has ended"
msgstr "Ovaj čas je završen"
#: lms/lms/utils.py:1776
#: lms/lms/utils.py:1777
msgid "This coupon has expired."
msgstr "Ovaj kupon je istekao."
#: lms/lms/utils.py:1779
#: lms/lms/utils.py:1780
msgid "This coupon has reached its maximum usage limit."
msgstr "Ovaj kupon je dosegao maksimalni broj iskorištenja."
#: lms/lms/utils.py:1788
#: lms/lms/utils.py:1789
msgid "This coupon is not applicable to this {0}."
msgstr "Ovaj kupon se ne odnosi na {0}."
@@ -6742,7 +6737,7 @@ msgstr "Ovaj kupon se ne odnosi na {0}."
msgid "This course has:"
msgstr "Ovaj tečaj ima:"
#: lms/lms/utils.py:1707
#: lms/lms/utils.py:1708
msgid "This course is free."
msgstr "Ovaj tečaj je besplatan."
@@ -6799,7 +6794,7 @@ msgid "Thursday"
msgstr "Četvrtak"
#. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48
#: frontend/src/components/Modals/Event.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Quiz.vue:58
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -6934,7 +6929,7 @@ msgstr "Do"
msgid "To Date"
msgstr "Do Datuma"
#: lms/lms/utils.py:1721
#: lms/lms/utils.py:1722
msgid "To join this batch, please contact the Administrator."
msgstr "Da biste se pridružili ovoj grupi, kontaktirajte administratora."
@@ -7056,7 +7051,7 @@ msgstr "Nedostupno Od Datuma ne može biti kasnije od Nedostupno Do Datuma"
msgid "Under Review"
msgstr "Pod Recenzijom"
#: frontend/src/pages/Batches.vue:330 frontend/src/pages/Courses.vue:356
#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:355
msgid "Unpublished"
msgstr "Neobjavljeno"
@@ -7077,8 +7072,8 @@ msgstr "Nestrukturirana Uloga"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
#. Label of the upcoming (Check) field in DocType 'LMS Course'
#: frontend/src/pages/Batches.vue:328 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:347
#: frontend/src/pages/Batches.vue:330 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:346
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming"
@@ -7220,7 +7215,7 @@ msgid "View Applications"
msgstr "Prikaži prijave"
#: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67
#: frontend/src/components/Modals/Event.vue:73
msgid "View Certificate"
msgstr "Prikaži Certifikat"
@@ -7327,6 +7322,11 @@ msgstr "Uz ovaj certifikat, sada možete pokazati svoje ažurirane vještine i p
msgid "Withdrawn"
msgstr "Povučen"
#. Option for the 'Open to' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Work"
msgstr "Posao"
#. Label of the work_environment (Section Break) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Work Environment"
@@ -7427,7 +7427,7 @@ msgstr "Ne možete mijenjati uloge u načinu rada samo za čitanje."
msgid "You cannot enroll in an unpublished course."
msgstr "Ne možete se upisati na neobjavljeni tečaj."
#: lms/lms/utils.py:2085
#: lms/lms/utils.py:2086
msgid "You cannot enroll in an unpublished program."
msgstr "Ne možete se upisati u neobjavljeni program."
@@ -7443,11 +7443,11 @@ msgstr "Ne možete zakazati ocjenjivanje nakon {0}."
msgid "You cannot schedule evaluations for past slots."
msgstr "Ne možete zakazati ocjenjivanje za prošle termine."
#: lms/lms/utils.py:2259
#: lms/lms/utils.py:2260
msgid "You do not have access to this batch."
msgstr "Nemate pristup ovoj grupi."
#: lms/lms/utils.py:2242
#: lms/lms/utils.py:2243
msgid "You do not have access to this course."
msgstr "Nemate pristup ovom tečaju."
+58 -58
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2026-01-16 16:04+0000\n"
"PO-Revision-Date: 2026-01-21 20:16\n"
"POT-Creation-Date: 2026-01-23 16:05+0000\n"
"PO-Revision-Date: 2026-02-05 06:43\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Hungarian\n"
"MIME-Version: 1.0\n"
@@ -319,7 +319,7 @@ msgid "Administrator"
msgstr "Rendszergazda"
#. Name of a role
#: frontend/src/pages/Batches.vue:319 lms/lms/doctype/lms_badge/lms_badge.json
#: frontend/src/pages/Batches.vue:321 lms/lms/doctype/lms_badge/lms_badge.json
msgid "All"
msgstr "Összes"
@@ -486,7 +486,7 @@ msgstr ""
msgid "Apps"
msgstr "Alkalmazások"
#: frontend/src/pages/Batches.vue:329
#: frontend/src/pages/Batches.vue:331
msgid "Archived"
msgstr "Archivált"
@@ -753,7 +753,7 @@ msgstr ""
#. Label of the batch_name (Link) field in DocType 'LMS Certificate'
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
#. Label of the batch_name (Link) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:32
#: frontend/src/components/Modals/Event.vue:35
#: frontend/src/components/Settings/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125
@@ -878,7 +878,7 @@ msgid "Batch:"
msgstr "Köteg:"
#. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue:350 frontend/src/pages/Batches.vue:357
#: frontend/src/pages/Batches.vue:352 frontend/src/pages/Batches.vue:359
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121
msgid "Batches"
msgstr ""
@@ -1023,7 +1023,7 @@ msgstr ""
msgid "Certificate of Completion"
msgstr ""
#: frontend/src/components/Modals/Event.vue:347
#: frontend/src/components/Modals/Event.vue:353
msgid "Certificate saved successfully"
msgstr ""
@@ -1043,7 +1043,7 @@ msgstr ""
#. Label of a chart in the LMS Workspace
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:411
#: frontend/src/components/Modals/Event.vue:427
#: frontend/src/components/Sidebar/AppSidebar.vue:550
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100
#: frontend/src/pages/CourseCertification.vue:10
@@ -1771,7 +1771,7 @@ msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:365 frontend/src/pages/Courses.vue:372
#: frontend/src/pages/Courses.vue:364 frontend/src/pages/Courses.vue:371
#: frontend/src/pages/Programs/ProgramForm.vue:49
#: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1878,7 +1878,7 @@ msgstr ""
msgid "Create your first quiz"
msgstr ""
#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:355
#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:354
msgid "Created"
msgstr "Alkotó"
@@ -1954,7 +1954,7 @@ msgstr "Adat importálás"
#. Label of the date (Date) field in DocType 'LMS Certificate Request'
#. Label of the date (Date) field in DocType 'LMS Live Class'
#. Label of the date (Date) field in DocType 'Scheduled Flow'
#: frontend/src/components/Modals/Event.vue:40
#: frontend/src/components/Modals/Event.vue:46
#: frontend/src/components/Modals/LiveClassModal.vue:29
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -2241,7 +2241,7 @@ msgstr ""
msgid "Edit Email Template"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:13
msgid "Edit Payment Gateway"
msgstr ""
@@ -2424,7 +2424,7 @@ msgstr ""
msgid "Enroll Now"
msgstr ""
#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:358
#: frontend/src/pages/Batches.vue:334 frontend/src/pages/Courses.vue:357
#: frontend/src/pages/Programs/StudentPrograms.vue:96
msgid "Enrolled"
msgstr ""
@@ -2526,7 +2526,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json
#: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json
msgid "Evaluation"
msgstr ""
@@ -2551,7 +2551,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date."
msgstr ""
#: frontend/src/components/Modals/Event.vue:286
#: frontend/src/components/Modals/Event.vue:292
msgid "Evaluation saved successfully"
msgstr ""
@@ -2664,7 +2664,7 @@ msgstr "Lejárat Dátuma"
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:144
#: frontend/src/components/Modals/Event.vue:150
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date"
msgstr ""
@@ -2695,7 +2695,7 @@ msgstr ""
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:396
#: frontend/src/components/Modals/Event.vue:412
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail"
@@ -3209,7 +3209,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:388
#: frontend/src/components/Modals/Event.vue:404
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "In Progress"
@@ -3353,7 +3353,7 @@ msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:138
#: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date"
@@ -3456,7 +3456,7 @@ msgstr ""
msgid "Join Call"
msgstr ""
#: frontend/src/components/Modals/Event.vue:78
#: frontend/src/components/Modals/Event.vue:84
msgid "Join Meeting"
msgstr ""
@@ -3896,7 +3896,7 @@ msgstr "LinkedIn"
msgid "LinkedIn ID"
msgstr ""
#: frontend/src/pages/Courses.vue:341
#: frontend/src/pages/Courses.vue:340
msgid "Live"
msgstr ""
@@ -4429,7 +4429,7 @@ msgstr "Név"
#: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17
#: frontend/src/pages/Courses.vue:344
#: frontend/src/pages/Courses.vue:343
#: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New"
@@ -4461,7 +4461,7 @@ msgstr ""
msgid "New Job Applicant"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:12
msgid "New Payment Gateway"
msgstr ""
@@ -4778,12 +4778,7 @@ msgstr ""
#: frontend/src/components/UserAvatar.vue:11
#: frontend/src/pages/CertifiedParticipants.vue:46
#: frontend/src/pages/Profile.vue:69
msgid "Open to Opportunities"
msgstr ""
#. Option for the 'Open to' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Opportunities"
msgid "Open to Work"
msgstr ""
#. Label of the option (Data) field in DocType 'LMS Option'
@@ -4924,7 +4919,7 @@ msgstr ""
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:392
#: frontend/src/components/Modals/Event.vue:408
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass"
@@ -5054,7 +5049,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:384
#: frontend/src/components/Modals/Event.vue:400
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending"
@@ -5194,7 +5189,7 @@ msgstr ""
msgid "Please login to continue with payment."
msgstr ""
#: lms/lms/utils.py:2081
#: lms/lms/utils.py:2082
msgid "Please login to enroll in the program."
msgstr ""
@@ -5525,7 +5520,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:122
#: frontend/src/components/Modals/Event.vue:128
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105
#: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5693,7 +5688,7 @@ msgstr ""
#. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/Event.vue:98
#: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -5929,14 +5924,14 @@ msgstr "Szombat"
#: frontend/src/components/Modals/AssignmentForm.vue:65
#: frontend/src/components/Modals/EditProfile.vue:121
#: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:157
#: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/Coupons/CouponDetails.vue:78
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:41
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:129
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
@@ -6048,7 +6043,7 @@ msgstr ""
msgid "Select Date"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:26
msgid "Select Payment Gateway"
msgstr ""
@@ -6364,7 +6359,7 @@ msgstr "Statisztikák"
#. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Modals/Event.vue:105
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6475,7 +6470,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:106
#: frontend/src/components/Modals/Event.vue:112
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary"
msgstr "Összefoglalás"
@@ -6571,7 +6566,7 @@ msgstr ""
#. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:127
#: frontend/src/components/Modals/Event.vue:133
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template"
msgstr "Sablon"
@@ -6620,7 +6615,7 @@ msgstr ""
msgid "Thanks and Regards"
msgstr ""
#: lms/lms/utils.py:2247
#: lms/lms/utils.py:2248
msgid "The batch does not exist."
msgstr ""
@@ -6628,7 +6623,7 @@ msgstr ""
msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session."
msgstr ""
#: lms/lms/utils.py:1747
#: lms/lms/utils.py:1748
msgid "The coupon code '{0}' is invalid."
msgstr ""
@@ -6652,7 +6647,7 @@ msgstr ""
msgid "The last day to schedule your evaluations is "
msgstr ""
#: lms/lms/utils.py:2231
#: lms/lms/utils.py:2232
msgid "The lesson does not exist."
msgstr ""
@@ -6660,7 +6655,7 @@ msgstr ""
msgid "The slot is already booked by another participant."
msgstr ""
#: lms/lms/utils.py:1361 lms/lms/utils.py:1477 lms/lms/utils.py:1944
#: lms/lms/utils.py:1362 lms/lms/utils.py:1478 lms/lms/utils.py:1945
msgid "The specified batch does not exist."
msgstr ""
@@ -6726,15 +6721,15 @@ msgstr ""
msgid "This class has ended"
msgstr ""
#: lms/lms/utils.py:1776
#: lms/lms/utils.py:1777
msgid "This coupon has expired."
msgstr ""
#: lms/lms/utils.py:1779
#: lms/lms/utils.py:1780
msgid "This coupon has reached its maximum usage limit."
msgstr ""
#: lms/lms/utils.py:1788
#: lms/lms/utils.py:1789
msgid "This coupon is not applicable to this {0}."
msgstr ""
@@ -6742,7 +6737,7 @@ msgstr ""
msgid "This course has:"
msgstr ""
#: lms/lms/utils.py:1707
#: lms/lms/utils.py:1708
msgid "This course is free."
msgstr ""
@@ -6799,7 +6794,7 @@ msgid "Thursday"
msgstr "Csütörtök"
#. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48
#: frontend/src/components/Modals/Event.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Quiz.vue:58
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -6934,7 +6929,7 @@ msgstr "Címzett"
msgid "To Date"
msgstr "Dátumig"
#: lms/lms/utils.py:1721
#: lms/lms/utils.py:1722
msgid "To join this batch, please contact the Administrator."
msgstr ""
@@ -7056,7 +7051,7 @@ msgstr ""
msgid "Under Review"
msgstr ""
#: frontend/src/pages/Batches.vue:330 frontend/src/pages/Courses.vue:356
#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:355
msgid "Unpublished"
msgstr ""
@@ -7077,8 +7072,8 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
#. Label of the upcoming (Check) field in DocType 'LMS Course'
#: frontend/src/pages/Batches.vue:328 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:347
#: frontend/src/pages/Batches.vue:330 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:346
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming"
@@ -7220,7 +7215,7 @@ msgid "View Applications"
msgstr ""
#: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67
#: frontend/src/components/Modals/Event.vue:73
msgid "View Certificate"
msgstr ""
@@ -7327,6 +7322,11 @@ msgstr ""
msgid "Withdrawn"
msgstr ""
#. Option for the 'Open to' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Work"
msgstr ""
#. Label of the work_environment (Section Break) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Work Environment"
@@ -7427,7 +7427,7 @@ msgstr ""
msgid "You cannot enroll in an unpublished course."
msgstr ""
#: lms/lms/utils.py:2085
#: lms/lms/utils.py:2086
msgid "You cannot enroll in an unpublished program."
msgstr ""
@@ -7443,11 +7443,11 @@ msgstr ""
msgid "You cannot schedule evaluations for past slots."
msgstr ""
#: lms/lms/utils.py:2259
#: lms/lms/utils.py:2260
msgid "You do not have access to this batch."
msgstr ""
#: lms/lms/utils.py:2242
#: lms/lms/utils.py:2243
msgid "You do not have access to this course."
msgstr ""
+59 -59
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2026-01-16 16:04+0000\n"
"PO-Revision-Date: 2026-01-19 20:13\n"
"POT-Creation-Date: 2026-01-23 16:05+0000\n"
"PO-Revision-Date: 2026-02-05 06:43\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Indonesian\n"
"MIME-Version: 1.0\n"
@@ -319,7 +319,7 @@ msgid "Administrator"
msgstr ""
#. Name of a role
#: frontend/src/pages/Batches.vue:319 lms/lms/doctype/lms_badge/lms_badge.json
#: frontend/src/pages/Batches.vue:321 lms/lms/doctype/lms_badge/lms_badge.json
msgid "All"
msgstr "Semua"
@@ -486,7 +486,7 @@ msgstr ""
msgid "Apps"
msgstr ""
#: frontend/src/pages/Batches.vue:329
#: frontend/src/pages/Batches.vue:331
msgid "Archived"
msgstr ""
@@ -753,7 +753,7 @@ msgstr ""
#. Label of the batch_name (Link) field in DocType 'LMS Certificate'
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
#. Label of the batch_name (Link) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:32
#: frontend/src/components/Modals/Event.vue:35
#: frontend/src/components/Settings/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125
@@ -878,7 +878,7 @@ msgid "Batch:"
msgstr ""
#. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue:350 frontend/src/pages/Batches.vue:357
#: frontend/src/pages/Batches.vue:352 frontend/src/pages/Batches.vue:359
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121
msgid "Batches"
msgstr ""
@@ -1023,7 +1023,7 @@ msgstr ""
msgid "Certificate of Completion"
msgstr ""
#: frontend/src/components/Modals/Event.vue:347
#: frontend/src/components/Modals/Event.vue:353
msgid "Certificate saved successfully"
msgstr ""
@@ -1043,7 +1043,7 @@ msgstr ""
#. Label of a chart in the LMS Workspace
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:411
#: frontend/src/components/Modals/Event.vue:427
#: frontend/src/components/Sidebar/AppSidebar.vue:550
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100
#: frontend/src/pages/CourseCertification.vue:10
@@ -1771,7 +1771,7 @@ msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:365 frontend/src/pages/Courses.vue:372
#: frontend/src/pages/Courses.vue:364 frontend/src/pages/Courses.vue:371
#: frontend/src/pages/Programs/ProgramForm.vue:49
#: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1878,7 +1878,7 @@ msgstr ""
msgid "Create your first quiz"
msgstr ""
#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:355
#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:354
msgid "Created"
msgstr ""
@@ -1954,7 +1954,7 @@ msgstr "Impor data"
#. Label of the date (Date) field in DocType 'LMS Certificate Request'
#. Label of the date (Date) field in DocType 'LMS Live Class'
#. Label of the date (Date) field in DocType 'Scheduled Flow'
#: frontend/src/components/Modals/Event.vue:40
#: frontend/src/components/Modals/Event.vue:46
#: frontend/src/components/Modals/LiveClassModal.vue:29
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -2241,7 +2241,7 @@ msgstr ""
msgid "Edit Email Template"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:13
msgid "Edit Payment Gateway"
msgstr ""
@@ -2424,7 +2424,7 @@ msgstr ""
msgid "Enroll Now"
msgstr ""
#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:358
#: frontend/src/pages/Batches.vue:334 frontend/src/pages/Courses.vue:357
#: frontend/src/pages/Programs/StudentPrograms.vue:96
msgid "Enrolled"
msgstr ""
@@ -2526,7 +2526,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json
#: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json
msgid "Evaluation"
msgstr "Evaluasi"
@@ -2551,7 +2551,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date."
msgstr ""
#: frontend/src/components/Modals/Event.vue:286
#: frontend/src/components/Modals/Event.vue:292
msgid "Evaluation saved successfully"
msgstr ""
@@ -2664,7 +2664,7 @@ msgstr ""
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:144
#: frontend/src/components/Modals/Event.vue:150
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date"
msgstr ""
@@ -2695,7 +2695,7 @@ msgstr ""
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:396
#: frontend/src/components/Modals/Event.vue:412
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail"
@@ -3209,7 +3209,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:388
#: frontend/src/components/Modals/Event.vue:404
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "In Progress"
@@ -3353,7 +3353,7 @@ msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:138
#: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date"
@@ -3456,7 +3456,7 @@ msgstr ""
msgid "Join Call"
msgstr ""
#: frontend/src/components/Modals/Event.vue:78
#: frontend/src/components/Modals/Event.vue:84
msgid "Join Meeting"
msgstr ""
@@ -3896,7 +3896,7 @@ msgstr ""
msgid "LinkedIn ID"
msgstr ""
#: frontend/src/pages/Courses.vue:341
#: frontend/src/pages/Courses.vue:340
msgid "Live"
msgstr ""
@@ -4429,7 +4429,7 @@ msgstr "Nama"
#: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17
#: frontend/src/pages/Courses.vue:344
#: frontend/src/pages/Courses.vue:343
#: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New"
@@ -4461,7 +4461,7 @@ msgstr ""
msgid "New Job Applicant"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:12
msgid "New Payment Gateway"
msgstr ""
@@ -4778,14 +4778,9 @@ msgstr ""
#: frontend/src/components/UserAvatar.vue:11
#: frontend/src/pages/CertifiedParticipants.vue:46
#: frontend/src/pages/Profile.vue:69
msgid "Open to Opportunities"
msgid "Open to Work"
msgstr ""
#. Option for the 'Open to' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Opportunities"
msgstr "Peluang"
#. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:70
#: lms/lms/doctype/lms_option/lms_option.json
@@ -4842,7 +4837,7 @@ msgstr ""
#. Option for the 'User Category' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json lms/templates/signup-form.html:28
msgid "Others"
msgstr "Lainnya"
msgstr ""
#: frontend/src/pages/Home/StudentHome.vue:9
msgid "Our Popular Courses"
@@ -4924,7 +4919,7 @@ msgstr ""
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:392
#: frontend/src/components/Modals/Event.vue:408
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass"
@@ -5054,7 +5049,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:384
#: frontend/src/components/Modals/Event.vue:400
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending"
@@ -5194,7 +5189,7 @@ msgstr ""
msgid "Please login to continue with payment."
msgstr ""
#: lms/lms/utils.py:2081
#: lms/lms/utils.py:2082
msgid "Please login to enroll in the program."
msgstr ""
@@ -5525,7 +5520,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:122
#: frontend/src/components/Modals/Event.vue:128
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105
#: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5693,7 +5688,7 @@ msgstr ""
#. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/Event.vue:98
#: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -5929,14 +5924,14 @@ msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:65
#: frontend/src/components/Modals/EditProfile.vue:121
#: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:157
#: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/Coupons/CouponDetails.vue:78
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:41
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:129
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
@@ -6048,7 +6043,7 @@ msgstr ""
msgid "Select Date"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:26
msgid "Select Payment Gateway"
msgstr ""
@@ -6364,7 +6359,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Modals/Event.vue:105
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6475,7 +6470,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:106
#: frontend/src/components/Modals/Event.vue:112
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary"
msgstr "Ringkasan"
@@ -6571,7 +6566,7 @@ msgstr ""
#. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:127
#: frontend/src/components/Modals/Event.vue:133
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template"
msgstr ""
@@ -6620,7 +6615,7 @@ msgstr ""
msgid "Thanks and Regards"
msgstr ""
#: lms/lms/utils.py:2247
#: lms/lms/utils.py:2248
msgid "The batch does not exist."
msgstr ""
@@ -6628,7 +6623,7 @@ msgstr ""
msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session."
msgstr ""
#: lms/lms/utils.py:1747
#: lms/lms/utils.py:1748
msgid "The coupon code '{0}' is invalid."
msgstr ""
@@ -6652,7 +6647,7 @@ msgstr ""
msgid "The last day to schedule your evaluations is "
msgstr ""
#: lms/lms/utils.py:2231
#: lms/lms/utils.py:2232
msgid "The lesson does not exist."
msgstr ""
@@ -6660,7 +6655,7 @@ msgstr ""
msgid "The slot is already booked by another participant."
msgstr ""
#: lms/lms/utils.py:1361 lms/lms/utils.py:1477 lms/lms/utils.py:1944
#: lms/lms/utils.py:1362 lms/lms/utils.py:1478 lms/lms/utils.py:1945
msgid "The specified batch does not exist."
msgstr ""
@@ -6726,15 +6721,15 @@ msgstr ""
msgid "This class has ended"
msgstr ""
#: lms/lms/utils.py:1776
#: lms/lms/utils.py:1777
msgid "This coupon has expired."
msgstr ""
#: lms/lms/utils.py:1779
#: lms/lms/utils.py:1780
msgid "This coupon has reached its maximum usage limit."
msgstr ""
#: lms/lms/utils.py:1788
#: lms/lms/utils.py:1789
msgid "This coupon is not applicable to this {0}."
msgstr ""
@@ -6742,7 +6737,7 @@ msgstr ""
msgid "This course has:"
msgstr ""
#: lms/lms/utils.py:1707
#: lms/lms/utils.py:1708
msgid "This course is free."
msgstr ""
@@ -6799,7 +6794,7 @@ msgid "Thursday"
msgstr ""
#. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48
#: frontend/src/components/Modals/Event.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Quiz.vue:58
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -6934,7 +6929,7 @@ msgstr "Untuk"
msgid "To Date"
msgstr "Untuk Tanggal"
#: lms/lms/utils.py:1721
#: lms/lms/utils.py:1722
msgid "To join this batch, please contact the Administrator."
msgstr ""
@@ -7056,7 +7051,7 @@ msgstr ""
msgid "Under Review"
msgstr ""
#: frontend/src/pages/Batches.vue:330 frontend/src/pages/Courses.vue:356
#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:355
msgid "Unpublished"
msgstr ""
@@ -7077,8 +7072,8 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
#. Label of the upcoming (Check) field in DocType 'LMS Course'
#: frontend/src/pages/Batches.vue:328 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:347
#: frontend/src/pages/Batches.vue:330 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:346
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming"
@@ -7220,7 +7215,7 @@ msgid "View Applications"
msgstr ""
#: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67
#: frontend/src/components/Modals/Event.vue:73
msgid "View Certificate"
msgstr ""
@@ -7327,6 +7322,11 @@ msgstr ""
msgid "Withdrawn"
msgstr ""
#. Option for the 'Open to' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Work"
msgstr ""
#. Label of the work_environment (Section Break) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Work Environment"
@@ -7427,7 +7427,7 @@ msgstr ""
msgid "You cannot enroll in an unpublished course."
msgstr ""
#: lms/lms/utils.py:2085
#: lms/lms/utils.py:2086
msgid "You cannot enroll in an unpublished program."
msgstr ""
@@ -7443,11 +7443,11 @@ msgstr ""
msgid "You cannot schedule evaluations for past slots."
msgstr ""
#: lms/lms/utils.py:2259
#: lms/lms/utils.py:2260
msgid "You do not have access to this batch."
msgstr ""
#: lms/lms/utils.py:2242
#: lms/lms/utils.py:2243
msgid "You do not have access to this course."
msgstr ""
+105 -105
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2026-01-16 16:04+0000\n"
"PO-Revision-Date: 2026-01-21 20:16\n"
"POT-Creation-Date: 2026-01-23 16:05+0000\n"
"PO-Revision-Date: 2026-02-05 06:43\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Italian\n"
"MIME-Version: 1.0\n"
@@ -32,7 +32,7 @@ msgstr ""
#: lms/templates/emails/published_batch_notification.html:19
msgid " to "
msgstr ""
msgstr " a "
#: frontend/src/pages/Home/Streak.vue:21
msgid " you are on a"
@@ -88,24 +88,24 @@ msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:189
msgid "A new batch '{0}' has been published that might interest you. Check it out!"
msgstr ""
msgstr "È stato pubblicato un nuovo corso '{0}' che potrebbe interessarti. Dai un'occhiata!"
#: lms/templates/emails/published_batch_notification.html:7
msgid "A new batch has been published on "
msgstr ""
msgstr "Un nuovo corso è stato pubblicato su "
#: lms/lms/doctype/lms_course/lms_course.py:198
msgid "A new course '{0}' has been published that might interest you. Check it out!"
msgstr ""
msgstr "È stato pubblicato un nuovo corso '{0}' che potrebbe interessarti. Dai un'occhiata!"
#: lms/templates/emails/published_course_notification.html:7
msgid "A new course has been published on "
msgstr ""
msgstr "Un nuovo corso è stato pubblicato su "
#: lms/lms/doctype/lms_batch/lms_batch.py:151
#: lms/lms/doctype/lms_course/lms_course.py:162
msgid "A new course has been published on {0}"
msgstr ""
msgstr "Un nuovo corso è stato pubblicato su {0}"
#: frontend/src/pages/CourseForm.vue:143
msgid "A one line introduction to the course that appears on the course card"
@@ -222,7 +222,7 @@ msgstr ""
#: frontend/src/pages/CourseForm.vue:55
msgid "Add a keyword and then press enter"
msgstr ""
msgstr "Aggiungi una password e poi premi Invio"
#: frontend/src/components/Sidebar/AppSidebar.vue:525
msgid "Add a lesson"
@@ -263,7 +263,7 @@ msgstr ""
#: frontend/src/components/Sidebar/AppSidebar.vue:488
msgid "Add courses to your batch"
msgstr ""
msgstr "Aggiungi corsi al tuo gruppo"
#: frontend/src/components/Modals/QuizInVideo.vue:5
msgid "Add quiz to this video"
@@ -319,7 +319,7 @@ msgid "Administrator"
msgstr ""
#. Name of a role
#: frontend/src/pages/Batches.vue:319 lms/lms/doctype/lms_badge/lms_badge.json
#: frontend/src/pages/Batches.vue:321 lms/lms/doctype/lms_badge/lms_badge.json
msgid "All"
msgstr ""
@@ -393,7 +393,7 @@ msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:75
msgid "Amount and currency are required for paid batches."
msgstr ""
msgstr "Per i gruppi a pagamento sono richiesti importo e valuta."
#: lms/lms/doctype/lms_course/lms_course.py:77
msgid "Amount and currency are required for paid certificates."
@@ -437,7 +437,7 @@ msgstr ""
#. Label of the applicable_items (Table) field in DocType 'LMS Coupon'
#: lms/lms/doctype/lms_coupon/lms_coupon.json
msgid "Applicable Items"
msgstr ""
msgstr "Articoli applicabili"
#: frontend/src/pages/JobApplications.vue:22
msgid "Application"
@@ -446,7 +446,7 @@ msgstr ""
#. Label of a field in the job-opportunity Web Form
#: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Application Form Link"
msgstr ""
msgstr "Link al modulo di domanda"
#: frontend/src/pages/JobApplications.vue:14
#: frontend/src/pages/JobApplications.vue:22
@@ -486,7 +486,7 @@ msgstr ""
msgid "Apps"
msgstr "Applicazioni"
#: frontend/src/pages/Batches.vue:329
#: frontend/src/pages/Batches.vue:331
msgid "Archived"
msgstr ""
@@ -591,7 +591,7 @@ msgstr ""
#: frontend/src/pages/AssignmentSubmissionList.vue:222
msgid "Assignment Submissions"
msgstr ""
msgstr "Invio degli incarichi"
#. Label of the assignment_title (Data) field in DocType 'LMS Assignment
#. Submission'
@@ -753,7 +753,7 @@ msgstr ""
#. Label of the batch_name (Link) field in DocType 'LMS Certificate'
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
#. Label of the batch_name (Link) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:32
#: frontend/src/components/Modals/Event.vue:35
#: frontend/src/components/Settings/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125
@@ -878,10 +878,10 @@ msgid "Batch:"
msgstr ""
#. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue:350 frontend/src/pages/Batches.vue:357
#: frontend/src/pages/Batches.vue:352 frontend/src/pages/Batches.vue:359
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121
msgid "Batches"
msgstr ""
msgstr "Gruppi"
#: lms/templates/emails/batch_confirmation.html:33
#: lms/templates/emails/batch_start_reminder.html:31
@@ -1023,7 +1023,7 @@ msgstr ""
msgid "Certificate of Completion"
msgstr ""
#: frontend/src/components/Modals/Event.vue:347
#: frontend/src/components/Modals/Event.vue:353
msgid "Certificate saved successfully"
msgstr ""
@@ -1043,7 +1043,7 @@ msgstr ""
#. Label of a chart in the LMS Workspace
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:411
#: frontend/src/components/Modals/Event.vue:427
#: frontend/src/components/Sidebar/AppSidebar.vue:550
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100
#: frontend/src/pages/CourseCertification.vue:10
@@ -1244,7 +1244,7 @@ msgstr "Client Secret"
#: frontend/src/components/Settings/Categories.vue:27
msgid "Close"
msgstr "Vicino"
msgstr "Chiudi"
#. Option for the 'Status' (Select) field in DocType 'Job Opportunity'
#. Option in a Select field in the job-opportunity Web Form
@@ -1275,7 +1275,7 @@ msgstr ""
#: frontend/src/components/Sidebar/AppSidebar.vue:155
msgid "Collapse"
msgstr ""
msgstr "Riduci"
#. Label of the college (Data) field in DocType 'User'
#: lms/fixtures/custom_field.json
@@ -1303,7 +1303,7 @@ msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Comments"
msgstr ""
msgstr "Commenti"
#: frontend/src/components/Assignment.vue:148
msgid "Comments by Evaluator"
@@ -1377,7 +1377,7 @@ msgstr ""
#: lms/lms/doctype/lms_course_progress/lms_course_progress.json
#: lms/lms/widgets/CourseCard.html:75
msgid "Complete"
msgstr ""
msgstr "Completato"
#: lms/templates/emails/lms_invite_request_approved.html:7
msgid "Complete Sign Up"
@@ -1771,7 +1771,7 @@ msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:365 frontend/src/pages/Courses.vue:372
#: frontend/src/pages/Courses.vue:364 frontend/src/pages/Courses.vue:371
#: frontend/src/pages/Programs/ProgramForm.vue:49
#: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1824,7 +1824,7 @@ msgstr ""
#: frontend/src/components/Controls/Link.vue:38
#: frontend/src/components/Controls/MultiSelect.vue:76
msgid "Create New"
msgstr "Crea Nuovo"
msgstr "Crea nuovo"
#: frontend/src/pages/Programs/ProgramForm.vue:12
msgid "Create Program"
@@ -1878,7 +1878,7 @@ msgstr ""
msgid "Create your first quiz"
msgstr ""
#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:355
#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:354
msgid "Created"
msgstr ""
@@ -1943,7 +1943,7 @@ msgstr "Ciano"
#. Label of the show_dashboard (Check) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Dashboard"
msgstr ""
msgstr "Dashboard"
#: frontend/src/pages/DataImport.vue:46
msgid "Data Import"
@@ -1954,7 +1954,7 @@ msgstr "Importazione Dati"
#. Label of the date (Date) field in DocType 'LMS Certificate Request'
#. Label of the date (Date) field in DocType 'LMS Live Class'
#. Label of the date (Date) field in DocType 'Scheduled Flow'
#: frontend/src/components/Modals/Event.vue:40
#: frontend/src/components/Modals/Event.vue:46
#: frontend/src/components/Modals/LiveClassModal.vue:29
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -2020,7 +2020,7 @@ msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:230
#: frontend/src/pages/Programs/ProgramForm.vue:567
msgid "Delete"
msgstr "Eliminare"
msgstr "Elimina"
#: frontend/src/components/CourseOutline.vue:67
msgid "Delete Chapter"
@@ -2164,7 +2164,7 @@ msgstr ""
#: lms/lms/doctype/lms_assignment/lms_assignment.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
msgid "Document"
msgstr ""
msgstr "Documento"
#: frontend/src/components/Settings/Coupons/CouponItems.vue:11
msgid "Document Name"
@@ -2241,7 +2241,7 @@ msgstr ""
msgid "Edit Email Template"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:13
msgid "Edit Payment Gateway"
msgstr ""
@@ -2424,7 +2424,7 @@ msgstr ""
msgid "Enroll Now"
msgstr ""
#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:358
#: frontend/src/pages/Batches.vue:334 frontend/src/pages/Courses.vue:357
#: frontend/src/pages/Programs/StudentPrograms.vue:96
msgid "Enrolled"
msgstr ""
@@ -2526,7 +2526,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json
#: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json
msgid "Evaluation"
msgstr ""
@@ -2551,7 +2551,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date."
msgstr ""
#: frontend/src/components/Modals/Event.vue:286
#: frontend/src/components/Modals/Event.vue:292
msgid "Evaluation saved successfully"
msgstr ""
@@ -2664,7 +2664,7 @@ msgstr ""
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:144
#: frontend/src/components/Modals/Event.vue:150
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date"
msgstr ""
@@ -2695,7 +2695,7 @@ msgstr ""
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:396
#: frontend/src/components/Modals/Event.vue:412
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail"
@@ -2796,7 +2796,7 @@ msgstr ""
#: frontend/src/components/Modals/EditProfile.vue:70
#: frontend/src/components/Settings/Members.vue:110
msgid "First Name"
msgstr "Nome di battesimo"
msgstr "Nome"
#. Option for the 'Time Preference' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
@@ -2908,7 +2908,7 @@ msgstr ""
#: frontend/src/components/Settings/PaymentGateways.vue:134
msgid "Gateway"
msgstr ""
msgstr "Ingresso"
#. Label of the general_tab (Tab Break) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -2949,7 +2949,7 @@ msgstr ""
#: frontend/src/components/Modals/EditProfile.vue:82
msgid "GitHub ID"
msgstr ""
msgstr "ID GitHub"
#. Label of the github (Data) field in DocType 'User'
#: lms/fixtures/custom_field.json
@@ -3025,7 +3025,7 @@ msgstr ""
#: frontend/src/components/Sidebar/AppSidebar.vue:141
msgid "Help"
msgstr ""
msgstr "Aiuto"
#: lms/templates/courses_created.html:15
msgid "Help others learn something new by creating a course."
@@ -3076,7 +3076,7 @@ msgstr ""
#: frontend/src/components/Notes/InlineLessonMenu.vue:12
msgid "Highlight"
msgstr ""
msgstr "Evidenzia"
#. Label of the highlighted_text (Small Text) field in DocType 'LMS Lesson
#. Note'
@@ -3124,13 +3124,13 @@ msgstr ""
#: frontend/src/pages/QuizForm.vue:338
msgid "ID"
msgstr ""
msgstr "ID"
#. Label of the icon (Data) field in DocType 'LMS Sidebar Item'
#: frontend/src/components/Modals/PageModal.vue:28
#: lms/lms/doctype/lms_sidebar_item/lms_sidebar_item.json
msgid "Icon"
msgstr ""
msgstr "Icona"
#. Label of the user_category (Check) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -3209,7 +3209,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:388
#: frontend/src/components/Modals/Event.vue:404
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "In Progress"
@@ -3288,7 +3288,7 @@ msgstr ""
#: frontend/src/pages/Lesson.vue:233 frontend/src/pages/LessonForm.vue:42
#: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Instructor Notes"
msgstr ""
msgstr "Note dell'istruttore"
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch'
#. Label of the instructors (Rating) field in DocType 'LMS Batch Feedback'
@@ -3353,7 +3353,7 @@ msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:138
#: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date"
@@ -3456,7 +3456,7 @@ msgstr ""
msgid "Join Call"
msgstr ""
#: frontend/src/components/Modals/Event.vue:78
#: frontend/src/components/Modals/Event.vue:84
msgid "Join Meeting"
msgstr ""
@@ -3563,12 +3563,12 @@ msgstr ""
#. Name of a DocType
#: lms/lms/doctype/lms_coupon/lms_coupon.json
msgid "LMS Coupon"
msgstr ""
msgstr "Coupon LMS"
#. Name of a DocType
#: lms/lms/doctype/lms_coupon_item/lms_coupon_item.json
msgid "LMS Coupon Item"
msgstr ""
msgstr "Elemento Coupon LMS"
#. Option for the 'Reference DocType' (Select) field in DocType 'LMS Coupon
#. Item'
@@ -3896,7 +3896,7 @@ msgstr "LinkedIn"
msgid "LinkedIn ID"
msgstr ""
#: frontend/src/pages/Courses.vue:341
#: frontend/src/pages/Courses.vue:340
msgid "Live"
msgstr ""
@@ -4012,7 +4012,7 @@ msgstr ""
#: frontend/src/pages/Notifications.vue:12
msgid "Mark all as read"
msgstr ""
msgstr "Segna tutto come letto"
#. Label of the marks (Int) field in DocType 'LMS Quiz Question'
#. Label of the marks (Int) field in DocType 'LMS Quiz Result'
@@ -4319,7 +4319,7 @@ msgstr ""
#. Label of the milestone (Check) field in DocType 'LMS Batch Timetable'
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
msgid "Milestone"
msgstr ""
msgstr "Milestone"
#: lms/lms/doctype/lms_question/lms_question.py:49
msgid "Minimum two options are required for multiple choice questions."
@@ -4429,7 +4429,7 @@ msgstr ""
#: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17
#: frontend/src/pages/Courses.vue:344
#: frontend/src/pages/Courses.vue:343
#: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New"
@@ -4461,7 +4461,7 @@ msgstr ""
msgid "New Job Applicant"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:12
msgid "New Payment Gateway"
msgstr ""
@@ -4479,7 +4479,7 @@ msgstr ""
#: lms/lms/utils.py:423
msgid "New comment in batch {0}"
msgstr ""
msgstr "Nuovo commento nel gruppo {0}"
#: lms/lms/utils.py:414
msgid "New reply on the topic {0} in course {1}"
@@ -4683,7 +4683,7 @@ msgstr ""
#. Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Notifications"
msgstr ""
msgstr "Notifiche"
#: lms/lms/widgets/NoPreviewModal.html:30
msgid "Notify me when available"
@@ -4778,12 +4778,7 @@ msgstr ""
#: frontend/src/components/UserAvatar.vue:11
#: frontend/src/pages/CertifiedParticipants.vue:46
#: frontend/src/pages/Profile.vue:69
msgid "Open to Opportunities"
msgstr ""
#. Option for the 'Open to' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Opportunities"
msgid "Open to Work"
msgstr ""
#. Label of the option (Data) field in DocType 'LMS Option'
@@ -4855,7 +4850,7 @@ msgstr ""
#. Label of the output (Data) field in DocType 'LMS Test Case Submission'
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Output"
msgstr ""
msgstr "Risultato"
#: frontend/src/components/Settings/BadgeForm.vue:216
#: lms/lms/doctype/lms_badge/lms_badge.js:37
@@ -4889,7 +4884,7 @@ msgstr ""
#: frontend/src/pages/BatchForm.vue:222
#: lms/lms/doctype/lms_batch/lms_batch.json
msgid "Paid Batch"
msgstr ""
msgstr "Gruppo a pagamento"
#. Label of the paid_certificate (Check) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:207
@@ -4924,7 +4919,7 @@ msgstr ""
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:392
#: frontend/src/components/Modals/Event.vue:408
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass"
@@ -4950,7 +4945,7 @@ msgstr ""
#. Label of the password (Password) field in DocType 'LMS Live Class'
#: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Password"
msgstr ""
msgstr "Password"
#: frontend/src/pages/CourseForm.vue:167
msgid "Paste the youtube link of a short video introducing the course"
@@ -5054,7 +5049,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:384
#: frontend/src/components/Modals/Event.vue:400
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending"
@@ -5172,7 +5167,7 @@ msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:68
msgid "Please install the Payments App to create a paid batch. Refer to the documentation for more details. {0}"
msgstr ""
msgstr "Installa l'app Pagamenti per creare un gruppo a pagamento. Consulta la documentazione per maggiori dettagli. {0}"
#: lms/lms/doctype/lms_course/lms_course.py:57
msgid "Please install the Payments App to create a paid course. Refer to the documentation for more details. {0}"
@@ -5194,7 +5189,7 @@ msgstr ""
msgid "Please login to continue with payment."
msgstr ""
#: lms/lms/utils.py:2081
#: lms/lms/utils.py:2082
msgid "Please login to enroll in the program."
msgstr ""
@@ -5525,7 +5520,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:122
#: frontend/src/components/Modals/Event.vue:128
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105
#: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5693,7 +5688,7 @@ msgstr ""
#. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/Event.vue:98
#: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -5929,14 +5924,14 @@ msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:65
#: frontend/src/components/Modals/EditProfile.vue:121
#: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:157
#: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/Coupons/CouponDetails.vue:78
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:41
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:129
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
@@ -5947,7 +5942,7 @@ msgstr ""
#: frontend/src/pages/Quizzes.vue:105
#: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Save"
msgstr ""
msgstr "Salva"
#. Label of the schedule (Table) field in DocType 'Course Evaluator'
#: lms/lms/doctype/course_evaluator/course_evaluator.json
@@ -6048,7 +6043,7 @@ msgstr ""
msgid "Select Date"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:26
msgid "Select Payment Gateway"
msgstr ""
@@ -6364,7 +6359,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Modals/Event.vue:105
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6475,7 +6470,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:106
#: frontend/src/components/Modals/Event.vue:112
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary"
msgstr ""
@@ -6547,7 +6542,7 @@ msgstr "Amministratore Sistema"
#: frontend/src/pages/CourseForm.vue:51
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Tags"
msgstr "Etichette"
msgstr "Tag"
#: frontend/src/components/InstallPrompt.vue:52
msgid "Tap"
@@ -6571,7 +6566,7 @@ msgstr ""
#. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:127
#: frontend/src/components/Modals/Event.vue:133
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template"
msgstr "Modelli"
@@ -6620,7 +6615,7 @@ msgstr ""
msgid "Thanks and Regards"
msgstr ""
#: lms/lms/utils.py:2247
#: lms/lms/utils.py:2248
msgid "The batch does not exist."
msgstr ""
@@ -6628,7 +6623,7 @@ msgstr ""
msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session."
msgstr ""
#: lms/lms/utils.py:1747
#: lms/lms/utils.py:1748
msgid "The coupon code '{0}' is invalid."
msgstr ""
@@ -6652,7 +6647,7 @@ msgstr ""
msgid "The last day to schedule your evaluations is "
msgstr ""
#: lms/lms/utils.py:2231
#: lms/lms/utils.py:2232
msgid "The lesson does not exist."
msgstr ""
@@ -6660,7 +6655,7 @@ msgstr ""
msgid "The slot is already booked by another participant."
msgstr ""
#: lms/lms/utils.py:1361 lms/lms/utils.py:1477 lms/lms/utils.py:1944
#: lms/lms/utils.py:1362 lms/lms/utils.py:1478 lms/lms/utils.py:1945
msgid "The specified batch does not exist."
msgstr ""
@@ -6705,7 +6700,7 @@ msgstr ""
#. 'LMS Batch'
#: lms/lms/doctype/lms_batch/lms_batch.json
msgid "These customisations will work on the main batch page."
msgstr ""
msgstr "Queste personalizzazioni funzioneranno sulla pagina principale del gruppo."
#: frontend/src/pages/Badge.vue:14
msgid "This badge has been awarded to {0} on {1}."
@@ -6726,15 +6721,15 @@ msgstr ""
msgid "This class has ended"
msgstr ""
#: lms/lms/utils.py:1776
#: lms/lms/utils.py:1777
msgid "This coupon has expired."
msgstr ""
#: lms/lms/utils.py:1779
#: lms/lms/utils.py:1780
msgid "This coupon has reached its maximum usage limit."
msgstr ""
#: lms/lms/utils.py:1788
#: lms/lms/utils.py:1789
msgid "This coupon is not applicable to this {0}."
msgstr ""
@@ -6742,7 +6737,7 @@ msgstr ""
msgid "This course has:"
msgstr ""
#: lms/lms/utils.py:1707
#: lms/lms/utils.py:1708
msgid "This course is free."
msgstr ""
@@ -6799,7 +6794,7 @@ msgid "Thursday"
msgstr ""
#. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48
#: frontend/src/components/Modals/Event.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Quiz.vue:58
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -6934,7 +6929,7 @@ msgstr ""
msgid "To Date"
msgstr ""
#: lms/lms/utils.py:1721
#: lms/lms/utils.py:1722
msgid "To join this batch, please contact the Administrator."
msgstr ""
@@ -7056,7 +7051,7 @@ msgstr ""
msgid "Under Review"
msgstr ""
#: frontend/src/pages/Batches.vue:330 frontend/src/pages/Courses.vue:356
#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:355
msgid "Unpublished"
msgstr ""
@@ -7077,8 +7072,8 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
#. Label of the upcoming (Check) field in DocType 'LMS Course'
#: frontend/src/pages/Batches.vue:328 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:347
#: frontend/src/pages/Batches.vue:330 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:346
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming"
@@ -7109,7 +7104,7 @@ msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExercises.vue:281
msgid "Updated On"
msgstr ""
msgstr "Aggiornato il"
#: frontend/src/components/Controls/Uploader.vue:23
msgid "Upload"
@@ -7220,7 +7215,7 @@ msgid "View Applications"
msgstr ""
#: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67
#: frontend/src/components/Modals/Event.vue:73
msgid "View Certificate"
msgstr ""
@@ -7327,6 +7322,11 @@ msgstr ""
msgid "Withdrawn"
msgstr ""
#. Option for the 'Open to' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Work"
msgstr ""
#. Label of the work_environment (Section Break) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Work Environment"
@@ -7427,7 +7427,7 @@ msgstr ""
msgid "You cannot enroll in an unpublished course."
msgstr ""
#: lms/lms/utils.py:2085
#: lms/lms/utils.py:2086
msgid "You cannot enroll in an unpublished program."
msgstr ""
@@ -7443,11 +7443,11 @@ msgstr ""
msgid "You cannot schedule evaluations for past slots."
msgstr ""
#: lms/lms/utils.py:2259
#: lms/lms/utils.py:2260
msgid "You do not have access to this batch."
msgstr ""
#: lms/lms/utils.py:2242
#: lms/lms/utils.py:2243
msgid "You do not have access to this course."
msgstr ""
@@ -7819,11 +7819,11 @@ msgstr "per chiudere"
#: frontend/src/components/CommandPalette/CommandPalette.vue:45
msgid "to navigate"
msgstr ""
msgstr "per navigare"
#: frontend/src/components/CommandPalette/CommandPalette.vue:53
msgid "to select"
msgstr ""
msgstr "per selezionare"
#: frontend/src/components/BatchFeedback.vue:12
msgid "to view your feedback."
@@ -7867,7 +7867,7 @@ msgstr ""
#: lms/lms/doctype/lms_course/lms_course.py:195
msgid "{0} has published a new course {1}"
msgstr ""
msgstr "{0} ha pubblicato un nuovo corso {1}"
#: lms/templates/emails/job_report.html:4
msgid "{0} has reported a job post for the following reason."
@@ -7899,7 +7899,7 @@ msgstr ""
#: lms/templates/emails/mention_template.html:2
msgid "{0} mentioned you in a comment in your batch."
msgstr ""
msgstr "{0} ti ha menzionato in un commento nel tuo gruppo."
#: lms/lms/utils.py:469 lms/lms/utils.py:475
msgid "{0} mentioned you in a comment in {1}"
+58 -58
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2026-01-16 16:04+0000\n"
"PO-Revision-Date: 2026-01-19 20:13\n"
"POT-Creation-Date: 2026-01-23 16:05+0000\n"
"PO-Revision-Date: 2026-02-05 06:43\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Burmese\n"
"MIME-Version: 1.0\n"
@@ -319,7 +319,7 @@ msgid "Administrator"
msgstr ""
#. Name of a role
#: frontend/src/pages/Batches.vue:319 lms/lms/doctype/lms_badge/lms_badge.json
#: frontend/src/pages/Batches.vue:321 lms/lms/doctype/lms_badge/lms_badge.json
msgid "All"
msgstr ""
@@ -486,7 +486,7 @@ msgstr ""
msgid "Apps"
msgstr ""
#: frontend/src/pages/Batches.vue:329
#: frontend/src/pages/Batches.vue:331
msgid "Archived"
msgstr ""
@@ -753,7 +753,7 @@ msgstr ""
#. Label of the batch_name (Link) field in DocType 'LMS Certificate'
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
#. Label of the batch_name (Link) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:32
#: frontend/src/components/Modals/Event.vue:35
#: frontend/src/components/Settings/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125
@@ -878,7 +878,7 @@ msgid "Batch:"
msgstr ""
#. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue:350 frontend/src/pages/Batches.vue:357
#: frontend/src/pages/Batches.vue:352 frontend/src/pages/Batches.vue:359
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121
msgid "Batches"
msgstr ""
@@ -1023,7 +1023,7 @@ msgstr ""
msgid "Certificate of Completion"
msgstr ""
#: frontend/src/components/Modals/Event.vue:347
#: frontend/src/components/Modals/Event.vue:353
msgid "Certificate saved successfully"
msgstr ""
@@ -1043,7 +1043,7 @@ msgstr ""
#. Label of a chart in the LMS Workspace
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:411
#: frontend/src/components/Modals/Event.vue:427
#: frontend/src/components/Sidebar/AppSidebar.vue:550
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100
#: frontend/src/pages/CourseCertification.vue:10
@@ -1771,7 +1771,7 @@ msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:365 frontend/src/pages/Courses.vue:372
#: frontend/src/pages/Courses.vue:364 frontend/src/pages/Courses.vue:371
#: frontend/src/pages/Programs/ProgramForm.vue:49
#: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1878,7 +1878,7 @@ msgstr ""
msgid "Create your first quiz"
msgstr ""
#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:355
#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:354
msgid "Created"
msgstr ""
@@ -1954,7 +1954,7 @@ msgstr ""
#. Label of the date (Date) field in DocType 'LMS Certificate Request'
#. Label of the date (Date) field in DocType 'LMS Live Class'
#. Label of the date (Date) field in DocType 'Scheduled Flow'
#: frontend/src/components/Modals/Event.vue:40
#: frontend/src/components/Modals/Event.vue:46
#: frontend/src/components/Modals/LiveClassModal.vue:29
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -2241,7 +2241,7 @@ msgstr ""
msgid "Edit Email Template"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:13
msgid "Edit Payment Gateway"
msgstr ""
@@ -2424,7 +2424,7 @@ msgstr ""
msgid "Enroll Now"
msgstr ""
#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:358
#: frontend/src/pages/Batches.vue:334 frontend/src/pages/Courses.vue:357
#: frontend/src/pages/Programs/StudentPrograms.vue:96
msgid "Enrolled"
msgstr ""
@@ -2526,7 +2526,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json
#: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json
msgid "Evaluation"
msgstr ""
@@ -2551,7 +2551,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date."
msgstr ""
#: frontend/src/components/Modals/Event.vue:286
#: frontend/src/components/Modals/Event.vue:292
msgid "Evaluation saved successfully"
msgstr ""
@@ -2664,7 +2664,7 @@ msgstr ""
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:144
#: frontend/src/components/Modals/Event.vue:150
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date"
msgstr ""
@@ -2695,7 +2695,7 @@ msgstr ""
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:396
#: frontend/src/components/Modals/Event.vue:412
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail"
@@ -3209,7 +3209,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:388
#: frontend/src/components/Modals/Event.vue:404
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "In Progress"
@@ -3353,7 +3353,7 @@ msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:138
#: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date"
@@ -3456,7 +3456,7 @@ msgstr ""
msgid "Join Call"
msgstr ""
#: frontend/src/components/Modals/Event.vue:78
#: frontend/src/components/Modals/Event.vue:84
msgid "Join Meeting"
msgstr ""
@@ -3896,7 +3896,7 @@ msgstr ""
msgid "LinkedIn ID"
msgstr ""
#: frontend/src/pages/Courses.vue:341
#: frontend/src/pages/Courses.vue:340
msgid "Live"
msgstr ""
@@ -4429,7 +4429,7 @@ msgstr ""
#: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17
#: frontend/src/pages/Courses.vue:344
#: frontend/src/pages/Courses.vue:343
#: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New"
@@ -4461,7 +4461,7 @@ msgstr ""
msgid "New Job Applicant"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:12
msgid "New Payment Gateway"
msgstr ""
@@ -4778,12 +4778,7 @@ msgstr ""
#: frontend/src/components/UserAvatar.vue:11
#: frontend/src/pages/CertifiedParticipants.vue:46
#: frontend/src/pages/Profile.vue:69
msgid "Open to Opportunities"
msgstr ""
#. Option for the 'Open to' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Opportunities"
msgid "Open to Work"
msgstr ""
#. Label of the option (Data) field in DocType 'LMS Option'
@@ -4924,7 +4919,7 @@ msgstr ""
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:392
#: frontend/src/components/Modals/Event.vue:408
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass"
@@ -5054,7 +5049,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:384
#: frontend/src/components/Modals/Event.vue:400
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending"
@@ -5194,7 +5189,7 @@ msgstr ""
msgid "Please login to continue with payment."
msgstr ""
#: lms/lms/utils.py:2081
#: lms/lms/utils.py:2082
msgid "Please login to enroll in the program."
msgstr ""
@@ -5525,7 +5520,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:122
#: frontend/src/components/Modals/Event.vue:128
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105
#: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5693,7 +5688,7 @@ msgstr ""
#. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/Event.vue:98
#: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -5929,14 +5924,14 @@ msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:65
#: frontend/src/components/Modals/EditProfile.vue:121
#: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:157
#: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/Coupons/CouponDetails.vue:78
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:41
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:129
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
@@ -6048,7 +6043,7 @@ msgstr ""
msgid "Select Date"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:26
msgid "Select Payment Gateway"
msgstr ""
@@ -6364,7 +6359,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Modals/Event.vue:105
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6475,7 +6470,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:106
#: frontend/src/components/Modals/Event.vue:112
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary"
msgstr ""
@@ -6571,7 +6566,7 @@ msgstr ""
#. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:127
#: frontend/src/components/Modals/Event.vue:133
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template"
msgstr ""
@@ -6620,7 +6615,7 @@ msgstr ""
msgid "Thanks and Regards"
msgstr ""
#: lms/lms/utils.py:2247
#: lms/lms/utils.py:2248
msgid "The batch does not exist."
msgstr ""
@@ -6628,7 +6623,7 @@ msgstr ""
msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session."
msgstr ""
#: lms/lms/utils.py:1747
#: lms/lms/utils.py:1748
msgid "The coupon code '{0}' is invalid."
msgstr ""
@@ -6652,7 +6647,7 @@ msgstr ""
msgid "The last day to schedule your evaluations is "
msgstr ""
#: lms/lms/utils.py:2231
#: lms/lms/utils.py:2232
msgid "The lesson does not exist."
msgstr ""
@@ -6660,7 +6655,7 @@ msgstr ""
msgid "The slot is already booked by another participant."
msgstr ""
#: lms/lms/utils.py:1361 lms/lms/utils.py:1477 lms/lms/utils.py:1944
#: lms/lms/utils.py:1362 lms/lms/utils.py:1478 lms/lms/utils.py:1945
msgid "The specified batch does not exist."
msgstr ""
@@ -6726,15 +6721,15 @@ msgstr ""
msgid "This class has ended"
msgstr ""
#: lms/lms/utils.py:1776
#: lms/lms/utils.py:1777
msgid "This coupon has expired."
msgstr ""
#: lms/lms/utils.py:1779
#: lms/lms/utils.py:1780
msgid "This coupon has reached its maximum usage limit."
msgstr ""
#: lms/lms/utils.py:1788
#: lms/lms/utils.py:1789
msgid "This coupon is not applicable to this {0}."
msgstr ""
@@ -6742,7 +6737,7 @@ msgstr ""
msgid "This course has:"
msgstr ""
#: lms/lms/utils.py:1707
#: lms/lms/utils.py:1708
msgid "This course is free."
msgstr ""
@@ -6799,7 +6794,7 @@ msgid "Thursday"
msgstr ""
#. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48
#: frontend/src/components/Modals/Event.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Quiz.vue:58
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -6934,7 +6929,7 @@ msgstr ""
msgid "To Date"
msgstr ""
#: lms/lms/utils.py:1721
#: lms/lms/utils.py:1722
msgid "To join this batch, please contact the Administrator."
msgstr ""
@@ -7056,7 +7051,7 @@ msgstr ""
msgid "Under Review"
msgstr ""
#: frontend/src/pages/Batches.vue:330 frontend/src/pages/Courses.vue:356
#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:355
msgid "Unpublished"
msgstr ""
@@ -7077,8 +7072,8 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
#. Label of the upcoming (Check) field in DocType 'LMS Course'
#: frontend/src/pages/Batches.vue:328 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:347
#: frontend/src/pages/Batches.vue:330 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:346
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming"
@@ -7220,7 +7215,7 @@ msgid "View Applications"
msgstr ""
#: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67
#: frontend/src/components/Modals/Event.vue:73
msgid "View Certificate"
msgstr ""
@@ -7327,6 +7322,11 @@ msgstr ""
msgid "Withdrawn"
msgstr ""
#. Option for the 'Open to' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Work"
msgstr ""
#. Label of the work_environment (Section Break) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Work Environment"
@@ -7427,7 +7427,7 @@ msgstr ""
msgid "You cannot enroll in an unpublished course."
msgstr ""
#: lms/lms/utils.py:2085
#: lms/lms/utils.py:2086
msgid "You cannot enroll in an unpublished program."
msgstr ""
@@ -7443,11 +7443,11 @@ msgstr ""
msgid "You cannot schedule evaluations for past slots."
msgstr ""
#: lms/lms/utils.py:2259
#: lms/lms/utils.py:2260
msgid "You do not have access to this batch."
msgstr ""
#: lms/lms/utils.py:2242
#: lms/lms/utils.py:2243
msgid "You do not have access to this course."
msgstr ""
+58 -58
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2026-01-16 16:04+0000\n"
"PO-Revision-Date: 2026-01-21 20:16\n"
"POT-Creation-Date: 2026-01-23 16:05+0000\n"
"PO-Revision-Date: 2026-02-05 06:43\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Norwegian Bokmal\n"
"MIME-Version: 1.0\n"
@@ -319,7 +319,7 @@ msgid "Administrator"
msgstr "Administrator"
#. Name of a role
#: frontend/src/pages/Batches.vue:319 lms/lms/doctype/lms_badge/lms_badge.json
#: frontend/src/pages/Batches.vue:321 lms/lms/doctype/lms_badge/lms_badge.json
msgid "All"
msgstr "Alle"
@@ -486,7 +486,7 @@ msgstr "Godkjent"
msgid "Apps"
msgstr "Apper"
#: frontend/src/pages/Batches.vue:329
#: frontend/src/pages/Batches.vue:331
msgid "Archived"
msgstr "Arkivert"
@@ -753,7 +753,7 @@ msgstr ""
#. Label of the batch_name (Link) field in DocType 'LMS Certificate'
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
#. Label of the batch_name (Link) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:32
#: frontend/src/components/Modals/Event.vue:35
#: frontend/src/components/Settings/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125
@@ -878,7 +878,7 @@ msgid "Batch:"
msgstr ""
#. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue:350 frontend/src/pages/Batches.vue:357
#: frontend/src/pages/Batches.vue:352 frontend/src/pages/Batches.vue:359
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121
msgid "Batches"
msgstr ""
@@ -1023,7 +1023,7 @@ msgstr ""
msgid "Certificate of Completion"
msgstr ""
#: frontend/src/components/Modals/Event.vue:347
#: frontend/src/components/Modals/Event.vue:353
msgid "Certificate saved successfully"
msgstr ""
@@ -1043,7 +1043,7 @@ msgstr ""
#. Label of a chart in the LMS Workspace
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:411
#: frontend/src/components/Modals/Event.vue:427
#: frontend/src/components/Sidebar/AppSidebar.vue:550
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100
#: frontend/src/pages/CourseCertification.vue:10
@@ -1771,7 +1771,7 @@ msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:365 frontend/src/pages/Courses.vue:372
#: frontend/src/pages/Courses.vue:364 frontend/src/pages/Courses.vue:371
#: frontend/src/pages/Programs/ProgramForm.vue:49
#: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1878,7 +1878,7 @@ msgstr ""
msgid "Create your first quiz"
msgstr ""
#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:355
#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:354
msgid "Created"
msgstr "Opprettet"
@@ -1954,7 +1954,7 @@ msgstr "Dataimport"
#. Label of the date (Date) field in DocType 'LMS Certificate Request'
#. Label of the date (Date) field in DocType 'LMS Live Class'
#. Label of the date (Date) field in DocType 'Scheduled Flow'
#: frontend/src/components/Modals/Event.vue:40
#: frontend/src/components/Modals/Event.vue:46
#: frontend/src/components/Modals/LiveClassModal.vue:29
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -2241,7 +2241,7 @@ msgstr ""
msgid "Edit Email Template"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:13
msgid "Edit Payment Gateway"
msgstr ""
@@ -2424,7 +2424,7 @@ msgstr ""
msgid "Enroll Now"
msgstr ""
#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:358
#: frontend/src/pages/Batches.vue:334 frontend/src/pages/Courses.vue:357
#: frontend/src/pages/Programs/StudentPrograms.vue:96
msgid "Enrolled"
msgstr ""
@@ -2526,7 +2526,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json
#: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json
msgid "Evaluation"
msgstr ""
@@ -2551,7 +2551,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date."
msgstr ""
#: frontend/src/components/Modals/Event.vue:286
#: frontend/src/components/Modals/Event.vue:292
msgid "Evaluation saved successfully"
msgstr ""
@@ -2664,7 +2664,7 @@ msgstr "Utløper den"
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:144
#: frontend/src/components/Modals/Event.vue:150
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date"
msgstr "Utløpsdato"
@@ -2695,7 +2695,7 @@ msgstr ""
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:396
#: frontend/src/components/Modals/Event.vue:412
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail"
@@ -3209,7 +3209,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:388
#: frontend/src/components/Modals/Event.vue:404
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "In Progress"
@@ -3353,7 +3353,7 @@ msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:138
#: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date"
@@ -3456,7 +3456,7 @@ msgstr ""
msgid "Join Call"
msgstr ""
#: frontend/src/components/Modals/Event.vue:78
#: frontend/src/components/Modals/Event.vue:84
msgid "Join Meeting"
msgstr ""
@@ -3896,7 +3896,7 @@ msgstr ""
msgid "LinkedIn ID"
msgstr ""
#: frontend/src/pages/Courses.vue:341
#: frontend/src/pages/Courses.vue:340
msgid "Live"
msgstr ""
@@ -4429,7 +4429,7 @@ msgstr "Navn"
#: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17
#: frontend/src/pages/Courses.vue:344
#: frontend/src/pages/Courses.vue:343
#: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New"
@@ -4461,7 +4461,7 @@ msgstr ""
msgid "New Job Applicant"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:12
msgid "New Payment Gateway"
msgstr ""
@@ -4778,12 +4778,7 @@ msgstr ""
#: frontend/src/components/UserAvatar.vue:11
#: frontend/src/pages/CertifiedParticipants.vue:46
#: frontend/src/pages/Profile.vue:69
msgid "Open to Opportunities"
msgstr ""
#. Option for the 'Open to' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Opportunities"
msgid "Open to Work"
msgstr ""
#. Label of the option (Data) field in DocType 'LMS Option'
@@ -4924,7 +4919,7 @@ msgstr ""
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:392
#: frontend/src/components/Modals/Event.vue:408
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass"
@@ -5054,7 +5049,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:384
#: frontend/src/components/Modals/Event.vue:400
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending"
@@ -5194,7 +5189,7 @@ msgstr ""
msgid "Please login to continue with payment."
msgstr ""
#: lms/lms/utils.py:2081
#: lms/lms/utils.py:2082
msgid "Please login to enroll in the program."
msgstr ""
@@ -5525,7 +5520,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:122
#: frontend/src/components/Modals/Event.vue:128
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105
#: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5693,7 +5688,7 @@ msgstr ""
#. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/Event.vue:98
#: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -5929,14 +5924,14 @@ msgstr "Lørdag"
#: frontend/src/components/Modals/AssignmentForm.vue:65
#: frontend/src/components/Modals/EditProfile.vue:121
#: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:157
#: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/Coupons/CouponDetails.vue:78
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:41
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:129
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
@@ -6048,7 +6043,7 @@ msgstr ""
msgid "Select Date"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:26
msgid "Select Payment Gateway"
msgstr ""
@@ -6364,7 +6359,7 @@ msgstr "Statistikk"
#. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Modals/Event.vue:105
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6475,7 +6470,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:106
#: frontend/src/components/Modals/Event.vue:112
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary"
msgstr "Sammendrag"
@@ -6571,7 +6566,7 @@ msgstr ""
#. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:127
#: frontend/src/components/Modals/Event.vue:133
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template"
msgstr "Mal"
@@ -6620,7 +6615,7 @@ msgstr ""
msgid "Thanks and Regards"
msgstr ""
#: lms/lms/utils.py:2247
#: lms/lms/utils.py:2248
msgid "The batch does not exist."
msgstr ""
@@ -6628,7 +6623,7 @@ msgstr ""
msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session."
msgstr ""
#: lms/lms/utils.py:1747
#: lms/lms/utils.py:1748
msgid "The coupon code '{0}' is invalid."
msgstr ""
@@ -6652,7 +6647,7 @@ msgstr ""
msgid "The last day to schedule your evaluations is "
msgstr ""
#: lms/lms/utils.py:2231
#: lms/lms/utils.py:2232
msgid "The lesson does not exist."
msgstr ""
@@ -6660,7 +6655,7 @@ msgstr ""
msgid "The slot is already booked by another participant."
msgstr ""
#: lms/lms/utils.py:1361 lms/lms/utils.py:1477 lms/lms/utils.py:1944
#: lms/lms/utils.py:1362 lms/lms/utils.py:1478 lms/lms/utils.py:1945
msgid "The specified batch does not exist."
msgstr ""
@@ -6726,15 +6721,15 @@ msgstr ""
msgid "This class has ended"
msgstr ""
#: lms/lms/utils.py:1776
#: lms/lms/utils.py:1777
msgid "This coupon has expired."
msgstr ""
#: lms/lms/utils.py:1779
#: lms/lms/utils.py:1780
msgid "This coupon has reached its maximum usage limit."
msgstr ""
#: lms/lms/utils.py:1788
#: lms/lms/utils.py:1789
msgid "This coupon is not applicable to this {0}."
msgstr ""
@@ -6742,7 +6737,7 @@ msgstr ""
msgid "This course has:"
msgstr ""
#: lms/lms/utils.py:1707
#: lms/lms/utils.py:1708
msgid "This course is free."
msgstr ""
@@ -6799,7 +6794,7 @@ msgid "Thursday"
msgstr "Torsdag"
#. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48
#: frontend/src/components/Modals/Event.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Quiz.vue:58
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -6934,7 +6929,7 @@ msgstr "Til"
msgid "To Date"
msgstr "Til dato"
#: lms/lms/utils.py:1721
#: lms/lms/utils.py:1722
msgid "To join this batch, please contact the Administrator."
msgstr ""
@@ -7056,7 +7051,7 @@ msgstr ""
msgid "Under Review"
msgstr ""
#: frontend/src/pages/Batches.vue:330 frontend/src/pages/Courses.vue:356
#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:355
msgid "Unpublished"
msgstr ""
@@ -7077,8 +7072,8 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
#. Label of the upcoming (Check) field in DocType 'LMS Course'
#: frontend/src/pages/Batches.vue:328 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:347
#: frontend/src/pages/Batches.vue:330 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:346
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming"
@@ -7220,7 +7215,7 @@ msgid "View Applications"
msgstr ""
#: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67
#: frontend/src/components/Modals/Event.vue:73
msgid "View Certificate"
msgstr ""
@@ -7327,6 +7322,11 @@ msgstr ""
msgid "Withdrawn"
msgstr ""
#. Option for the 'Open to' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Work"
msgstr ""
#. Label of the work_environment (Section Break) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Work Environment"
@@ -7427,7 +7427,7 @@ msgstr ""
msgid "You cannot enroll in an unpublished course."
msgstr ""
#: lms/lms/utils.py:2085
#: lms/lms/utils.py:2086
msgid "You cannot enroll in an unpublished program."
msgstr ""
@@ -7443,11 +7443,11 @@ msgstr ""
msgid "You cannot schedule evaluations for past slots."
msgstr ""
#: lms/lms/utils.py:2259
#: lms/lms/utils.py:2260
msgid "You do not have access to this batch."
msgstr ""
#: lms/lms/utils.py:2242
#: lms/lms/utils.py:2243
msgid "You do not have access to this course."
msgstr ""
+1457 -1456
View File
File diff suppressed because it is too large Load Diff
+58 -58
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2026-01-16 16:04+0000\n"
"PO-Revision-Date: 2026-01-21 20:16\n"
"POT-Creation-Date: 2026-01-23 16:05+0000\n"
"PO-Revision-Date: 2026-02-05 06:43\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Polish\n"
"MIME-Version: 1.0\n"
@@ -319,7 +319,7 @@ msgid "Administrator"
msgstr "Administrator"
#. Name of a role
#: frontend/src/pages/Batches.vue:319 lms/lms/doctype/lms_badge/lms_badge.json
#: frontend/src/pages/Batches.vue:321 lms/lms/doctype/lms_badge/lms_badge.json
msgid "All"
msgstr ""
@@ -486,7 +486,7 @@ msgstr ""
msgid "Apps"
msgstr "Aplikacje"
#: frontend/src/pages/Batches.vue:329
#: frontend/src/pages/Batches.vue:331
msgid "Archived"
msgstr "W archiwum"
@@ -753,7 +753,7 @@ msgstr ""
#. Label of the batch_name (Link) field in DocType 'LMS Certificate'
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
#. Label of the batch_name (Link) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:32
#: frontend/src/components/Modals/Event.vue:35
#: frontend/src/components/Settings/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125
@@ -878,7 +878,7 @@ msgid "Batch:"
msgstr "Grupa:"
#. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue:350 frontend/src/pages/Batches.vue:357
#: frontend/src/pages/Batches.vue:352 frontend/src/pages/Batches.vue:359
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121
msgid "Batches"
msgstr ""
@@ -1023,7 +1023,7 @@ msgstr ""
msgid "Certificate of Completion"
msgstr ""
#: frontend/src/components/Modals/Event.vue:347
#: frontend/src/components/Modals/Event.vue:353
msgid "Certificate saved successfully"
msgstr ""
@@ -1043,7 +1043,7 @@ msgstr ""
#. Label of a chart in the LMS Workspace
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:411
#: frontend/src/components/Modals/Event.vue:427
#: frontend/src/components/Sidebar/AppSidebar.vue:550
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100
#: frontend/src/pages/CourseCertification.vue:10
@@ -1771,7 +1771,7 @@ msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:365 frontend/src/pages/Courses.vue:372
#: frontend/src/pages/Courses.vue:364 frontend/src/pages/Courses.vue:371
#: frontend/src/pages/Programs/ProgramForm.vue:49
#: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1878,7 +1878,7 @@ msgstr ""
msgid "Create your first quiz"
msgstr ""
#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:355
#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:354
msgid "Created"
msgstr "utworzył(a)"
@@ -1954,7 +1954,7 @@ msgstr ""
#. Label of the date (Date) field in DocType 'LMS Certificate Request'
#. Label of the date (Date) field in DocType 'LMS Live Class'
#. Label of the date (Date) field in DocType 'Scheduled Flow'
#: frontend/src/components/Modals/Event.vue:40
#: frontend/src/components/Modals/Event.vue:46
#: frontend/src/components/Modals/LiveClassModal.vue:29
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -2241,7 +2241,7 @@ msgstr ""
msgid "Edit Email Template"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:13
msgid "Edit Payment Gateway"
msgstr ""
@@ -2424,7 +2424,7 @@ msgstr ""
msgid "Enroll Now"
msgstr ""
#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:358
#: frontend/src/pages/Batches.vue:334 frontend/src/pages/Courses.vue:357
#: frontend/src/pages/Programs/StudentPrograms.vue:96
msgid "Enrolled"
msgstr ""
@@ -2526,7 +2526,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json
#: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json
msgid "Evaluation"
msgstr ""
@@ -2551,7 +2551,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date."
msgstr ""
#: frontend/src/components/Modals/Event.vue:286
#: frontend/src/components/Modals/Event.vue:292
msgid "Evaluation saved successfully"
msgstr ""
@@ -2664,7 +2664,7 @@ msgstr ""
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:144
#: frontend/src/components/Modals/Event.vue:150
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date"
msgstr "Data ważności"
@@ -2695,7 +2695,7 @@ msgstr ""
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:396
#: frontend/src/components/Modals/Event.vue:412
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail"
@@ -3209,7 +3209,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:388
#: frontend/src/components/Modals/Event.vue:404
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "In Progress"
@@ -3353,7 +3353,7 @@ msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:138
#: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date"
@@ -3456,7 +3456,7 @@ msgstr ""
msgid "Join Call"
msgstr ""
#: frontend/src/components/Modals/Event.vue:78
#: frontend/src/components/Modals/Event.vue:84
msgid "Join Meeting"
msgstr ""
@@ -3896,7 +3896,7 @@ msgstr "LinkedIn"
msgid "LinkedIn ID"
msgstr ""
#: frontend/src/pages/Courses.vue:341
#: frontend/src/pages/Courses.vue:340
msgid "Live"
msgstr ""
@@ -4429,7 +4429,7 @@ msgstr "Nazwa"
#: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17
#: frontend/src/pages/Courses.vue:344
#: frontend/src/pages/Courses.vue:343
#: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New"
@@ -4461,7 +4461,7 @@ msgstr ""
msgid "New Job Applicant"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:12
msgid "New Payment Gateway"
msgstr ""
@@ -4778,12 +4778,7 @@ msgstr ""
#: frontend/src/components/UserAvatar.vue:11
#: frontend/src/pages/CertifiedParticipants.vue:46
#: frontend/src/pages/Profile.vue:69
msgid "Open to Opportunities"
msgstr ""
#. Option for the 'Open to' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Opportunities"
msgid "Open to Work"
msgstr ""
#. Label of the option (Data) field in DocType 'LMS Option'
@@ -4924,7 +4919,7 @@ msgstr ""
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:392
#: frontend/src/components/Modals/Event.vue:408
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass"
@@ -5054,7 +5049,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:384
#: frontend/src/components/Modals/Event.vue:400
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending"
@@ -5194,7 +5189,7 @@ msgstr ""
msgid "Please login to continue with payment."
msgstr ""
#: lms/lms/utils.py:2081
#: lms/lms/utils.py:2082
msgid "Please login to enroll in the program."
msgstr ""
@@ -5525,7 +5520,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:122
#: frontend/src/components/Modals/Event.vue:128
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105
#: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5693,7 +5688,7 @@ msgstr ""
#. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/Event.vue:98
#: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -5929,14 +5924,14 @@ msgstr "Sobota"
#: frontend/src/components/Modals/AssignmentForm.vue:65
#: frontend/src/components/Modals/EditProfile.vue:121
#: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:157
#: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/Coupons/CouponDetails.vue:78
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:41
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:129
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
@@ -6048,7 +6043,7 @@ msgstr ""
msgid "Select Date"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:26
msgid "Select Payment Gateway"
msgstr ""
@@ -6364,7 +6359,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Modals/Event.vue:105
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6475,7 +6470,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:106
#: frontend/src/components/Modals/Event.vue:112
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary"
msgstr "Podsumowanie"
@@ -6571,7 +6566,7 @@ msgstr ""
#. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:127
#: frontend/src/components/Modals/Event.vue:133
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template"
msgstr "Szablon"
@@ -6620,7 +6615,7 @@ msgstr ""
msgid "Thanks and Regards"
msgstr ""
#: lms/lms/utils.py:2247
#: lms/lms/utils.py:2248
msgid "The batch does not exist."
msgstr ""
@@ -6628,7 +6623,7 @@ msgstr ""
msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session."
msgstr ""
#: lms/lms/utils.py:1747
#: lms/lms/utils.py:1748
msgid "The coupon code '{0}' is invalid."
msgstr ""
@@ -6652,7 +6647,7 @@ msgstr ""
msgid "The last day to schedule your evaluations is "
msgstr ""
#: lms/lms/utils.py:2231
#: lms/lms/utils.py:2232
msgid "The lesson does not exist."
msgstr ""
@@ -6660,7 +6655,7 @@ msgstr ""
msgid "The slot is already booked by another participant."
msgstr ""
#: lms/lms/utils.py:1361 lms/lms/utils.py:1477 lms/lms/utils.py:1944
#: lms/lms/utils.py:1362 lms/lms/utils.py:1478 lms/lms/utils.py:1945
msgid "The specified batch does not exist."
msgstr ""
@@ -6726,15 +6721,15 @@ msgstr ""
msgid "This class has ended"
msgstr ""
#: lms/lms/utils.py:1776
#: lms/lms/utils.py:1777
msgid "This coupon has expired."
msgstr ""
#: lms/lms/utils.py:1779
#: lms/lms/utils.py:1780
msgid "This coupon has reached its maximum usage limit."
msgstr ""
#: lms/lms/utils.py:1788
#: lms/lms/utils.py:1789
msgid "This coupon is not applicable to this {0}."
msgstr ""
@@ -6742,7 +6737,7 @@ msgstr ""
msgid "This course has:"
msgstr ""
#: lms/lms/utils.py:1707
#: lms/lms/utils.py:1708
msgid "This course is free."
msgstr ""
@@ -6799,7 +6794,7 @@ msgid "Thursday"
msgstr "czwartek"
#. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48
#: frontend/src/components/Modals/Event.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Quiz.vue:58
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -6934,7 +6929,7 @@ msgstr ""
msgid "To Date"
msgstr ""
#: lms/lms/utils.py:1721
#: lms/lms/utils.py:1722
msgid "To join this batch, please contact the Administrator."
msgstr ""
@@ -7056,7 +7051,7 @@ msgstr ""
msgid "Under Review"
msgstr ""
#: frontend/src/pages/Batches.vue:330 frontend/src/pages/Courses.vue:356
#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:355
msgid "Unpublished"
msgstr ""
@@ -7077,8 +7072,8 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
#. Label of the upcoming (Check) field in DocType 'LMS Course'
#: frontend/src/pages/Batches.vue:328 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:347
#: frontend/src/pages/Batches.vue:330 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:346
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming"
@@ -7220,7 +7215,7 @@ msgid "View Applications"
msgstr ""
#: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67
#: frontend/src/components/Modals/Event.vue:73
msgid "View Certificate"
msgstr ""
@@ -7327,6 +7322,11 @@ msgstr ""
msgid "Withdrawn"
msgstr ""
#. Option for the 'Open to' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Work"
msgstr ""
#. Label of the work_environment (Section Break) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Work Environment"
@@ -7427,7 +7427,7 @@ msgstr ""
msgid "You cannot enroll in an unpublished course."
msgstr ""
#: lms/lms/utils.py:2085
#: lms/lms/utils.py:2086
msgid "You cannot enroll in an unpublished program."
msgstr ""
@@ -7443,11 +7443,11 @@ msgstr ""
msgid "You cannot schedule evaluations for past slots."
msgstr ""
#: lms/lms/utils.py:2259
#: lms/lms/utils.py:2260
msgid "You do not have access to this batch."
msgstr ""
#: lms/lms/utils.py:2242
#: lms/lms/utils.py:2243
msgid "You do not have access to this course."
msgstr ""
+58 -58
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2026-01-16 16:04+0000\n"
"PO-Revision-Date: 2026-01-19 20:13\n"
"POT-Creation-Date: 2026-01-23 16:05+0000\n"
"PO-Revision-Date: 2026-02-05 06:43\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Portuguese\n"
"MIME-Version: 1.0\n"
@@ -319,7 +319,7 @@ msgid "Administrator"
msgstr ""
#. Name of a role
#: frontend/src/pages/Batches.vue:319 lms/lms/doctype/lms_badge/lms_badge.json
#: frontend/src/pages/Batches.vue:321 lms/lms/doctype/lms_badge/lms_badge.json
msgid "All"
msgstr ""
@@ -486,7 +486,7 @@ msgstr ""
msgid "Apps"
msgstr ""
#: frontend/src/pages/Batches.vue:329
#: frontend/src/pages/Batches.vue:331
msgid "Archived"
msgstr ""
@@ -753,7 +753,7 @@ msgstr ""
#. Label of the batch_name (Link) field in DocType 'LMS Certificate'
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
#. Label of the batch_name (Link) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:32
#: frontend/src/components/Modals/Event.vue:35
#: frontend/src/components/Settings/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125
@@ -878,7 +878,7 @@ msgid "Batch:"
msgstr ""
#. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue:350 frontend/src/pages/Batches.vue:357
#: frontend/src/pages/Batches.vue:352 frontend/src/pages/Batches.vue:359
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121
msgid "Batches"
msgstr ""
@@ -1023,7 +1023,7 @@ msgstr ""
msgid "Certificate of Completion"
msgstr ""
#: frontend/src/components/Modals/Event.vue:347
#: frontend/src/components/Modals/Event.vue:353
msgid "Certificate saved successfully"
msgstr ""
@@ -1043,7 +1043,7 @@ msgstr ""
#. Label of a chart in the LMS Workspace
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:411
#: frontend/src/components/Modals/Event.vue:427
#: frontend/src/components/Sidebar/AppSidebar.vue:550
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100
#: frontend/src/pages/CourseCertification.vue:10
@@ -1771,7 +1771,7 @@ msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:365 frontend/src/pages/Courses.vue:372
#: frontend/src/pages/Courses.vue:364 frontend/src/pages/Courses.vue:371
#: frontend/src/pages/Programs/ProgramForm.vue:49
#: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1878,7 +1878,7 @@ msgstr ""
msgid "Create your first quiz"
msgstr ""
#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:355
#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:354
msgid "Created"
msgstr ""
@@ -1954,7 +1954,7 @@ msgstr ""
#. Label of the date (Date) field in DocType 'LMS Certificate Request'
#. Label of the date (Date) field in DocType 'LMS Live Class'
#. Label of the date (Date) field in DocType 'Scheduled Flow'
#: frontend/src/components/Modals/Event.vue:40
#: frontend/src/components/Modals/Event.vue:46
#: frontend/src/components/Modals/LiveClassModal.vue:29
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -2241,7 +2241,7 @@ msgstr ""
msgid "Edit Email Template"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:13
msgid "Edit Payment Gateway"
msgstr ""
@@ -2424,7 +2424,7 @@ msgstr ""
msgid "Enroll Now"
msgstr ""
#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:358
#: frontend/src/pages/Batches.vue:334 frontend/src/pages/Courses.vue:357
#: frontend/src/pages/Programs/StudentPrograms.vue:96
msgid "Enrolled"
msgstr ""
@@ -2526,7 +2526,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json
#: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json
msgid "Evaluation"
msgstr ""
@@ -2551,7 +2551,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date."
msgstr ""
#: frontend/src/components/Modals/Event.vue:286
#: frontend/src/components/Modals/Event.vue:292
msgid "Evaluation saved successfully"
msgstr ""
@@ -2664,7 +2664,7 @@ msgstr ""
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:144
#: frontend/src/components/Modals/Event.vue:150
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date"
msgstr ""
@@ -2695,7 +2695,7 @@ msgstr ""
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:396
#: frontend/src/components/Modals/Event.vue:412
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail"
@@ -3209,7 +3209,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:388
#: frontend/src/components/Modals/Event.vue:404
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "In Progress"
@@ -3353,7 +3353,7 @@ msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:138
#: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date"
@@ -3456,7 +3456,7 @@ msgstr ""
msgid "Join Call"
msgstr ""
#: frontend/src/components/Modals/Event.vue:78
#: frontend/src/components/Modals/Event.vue:84
msgid "Join Meeting"
msgstr ""
@@ -3896,7 +3896,7 @@ msgstr ""
msgid "LinkedIn ID"
msgstr ""
#: frontend/src/pages/Courses.vue:341
#: frontend/src/pages/Courses.vue:340
msgid "Live"
msgstr ""
@@ -4429,7 +4429,7 @@ msgstr ""
#: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17
#: frontend/src/pages/Courses.vue:344
#: frontend/src/pages/Courses.vue:343
#: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New"
@@ -4461,7 +4461,7 @@ msgstr ""
msgid "New Job Applicant"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:12
msgid "New Payment Gateway"
msgstr ""
@@ -4778,12 +4778,7 @@ msgstr ""
#: frontend/src/components/UserAvatar.vue:11
#: frontend/src/pages/CertifiedParticipants.vue:46
#: frontend/src/pages/Profile.vue:69
msgid "Open to Opportunities"
msgstr ""
#. Option for the 'Open to' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Opportunities"
msgid "Open to Work"
msgstr ""
#. Label of the option (Data) field in DocType 'LMS Option'
@@ -4924,7 +4919,7 @@ msgstr ""
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:392
#: frontend/src/components/Modals/Event.vue:408
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass"
@@ -5054,7 +5049,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:384
#: frontend/src/components/Modals/Event.vue:400
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending"
@@ -5194,7 +5189,7 @@ msgstr ""
msgid "Please login to continue with payment."
msgstr ""
#: lms/lms/utils.py:2081
#: lms/lms/utils.py:2082
msgid "Please login to enroll in the program."
msgstr ""
@@ -5525,7 +5520,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:122
#: frontend/src/components/Modals/Event.vue:128
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105
#: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5693,7 +5688,7 @@ msgstr ""
#. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/Event.vue:98
#: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -5929,14 +5924,14 @@ msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:65
#: frontend/src/components/Modals/EditProfile.vue:121
#: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:157
#: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/Coupons/CouponDetails.vue:78
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:41
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:129
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
@@ -6048,7 +6043,7 @@ msgstr ""
msgid "Select Date"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:26
msgid "Select Payment Gateway"
msgstr ""
@@ -6364,7 +6359,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Modals/Event.vue:105
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6475,7 +6470,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:106
#: frontend/src/components/Modals/Event.vue:112
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary"
msgstr ""
@@ -6571,7 +6566,7 @@ msgstr ""
#. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:127
#: frontend/src/components/Modals/Event.vue:133
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template"
msgstr ""
@@ -6620,7 +6615,7 @@ msgstr ""
msgid "Thanks and Regards"
msgstr ""
#: lms/lms/utils.py:2247
#: lms/lms/utils.py:2248
msgid "The batch does not exist."
msgstr ""
@@ -6628,7 +6623,7 @@ msgstr ""
msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session."
msgstr ""
#: lms/lms/utils.py:1747
#: lms/lms/utils.py:1748
msgid "The coupon code '{0}' is invalid."
msgstr ""
@@ -6652,7 +6647,7 @@ msgstr ""
msgid "The last day to schedule your evaluations is "
msgstr ""
#: lms/lms/utils.py:2231
#: lms/lms/utils.py:2232
msgid "The lesson does not exist."
msgstr ""
@@ -6660,7 +6655,7 @@ msgstr ""
msgid "The slot is already booked by another participant."
msgstr ""
#: lms/lms/utils.py:1361 lms/lms/utils.py:1477 lms/lms/utils.py:1944
#: lms/lms/utils.py:1362 lms/lms/utils.py:1478 lms/lms/utils.py:1945
msgid "The specified batch does not exist."
msgstr ""
@@ -6726,15 +6721,15 @@ msgstr ""
msgid "This class has ended"
msgstr ""
#: lms/lms/utils.py:1776
#: lms/lms/utils.py:1777
msgid "This coupon has expired."
msgstr ""
#: lms/lms/utils.py:1779
#: lms/lms/utils.py:1780
msgid "This coupon has reached its maximum usage limit."
msgstr ""
#: lms/lms/utils.py:1788
#: lms/lms/utils.py:1789
msgid "This coupon is not applicable to this {0}."
msgstr ""
@@ -6742,7 +6737,7 @@ msgstr ""
msgid "This course has:"
msgstr ""
#: lms/lms/utils.py:1707
#: lms/lms/utils.py:1708
msgid "This course is free."
msgstr ""
@@ -6799,7 +6794,7 @@ msgid "Thursday"
msgstr ""
#. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48
#: frontend/src/components/Modals/Event.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Quiz.vue:58
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -6934,7 +6929,7 @@ msgstr ""
msgid "To Date"
msgstr ""
#: lms/lms/utils.py:1721
#: lms/lms/utils.py:1722
msgid "To join this batch, please contact the Administrator."
msgstr ""
@@ -7056,7 +7051,7 @@ msgstr ""
msgid "Under Review"
msgstr ""
#: frontend/src/pages/Batches.vue:330 frontend/src/pages/Courses.vue:356
#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:355
msgid "Unpublished"
msgstr ""
@@ -7077,8 +7072,8 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
#. Label of the upcoming (Check) field in DocType 'LMS Course'
#: frontend/src/pages/Batches.vue:328 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:347
#: frontend/src/pages/Batches.vue:330 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:346
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming"
@@ -7220,7 +7215,7 @@ msgid "View Applications"
msgstr ""
#: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67
#: frontend/src/components/Modals/Event.vue:73
msgid "View Certificate"
msgstr ""
@@ -7327,6 +7322,11 @@ msgstr ""
msgid "Withdrawn"
msgstr ""
#. Option for the 'Open to' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Work"
msgstr ""
#. Label of the work_environment (Section Break) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Work Environment"
@@ -7427,7 +7427,7 @@ msgstr ""
msgid "You cannot enroll in an unpublished course."
msgstr ""
#: lms/lms/utils.py:2085
#: lms/lms/utils.py:2086
msgid "You cannot enroll in an unpublished program."
msgstr ""
@@ -7443,11 +7443,11 @@ msgstr ""
msgid "You cannot schedule evaluations for past slots."
msgstr ""
#: lms/lms/utils.py:2259
#: lms/lms/utils.py:2260
msgid "You do not have access to this batch."
msgstr ""
#: lms/lms/utils.py:2242
#: lms/lms/utils.py:2243
msgid "You do not have access to this course."
msgstr ""
+77 -77
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2026-01-16 16:04+0000\n"
"PO-Revision-Date: 2026-01-21 20:16\n"
"POT-Creation-Date: 2026-01-23 16:05+0000\n"
"PO-Revision-Date: 2026-02-05 06:43\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Portuguese, Brazilian\n"
"MIME-Version: 1.0\n"
@@ -319,7 +319,7 @@ msgid "Administrator"
msgstr ""
#. Name of a role
#: frontend/src/pages/Batches.vue:319 lms/lms/doctype/lms_badge/lms_badge.json
#: frontend/src/pages/Batches.vue:321 lms/lms/doctype/lms_badge/lms_badge.json
msgid "All"
msgstr ""
@@ -486,7 +486,7 @@ msgstr ""
msgid "Apps"
msgstr ""
#: frontend/src/pages/Batches.vue:329
#: frontend/src/pages/Batches.vue:331
msgid "Archived"
msgstr ""
@@ -753,7 +753,7 @@ msgstr ""
#. Label of the batch_name (Link) field in DocType 'LMS Certificate'
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
#. Label of the batch_name (Link) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:32
#: frontend/src/components/Modals/Event.vue:35
#: frontend/src/components/Settings/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125
@@ -878,7 +878,7 @@ msgid "Batch:"
msgstr ""
#. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue:350 frontend/src/pages/Batches.vue:357
#: frontend/src/pages/Batches.vue:352 frontend/src/pages/Batches.vue:359
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121
msgid "Batches"
msgstr ""
@@ -1023,7 +1023,7 @@ msgstr ""
msgid "Certificate of Completion"
msgstr ""
#: frontend/src/components/Modals/Event.vue:347
#: frontend/src/components/Modals/Event.vue:353
msgid "Certificate saved successfully"
msgstr ""
@@ -1043,7 +1043,7 @@ msgstr ""
#. Label of a chart in the LMS Workspace
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:411
#: frontend/src/components/Modals/Event.vue:427
#: frontend/src/components/Sidebar/AppSidebar.vue:550
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100
#: frontend/src/pages/CourseCertification.vue:10
@@ -1207,7 +1207,7 @@ msgstr ""
#: lms/fixtures/custom_field.json
#: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "City"
msgstr ""
msgstr "Cidade"
#: lms/templates/emails/live_class_reminder.html:10
msgid "Class:"
@@ -1524,7 +1524,7 @@ msgstr ""
#: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/payment_country/payment_country.json
msgid "Country"
msgstr ""
msgstr "País"
#. Label of the coupon (Link) field in DocType 'LMS Payment'
#: lms/lms/doctype/lms_payment/lms_payment.json
@@ -1771,7 +1771,7 @@ msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:365 frontend/src/pages/Courses.vue:372
#: frontend/src/pages/Courses.vue:364 frontend/src/pages/Courses.vue:371
#: frontend/src/pages/Programs/ProgramForm.vue:49
#: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1878,7 +1878,7 @@ msgstr ""
msgid "Create your first quiz"
msgstr ""
#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:355
#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:354
msgid "Created"
msgstr ""
@@ -1899,7 +1899,7 @@ msgstr ""
#: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Currency"
msgstr ""
msgstr "Moeda"
#. Label of the current_lesson (Link) field in DocType 'LMS Enrollment'
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
@@ -1954,7 +1954,7 @@ msgstr ""
#. Label of the date (Date) field in DocType 'LMS Certificate Request'
#. Label of the date (Date) field in DocType 'LMS Live Class'
#. Label of the date (Date) field in DocType 'Scheduled Flow'
#: frontend/src/components/Modals/Event.vue:40
#: frontend/src/components/Modals/Event.vue:46
#: frontend/src/components/Modals/LiveClassModal.vue:29
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -1962,7 +1962,7 @@ msgstr ""
#: lms/lms/doctype/lms_live_class/lms_live_class.json
#: lms/lms/doctype/scheduled_flow/scheduled_flow.json
msgid "Date"
msgstr ""
msgstr "Data"
#: frontend/src/pages/BatchForm.vue:76
msgid "Date and Time"
@@ -2086,7 +2086,7 @@ msgstr ""
#: lms/lms/doctype/lms_live_class/lms_live_class.json
#: lms/lms/doctype/work_experience/work_experience.json
msgid "Description"
msgstr ""
msgstr "Descrição"
#: frontend/src/components/Sidebar/Apps.vue:50
msgid "Desk"
@@ -2096,7 +2096,7 @@ msgstr ""
#: frontend/src/pages/BatchForm.vue:21 frontend/src/pages/CourseForm.vue:25
#: frontend/src/pages/QuizForm.vue:50
msgid "Details"
msgstr ""
msgstr "Detalhes"
#. Label of the disable_pwa (Check) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json
@@ -2122,7 +2122,7 @@ msgstr ""
#: frontend/src/components/Settings/PaymentGateways.vue:55
#: frontend/src/components/Settings/ZoomSettings.vue:66
msgid "Disabled"
msgstr ""
msgstr "Desativado"
#: frontend/src/components/DiscussionReplies.vue:57
#: lms/lms/widgets/NoPreviewModal.html:25
@@ -2241,7 +2241,7 @@ msgstr ""
msgid "Edit Email Template"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:13
msgid "Edit Payment Gateway"
msgstr ""
@@ -2291,7 +2291,7 @@ msgstr ""
#: lms/lms/doctype/lms_settings/lms_settings.json
#: lms/templates/signup-form.html:10
msgid "Email"
msgstr ""
msgstr "E-Mail"
#: frontend/src/components/Modals/Event.vue:16
msgid "Email ID"
@@ -2424,7 +2424,7 @@ msgstr ""
msgid "Enroll Now"
msgstr ""
#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:358
#: frontend/src/pages/Batches.vue:334 frontend/src/pages/Courses.vue:357
#: frontend/src/pages/Programs/StudentPrograms.vue:96
msgid "Enrolled"
msgstr ""
@@ -2526,7 +2526,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json
#: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json
msgid "Evaluation"
msgstr ""
@@ -2551,7 +2551,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date."
msgstr ""
#: frontend/src/components/Modals/Event.vue:286
#: frontend/src/components/Modals/Event.vue:292
msgid "Evaluation saved successfully"
msgstr ""
@@ -2664,7 +2664,7 @@ msgstr ""
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:144
#: frontend/src/components/Modals/Event.vue:150
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date"
msgstr ""
@@ -2695,7 +2695,7 @@ msgstr ""
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:396
#: frontend/src/components/Modals/Event.vue:412
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail"
@@ -2796,7 +2796,7 @@ msgstr ""
#: frontend/src/components/Modals/EditProfile.vue:70
#: frontend/src/components/Settings/Members.vue:110
msgid "First Name"
msgstr ""
msgstr "Nome"
#. Option for the 'Time Preference' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
@@ -2874,7 +2874,7 @@ msgstr ""
#: lms/lms/doctype/lms_program_member/lms_program_member.json
#: lms/templates/signup-form.html:5
msgid "Full Name"
msgstr ""
msgstr "Nome Completo"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#. Option in a Select field in the job-opportunity Web Form
@@ -3183,7 +3183,7 @@ msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge/lms_badge.json
msgid "Image"
msgstr ""
msgstr "Imagem"
#: frontend/src/components/Modals/EditCoverImage.vue:58
#: frontend/src/components/UnsplashImageBrowser.vue:52
@@ -3209,7 +3209,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:388
#: frontend/src/components/Modals/Event.vue:404
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "In Progress"
@@ -3248,7 +3248,7 @@ msgstr ""
#: lms/lms/doctype/industry/industry.json
#: lms/lms/doctype/preferred_industry/preferred_industry.json
msgid "Industry"
msgstr ""
msgstr "Segmento"
#. Label of the input (Data) field in DocType 'LMS Test Case'
#. Label of the input (Data) field in DocType 'LMS Test Case Submission'
@@ -3353,7 +3353,7 @@ msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:138
#: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date"
@@ -3436,7 +3436,7 @@ msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.json
#: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Job Title"
msgstr ""
msgstr "Cargo"
#. Label of the jobs (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/JobApplications.vue:9 frontend/src/pages/JobDetail.vue:10
@@ -3456,7 +3456,7 @@ msgstr ""
msgid "Join Call"
msgstr ""
#: frontend/src/components/Modals/Event.vue:78
#: frontend/src/components/Modals/Event.vue:84
msgid "Join Meeting"
msgstr ""
@@ -3782,7 +3782,7 @@ msgstr ""
#: frontend/src/components/Modals/EditProfile.vue:74
msgid "Last Name"
msgstr ""
msgstr "Sobrenome"
#. Label of the launch_file (Code) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json
@@ -3896,7 +3896,7 @@ msgstr ""
msgid "LinkedIn ID"
msgstr ""
#: frontend/src/pages/Courses.vue:341
#: frontend/src/pages/Courses.vue:340
msgid "Live"
msgstr ""
@@ -4429,7 +4429,7 @@ msgstr ""
#: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17
#: frontend/src/pages/Courses.vue:344
#: frontend/src/pages/Courses.vue:343
#: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New"
@@ -4461,7 +4461,7 @@ msgstr ""
msgid "New Job Applicant"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:12
msgid "New Payment Gateway"
msgstr ""
@@ -4665,7 +4665,7 @@ msgstr ""
#: frontend/src/pages/Lesson.vue:405 frontend/src/pages/Lesson.vue:886
#: frontend/src/pages/Lesson.vue:897
msgid "Notes"
msgstr "Notas"
msgstr "Anotações"
#: frontend/src/pages/Notifications.vue:143
msgid "Nothing to see here."
@@ -4778,14 +4778,9 @@ msgstr ""
#: frontend/src/components/UserAvatar.vue:11
#: frontend/src/pages/CertifiedParticipants.vue:46
#: frontend/src/pages/Profile.vue:69
msgid "Open to Opportunities"
msgid "Open to Work"
msgstr ""
#. Option for the 'Open to' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Opportunities"
msgstr "Oportunidades"
#. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:70
#: lms/lms/doctype/lms_option/lms_option.json
@@ -4924,7 +4919,7 @@ msgstr ""
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:392
#: frontend/src/components/Modals/Event.vue:408
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass"
@@ -5054,7 +5049,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:384
#: frontend/src/components/Modals/Event.vue:400
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending"
@@ -5194,7 +5189,7 @@ msgstr ""
msgid "Please login to continue with payment."
msgstr ""
#: lms/lms/utils.py:2081
#: lms/lms/utils.py:2082
msgid "Please login to enroll in the program."
msgstr ""
@@ -5525,7 +5520,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:122
#: frontend/src/components/Modals/Event.vue:128
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105
#: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5693,7 +5688,7 @@ msgstr ""
#. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/Event.vue:98
#: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -5929,14 +5924,14 @@ msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:65
#: frontend/src/components/Modals/EditProfile.vue:121
#: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:157
#: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/Coupons/CouponDetails.vue:78
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:41
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:129
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
@@ -6048,7 +6043,7 @@ msgstr ""
msgid "Select Date"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:26
msgid "Select Payment Gateway"
msgstr ""
@@ -6276,7 +6271,7 @@ msgstr ""
#: lms/lms/doctype/lms_source/lms_source.json
#: lms/lms/doctype/lms_video_watch_duration/lms_video_watch_duration.json
msgid "Source"
msgstr ""
msgstr "Origem"
#. Option for the 'Member Type' (Select) field in DocType 'LMS Enrollment'
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
@@ -6342,7 +6337,7 @@ msgstr ""
#: frontend/src/pages/Billing.vue:134
msgid "State/Province"
msgstr ""
msgstr "Estado"
#. Label of the tab_4_tab (Tab Break) field in DocType 'LMS Course'
#. Label of the statistics (Check) field in DocType 'LMS Settings'
@@ -6364,7 +6359,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Modals/Event.vue:105
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6381,7 +6376,7 @@ msgstr ""
#: lms/lms/doctype/lms_programming_exercise_submission/lms_programming_exercise_submission.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Status"
msgstr ""
msgstr "Situação"
#: lms/templates/assessments.html:17
msgid "Status/Score"
@@ -6475,7 +6470,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:106
#: frontend/src/components/Modals/Event.vue:112
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary"
msgstr ""
@@ -6571,7 +6566,7 @@ msgstr ""
#. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:127
#: frontend/src/components/Modals/Event.vue:133
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template"
msgstr ""
@@ -6620,7 +6615,7 @@ msgstr ""
msgid "Thanks and Regards"
msgstr ""
#: lms/lms/utils.py:2247
#: lms/lms/utils.py:2248
msgid "The batch does not exist."
msgstr ""
@@ -6628,7 +6623,7 @@ msgstr ""
msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session."
msgstr ""
#: lms/lms/utils.py:1747
#: lms/lms/utils.py:1748
msgid "The coupon code '{0}' is invalid."
msgstr ""
@@ -6652,7 +6647,7 @@ msgstr ""
msgid "The last day to schedule your evaluations is "
msgstr ""
#: lms/lms/utils.py:2231
#: lms/lms/utils.py:2232
msgid "The lesson does not exist."
msgstr ""
@@ -6660,7 +6655,7 @@ msgstr ""
msgid "The slot is already booked by another participant."
msgstr ""
#: lms/lms/utils.py:1361 lms/lms/utils.py:1477 lms/lms/utils.py:1944
#: lms/lms/utils.py:1362 lms/lms/utils.py:1478 lms/lms/utils.py:1945
msgid "The specified batch does not exist."
msgstr ""
@@ -6726,15 +6721,15 @@ msgstr ""
msgid "This class has ended"
msgstr ""
#: lms/lms/utils.py:1776
#: lms/lms/utils.py:1777
msgid "This coupon has expired."
msgstr ""
#: lms/lms/utils.py:1779
#: lms/lms/utils.py:1780
msgid "This coupon has reached its maximum usage limit."
msgstr ""
#: lms/lms/utils.py:1788
#: lms/lms/utils.py:1789
msgid "This coupon is not applicable to this {0}."
msgstr ""
@@ -6742,7 +6737,7 @@ msgstr ""
msgid "This course has:"
msgstr ""
#: lms/lms/utils.py:1707
#: lms/lms/utils.py:1708
msgid "This course is free."
msgstr ""
@@ -6799,7 +6794,7 @@ msgid "Thursday"
msgstr ""
#. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48
#: frontend/src/components/Modals/Event.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Quiz.vue:58
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -6934,7 +6929,7 @@ msgstr ""
msgid "To Date"
msgstr ""
#: lms/lms/utils.py:1721
#: lms/lms/utils.py:1722
msgid "To join this batch, please contact the Administrator."
msgstr ""
@@ -7056,7 +7051,7 @@ msgstr ""
msgid "Under Review"
msgstr ""
#: frontend/src/pages/Batches.vue:330 frontend/src/pages/Courses.vue:356
#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:355
msgid "Unpublished"
msgstr ""
@@ -7077,8 +7072,8 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
#. Label of the upcoming (Check) field in DocType 'LMS Course'
#: frontend/src/pages/Batches.vue:328 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:347
#: frontend/src/pages/Batches.vue:330 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:346
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming"
@@ -7220,7 +7215,7 @@ msgid "View Applications"
msgstr ""
#: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67
#: frontend/src/components/Modals/Event.vue:73
msgid "View Certificate"
msgstr ""
@@ -7327,6 +7322,11 @@ msgstr ""
msgid "Withdrawn"
msgstr ""
#. Option for the 'Open to' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Work"
msgstr ""
#. Label of the work_environment (Section Break) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Work Environment"
@@ -7427,7 +7427,7 @@ msgstr ""
msgid "You cannot enroll in an unpublished course."
msgstr ""
#: lms/lms/utils.py:2085
#: lms/lms/utils.py:2086
msgid "You cannot enroll in an unpublished program."
msgstr ""
@@ -7443,11 +7443,11 @@ msgstr ""
msgid "You cannot schedule evaluations for past slots."
msgstr ""
#: lms/lms/utils.py:2259
#: lms/lms/utils.py:2260
msgid "You do not have access to this batch."
msgstr ""
#: lms/lms/utils.py:2242
#: lms/lms/utils.py:2243
msgid "You do not have access to this course."
msgstr ""
@@ -7664,7 +7664,7 @@ msgstr ""
#: frontend/src/components/StudentHeatmap.vue:6
msgid "activities"
msgstr ""
msgstr "atividades"
#: frontend/src/components/StudentHeatmap.vue:6
msgid "activity"
+59 -59
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2026-01-16 16:04+0000\n"
"PO-Revision-Date: 2026-01-21 20:16\n"
"POT-Creation-Date: 2026-01-23 16:05+0000\n"
"PO-Revision-Date: 2026-02-05 06:43\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Russian\n"
"MIME-Version: 1.0\n"
@@ -319,7 +319,7 @@ msgid "Administrator"
msgstr "Администратор"
#. Name of a role
#: frontend/src/pages/Batches.vue:319 lms/lms/doctype/lms_badge/lms_badge.json
#: frontend/src/pages/Batches.vue:321 lms/lms/doctype/lms_badge/lms_badge.json
msgid "All"
msgstr "Все"
@@ -486,7 +486,7 @@ msgstr "Утвержден"
msgid "Apps"
msgstr "Приложения"
#: frontend/src/pages/Batches.vue:329
#: frontend/src/pages/Batches.vue:331
msgid "Archived"
msgstr "Архивировано"
@@ -753,7 +753,7 @@ msgstr "Значок {0} уже назначен этому {1}."
#. Label of the batch_name (Link) field in DocType 'LMS Certificate'
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
#. Label of the batch_name (Link) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:32
#: frontend/src/components/Modals/Event.vue:35
#: frontend/src/components/Settings/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125
@@ -878,7 +878,7 @@ msgid "Batch:"
msgstr "Партия:"
#. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue:350 frontend/src/pages/Batches.vue:357
#: frontend/src/pages/Batches.vue:352 frontend/src/pages/Batches.vue:359
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121
msgid "Batches"
msgstr "Группы"
@@ -1023,7 +1023,7 @@ msgstr "Ссылка на сертификат"
msgid "Certificate of Completion"
msgstr "Сертификат об окончании"
#: frontend/src/components/Modals/Event.vue:347
#: frontend/src/components/Modals/Event.vue:353
msgid "Certificate saved successfully"
msgstr "Сертификат успешно сохранен"
@@ -1043,7 +1043,7 @@ msgstr "Сертификаты успешно созданы"
#. Label of a chart in the LMS Workspace
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:411
#: frontend/src/components/Modals/Event.vue:427
#: frontend/src/components/Sidebar/AppSidebar.vue:550
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100
#: frontend/src/pages/CourseCertification.vue:10
@@ -1771,7 +1771,7 @@ msgstr "Курс {0} уже добавлен в эту программу."
#: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:365 frontend/src/pages/Courses.vue:372
#: frontend/src/pages/Courses.vue:364 frontend/src/pages/Courses.vue:371
#: frontend/src/pages/Programs/ProgramForm.vue:49
#: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1878,7 +1878,7 @@ msgstr "Создайте свой первый курс"
msgid "Create your first quiz"
msgstr "Создать свой первый тест"
#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:355
#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:354
msgid "Created"
msgstr "Создано"
@@ -1954,7 +1954,7 @@ msgstr "Импорт данных"
#. Label of the date (Date) field in DocType 'LMS Certificate Request'
#. Label of the date (Date) field in DocType 'LMS Live Class'
#. Label of the date (Date) field in DocType 'Scheduled Flow'
#: frontend/src/components/Modals/Event.vue:40
#: frontend/src/components/Modals/Event.vue:46
#: frontend/src/components/Modals/LiveClassModal.vue:29
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -2241,7 +2241,7 @@ msgstr "Изменить купон"
msgid "Edit Email Template"
msgstr "Редактировать шаблон письма"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:13
msgid "Edit Payment Gateway"
msgstr "Изменить платежный шлюз"
@@ -2424,7 +2424,7 @@ msgstr "Зарегистрировать участника в программ
msgid "Enroll Now"
msgstr "Записаться сейчас"
#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:358
#: frontend/src/pages/Batches.vue:334 frontend/src/pages/Courses.vue:357
#: frontend/src/pages/Programs/StudentPrograms.vue:96
msgid "Enrolled"
msgstr "Записан"
@@ -2526,7 +2526,7 @@ msgstr "Ошибка при обновлении шаблона письма"
#. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json
#: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json
msgid "Evaluation"
msgstr "Оценка"
@@ -2551,7 +2551,7 @@ msgstr "Запрос на оценку"
msgid "Evaluation end date cannot be less than the batch end date."
msgstr "Дата окончания оценки не может быть меньше даты окончания группы."
#: frontend/src/components/Modals/Event.vue:286
#: frontend/src/components/Modals/Event.vue:292
msgid "Evaluation saved successfully"
msgstr "Вычисление успешно сохранено"
@@ -2664,7 +2664,7 @@ msgstr "Актуален до"
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:144
#: frontend/src/components/Modals/Event.vue:150
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date"
msgstr "Истекает"
@@ -2695,7 +2695,7 @@ msgstr "Узнать больше"
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:396
#: frontend/src/components/Modals/Event.vue:412
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail"
@@ -3209,7 +3209,7 @@ msgstr "Курс импорта"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:388
#: frontend/src/components/Modals/Event.vue:404
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "In Progress"
@@ -3353,7 +3353,7 @@ msgstr "Пакет SCORM"
#. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:138
#: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date"
@@ -3456,7 +3456,7 @@ msgstr "Присоединиться"
msgid "Join Call"
msgstr "Присоединиться к звонку"
#: frontend/src/components/Modals/Event.vue:78
#: frontend/src/components/Modals/Event.vue:84
msgid "Join Meeting"
msgstr "Присоединиться к встрече"
@@ -3896,7 +3896,7 @@ msgstr "LinkedIn"
msgid "LinkedIn ID"
msgstr "LinkedIn ID"
#: frontend/src/pages/Courses.vue:341
#: frontend/src/pages/Courses.vue:340
msgid "Live"
msgstr "Live"
@@ -4429,7 +4429,7 @@ msgstr "Наименование"
#: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17
#: frontend/src/pages/Courses.vue:344
#: frontend/src/pages/Courses.vue:343
#: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New"
@@ -4461,7 +4461,7 @@ msgstr "Новая Вакансия"
msgid "New Job Applicant"
msgstr "Новый соискатель работы"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:12
msgid "New Payment Gateway"
msgstr "Новый платежный шлюз"
@@ -4778,13 +4778,8 @@ msgstr "Открыто для"
#: frontend/src/components/UserAvatar.vue:11
#: frontend/src/pages/CertifiedParticipants.vue:46
#: frontend/src/pages/Profile.vue:69
msgid "Open to Opportunities"
msgstr "Открыт для новых возможностей"
#. Option for the 'Open to' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Opportunities"
msgstr "Возможности"
msgid "Open to Work"
msgstr ""
#. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:70
@@ -4924,7 +4919,7 @@ msgstr "Частично завершено"
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:392
#: frontend/src/components/Modals/Event.vue:408
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass"
@@ -5054,7 +5049,7 @@ msgstr "Приложение платежей не установлено"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:384
#: frontend/src/components/Modals/Event.vue:400
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending"
@@ -5194,7 +5189,7 @@ msgstr "Пожалуйста, войдите в систему, чтобы по
msgid "Please login to continue with payment."
msgstr "Пожалуйста, войдите в систему, чтобы продолжить оплату."
#: lms/lms/utils.py:2081
#: lms/lms/utils.py:2082
msgid "Please login to enroll in the program."
msgstr "Пожалуйста, войдите в систему, чтобы зарегистрироваться в программе."
@@ -5525,7 +5520,7 @@ msgstr "Опубликовать на странице участника"
#. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:122
#: frontend/src/components/Modals/Event.vue:128
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105
#: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5693,7 +5688,7 @@ msgstr "Тесты в этом видео"
#. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/Event.vue:98
#: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -5929,14 +5924,14 @@ msgstr "Суббота"
#: frontend/src/components/Modals/AssignmentForm.vue:65
#: frontend/src/components/Modals/EditProfile.vue:121
#: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:157
#: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/Coupons/CouponDetails.vue:78
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:41
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:129
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
@@ -6048,7 +6043,7 @@ msgstr "Смотреть все"
msgid "Select Date"
msgstr "Выбрать дату"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:26
msgid "Select Payment Gateway"
msgstr "Выберите платежный шлюз"
@@ -6364,7 +6359,7 @@ msgstr "Статистика"
#. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Modals/Event.vue:105
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6475,7 +6470,7 @@ msgstr "Успешно зачислен в программу"
#. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:106
#: frontend/src/components/Modals/Event.vue:112
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary"
msgstr "Резюме"
@@ -6571,7 +6566,7 @@ msgstr "Командная работа"
#. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:127
#: frontend/src/components/Modals/Event.vue:133
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template"
msgstr "Шаблон"
@@ -6620,7 +6615,7 @@ msgstr "Спасибо за ваш отзыв."
msgid "Thanks and Regards"
msgstr "Спасибо и с наилучшими пожеланиями"
#: lms/lms/utils.py:2247
#: lms/lms/utils.py:2248
msgid "The batch does not exist."
msgstr "Партия не существует."
@@ -6628,7 +6623,7 @@ msgstr "Партия не существует."
msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session."
msgstr "Пакет, за который вы записались, начинается завтра. Будьте готовы и подождите, пока не закончите сеанс."
#: lms/lms/utils.py:1747
#: lms/lms/utils.py:1748
msgid "The coupon code '{0}' is invalid."
msgstr "Код купона '{0}' недействителен."
@@ -6652,7 +6647,7 @@ msgstr ""
msgid "The last day to schedule your evaluations is "
msgstr "Последний день, когда можно назначить оценки "
#: lms/lms/utils.py:2231
#: lms/lms/utils.py:2232
msgid "The lesson does not exist."
msgstr "Урока не существует."
@@ -6660,7 +6655,7 @@ msgstr "Урока не существует."
msgid "The slot is already booked by another participant."
msgstr "Слот уже забронирован другим участником."
#: lms/lms/utils.py:1361 lms/lms/utils.py:1477 lms/lms/utils.py:1944
#: lms/lms/utils.py:1362 lms/lms/utils.py:1478 lms/lms/utils.py:1945
msgid "The specified batch does not exist."
msgstr "Указанная партия не существует."
@@ -6726,15 +6721,15 @@ msgstr "Этот сертификат является бессрочным"
msgid "This class has ended"
msgstr "Этот урок закончился"
#: lms/lms/utils.py:1776
#: lms/lms/utils.py:1777
msgid "This coupon has expired."
msgstr "Срок действия этого купона истек."
#: lms/lms/utils.py:1779
#: lms/lms/utils.py:1780
msgid "This coupon has reached its maximum usage limit."
msgstr "Данный купон достиг максимального лимита использования."
#: lms/lms/utils.py:1788
#: lms/lms/utils.py:1789
msgid "This coupon is not applicable to this {0}."
msgstr "Этот купон не распространяется на этот {0}."
@@ -6742,7 +6737,7 @@ msgstr "Этот купон не распространяется на этот
msgid "This course has:"
msgstr "Этот курс имеет:"
#: lms/lms/utils.py:1707
#: lms/lms/utils.py:1708
msgid "This course is free."
msgstr "Этот курс бесплатный."
@@ -6799,7 +6794,7 @@ msgid "Thursday"
msgstr "Четверг"
#. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48
#: frontend/src/components/Modals/Event.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Quiz.vue:58
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -6934,7 +6929,7 @@ msgstr "Кому"
msgid "To Date"
msgstr "По дате"
#: lms/lms/utils.py:1721
#: lms/lms/utils.py:1722
msgid "To join this batch, please contact the Administrator."
msgstr "Чтобы присоединиться к этой группе, свяжитесь с администратором."
@@ -7056,7 +7051,7 @@ msgstr "Недоступно с даты не может быть больше,
msgid "Under Review"
msgstr "На рассмотрении"
#: frontend/src/pages/Batches.vue:330 frontend/src/pages/Courses.vue:356
#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:355
msgid "Unpublished"
msgstr "Не опубликовано"
@@ -7077,8 +7072,8 @@ msgstr "Неструктурированная роль"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
#. Label of the upcoming (Check) field in DocType 'LMS Course'
#: frontend/src/pages/Batches.vue:328 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:347
#: frontend/src/pages/Batches.vue:330 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:346
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming"
@@ -7220,7 +7215,7 @@ msgid "View Applications"
msgstr "Просмотреть приложения"
#: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67
#: frontend/src/components/Modals/Event.vue:73
msgid "View Certificate"
msgstr "Просмотр сертификата"
@@ -7327,6 +7322,11 @@ msgstr "С этой сертификацией вы теперь можете п
msgid "Withdrawn"
msgstr "Отозван"
#. Option for the 'Open to' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Work"
msgstr ""
#. Label of the work_environment (Section Break) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Work Environment"
@@ -7427,7 +7427,7 @@ msgstr "Вы не можете изменить роли в режиме тол
msgid "You cannot enroll in an unpublished course."
msgstr "Вы не можете записаться на неопубликованный курс."
#: lms/lms/utils.py:2085
#: lms/lms/utils.py:2086
msgid "You cannot enroll in an unpublished program."
msgstr "Вы не можете зарегистрироваться в неопубликованной программе."
@@ -7443,11 +7443,11 @@ msgstr "Вы не можете запланировать оценки посл
msgid "You cannot schedule evaluations for past slots."
msgstr "Вы не можете планировать оценки для прошедших слотов."
#: lms/lms/utils.py:2259
#: lms/lms/utils.py:2260
msgid "You do not have access to this batch."
msgstr "У вас нет доступа к этому пакету."
#: lms/lms/utils.py:2242
#: lms/lms/utils.py:2243
msgid "You do not have access to this course."
msgstr "У вас нет доступа к этому курсу."
+58 -58
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2026-01-16 16:04+0000\n"
"PO-Revision-Date: 2026-01-19 20:13\n"
"POT-Creation-Date: 2026-01-23 16:05+0000\n"
"PO-Revision-Date: 2026-02-05 06:43\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Slovenian\n"
"MIME-Version: 1.0\n"
@@ -319,7 +319,7 @@ msgid "Administrator"
msgstr "Administrator"
#. Name of a role
#: frontend/src/pages/Batches.vue:319 lms/lms/doctype/lms_badge/lms_badge.json
#: frontend/src/pages/Batches.vue:321 lms/lms/doctype/lms_badge/lms_badge.json
msgid "All"
msgstr "Vsi"
@@ -486,7 +486,7 @@ msgstr "Odobreno"
msgid "Apps"
msgstr "Aplikacije"
#: frontend/src/pages/Batches.vue:329
#: frontend/src/pages/Batches.vue:331
msgid "Archived"
msgstr "Arhivirano"
@@ -753,7 +753,7 @@ msgstr ""
#. Label of the batch_name (Link) field in DocType 'LMS Certificate'
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
#. Label of the batch_name (Link) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:32
#: frontend/src/components/Modals/Event.vue:35
#: frontend/src/components/Settings/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125
@@ -878,7 +878,7 @@ msgid "Batch:"
msgstr "Skupina:"
#. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue:350 frontend/src/pages/Batches.vue:357
#: frontend/src/pages/Batches.vue:352 frontend/src/pages/Batches.vue:359
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121
msgid "Batches"
msgstr "Skupine"
@@ -1023,7 +1023,7 @@ msgstr "Povezava Potrdila"
msgid "Certificate of Completion"
msgstr ""
#: frontend/src/components/Modals/Event.vue:347
#: frontend/src/components/Modals/Event.vue:353
msgid "Certificate saved successfully"
msgstr "Potrdilo je uspešno shranjeno"
@@ -1043,7 +1043,7 @@ msgstr "Potrdila so uspešno ustvarjena"
#. Label of a chart in the LMS Workspace
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:411
#: frontend/src/components/Modals/Event.vue:427
#: frontend/src/components/Sidebar/AppSidebar.vue:550
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100
#: frontend/src/pages/CourseCertification.vue:10
@@ -1771,7 +1771,7 @@ msgstr "Tečaj {0} je že dodan v ta program."
#: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:365 frontend/src/pages/Courses.vue:372
#: frontend/src/pages/Courses.vue:364 frontend/src/pages/Courses.vue:371
#: frontend/src/pages/Programs/ProgramForm.vue:49
#: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1878,7 +1878,7 @@ msgstr "Ustvari Prvi Tečaj"
msgid "Create your first quiz"
msgstr "Ustvari Prvi Kviz"
#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:355
#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:354
msgid "Created"
msgstr "Ustvarjeno"
@@ -1954,7 +1954,7 @@ msgstr "Uvoz Podatkov"
#. Label of the date (Date) field in DocType 'LMS Certificate Request'
#. Label of the date (Date) field in DocType 'LMS Live Class'
#. Label of the date (Date) field in DocType 'Scheduled Flow'
#: frontend/src/components/Modals/Event.vue:40
#: frontend/src/components/Modals/Event.vue:46
#: frontend/src/components/Modals/LiveClassModal.vue:29
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -2241,7 +2241,7 @@ msgstr "Uredi Kupon"
msgid "Edit Email Template"
msgstr "Uredi predloge e-pošte"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:13
msgid "Edit Payment Gateway"
msgstr "Uredi Plačilni Prehod"
@@ -2424,7 +2424,7 @@ msgstr ""
msgid "Enroll Now"
msgstr "Vpišite se zdaj"
#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:358
#: frontend/src/pages/Batches.vue:334 frontend/src/pages/Courses.vue:357
#: frontend/src/pages/Programs/StudentPrograms.vue:96
msgid "Enrolled"
msgstr "Vpisan"
@@ -2526,7 +2526,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json
#: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json
msgid "Evaluation"
msgstr "Vrednotenje"
@@ -2551,7 +2551,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date."
msgstr ""
#: frontend/src/components/Modals/Event.vue:286
#: frontend/src/components/Modals/Event.vue:292
msgid "Evaluation saved successfully"
msgstr ""
@@ -2664,7 +2664,7 @@ msgstr "Poteče"
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:144
#: frontend/src/components/Modals/Event.vue:150
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date"
msgstr "Datum Poteka"
@@ -2695,7 +2695,7 @@ msgstr "Razišči več"
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:396
#: frontend/src/components/Modals/Event.vue:412
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail"
@@ -3209,7 +3209,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:388
#: frontend/src/components/Modals/Event.vue:404
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "In Progress"
@@ -3353,7 +3353,7 @@ msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:138
#: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date"
@@ -3456,7 +3456,7 @@ msgstr ""
msgid "Join Call"
msgstr ""
#: frontend/src/components/Modals/Event.vue:78
#: frontend/src/components/Modals/Event.vue:84
msgid "Join Meeting"
msgstr ""
@@ -3896,7 +3896,7 @@ msgstr ""
msgid "LinkedIn ID"
msgstr ""
#: frontend/src/pages/Courses.vue:341
#: frontend/src/pages/Courses.vue:340
msgid "Live"
msgstr "V živo"
@@ -4429,7 +4429,7 @@ msgstr ""
#: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17
#: frontend/src/pages/Courses.vue:344
#: frontend/src/pages/Courses.vue:343
#: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New"
@@ -4461,7 +4461,7 @@ msgstr ""
msgid "New Job Applicant"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:12
msgid "New Payment Gateway"
msgstr ""
@@ -4778,12 +4778,7 @@ msgstr ""
#: frontend/src/components/UserAvatar.vue:11
#: frontend/src/pages/CertifiedParticipants.vue:46
#: frontend/src/pages/Profile.vue:69
msgid "Open to Opportunities"
msgstr ""
#. Option for the 'Open to' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Opportunities"
msgid "Open to Work"
msgstr ""
#. Label of the option (Data) field in DocType 'LMS Option'
@@ -4924,7 +4919,7 @@ msgstr ""
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:392
#: frontend/src/components/Modals/Event.vue:408
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass"
@@ -5054,7 +5049,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:384
#: frontend/src/components/Modals/Event.vue:400
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending"
@@ -5194,7 +5189,7 @@ msgstr ""
msgid "Please login to continue with payment."
msgstr ""
#: lms/lms/utils.py:2081
#: lms/lms/utils.py:2082
msgid "Please login to enroll in the program."
msgstr ""
@@ -5525,7 +5520,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:122
#: frontend/src/components/Modals/Event.vue:128
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105
#: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5693,7 +5688,7 @@ msgstr ""
#. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/Event.vue:98
#: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -5929,14 +5924,14 @@ msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:65
#: frontend/src/components/Modals/EditProfile.vue:121
#: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:157
#: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/Coupons/CouponDetails.vue:78
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:41
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:129
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
@@ -6048,7 +6043,7 @@ msgstr ""
msgid "Select Date"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:26
msgid "Select Payment Gateway"
msgstr ""
@@ -6364,7 +6359,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Modals/Event.vue:105
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6475,7 +6470,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:106
#: frontend/src/components/Modals/Event.vue:112
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary"
msgstr ""
@@ -6571,7 +6566,7 @@ msgstr ""
#. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:127
#: frontend/src/components/Modals/Event.vue:133
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template"
msgstr "Predloga"
@@ -6620,7 +6615,7 @@ msgstr ""
msgid "Thanks and Regards"
msgstr ""
#: lms/lms/utils.py:2247
#: lms/lms/utils.py:2248
msgid "The batch does not exist."
msgstr ""
@@ -6628,7 +6623,7 @@ msgstr ""
msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session."
msgstr ""
#: lms/lms/utils.py:1747
#: lms/lms/utils.py:1748
msgid "The coupon code '{0}' is invalid."
msgstr ""
@@ -6652,7 +6647,7 @@ msgstr ""
msgid "The last day to schedule your evaluations is "
msgstr ""
#: lms/lms/utils.py:2231
#: lms/lms/utils.py:2232
msgid "The lesson does not exist."
msgstr ""
@@ -6660,7 +6655,7 @@ msgstr ""
msgid "The slot is already booked by another participant."
msgstr ""
#: lms/lms/utils.py:1361 lms/lms/utils.py:1477 lms/lms/utils.py:1944
#: lms/lms/utils.py:1362 lms/lms/utils.py:1478 lms/lms/utils.py:1945
msgid "The specified batch does not exist."
msgstr ""
@@ -6726,15 +6721,15 @@ msgstr ""
msgid "This class has ended"
msgstr ""
#: lms/lms/utils.py:1776
#: lms/lms/utils.py:1777
msgid "This coupon has expired."
msgstr ""
#: lms/lms/utils.py:1779
#: lms/lms/utils.py:1780
msgid "This coupon has reached its maximum usage limit."
msgstr ""
#: lms/lms/utils.py:1788
#: lms/lms/utils.py:1789
msgid "This coupon is not applicable to this {0}."
msgstr ""
@@ -6742,7 +6737,7 @@ msgstr ""
msgid "This course has:"
msgstr ""
#: lms/lms/utils.py:1707
#: lms/lms/utils.py:1708
msgid "This course is free."
msgstr ""
@@ -6799,7 +6794,7 @@ msgid "Thursday"
msgstr ""
#. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48
#: frontend/src/components/Modals/Event.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Quiz.vue:58
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -6934,7 +6929,7 @@ msgstr ""
msgid "To Date"
msgstr ""
#: lms/lms/utils.py:1721
#: lms/lms/utils.py:1722
msgid "To join this batch, please contact the Administrator."
msgstr ""
@@ -7056,7 +7051,7 @@ msgstr ""
msgid "Under Review"
msgstr ""
#: frontend/src/pages/Batches.vue:330 frontend/src/pages/Courses.vue:356
#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:355
msgid "Unpublished"
msgstr ""
@@ -7077,8 +7072,8 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
#. Label of the upcoming (Check) field in DocType 'LMS Course'
#: frontend/src/pages/Batches.vue:328 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:347
#: frontend/src/pages/Batches.vue:330 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:346
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming"
@@ -7220,7 +7215,7 @@ msgid "View Applications"
msgstr ""
#: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67
#: frontend/src/components/Modals/Event.vue:73
msgid "View Certificate"
msgstr ""
@@ -7327,6 +7322,11 @@ msgstr ""
msgid "Withdrawn"
msgstr ""
#. Option for the 'Open to' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Work"
msgstr ""
#. Label of the work_environment (Section Break) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Work Environment"
@@ -7427,7 +7427,7 @@ msgstr ""
msgid "You cannot enroll in an unpublished course."
msgstr ""
#: lms/lms/utils.py:2085
#: lms/lms/utils.py:2086
msgid "You cannot enroll in an unpublished program."
msgstr ""
@@ -7443,11 +7443,11 @@ msgstr ""
msgid "You cannot schedule evaluations for past slots."
msgstr ""
#: lms/lms/utils.py:2259
#: lms/lms/utils.py:2260
msgid "You do not have access to this batch."
msgstr ""
#: lms/lms/utils.py:2242
#: lms/lms/utils.py:2243
msgid "You do not have access to this course."
msgstr ""
+59 -59
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2026-01-16 16:04+0000\n"
"PO-Revision-Date: 2026-01-21 20:16\n"
"POT-Creation-Date: 2026-01-23 16:05+0000\n"
"PO-Revision-Date: 2026-02-06 06:38\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Serbian (Cyrillic)\n"
"MIME-Version: 1.0\n"
@@ -319,7 +319,7 @@ msgid "Administrator"
msgstr "Администратор"
#. Name of a role
#: frontend/src/pages/Batches.vue:319 lms/lms/doctype/lms_badge/lms_badge.json
#: frontend/src/pages/Batches.vue:321 lms/lms/doctype/lms_badge/lms_badge.json
msgid "All"
msgstr "Све"
@@ -486,7 +486,7 @@ msgstr "Одобрено"
msgid "Apps"
msgstr "Апликације"
#: frontend/src/pages/Batches.vue:329
#: frontend/src/pages/Batches.vue:331
msgid "Archived"
msgstr "Архивирано"
@@ -753,7 +753,7 @@ msgstr "Беџ {0} је већ додељен овом {1}."
#. Label of the batch_name (Link) field in DocType 'LMS Certificate'
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
#. Label of the batch_name (Link) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:32
#: frontend/src/components/Modals/Event.vue:35
#: frontend/src/components/Settings/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125
@@ -878,7 +878,7 @@ msgid "Batch:"
msgstr "Група:"
#. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue:350 frontend/src/pages/Batches.vue:357
#: frontend/src/pages/Batches.vue:352 frontend/src/pages/Batches.vue:359
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121
msgid "Batches"
msgstr "Групе"
@@ -1023,7 +1023,7 @@ msgstr "Линк сертификата"
msgid "Certificate of Completion"
msgstr "Сертификат о похађању"
#: frontend/src/components/Modals/Event.vue:347
#: frontend/src/components/Modals/Event.vue:353
msgid "Certificate saved successfully"
msgstr "Сертификат је успешно сачуван"
@@ -1043,7 +1043,7 @@ msgstr "Сертификати су успешно генерисани"
#. Label of a chart in the LMS Workspace
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:411
#: frontend/src/components/Modals/Event.vue:427
#: frontend/src/components/Sidebar/AppSidebar.vue:550
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100
#: frontend/src/pages/CourseCertification.vue:10
@@ -1771,7 +1771,7 @@ msgstr "Обука {0} је већ додата у овај програм."
#: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:365 frontend/src/pages/Courses.vue:372
#: frontend/src/pages/Courses.vue:364 frontend/src/pages/Courses.vue:371
#: frontend/src/pages/Programs/ProgramForm.vue:49
#: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1878,7 +1878,7 @@ msgstr "Креирајте своју прву обуку"
msgid "Create your first quiz"
msgstr "Креирајте свој први квиз"
#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:355
#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:354
msgid "Created"
msgstr "Креирано"
@@ -1954,7 +1954,7 @@ msgstr "Увоз податка"
#. Label of the date (Date) field in DocType 'LMS Certificate Request'
#. Label of the date (Date) field in DocType 'LMS Live Class'
#. Label of the date (Date) field in DocType 'Scheduled Flow'
#: frontend/src/components/Modals/Event.vue:40
#: frontend/src/components/Modals/Event.vue:46
#: frontend/src/components/Modals/LiveClassModal.vue:29
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -2241,7 +2241,7 @@ msgstr "Уреди купон"
msgid "Edit Email Template"
msgstr "Уреди имејл шаблон"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:13
msgid "Edit Payment Gateway"
msgstr "Уреди платни портал"
@@ -2424,7 +2424,7 @@ msgstr "Упиши члана у програм"
msgid "Enroll Now"
msgstr "Упишите се сада"
#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:358
#: frontend/src/pages/Batches.vue:334 frontend/src/pages/Courses.vue:357
#: frontend/src/pages/Programs/StudentPrograms.vue:96
msgid "Enrolled"
msgstr "Уписан"
@@ -2526,7 +2526,7 @@ msgstr "Грешка приликом ажурирања имејл шаблон
#. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json
#: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json
msgid "Evaluation"
msgstr "Оцењивање"
@@ -2551,7 +2551,7 @@ msgstr "Захтев за оцењивање"
msgid "Evaluation end date cannot be less than the batch end date."
msgstr "Датум завршетка оцењивања не може бити мањи од датума завршетка групе."
#: frontend/src/components/Modals/Event.vue:286
#: frontend/src/components/Modals/Event.vue:292
msgid "Evaluation saved successfully"
msgstr "Оцењивање је успешно сачувано"
@@ -2664,7 +2664,7 @@ msgstr "Истиче на"
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:144
#: frontend/src/components/Modals/Event.vue:150
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date"
msgstr "Датум истека"
@@ -2695,7 +2695,7 @@ msgstr "Истражите више"
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:396
#: frontend/src/components/Modals/Event.vue:412
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail"
@@ -3209,7 +3209,7 @@ msgstr "Увези обуку"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:388
#: frontend/src/components/Modals/Event.vue:404
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "In Progress"
@@ -3353,7 +3353,7 @@ msgstr "SCORM пакет"
#. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:138
#: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date"
@@ -3456,7 +3456,7 @@ msgstr "Придружи се"
msgid "Join Call"
msgstr "Придружи се позиву"
#: frontend/src/components/Modals/Event.vue:78
#: frontend/src/components/Modals/Event.vue:84
msgid "Join Meeting"
msgstr "Придружи се састанку"
@@ -3896,7 +3896,7 @@ msgstr "LinkedIn"
msgid "LinkedIn ID"
msgstr "LinkedIn ИД"
#: frontend/src/pages/Courses.vue:341
#: frontend/src/pages/Courses.vue:340
msgid "Live"
msgstr "Активно"
@@ -4429,7 +4429,7 @@ msgstr "Име"
#: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17
#: frontend/src/pages/Courses.vue:344
#: frontend/src/pages/Courses.vue:343
#: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New"
@@ -4461,7 +4461,7 @@ msgstr "Нови посао"
msgid "New Job Applicant"
msgstr "Нови кандидат за посао"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:12
msgid "New Payment Gateway"
msgstr "Нови платни портал"
@@ -4778,13 +4778,8 @@ msgstr "Отворен за"
#: frontend/src/components/UserAvatar.vue:11
#: frontend/src/pages/CertifiedParticipants.vue:46
#: frontend/src/pages/Profile.vue:69
msgid "Open to Opportunities"
msgstr "Отворен за прилике"
#. Option for the 'Open to' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Opportunities"
msgstr "Прилике"
msgid "Open to Work"
msgstr "Отворен за радни ангажман"
#. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:70
@@ -4924,7 +4919,7 @@ msgstr "Делимично завршено"
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:392
#: frontend/src/components/Modals/Event.vue:408
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass"
@@ -5054,7 +5049,7 @@ msgstr "Апликација за обраду плаћања није инст
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:384
#: frontend/src/components/Modals/Event.vue:400
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending"
@@ -5194,7 +5189,7 @@ msgstr "Молимо Вас да се пријавите да бисте при
msgid "Please login to continue with payment."
msgstr "Молимо Вас да се пријавите да бисте наставили са плаћањем."
#: lms/lms/utils.py:2081
#: lms/lms/utils.py:2082
msgid "Please login to enroll in the program."
msgstr "Молимо Вас да се пријавите да бисте се уписали у програм."
@@ -5525,7 +5520,7 @@ msgstr "Објави на страници учесника"
#. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:122
#: frontend/src/components/Modals/Event.vue:128
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105
#: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5693,7 +5688,7 @@ msgstr "Квизови у овом видео-снимку"
#. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/Event.vue:98
#: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -5929,14 +5924,14 @@ msgstr "Субота"
#: frontend/src/components/Modals/AssignmentForm.vue:65
#: frontend/src/components/Modals/EditProfile.vue:121
#: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:157
#: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/Coupons/CouponDetails.vue:78
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:41
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:129
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
@@ -6048,7 +6043,7 @@ msgstr "Погледај све"
msgid "Select Date"
msgstr "Изаберите датум"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:26
msgid "Select Payment Gateway"
msgstr "Изаберите платни портал"
@@ -6364,7 +6359,7 @@ msgstr "Статистика"
#. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Modals/Event.vue:105
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6475,7 +6470,7 @@ msgstr "Успешно сте уписани у програм"
#. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:106
#: frontend/src/components/Modals/Event.vue:112
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary"
msgstr "Резиме"
@@ -6571,7 +6566,7 @@ msgstr "Тимски рад"
#. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:127
#: frontend/src/components/Modals/Event.vue:133
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template"
msgstr "Шаблон"
@@ -6620,7 +6615,7 @@ msgstr "Хвала Вам што сте поделили своје утиске
msgid "Thanks and Regards"
msgstr "Хвала и срдачан поздрав"
#: lms/lms/utils.py:2247
#: lms/lms/utils.py:2248
msgid "The batch does not exist."
msgstr "Група не постоји."
@@ -6628,7 +6623,7 @@ msgstr "Група не постоји."
msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session."
msgstr "Група у коју сте се уписали почиње сутра. Молимо Вас да будете спремни и тачни за сесију."
#: lms/lms/utils.py:1747
#: lms/lms/utils.py:1748
msgid "The coupon code '{0}' is invalid."
msgstr "Шифра купона '{0}' није важећа."
@@ -6652,7 +6647,7 @@ msgstr "Предавача је оставио коментар на Вашем
msgid "The last day to schedule your evaluations is "
msgstr "Последњи дан за заказивање Вашег оцењивања је "
#: lms/lms/utils.py:2231
#: lms/lms/utils.py:2232
msgid "The lesson does not exist."
msgstr "Лекција не постоји."
@@ -6660,7 +6655,7 @@ msgstr "Лекција не постоји."
msgid "The slot is already booked by another participant."
msgstr "Термин је већ резервисан од стране другог учесника."
#: lms/lms/utils.py:1361 lms/lms/utils.py:1477 lms/lms/utils.py:1944
#: lms/lms/utils.py:1362 lms/lms/utils.py:1478 lms/lms/utils.py:1945
msgid "The specified batch does not exist."
msgstr "Наведена група не постоји."
@@ -6726,15 +6721,15 @@ msgstr "Овај сертификат нема рок трајања"
msgid "This class has ended"
msgstr "Ово предавање се завршило"
#: lms/lms/utils.py:1776
#: lms/lms/utils.py:1777
msgid "This coupon has expired."
msgstr "Овај купон је истекао."
#: lms/lms/utils.py:1779
#: lms/lms/utils.py:1780
msgid "This coupon has reached its maximum usage limit."
msgstr "Овај купон је достигао максимално ограничење употребе."
#: lms/lms/utils.py:1788
#: lms/lms/utils.py:1789
msgid "This coupon is not applicable to this {0}."
msgstr "Овај купон се не може применити на овај {0}."
@@ -6742,7 +6737,7 @@ msgstr "Овај купон се не може применити на овај
msgid "This course has:"
msgstr "Ова обука садржи:"
#: lms/lms/utils.py:1707
#: lms/lms/utils.py:1708
msgid "This course is free."
msgstr "Ова обука је бесплатна."
@@ -6799,7 +6794,7 @@ msgid "Thursday"
msgstr "Четвртак"
#. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48
#: frontend/src/components/Modals/Event.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Quiz.vue:58
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -6934,7 +6929,7 @@ msgstr "За"
msgid "To Date"
msgstr "Датум завршетка"
#: lms/lms/utils.py:1721
#: lms/lms/utils.py:1722
msgid "To join this batch, please contact the Administrator."
msgstr "За придруживање овој групи, молимо Вас да контактирате администратора."
@@ -7056,7 +7051,7 @@ msgstr "Датум почетка недоступности не може би
msgid "Under Review"
msgstr "Преглед у току"
#: frontend/src/pages/Batches.vue:330 frontend/src/pages/Courses.vue:356
#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:355
msgid "Unpublished"
msgstr "Необјављено"
@@ -7077,8 +7072,8 @@ msgstr "Неструктурирана улога"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
#. Label of the upcoming (Check) field in DocType 'LMS Course'
#: frontend/src/pages/Batches.vue:328 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:347
#: frontend/src/pages/Batches.vue:330 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:346
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming"
@@ -7220,7 +7215,7 @@ msgid "View Applications"
msgstr "Приказ пријава"
#: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67
#: frontend/src/components/Modals/Event.vue:73
msgid "View Certificate"
msgstr "Приказ сертификата"
@@ -7327,6 +7322,11 @@ msgstr "Уз ову сертификацију сада можете показ
msgid "Withdrawn"
msgstr "Повучено"
#. Option for the 'Open to' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Work"
msgstr "Радни ангажман"
#. Label of the work_environment (Section Break) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Work Environment"
@@ -7427,7 +7427,7 @@ msgstr "Не можете мењати улоге у режиму само за
msgid "You cannot enroll in an unpublished course."
msgstr "Није могуће уписати се на необјављену обуку."
#: lms/lms/utils.py:2085
#: lms/lms/utils.py:2086
msgid "You cannot enroll in an unpublished program."
msgstr "Није могуће уписати се на необјављен програм."
@@ -7443,11 +7443,11 @@ msgstr "Не можете заказати оцењивање након {0}."
msgid "You cannot schedule evaluations for past slots."
msgstr "Оцењивање није могуће заказати за термине који су већ прошли."
#: lms/lms/utils.py:2259
#: lms/lms/utils.py:2260
msgid "You do not have access to this batch."
msgstr "Немате приступ овој групи."
#: lms/lms/utils.py:2242
#: lms/lms/utils.py:2243
msgid "You do not have access to this course."
msgstr "Немате приступ овој обуци."
+59 -59
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2026-01-16 16:04+0000\n"
"PO-Revision-Date: 2026-01-21 20:16\n"
"POT-Creation-Date: 2026-01-23 16:05+0000\n"
"PO-Revision-Date: 2026-02-06 06:38\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Serbian (Latin)\n"
"MIME-Version: 1.0\n"
@@ -319,7 +319,7 @@ msgid "Administrator"
msgstr "Administrator"
#. Name of a role
#: frontend/src/pages/Batches.vue:319 lms/lms/doctype/lms_badge/lms_badge.json
#: frontend/src/pages/Batches.vue:321 lms/lms/doctype/lms_badge/lms_badge.json
msgid "All"
msgstr "Sve"
@@ -486,7 +486,7 @@ msgstr "Odobreno"
msgid "Apps"
msgstr "Aplikacije"
#: frontend/src/pages/Batches.vue:329
#: frontend/src/pages/Batches.vue:331
msgid "Archived"
msgstr "Arhivirano"
@@ -753,7 +753,7 @@ msgstr "Bedž {0} je već dodeljen ovom {1}."
#. Label of the batch_name (Link) field in DocType 'LMS Certificate'
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
#. Label of the batch_name (Link) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:32
#: frontend/src/components/Modals/Event.vue:35
#: frontend/src/components/Settings/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125
@@ -878,7 +878,7 @@ msgid "Batch:"
msgstr "Grupa:"
#. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue:350 frontend/src/pages/Batches.vue:357
#: frontend/src/pages/Batches.vue:352 frontend/src/pages/Batches.vue:359
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121
msgid "Batches"
msgstr "Grupe"
@@ -1023,7 +1023,7 @@ msgstr "Link sertifikata"
msgid "Certificate of Completion"
msgstr "Sertifikat o pohađanju"
#: frontend/src/components/Modals/Event.vue:347
#: frontend/src/components/Modals/Event.vue:353
msgid "Certificate saved successfully"
msgstr "Sertifikat je uspešno sačuvan"
@@ -1043,7 +1043,7 @@ msgstr "Sertifikati su uspešno generisani"
#. Label of a chart in the LMS Workspace
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:411
#: frontend/src/components/Modals/Event.vue:427
#: frontend/src/components/Sidebar/AppSidebar.vue:550
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100
#: frontend/src/pages/CourseCertification.vue:10
@@ -1771,7 +1771,7 @@ msgstr "Obuka {0} je već dodata u ovaj program."
#: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:365 frontend/src/pages/Courses.vue:372
#: frontend/src/pages/Courses.vue:364 frontend/src/pages/Courses.vue:371
#: frontend/src/pages/Programs/ProgramForm.vue:49
#: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1878,7 +1878,7 @@ msgstr "Kreirajte svoju prvu obuku"
msgid "Create your first quiz"
msgstr "Kreirajte svoj prvi kviz"
#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:355
#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:354
msgid "Created"
msgstr "Kreirano"
@@ -1954,7 +1954,7 @@ msgstr "Uvoz podatka"
#. Label of the date (Date) field in DocType 'LMS Certificate Request'
#. Label of the date (Date) field in DocType 'LMS Live Class'
#. Label of the date (Date) field in DocType 'Scheduled Flow'
#: frontend/src/components/Modals/Event.vue:40
#: frontend/src/components/Modals/Event.vue:46
#: frontend/src/components/Modals/LiveClassModal.vue:29
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -2241,7 +2241,7 @@ msgstr "Uredi kupon"
msgid "Edit Email Template"
msgstr "Uredi imejl šablon"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:13
msgid "Edit Payment Gateway"
msgstr "Uredi platni portal"
@@ -2424,7 +2424,7 @@ msgstr "Upiši člana u program"
msgid "Enroll Now"
msgstr "Upišite se sada"
#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:358
#: frontend/src/pages/Batches.vue:334 frontend/src/pages/Courses.vue:357
#: frontend/src/pages/Programs/StudentPrograms.vue:96
msgid "Enrolled"
msgstr "Upisan"
@@ -2526,7 +2526,7 @@ msgstr "Greška prilikom ažuriranja imejl šablona"
#. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json
#: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json
msgid "Evaluation"
msgstr "Ocenjivanje"
@@ -2551,7 +2551,7 @@ msgstr "Zahtev za ocenjivanje"
msgid "Evaluation end date cannot be less than the batch end date."
msgstr "Datum završetka ocenjivanja ne može biti manji od datuma završetka grupe."
#: frontend/src/components/Modals/Event.vue:286
#: frontend/src/components/Modals/Event.vue:292
msgid "Evaluation saved successfully"
msgstr "Ocenjivanje je uspešno sačuvano"
@@ -2664,7 +2664,7 @@ msgstr "Ističe na"
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:144
#: frontend/src/components/Modals/Event.vue:150
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date"
msgstr "Datum isteka"
@@ -2695,7 +2695,7 @@ msgstr "Istražite više"
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:396
#: frontend/src/components/Modals/Event.vue:412
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail"
@@ -3209,7 +3209,7 @@ msgstr "Uvezi obuku"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:388
#: frontend/src/components/Modals/Event.vue:404
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "In Progress"
@@ -3353,7 +3353,7 @@ msgstr "SCORM paket"
#. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:138
#: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date"
@@ -3456,7 +3456,7 @@ msgstr "Pridruži se"
msgid "Join Call"
msgstr "Pridruži se pozivu"
#: frontend/src/components/Modals/Event.vue:78
#: frontend/src/components/Modals/Event.vue:84
msgid "Join Meeting"
msgstr "Pridruži se sastanku"
@@ -3896,7 +3896,7 @@ msgstr "LinkedIn"
msgid "LinkedIn ID"
msgstr "LinkedIn ID"
#: frontend/src/pages/Courses.vue:341
#: frontend/src/pages/Courses.vue:340
msgid "Live"
msgstr "Aktivno"
@@ -4429,7 +4429,7 @@ msgstr "Naziv"
#: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17
#: frontend/src/pages/Courses.vue:344
#: frontend/src/pages/Courses.vue:343
#: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New"
@@ -4461,7 +4461,7 @@ msgstr "Novi posao"
msgid "New Job Applicant"
msgstr "Novi kandidat za posao"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:12
msgid "New Payment Gateway"
msgstr "Novi platni portal"
@@ -4778,13 +4778,8 @@ msgstr "Otvoren za"
#: frontend/src/components/UserAvatar.vue:11
#: frontend/src/pages/CertifiedParticipants.vue:46
#: frontend/src/pages/Profile.vue:69
msgid "Open to Opportunities"
msgstr "Otvoren za prilike"
#. Option for the 'Open to' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Opportunities"
msgstr "Prilike"
msgid "Open to Work"
msgstr "Otvoren za radni angažman"
#. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:70
@@ -4924,7 +4919,7 @@ msgstr "Delimično završeno"
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:392
#: frontend/src/components/Modals/Event.vue:408
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass"
@@ -5054,7 +5049,7 @@ msgstr "Aplikacija za obradu plaćanja nije instalirana"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:384
#: frontend/src/components/Modals/Event.vue:400
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending"
@@ -5194,7 +5189,7 @@ msgstr "Molimo Vas da se prijavite da biste pristupili ovoj stranici."
msgid "Please login to continue with payment."
msgstr "Molimo Vas da se prijavite da biste nastavili sa plaćanjem."
#: lms/lms/utils.py:2081
#: lms/lms/utils.py:2082
msgid "Please login to enroll in the program."
msgstr "Molimo Vas da se prijavite da biste se upisali u program."
@@ -5525,7 +5520,7 @@ msgstr "Objavi na stranici učesnika"
#. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:122
#: frontend/src/components/Modals/Event.vue:128
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105
#: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5693,7 +5688,7 @@ msgstr "Kvizovi u ovom video-snimku"
#. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/Event.vue:98
#: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -5929,14 +5924,14 @@ msgstr "Subota"
#: frontend/src/components/Modals/AssignmentForm.vue:65
#: frontend/src/components/Modals/EditProfile.vue:121
#: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:157
#: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/Coupons/CouponDetails.vue:78
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:41
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:129
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
@@ -6048,7 +6043,7 @@ msgstr "Pogledaj sve"
msgid "Select Date"
msgstr "Izaberite datum"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:26
msgid "Select Payment Gateway"
msgstr "Izaberite platni portal"
@@ -6364,7 +6359,7 @@ msgstr "Statistika"
#. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Modals/Event.vue:105
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6475,7 +6470,7 @@ msgstr "Uspešno ste upisani u program"
#. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:106
#: frontend/src/components/Modals/Event.vue:112
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary"
msgstr "Rezime"
@@ -6571,7 +6566,7 @@ msgstr "Timski rad"
#. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:127
#: frontend/src/components/Modals/Event.vue:133
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template"
msgstr "Šablon"
@@ -6620,7 +6615,7 @@ msgstr "Hvala Vam što ste podelili svoje utiske."
msgid "Thanks and Regards"
msgstr "Hvala i srdačan pozdrav"
#: lms/lms/utils.py:2247
#: lms/lms/utils.py:2248
msgid "The batch does not exist."
msgstr "Grupa ne postoji."
@@ -6628,7 +6623,7 @@ msgstr "Grupa ne postoji."
msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session."
msgstr "Grupa u koju ste se upisali počinje sutra. Molimo Vas da budete spremni i tačni za sesiju."
#: lms/lms/utils.py:1747
#: lms/lms/utils.py:1748
msgid "The coupon code '{0}' is invalid."
msgstr "Šifra kupona '{0}' nije važeća."
@@ -6652,7 +6647,7 @@ msgstr "Predavač je ostavio komentar na Vašem zadatku {0}"
msgid "The last day to schedule your evaluations is "
msgstr "Poslednji dan za zakazivanje Vašeg ocenjivanja je "
#: lms/lms/utils.py:2231
#: lms/lms/utils.py:2232
msgid "The lesson does not exist."
msgstr "Lekcija ne postoji."
@@ -6660,7 +6655,7 @@ msgstr "Lekcija ne postoji."
msgid "The slot is already booked by another participant."
msgstr "Termin je već rezervisan od strane drugog učesnika."
#: lms/lms/utils.py:1361 lms/lms/utils.py:1477 lms/lms/utils.py:1944
#: lms/lms/utils.py:1362 lms/lms/utils.py:1478 lms/lms/utils.py:1945
msgid "The specified batch does not exist."
msgstr "Navedena grupa ne postoji."
@@ -6726,15 +6721,15 @@ msgstr "Ovaj sertifikat nema rok trajanja"
msgid "This class has ended"
msgstr "Ovo predavanje se završilo"
#: lms/lms/utils.py:1776
#: lms/lms/utils.py:1777
msgid "This coupon has expired."
msgstr "Ovaj kupon je istekao."
#: lms/lms/utils.py:1779
#: lms/lms/utils.py:1780
msgid "This coupon has reached its maximum usage limit."
msgstr "Ovaj kupon je dostigao maksimalno ograničenje upotrebe."
#: lms/lms/utils.py:1788
#: lms/lms/utils.py:1789
msgid "This coupon is not applicable to this {0}."
msgstr "Ovaj kupon se ne može primeniti na ovaj {0}."
@@ -6742,7 +6737,7 @@ msgstr "Ovaj kupon se ne može primeniti na ovaj {0}."
msgid "This course has:"
msgstr "Ova obuka sadrži:"
#: lms/lms/utils.py:1707
#: lms/lms/utils.py:1708
msgid "This course is free."
msgstr "Ova obuka je besplatna."
@@ -6799,7 +6794,7 @@ msgid "Thursday"
msgstr "Četvrtak"
#. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48
#: frontend/src/components/Modals/Event.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Quiz.vue:58
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -6934,7 +6929,7 @@ msgstr "Za"
msgid "To Date"
msgstr "Datum završetka"
#: lms/lms/utils.py:1721
#: lms/lms/utils.py:1722
msgid "To join this batch, please contact the Administrator."
msgstr "Za pridruživanje ovoj grupi, molimo Vas da kontaktirate administratora."
@@ -7056,7 +7051,7 @@ msgstr "Datum početka nedostupnosti ne može biti nakon datuma završetka nedos
msgid "Under Review"
msgstr "Pregled u toku"
#: frontend/src/pages/Batches.vue:330 frontend/src/pages/Courses.vue:356
#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:355
msgid "Unpublished"
msgstr "Neobjavljeno"
@@ -7077,8 +7072,8 @@ msgstr "Nestrukturirana uloga"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
#. Label of the upcoming (Check) field in DocType 'LMS Course'
#: frontend/src/pages/Batches.vue:328 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:347
#: frontend/src/pages/Batches.vue:330 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:346
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming"
@@ -7220,7 +7215,7 @@ msgid "View Applications"
msgstr "Prikaz prijava"
#: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67
#: frontend/src/components/Modals/Event.vue:73
msgid "View Certificate"
msgstr "Prikaz sertifikata"
@@ -7327,6 +7322,11 @@ msgstr "Uz ovu sertifikaciju sada možete pokazati svoja unapređena znanja i po
msgid "Withdrawn"
msgstr "Povučeno"
#. Option for the 'Open to' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Work"
msgstr "Radni angažman"
#. Label of the work_environment (Section Break) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Work Environment"
@@ -7427,7 +7427,7 @@ msgstr "Ne možete menjati uloge u režimu samo za čitanje."
msgid "You cannot enroll in an unpublished course."
msgstr "Nije moguće upisati se na neobjavljenu obuku."
#: lms/lms/utils.py:2085
#: lms/lms/utils.py:2086
msgid "You cannot enroll in an unpublished program."
msgstr "Nije moguće upisati se na neobjavljen program."
@@ -7443,11 +7443,11 @@ msgstr "Ne možete zakazati ocenjivanje nakon {0}."
msgid "You cannot schedule evaluations for past slots."
msgstr "Ocenjivanje nije moguće zakazati za termine koji su već prošli."
#: lms/lms/utils.py:2259
#: lms/lms/utils.py:2260
msgid "You do not have access to this batch."
msgstr "Nemate pristup ovoj grupi."
#: lms/lms/utils.py:2242
#: lms/lms/utils.py:2243
msgid "You do not have access to this course."
msgstr "Nemate pristup ovoj obuci."
+59 -59
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2026-01-16 16:04+0000\n"
"PO-Revision-Date: 2026-01-21 20:16\n"
"POT-Creation-Date: 2026-01-23 16:05+0000\n"
"PO-Revision-Date: 2026-02-06 06:38\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Swedish\n"
"MIME-Version: 1.0\n"
@@ -319,7 +319,7 @@ msgid "Administrator"
msgstr "Administratör"
#. Name of a role
#: frontend/src/pages/Batches.vue:319 lms/lms/doctype/lms_badge/lms_badge.json
#: frontend/src/pages/Batches.vue:321 lms/lms/doctype/lms_badge/lms_badge.json
msgid "All"
msgstr "Alla"
@@ -486,7 +486,7 @@ msgstr "Godkänd"
msgid "Apps"
msgstr "Appar"
#: frontend/src/pages/Batches.vue:329
#: frontend/src/pages/Batches.vue:331
msgid "Archived"
msgstr "Arkiverad"
@@ -753,7 +753,7 @@ msgstr "Emblem {0} har redan tilldelats denna {1}."
#. Label of the batch_name (Link) field in DocType 'LMS Certificate'
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
#. Label of the batch_name (Link) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:32
#: frontend/src/components/Modals/Event.vue:35
#: frontend/src/components/Settings/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125
@@ -878,7 +878,7 @@ msgid "Batch:"
msgstr "Parti:"
#. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue:350 frontend/src/pages/Batches.vue:357
#: frontend/src/pages/Batches.vue:352 frontend/src/pages/Batches.vue:359
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121
msgid "Batches"
msgstr "Grupper"
@@ -1023,7 +1023,7 @@ msgstr "Cerifikat Länk"
msgid "Certificate of Completion"
msgstr "Certifikat för Genomförande"
#: frontend/src/components/Modals/Event.vue:347
#: frontend/src/components/Modals/Event.vue:353
msgid "Certificate saved successfully"
msgstr "Certifikat sparad"
@@ -1043,7 +1043,7 @@ msgstr "Certifikat genererade"
#. Label of a chart in the LMS Workspace
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:411
#: frontend/src/components/Modals/Event.vue:427
#: frontend/src/components/Sidebar/AppSidebar.vue:550
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100
#: frontend/src/pages/CourseCertification.vue:10
@@ -1771,7 +1771,7 @@ msgstr "Kurs {0} har redan lagts till i detta program."
#: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:365 frontend/src/pages/Courses.vue:372
#: frontend/src/pages/Courses.vue:364 frontend/src/pages/Courses.vue:371
#: frontend/src/pages/Programs/ProgramForm.vue:49
#: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1878,7 +1878,7 @@ msgstr "Skapa din första kurs"
msgid "Create your first quiz"
msgstr "Skapa din första frågesport"
#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:355
#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:354
msgid "Created"
msgstr "Skapad"
@@ -1954,7 +1954,7 @@ msgstr "Data Import"
#. Label of the date (Date) field in DocType 'LMS Certificate Request'
#. Label of the date (Date) field in DocType 'LMS Live Class'
#. Label of the date (Date) field in DocType 'Scheduled Flow'
#: frontend/src/components/Modals/Event.vue:40
#: frontend/src/components/Modals/Event.vue:46
#: frontend/src/components/Modals/LiveClassModal.vue:29
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -2241,7 +2241,7 @@ msgstr "Redigera Kupong"
msgid "Edit Email Template"
msgstr "Redigera e-post mall"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:13
msgid "Edit Payment Gateway"
msgstr "Redigera Betalning Portal"
@@ -2424,7 +2424,7 @@ msgstr "Registrera Medlem till Program"
msgid "Enroll Now"
msgstr "Registrera Nu"
#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:358
#: frontend/src/pages/Batches.vue:334 frontend/src/pages/Courses.vue:357
#: frontend/src/pages/Programs/StudentPrograms.vue:96
msgid "Enrolled"
msgstr "Inskriven"
@@ -2526,7 +2526,7 @@ msgstr "Fel vid uppdatering av e-post mall"
#. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json
#: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json
msgid "Evaluation"
msgstr "Utvärdering"
@@ -2551,7 +2551,7 @@ msgstr "Utvärdering Begäran"
msgid "Evaluation end date cannot be less than the batch end date."
msgstr "Utvärdering slutdatum får inte vara tidigare än grupp slutdatum."
#: frontend/src/components/Modals/Event.vue:286
#: frontend/src/components/Modals/Event.vue:292
msgid "Evaluation saved successfully"
msgstr "Utvärdering sparad"
@@ -2664,7 +2664,7 @@ msgstr "Utgår"
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:144
#: frontend/src/components/Modals/Event.vue:150
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date"
msgstr "Utgång Datum"
@@ -2695,7 +2695,7 @@ msgstr "Utforska mer"
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:396
#: frontend/src/components/Modals/Event.vue:412
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail"
@@ -3209,7 +3209,7 @@ msgstr "Importera Kurs"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:388
#: frontend/src/components/Modals/Event.vue:404
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "In Progress"
@@ -3353,7 +3353,7 @@ msgstr "Är SCORM App"
#. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:138
#: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date"
@@ -3456,7 +3456,7 @@ msgstr "Anslut"
msgid "Join Call"
msgstr "Delta i Samtal"
#: frontend/src/components/Modals/Event.vue:78
#: frontend/src/components/Modals/Event.vue:84
msgid "Join Meeting"
msgstr "Delta i Möte"
@@ -3896,7 +3896,7 @@ msgstr "LinkedIn"
msgid "LinkedIn ID"
msgstr "LinkedIn ID"
#: frontend/src/pages/Courses.vue:341
#: frontend/src/pages/Courses.vue:340
msgid "Live"
msgstr "Live"
@@ -4429,7 +4429,7 @@ msgstr "Namn"
#: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17
#: frontend/src/pages/Courses.vue:344
#: frontend/src/pages/Courses.vue:343
#: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New"
@@ -4461,7 +4461,7 @@ msgstr "Nya Jobb"
msgid "New Job Applicant"
msgstr "Ny Jobb Sökande"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:12
msgid "New Payment Gateway"
msgstr "Ny Betalning Portal"
@@ -4778,13 +4778,8 @@ msgstr "Öppen för"
#: frontend/src/components/UserAvatar.vue:11
#: frontend/src/pages/CertifiedParticipants.vue:46
#: frontend/src/pages/Profile.vue:69
msgid "Open to Opportunities"
msgstr "Öppen för Möjligheter"
#. Option for the 'Open to' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Opportunities"
msgstr "Möjligheter"
msgid "Open to Work"
msgstr "Öppet för Arbete"
#. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:70
@@ -4924,7 +4919,7 @@ msgstr "Delvis Klar"
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:392
#: frontend/src/components/Modals/Event.vue:408
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass"
@@ -5054,7 +5049,7 @@ msgstr "Betalning App är inte installerad"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:384
#: frontend/src/components/Modals/Event.vue:400
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending"
@@ -5194,7 +5189,7 @@ msgstr "Logga in för att komma till denna sida."
msgid "Please login to continue with payment."
msgstr "Logga in för att fortsätta med betalning."
#: lms/lms/utils.py:2081
#: lms/lms/utils.py:2082
msgid "Please login to enroll in the program."
msgstr "Logga in för att registrera dig i programmet."
@@ -5525,7 +5520,7 @@ msgstr "Publicera på deltagarsidan"
#. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:122
#: frontend/src/components/Modals/Event.vue:128
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105
#: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5693,7 +5688,7 @@ msgstr "Frågesporter i denna video"
#. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/Event.vue:98
#: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -5929,14 +5924,14 @@ msgstr "Lördag"
#: frontend/src/components/Modals/AssignmentForm.vue:65
#: frontend/src/components/Modals/EditProfile.vue:121
#: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:157
#: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/Coupons/CouponDetails.vue:78
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:41
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:129
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
@@ -6048,7 +6043,7 @@ msgstr "Se alla"
msgid "Select Date"
msgstr "Välj Datum"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:26
msgid "Select Payment Gateway"
msgstr "Välj Betalning Portal"
@@ -6364,7 +6359,7 @@ msgstr "Statistik"
#. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Modals/Event.vue:105
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6475,7 +6470,7 @@ msgstr "Registrerad i program"
#. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:106
#: frontend/src/components/Modals/Event.vue:112
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary"
msgstr "Översikt"
@@ -6571,7 +6566,7 @@ msgstr "Teamarbete"
#. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:127
#: frontend/src/components/Modals/Event.vue:133
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template"
msgstr "Mall"
@@ -6620,7 +6615,7 @@ msgstr "Tack för återkoppling."
msgid "Thanks and Regards"
msgstr "Tack och Hälsningar"
#: lms/lms/utils.py:2247
#: lms/lms/utils.py:2248
msgid "The batch does not exist."
msgstr "Grupp existerar inte."
@@ -6628,7 +6623,7 @@ msgstr "Grupp existerar inte."
msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session."
msgstr "Gruppen du har anmält dig till börjar i morgon. Var förberedd och kom i tid till sessionen."
#: lms/lms/utils.py:1747
#: lms/lms/utils.py:1748
msgid "The coupon code '{0}' is invalid."
msgstr "Kupongkod '{0}' är ogiltig."
@@ -6652,7 +6647,7 @@ msgstr "Lärare har lämnat kommentar på din uppgift {0}"
msgid "The last day to schedule your evaluations is "
msgstr "Sista dagen att boka utvärderingar är "
#: lms/lms/utils.py:2231
#: lms/lms/utils.py:2232
msgid "The lesson does not exist."
msgstr "Lektion existerar inte."
@@ -6660,7 +6655,7 @@ msgstr "Lektion existerar inte."
msgid "The slot is already booked by another participant."
msgstr "Tiden är redan bokad av en annan deltagare."
#: lms/lms/utils.py:1361 lms/lms/utils.py:1477 lms/lms/utils.py:1944
#: lms/lms/utils.py:1362 lms/lms/utils.py:1478 lms/lms/utils.py:1945
msgid "The specified batch does not exist."
msgstr "Angiven grupp existerar inte."
@@ -6726,15 +6721,15 @@ msgstr "Detta certifikat upphör inte att gälla"
msgid "This class has ended"
msgstr "Denna klass har avslutats"
#: lms/lms/utils.py:1776
#: lms/lms/utils.py:1777
msgid "This coupon has expired."
msgstr "Denna kupong har gått ut."
#: lms/lms/utils.py:1779
#: lms/lms/utils.py:1780
msgid "This coupon has reached its maximum usage limit."
msgstr "Denna kupong har nått sin maximala inlösenantal."
#: lms/lms/utils.py:1788
#: lms/lms/utils.py:1789
msgid "This coupon is not applicable to this {0}."
msgstr "Denna kupong är inte tillämplig på denna {0}."
@@ -6742,7 +6737,7 @@ msgstr "Denna kupong är inte tillämplig på denna {0}."
msgid "This course has:"
msgstr "Denna kurs har:"
#: lms/lms/utils.py:1707
#: lms/lms/utils.py:1708
msgid "This course is free."
msgstr "Denna kurs är gratis."
@@ -6799,7 +6794,7 @@ msgid "Thursday"
msgstr "Torsdag"
#. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48
#: frontend/src/components/Modals/Event.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Quiz.vue:58
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -6934,7 +6929,7 @@ msgstr "Till"
msgid "To Date"
msgstr "Till Datum"
#: lms/lms/utils.py:1721
#: lms/lms/utils.py:1722
msgid "To join this batch, please contact the Administrator."
msgstr "För att gå med i denna grupp, kontakta Administratör."
@@ -7056,7 +7051,7 @@ msgstr "Otillgänglig Från datum kan inte vara senare än Otillgänglig till da
msgid "Under Review"
msgstr "Under Recension"
#: frontend/src/pages/Batches.vue:330 frontend/src/pages/Courses.vue:356
#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:355
msgid "Unpublished"
msgstr "Opublicerad"
@@ -7077,8 +7072,8 @@ msgstr "Ostrukturerad Roll"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
#. Label of the upcoming (Check) field in DocType 'LMS Course'
#: frontend/src/pages/Batches.vue:328 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:347
#: frontend/src/pages/Batches.vue:330 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:346
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming"
@@ -7220,7 +7215,7 @@ msgid "View Applications"
msgstr "Visa Ansökningar"
#: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67
#: frontend/src/components/Modals/Event.vue:73
msgid "View Certificate"
msgstr "Visa Certifikat"
@@ -7327,6 +7322,11 @@ msgstr "Med denna certifiering kan du nu visa upp dina uppdaterade färdigheter
msgid "Withdrawn"
msgstr "Återkallad"
#. Option for the 'Open to' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Work"
msgstr "Arbete"
#. Label of the work_environment (Section Break) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Work Environment"
@@ -7427,7 +7427,7 @@ msgstr "Du kan inte ändra rollerna i skrivskyddat läge."
msgid "You cannot enroll in an unpublished course."
msgstr "Du kan inte anmäla dig till opublicerad kurs."
#: lms/lms/utils.py:2085
#: lms/lms/utils.py:2086
msgid "You cannot enroll in an unpublished program."
msgstr "Du kan inte anmäla dig till opublicerad program."
@@ -7443,11 +7443,11 @@ msgstr "Du kan inte schemalägga utvärderingar efter {0}."
msgid "You cannot schedule evaluations for past slots."
msgstr "Du kan inte schemalägga utvärderingar för förflutna tider."
#: lms/lms/utils.py:2259
#: lms/lms/utils.py:2260
msgid "You do not have access to this batch."
msgstr "Du har inte åtkomst till denna grupp."
#: lms/lms/utils.py:2242
#: lms/lms/utils.py:2243
msgid "You do not have access to this course."
msgstr "Du har inte åtkomst till denna kurs."
+58 -58
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2026-01-16 16:04+0000\n"
"PO-Revision-Date: 2026-01-19 20:13\n"
"POT-Creation-Date: 2026-01-23 16:05+0000\n"
"PO-Revision-Date: 2026-02-05 06:43\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Thai\n"
"MIME-Version: 1.0\n"
@@ -319,7 +319,7 @@ msgid "Administrator"
msgstr ""
#. Name of a role
#: frontend/src/pages/Batches.vue:319 lms/lms/doctype/lms_badge/lms_badge.json
#: frontend/src/pages/Batches.vue:321 lms/lms/doctype/lms_badge/lms_badge.json
msgid "All"
msgstr ""
@@ -486,7 +486,7 @@ msgstr ""
msgid "Apps"
msgstr ""
#: frontend/src/pages/Batches.vue:329
#: frontend/src/pages/Batches.vue:331
msgid "Archived"
msgstr ""
@@ -753,7 +753,7 @@ msgstr ""
#. Label of the batch_name (Link) field in DocType 'LMS Certificate'
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
#. Label of the batch_name (Link) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:32
#: frontend/src/components/Modals/Event.vue:35
#: frontend/src/components/Settings/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125
@@ -878,7 +878,7 @@ msgid "Batch:"
msgstr ""
#. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue:350 frontend/src/pages/Batches.vue:357
#: frontend/src/pages/Batches.vue:352 frontend/src/pages/Batches.vue:359
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121
msgid "Batches"
msgstr ""
@@ -1023,7 +1023,7 @@ msgstr ""
msgid "Certificate of Completion"
msgstr ""
#: frontend/src/components/Modals/Event.vue:347
#: frontend/src/components/Modals/Event.vue:353
msgid "Certificate saved successfully"
msgstr ""
@@ -1043,7 +1043,7 @@ msgstr ""
#. Label of a chart in the LMS Workspace
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:411
#: frontend/src/components/Modals/Event.vue:427
#: frontend/src/components/Sidebar/AppSidebar.vue:550
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100
#: frontend/src/pages/CourseCertification.vue:10
@@ -1771,7 +1771,7 @@ msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:365 frontend/src/pages/Courses.vue:372
#: frontend/src/pages/Courses.vue:364 frontend/src/pages/Courses.vue:371
#: frontend/src/pages/Programs/ProgramForm.vue:49
#: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1878,7 +1878,7 @@ msgstr ""
msgid "Create your first quiz"
msgstr ""
#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:355
#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:354
msgid "Created"
msgstr ""
@@ -1954,7 +1954,7 @@ msgstr "การนำเข้าข้อมูล"
#. Label of the date (Date) field in DocType 'LMS Certificate Request'
#. Label of the date (Date) field in DocType 'LMS Live Class'
#. Label of the date (Date) field in DocType 'Scheduled Flow'
#: frontend/src/components/Modals/Event.vue:40
#: frontend/src/components/Modals/Event.vue:46
#: frontend/src/components/Modals/LiveClassModal.vue:29
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -2244,7 +2244,7 @@ msgstr ""
msgid "Edit Email Template"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:13
msgid "Edit Payment Gateway"
msgstr ""
@@ -2427,7 +2427,7 @@ msgstr ""
msgid "Enroll Now"
msgstr ""
#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:358
#: frontend/src/pages/Batches.vue:334 frontend/src/pages/Courses.vue:357
#: frontend/src/pages/Programs/StudentPrograms.vue:96
msgid "Enrolled"
msgstr ""
@@ -2529,7 +2529,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json
#: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json
msgid "Evaluation"
msgstr ""
@@ -2554,7 +2554,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date."
msgstr ""
#: frontend/src/components/Modals/Event.vue:286
#: frontend/src/components/Modals/Event.vue:292
msgid "Evaluation saved successfully"
msgstr ""
@@ -2667,7 +2667,7 @@ msgstr "หมดอายุเมื่อ"
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:144
#: frontend/src/components/Modals/Event.vue:150
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date"
msgstr "วันหมดอายุ"
@@ -2698,7 +2698,7 @@ msgstr ""
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:396
#: frontend/src/components/Modals/Event.vue:412
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail"
@@ -3212,7 +3212,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:388
#: frontend/src/components/Modals/Event.vue:404
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "In Progress"
@@ -3356,7 +3356,7 @@ msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:138
#: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date"
@@ -3459,7 +3459,7 @@ msgstr ""
msgid "Join Call"
msgstr ""
#: frontend/src/components/Modals/Event.vue:78
#: frontend/src/components/Modals/Event.vue:84
msgid "Join Meeting"
msgstr ""
@@ -3899,7 +3899,7 @@ msgstr ""
msgid "LinkedIn ID"
msgstr ""
#: frontend/src/pages/Courses.vue:341
#: frontend/src/pages/Courses.vue:340
msgid "Live"
msgstr ""
@@ -4432,7 +4432,7 @@ msgstr "ชื่อ"
#: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17
#: frontend/src/pages/Courses.vue:344
#: frontend/src/pages/Courses.vue:343
#: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New"
@@ -4464,7 +4464,7 @@ msgstr ""
msgid "New Job Applicant"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:12
msgid "New Payment Gateway"
msgstr ""
@@ -4781,14 +4781,9 @@ msgstr ""
#: frontend/src/components/UserAvatar.vue:11
#: frontend/src/pages/CertifiedParticipants.vue:46
#: frontend/src/pages/Profile.vue:69
msgid "Open to Opportunities"
msgid "Open to Work"
msgstr ""
#. Option for the 'Open to' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Opportunities"
msgstr "โอกาส"
#. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:70
#: lms/lms/doctype/lms_option/lms_option.json
@@ -4927,7 +4922,7 @@ msgstr ""
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:392
#: frontend/src/components/Modals/Event.vue:408
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass"
@@ -5057,7 +5052,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:384
#: frontend/src/components/Modals/Event.vue:400
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending"
@@ -5197,7 +5192,7 @@ msgstr ""
msgid "Please login to continue with payment."
msgstr ""
#: lms/lms/utils.py:2081
#: lms/lms/utils.py:2082
msgid "Please login to enroll in the program."
msgstr ""
@@ -5528,7 +5523,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:122
#: frontend/src/components/Modals/Event.vue:128
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105
#: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5696,7 +5691,7 @@ msgstr ""
#. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/Event.vue:98
#: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -5932,14 +5927,14 @@ msgstr "วันเสาร์"
#: frontend/src/components/Modals/AssignmentForm.vue:65
#: frontend/src/components/Modals/EditProfile.vue:121
#: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:157
#: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/Coupons/CouponDetails.vue:78
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:41
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:129
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
@@ -6051,7 +6046,7 @@ msgstr ""
msgid "Select Date"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:26
msgid "Select Payment Gateway"
msgstr ""
@@ -6367,7 +6362,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Modals/Event.vue:105
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6478,7 +6473,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:106
#: frontend/src/components/Modals/Event.vue:112
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary"
msgstr ""
@@ -6574,7 +6569,7 @@ msgstr ""
#. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:127
#: frontend/src/components/Modals/Event.vue:133
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template"
msgstr ""
@@ -6623,7 +6618,7 @@ msgstr ""
msgid "Thanks and Regards"
msgstr ""
#: lms/lms/utils.py:2247
#: lms/lms/utils.py:2248
msgid "The batch does not exist."
msgstr ""
@@ -6631,7 +6626,7 @@ msgstr ""
msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session."
msgstr ""
#: lms/lms/utils.py:1747
#: lms/lms/utils.py:1748
msgid "The coupon code '{0}' is invalid."
msgstr ""
@@ -6655,7 +6650,7 @@ msgstr ""
msgid "The last day to schedule your evaluations is "
msgstr ""
#: lms/lms/utils.py:2231
#: lms/lms/utils.py:2232
msgid "The lesson does not exist."
msgstr ""
@@ -6663,7 +6658,7 @@ msgstr ""
msgid "The slot is already booked by another participant."
msgstr ""
#: lms/lms/utils.py:1361 lms/lms/utils.py:1477 lms/lms/utils.py:1944
#: lms/lms/utils.py:1362 lms/lms/utils.py:1478 lms/lms/utils.py:1945
msgid "The specified batch does not exist."
msgstr ""
@@ -6729,15 +6724,15 @@ msgstr ""
msgid "This class has ended"
msgstr ""
#: lms/lms/utils.py:1776
#: lms/lms/utils.py:1777
msgid "This coupon has expired."
msgstr ""
#: lms/lms/utils.py:1779
#: lms/lms/utils.py:1780
msgid "This coupon has reached its maximum usage limit."
msgstr ""
#: lms/lms/utils.py:1788
#: lms/lms/utils.py:1789
msgid "This coupon is not applicable to this {0}."
msgstr ""
@@ -6745,7 +6740,7 @@ msgstr ""
msgid "This course has:"
msgstr ""
#: lms/lms/utils.py:1707
#: lms/lms/utils.py:1708
msgid "This course is free."
msgstr ""
@@ -6802,7 +6797,7 @@ msgid "Thursday"
msgstr ""
#. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48
#: frontend/src/components/Modals/Event.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Quiz.vue:58
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -6937,7 +6932,7 @@ msgstr ""
msgid "To Date"
msgstr ""
#: lms/lms/utils.py:1721
#: lms/lms/utils.py:1722
msgid "To join this batch, please contact the Administrator."
msgstr ""
@@ -7059,7 +7054,7 @@ msgstr ""
msgid "Under Review"
msgstr ""
#: frontend/src/pages/Batches.vue:330 frontend/src/pages/Courses.vue:356
#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:355
msgid "Unpublished"
msgstr ""
@@ -7080,8 +7075,8 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
#. Label of the upcoming (Check) field in DocType 'LMS Course'
#: frontend/src/pages/Batches.vue:328 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:347
#: frontend/src/pages/Batches.vue:330 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:346
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming"
@@ -7223,7 +7218,7 @@ msgid "View Applications"
msgstr ""
#: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67
#: frontend/src/components/Modals/Event.vue:73
msgid "View Certificate"
msgstr ""
@@ -7330,6 +7325,11 @@ msgstr ""
msgid "Withdrawn"
msgstr ""
#. Option for the 'Open to' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Work"
msgstr ""
#. Label of the work_environment (Section Break) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Work Environment"
@@ -7430,7 +7430,7 @@ msgstr ""
msgid "You cannot enroll in an unpublished course."
msgstr ""
#: lms/lms/utils.py:2085
#: lms/lms/utils.py:2086
msgid "You cannot enroll in an unpublished program."
msgstr ""
@@ -7446,11 +7446,11 @@ msgstr ""
msgid "You cannot schedule evaluations for past slots."
msgstr ""
#: lms/lms/utils.py:2259
#: lms/lms/utils.py:2260
msgid "You do not have access to this batch."
msgstr ""
#: lms/lms/utils.py:2242
#: lms/lms/utils.py:2243
msgid "You do not have access to this course."
msgstr ""
+59 -59
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2026-01-16 16:04+0000\n"
"PO-Revision-Date: 2026-01-21 20:16\n"
"POT-Creation-Date: 2026-01-23 16:05+0000\n"
"PO-Revision-Date: 2026-02-05 06:43\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Turkish\n"
"MIME-Version: 1.0\n"
@@ -319,7 +319,7 @@ msgid "Administrator"
msgstr "Yönetici"
#. Name of a role
#: frontend/src/pages/Batches.vue:319 lms/lms/doctype/lms_badge/lms_badge.json
#: frontend/src/pages/Batches.vue:321 lms/lms/doctype/lms_badge/lms_badge.json
msgid "All"
msgstr "Tümü"
@@ -486,7 +486,7 @@ msgstr "Onaylandı"
msgid "Apps"
msgstr "Uygulamalar"
#: frontend/src/pages/Batches.vue:329
#: frontend/src/pages/Batches.vue:331
msgid "Archived"
msgstr ""
@@ -753,7 +753,7 @@ msgstr ""
#. Label of the batch_name (Link) field in DocType 'LMS Certificate'
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
#. Label of the batch_name (Link) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:32
#: frontend/src/components/Modals/Event.vue:35
#: frontend/src/components/Settings/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125
@@ -878,7 +878,7 @@ msgid "Batch:"
msgstr "Parti:"
#. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue:350 frontend/src/pages/Batches.vue:357
#: frontend/src/pages/Batches.vue:352 frontend/src/pages/Batches.vue:359
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121
msgid "Batches"
msgstr "Sınıflar"
@@ -1023,7 +1023,7 @@ msgstr "Sertifika Bağlantısı"
msgid "Certificate of Completion"
msgstr ""
#: frontend/src/components/Modals/Event.vue:347
#: frontend/src/components/Modals/Event.vue:353
msgid "Certificate saved successfully"
msgstr ""
@@ -1043,7 +1043,7 @@ msgstr ""
#. Label of a chart in the LMS Workspace
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:411
#: frontend/src/components/Modals/Event.vue:427
#: frontend/src/components/Sidebar/AppSidebar.vue:550
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100
#: frontend/src/pages/CourseCertification.vue:10
@@ -1771,7 +1771,7 @@ msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:365 frontend/src/pages/Courses.vue:372
#: frontend/src/pages/Courses.vue:364 frontend/src/pages/Courses.vue:371
#: frontend/src/pages/Programs/ProgramForm.vue:49
#: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1878,7 +1878,7 @@ msgstr ""
msgid "Create your first quiz"
msgstr ""
#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:355
#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:354
msgid "Created"
msgstr "Oluşturdu"
@@ -1954,7 +1954,7 @@ msgstr "Veri İçe Aktarma"
#. Label of the date (Date) field in DocType 'LMS Certificate Request'
#. Label of the date (Date) field in DocType 'LMS Live Class'
#. Label of the date (Date) field in DocType 'Scheduled Flow'
#: frontend/src/components/Modals/Event.vue:40
#: frontend/src/components/Modals/Event.vue:46
#: frontend/src/components/Modals/LiveClassModal.vue:29
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -2241,7 +2241,7 @@ msgstr ""
msgid "Edit Email Template"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:13
msgid "Edit Payment Gateway"
msgstr ""
@@ -2424,7 +2424,7 @@ msgstr ""
msgid "Enroll Now"
msgstr "Hemen Kaydol"
#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:358
#: frontend/src/pages/Batches.vue:334 frontend/src/pages/Courses.vue:357
#: frontend/src/pages/Programs/StudentPrograms.vue:96
msgid "Enrolled"
msgstr "Kayıtlı"
@@ -2526,7 +2526,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json
#: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json
msgid "Evaluation"
msgstr "Değerlendirme"
@@ -2551,7 +2551,7 @@ msgstr "Değerlendirme Talebi"
msgid "Evaluation end date cannot be less than the batch end date."
msgstr ""
#: frontend/src/components/Modals/Event.vue:286
#: frontend/src/components/Modals/Event.vue:292
msgid "Evaluation saved successfully"
msgstr ""
@@ -2664,7 +2664,7 @@ msgstr "Sona Erme Tarihi"
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:144
#: frontend/src/components/Modals/Event.vue:150
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date"
msgstr "Son Kullanım Tarihi"
@@ -2695,7 +2695,7 @@ msgstr "Daha Fazlasını Keşfedin"
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:396
#: frontend/src/components/Modals/Event.vue:412
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail"
@@ -3209,7 +3209,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:388
#: frontend/src/components/Modals/Event.vue:404
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "In Progress"
@@ -3353,7 +3353,7 @@ msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:138
#: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date"
@@ -3456,7 +3456,7 @@ msgstr "Katıl"
msgid "Join Call"
msgstr ""
#: frontend/src/components/Modals/Event.vue:78
#: frontend/src/components/Modals/Event.vue:84
msgid "Join Meeting"
msgstr "Görüşmeye Katıl"
@@ -3896,7 +3896,7 @@ msgstr "LinkedIn"
msgid "LinkedIn ID"
msgstr "LinkedIn"
#: frontend/src/pages/Courses.vue:341
#: frontend/src/pages/Courses.vue:340
msgid "Live"
msgstr "Canlı"
@@ -4429,7 +4429,7 @@ msgstr "Adı"
#: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17
#: frontend/src/pages/Courses.vue:344
#: frontend/src/pages/Courses.vue:343
#: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New"
@@ -4461,7 +4461,7 @@ msgstr "Yeni İş"
msgid "New Job Applicant"
msgstr "Yeni İş Başvurusu"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:12
msgid "New Payment Gateway"
msgstr ""
@@ -4778,14 +4778,9 @@ msgstr ""
#: frontend/src/components/UserAvatar.vue:11
#: frontend/src/pages/CertifiedParticipants.vue:46
#: frontend/src/pages/Profile.vue:69
msgid "Open to Opportunities"
msgid "Open to Work"
msgstr ""
#. Option for the 'Open to' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Opportunities"
msgstr "Fırsatlar"
#. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:70
#: lms/lms/doctype/lms_option/lms_option.json
@@ -4924,7 +4919,7 @@ msgstr "Kısmen Tamamlandı"
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:392
#: frontend/src/components/Modals/Event.vue:408
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass"
@@ -5054,7 +5049,7 @@ msgstr "Ödeme uygulaması yüklü değil"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:384
#: frontend/src/components/Modals/Event.vue:400
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending"
@@ -5194,7 +5189,7 @@ msgstr "Bu sayfaya erişebilmek için lütfen giriş yapın."
msgid "Please login to continue with payment."
msgstr "Ödeme işlemine devam etmek için lütfen giriş yapın."
#: lms/lms/utils.py:2081
#: lms/lms/utils.py:2082
msgid "Please login to enroll in the program."
msgstr ""
@@ -5525,7 +5520,7 @@ msgstr "Katılımcı Sayfasında Yayınla"
#. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:122
#: frontend/src/components/Modals/Event.vue:128
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105
#: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5693,7 +5688,7 @@ msgstr ""
#. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/Event.vue:98
#: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -5929,14 +5924,14 @@ msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:65
#: frontend/src/components/Modals/EditProfile.vue:121
#: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:157
#: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/Coupons/CouponDetails.vue:78
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:41
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:129
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
@@ -6048,7 +6043,7 @@ msgstr ""
msgid "Select Date"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:26
msgid "Select Payment Gateway"
msgstr ""
@@ -6364,7 +6359,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Modals/Event.vue:105
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6475,7 +6470,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:106
#: frontend/src/components/Modals/Event.vue:112
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary"
msgstr "Özet"
@@ -6571,7 +6566,7 @@ msgstr "Takım Çalışması"
#. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:127
#: frontend/src/components/Modals/Event.vue:133
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template"
msgstr ""
@@ -6620,7 +6615,7 @@ msgstr "Geri bildiriminiz için teşekkür ederiz."
msgid "Thanks and Regards"
msgstr "Teşekkürler ve Saygılar"
#: lms/lms/utils.py:2247
#: lms/lms/utils.py:2248
msgid "The batch does not exist."
msgstr ""
@@ -6628,7 +6623,7 @@ msgstr ""
msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session."
msgstr ""
#: lms/lms/utils.py:1747
#: lms/lms/utils.py:1748
msgid "The coupon code '{0}' is invalid."
msgstr ""
@@ -6652,7 +6647,7 @@ msgstr ""
msgid "The last day to schedule your evaluations is "
msgstr ""
#: lms/lms/utils.py:2231
#: lms/lms/utils.py:2232
msgid "The lesson does not exist."
msgstr ""
@@ -6660,7 +6655,7 @@ msgstr ""
msgid "The slot is already booked by another participant."
msgstr "Bu slot başka bir katılımcı tarafından rezerve edilmiş."
#: lms/lms/utils.py:1361 lms/lms/utils.py:1477 lms/lms/utils.py:1944
#: lms/lms/utils.py:1362 lms/lms/utils.py:1478 lms/lms/utils.py:1945
msgid "The specified batch does not exist."
msgstr ""
@@ -6726,15 +6721,15 @@ msgstr ""
msgid "This class has ended"
msgstr ""
#: lms/lms/utils.py:1776
#: lms/lms/utils.py:1777
msgid "This coupon has expired."
msgstr ""
#: lms/lms/utils.py:1779
#: lms/lms/utils.py:1780
msgid "This coupon has reached its maximum usage limit."
msgstr ""
#: lms/lms/utils.py:1788
#: lms/lms/utils.py:1789
msgid "This coupon is not applicable to this {0}."
msgstr ""
@@ -6742,7 +6737,7 @@ msgstr ""
msgid "This course has:"
msgstr "Bu kursta:"
#: lms/lms/utils.py:1707
#: lms/lms/utils.py:1708
msgid "This course is free."
msgstr "Bu kurs ücretsizdir."
@@ -6799,7 +6794,7 @@ msgid "Thursday"
msgstr ""
#. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48
#: frontend/src/components/Modals/Event.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Quiz.vue:58
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -6934,7 +6929,7 @@ msgstr "Kime"
msgid "To Date"
msgstr "Bitiş Tarihi"
#: lms/lms/utils.py:1721
#: lms/lms/utils.py:1722
msgid "To join this batch, please contact the Administrator."
msgstr ""
@@ -7056,7 +7051,7 @@ msgstr ""
msgid "Under Review"
msgstr "İnceleniyor"
#: frontend/src/pages/Batches.vue:330 frontend/src/pages/Courses.vue:356
#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:355
msgid "Unpublished"
msgstr ""
@@ -7077,8 +7072,8 @@ msgstr "Ayarlanmamış Rol"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
#. Label of the upcoming (Check) field in DocType 'LMS Course'
#: frontend/src/pages/Batches.vue:328 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:347
#: frontend/src/pages/Batches.vue:330 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:346
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming"
@@ -7220,7 +7215,7 @@ msgid "View Applications"
msgstr ""
#: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67
#: frontend/src/components/Modals/Event.vue:73
msgid "View Certificate"
msgstr "Sertifikayı Görüntüle"
@@ -7327,6 +7322,11 @@ msgstr "Bu sertifika ile artık güncellenmiş becerilerinizi sergileyebilir ve
msgid "Withdrawn"
msgstr ""
#. Option for the 'Open to' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Work"
msgstr ""
#. Label of the work_environment (Section Break) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Work Environment"
@@ -7427,7 +7427,7 @@ msgstr ""
msgid "You cannot enroll in an unpublished course."
msgstr ""
#: lms/lms/utils.py:2085
#: lms/lms/utils.py:2086
msgid "You cannot enroll in an unpublished program."
msgstr ""
@@ -7443,11 +7443,11 @@ msgstr "{0} tarihinden sonra değerlendirme planlayamazsınız."
msgid "You cannot schedule evaluations for past slots."
msgstr "Geçmiş dönemler için değerlendirme planlayamazsınız."
#: lms/lms/utils.py:2259
#: lms/lms/utils.py:2260
msgid "You do not have access to this batch."
msgstr ""
#: lms/lms/utils.py:2242
#: lms/lms/utils.py:2243
msgid "You do not have access to this course."
msgstr ""
@@ -7916,7 +7916,7 @@ msgstr ""
#. Count format of shortcut in the LMS Workspace
#: lms/lms/workspace/lms/lms.json
msgid "{} Active"
msgstr "{} Aktif"
msgstr ""
#. Count format of shortcut in the LMS Workspace
#: lms/lms/workspace/lms/lms.json
+58 -58
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2026-01-16 16:04+0000\n"
"PO-Revision-Date: 2026-01-21 20:16\n"
"POT-Creation-Date: 2026-01-23 16:05+0000\n"
"PO-Revision-Date: 2026-02-05 06:43\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Vietnamese\n"
"MIME-Version: 1.0\n"
@@ -319,7 +319,7 @@ msgid "Administrator"
msgstr ""
#. Name of a role
#: frontend/src/pages/Batches.vue:319 lms/lms/doctype/lms_badge/lms_badge.json
#: frontend/src/pages/Batches.vue:321 lms/lms/doctype/lms_badge/lms_badge.json
msgid "All"
msgstr ""
@@ -486,7 +486,7 @@ msgstr ""
msgid "Apps"
msgstr ""
#: frontend/src/pages/Batches.vue:329
#: frontend/src/pages/Batches.vue:331
msgid "Archived"
msgstr ""
@@ -753,7 +753,7 @@ msgstr ""
#. Label of the batch_name (Link) field in DocType 'LMS Certificate'
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
#. Label of the batch_name (Link) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:32
#: frontend/src/components/Modals/Event.vue:35
#: frontend/src/components/Settings/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125
@@ -878,7 +878,7 @@ msgid "Batch:"
msgstr ""
#. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue:350 frontend/src/pages/Batches.vue:357
#: frontend/src/pages/Batches.vue:352 frontend/src/pages/Batches.vue:359
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121
msgid "Batches"
msgstr ""
@@ -1023,7 +1023,7 @@ msgstr ""
msgid "Certificate of Completion"
msgstr ""
#: frontend/src/components/Modals/Event.vue:347
#: frontend/src/components/Modals/Event.vue:353
msgid "Certificate saved successfully"
msgstr ""
@@ -1043,7 +1043,7 @@ msgstr ""
#. Label of a chart in the LMS Workspace
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:411
#: frontend/src/components/Modals/Event.vue:427
#: frontend/src/components/Sidebar/AppSidebar.vue:550
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100
#: frontend/src/pages/CourseCertification.vue:10
@@ -1771,7 +1771,7 @@ msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:365 frontend/src/pages/Courses.vue:372
#: frontend/src/pages/Courses.vue:364 frontend/src/pages/Courses.vue:371
#: frontend/src/pages/Programs/ProgramForm.vue:49
#: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1878,7 +1878,7 @@ msgstr ""
msgid "Create your first quiz"
msgstr ""
#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:355
#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:354
msgid "Created"
msgstr ""
@@ -1954,7 +1954,7 @@ msgstr ""
#. Label of the date (Date) field in DocType 'LMS Certificate Request'
#. Label of the date (Date) field in DocType 'LMS Live Class'
#. Label of the date (Date) field in DocType 'Scheduled Flow'
#: frontend/src/components/Modals/Event.vue:40
#: frontend/src/components/Modals/Event.vue:46
#: frontend/src/components/Modals/LiveClassModal.vue:29
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -2241,7 +2241,7 @@ msgstr ""
msgid "Edit Email Template"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:13
msgid "Edit Payment Gateway"
msgstr ""
@@ -2424,7 +2424,7 @@ msgstr ""
msgid "Enroll Now"
msgstr ""
#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:358
#: frontend/src/pages/Batches.vue:334 frontend/src/pages/Courses.vue:357
#: frontend/src/pages/Programs/StudentPrograms.vue:96
msgid "Enrolled"
msgstr ""
@@ -2526,7 +2526,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json
#: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json
msgid "Evaluation"
msgstr ""
@@ -2551,7 +2551,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date."
msgstr ""
#: frontend/src/components/Modals/Event.vue:286
#: frontend/src/components/Modals/Event.vue:292
msgid "Evaluation saved successfully"
msgstr ""
@@ -2664,7 +2664,7 @@ msgstr ""
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:144
#: frontend/src/components/Modals/Event.vue:150
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date"
msgstr ""
@@ -2695,7 +2695,7 @@ msgstr ""
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:396
#: frontend/src/components/Modals/Event.vue:412
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail"
@@ -3209,7 +3209,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:388
#: frontend/src/components/Modals/Event.vue:404
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "In Progress"
@@ -3353,7 +3353,7 @@ msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:138
#: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date"
@@ -3456,7 +3456,7 @@ msgstr ""
msgid "Join Call"
msgstr ""
#: frontend/src/components/Modals/Event.vue:78
#: frontend/src/components/Modals/Event.vue:84
msgid "Join Meeting"
msgstr ""
@@ -3896,7 +3896,7 @@ msgstr ""
msgid "LinkedIn ID"
msgstr ""
#: frontend/src/pages/Courses.vue:341
#: frontend/src/pages/Courses.vue:340
msgid "Live"
msgstr ""
@@ -4429,7 +4429,7 @@ msgstr ""
#: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17
#: frontend/src/pages/Courses.vue:344
#: frontend/src/pages/Courses.vue:343
#: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New"
@@ -4461,7 +4461,7 @@ msgstr ""
msgid "New Job Applicant"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:12
msgid "New Payment Gateway"
msgstr ""
@@ -4778,12 +4778,7 @@ msgstr ""
#: frontend/src/components/UserAvatar.vue:11
#: frontend/src/pages/CertifiedParticipants.vue:46
#: frontend/src/pages/Profile.vue:69
msgid "Open to Opportunities"
msgstr ""
#. Option for the 'Open to' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Opportunities"
msgid "Open to Work"
msgstr ""
#. Label of the option (Data) field in DocType 'LMS Option'
@@ -4924,7 +4919,7 @@ msgstr ""
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:392
#: frontend/src/components/Modals/Event.vue:408
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass"
@@ -5054,7 +5049,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:384
#: frontend/src/components/Modals/Event.vue:400
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending"
@@ -5194,7 +5189,7 @@ msgstr ""
msgid "Please login to continue with payment."
msgstr ""
#: lms/lms/utils.py:2081
#: lms/lms/utils.py:2082
msgid "Please login to enroll in the program."
msgstr ""
@@ -5525,7 +5520,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:122
#: frontend/src/components/Modals/Event.vue:128
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105
#: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5693,7 +5688,7 @@ msgstr ""
#. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/Event.vue:98
#: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -5929,14 +5924,14 @@ msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:65
#: frontend/src/components/Modals/EditProfile.vue:121
#: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:157
#: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/Coupons/CouponDetails.vue:78
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:41
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:129
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
@@ -6048,7 +6043,7 @@ msgstr ""
msgid "Select Date"
msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:26
msgid "Select Payment Gateway"
msgstr ""
@@ -6364,7 +6359,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Modals/Event.vue:105
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6475,7 +6470,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:106
#: frontend/src/components/Modals/Event.vue:112
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary"
msgstr ""
@@ -6571,7 +6566,7 @@ msgstr ""
#. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:127
#: frontend/src/components/Modals/Event.vue:133
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template"
msgstr ""
@@ -6620,7 +6615,7 @@ msgstr ""
msgid "Thanks and Regards"
msgstr ""
#: lms/lms/utils.py:2247
#: lms/lms/utils.py:2248
msgid "The batch does not exist."
msgstr ""
@@ -6628,7 +6623,7 @@ msgstr ""
msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session."
msgstr ""
#: lms/lms/utils.py:1747
#: lms/lms/utils.py:1748
msgid "The coupon code '{0}' is invalid."
msgstr ""
@@ -6652,7 +6647,7 @@ msgstr ""
msgid "The last day to schedule your evaluations is "
msgstr ""
#: lms/lms/utils.py:2231
#: lms/lms/utils.py:2232
msgid "The lesson does not exist."
msgstr ""
@@ -6660,7 +6655,7 @@ msgstr ""
msgid "The slot is already booked by another participant."
msgstr ""
#: lms/lms/utils.py:1361 lms/lms/utils.py:1477 lms/lms/utils.py:1944
#: lms/lms/utils.py:1362 lms/lms/utils.py:1478 lms/lms/utils.py:1945
msgid "The specified batch does not exist."
msgstr ""
@@ -6726,15 +6721,15 @@ msgstr ""
msgid "This class has ended"
msgstr ""
#: lms/lms/utils.py:1776
#: lms/lms/utils.py:1777
msgid "This coupon has expired."
msgstr ""
#: lms/lms/utils.py:1779
#: lms/lms/utils.py:1780
msgid "This coupon has reached its maximum usage limit."
msgstr ""
#: lms/lms/utils.py:1788
#: lms/lms/utils.py:1789
msgid "This coupon is not applicable to this {0}."
msgstr ""
@@ -6742,7 +6737,7 @@ msgstr ""
msgid "This course has:"
msgstr ""
#: lms/lms/utils.py:1707
#: lms/lms/utils.py:1708
msgid "This course is free."
msgstr ""
@@ -6799,7 +6794,7 @@ msgid "Thursday"
msgstr ""
#. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48
#: frontend/src/components/Modals/Event.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Quiz.vue:58
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -6934,7 +6929,7 @@ msgstr ""
msgid "To Date"
msgstr ""
#: lms/lms/utils.py:1721
#: lms/lms/utils.py:1722
msgid "To join this batch, please contact the Administrator."
msgstr ""
@@ -7056,7 +7051,7 @@ msgstr ""
msgid "Under Review"
msgstr ""
#: frontend/src/pages/Batches.vue:330 frontend/src/pages/Courses.vue:356
#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:355
msgid "Unpublished"
msgstr ""
@@ -7077,8 +7072,8 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
#. Label of the upcoming (Check) field in DocType 'LMS Course'
#: frontend/src/pages/Batches.vue:328 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:347
#: frontend/src/pages/Batches.vue:330 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:346
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming"
@@ -7220,7 +7215,7 @@ msgid "View Applications"
msgstr ""
#: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67
#: frontend/src/components/Modals/Event.vue:73
msgid "View Certificate"
msgstr ""
@@ -7327,6 +7322,11 @@ msgstr ""
msgid "Withdrawn"
msgstr ""
#. Option for the 'Open to' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Work"
msgstr ""
#. Label of the work_environment (Section Break) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Work Environment"
@@ -7427,7 +7427,7 @@ msgstr ""
msgid "You cannot enroll in an unpublished course."
msgstr ""
#: lms/lms/utils.py:2085
#: lms/lms/utils.py:2086
msgid "You cannot enroll in an unpublished program."
msgstr ""
@@ -7443,11 +7443,11 @@ msgstr ""
msgid "You cannot schedule evaluations for past slots."
msgstr ""
#: lms/lms/utils.py:2259
#: lms/lms/utils.py:2260
msgid "You do not have access to this batch."
msgstr ""
#: lms/lms/utils.py:2242
#: lms/lms/utils.py:2243
msgid "You do not have access to this course."
msgstr ""
+59 -59
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2026-01-16 16:04+0000\n"
"PO-Revision-Date: 2026-01-21 20:16\n"
"POT-Creation-Date: 2026-01-23 16:05+0000\n"
"PO-Revision-Date: 2026-02-05 06:43\n"
"Last-Translator: jannat@frappe.io\n"
"Language-Team: Chinese Simplified\n"
"MIME-Version: 1.0\n"
@@ -190,7 +190,7 @@ msgstr "为视频添加测验"
#: frontend/src/components/Controls/ChildTable.vue:77
#: frontend/src/components/Settings/Coupons/CouponItems.vue:55
msgid "Add Row"
msgstr "添加行"
msgstr "添加行"
#: frontend/src/pages/ProfileEvaluator.vue:96
msgid "Add Slot"
@@ -319,7 +319,7 @@ msgid "Administrator"
msgstr "管理员"
#. Name of a role
#: frontend/src/pages/Batches.vue:319 lms/lms/doctype/lms_badge/lms_badge.json
#: frontend/src/pages/Batches.vue:321 lms/lms/doctype/lms_badge/lms_badge.json
msgid "All"
msgstr "全部"
@@ -486,7 +486,7 @@ msgstr "已批准"
msgid "Apps"
msgstr "应用"
#: frontend/src/pages/Batches.vue:329
#: frontend/src/pages/Batches.vue:331
msgid "Archived"
msgstr "已归档"
@@ -753,7 +753,7 @@ msgstr ""
#. Label of the batch_name (Link) field in DocType 'LMS Certificate'
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
#. Label of the batch_name (Link) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:32
#: frontend/src/components/Modals/Event.vue:35
#: frontend/src/components/Settings/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125
@@ -878,7 +878,7 @@ msgid "Batch:"
msgstr "批次:"
#. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue:350 frontend/src/pages/Batches.vue:357
#: frontend/src/pages/Batches.vue:352 frontend/src/pages/Batches.vue:359
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121
msgid "Batches"
msgstr "批次"
@@ -1023,7 +1023,7 @@ msgstr "证书链接"
msgid "Certificate of Completion"
msgstr "结业证书"
#: frontend/src/components/Modals/Event.vue:347
#: frontend/src/components/Modals/Event.vue:353
msgid "Certificate saved successfully"
msgstr "证书保存成功"
@@ -1043,7 +1043,7 @@ msgstr "证书生成成功"
#. Label of a chart in the LMS Workspace
#. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:411
#: frontend/src/components/Modals/Event.vue:427
#: frontend/src/components/Sidebar/AppSidebar.vue:550
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100
#: frontend/src/pages/CourseCertification.vue:10
@@ -1771,7 +1771,7 @@ msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:365 frontend/src/pages/Courses.vue:372
#: frontend/src/pages/Courses.vue:364 frontend/src/pages/Courses.vue:371
#: frontend/src/pages/Programs/ProgramForm.vue:49
#: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1878,7 +1878,7 @@ msgstr "创建首门课程"
msgid "Create your first quiz"
msgstr "创建首项测验"
#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:355
#: frontend/src/pages/Assignments.vue:178 frontend/src/pages/Courses.vue:354
msgid "Created"
msgstr "已创建"
@@ -1954,7 +1954,7 @@ msgstr "数据导入"
#. Label of the date (Date) field in DocType 'LMS Certificate Request'
#. Label of the date (Date) field in DocType 'LMS Live Class'
#. Label of the date (Date) field in DocType 'Scheduled Flow'
#: frontend/src/components/Modals/Event.vue:40
#: frontend/src/components/Modals/Event.vue:46
#: frontend/src/components/Modals/LiveClassModal.vue:29
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -2241,7 +2241,7 @@ msgstr ""
msgid "Edit Email Template"
msgstr "编辑邮件模板"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:13
msgid "Edit Payment Gateway"
msgstr "编辑支付网关"
@@ -2424,7 +2424,7 @@ msgstr "为成员注册项目"
msgid "Enroll Now"
msgstr "立即报名"
#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:358
#: frontend/src/pages/Batches.vue:334 frontend/src/pages/Courses.vue:357
#: frontend/src/pages/Programs/StudentPrograms.vue:96
msgid "Enrolled"
msgstr "已注册"
@@ -2526,7 +2526,7 @@ msgstr "邮件模板更新错误"
#. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json
#: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json
msgid "Evaluation"
msgstr "评估"
@@ -2551,7 +2551,7 @@ msgstr "评估请求"
msgid "Evaluation end date cannot be less than the batch end date."
msgstr "评估结束日期不得早于批次结束日期"
#: frontend/src/components/Modals/Event.vue:286
#: frontend/src/components/Modals/Event.vue:292
msgid "Evaluation saved successfully"
msgstr "评估保存成功"
@@ -2664,7 +2664,7 @@ msgstr "到期日"
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:144
#: frontend/src/components/Modals/Event.vue:150
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date"
msgstr "到期日"
@@ -2695,7 +2695,7 @@ msgstr "查看更多"
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:396
#: frontend/src/components/Modals/Event.vue:412
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail"
@@ -3209,7 +3209,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:388
#: frontend/src/components/Modals/Event.vue:404
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "In Progress"
@@ -3353,7 +3353,7 @@ msgstr "是否为SCORM包"
#. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:138
#: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date"
@@ -3456,7 +3456,7 @@ msgstr "加入"
msgid "Join Call"
msgstr "加入通话"
#: frontend/src/components/Modals/Event.vue:78
#: frontend/src/components/Modals/Event.vue:84
msgid "Join Meeting"
msgstr "加入会议"
@@ -3896,7 +3896,7 @@ msgstr "领英"
msgid "LinkedIn ID"
msgstr "领英账号"
#: frontend/src/pages/Courses.vue:341
#: frontend/src/pages/Courses.vue:340
msgid "Live"
msgstr "直播"
@@ -4429,7 +4429,7 @@ msgstr "名称"
#: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17
#: frontend/src/pages/Courses.vue:344
#: frontend/src/pages/Courses.vue:343
#: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New"
@@ -4461,7 +4461,7 @@ msgstr "新建职位"
msgid "New Job Applicant"
msgstr "新职位申请人"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:12
msgid "New Payment Gateway"
msgstr "新建支付网关"
@@ -4778,14 +4778,9 @@ msgstr ""
#: frontend/src/components/UserAvatar.vue:11
#: frontend/src/pages/CertifiedParticipants.vue:46
#: frontend/src/pages/Profile.vue:69
msgid "Open to Opportunities"
msgid "Open to Work"
msgstr ""
#. Option for the 'Open to' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Opportunities"
msgstr "商机"
#. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:70
#: lms/lms/doctype/lms_option/lms_option.json
@@ -4924,7 +4919,7 @@ msgstr "部分完成"
#. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:392
#: frontend/src/components/Modals/Event.vue:408
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass"
@@ -5054,7 +5049,7 @@ msgstr "未安装支付应用"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:384
#: frontend/src/components/Modals/Event.vue:400
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending"
@@ -5194,7 +5189,7 @@ msgstr "请登录以访问此页面"
msgid "Please login to continue with payment."
msgstr "请登录以继续支付"
#: lms/lms/utils.py:2081
#: lms/lms/utils.py:2082
msgid "Please login to enroll in the program."
msgstr "请登录以报名项目。"
@@ -5525,7 +5520,7 @@ msgstr "发布至参与者页面"
#. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:122
#: frontend/src/components/Modals/Event.vue:128
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105
#: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5693,7 +5688,7 @@ msgstr "本视频包含的测验"
#. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/Event.vue:98
#: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json
@@ -5929,14 +5924,14 @@ msgstr "星期六"
#: frontend/src/components/Modals/AssignmentForm.vue:65
#: frontend/src/components/Modals/EditProfile.vue:121
#: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:157
#: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/Coupons/CouponDetails.vue:78
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:38
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:41
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:129
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
@@ -6048,7 +6043,7 @@ msgstr "查看全部"
msgid "Select Date"
msgstr "选择日期"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:26
msgid "Select Payment Gateway"
msgstr "选择支付网关"
@@ -6364,7 +6359,7 @@ msgstr "统计"
#. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Modals/Event.vue:105
#: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6475,7 +6470,7 @@ msgstr "项目报名成功"
#. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation'
#: frontend/src/components/Modals/Event.vue:106
#: frontend/src/components/Modals/Event.vue:112
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary"
msgstr "摘要"
@@ -6571,7 +6566,7 @@ msgstr "团队协作"
#. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:127
#: frontend/src/components/Modals/Event.vue:133
#: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template"
msgstr "模板"
@@ -6620,7 +6615,7 @@ msgstr "感谢您提供反馈。"
msgid "Thanks and Regards"
msgstr "此致敬礼"
#: lms/lms/utils.py:2247
#: lms/lms/utils.py:2248
msgid "The batch does not exist."
msgstr ""
@@ -6628,7 +6623,7 @@ msgstr ""
msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session."
msgstr "您报名的批次明日开始,请做好准备准时参加"
#: lms/lms/utils.py:1747
#: lms/lms/utils.py:1748
msgid "The coupon code '{0}' is invalid."
msgstr ""
@@ -6652,7 +6647,7 @@ msgstr ""
msgid "The last day to schedule your evaluations is "
msgstr ""
#: lms/lms/utils.py:2231
#: lms/lms/utils.py:2232
msgid "The lesson does not exist."
msgstr ""
@@ -6660,7 +6655,7 @@ msgstr ""
msgid "The slot is already booked by another participant."
msgstr "该时段已被其他参与者预定"
#: lms/lms/utils.py:1361 lms/lms/utils.py:1477 lms/lms/utils.py:1944
#: lms/lms/utils.py:1362 lms/lms/utils.py:1478 lms/lms/utils.py:1945
msgid "The specified batch does not exist."
msgstr ""
@@ -6726,15 +6721,15 @@ msgstr "本证书永久有效"
msgid "This class has ended"
msgstr "本课程已结束"
#: lms/lms/utils.py:1776
#: lms/lms/utils.py:1777
msgid "This coupon has expired."
msgstr ""
#: lms/lms/utils.py:1779
#: lms/lms/utils.py:1780
msgid "This coupon has reached its maximum usage limit."
msgstr ""
#: lms/lms/utils.py:1788
#: lms/lms/utils.py:1789
msgid "This coupon is not applicable to this {0}."
msgstr ""
@@ -6742,7 +6737,7 @@ msgstr ""
msgid "This course has:"
msgstr "本课程包含:"
#: lms/lms/utils.py:1707
#: lms/lms/utils.py:1708
msgid "This course is free."
msgstr "本课程免费"
@@ -6799,7 +6794,7 @@ msgid "Thursday"
msgstr "星期四"
#. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48
#: frontend/src/components/Modals/Event.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Quiz.vue:58
#: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -6934,7 +6929,7 @@ msgstr "至"
msgid "To Date"
msgstr "截止日期"
#: lms/lms/utils.py:1721
#: lms/lms/utils.py:1722
msgid "To join this batch, please contact the Administrator."
msgstr "加入本批次请联系管理员"
@@ -7056,7 +7051,7 @@ msgstr "不可用开始日期不可晚于结束日期"
msgid "Under Review"
msgstr "审核中"
#: frontend/src/pages/Batches.vue:330 frontend/src/pages/Courses.vue:356
#: frontend/src/pages/Batches.vue:332 frontend/src/pages/Courses.vue:355
msgid "Unpublished"
msgstr "未发布"
@@ -7077,8 +7072,8 @@ msgstr "非结构化角色"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
#. Label of the upcoming (Check) field in DocType 'LMS Course'
#: frontend/src/pages/Batches.vue:328 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:347
#: frontend/src/pages/Batches.vue:330 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:346
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming"
@@ -7220,7 +7215,7 @@ msgid "View Applications"
msgstr ""
#: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67
#: frontend/src/components/Modals/Event.vue:73
msgid "View Certificate"
msgstr "查看证书"
@@ -7327,6 +7322,11 @@ msgstr "获得此认证后,您可向同事及领英展示最新技能。点击
msgid "Withdrawn"
msgstr "已撤回"
#. Option for the 'Open to' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Work"
msgstr ""
#. Label of the work_environment (Section Break) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Work Environment"
@@ -7427,7 +7427,7 @@ msgstr "只读模式下不可修改角色。"
msgid "You cannot enroll in an unpublished course."
msgstr ""
#: lms/lms/utils.py:2085
#: lms/lms/utils.py:2086
msgid "You cannot enroll in an unpublished program."
msgstr ""
@@ -7443,11 +7443,11 @@ msgstr "您不能在{0}之后安排评估"
msgid "You cannot schedule evaluations for past slots."
msgstr "不能为过去的时段安排评估"
#: lms/lms/utils.py:2259
#: lms/lms/utils.py:2260
msgid "You do not have access to this batch."
msgstr ""
#: lms/lms/utils.py:2242
#: lms/lms/utils.py:2243
msgid "You do not have access to this course."
msgstr ""
-27
View File
@@ -1,27 +0,0 @@
"""Utilities for making custom routing."""
from werkzeug.datastructures import ImmutableDict
from werkzeug.routing import BaseConverter, Map
class RegexConverter(BaseConverter):
"""werkzeug converter that supports custom regular expression.
The `install_regex_converter` function must be called before using
regex converter in rules.
"""
def __init__(self, map, regex):
super().__init__(map)
self.regex = regex
def install_regex_converter():
"""Installs the RegexConvetor to the default converters supported by werkzeug.
This allows specifing rules using regex. For example:
/profiles/<regex("[a-z0-9]{5,}"):username>
"""
default_converters = dict(Map.default_converters, regex=RegexConverter)
Map.default_converters = ImmutableDict(default_converters)
-19
View File
@@ -1,19 +0,0 @@
from setuptools import find_packages, setup
with open("requirements.txt") as f:
install_requires = f.read().strip().split("\n")
# get version from __version__ variable in lms/__init__.py
from lms import __version__ as version
setup(
name="lms",
version=version,
description="Learning Management System",
author="Jannat",
author_email="jannat@frappe.io",
packages=find_packages(),
zip_safe=False,
include_package_data=True,
install_requires=install_requires,
)