Merge branch 'frappe:develop' into translations-fix

This commit is contained in:
Raizaaa
2026-02-06 14:37:22 +05:30
committed by GitHub
62 changed files with 4143 additions and 3419 deletions
+2
View File
@@ -0,0 +1,2 @@
ignore:
- "**/test_helper.py"
Submodule frappe-semgrep-rules added at 239029b7eb
@@ -99,18 +99,17 @@
name="item-label" name="item-label"
v-bind="{ active, selected, option }" v-bind="{ active, selected, option }"
> >
<div class="flex flex-col space-y-1 text-ink-gray-8"> <div class="flex flex-col gap-1 p-1">
<div> <div class="text-base font-medium text-ink-gray-8">
{{ option.label }} {{
option.value == option.label
? option.description
: option.label
}}
</div>
<div class="text-sm text-ink-gray-5">
{{ option.value }}
</div> </div>
<div
v-if="
option.description &&
option.description != option.label
"
class="text-xs text-ink-gray-7"
v-html="option.description"
></div>
</div> </div>
</slot> </slot>
</li> </li>
+11
View File
@@ -112,6 +112,14 @@
v-else-if="lesson.icon === 'icon-quiz'" v-else-if="lesson.icon === 'icon-quiz'"
class="h-4 w-4 stroke-1 mr-2" 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 <FileText
v-else-if="lesson.icon === 'icon-list'" v-else-if="lesson.icon === 'icon-list'"
class="h-4 w-4 text-ink-gray-9 stroke-1 mr-2" class="h-4 w-4 text-ink-gray-9 stroke-1 mr-2"
@@ -177,8 +185,11 @@ import {
FilePenLine, FilePenLine,
HelpCircle, HelpCircle,
MonitorPlay, MonitorPlay,
NotebookPen,
Plus, Plus,
SquareCode,
Trash2, Trash2,
Notebook,
} from 'lucide-vue-next' } from 'lucide-vue-next'
import { useRoute, useRouter } from 'vue-router' import { useRoute, useRouter } from 'vue-router'
import ChapterModal from '@/components/Modals/ChapterModal.vue' import ChapterModal from '@/components/Modals/ChapterModal.vue'
+43 -35
View File
@@ -2,7 +2,7 @@
<Dialog <Dialog
v-model="show" v-model="show"
:options="{ :options="{
title: __('Add a Student'), title: __('Enroll a Student'),
size: 'sm', size: 'sm',
actions: [ actions: [
{ {
@@ -19,9 +19,24 @@
doctype="User" doctype="User"
v-model="student" v-model="student"
:filters="{ ignore_user_type: 1 }" :filters="{ ignore_user_type: 1 }"
placeholder=" "
:label="__('Student')"
:onCreate=" :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 show = false
} }
" "
@@ -31,15 +46,16 @@
</Dialog> </Dialog>
</template> </template>
<script setup> <script setup>
import { Dialog, createResource, toast } from 'frappe-ui' import { call, Dialog, toast } from 'frappe-ui'
import { ref, inject } from 'vue' import { ref, inject } from 'vue'
import Link from '@/components/Controls/Link.vue'
import { useOnboarding } from 'frappe-ui/frappe' import { useOnboarding } from 'frappe-ui/frappe'
import { openSettings } from '@/utils' import { openSettings } from '@/utils'
import Link from '@/components/Controls/Link.vue'
const students = defineModel('reloadStudents') const students = defineModel('reloadStudents')
const batchModal = defineModel('batchModal') const batchModal = defineModel('batchModal')
const student = ref() const student = ref(null)
const payment = ref(null)
const user = inject('$user') const user = inject('$user')
const { updateOnboardingStep } = useOnboarding('learning') const { updateOnboardingStep } = useOnboarding('learning')
const show = defineModel() 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) => { const addStudent = (close) => {
studentResource.submit( call('frappe.client.insert', {
{}, doc: {
{ doctype: 'LMS Batch Enrollment',
onSuccess() { batch: props.batch,
if (user.data?.is_system_manager) member: student.value,
updateOnboardingStep('add_batch_student') payment: payment.value,
},
})
.then(() => {
if (user.data?.is_system_manager)
updateOnboardingStep('add_batch_student')
students.value.reload() students.value.reload()
batchModal.value.reload() batchModal.value.reload()
student.value = null student.value = null
close() payment.value = null
}, close()
onError(err) { })
toast.error(err.messages?.[0] || err) .catch((err) => {
}, toast.error(err.messages?.[0] || err)
} console.error(err)
) })
} }
</script> </script>
+1 -1
View File
@@ -5,7 +5,7 @@
</div> </div>
<div class="flex items-center space-x-2"> <div class="flex items-center space-x-2">
<slot name="prefix" /> <slot name="prefix" />
<div class="font-semibold text-2xl"> <div class="font-semibold text-ink-gray-9 text-2xl">
{{ value }} {{ value }}
</div> </div>
<slot name="suffix" /> <slot name="suffix" />
@@ -65,7 +65,7 @@
<div v-else> <div v-else>
<div class="flex items-center text-sm space-x-2"> <div class="flex items-center text-sm space-x-2">
<div <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'" :class="field.size == 'lg' ? 'px-5 py-5' : 'px-20 py-8'"
> >
<img <img
@@ -90,7 +90,7 @@
</div> </div>
<X <X
@click="data[field.name] = null" @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>
</div> </div>
+11 -10
View File
@@ -155,7 +155,7 @@ const title = ref('')
const certification = ref(false) const certification = ref(false)
const filters = ref({}) const filters = ref({})
const is_student = computed(() => user.data?.is_student) 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 orderBy = ref('start_date')
const readOnlyMode = window.read_only_mode const readOnlyMode = window.read_only_mode
const router = useRouter() const router = useRouter()
@@ -245,7 +245,7 @@ const updateTabFilter = () => {
if (!user.data) { if (!user.data) {
return return
} }
if (currentTab.value == 'Enrolled' && is_student.value) { if (currentTab.value == 'enrolled' && is_student.value) {
filters.value['enrolled'] = 1 filters.value['enrolled'] = 1
delete filters.value['start_date'] delete filters.value['start_date']
delete filters.value['published'] delete filters.value['published']
@@ -256,20 +256,20 @@ const updateTabFilter = () => {
delete filters.value['start_date'] delete filters.value['start_date']
delete filters.value['published'] delete filters.value['published']
orderBy.value = 'start_date desc' orderBy.value = 'start_date desc'
if (currentTab.value == 'Upcoming') { if (currentTab.value == 'upcoming') {
filters.value['start_date'] = ['>=', dayjs().format('YYYY-MM-DD')] filters.value['start_date'] = ['>=', dayjs().format('YYYY-MM-DD')]
filters.value['published'] = 1 filters.value['published'] = 1
orderBy.value = 'start_date' orderBy.value = 'start_date'
} else if (currentTab.value == 'Archived') { } else if (currentTab.value == 'archived') {
filters.value['start_date'] = ['<=', dayjs().format('YYYY-MM-DD')] filters.value['start_date'] = ['<=', dayjs().format('YYYY-MM-DD')]
} else if (currentTab.value == 'Unpublished') { } else if (currentTab.value == 'unpublished') {
filters.value['published'] = 0 filters.value['published'] = 0
} }
} }
} }
const updateStudentFilter = () => { 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['start_date'] = ['>=', dayjs().format('YYYY-MM-DD')]
filters.value['published'] = 1 filters.value['published'] = 1
} }
@@ -319,6 +319,7 @@ const batchTabs = computed(() => {
let tabs = [ let tabs = [
{ {
label: __('All'), label: __('All'),
value: 'all',
}, },
] ]
@@ -327,11 +328,11 @@ const batchTabs = computed(() => {
user.data?.is_instructor || user.data?.is_instructor ||
user.data?.is_evaluator user.data?.is_evaluator
) { ) {
tabs.push({ label: __('Upcoming') }) tabs.push({ label: __('Upcoming'), value: 'upcoming' })
tabs.push({ label: __('Archived') }) tabs.push({ label: __('Archived'), value: 'archived' })
tabs.push({ label: __('Unpublished') }) tabs.push({ label: __('Unpublished'), value: 'unpublished' })
} else if (user.data) { } else if (user.data) {
tabs.push({ label: __('Enrolled') }) tabs.push({ label: __('Enrolled'), value: 'enrolled' })
} }
return tabs return tabs
}) })
+67 -49
View File
@@ -22,7 +22,7 @@
<div class="grid grid-cols-[2fr_1fr] gap-5 items-start"> <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 v-if="course.data?.enrollments" class="border rounded-lg py-3 px-4">
<div class="flex items-center justify-between mb-3"> <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') }} {{ __('Students') }}
</div> </div>
<div class="flex items-center space-x-2"> <div class="flex items-center space-x-2">
@@ -63,50 +63,52 @@
</ListHeaderItem> </ListHeaderItem>
</ListHeader> </ListHeader>
<ListRows v-for="row in progressList.data" class="max-h-[500px]"> <ListRows v-for="row in progressList.data" class="max-h-[500px]">
<router-link <ListRow
:to="{ :row="row"
name: 'Profile', @click="
params: { username: row.member_username }, () => {
}" showProgressModal = true
currentStudent = row
}
"
class="cursor-pointer"
> >
<ListRow :row="row"> <template #default="{ column, item }">
<template #default="{ column, item }"> <ListRowItem
<ListRowItem :item="row[column.key]"
:item="row[column.key]" :align="column.align"
:align="column.align" class="w-full"
class="w-full" >
> <template #prefix>
<template #prefix> <div v-if="column.key == 'member_name'">
<div v-if="column.key == 'member_name'"> <Avatar
<Avatar class="flex items-center"
class="flex items-center" :image="row['member_image']"
:image="row['member_image']" :label="item"
:label="item" size="sm"
size="sm"
/>
</div>
<ProgressBar
v-else-if="column.key == 'progress'"
: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>
<div <ProgressBar
v-else-if="column.key == 'progress'" v-else-if="column.key == 'progress'"
class="text-xs !mx-0 w-5" :progress="Math.ceil(row[column.key])"
> class="!mx-0 !mr-4"
{{ Math.ceil(row[column.key]) }}% />
</div> </template>
<div v-else> <div v-if="column.key == 'creation'">
{{ row[column.key].toString() }} {{ dayjs(row[column.key]).format('DD MMM YYYY') }}
</div> </div>
</ListRowItem> <div
</template> v-else-if="column.key == 'progress'"
</ListRow> class="text-xs !mx-0 w-5"
</router-link> >
{{ Math.ceil(row[column.key]) }}%
</div>
<div v-else>
{{ row[column.key].toString() }}
</div>
</ListRowItem>
</template>
</ListRow>
</ListRows> </ListRows>
</ListView> </ListView>
<div <div
@@ -130,7 +132,7 @@
<div class="grid grid-cols-[2fr_1fr] items-center justify-between"> <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 flex-col space-y-4 flex-1 text-sm">
<div <div
class="flex items-center" class="flex items-center text-ink-gray-7"
v-for="row in chartDetails.data?.progress_distribution" v-for="row in chartDetails.data?.progress_distribution"
> >
<div <div
@@ -142,6 +144,8 @@
? 'red' ? 'red'
: row.name.startsWith('In') : row.name.startsWith('In')
? 'amber' ? 'amber'
: row.name.startsWith('Adv')
? 'blue'
: 'green' : 'green'
][400], ][400],
}" }"
@@ -151,11 +155,13 @@
{{ row.name.split('(')[0] }} {{ row.name.split('(')[0] }}
</div> </div>
</Tooltip> </Tooltip>
<div class="ml-auto"> <Tooltip :text="row.value">
{{ <div class="ml-auto">
Math.round((row.value / course.data?.enrollments) * 100) {{
}}% Math.round((row.value / course.data?.enrollments) * 100)
</div> }}%
</div>
</Tooltip>
</div> </div>
</div> </div>
<ECharts <ECharts
@@ -205,7 +211,7 @@
class="!w-32" class="!w-32"
/> />
</div> </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 <div
v-for="progress in lessonProgress.data" v-for="progress in lessonProgress.data"
class="flex justify-between text-sm py-2 my-1" class="flex justify-between text-sm py-2 my-1"
@@ -239,6 +245,13 @@
v-model="showEnrollmentModal" v-model="showEnrollmentModal"
:course="course" :course="course"
/> />
<StudentCourseProgress
v-if="showProgressModal"
v-model="showProgressModal"
:course="course"
:student="currentStudent"
:lessons="lessonProgress"
/>
</template> </template>
<script setup lang="ts"> <script setup lang="ts">
import { import {
@@ -260,12 +273,13 @@ import {
Tooltip, Tooltip,
} from 'frappe-ui' } from 'frappe-ui'
import { computed, ref, watch } from 'vue' 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 { formatAmount } from '@/utils'
import colors from '@/utils/frappe-ui-colors.json' import colors from '@/utils/frappe-ui-colors.json'
import CourseEnrollmentModal from '@/pages/Courses/CourseEnrollmentModal.vue' import CourseEnrollmentModal from '@/pages/Courses/CourseEnrollmentModal.vue'
import NumberChartGraph from '@/components/NumberChartGraph.vue' import NumberChartGraph from '@/components/NumberChartGraph.vue'
import ProgressBar from '@/components/ProgressBar.vue' import ProgressBar from '@/components/ProgressBar.vue'
import StudentCourseProgress from '@/pages/Courses/StudentCourseProgress.vue'
const props = defineProps<{ const props = defineProps<{
course: any course: any
@@ -273,6 +287,8 @@ const props = defineProps<{
const showEnrollmentModal = ref(false) const showEnrollmentModal = ref(false)
const searchFilter = ref<string | null>(null) const searchFilter = ref<string | null>(null)
const showProgressModal = ref(false)
const currentStudent = ref<any>(null)
const theme = ref<'darkMode' | 'lightMode'>( const theme = ref<'darkMode' | 'lightMode'>(
localStorage.getItem('theme') == 'dark' ? 'darkMode' : 'lightMode' localStorage.getItem('theme') == 'dark' ? 'darkMode' : 'lightMode'
) )
@@ -307,6 +323,7 @@ const progressList = createListResource({
], ],
pageLength: 100, pageLength: 100,
auto: true, auto: true,
cache: ['courseProgress', props.course.data?.name],
}) })
const lessonProgress = createResource({ const lessonProgress = createResource({
@@ -357,6 +374,7 @@ const progressColors = computed(() => {
let colorList = [] let colorList = []
colorList.push(colors[theme.value]['red'][400]) colorList.push(colors[theme.value]['red'][400])
colorList.push(colors[theme.value]['amber'][400]) colorList.push(colors[theme.value]['amber'][400])
colorList.push(colors[theme.value]['blue'][400])
colorList.push(colors[theme.value]['green'][400]) colorList.push(colors[theme.value]['green'][400])
return colorList return colorList
}) })
@@ -19,8 +19,7 @@
placeholder=" " placeholder=" "
v-model="student" v-model="student"
:required="true" :required="true"
:allowCreate="true" :onCreate="
@create="
() => { () => {
openSettings('Members') openSettings('Members')
show = false show = false
@@ -33,8 +32,7 @@
:label="__('Payment')" :label="__('Payment')"
placeholder=" " placeholder=" "
v-model="payment" v-model="payment"
:allowCreate="true" :onCreate="
@create="
() => { () => {
openSettings('Transactions') openSettings('Transactions')
show = false show = false
@@ -54,9 +52,9 @@
</template> </template>
<script setup lang="ts"> <script setup lang="ts">
import { Button, call, Dialog, FormControl, toast } from 'frappe-ui' import { Button, call, Dialog, FormControl, toast } from 'frappe-ui'
import { Link } from 'frappe-ui/frappe'
import { ref } from 'vue' import { ref } from 'vue'
import { openSettings } from '@/utils' import { openSettings } from '@/utils'
import Link from '@/components/Controls/Link.vue'
const show = defineModel<boolean>({ required: true, default: false }) const show = defineModel<boolean>({ required: true, default: false })
const student = ref<string | null>(null) const student = ref<string | null>(null)
+14 -11
View File
@@ -147,7 +147,7 @@ const currentCategory = ref(null)
const title = ref('') const title = ref('')
const certification = ref(false) const certification = ref(false)
const filters = ref({}) const filters = ref({})
const currentTab = ref('Live') const currentTab = ref('live')
const { brand } = sessionStore() const { brand } = sessionStore()
const courseCount = ref(0) const courseCount = ref(0)
const router = useRouter() const router = useRouter()
@@ -267,35 +267,35 @@ const updateTabFilter = () => {
delete filters.value['published_on'] delete filters.value['published_on']
delete filters.value['upcoming'] delete filters.value['upcoming']
if (currentTab.value == 'Enrolled' && user.data?.is_student) { if (currentTab.value == 'enrolled' && user.data?.is_student) {
filters.value['enrolled'] = 1 filters.value['enrolled'] = 1
delete filters.value['published'] delete filters.value['published']
} else { } else {
delete filters.value['published'] delete filters.value['published']
delete filters.value['enrolled'] delete filters.value['enrolled']
if (currentTab.value == 'Live') { if (currentTab.value == 'live') {
filters.value['published'] = 1 filters.value['published'] = 1
filters.value['upcoming'] = 0 filters.value['upcoming'] = 0
filters.value['live'] = 1 filters.value['live'] = 1
} else if (currentTab.value == 'Upcoming') { } else if (currentTab.value == 'upcoming') {
filters.value['upcoming'] = 1 filters.value['upcoming'] = 1
} else if (currentTab.value == 'New') { } else if (currentTab.value == 'new') {
filters.value['published'] = 1 filters.value['published'] = 1
filters.value['published_on'] = [ filters.value['published_on'] = [
'>=', '>=',
dayjs().add(-3, 'month').format('YYYY-MM-DD'), dayjs().add(-3, 'month').format('YYYY-MM-DD'),
] ]
} else if (currentTab.value == 'Created') { } else if (currentTab.value == 'created') {
filters.value['created'] = 1 filters.value['created'] = 1
} else if (currentTab.value == 'Unpublished') { } else if (currentTab.value == 'unpublished') {
filters.value['published'] = 0 filters.value['published'] = 0
} }
} }
} }
const updateStudentFilter = () => { 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 filters.value['published'] = 1
} }
} }
@@ -345,12 +345,15 @@ const courseTabs = computed(() => {
let tabs = [ let tabs = [
{ {
label: __('Live'), label: __('Live'),
value: 'live',
}, },
{ {
label: __('New'), label: __('New'),
value: 'new',
}, },
{ {
label: __('Upcoming'), label: __('Upcoming'),
value: 'upcoming',
}, },
] ]
if ( if (
@@ -358,10 +361,10 @@ const courseTabs = computed(() => {
user.data?.is_instructor || user.data?.is_instructor ||
user.data?.is_evaluator user.data?.is_evaluator
) { ) {
tabs.push({ label: __('Created') }) tabs.push({ label: __('Created'), value: 'created' })
tabs.push({ label: __('Unpublished') }) tabs.push({ label: __('Unpublished'), value: 'unpublished' })
} else if (user.data) { } else if (user.data) {
tabs.push({ label: __('Enrolled') }) tabs.push({ label: __('Enrolled'), value: 'enrolled' })
} }
return tabs 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> </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"> <div class="flex items-center justify-between mb-3">
<span class="font-semibold text-lg text-ink-gray-9"> <span class="font-semibold text-lg text-ink-gray-9">
{{ {{
+2 -1
View File
@@ -513,7 +513,8 @@ const getSidebarItems = () => {
: settings.data?.contact_us_email, : settings.data?.contact_us_email,
condition: () => { condition: () => {
return ( return (
settings?.data?.contact_us_email || (settings?.data?.contact_us_email &&
userResource?.data) ||
settings?.data?.contact_us_url settings?.data?.contact_us_url
) )
}, },
+1 -1
View File
@@ -3,7 +3,7 @@ import frappe
from . import __version__ as app_version from . import __version__ as app_version
app_name = "frappe_lms" app_name = "frappe_lms"
app_title = "Frappe LMS" app_title = "Learning"
app_publisher = "Frappe" app_publisher = "Frappe"
app_description = "Frappe LMS App" app_description = "Frappe LMS App"
app_icon_url = "/assets/lms/images/lms-logo.png" 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]), "value": len([p for p in progressList if 30 <= p < 60]),
}, },
{ {
"name": "Advanced (60-100%)", "name": "Advanced (60-99%)",
"value": len([p for p in progressList if 60 <= p <= 100]), "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() @frappe.whitelist()
def get_lesson_completion_stats(course): def get_lesson_completion_stats(course: str):
roles = frappe.get_roles() roles = frappe.get_roles()
if "Course Creator" not in roles and "Moderator" not in roles: if "Course Creator" not in roles and "Moderator" not in roles:
frappe.throw(_("You do not have permission to access lesson completion stats.")) 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") Lesson = frappe.qb.DocType("Course Lesson")
rows = ( rows = (
frappe.qb.from_(CourseProgress) frappe.qb.from_(LessonReference)
.join(LessonReference)
.on(CourseProgress.lesson == LessonReference.lesson)
.join(ChapterReference) .join(ChapterReference)
.on(LessonReference.parent == ChapterReference.chapter) .on(LessonReference.parent == ChapterReference.chapter)
.join(Lesson) .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( .select(
LessonReference.idx, LessonReference.idx,
ChapterReference.idx.as_("chapter_idx"), ChapterReference.idx.as_("chapter_idx"),
@@ -2063,10 +2071,132 @@ def get_lesson_completion_stats(course):
Lesson.name.as_("lesson_name"), Lesson.name.as_("lesson_name"),
fn.Count(CourseProgress.name).as_("completion_count"), fn.Count(CourseProgress.name).as_("completion_count"),
) )
.where((CourseProgress.course == course) & (CourseProgress.status == "Complete")) .where(ChapterReference.parent == course)
.groupby(CourseProgress.lesson) .groupby(LessonReference.lesson)
.orderby(ChapterReference.idx, LessonReference.idx) .orderby(ChapterReference.idx, LessonReference.idx)
.run(as_dict=True) .run(as_dict=True)
) )
return rows 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 # Copyright (c) 2021, FOSS United and Contributors
# See license.txt # See license.txt
# import frappe import frappe
import unittest
from lms.lms.api import delete_chapter
from lms.lms.test_helpers import BaseTestUtils
class TestCourseChapter(unittest.TestCase): class TestCourseChapter(BaseTestUtils):
pass 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": [], "actions": [],
"allow_import": 1,
"allow_rename": 1, "allow_rename": 1,
"autoname": "format: ASG-{#####}", "autoname": "format: ASG-{#####}",
"creation": "2023-05-26 19:41:26.025081", "creation": "2023-05-26 19:41:26.025081",
@@ -79,8 +80,13 @@
], ],
"grid_page_length": 50, "grid_page_length": 50,
"index_web_pages_for_search": 1, "index_web_pages_for_search": 1,
"links": [], "links": [
"modified": "2025-12-19 16:30:58.531722", {
"link_doctype": "LMS Assignment Submission",
"link_fieldname": "assignment"
}
],
"modified": "2026-02-05 11:37:36.492016",
"modified_by": "sayali@frappe.io", "modified_by": "sayali@frappe.io",
"module": "LMS", "module": "LMS",
"name": "LMS Assignment", "name": "LMS Assignment",
@@ -104,6 +110,7 @@
"delete": 1, "delete": 1,
"email": 1, "email": 1,
"export": 1, "export": 1,
"import": 1,
"print": 1, "print": 1,
"read": 1, "read": 1,
"report": 1, "report": 1,
@@ -124,6 +131,7 @@
"create": 1, "create": 1,
"email": 1, "email": 1,
"export": 1, "export": 1,
"import": 1,
"print": 1, "print": 1,
"read": 1, "read": 1,
"report": 1, "report": 1,
@@ -135,6 +143,7 @@
"create": 1, "create": 1,
"email": 1, "email": 1,
"export": 1, "export": 1,
"import": 1,
"print": 1, "print": 1,
"read": 1, "read": 1,
"report": 1, "report": 1,
@@ -42,7 +42,8 @@
"fieldname": "assignment", "fieldname": "assignment",
"fieldtype": "Link", "fieldtype": "Link",
"label": "Assignment", "label": "Assignment",
"options": "LMS Assignment" "options": "LMS Assignment",
"reqd": 1
}, },
{ {
"fieldname": "member", "fieldname": "member",
@@ -150,7 +151,7 @@
"index_web_pages_for_search": 1, "index_web_pages_for_search": 1,
"links": [], "links": [],
"make_attachments_public": 1, "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", "modified_by": "sayali@frappe.io",
"module": "LMS", "module": "LMS",
"name": "LMS Assignment Submission", "name": "LMS Assignment Submission",
+17 -3
View File
@@ -1,5 +1,6 @@
{ {
"actions": [], "actions": [],
"allow_import": 1,
"allow_rename": 1, "allow_rename": 1,
"autoname": "field:title", "autoname": "field:title",
"creation": "2024-04-30 11:29:53.548647", "creation": "2024-04-30 11:29:53.548647",
@@ -99,8 +100,8 @@
"link_fieldname": "badge" "link_fieldname": "badge"
} }
], ],
"modified": "2025-07-04 13:02:19.048994", "modified": "2026-02-03 10:52:37.122370",
"modified_by": "Administrator", "modified_by": "sayali@frappe.io",
"module": "LMS", "module": "LMS",
"name": "LMS Badge", "name": "LMS Badge",
"naming_rule": "By fieldname", "naming_rule": "By fieldname",
@@ -118,13 +119,26 @@
"share": 1, "share": 1,
"write": 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, "email": 1,
"export": 1, "export": 1,
"print": 1, "print": 1,
"read": 1, "read": 1,
"report": 1, "report": 1,
"role": "All", "role": "LMS Student",
"share": 1 "share": 1
} }
], ],
@@ -1,5 +1,6 @@
{ {
"actions": [], "actions": [],
"allow_import": 1,
"allow_rename": 1, "allow_rename": 1,
"creation": "2025-02-10 11:17:12.462368", "creation": "2025-02-10 11:17:12.462368",
"doctype": "DocType", "doctype": "DocType",
@@ -73,7 +74,7 @@
], ],
"index_web_pages_for_search": 1, "index_web_pages_for_search": 1,
"links": [], "links": [],
"modified": "2026-01-14 08:53:16.672825", "modified": "2026-02-03 10:51:28.475356",
"modified_by": "sayali@frappe.io", "modified_by": "sayali@frappe.io",
"module": "LMS", "module": "LMS",
"name": "LMS Batch Enrollment", "name": "LMS Batch Enrollment",
@@ -96,6 +97,7 @@
"delete": 1, "delete": 1,
"email": 1, "email": 1,
"export": 1, "export": 1,
"import": 1,
"print": 1, "print": 1,
"read": 1, "read": 1,
"report": 1, "report": 1,
@@ -114,6 +116,7 @@
"delete": 1, "delete": 1,
"email": 1, "email": 1,
"export": 1, "export": 1,
"import": 1,
"print": 1, "print": 1,
"read": 1, "read": 1,
"report": 1, "report": 1,
+5 -1
View File
@@ -1,5 +1,6 @@
{ {
"actions": [], "actions": [],
"allow_import": 1,
"allow_rename": 1, "allow_rename": 1,
"autoname": "hash", "autoname": "hash",
"creation": "2025-10-11 21:39:11.456420", "creation": "2025-10-11 21:39:11.456420",
@@ -113,7 +114,7 @@
"grid_page_length": 50, "grid_page_length": 50,
"index_web_pages_for_search": 1, "index_web_pages_for_search": 1,
"links": [], "links": [],
"modified": "2025-10-27 19:52:11.835042", "modified": "2026-02-03 10:50:23.387175",
"modified_by": "sayali@frappe.io", "modified_by": "sayali@frappe.io",
"module": "LMS", "module": "LMS",
"name": "LMS Coupon", "name": "LMS Coupon",
@@ -149,6 +150,7 @@
"delete": 1, "delete": 1,
"email": 1, "email": 1,
"export": 1, "export": 1,
"import": 1,
"print": 1, "print": 1,
"read": 1, "read": 1,
"report": 1, "report": 1,
@@ -161,6 +163,7 @@
"delete": 1, "delete": 1,
"email": 1, "email": 1,
"export": 1, "export": 1,
"import": 1,
"print": 1, "print": 1,
"read": 1, "read": 1,
"report": 1, "report": 1,
@@ -173,6 +176,7 @@
"delete": 1, "delete": 1,
"email": 1, "email": 1,
"export": 1, "export": 1,
"import": 1,
"print": 1, "print": 1,
"read": 1, "read": 1,
"report": 1, "report": 1,
@@ -1,5 +1,6 @@
{ {
"actions": [], "actions": [],
"allow_import": 1,
"allow_rename": 1, "allow_rename": 1,
"creation": "2023-03-02 10:59:01.741349", "creation": "2023-03-02 10:59:01.741349",
"default_view": "List", "default_view": "List",
@@ -177,7 +178,7 @@
"link_fieldname": "live_class" "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", "modified_by": "sayali@frappe.io",
"module": "LMS", "module": "LMS",
"name": "LMS Live Class", "name": "LMS Live Class",
@@ -200,6 +201,7 @@
"delete": 1, "delete": 1,
"email": 1, "email": 1,
"export": 1, "export": 1,
"import": 1,
"print": 1, "print": 1,
"read": 1, "read": 1,
"report": 1, "report": 1,
@@ -221,6 +223,7 @@
"delete": 1, "delete": 1,
"email": 1, "email": 1,
"export": 1, "export": 1,
"import": 1,
"print": 1, "print": 1,
"read": 1, "read": 1,
"report": 1, "report": 1,
+15 -1
View File
@@ -1,5 +1,6 @@
{ {
"actions": [], "actions": [],
"allow_import": 1,
"allow_rename": 1, "allow_rename": 1,
"creation": "2023-08-24 17:46:52.065763", "creation": "2023-08-24 17:46:52.065763",
"default_view": "List", "default_view": "List",
@@ -201,7 +202,7 @@
"link_fieldname": "payment" "link_fieldname": "payment"
} }
], ],
"modified": "2025-12-19 17:55:25.968384", "modified": "2026-02-03 10:54:12.361407",
"modified_by": "sayali@frappe.io", "modified_by": "sayali@frappe.io",
"module": "LMS", "module": "LMS",
"name": "LMS Payment", "name": "LMS Payment",
@@ -218,6 +219,19 @@
"role": "System Manager", "role": "System Manager",
"share": 1, "share": 1,
"write": 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", "row_format": "Dynamic",
+4 -1
View File
@@ -1,5 +1,6 @@
{ {
"actions": [], "actions": [],
"allow_import": 1,
"allow_rename": 1, "allow_rename": 1,
"autoname": "field:title", "autoname": "field:title",
"creation": "2024-11-18 12:27:13.283169", "creation": "2024-11-18 12:27:13.283169",
@@ -92,7 +93,7 @@
"grid_page_length": 50, "grid_page_length": 50,
"index_web_pages_for_search": 1, "index_web_pages_for_search": 1,
"links": [], "links": [],
"modified": "2025-12-04 12:56:14.249363", "modified": "2026-02-03 10:51:50.616781",
"modified_by": "sayali@frappe.io", "modified_by": "sayali@frappe.io",
"module": "LMS", "module": "LMS",
"name": "LMS Program", "name": "LMS Program",
@@ -116,6 +117,7 @@
"delete": 1, "delete": 1,
"email": 1, "email": 1,
"export": 1, "export": 1,
"import": 1,
"print": 1, "print": 1,
"read": 1, "read": 1,
"report": 1, "report": 1,
@@ -128,6 +130,7 @@
"delete": 1, "delete": 1,
"email": 1, "email": 1,
"export": 1, "export": 1,
"import": 1,
"print": 1, "print": 1,
"read": 1, "read": 1,
"report": 1, "report": 1,
@@ -1,5 +1,6 @@
{ {
"actions": [], "actions": [],
"allow_import": 1,
"allow_rename": 1, "allow_rename": 1,
"creation": "2025-06-18 15:02:36.198855", "creation": "2025-06-18 15:02:36.198855",
"doctype": "DocType", "doctype": "DocType",
@@ -33,7 +34,7 @@
"fieldname": "language", "fieldname": "language",
"fieldtype": "Select", "fieldtype": "Select",
"label": "Language", "label": "Language",
"options": "Python\nJavaScript", "options": "Python\nJavaScript\nRust\nGo",
"reqd": 1 "reqd": 1
}, },
{ {
@@ -63,7 +64,7 @@
"link_fieldname": "exercise" "link_fieldname": "exercise"
} }
], ],
"modified": "2025-06-24 14:42:27.463492", "modified": "2026-02-03 10:45:23.687185",
"modified_by": "sayali@frappe.io", "modified_by": "sayali@frappe.io",
"module": "LMS", "module": "LMS",
"name": "LMS Programming Exercise", "name": "LMS Programming Exercise",
@@ -74,6 +75,7 @@
"delete": 1, "delete": 1,
"email": 1, "email": 1,
"export": 1, "export": 1,
"import": 1,
"print": 1, "print": 1,
"read": 1, "read": 1,
"report": 1, "report": 1,
@@ -86,6 +88,7 @@
"delete": 1, "delete": 1,
"email": 1, "email": 1,
"export": 1, "export": 1,
"import": 1,
"print": 1, "print": 1,
"read": 1, "read": 1,
"report": 1, "report": 1,
@@ -98,6 +101,7 @@
"delete": 1, "delete": 1,
"email": 1, "email": 1,
"export": 1, "export": 1,
"import": 1,
"print": 1, "print": 1,
"read": 1, "read": 1,
"report": 1, "report": 1,
@@ -110,6 +114,7 @@
"delete": 1, "delete": 1,
"email": 1, "email": 1,
"export": 1, "export": 1,
"import": 1,
"print": 1, "print": 1,
"read": 1, "read": 1,
"report": 1, "report": 1,
+3 -1
View File
@@ -1,5 +1,6 @@
{ {
"actions": [], "actions": [],
"allow_import": 1,
"allow_rename": 1, "allow_rename": 1,
"autoname": "field:source", "autoname": "field:source",
"creation": "2023-10-26 16:28:53.932278", "creation": "2023-10-26 16:28:53.932278",
@@ -21,7 +22,7 @@
"grid_page_length": 50, "grid_page_length": 50,
"index_web_pages_for_search": 1, "index_web_pages_for_search": 1,
"links": [], "links": [],
"modified": "2025-11-10 11:39:57.251861", "modified": "2026-02-03 10:53:42.654881",
"modified_by": "sayali@frappe.io", "modified_by": "sayali@frappe.io",
"module": "LMS", "module": "LMS",
"name": "LMS Source", "name": "LMS Source",
@@ -45,6 +46,7 @@
"delete": 1, "delete": 1,
"email": 1, "email": 1,
"export": 1, "export": 1,
"import": 1,
"print": 1, "print": 1,
"read": 1, "read": 1,
"report": 1, "report": 1,
@@ -1,5 +1,6 @@
{ {
"actions": [], "actions": [],
"allow_import": 1,
"allow_rename": 1, "allow_rename": 1,
"autoname": "field:account_name", "autoname": "field:account_name",
"creation": "2025-05-26 13:04:18.285735", "creation": "2025-05-26 13:04:18.285735",
@@ -83,7 +84,7 @@
"grid_page_length": 50, "grid_page_length": 50,
"index_web_pages_for_search": 1, "index_web_pages_for_search": 1,
"links": [], "links": [],
"modified": "2025-11-10 11:39:13.146961", "modified": "2026-02-03 10:50:59.906919",
"modified_by": "sayali@frappe.io", "modified_by": "sayali@frappe.io",
"module": "LMS", "module": "LMS",
"name": "LMS Zoom Settings", "name": "LMS Zoom Settings",
@@ -107,6 +108,7 @@
"delete": 1, "delete": 1,
"email": 1, "email": 1,
"export": 1, "export": 1,
"import": 1,
"print": 1, "print": 1,
"read": 1, "read": 1,
"report": 1, "report": 1,
@@ -120,6 +122,7 @@
"email": 1, "email": 1,
"export": 1, "export": 1,
"if_owner": 1, "if_owner": 1,
"import": 1,
"print": 1, "print": 1,
"read": 1, "read": 1,
"report": 1, "report": 1,
+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): if frappe.db.exists(item_type, item_name):
try: try:
frappe.delete_doc(item_type, item_name, force=True) frappe.delete_doc(item_type, item_name, force=True)
except Exception: except Exception as e:
pass print(f"Error deleting {item_type} {item_name}: {e}")
def _create_user(self, email, first_name, last_name, roles, user_type="Website User"): def _create_user(self, email, first_name, last_name, roles, user_type="Website User"):
if frappe.db.exists("User", email): if frappe.db.exists("User", email):
@@ -82,18 +82,21 @@ class BaseTestUtils(UnitTestCase):
self.cleanup_items.append(("Course Chapter", chapter.name)) self.cleanup_items.append(("Course Chapter", chapter.name))
return chapter 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}) existing = frappe.db.exists("Course Lesson", {"course": course, "title": title})
if existing: if existing:
return frappe.get_doc("Course Lesson", 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 = frappe.new_doc("Course Lesson")
lesson.update( lesson.update(
{ {
"course": course, "course": course,
"chapter": chapter, "chapter": chapter,
"title": title, "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() lesson.save()
@@ -248,3 +251,289 @@ class BaseTestUtils(UnitTestCase):
certificate.save() certificate.save()
self.cleanup_items.append(("LMS Certificate", certificate.name)) self.cleanup_items.append(("LMS Certificate", certificate.name))
return certificate 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 # See license.txt
import frappe 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.doctype.lms_certificate.lms_certificate import is_certified
from lms.lms.test_helpers import BaseTestUtils from lms.lms.test_helpers import BaseTestUtils
from lms.lms.utils import ( from lms.lms.utils import (
@@ -33,48 +32,8 @@ class TestLMSUtils(BaseTestUtils):
def setUp(self): def setUp(self):
super().setUp() super().setUp()
self.student1 = self._create_user("student1@example.com", "Ashley", "Smith", ["LMS Student"]) self._setup_course_flow()
self.student2 = self._create_user("student2@example.com", "John", "Doe", ["LMS Student"]) self._setup_batch_flow()
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()
def test_simple_slugs(self): def test_simple_slugs(self):
self.assertEqual(slugify("hello-world"), "hello-world") self.assertEqual(slugify("hello-world"), "hello-world")
@@ -156,36 +115,6 @@ class TestLMSUtils(BaseTestUtils):
self.assertIsNone(is_certified(self.course.name)) self.assertIsNone(is_certified(self.course.name))
frappe.session.user = "Administrator" 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): def test_rating_validation(self):
student3 = self._create_user("student3@example.com", "Emily", "Cooper", ["LMS Student"]) student3 = self._create_user("student3@example.com", "Emily", "Cooper", ["LMS Student"])
with self.assertRaises(frappe.exceptions.ValidationError): with self.assertRaises(frappe.exceptions.ValidationError):
+5
View File
@@ -205,6 +205,10 @@ def get_lesson_icon(body, content):
if block.get("type") == "quiz": if block.get("type") == "quiz":
return "icon-quiz" return "icon-quiz"
if block.get("type") == "assignment":
return "icon-assignment"
if block.get("type") == "program":
return "icon-code"
return "icon-list" return "icon-list"
@@ -1242,6 +1246,7 @@ def get_assessments(batch):
"LMS Assessment", "LMS Assessment",
{"parent": batch}, {"parent": batch},
["name", "assessment_type", "assessment_name"], ["name", "assessment_type", "assessment_name"],
order_by="idx",
) )
for assessment in assessments: for assessment in assessments:
+83 -83
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2026-01-16 16:04+0000\n" "POT-Creation-Date: 2026-01-23 16:05+0000\n"
"PO-Revision-Date: 2026-01-21 20:16\n" "PO-Revision-Date: 2026-02-05 06:43\n"
"Last-Translator: jannat@frappe.io\n" "Last-Translator: jannat@frappe.io\n"
"Language-Team: Arabic\n" "Language-Team: Arabic\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -319,7 +319,7 @@ msgid "Administrator"
msgstr "مدير" msgstr "مدير"
#. Name of a role #. 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" msgid "All"
msgstr "الكل" msgstr "الكل"
@@ -486,7 +486,7 @@ msgstr ""
msgid "Apps" msgid "Apps"
msgstr "التطبيقات" msgstr "التطبيقات"
#: frontend/src/pages/Batches.vue:329 #: frontend/src/pages/Batches.vue:331
msgid "Archived" msgid "Archived"
msgstr "أرشفة" 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'
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request' #. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
#. Label of the batch_name (Link) field in DocType 'LMS Live Class' #. 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/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200 #: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125
@@ -878,7 +878,7 @@ msgid "Batch:"
msgstr "الدفعات:" msgstr "الدفعات:"
#. Label of the batches (Check) field in DocType 'LMS Settings' #. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue: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 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121
msgid "Batches" msgid "Batches"
msgstr "" msgstr ""
@@ -1023,7 +1023,7 @@ msgstr ""
msgid "Certificate of Completion" msgid "Certificate of Completion"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:347 #: frontend/src/components/Modals/Event.vue:353
msgid "Certificate saved successfully" msgid "Certificate saved successfully"
msgstr "" msgstr ""
@@ -1043,7 +1043,7 @@ msgstr ""
#. Label of a chart in the LMS Workspace #. Label of a chart in the LMS Workspace
#. Label of a Card Break in the LMS Workspace #. Label of a Card Break in the LMS Workspace
#. Label of a Link 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/components/Sidebar/AppSidebar.vue:550
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100
#: frontend/src/pages/CourseCertification.vue:10 #: frontend/src/pages/CourseCertification.vue:10
@@ -1195,7 +1195,7 @@ msgstr ""
#: frontend/src/components/Controls/IconPicker.vue:27 #: frontend/src/components/Controls/IconPicker.vue:27
msgid "Choose an icon" msgid "Choose an icon"
msgstr "" msgstr "اختر رمزًا"
#: frontend/src/components/Quiz.vue:655 #: frontend/src/components/Quiz.vue:655
msgid "Choose one answer" msgid "Choose one answer"
@@ -1771,7 +1771,7 @@ msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:95 #: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127 #: 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/ProgramForm.vue:49
#: frontend/src/pages/Programs/Programs.vue:35 #: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1878,7 +1878,7 @@ msgstr ""
msgid "Create your first quiz" msgid "Create your first quiz"
msgstr "" 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" msgid "Created"
msgstr "أنشأ" 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 Certificate Request'
#. Label of the date (Date) field in DocType 'LMS Live Class' #. Label of the date (Date) field in DocType 'LMS Live Class'
#. Label of the date (Date) field in DocType 'Scheduled Flow' #. 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 #: frontend/src/components/Modals/LiveClassModal.vue:29
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -2241,7 +2241,7 @@ msgstr ""
msgid "Edit Email Template" msgid "Edit Email Template"
msgstr "" msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:13
msgid "Edit Payment Gateway" msgid "Edit Payment Gateway"
msgstr "" msgstr ""
@@ -2424,7 +2424,7 @@ msgstr ""
msgid "Enroll Now" msgid "Enroll Now"
msgstr "" 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 #: frontend/src/pages/Programs/StudentPrograms.vue:96
msgid "Enrolled" msgid "Enrolled"
msgstr "" msgstr ""
@@ -2526,7 +2526,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace #. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json #: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json
msgid "Evaluation" msgid "Evaluation"
msgstr "تقييم" msgstr "تقييم"
@@ -2551,7 +2551,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date." msgid "Evaluation end date cannot be less than the batch end date."
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:286 #: frontend/src/components/Modals/Event.vue:292
msgid "Evaluation saved successfully" msgid "Evaluation saved successfully"
msgstr "" msgstr ""
@@ -2660,11 +2660,11 @@ msgstr ""
#: frontend/src/components/Settings/Coupons/CouponList.vue:176 #: frontend/src/components/Settings/Coupons/CouponList.vue:176
#: lms/lms/doctype/lms_coupon/lms_coupon.json #: lms/lms/doctype/lms_coupon/lms_coupon.json
msgid "Expires On" msgid "Expires On"
msgstr "" msgstr "تاريخ الانتهاء"
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33 #: 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 #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date" msgid "Expiry Date"
msgstr "تاريخ انتهاء الصلاحية" msgstr "تاريخ انتهاء الصلاحية"
@@ -2695,7 +2695,7 @@ msgstr ""
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. 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_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail" msgid "Fail"
@@ -2960,7 +2960,7 @@ msgstr ""
#. Request' #. Request'
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
msgid "Google Meet Link" msgid "Google Meet Link"
msgstr "" msgstr "رابط جوجل ميت"
#. Label of the grade (Data) field in DocType 'Education Detail' #. Label of the grade (Data) field in DocType 'Education Detail'
#: frontend/src/components/Assignment.vue:164 #: frontend/src/components/Assignment.vue:164
@@ -2995,7 +2995,7 @@ msgstr ""
#. Option for the 'Color' (Select) field in DocType 'LMS Course' #. Option for the 'Color' (Select) field in DocType 'LMS Course'
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "Gray" msgid "Gray"
msgstr "" msgstr "رمادي"
#. Option for the 'Color' (Select) field in DocType 'LMS Course' #. Option for the 'Color' (Select) field in DocType 'LMS Course'
#. Option for the 'Color' (Select) field in DocType 'LMS Lesson Note' #. 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 #: lms/templates/emails/lms_invite_request_approved.html:3
msgid "Hi," msgid "Hi,"
msgstr "" msgstr "أهلاً،"
#. Label of the hide_private (Check) field in DocType 'User' #. Label of the hide_private (Check) field in DocType 'User'
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
@@ -3076,7 +3076,7 @@ msgstr ""
#: frontend/src/components/Notes/InlineLessonMenu.vue:12 #: frontend/src/components/Notes/InlineLessonMenu.vue:12
msgid "Highlight" msgid "Highlight"
msgstr "" msgstr "أبرز النقاط"
#. Label of the highlighted_text (Small Text) field in DocType 'LMS Lesson #. Label of the highlighted_text (Small Text) field in DocType 'LMS Lesson
#. Note' #. Note'
@@ -3192,7 +3192,7 @@ msgstr ""
#: lms/lms/doctype/lms_quiz/lms_quiz.py:231 #: lms/lms/doctype/lms_quiz/lms_quiz.py:231
msgid "Image: Corrupted Data Stream" msgid "Image: Corrupted Data Stream"
msgstr "" msgstr "صورة: تدفق بيانات تالف"
#: frontend/src/components/Sidebar/Configuration.vue:17 #: frontend/src/components/Sidebar/Configuration.vue:17
msgid "Import" msgid "Import"
@@ -3209,7 +3209,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course' #. 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_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "In Progress" 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 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate' #. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28 #: 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/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date" msgid "Issue Date"
@@ -3385,7 +3385,7 @@ msgstr ""
#: lms/templates/signup-form.html:6 #: lms/templates/signup-form.html:6
msgid "Jane Doe" msgid "Jane Doe"
msgstr "" msgstr "جين دو"
#. Option for the 'Language' (Select) field in DocType 'LMS Programming #. Option for the 'Language' (Select) field in DocType 'LMS Programming
#. Exercise' #. Exercise'
@@ -3456,7 +3456,7 @@ msgstr "انضم"
msgid "Join Call" msgid "Join Call"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:78 #: frontend/src/components/Modals/Event.vue:84
msgid "Join Meeting" msgid "Join Meeting"
msgstr "" msgstr ""
@@ -3896,7 +3896,7 @@ msgstr ""
msgid "LinkedIn ID" msgid "LinkedIn ID"
msgstr "" msgstr ""
#: frontend/src/pages/Courses.vue:341 #: frontend/src/pages/Courses.vue:340
msgid "Live" msgid "Live"
msgstr "" msgstr ""
@@ -4242,7 +4242,7 @@ msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:110 #: frontend/src/pages/Programs/ProgramForm.vue:110
msgid "Members" msgid "Members"
msgstr "" msgstr "أعضاء"
#. Label of the mentor (Link) field in DocType 'LMS Course Mentor Mapping' #. Label of the mentor (Link) field in DocType 'LMS Course Mentor Mapping'
#. Option for the 'Member Type' (Select) field in DocType 'LMS Enrollment' #. 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/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16 #: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17 #: 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 #: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json #: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New" msgid "New"
@@ -4461,7 +4461,7 @@ msgstr ""
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "" msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:12
msgid "New Payment Gateway" msgid "New Payment Gateway"
msgstr "" msgstr ""
@@ -4616,7 +4616,7 @@ msgstr ""
#: frontend/src/components/EmptyState.vue:5 lms/templates/course_list.html:13 #: frontend/src/components/EmptyState.vue:5 lms/templates/course_list.html:13
msgid "No {0}" msgid "No {0}"
msgstr "" msgstr "لا {0}"
#: lms/lms/user.py:29 #: lms/lms/user.py:29
msgid "Not Allowed" msgid "Not Allowed"
@@ -4778,14 +4778,9 @@ msgstr ""
#: frontend/src/components/UserAvatar.vue:11 #: frontend/src/components/UserAvatar.vue:11
#: frontend/src/pages/CertifiedParticipants.vue:46 #: frontend/src/pages/CertifiedParticipants.vue:46
#: frontend/src/pages/Profile.vue:69 #: frontend/src/pages/Profile.vue:69
msgid "Open to Opportunities" msgid "Open to Work"
msgstr "" 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' #. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:70 #: frontend/src/components/Modals/Question.vue:70
#: lms/lms/doctype/lms_option/lms_option.json #: lms/lms/doctype/lms_option/lms_option.json
@@ -4819,7 +4814,7 @@ msgstr "خيارات"
#. Option for the 'Color' (Select) field in DocType 'LMS Course' #. Option for the 'Color' (Select) field in DocType 'LMS Course'
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "Orange" msgid "Orange"
msgstr "" msgstr "البرتقالي"
#. Label of the order_id (Data) field in DocType 'LMS Payment' #. Label of the order_id (Data) field in DocType 'LMS Payment'
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:114 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:114
@@ -4924,7 +4919,7 @@ msgstr ""
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. 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_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass" msgid "Pass"
@@ -5054,7 +5049,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' #. 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_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending" msgid "Pending"
@@ -5194,7 +5189,7 @@ msgstr ""
msgid "Please login to continue with payment." msgid "Please login to continue with payment."
msgstr "" msgstr ""
#: lms/lms/utils.py:2081 #: lms/lms/utils.py:2082
msgid "Please login to enroll in the program." msgid "Please login to enroll in the program."
msgstr "" msgstr ""
@@ -5496,7 +5491,7 @@ msgstr "تقدم"
#: frontend/src/pages/Programs/ProgramProgressSummary.vue:131 #: frontend/src/pages/Programs/ProgramProgressSummary.vue:131
#: lms/lms/report/course_progress_summary/course_progress_summary.py:77 #: lms/lms/report/course_progress_summary/course_progress_summary.py:77
msgid "Progress (%)" msgid "Progress (%)"
msgstr "" msgstr "تقدم (٪)"
#: frontend/src/components/Modals/CourseProgressSummary.vue:113 #: frontend/src/components/Modals/CourseProgressSummary.vue:113
#: frontend/src/pages/Programs/ProgramProgressSummary.vue:30 #: 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 Course'
#. Label of the published (Check) field in DocType 'LMS Program' #. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51 #: 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/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105
#: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100 #: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5557,13 +5552,13 @@ msgstr ""
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json #: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
msgid "Purple" msgid "Purple"
msgstr "" msgstr "أرجواني"
#. Option for the 'Language' (Select) field in DocType 'LMS Programming #. Option for the 'Language' (Select) field in DocType 'LMS Programming
#. Exercise' #. Exercise'
#: lms/lms/doctype/lms_programming_exercise/lms_programming_exercise.json #: lms/lms/doctype/lms_programming_exercise/lms_programming_exercise.json
msgid "Python" msgid "Python"
msgstr "" msgstr "بايثون"
#. Label of the question (Small Text) field in DocType 'Course Lesson' #. Label of the question (Small Text) field in DocType 'Course Lesson'
#. Label of the question (Text Editor) field in DocType 'LMS Assignment' #. 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 (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review' #. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147 #: 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 #: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.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/AssignmentForm.vue:65
#: frontend/src/components/Modals/EditProfile.vue:121 #: frontend/src/components/Modals/EditProfile.vue:121
#: frontend/src/components/Modals/EmailTemplateModal.vue:12 #: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:115 #: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:151 #: frontend/src/components/Modals/Event.vue:157
#: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78 #: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/Coupons/CouponDetails.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/components/Settings/Transactions/TransactionDetails.vue:129
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17 #: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14 #: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
@@ -6048,7 +6043,7 @@ msgstr ""
msgid "Select Date" msgid "Select Date"
msgstr "" msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:26
msgid "Select Payment Gateway" msgid "Select Payment Gateway"
msgstr "" msgstr ""
@@ -6351,7 +6346,7 @@ msgstr "الولاية / المقاطعة"
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:203 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:203
msgid "Statistics" msgid "Statistics"
msgstr "" msgstr "إحصائيات"
#. Label of the status (Select) field in DocType 'Job Opportunity' #. Label of the status (Select) field in DocType 'Job Opportunity'
#. Label of a field in the job-opportunity Web Form #. 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 #. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission' #. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case 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/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19 #: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6475,7 +6470,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation' #. 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 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary" msgid "Summary"
msgstr "ملخص" msgstr "ملخص"
@@ -6571,7 +6566,7 @@ msgstr ""
#. Label of the template (Link) field in DocType 'LMS Certificate' #. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43 #: 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 #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template" msgid "Template"
msgstr "قالب" msgstr "قالب"
@@ -6620,7 +6615,7 @@ msgstr ""
msgid "Thanks and Regards" msgid "Thanks and Regards"
msgstr "" msgstr ""
#: lms/lms/utils.py:2247 #: lms/lms/utils.py:2248
msgid "The batch does not exist." msgid "The batch does not exist."
msgstr "" 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." msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session."
msgstr "" msgstr ""
#: lms/lms/utils.py:1747 #: lms/lms/utils.py:1748
msgid "The coupon code '{0}' is invalid." msgid "The coupon code '{0}' is invalid."
msgstr "" msgstr ""
@@ -6652,7 +6647,7 @@ msgstr ""
msgid "The last day to schedule your evaluations is " msgid "The last day to schedule your evaluations is "
msgstr "" msgstr ""
#: lms/lms/utils.py:2231 #: lms/lms/utils.py:2232
msgid "The lesson does not exist." msgid "The lesson does not exist."
msgstr "" msgstr ""
@@ -6660,7 +6655,7 @@ msgstr ""
msgid "The slot is already booked by another participant." msgid "The slot is already booked by another participant."
msgstr "" 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." msgid "The specified batch does not exist."
msgstr "" msgstr ""
@@ -6726,15 +6721,15 @@ msgstr ""
msgid "This class has ended" msgid "This class has ended"
msgstr "" msgstr ""
#: lms/lms/utils.py:1776 #: lms/lms/utils.py:1777
msgid "This coupon has expired." msgid "This coupon has expired."
msgstr "" msgstr ""
#: lms/lms/utils.py:1779 #: lms/lms/utils.py:1780
msgid "This coupon has reached its maximum usage limit." msgid "This coupon has reached its maximum usage limit."
msgstr "" msgstr ""
#: lms/lms/utils.py:1788 #: lms/lms/utils.py:1789
msgid "This coupon is not applicable to this {0}." msgid "This coupon is not applicable to this {0}."
msgstr "" msgstr ""
@@ -6742,7 +6737,7 @@ msgstr ""
msgid "This course has:" msgid "This course has:"
msgstr "" msgstr ""
#: lms/lms/utils.py:1707 #: lms/lms/utils.py:1708
msgid "This course is free." msgid "This course is free."
msgstr "" msgstr ""
@@ -6799,7 +6794,7 @@ msgid "Thursday"
msgstr "الخميس" msgstr "الخميس"
#. Label of the time (Time) field in DocType 'LMS Live Class' #. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48 #: frontend/src/components/Modals/Event.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:52 #: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Quiz.vue:58 #: frontend/src/components/Quiz.vue:58
#: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -6934,7 +6929,7 @@ msgstr "إلى"
msgid "To Date" msgid "To Date"
msgstr "إلى تاريخ" msgstr "إلى تاريخ"
#: lms/lms/utils.py:1721 #: lms/lms/utils.py:1722
msgid "To join this batch, please contact the Administrator." msgid "To join this batch, please contact the Administrator."
msgstr "" msgstr ""
@@ -7035,7 +7030,7 @@ msgstr "رابط الانترنت"
#. Label of the uuid (Data) field in DocType 'LMS Live Class' #. Label of the uuid (Data) field in DocType 'LMS Live Class'
#: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "UUID" msgid "UUID"
msgstr "" msgstr "UUID"
#. Label of the unavailability_section (Section Break) field in DocType 'Course #. Label of the unavailability_section (Section Break) field in DocType 'Course
#. Evaluator' #. Evaluator'
@@ -7056,7 +7051,7 @@ msgstr ""
msgid "Under Review" msgid "Under Review"
msgstr "" 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" msgid "Unpublished"
msgstr "" msgstr ""
@@ -7077,8 +7072,8 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
#. Label of the upcoming (Check) field in DocType 'LMS Course' #. 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/Batches.vue:330 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:347 #: frontend/src/pages/Courses.vue:346
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming" msgid "Upcoming"
@@ -7105,7 +7100,7 @@ msgstr "تحديث"
#: lms/templates/emails/community_course_membership.html:11 #: lms/templates/emails/community_course_membership.html:11
msgid "Update Password" msgid "Update Password"
msgstr "" msgstr "تحديث كلمة المرور"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExercises.vue:281 #: frontend/src/pages/ProgrammingExercises/ProgrammingExercises.vue:281
msgid "Updated On" msgid "Updated On"
@@ -7136,7 +7131,7 @@ msgstr ""
#: frontend/src/components/Modals/EmailTemplateModal.vue:38 #: frontend/src/components/Modals/EmailTemplateModal.vue:38
msgid "Use HTML" 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 Job Application'
#. Label of the user (Link) field in DocType 'LMS Course Interest' #. Label of the user (Link) field in DocType 'LMS Course Interest'
@@ -7194,7 +7189,7 @@ msgstr ""
#: lms/templates/signup-form.html:83 #: lms/templates/signup-form.html:83
msgid "Valid email and name required" msgid "Valid email and name required"
msgstr "" msgstr "يلزم تقديم بريد إلكتروني واسم صحيحين"
#. Label of the value (Rating) field in DocType 'LMS Batch Feedback' #. Label of the value (Rating) field in DocType 'LMS Batch Feedback'
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json #: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
@@ -7220,7 +7215,7 @@ msgid "View Applications"
msgstr "" msgstr ""
#: frontend/src/components/CertificationLinks.vue:10 #: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67 #: frontend/src/components/Modals/Event.vue:73
msgid "View Certificate" msgid "View Certificate"
msgstr "" msgstr ""
@@ -7327,6 +7322,11 @@ msgstr ""
msgid "Withdrawn" msgid "Withdrawn"
msgstr "" 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' #. Label of the work_environment (Section Break) field in DocType 'User'
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
msgid "Work Environment" msgid "Work Environment"
@@ -7364,7 +7364,7 @@ msgstr ""
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json #: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
msgid "Yellow" msgid "Yellow"
msgstr "" msgstr "أصفر"
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:97 #: 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}." 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_course_interest.html:13
#: lms/templates/emails/lms_invite_request_approved.html:11 #: lms/templates/emails/lms_invite_request_approved.html:11
msgid "You can also copy-paste following link in your browser" msgid "You can also copy-paste following link in your browser"
msgstr "" msgstr "يمكنك أيضًا نسخ الرابط التالي ولصقه في متصفحك"
#: frontend/src/components/Quiz.vue:37 #: frontend/src/components/Quiz.vue:37
msgid "You can attempt this quiz {0}." msgid "You can attempt this quiz {0}."
@@ -7427,7 +7427,7 @@ msgstr ""
msgid "You cannot enroll in an unpublished course." msgid "You cannot enroll in an unpublished course."
msgstr "" msgstr ""
#: lms/lms/utils.py:2085 #: lms/lms/utils.py:2086
msgid "You cannot enroll in an unpublished program." msgid "You cannot enroll in an unpublished program."
msgstr "" msgstr ""
@@ -7443,11 +7443,11 @@ msgstr ""
msgid "You cannot schedule evaluations for past slots." msgid "You cannot schedule evaluations for past slots."
msgstr "" msgstr ""
#: lms/lms/utils.py:2259 #: lms/lms/utils.py:2260
msgid "You do not have access to this batch." msgid "You do not have access to this batch."
msgstr "" msgstr ""
#: lms/lms/utils.py:2242 #: lms/lms/utils.py:2243
msgid "You do not have access to this course." msgid "You do not have access to this course."
msgstr "" msgstr ""
@@ -7752,7 +7752,7 @@ msgstr ""
#: lms/templates/signup-form.html:12 #: lms/templates/signup-form.html:12
msgid "jane@example.com" msgid "jane@example.com"
msgstr "" msgstr "jane@example.com"
#: frontend/src/pages/Programs/ProgramEnrollment.vue:65 #: frontend/src/pages/Programs/ProgramEnrollment.vue:65
msgid "lessons" msgid "lessons"
@@ -7815,15 +7815,15 @@ msgstr ""
#: frontend/src/components/CommandPalette/CommandPalette.vue:59 #: frontend/src/components/CommandPalette/CommandPalette.vue:59
msgid "to close" msgid "to close"
msgstr "" msgstr "للإغلاق"
#: frontend/src/components/CommandPalette/CommandPalette.vue:45 #: frontend/src/components/CommandPalette/CommandPalette.vue:45
msgid "to navigate" msgid "to navigate"
msgstr "" msgstr "للتنقل"
#: frontend/src/components/CommandPalette/CommandPalette.vue:53 #: frontend/src/components/CommandPalette/CommandPalette.vue:53
msgid "to select" msgid "to select"
msgstr "" msgstr "للاختيار"
#: frontend/src/components/BatchFeedback.vue:12 #: frontend/src/components/BatchFeedback.vue:12
msgid "to view your feedback." msgid "to view your feedback."
+60 -60
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2026-01-16 16:04+0000\n" "POT-Creation-Date: 2026-01-23 16:05+0000\n"
"PO-Revision-Date: 2026-01-21 20:16\n" "PO-Revision-Date: 2026-02-05 06:43\n"
"Last-Translator: jannat@frappe.io\n" "Last-Translator: jannat@frappe.io\n"
"Language-Team: Bosnian\n" "Language-Team: Bosnian\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -190,7 +190,7 @@ msgstr "Dodaj kviz u video"
#: frontend/src/components/Controls/ChildTable.vue:77 #: frontend/src/components/Controls/ChildTable.vue:77
#: frontend/src/components/Settings/Coupons/CouponItems.vue:55 #: frontend/src/components/Settings/Coupons/CouponItems.vue:55
msgid "Add Row" msgid "Add Row"
msgstr "Dodaj Red" msgstr "Dodaj red"
#: frontend/src/pages/ProfileEvaluator.vue:96 #: frontend/src/pages/ProfileEvaluator.vue:96
msgid "Add Slot" msgid "Add Slot"
@@ -319,7 +319,7 @@ msgid "Administrator"
msgstr "Administrator" msgstr "Administrator"
#. Name of a role #. 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" msgid "All"
msgstr "Svi" msgstr "Svi"
@@ -486,7 +486,7 @@ msgstr "Odobreno"
msgid "Apps" msgid "Apps"
msgstr "Aplikacije" msgstr "Aplikacije"
#: frontend/src/pages/Batches.vue:329 #: frontend/src/pages/Batches.vue:331
msgid "Archived" msgid "Archived"
msgstr "Arhivirano" 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'
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request' #. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
#. Label of the batch_name (Link) field in DocType 'LMS Live Class' #. 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/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200 #: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125
@@ -878,7 +878,7 @@ msgid "Batch:"
msgstr "Grupa:" msgstr "Grupa:"
#. Label of the batches (Check) field in DocType 'LMS Settings' #. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue: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 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121
msgid "Batches" msgid "Batches"
msgstr "Grupe" msgstr "Grupe"
@@ -1023,7 +1023,7 @@ msgstr "Veza Certifikata"
msgid "Certificate of Completion" msgid "Certificate of Completion"
msgstr "Certifikat o Završetku" msgstr "Certifikat o Završetku"
#: frontend/src/components/Modals/Event.vue:347 #: frontend/src/components/Modals/Event.vue:353
msgid "Certificate saved successfully" msgid "Certificate saved successfully"
msgstr "Certifikat je uspješno spremljen" 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 chart in the LMS Workspace
#. Label of a Card Break in the LMS Workspace #. Label of a Card Break in the LMS Workspace
#. Label of a Link 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/components/Sidebar/AppSidebar.vue:550
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100
#: frontend/src/pages/CourseCertification.vue:10 #: 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/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127 #: 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/ProgramForm.vue:49
#: frontend/src/pages/Programs/Programs.vue:35 #: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1878,7 +1878,7 @@ msgstr "Kreiraj vaš prvi kurs"
msgid "Create your first quiz" msgid "Create your first quiz"
msgstr "Kreiraj vašj prvi kviz" 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" msgid "Created"
msgstr "Kreirano" 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 Certificate Request'
#. Label of the date (Date) field in DocType 'LMS Live Class' #. Label of the date (Date) field in DocType 'LMS Live Class'
#. Label of the date (Date) field in DocType 'Scheduled Flow' #. 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 #: frontend/src/components/Modals/LiveClassModal.vue:29
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -2241,7 +2241,7 @@ msgstr "Uredi Kupon"
msgid "Edit Email Template" msgid "Edit Email Template"
msgstr "Uredi šablon e-pošte" msgstr "Uredi šablon e-pošte"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:13
msgid "Edit Payment Gateway" msgid "Edit Payment Gateway"
msgstr "Uredi Platni Portal" msgstr "Uredi Platni Portal"
@@ -2424,7 +2424,7 @@ msgstr "Upis Člana u Program"
msgid "Enroll Now" msgid "Enroll Now"
msgstr "Upišite se sada" 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 #: frontend/src/pages/Programs/StudentPrograms.vue:96
msgid "Enrolled" msgid "Enrolled"
msgstr "Upisan" 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 Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace #. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json #: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json
msgid "Evaluation" msgid "Evaluation"
msgstr "Evaluacija" msgstr "Evaluacija"
@@ -2551,7 +2551,7 @@ msgstr "Zahtjev za Ocjenu"
msgid "Evaluation end date cannot be less than the batch end date." msgid "Evaluation end date cannot be less than the batch end date."
msgstr "Datum završetka ocjenjivanja ne može biti prije od datuma završetka grupe." 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" msgid "Evaluation saved successfully"
msgstr "Evaluacija je uspješno sačuvana" 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' #. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33 #: 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 #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date" msgid "Expiry Date"
msgstr "Datum Isteka Roka" msgstr "Datum Isteka Roka"
@@ -2695,7 +2695,7 @@ msgstr "Istraži Više"
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. 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_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail" msgid "Fail"
@@ -3209,7 +3209,7 @@ msgstr "Uvezi Kurs"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course' #. 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_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "In Progress" 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 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate' #. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28 #: 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/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date" msgid "Issue Date"
@@ -3456,7 +3456,7 @@ msgstr "Pridružite se"
msgid "Join Call" msgid "Join Call"
msgstr "Pridružite se Pozivu" msgstr "Pridružite se Pozivu"
#: frontend/src/components/Modals/Event.vue:78 #: frontend/src/components/Modals/Event.vue:84
msgid "Join Meeting" msgid "Join Meeting"
msgstr "Pridružite se Sastanku" msgstr "Pridružite se Sastanku"
@@ -3896,7 +3896,7 @@ msgstr "LinkedIn"
msgid "LinkedIn ID" msgid "LinkedIn ID"
msgstr "LinkedIn ID" msgstr "LinkedIn ID"
#: frontend/src/pages/Courses.vue:341 #: frontend/src/pages/Courses.vue:340
msgid "Live" msgid "Live"
msgstr "Uživo" msgstr "Uživo"
@@ -4429,7 +4429,7 @@ msgstr "Naziv"
#: frontend/src/components/Settings/Members.vue:17 #: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16 #: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17 #: 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 #: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json #: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New" msgid "New"
@@ -4461,7 +4461,7 @@ msgstr "Novi Posao"
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "Novi Kandidat za Posao" msgstr "Novi Kandidat za Posao"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:12
msgid "New Payment Gateway" msgid "New Payment Gateway"
msgstr "Novi Sistem Plaćanja" msgstr "Novi Sistem Plaćanja"
@@ -4778,13 +4778,8 @@ msgstr "Otvoren(a) za"
#: frontend/src/components/UserAvatar.vue:11 #: frontend/src/components/UserAvatar.vue:11
#: frontend/src/pages/CertifiedParticipants.vue:46 #: frontend/src/pages/CertifiedParticipants.vue:46
#: frontend/src/pages/Profile.vue:69 #: frontend/src/pages/Profile.vue:69
msgid "Open to Opportunities" msgid "Open to Work"
msgstr "Otvoren(a) za prilike" msgstr ""
#. Option for the 'Open to' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Opportunities"
msgstr "Prilika"
#. Label of the option (Data) field in DocType 'LMS Option' #. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:70 #: frontend/src/components/Modals/Question.vue:70
@@ -4924,7 +4919,7 @@ msgstr "Djelomično Završeno"
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. 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_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass" msgid "Pass"
@@ -5054,7 +5049,7 @@ msgstr "Aplikacija plaćanja nije instalirana"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' #. 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_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending" msgid "Pending"
@@ -5194,7 +5189,7 @@ msgstr "Prijavi se da pristupiš ovoj stranici."
msgid "Please login to continue with payment." msgid "Please login to continue with payment."
msgstr "Prijavi se da nastaviš s plaćanjem." 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." msgid "Please login to enroll in the program."
msgstr "Molimo vas da se prijavite da biste se prijavili u 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 Course'
#. Label of the published (Check) field in DocType 'LMS Program' #. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51 #: 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/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105
#: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100 #: 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 (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review' #. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147 #: 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 #: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.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/AssignmentForm.vue:65
#: frontend/src/components/Modals/EditProfile.vue:121 #: frontend/src/components/Modals/EditProfile.vue:121
#: frontend/src/components/Modals/EmailTemplateModal.vue:12 #: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:115 #: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:151 #: frontend/src/components/Modals/Event.vue:157
#: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78 #: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/Coupons/CouponDetails.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/components/Settings/Transactions/TransactionDetails.vue:129
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17 #: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14 #: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
@@ -6048,7 +6043,7 @@ msgstr "Prikaži sve"
msgid "Select Date" msgid "Select Date"
msgstr "Odaberi Datum" msgstr "Odaberi Datum"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:26
msgid "Select Payment Gateway" msgid "Select Payment Gateway"
msgstr "Odaberi Platni Portal" msgstr "Odaberi Platni Portal"
@@ -6364,7 +6359,7 @@ msgstr "Statistika"
#. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission' #. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case 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/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19 #: 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 #. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation' #. 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 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary" msgid "Summary"
msgstr "Sažetak" msgstr "Sažetak"
@@ -6571,7 +6566,7 @@ msgstr "Timski Rad"
#. Label of the template (Link) field in DocType 'LMS Certificate' #. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43 #: 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 #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template" msgid "Template"
msgstr "Šablon" msgstr "Šablon"
@@ -6620,7 +6615,7 @@ msgstr "Hvala vam na povratnim informacijama."
msgid "Thanks and Regards" msgid "Thanks and Regards"
msgstr "Hvala i Pozdrav" msgstr "Hvala i Pozdrav"
#: lms/lms/utils.py:2247 #: lms/lms/utils.py:2248
msgid "The batch does not exist." msgid "The batch does not exist."
msgstr "Grupa ne postoji." 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." 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." 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." msgid "The coupon code '{0}' is invalid."
msgstr "Kod kupona '{0}' nije važeći." 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 " msgid "The last day to schedule your evaluations is "
msgstr "Posljednji dan za zakazivanje ocjenjivanja je " msgstr "Posljednji dan za zakazivanje ocjenjivanja je "
#: lms/lms/utils.py:2231 #: lms/lms/utils.py:2232
msgid "The lesson does not exist." msgid "The lesson does not exist."
msgstr "Lekcija ne postoji." msgstr "Lekcija ne postoji."
@@ -6660,7 +6655,7 @@ msgstr "Lekcija ne postoji."
msgid "The slot is already booked by another participant." msgid "The slot is already booked by another participant."
msgstr "Termin je već rezervirao drugi učesnik." 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." msgid "The specified batch does not exist."
msgstr "Navedena grupa ne postoji." msgstr "Navedena grupa ne postoji."
@@ -6726,15 +6721,15 @@ msgstr "Ovaj certifikat ne ističe"
msgid "This class has ended" msgid "This class has ended"
msgstr "Ovaj čas je završen" msgstr "Ovaj čas je završen"
#: lms/lms/utils.py:1776 #: lms/lms/utils.py:1777
msgid "This coupon has expired." msgid "This coupon has expired."
msgstr "Ovaj kupon je istekao." msgstr "Ovaj kupon je istekao."
#: lms/lms/utils.py:1779 #: lms/lms/utils.py:1780
msgid "This coupon has reached its maximum usage limit." msgid "This coupon has reached its maximum usage limit."
msgstr "Ovaj kupon je dosegao maksimalni broj iskorištenja." 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}." msgid "This coupon is not applicable to this {0}."
msgstr "Ovaj kupon se ne odnosi na {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:" msgid "This course has:"
msgstr "Ovaj kurs ima:" msgstr "Ovaj kurs ima:"
#: lms/lms/utils.py:1707 #: lms/lms/utils.py:1708
msgid "This course is free." msgid "This course is free."
msgstr "Ovaj kurs je besplatan." msgstr "Ovaj kurs je besplatan."
@@ -6799,7 +6794,7 @@ msgid "Thursday"
msgstr "Četvrtak" msgstr "Četvrtak"
#. Label of the time (Time) field in DocType 'LMS Live Class' #. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48 #: frontend/src/components/Modals/Event.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:52 #: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Quiz.vue:58 #: frontend/src/components/Quiz.vue:58
#: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -6934,7 +6929,7 @@ msgstr "Za"
msgid "To Date" msgid "To Date"
msgstr "Do Datuma" msgstr "Do Datuma"
#: lms/lms/utils.py:1721 #: lms/lms/utils.py:1722
msgid "To join this batch, please contact the Administrator." msgid "To join this batch, please contact the Administrator."
msgstr "Da biste se pridružili ovoj grupi, kontaktirajte administratora." 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" msgid "Under Review"
msgstr "Pod Recenzijom" 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" msgid "Unpublished"
msgstr "Neobjavljeno" msgstr "Neobjavljeno"
@@ -7077,8 +7072,8 @@ msgstr "Nestrukturirana Uloga"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
#. Label of the upcoming (Check) field in DocType 'LMS Course' #. 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/Batches.vue:330 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:347 #: frontend/src/pages/Courses.vue:346
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming" msgid "Upcoming"
@@ -7220,7 +7215,7 @@ msgid "View Applications"
msgstr "Prikaži prijave" msgstr "Prikaži prijave"
#: frontend/src/components/CertificationLinks.vue:10 #: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67 #: frontend/src/components/Modals/Event.vue:73
msgid "View Certificate" msgid "View Certificate"
msgstr "Prikaži Certifikat" 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" msgid "Withdrawn"
msgstr "Povučen" msgstr "Povučen"
#. 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' #. Label of the work_environment (Section Break) field in DocType 'User'
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
msgid "Work Environment" 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." msgid "You cannot enroll in an unpublished course."
msgstr "Ne možete se upisati na neobjavljeni kurs." 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." msgid "You cannot enroll in an unpublished program."
msgstr "Ne možete se upisati u neobjavljeni 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." msgid "You cannot schedule evaluations for past slots."
msgstr "Ne možete zakazati ocjenjivanje za prošle termine." 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." msgid "You do not have access to this batch."
msgstr "Nemate pristup ovoj grupi." msgstr "Nemate pristup ovoj grupi."
#: lms/lms/utils.py:2242 #: lms/lms/utils.py:2243
msgid "You do not have access to this course." msgid "You do not have access to this course."
msgstr "Nemate pristup ovom kursu." msgstr "Nemate pristup ovom kursu."
+58 -58
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2026-01-16 16:04+0000\n" "POT-Creation-Date: 2026-01-23 16:05+0000\n"
"PO-Revision-Date: 2026-01-19 20:13\n" "PO-Revision-Date: 2026-02-05 06:43\n"
"Last-Translator: jannat@frappe.io\n" "Last-Translator: jannat@frappe.io\n"
"Language-Team: Czech\n" "Language-Team: Czech\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -319,7 +319,7 @@ msgid "Administrator"
msgstr "" msgstr ""
#. Name of a role #. 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" msgid "All"
msgstr "" msgstr ""
@@ -486,7 +486,7 @@ msgstr ""
msgid "Apps" msgid "Apps"
msgstr "" msgstr ""
#: frontend/src/pages/Batches.vue:329 #: frontend/src/pages/Batches.vue:331
msgid "Archived" msgid "Archived"
msgstr "" 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'
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request' #. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
#. Label of the batch_name (Link) field in DocType 'LMS Live Class' #. 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/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200 #: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125
@@ -878,7 +878,7 @@ msgid "Batch:"
msgstr "" msgstr ""
#. Label of the batches (Check) field in DocType 'LMS Settings' #. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue: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 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121
msgid "Batches" msgid "Batches"
msgstr "" msgstr ""
@@ -1023,7 +1023,7 @@ msgstr ""
msgid "Certificate of Completion" msgid "Certificate of Completion"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:347 #: frontend/src/components/Modals/Event.vue:353
msgid "Certificate saved successfully" msgid "Certificate saved successfully"
msgstr "" msgstr ""
@@ -1043,7 +1043,7 @@ msgstr ""
#. Label of a chart in the LMS Workspace #. Label of a chart in the LMS Workspace
#. Label of a Card Break in the LMS Workspace #. Label of a Card Break in the LMS Workspace
#. Label of a Link 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/components/Sidebar/AppSidebar.vue:550
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100
#: frontend/src/pages/CourseCertification.vue:10 #: frontend/src/pages/CourseCertification.vue:10
@@ -1771,7 +1771,7 @@ msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:95 #: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127 #: 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/ProgramForm.vue:49
#: frontend/src/pages/Programs/Programs.vue:35 #: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1878,7 +1878,7 @@ msgstr ""
msgid "Create your first quiz" msgid "Create your first quiz"
msgstr "" 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" msgid "Created"
msgstr "" 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 Certificate Request'
#. Label of the date (Date) field in DocType 'LMS Live Class' #. Label of the date (Date) field in DocType 'LMS Live Class'
#. Label of the date (Date) field in DocType 'Scheduled Flow' #. 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 #: frontend/src/components/Modals/LiveClassModal.vue:29
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -2241,7 +2241,7 @@ msgstr ""
msgid "Edit Email Template" msgid "Edit Email Template"
msgstr "" msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:13
msgid "Edit Payment Gateway" msgid "Edit Payment Gateway"
msgstr "" msgstr ""
@@ -2424,7 +2424,7 @@ msgstr ""
msgid "Enroll Now" msgid "Enroll Now"
msgstr "" 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 #: frontend/src/pages/Programs/StudentPrograms.vue:96
msgid "Enrolled" msgid "Enrolled"
msgstr "" msgstr ""
@@ -2526,7 +2526,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace #. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json #: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json
msgid "Evaluation" msgid "Evaluation"
msgstr "" msgstr ""
@@ -2551,7 +2551,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date." msgid "Evaluation end date cannot be less than the batch end date."
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:286 #: frontend/src/components/Modals/Event.vue:292
msgid "Evaluation saved successfully" msgid "Evaluation saved successfully"
msgstr "" msgstr ""
@@ -2664,7 +2664,7 @@ msgstr ""
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33 #: 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 #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date" msgid "Expiry Date"
msgstr "" msgstr ""
@@ -2695,7 +2695,7 @@ msgstr ""
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. 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_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail" msgid "Fail"
@@ -3209,7 +3209,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course' #. 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_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "In Progress" 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 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate' #. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28 #: 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/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date" msgid "Issue Date"
@@ -3456,7 +3456,7 @@ msgstr ""
msgid "Join Call" msgid "Join Call"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:78 #: frontend/src/components/Modals/Event.vue:84
msgid "Join Meeting" msgid "Join Meeting"
msgstr "" msgstr ""
@@ -3896,7 +3896,7 @@ msgstr ""
msgid "LinkedIn ID" msgid "LinkedIn ID"
msgstr "" msgstr ""
#: frontend/src/pages/Courses.vue:341 #: frontend/src/pages/Courses.vue:340
msgid "Live" msgid "Live"
msgstr "" msgstr ""
@@ -4429,7 +4429,7 @@ msgstr ""
#: frontend/src/components/Settings/Members.vue:17 #: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16 #: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17 #: 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 #: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json #: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New" msgid "New"
@@ -4461,7 +4461,7 @@ msgstr ""
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "" msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:12
msgid "New Payment Gateway" msgid "New Payment Gateway"
msgstr "" msgstr ""
@@ -4778,12 +4778,7 @@ msgstr ""
#: frontend/src/components/UserAvatar.vue:11 #: frontend/src/components/UserAvatar.vue:11
#: frontend/src/pages/CertifiedParticipants.vue:46 #: frontend/src/pages/CertifiedParticipants.vue:46
#: frontend/src/pages/Profile.vue:69 #: 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 "" msgstr ""
#. Label of the option (Data) field in DocType 'LMS Option' #. Label of the option (Data) field in DocType 'LMS Option'
@@ -4924,7 +4919,7 @@ msgstr ""
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. 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_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass" msgid "Pass"
@@ -5054,7 +5049,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' #. 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_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending" msgid "Pending"
@@ -5194,7 +5189,7 @@ msgstr ""
msgid "Please login to continue with payment." msgid "Please login to continue with payment."
msgstr "" msgstr ""
#: lms/lms/utils.py:2081 #: lms/lms/utils.py:2082
msgid "Please login to enroll in the program." msgid "Please login to enroll in the program."
msgstr "" 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 Course'
#. Label of the published (Check) field in DocType 'LMS Program' #. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51 #: 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/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105
#: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100 #: 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 (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review' #. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147 #: 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 #: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.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/AssignmentForm.vue:65
#: frontend/src/components/Modals/EditProfile.vue:121 #: frontend/src/components/Modals/EditProfile.vue:121
#: frontend/src/components/Modals/EmailTemplateModal.vue:12 #: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:115 #: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:151 #: frontend/src/components/Modals/Event.vue:157
#: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78 #: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/Coupons/CouponDetails.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/components/Settings/Transactions/TransactionDetails.vue:129
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17 #: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14 #: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
@@ -6048,7 +6043,7 @@ msgstr ""
msgid "Select Date" msgid "Select Date"
msgstr "" msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:26
msgid "Select Payment Gateway" msgid "Select Payment Gateway"
msgstr "" msgstr ""
@@ -6364,7 +6359,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission' #. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case 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/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19 #: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6475,7 +6470,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation' #. 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 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary" msgid "Summary"
msgstr "" msgstr ""
@@ -6571,7 +6566,7 @@ msgstr ""
#. Label of the template (Link) field in DocType 'LMS Certificate' #. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43 #: 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 #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template" msgid "Template"
msgstr "" msgstr ""
@@ -6620,7 +6615,7 @@ msgstr ""
msgid "Thanks and Regards" msgid "Thanks and Regards"
msgstr "" msgstr ""
#: lms/lms/utils.py:2247 #: lms/lms/utils.py:2248
msgid "The batch does not exist." msgid "The batch does not exist."
msgstr "" 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." msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session."
msgstr "" msgstr ""
#: lms/lms/utils.py:1747 #: lms/lms/utils.py:1748
msgid "The coupon code '{0}' is invalid." msgid "The coupon code '{0}' is invalid."
msgstr "" msgstr ""
@@ -6652,7 +6647,7 @@ msgstr ""
msgid "The last day to schedule your evaluations is " msgid "The last day to schedule your evaluations is "
msgstr "" msgstr ""
#: lms/lms/utils.py:2231 #: lms/lms/utils.py:2232
msgid "The lesson does not exist." msgid "The lesson does not exist."
msgstr "" msgstr ""
@@ -6660,7 +6655,7 @@ msgstr ""
msgid "The slot is already booked by another participant." msgid "The slot is already booked by another participant."
msgstr "" 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." msgid "The specified batch does not exist."
msgstr "" msgstr ""
@@ -6726,15 +6721,15 @@ msgstr ""
msgid "This class has ended" msgid "This class has ended"
msgstr "" msgstr ""
#: lms/lms/utils.py:1776 #: lms/lms/utils.py:1777
msgid "This coupon has expired." msgid "This coupon has expired."
msgstr "" msgstr ""
#: lms/lms/utils.py:1779 #: lms/lms/utils.py:1780
msgid "This coupon has reached its maximum usage limit." msgid "This coupon has reached its maximum usage limit."
msgstr "" msgstr ""
#: lms/lms/utils.py:1788 #: lms/lms/utils.py:1789
msgid "This coupon is not applicable to this {0}." msgid "This coupon is not applicable to this {0}."
msgstr "" msgstr ""
@@ -6742,7 +6737,7 @@ msgstr ""
msgid "This course has:" msgid "This course has:"
msgstr "" msgstr ""
#: lms/lms/utils.py:1707 #: lms/lms/utils.py:1708
msgid "This course is free." msgid "This course is free."
msgstr "" msgstr ""
@@ -6799,7 +6794,7 @@ msgid "Thursday"
msgstr "" msgstr ""
#. Label of the time (Time) field in DocType 'LMS Live Class' #. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48 #: frontend/src/components/Modals/Event.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:52 #: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Quiz.vue:58 #: frontend/src/components/Quiz.vue:58
#: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -6934,7 +6929,7 @@ msgstr ""
msgid "To Date" msgid "To Date"
msgstr "" msgstr ""
#: lms/lms/utils.py:1721 #: lms/lms/utils.py:1722
msgid "To join this batch, please contact the Administrator." msgid "To join this batch, please contact the Administrator."
msgstr "" msgstr ""
@@ -7056,7 +7051,7 @@ msgstr ""
msgid "Under Review" msgid "Under Review"
msgstr "" 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" msgid "Unpublished"
msgstr "" msgstr ""
@@ -7077,8 +7072,8 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
#. Label of the upcoming (Check) field in DocType 'LMS Course' #. 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/Batches.vue:330 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:347 #: frontend/src/pages/Courses.vue:346
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming" msgid "Upcoming"
@@ -7220,7 +7215,7 @@ msgid "View Applications"
msgstr "" msgstr ""
#: frontend/src/components/CertificationLinks.vue:10 #: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67 #: frontend/src/components/Modals/Event.vue:73
msgid "View Certificate" msgid "View Certificate"
msgstr "" msgstr ""
@@ -7327,6 +7322,11 @@ msgstr ""
msgid "Withdrawn" msgid "Withdrawn"
msgstr "" 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' #. Label of the work_environment (Section Break) field in DocType 'User'
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
msgid "Work Environment" msgid "Work Environment"
@@ -7427,7 +7427,7 @@ msgstr ""
msgid "You cannot enroll in an unpublished course." msgid "You cannot enroll in an unpublished course."
msgstr "" msgstr ""
#: lms/lms/utils.py:2085 #: lms/lms/utils.py:2086
msgid "You cannot enroll in an unpublished program." msgid "You cannot enroll in an unpublished program."
msgstr "" msgstr ""
@@ -7443,11 +7443,11 @@ msgstr ""
msgid "You cannot schedule evaluations for past slots." msgid "You cannot schedule evaluations for past slots."
msgstr "" msgstr ""
#: lms/lms/utils.py:2259 #: lms/lms/utils.py:2260
msgid "You do not have access to this batch." msgid "You do not have access to this batch."
msgstr "" msgstr ""
#: lms/lms/utils.py:2242 #: lms/lms/utils.py:2243
msgid "You do not have access to this course." msgid "You do not have access to this course."
msgstr "" msgstr ""
+58 -58
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2026-01-16 16:04+0000\n" "POT-Creation-Date: 2026-01-23 16:05+0000\n"
"PO-Revision-Date: 2026-01-19 20:13\n" "PO-Revision-Date: 2026-02-05 06:43\n"
"Last-Translator: jannat@frappe.io\n" "Last-Translator: jannat@frappe.io\n"
"Language-Team: Danish\n" "Language-Team: Danish\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -319,7 +319,7 @@ msgid "Administrator"
msgstr "Administrator" msgstr "Administrator"
#. Name of a role #. 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" msgid "All"
msgstr "Alle" msgstr "Alle"
@@ -486,7 +486,7 @@ msgstr "Godkendt"
msgid "Apps" msgid "Apps"
msgstr "Apps" msgstr "Apps"
#: frontend/src/pages/Batches.vue:329 #: frontend/src/pages/Batches.vue:331
msgid "Archived" msgid "Archived"
msgstr "Arkiveret" 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'
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request' #. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
#. Label of the batch_name (Link) field in DocType 'LMS Live Class' #. 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/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200 #: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125
@@ -878,7 +878,7 @@ msgid "Batch:"
msgstr "" msgstr ""
#. Label of the batches (Check) field in DocType 'LMS Settings' #. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue: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 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121
msgid "Batches" msgid "Batches"
msgstr "" msgstr ""
@@ -1023,7 +1023,7 @@ msgstr ""
msgid "Certificate of Completion" msgid "Certificate of Completion"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:347 #: frontend/src/components/Modals/Event.vue:353
msgid "Certificate saved successfully" msgid "Certificate saved successfully"
msgstr "" msgstr ""
@@ -1043,7 +1043,7 @@ msgstr ""
#. Label of a chart in the LMS Workspace #. Label of a chart in the LMS Workspace
#. Label of a Card Break in the LMS Workspace #. Label of a Card Break in the LMS Workspace
#. Label of a Link 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/components/Sidebar/AppSidebar.vue:550
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100
#: frontend/src/pages/CourseCertification.vue:10 #: frontend/src/pages/CourseCertification.vue:10
@@ -1771,7 +1771,7 @@ msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:95 #: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127 #: 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/ProgramForm.vue:49
#: frontend/src/pages/Programs/Programs.vue:35 #: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1878,7 +1878,7 @@ msgstr ""
msgid "Create your first quiz" msgid "Create your first quiz"
msgstr "" 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" msgid "Created"
msgstr "" 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 Certificate Request'
#. Label of the date (Date) field in DocType 'LMS Live Class' #. Label of the date (Date) field in DocType 'LMS Live Class'
#. Label of the date (Date) field in DocType 'Scheduled Flow' #. 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 #: frontend/src/components/Modals/LiveClassModal.vue:29
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -2241,7 +2241,7 @@ msgstr ""
msgid "Edit Email Template" msgid "Edit Email Template"
msgstr "" msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:13
msgid "Edit Payment Gateway" msgid "Edit Payment Gateway"
msgstr "" msgstr ""
@@ -2424,7 +2424,7 @@ msgstr ""
msgid "Enroll Now" msgid "Enroll Now"
msgstr "" 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 #: frontend/src/pages/Programs/StudentPrograms.vue:96
msgid "Enrolled" msgid "Enrolled"
msgstr "" msgstr ""
@@ -2526,7 +2526,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace #. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json #: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json
msgid "Evaluation" msgid "Evaluation"
msgstr "" msgstr ""
@@ -2551,7 +2551,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date." msgid "Evaluation end date cannot be less than the batch end date."
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:286 #: frontend/src/components/Modals/Event.vue:292
msgid "Evaluation saved successfully" msgid "Evaluation saved successfully"
msgstr "" msgstr ""
@@ -2664,7 +2664,7 @@ msgstr ""
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33 #: 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 #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date" msgid "Expiry Date"
msgstr "" msgstr ""
@@ -2695,7 +2695,7 @@ msgstr ""
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. 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_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail" msgid "Fail"
@@ -3209,7 +3209,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course' #. 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_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "In Progress" 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 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate' #. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28 #: 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/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date" msgid "Issue Date"
@@ -3456,7 +3456,7 @@ msgstr ""
msgid "Join Call" msgid "Join Call"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:78 #: frontend/src/components/Modals/Event.vue:84
msgid "Join Meeting" msgid "Join Meeting"
msgstr "" msgstr ""
@@ -3896,7 +3896,7 @@ msgstr ""
msgid "LinkedIn ID" msgid "LinkedIn ID"
msgstr "" msgstr ""
#: frontend/src/pages/Courses.vue:341 #: frontend/src/pages/Courses.vue:340
msgid "Live" msgid "Live"
msgstr "" msgstr ""
@@ -4429,7 +4429,7 @@ msgstr ""
#: frontend/src/components/Settings/Members.vue:17 #: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16 #: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17 #: 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 #: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json #: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New" msgid "New"
@@ -4461,7 +4461,7 @@ msgstr ""
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "" msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:12
msgid "New Payment Gateway" msgid "New Payment Gateway"
msgstr "" msgstr ""
@@ -4778,12 +4778,7 @@ msgstr ""
#: frontend/src/components/UserAvatar.vue:11 #: frontend/src/components/UserAvatar.vue:11
#: frontend/src/pages/CertifiedParticipants.vue:46 #: frontend/src/pages/CertifiedParticipants.vue:46
#: frontend/src/pages/Profile.vue:69 #: 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 "" msgstr ""
#. Label of the option (Data) field in DocType 'LMS Option' #. Label of the option (Data) field in DocType 'LMS Option'
@@ -4924,7 +4919,7 @@ msgstr ""
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. 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_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass" msgid "Pass"
@@ -5054,7 +5049,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' #. 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_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending" msgid "Pending"
@@ -5194,7 +5189,7 @@ msgstr ""
msgid "Please login to continue with payment." msgid "Please login to continue with payment."
msgstr "" msgstr ""
#: lms/lms/utils.py:2081 #: lms/lms/utils.py:2082
msgid "Please login to enroll in the program." msgid "Please login to enroll in the program."
msgstr "" 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 Course'
#. Label of the published (Check) field in DocType 'LMS Program' #. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51 #: 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/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105
#: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100 #: 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 (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review' #. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147 #: 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 #: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.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/AssignmentForm.vue:65
#: frontend/src/components/Modals/EditProfile.vue:121 #: frontend/src/components/Modals/EditProfile.vue:121
#: frontend/src/components/Modals/EmailTemplateModal.vue:12 #: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:115 #: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:151 #: frontend/src/components/Modals/Event.vue:157
#: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78 #: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/Coupons/CouponDetails.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/components/Settings/Transactions/TransactionDetails.vue:129
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17 #: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14 #: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
@@ -6048,7 +6043,7 @@ msgstr ""
msgid "Select Date" msgid "Select Date"
msgstr "" msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:26
msgid "Select Payment Gateway" msgid "Select Payment Gateway"
msgstr "" msgstr ""
@@ -6364,7 +6359,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission' #. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case 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/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19 #: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6475,7 +6470,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation' #. 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 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary" msgid "Summary"
msgstr "" msgstr ""
@@ -6571,7 +6566,7 @@ msgstr ""
#. Label of the template (Link) field in DocType 'LMS Certificate' #. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43 #: 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 #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template" msgid "Template"
msgstr "" msgstr ""
@@ -6620,7 +6615,7 @@ msgstr ""
msgid "Thanks and Regards" msgid "Thanks and Regards"
msgstr "" msgstr ""
#: lms/lms/utils.py:2247 #: lms/lms/utils.py:2248
msgid "The batch does not exist." msgid "The batch does not exist."
msgstr "" 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." msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session."
msgstr "" msgstr ""
#: lms/lms/utils.py:1747 #: lms/lms/utils.py:1748
msgid "The coupon code '{0}' is invalid." msgid "The coupon code '{0}' is invalid."
msgstr "" msgstr ""
@@ -6652,7 +6647,7 @@ msgstr ""
msgid "The last day to schedule your evaluations is " msgid "The last day to schedule your evaluations is "
msgstr "" msgstr ""
#: lms/lms/utils.py:2231 #: lms/lms/utils.py:2232
msgid "The lesson does not exist." msgid "The lesson does not exist."
msgstr "" msgstr ""
@@ -6660,7 +6655,7 @@ msgstr ""
msgid "The slot is already booked by another participant." msgid "The slot is already booked by another participant."
msgstr "" 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." msgid "The specified batch does not exist."
msgstr "" msgstr ""
@@ -6726,15 +6721,15 @@ msgstr ""
msgid "This class has ended" msgid "This class has ended"
msgstr "" msgstr ""
#: lms/lms/utils.py:1776 #: lms/lms/utils.py:1777
msgid "This coupon has expired." msgid "This coupon has expired."
msgstr "" msgstr ""
#: lms/lms/utils.py:1779 #: lms/lms/utils.py:1780
msgid "This coupon has reached its maximum usage limit." msgid "This coupon has reached its maximum usage limit."
msgstr "" msgstr ""
#: lms/lms/utils.py:1788 #: lms/lms/utils.py:1789
msgid "This coupon is not applicable to this {0}." msgid "This coupon is not applicable to this {0}."
msgstr "" msgstr ""
@@ -6742,7 +6737,7 @@ msgstr ""
msgid "This course has:" msgid "This course has:"
msgstr "" msgstr ""
#: lms/lms/utils.py:1707 #: lms/lms/utils.py:1708
msgid "This course is free." msgid "This course is free."
msgstr "" msgstr ""
@@ -6799,7 +6794,7 @@ msgid "Thursday"
msgstr "" msgstr ""
#. Label of the time (Time) field in DocType 'LMS Live Class' #. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48 #: frontend/src/components/Modals/Event.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:52 #: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Quiz.vue:58 #: frontend/src/components/Quiz.vue:58
#: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -6934,7 +6929,7 @@ msgstr ""
msgid "To Date" msgid "To Date"
msgstr "" msgstr ""
#: lms/lms/utils.py:1721 #: lms/lms/utils.py:1722
msgid "To join this batch, please contact the Administrator." msgid "To join this batch, please contact the Administrator."
msgstr "" msgstr ""
@@ -7056,7 +7051,7 @@ msgstr ""
msgid "Under Review" msgid "Under Review"
msgstr "" 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" msgid "Unpublished"
msgstr "" msgstr ""
@@ -7077,8 +7072,8 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
#. Label of the upcoming (Check) field in DocType 'LMS Course' #. 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/Batches.vue:330 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:347 #: frontend/src/pages/Courses.vue:346
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming" msgid "Upcoming"
@@ -7220,7 +7215,7 @@ msgid "View Applications"
msgstr "" msgstr ""
#: frontend/src/components/CertificationLinks.vue:10 #: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67 #: frontend/src/components/Modals/Event.vue:73
msgid "View Certificate" msgid "View Certificate"
msgstr "" msgstr ""
@@ -7327,6 +7322,11 @@ msgstr ""
msgid "Withdrawn" msgid "Withdrawn"
msgstr "" 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' #. Label of the work_environment (Section Break) field in DocType 'User'
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
msgid "Work Environment" msgid "Work Environment"
@@ -7427,7 +7427,7 @@ msgstr ""
msgid "You cannot enroll in an unpublished course." msgid "You cannot enroll in an unpublished course."
msgstr "" msgstr ""
#: lms/lms/utils.py:2085 #: lms/lms/utils.py:2086
msgid "You cannot enroll in an unpublished program." msgid "You cannot enroll in an unpublished program."
msgstr "" msgstr ""
@@ -7443,11 +7443,11 @@ msgstr ""
msgid "You cannot schedule evaluations for past slots." msgid "You cannot schedule evaluations for past slots."
msgstr "" msgstr ""
#: lms/lms/utils.py:2259 #: lms/lms/utils.py:2260
msgid "You do not have access to this batch." msgid "You do not have access to this batch."
msgstr "" msgstr ""
#: lms/lms/utils.py:2242 #: lms/lms/utils.py:2243
msgid "You do not have access to this course." msgid "You do not have access to this course."
msgstr "" msgstr ""
+58 -58
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2026-01-16 16:04+0000\n" "POT-Creation-Date: 2026-01-23 16:05+0000\n"
"PO-Revision-Date: 2026-01-21 20:16\n" "PO-Revision-Date: 2026-02-05 06:43\n"
"Last-Translator: jannat@frappe.io\n" "Last-Translator: jannat@frappe.io\n"
"Language-Team: German\n" "Language-Team: German\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -319,7 +319,7 @@ msgid "Administrator"
msgstr "Administrator" msgstr "Administrator"
#. Name of a role #. 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" msgid "All"
msgstr "Alle" msgstr "Alle"
@@ -486,7 +486,7 @@ msgstr "Genehmigt"
msgid "Apps" msgid "Apps"
msgstr "Apps" msgstr "Apps"
#: frontend/src/pages/Batches.vue:329 #: frontend/src/pages/Batches.vue:331
msgid "Archived" msgid "Archived"
msgstr "Archiviert" 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'
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request' #. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
#. Label of the batch_name (Link) field in DocType 'LMS Live Class' #. 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/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200 #: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125
@@ -878,7 +878,7 @@ msgid "Batch:"
msgstr "Charge:" msgstr "Charge:"
#. Label of the batches (Check) field in DocType 'LMS Settings' #. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue: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 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121
msgid "Batches" msgid "Batches"
msgstr "" msgstr ""
@@ -1023,7 +1023,7 @@ msgstr "Zertifikatslink"
msgid "Certificate of Completion" msgid "Certificate of Completion"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:347 #: frontend/src/components/Modals/Event.vue:353
msgid "Certificate saved successfully" msgid "Certificate saved successfully"
msgstr "" msgstr ""
@@ -1043,7 +1043,7 @@ msgstr ""
#. Label of a chart in the LMS Workspace #. Label of a chart in the LMS Workspace
#. Label of a Card Break in the LMS Workspace #. Label of a Card Break in the LMS Workspace
#. Label of a Link 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/components/Sidebar/AppSidebar.vue:550
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100
#: frontend/src/pages/CourseCertification.vue:10 #: frontend/src/pages/CourseCertification.vue:10
@@ -1771,7 +1771,7 @@ msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:95 #: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127 #: 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/ProgramForm.vue:49
#: frontend/src/pages/Programs/Programs.vue:35 #: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1878,7 +1878,7 @@ msgstr ""
msgid "Create your first quiz" msgid "Create your first quiz"
msgstr "" 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" msgid "Created"
msgstr "Erstellt" 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 Certificate Request'
#. Label of the date (Date) field in DocType 'LMS Live Class' #. Label of the date (Date) field in DocType 'LMS Live Class'
#. Label of the date (Date) field in DocType 'Scheduled Flow' #. 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 #: frontend/src/components/Modals/LiveClassModal.vue:29
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -2241,7 +2241,7 @@ msgstr ""
msgid "Edit Email Template" msgid "Edit Email Template"
msgstr "" msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:13
msgid "Edit Payment Gateway" msgid "Edit Payment Gateway"
msgstr "" msgstr ""
@@ -2424,7 +2424,7 @@ msgstr ""
msgid "Enroll Now" msgid "Enroll Now"
msgstr "" 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 #: frontend/src/pages/Programs/StudentPrograms.vue:96
msgid "Enrolled" msgid "Enrolled"
msgstr "" msgstr ""
@@ -2526,7 +2526,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace #. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json #: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json
msgid "Evaluation" msgid "Evaluation"
msgstr "Beurteilung" msgstr "Beurteilung"
@@ -2551,7 +2551,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date." msgid "Evaluation end date cannot be less than the batch end date."
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:286 #: frontend/src/components/Modals/Event.vue:292
msgid "Evaluation saved successfully" msgid "Evaluation saved successfully"
msgstr "" msgstr ""
@@ -2664,7 +2664,7 @@ msgstr "Verfällt am"
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33 #: 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 #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date" msgid "Expiry Date"
msgstr "Verfallsdatum" msgstr "Verfallsdatum"
@@ -2695,7 +2695,7 @@ msgstr "Mehr entdecken"
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. 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_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail" msgid "Fail"
@@ -3209,7 +3209,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course' #. 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_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "In Progress" 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 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate' #. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28 #: 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/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date" msgid "Issue Date"
@@ -3456,7 +3456,7 @@ msgstr "Beitreten"
msgid "Join Call" msgid "Join Call"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:78 #: frontend/src/components/Modals/Event.vue:84
msgid "Join Meeting" msgid "Join Meeting"
msgstr "" msgstr ""
@@ -3896,7 +3896,7 @@ msgstr "LinkedIn"
msgid "LinkedIn ID" msgid "LinkedIn ID"
msgstr "" msgstr ""
#: frontend/src/pages/Courses.vue:341 #: frontend/src/pages/Courses.vue:340
msgid "Live" msgid "Live"
msgstr "" msgstr ""
@@ -4429,7 +4429,7 @@ msgstr "Name"
#: frontend/src/components/Settings/Members.vue:17 #: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16 #: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17 #: 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 #: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json #: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New" msgid "New"
@@ -4461,7 +4461,7 @@ msgstr ""
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "" msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:12
msgid "New Payment Gateway" msgid "New Payment Gateway"
msgstr "" msgstr ""
@@ -4778,14 +4778,9 @@ msgstr ""
#: frontend/src/components/UserAvatar.vue:11 #: frontend/src/components/UserAvatar.vue:11
#: frontend/src/pages/CertifiedParticipants.vue:46 #: frontend/src/pages/CertifiedParticipants.vue:46
#: frontend/src/pages/Profile.vue:69 #: frontend/src/pages/Profile.vue:69
msgid "Open to Opportunities" msgid "Open to Work"
msgstr "" 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' #. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:70 #: frontend/src/components/Modals/Question.vue:70
#: lms/lms/doctype/lms_option/lms_option.json #: lms/lms/doctype/lms_option/lms_option.json
@@ -4924,7 +4919,7 @@ msgstr "Teilweise abgeschlossen"
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. 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_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass" msgid "Pass"
@@ -5054,7 +5049,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' #. 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_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending" msgid "Pending"
@@ -5194,7 +5189,7 @@ msgstr "Bitte melden Sie sich an, um auf diese Seite zuzugreifen."
msgid "Please login to continue with payment." msgid "Please login to continue with payment."
msgstr "Bitte loggen Sie sich ein, um mit der Zahlung fortzufahren." msgstr "Bitte loggen Sie sich ein, um mit der Zahlung fortzufahren."
#: lms/lms/utils.py:2081 #: lms/lms/utils.py:2082
msgid "Please login to enroll in the program." msgid "Please login to enroll in the program."
msgstr "" 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 Course'
#. Label of the published (Check) field in DocType 'LMS Program' #. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51 #: 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/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105
#: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100 #: 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 (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review' #. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147 #: 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 #: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.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/AssignmentForm.vue:65
#: frontend/src/components/Modals/EditProfile.vue:121 #: frontend/src/components/Modals/EditProfile.vue:121
#: frontend/src/components/Modals/EmailTemplateModal.vue:12 #: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:115 #: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:151 #: frontend/src/components/Modals/Event.vue:157
#: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78 #: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/Coupons/CouponDetails.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/components/Settings/Transactions/TransactionDetails.vue:129
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17 #: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14 #: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
@@ -6048,7 +6043,7 @@ msgstr ""
msgid "Select Date" msgid "Select Date"
msgstr "" msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:26
msgid "Select Payment Gateway" msgid "Select Payment Gateway"
msgstr "" msgstr ""
@@ -6364,7 +6359,7 @@ msgstr "Statistiken"
#. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission' #. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case 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/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19 #: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6475,7 +6470,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation' #. 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 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary" msgid "Summary"
msgstr "Zusammenfassung" msgstr "Zusammenfassung"
@@ -6571,7 +6566,7 @@ msgstr ""
#. Label of the template (Link) field in DocType 'LMS Certificate' #. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43 #: 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 #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template" msgid "Template"
msgstr "Vorlage" msgstr "Vorlage"
@@ -6620,7 +6615,7 @@ msgstr ""
msgid "Thanks and Regards" msgid "Thanks and Regards"
msgstr "Danke und Grüße" msgstr "Danke und Grüße"
#: lms/lms/utils.py:2247 #: lms/lms/utils.py:2248
msgid "The batch does not exist." msgid "The batch does not exist."
msgstr "" 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." msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session."
msgstr "" msgstr ""
#: lms/lms/utils.py:1747 #: lms/lms/utils.py:1748
msgid "The coupon code '{0}' is invalid." msgid "The coupon code '{0}' is invalid."
msgstr "" msgstr ""
@@ -6652,7 +6647,7 @@ msgstr ""
msgid "The last day to schedule your evaluations is " msgid "The last day to schedule your evaluations is "
msgstr "" msgstr ""
#: lms/lms/utils.py:2231 #: lms/lms/utils.py:2232
msgid "The lesson does not exist." msgid "The lesson does not exist."
msgstr "" msgstr ""
@@ -6660,7 +6655,7 @@ msgstr ""
msgid "The slot is already booked by another participant." msgid "The slot is already booked by another participant."
msgstr "Der Platz ist bereits von einem anderen Teilnehmer gebucht." 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." msgid "The specified batch does not exist."
msgstr "" msgstr ""
@@ -6726,15 +6721,15 @@ msgstr "Dieses Zertifikat läuft nicht ab"
msgid "This class has ended" msgid "This class has ended"
msgstr "" msgstr ""
#: lms/lms/utils.py:1776 #: lms/lms/utils.py:1777
msgid "This coupon has expired." msgid "This coupon has expired."
msgstr "" msgstr ""
#: lms/lms/utils.py:1779 #: lms/lms/utils.py:1780
msgid "This coupon has reached its maximum usage limit." msgid "This coupon has reached its maximum usage limit."
msgstr "" msgstr ""
#: lms/lms/utils.py:1788 #: lms/lms/utils.py:1789
msgid "This coupon is not applicable to this {0}." msgid "This coupon is not applicable to this {0}."
msgstr "" msgstr ""
@@ -6742,7 +6737,7 @@ msgstr ""
msgid "This course has:" msgid "This course has:"
msgstr "" msgstr ""
#: lms/lms/utils.py:1707 #: lms/lms/utils.py:1708
msgid "This course is free." msgid "This course is free."
msgstr "Dieser Kurs ist kostenlos." msgstr "Dieser Kurs ist kostenlos."
@@ -6799,7 +6794,7 @@ msgid "Thursday"
msgstr "Donnerstag" msgstr "Donnerstag"
#. Label of the time (Time) field in DocType 'LMS Live Class' #. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48 #: frontend/src/components/Modals/Event.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:52 #: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Quiz.vue:58 #: frontend/src/components/Quiz.vue:58
#: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -6934,7 +6929,7 @@ msgstr "An"
msgid "To Date" msgid "To Date"
msgstr "Bis-Datum" msgstr "Bis-Datum"
#: lms/lms/utils.py:1721 #: lms/lms/utils.py:1722
msgid "To join this batch, please contact the Administrator." msgid "To join this batch, please contact the Administrator."
msgstr "Um dieser Gruppe beizutreten, wenden Sie sich bitte an den Administrator." msgstr "Um dieser Gruppe beizutreten, wenden Sie sich bitte an den Administrator."
@@ -7056,7 +7051,7 @@ msgstr "Das Datum „Nicht verfügbar ab“ kann nicht größer sein als das Dat
msgid "Under Review" msgid "Under Review"
msgstr "Wird überprüft" 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" msgid "Unpublished"
msgstr "" msgstr ""
@@ -7077,8 +7072,8 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
#. Label of the upcoming (Check) field in DocType 'LMS Course' #. 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/Batches.vue:330 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:347 #: frontend/src/pages/Courses.vue:346
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming" msgid "Upcoming"
@@ -7220,7 +7215,7 @@ msgid "View Applications"
msgstr "" msgstr ""
#: frontend/src/components/CertificationLinks.vue:10 #: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67 #: frontend/src/components/Modals/Event.vue:73
msgid "View Certificate" msgid "View Certificate"
msgstr "" msgstr ""
@@ -7327,6 +7322,11 @@ msgstr ""
msgid "Withdrawn" msgid "Withdrawn"
msgstr "Zurückgezogen" 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' #. Label of the work_environment (Section Break) field in DocType 'User'
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
msgid "Work Environment" msgid "Work Environment"
@@ -7427,7 +7427,7 @@ msgstr ""
msgid "You cannot enroll in an unpublished course." msgid "You cannot enroll in an unpublished course."
msgstr "" msgstr ""
#: lms/lms/utils.py:2085 #: lms/lms/utils.py:2086
msgid "You cannot enroll in an unpublished program." msgid "You cannot enroll in an unpublished program."
msgstr "" msgstr ""
@@ -7443,11 +7443,11 @@ msgstr ""
msgid "You cannot schedule evaluations for past slots." msgid "You cannot schedule evaluations for past slots."
msgstr "" msgstr ""
#: lms/lms/utils.py:2259 #: lms/lms/utils.py:2260
msgid "You do not have access to this batch." msgid "You do not have access to this batch."
msgstr "" msgstr ""
#: lms/lms/utils.py:2242 #: lms/lms/utils.py:2243
msgid "You do not have access to this course." msgid "You do not have access to this course."
msgstr "" msgstr ""
+59 -59
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2026-01-16 16:04+0000\n" "POT-Creation-Date: 2026-01-23 16:05+0000\n"
"PO-Revision-Date: 2026-01-19 20:13\n" "PO-Revision-Date: 2026-02-05 06:43\n"
"Last-Translator: jannat@frappe.io\n" "Last-Translator: jannat@frappe.io\n"
"Language-Team: Esperanto\n" "Language-Team: Esperanto\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -319,7 +319,7 @@ msgid "Administrator"
msgstr "crwdns160952:0crwdne160952:0" msgstr "crwdns160952:0crwdne160952:0"
#. Name of a role #. 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" msgid "All"
msgstr "crwdns149250:0crwdne149250:0" msgstr "crwdns149250:0crwdne149250:0"
@@ -486,7 +486,7 @@ msgstr "crwdns149292:0crwdne149292:0"
msgid "Apps" msgid "Apps"
msgstr "crwdns149294:0crwdne149294:0" msgstr "crwdns149294:0crwdne149294:0"
#: frontend/src/pages/Batches.vue:329 #: frontend/src/pages/Batches.vue:331
msgid "Archived" msgid "Archived"
msgstr "crwdns152268:0crwdne152268:0" 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'
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request' #. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
#. Label of the batch_name (Link) field in DocType 'LMS Live Class' #. 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/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200 #: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125
@@ -878,7 +878,7 @@ msgid "Batch:"
msgstr "crwdns152469:0crwdne152469:0" msgstr "crwdns152469:0crwdne152469:0"
#. Label of the batches (Check) field in DocType 'LMS Settings' #. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue: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 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121
msgid "Batches" msgid "Batches"
msgstr "crwdns149380:0crwdne149380:0" msgstr "crwdns149380:0crwdne149380:0"
@@ -1023,7 +1023,7 @@ msgstr "crwdns149424:0crwdne149424:0"
msgid "Certificate of Completion" msgid "Certificate of Completion"
msgstr "crwdns152601:0crwdne152601:0" msgstr "crwdns152601:0crwdne152601:0"
#: frontend/src/components/Modals/Event.vue:347 #: frontend/src/components/Modals/Event.vue:353
msgid "Certificate saved successfully" msgid "Certificate saved successfully"
msgstr "crwdns149426:0crwdne149426:0" msgstr "crwdns149426:0crwdne149426:0"
@@ -1043,7 +1043,7 @@ msgstr "crwdns151924:0crwdne151924:0"
#. Label of a chart in the LMS Workspace #. Label of a chart in the LMS Workspace
#. Label of a Card Break in the LMS Workspace #. Label of a Card Break in the LMS Workspace
#. Label of a Link 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/components/Sidebar/AppSidebar.vue:550
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100
#: frontend/src/pages/CourseCertification.vue:10 #: 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/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127 #: 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/ProgramForm.vue:49
#: frontend/src/pages/Programs/Programs.vue:35 #: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1878,7 +1878,7 @@ msgstr "crwdns154451:0crwdne154451:0"
msgid "Create your first quiz" msgid "Create your first quiz"
msgstr "crwdns154453:0crwdne154453:0" 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" msgid "Created"
msgstr "crwdns152116:0crwdne152116:0" 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 Certificate Request'
#. Label of the date (Date) field in DocType 'LMS Live Class' #. Label of the date (Date) field in DocType 'LMS Live Class'
#. Label of the date (Date) field in DocType 'Scheduled Flow' #. 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 #: frontend/src/components/Modals/LiveClassModal.vue:29
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -2241,7 +2241,7 @@ msgstr "crwdns160986:0crwdne160986:0"
msgid "Edit Email Template" msgid "Edit Email Template"
msgstr "crwdns155182:0crwdne155182:0" msgstr "crwdns155182:0crwdne155182:0"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:13
msgid "Edit Payment Gateway" msgid "Edit Payment Gateway"
msgstr "crwdns159752:0crwdne159752:0" msgstr "crwdns159752:0crwdne159752:0"
@@ -2424,7 +2424,7 @@ msgstr "crwdns158508:0crwdne158508:0"
msgid "Enroll Now" msgid "Enroll Now"
msgstr "crwdns149722:0crwdne149722:0" 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 #: frontend/src/pages/Programs/StudentPrograms.vue:96
msgid "Enrolled" msgid "Enrolled"
msgstr "crwdns152272:0crwdne152272:0" msgstr "crwdns152272:0crwdne152272:0"
@@ -2526,7 +2526,7 @@ msgstr "crwdns155194:0crwdne155194:0"
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace #. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json #: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json
msgid "Evaluation" msgid "Evaluation"
msgstr "crwdns149746:0crwdne149746:0" msgstr "crwdns149746:0crwdne149746:0"
@@ -2551,7 +2551,7 @@ msgstr "crwdns149752:0crwdne149752:0"
msgid "Evaluation end date cannot be less than the batch end date." msgid "Evaluation end date cannot be less than the batch end date."
msgstr "crwdns149754:0crwdne149754:0" msgstr "crwdns149754:0crwdne149754:0"
#: frontend/src/components/Modals/Event.vue:286 #: frontend/src/components/Modals/Event.vue:292
msgid "Evaluation saved successfully" msgid "Evaluation saved successfully"
msgstr "crwdns149756:0crwdne149756:0" msgstr "crwdns149756:0crwdne149756:0"
@@ -2664,7 +2664,7 @@ msgstr "crwdns160990:0crwdne160990:0"
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33 #: 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 #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date" msgid "Expiry Date"
msgstr "crwdns149780:0crwdne149780:0" msgstr "crwdns149780:0crwdne149780:0"
@@ -2695,7 +2695,7 @@ msgstr "crwdns149786:0crwdne149786:0"
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. 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_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail" msgid "Fail"
@@ -3209,7 +3209,7 @@ msgstr "crwdns161528:0crwdne161528:0"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course' #. 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_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "In Progress" 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 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate' #. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28 #: 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/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date" msgid "Issue Date"
@@ -3456,7 +3456,7 @@ msgstr "crwdns149996:0crwdne149996:0"
msgid "Join Call" msgid "Join Call"
msgstr "crwdns152499:0crwdne152499:0" msgstr "crwdns152499:0crwdne152499:0"
#: frontend/src/components/Modals/Event.vue:78 #: frontend/src/components/Modals/Event.vue:84
msgid "Join Meeting" msgid "Join Meeting"
msgstr "crwdns149998:0crwdne149998:0" msgstr "crwdns149998:0crwdne149998:0"
@@ -3896,7 +3896,7 @@ msgstr "crwdns150098:0crwdne150098:0"
msgid "LinkedIn ID" msgid "LinkedIn ID"
msgstr "crwdns150100:0crwdne150100:0" msgstr "crwdns150100:0crwdne150100:0"
#: frontend/src/pages/Courses.vue:341 #: frontend/src/pages/Courses.vue:340
msgid "Live" msgid "Live"
msgstr "crwdns150106:0crwdne150106:0" msgstr "crwdns150106:0crwdne150106:0"
@@ -4429,7 +4429,7 @@ msgstr "crwdns155198:0crwdne155198:0"
#: frontend/src/components/Settings/Members.vue:17 #: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16 #: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17 #: 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 #: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json #: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New" msgid "New"
@@ -4461,7 +4461,7 @@ msgstr "crwdns150222:0crwdne150222:0"
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "crwdns150224:0crwdne150224:0" msgstr "crwdns150224:0crwdne150224:0"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:12
msgid "New Payment Gateway" msgid "New Payment Gateway"
msgstr "crwdns159762:0crwdne159762:0" msgstr "crwdns159762:0crwdne159762:0"
@@ -4778,13 +4778,8 @@ msgstr "crwdns164070:0crwdne164070:0"
#: frontend/src/components/UserAvatar.vue:11 #: frontend/src/components/UserAvatar.vue:11
#: frontend/src/pages/CertifiedParticipants.vue:46 #: frontend/src/pages/CertifiedParticipants.vue:46
#: frontend/src/pages/Profile.vue:69 #: frontend/src/pages/Profile.vue:69
msgid "Open to Opportunities" msgid "Open to Work"
msgstr "crwdns163998:0crwdne163998:0" msgstr "crwdns194934:0crwdne194934:0"
#. Option for the 'Open to' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Opportunities"
msgstr "crwdns164072:0crwdne164072:0"
#. Label of the option (Data) field in DocType 'LMS Option' #. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:70 #: frontend/src/components/Modals/Question.vue:70
@@ -4924,7 +4919,7 @@ msgstr "crwdns150360:0crwdne150360:0"
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. 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_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass" msgid "Pass"
@@ -5054,7 +5049,7 @@ msgstr "crwdns150388:0crwdne150388:0"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' #. 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_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending" msgid "Pending"
@@ -5194,7 +5189,7 @@ msgstr "crwdns150426:0crwdne150426:0"
msgid "Please login to continue with payment." msgid "Please login to continue with payment."
msgstr "crwdns150428:0crwdne150428:0" msgstr "crwdns150428:0crwdne150428:0"
#: lms/lms/utils.py:2081 #: lms/lms/utils.py:2082
msgid "Please login to enroll in the program." msgid "Please login to enroll in the program."
msgstr "crwdns158528:0crwdne158528:0" 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 Course'
#. Label of the published (Check) field in DocType 'LMS Program' #. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51 #: 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/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105
#: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100 #: 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 (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review' #. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147 #: 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 #: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.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/AssignmentForm.vue:65
#: frontend/src/components/Modals/EditProfile.vue:121 #: frontend/src/components/Modals/EditProfile.vue:121
#: frontend/src/components/Modals/EmailTemplateModal.vue:12 #: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:115 #: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:151 #: frontend/src/components/Modals/Event.vue:157
#: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78 #: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/Coupons/CouponDetails.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/components/Settings/Transactions/TransactionDetails.vue:129
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17 #: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14 #: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
@@ -6048,7 +6043,7 @@ msgstr "crwdns159374:0crwdne159374:0"
msgid "Select Date" msgid "Select Date"
msgstr "crwdns155902:0crwdne155902:0" msgstr "crwdns155902:0crwdne155902:0"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:26
msgid "Select Payment Gateway" msgid "Select Payment Gateway"
msgstr "crwdns159776:0crwdne159776:0" msgstr "crwdns159776:0crwdne159776:0"
@@ -6364,7 +6359,7 @@ msgstr "crwdns150732:0crwdne150732:0"
#. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission' #. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case 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/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19 #: 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 #. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation' #. 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 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary" msgid "Summary"
msgstr "crwdns150770:0crwdne150770:0" msgstr "crwdns150770:0crwdne150770:0"
@@ -6571,7 +6566,7 @@ msgstr "crwdns150780:0crwdne150780:0"
#. Label of the template (Link) field in DocType 'LMS Certificate' #. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43 #: 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 #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template" msgid "Template"
msgstr "crwdns150782:0crwdne150782:0" msgstr "crwdns150782:0crwdne150782:0"
@@ -6620,7 +6615,7 @@ msgstr "crwdns155204:0crwdne155204:0"
msgid "Thanks and Regards" msgid "Thanks and Regards"
msgstr "crwdns150794:0crwdne150794:0" msgstr "crwdns150794:0crwdne150794:0"
#: lms/lms/utils.py:2247 #: lms/lms/utils.py:2248
msgid "The batch does not exist." msgid "The batch does not exist."
msgstr "crwdns162058:0crwdne162058:0" 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." msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session."
msgstr "crwdns152517:0crwdne152517:0" msgstr "crwdns152517:0crwdne152517:0"
#: lms/lms/utils.py:1747 #: lms/lms/utils.py:1748
msgid "The coupon code '{0}' is invalid." msgid "The coupon code '{0}' is invalid."
msgstr "crwdns161020:0{0}crwdne161020:0" 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 " msgid "The last day to schedule your evaluations is "
msgstr "crwdns164012:0crwdne164012:0" msgstr "crwdns164012:0crwdne164012:0"
#: lms/lms/utils.py:2231 #: lms/lms/utils.py:2232
msgid "The lesson does not exist." msgid "The lesson does not exist."
msgstr "crwdns162060:0crwdne162060:0" msgstr "crwdns162060:0crwdne162060:0"
@@ -6660,7 +6655,7 @@ msgstr "crwdns162060:0crwdne162060:0"
msgid "The slot is already booked by another participant." msgid "The slot is already booked by another participant."
msgstr "crwdns150802:0crwdne150802:0" 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." msgid "The specified batch does not exist."
msgstr "crwdns162062:0crwdne162062:0" msgstr "crwdns162062:0crwdne162062:0"
@@ -6726,15 +6721,15 @@ msgstr "crwdns150818:0crwdne150818:0"
msgid "This class has ended" msgid "This class has ended"
msgstr "crwdns152144:0crwdne152144:0" msgstr "crwdns152144:0crwdne152144:0"
#: lms/lms/utils.py:1776 #: lms/lms/utils.py:1777
msgid "This coupon has expired." msgid "This coupon has expired."
msgstr "crwdns161022:0crwdne161022:0" msgstr "crwdns161022:0crwdne161022:0"
#: lms/lms/utils.py:1779 #: lms/lms/utils.py:1780
msgid "This coupon has reached its maximum usage limit." msgid "This coupon has reached its maximum usage limit."
msgstr "crwdns161024:0crwdne161024:0" msgstr "crwdns161024:0crwdne161024:0"
#: lms/lms/utils.py:1788 #: lms/lms/utils.py:1789
msgid "This coupon is not applicable to this {0}." msgid "This coupon is not applicable to this {0}."
msgstr "crwdns161026:0{0}crwdne161026:0" msgstr "crwdns161026:0{0}crwdne161026:0"
@@ -6742,7 +6737,7 @@ msgstr "crwdns161026:0{0}crwdne161026:0"
msgid "This course has:" msgid "This course has:"
msgstr "crwdns150820:0crwdne150820:0" msgstr "crwdns150820:0crwdne150820:0"
#: lms/lms/utils.py:1707 #: lms/lms/utils.py:1708
msgid "This course is free." msgid "This course is free."
msgstr "crwdns150822:0crwdne150822:0" msgstr "crwdns150822:0crwdne150822:0"
@@ -6799,7 +6794,7 @@ msgid "Thursday"
msgstr "crwdns150832:0crwdne150832:0" msgstr "crwdns150832:0crwdne150832:0"
#. Label of the time (Time) field in DocType 'LMS Live Class' #. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48 #: frontend/src/components/Modals/Event.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:52 #: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Quiz.vue:58 #: frontend/src/components/Quiz.vue:58
#: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -6934,7 +6929,7 @@ msgstr "crwdns150852:0crwdne150852:0"
msgid "To Date" msgid "To Date"
msgstr "crwdns150854:0crwdne150854:0" msgstr "crwdns150854:0crwdne150854:0"
#: lms/lms/utils.py:1721 #: lms/lms/utils.py:1722
msgid "To join this batch, please contact the Administrator." msgid "To join this batch, please contact the Administrator."
msgstr "crwdns150858:0crwdne150858:0" msgstr "crwdns150858:0crwdne150858:0"
@@ -7056,7 +7051,7 @@ msgstr "crwdns150888:0crwdne150888:0"
msgid "Under Review" msgid "Under Review"
msgstr "crwdns150890:0crwdne150890:0" 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" msgid "Unpublished"
msgstr "crwdns152296:0crwdne152296:0" msgstr "crwdns152296:0crwdne152296:0"
@@ -7077,8 +7072,8 @@ msgstr "crwdns150898:0crwdne150898:0"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
#. Label of the upcoming (Check) field in DocType 'LMS Course' #. 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/Batches.vue:330 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:347 #: frontend/src/pages/Courses.vue:346
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming" msgid "Upcoming"
@@ -7220,7 +7215,7 @@ msgid "View Applications"
msgstr "crwdns160738:0crwdne160738:0" msgstr "crwdns160738:0crwdne160738:0"
#: frontend/src/components/CertificationLinks.vue:10 #: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67 #: frontend/src/components/Modals/Event.vue:73
msgid "View Certificate" msgid "View Certificate"
msgstr "crwdns150940:0crwdne150940:0" msgstr "crwdns150940:0crwdne150940:0"
@@ -7327,6 +7322,11 @@ msgstr "crwdns150962:0crwdne150962:0"
msgid "Withdrawn" msgid "Withdrawn"
msgstr "crwdns150964:0crwdne150964:0" 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' #. Label of the work_environment (Section Break) field in DocType 'User'
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
msgid "Work Environment" msgid "Work Environment"
@@ -7427,7 +7427,7 @@ msgstr "crwdns154792:0crwdne154792:0"
msgid "You cannot enroll in an unpublished course." msgid "You cannot enroll in an unpublished course."
msgstr "crwdns162070:0crwdne162070:0" msgstr "crwdns162070:0crwdne162070:0"
#: lms/lms/utils.py:2085 #: lms/lms/utils.py:2086
msgid "You cannot enroll in an unpublished program." msgid "You cannot enroll in an unpublished program."
msgstr "crwdns162072:0crwdne162072:0" msgstr "crwdns162072:0crwdne162072:0"
@@ -7443,11 +7443,11 @@ msgstr "crwdns150996:0{0}crwdne150996:0"
msgid "You cannot schedule evaluations for past slots." msgid "You cannot schedule evaluations for past slots."
msgstr "crwdns150998:0crwdne150998:0" msgstr "crwdns150998:0crwdne150998:0"
#: lms/lms/utils.py:2259 #: lms/lms/utils.py:2260
msgid "You do not have access to this batch." msgid "You do not have access to this batch."
msgstr "crwdns162076:0crwdne162076:0" msgstr "crwdns162076:0crwdne162076:0"
#: lms/lms/utils.py:2242 #: lms/lms/utils.py:2243
msgid "You do not have access to this course." msgid "You do not have access to this course."
msgstr "crwdns162078:0crwdne162078:0" msgstr "crwdns162078:0crwdne162078:0"
+71 -71
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2026-01-16 16:04+0000\n" "POT-Creation-Date: 2026-01-23 16:05+0000\n"
"PO-Revision-Date: 2026-01-21 20:16\n" "PO-Revision-Date: 2026-02-05 06:43\n"
"Last-Translator: jannat@frappe.io\n" "Last-Translator: jannat@frappe.io\n"
"Language-Team: Spanish\n" "Language-Team: Spanish\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -319,7 +319,7 @@ msgid "Administrator"
msgstr "Administrador" msgstr "Administrador"
#. Name of a role #. 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" msgid "All"
msgstr "Todos" msgstr "Todos"
@@ -486,7 +486,7 @@ msgstr "Aprobado"
msgid "Apps" msgid "Apps"
msgstr "Apps" msgstr "Apps"
#: frontend/src/pages/Batches.vue:329 #: frontend/src/pages/Batches.vue:331
msgid "Archived" msgid "Archived"
msgstr "Archivado" 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'
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request' #. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
#. Label of the batch_name (Link) field in DocType 'LMS Live Class' #. 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/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200 #: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125
@@ -878,7 +878,7 @@ msgid "Batch:"
msgstr "Lote:" msgstr "Lote:"
#. Label of the batches (Check) field in DocType 'LMS Settings' #. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue: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 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121
msgid "Batches" msgid "Batches"
msgstr "Lotes" msgstr "Lotes"
@@ -1023,7 +1023,7 @@ msgstr "Enlace de certificado"
msgid "Certificate of Completion" msgid "Certificate of Completion"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:347 #: frontend/src/components/Modals/Event.vue:353
msgid "Certificate saved successfully" msgid "Certificate saved successfully"
msgstr "Certificado guardado correctamente" msgstr "Certificado guardado correctamente"
@@ -1043,7 +1043,7 @@ msgstr ""
#. Label of a chart in the LMS Workspace #. Label of a chart in the LMS Workspace
#. Label of a Card Break in the LMS Workspace #. Label of a Card Break in the LMS Workspace
#. Label of a Link 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/components/Sidebar/AppSidebar.vue:550
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100
#: frontend/src/pages/CourseCertification.vue:10 #: frontend/src/pages/CourseCertification.vue:10
@@ -1771,7 +1771,7 @@ msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:95 #: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127 #: 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/ProgramForm.vue:49
#: frontend/src/pages/Programs/Programs.vue:35 #: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1878,7 +1878,7 @@ msgstr ""
msgid "Create your first quiz" msgid "Create your first quiz"
msgstr "" 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" msgid "Created"
msgstr "Creado" msgstr "Creado"
@@ -1899,7 +1899,7 @@ msgstr ""
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_payment/lms_payment.json #: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Currency" msgid "Currency"
msgstr "Divisa / Moneda" msgstr "Divisa"
#. Label of the current_lesson (Link) field in DocType 'LMS Enrollment' #. Label of the current_lesson (Link) field in DocType 'LMS Enrollment'
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json #: 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 Certificate Request'
#. Label of the date (Date) field in DocType 'LMS Live Class' #. Label of the date (Date) field in DocType 'LMS Live Class'
#. Label of the date (Date) field in DocType 'Scheduled Flow' #. 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 #: frontend/src/components/Modals/LiveClassModal.vue:29
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -2086,7 +2086,7 @@ msgstr ""
#: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/lms_live_class/lms_live_class.json
#: lms/lms/doctype/work_experience/work_experience.json #: lms/lms/doctype/work_experience/work_experience.json
msgid "Description" msgid "Description"
msgstr "" msgstr "Descripción"
#: frontend/src/components/Sidebar/Apps.vue:50 #: frontend/src/components/Sidebar/Apps.vue:50
msgid "Desk" 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/lms_live_class.json
#: lms/lms/doctype/lms_live_class_participant/lms_live_class_participant.json #: lms/lms/doctype/lms_live_class_participant/lms_live_class_participant.json
msgid "Duration" msgid "Duration"
msgstr "" msgstr "Duración"
#. Label of the duration (Data) field in DocType 'LMS Quiz' #. Label of the duration (Data) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:67 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:67 lms/lms/doctype/lms_quiz/lms_quiz.json
@@ -2241,7 +2241,7 @@ msgstr ""
msgid "Edit Email Template" msgid "Edit Email Template"
msgstr "" msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:13
msgid "Edit Payment Gateway" msgid "Edit Payment Gateway"
msgstr "" msgstr ""
@@ -2424,7 +2424,7 @@ msgstr ""
msgid "Enroll Now" msgid "Enroll Now"
msgstr "Inscribirse ahora" 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 #: frontend/src/pages/Programs/StudentPrograms.vue:96
msgid "Enrolled" msgid "Enrolled"
msgstr "" msgstr ""
@@ -2526,7 +2526,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace #. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json #: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json
msgid "Evaluation" msgid "Evaluation"
msgstr "Evaluación" msgstr "Evaluación"
@@ -2551,7 +2551,7 @@ msgstr "Solicitud de evaluación"
msgid "Evaluation end date cannot be less than the batch end date." msgid "Evaluation end date cannot be less than the batch end date."
msgstr "La fecha de finalización de la evaluación no puede ser inferior a la fecha de finalización" 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" msgid "Evaluation saved successfully"
msgstr "La evaluación se guardó correctamente" msgstr "La evaluación se guardó correctamente"
@@ -2664,7 +2664,7 @@ msgstr ""
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33 #: 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 #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date" msgid "Expiry Date"
msgstr "Fecha de caducidad" msgstr "Fecha de caducidad"
@@ -2695,7 +2695,7 @@ msgstr "Explorar más"
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. 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_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail" 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_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge/lms_badge.json #: lms/lms/doctype/lms_badge/lms_badge.json
msgid "Image" msgid "Image"
msgstr "" msgstr "Imagen"
#: frontend/src/components/Modals/EditCoverImage.vue:58 #: frontend/src/components/Modals/EditCoverImage.vue:58
#: frontend/src/components/UnsplashImageBrowser.vue:52 #: frontend/src/components/UnsplashImageBrowser.vue:52
@@ -3209,7 +3209,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course' #. 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_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "In Progress" 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 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate' #. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28 #: 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/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date" msgid "Issue Date"
@@ -3391,7 +3391,7 @@ msgstr "María Pérez"
#. Exercise' #. Exercise'
#: lms/lms/doctype/lms_programming_exercise/lms_programming_exercise.json #: lms/lms/doctype/lms_programming_exercise/lms_programming_exercise.json
msgid "JavaScript" msgid "JavaScript"
msgstr "" msgstr "JavaScript"
#. Label of the job (Link) field in DocType 'LMS Job Application' #. Label of the job (Link) field in DocType 'LMS Job Application'
#: frontend/src/pages/Search/Search.vue:237 #: frontend/src/pages/Search/Search.vue:237
@@ -3456,7 +3456,7 @@ msgstr "Unirse"
msgid "Join Call" msgid "Join Call"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:78 #: frontend/src/components/Modals/Event.vue:84
msgid "Join Meeting" msgid "Join Meeting"
msgstr "Unirse a la reunión" msgstr "Unirse a la reunión"
@@ -3896,7 +3896,7 @@ msgstr "Linkedin"
msgid "LinkedIn ID" msgid "LinkedIn ID"
msgstr "ID de LinkedIn" msgstr "ID de LinkedIn"
#: frontend/src/pages/Courses.vue:341 #: frontend/src/pages/Courses.vue:340
msgid "Live" msgid "Live"
msgstr "En vivo" msgstr "En vivo"
@@ -4417,7 +4417,7 @@ msgstr "Mi calendario"
#: frontend/src/components/Modals/EmailTemplateModal.vue:24 #: frontend/src/components/Modals/EmailTemplateModal.vue:24
msgid "Name" msgid "Name"
msgstr "" msgstr "Nombre"
#. Option for the 'Event' (Select) field in DocType 'LMS Badge' #. Option for the 'Event' (Select) field in DocType 'LMS Badge'
#: frontend/src/components/Settings/BadgeAssignments.vue:21 #: frontend/src/components/Settings/BadgeAssignments.vue:21
@@ -4429,7 +4429,7 @@ msgstr ""
#: frontend/src/components/Settings/Members.vue:17 #: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16 #: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17 #: 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 #: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json #: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New" msgid "New"
@@ -4461,7 +4461,7 @@ msgstr "Nuevo trabajo"
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "Nuevo solicitante de trabajo" msgstr "Nuevo solicitante de trabajo"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:12
msgid "New Payment Gateway" msgid "New Payment Gateway"
msgstr "" msgstr ""
@@ -4778,14 +4778,9 @@ msgstr ""
#: frontend/src/components/UserAvatar.vue:11 #: frontend/src/components/UserAvatar.vue:11
#: frontend/src/pages/CertifiedParticipants.vue:46 #: frontend/src/pages/CertifiedParticipants.vue:46
#: frontend/src/pages/Profile.vue:69 #: frontend/src/pages/Profile.vue:69
msgid "Open to Opportunities" msgid "Open to Work"
msgstr "" 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' #. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:70 #: frontend/src/components/Modals/Question.vue:70
#: lms/lms/doctype/lms_option/lms_option.json #: lms/lms/doctype/lms_option/lms_option.json
@@ -4924,7 +4919,7 @@ msgstr "Parcialmente completo"
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. 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_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass" 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 #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' #. 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_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending" 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." msgid "Please login to continue with payment."
msgstr "Por favor inicie sesión para continuar con el pago." msgstr "Por favor inicie sesión para continuar con el pago."
#: lms/lms/utils.py:2081 #: lms/lms/utils.py:2082
msgid "Please login to enroll in the program." msgid "Please login to enroll in the program."
msgstr "" 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 Course'
#. Label of the published (Check) field in DocType 'LMS Program' #. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51 #: 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/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105
#: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100 #: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5563,7 +5558,7 @@ msgstr "Morado"
#. Exercise' #. Exercise'
#: lms/lms/doctype/lms_programming_exercise/lms_programming_exercise.json #: lms/lms/doctype/lms_programming_exercise/lms_programming_exercise.json
msgid "Python" msgid "Python"
msgstr "" msgstr "Python"
#. Label of the question (Small Text) field in DocType 'Course Lesson' #. Label of the question (Small Text) field in DocType 'Course Lesson'
#. Label of the question (Text Editor) field in DocType 'LMS Assignment' #. 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 (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review' #. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147 #: 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 #: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_course_review/lms_course_review.json #: lms/lms/doctype/lms_course_review/lms_course_review.json
msgid "Rating" msgid "Rating"
msgstr "" msgstr "Clasificación"
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.py:18 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.py:18
msgid "Rating cannot be 0" msgid "Rating cannot be 0"
@@ -5929,14 +5924,14 @@ msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:65 #: frontend/src/components/Modals/AssignmentForm.vue:65
#: frontend/src/components/Modals/EditProfile.vue:121 #: frontend/src/components/Modals/EditProfile.vue:121
#: frontend/src/components/Modals/EmailTemplateModal.vue:12 #: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:115 #: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:151 #: frontend/src/components/Modals/Event.vue:157
#: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78 #: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/Coupons/CouponDetails.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/components/Settings/Transactions/TransactionDetails.vue:129
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17 #: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14 #: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
@@ -6048,7 +6043,7 @@ msgstr ""
msgid "Select Date" msgid "Select Date"
msgstr "" msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:26
msgid "Select Payment Gateway" msgid "Select Payment Gateway"
msgstr "" msgstr ""
@@ -6114,7 +6109,7 @@ msgstr ""
#: frontend/src/components/Controls/ColorSwatches.vue:13 #: frontend/src/components/Controls/ColorSwatches.vue:13
msgid "Set Color" msgid "Set Color"
msgstr "" msgstr "Establecer Color"
#: lms/templates/emails/community_course_membership.html:1 #: lms/templates/emails/community_course_membership.html:1
msgid "Set your Password" msgid "Set your Password"
@@ -6364,7 +6359,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission' #. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case 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/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19 #: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6475,7 +6470,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation' #. 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 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary" msgid "Summary"
msgstr "Resumen" msgstr "Resumen"
@@ -6571,7 +6566,7 @@ msgstr "Trabajo en equipo"
#. Label of the template (Link) field in DocType 'LMS Certificate' #. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43 #: 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 #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template" msgid "Template"
msgstr "" msgstr ""
@@ -6607,7 +6602,7 @@ msgstr ""
#: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment/lms_assignment.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
msgid "Text" msgid "Text"
msgstr "" msgstr "Texto"
#: frontend/src/components/BatchFeedback.vue:6 #: frontend/src/components/BatchFeedback.vue:6
msgid "Thank you for providing your feedback." msgid "Thank you for providing your feedback."
@@ -6620,7 +6615,7 @@ msgstr ""
msgid "Thanks and Regards" msgid "Thanks and Regards"
msgstr "Gracias y saludos" msgstr "Gracias y saludos"
#: lms/lms/utils.py:2247 #: lms/lms/utils.py:2248
msgid "The batch does not exist." msgid "The batch does not exist."
msgstr "" 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." msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session."
msgstr "" msgstr ""
#: lms/lms/utils.py:1747 #: lms/lms/utils.py:1748
msgid "The coupon code '{0}' is invalid." msgid "The coupon code '{0}' is invalid."
msgstr "" msgstr ""
@@ -6652,7 +6647,7 @@ msgstr ""
msgid "The last day to schedule your evaluations is " msgid "The last day to schedule your evaluations is "
msgstr "" msgstr ""
#: lms/lms/utils.py:2231 #: lms/lms/utils.py:2232
msgid "The lesson does not exist." msgid "The lesson does not exist."
msgstr "" msgstr ""
@@ -6660,7 +6655,7 @@ msgstr ""
msgid "The slot is already booked by another participant." msgid "The slot is already booked by another participant."
msgstr "La plaza ya está reservada por otro participante." 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." msgid "The specified batch does not exist."
msgstr "" msgstr ""
@@ -6726,15 +6721,15 @@ msgstr "Este certificado no caduca"
msgid "This class has ended" msgid "This class has ended"
msgstr "" msgstr ""
#: lms/lms/utils.py:1776 #: lms/lms/utils.py:1777
msgid "This coupon has expired." msgid "This coupon has expired."
msgstr "" msgstr ""
#: lms/lms/utils.py:1779 #: lms/lms/utils.py:1780
msgid "This coupon has reached its maximum usage limit." msgid "This coupon has reached its maximum usage limit."
msgstr "" msgstr ""
#: lms/lms/utils.py:1788 #: lms/lms/utils.py:1789
msgid "This coupon is not applicable to this {0}." msgid "This coupon is not applicable to this {0}."
msgstr "" msgstr ""
@@ -6742,7 +6737,7 @@ msgstr ""
msgid "This course has:" msgid "This course has:"
msgstr "Este curso tiene:" msgstr "Este curso tiene:"
#: lms/lms/utils.py:1707 #: lms/lms/utils.py:1708
msgid "This course is free." msgid "This course is free."
msgstr "Este curso es gratuito." msgstr "Este curso es gratuito."
@@ -6799,7 +6794,7 @@ msgid "Thursday"
msgstr "" msgstr ""
#. Label of the time (Time) field in DocType 'LMS Live Class' #. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48 #: frontend/src/components/Modals/Event.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:52 #: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Quiz.vue:58 #: frontend/src/components/Quiz.vue:58
#: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -6934,7 +6929,7 @@ msgstr ""
msgid "To Date" msgid "To Date"
msgstr "" msgstr ""
#: lms/lms/utils.py:1721 #: lms/lms/utils.py:1722
msgid "To join this batch, please contact the Administrator." msgid "To join this batch, please contact the Administrator."
msgstr "Para unirse a este lote, comuníquese con el Administrador." msgstr "Para unirse a este lote, comuníquese con el Administrador."
@@ -7010,7 +7005,7 @@ msgstr ""
#: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json #: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json
#: lms/templates/assessments.html:14 #: lms/templates/assessments.html:14
msgid "Type" msgid "Type"
msgstr "" msgstr "Tipo"
#: frontend/src/utils/markdownParser.js:11 #: frontend/src/utils/markdownParser.js:11
msgid "Type '/' for commands or select text to format" 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/lms_assignment.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
msgid "URL" msgid "URL"
msgstr "" msgstr "URL"
#. Label of the uuid (Data) field in DocType 'LMS Live Class' #. Label of the uuid (Data) field in DocType 'LMS Live Class'
#: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -7056,7 +7051,7 @@ msgstr "No disponible Desde Fecha no puede ser mayor que No disponible Hasta Fec
msgid "Under Review" msgid "Under Review"
msgstr "En Revisión" 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" msgid "Unpublished"
msgstr "" msgstr ""
@@ -7077,8 +7072,8 @@ msgstr "Rol no estructurado"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
#. Label of the upcoming (Check) field in DocType 'LMS Course' #. 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/Batches.vue:330 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:347 #: frontend/src/pages/Courses.vue:346
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming" msgid "Upcoming"
@@ -7220,7 +7215,7 @@ msgid "View Applications"
msgstr "" msgstr ""
#: frontend/src/components/CertificationLinks.vue:10 #: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67 #: frontend/src/components/Modals/Event.vue:73
msgid "View Certificate" msgid "View Certificate"
msgstr "Ver certificado" msgstr "Ver certificado"
@@ -7327,6 +7322,11 @@ msgstr "Con esta certificación, ahora puede mostrar sus habilidades actualizada
msgid "Withdrawn" msgid "Withdrawn"
msgstr "Retirado" 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' #. Label of the work_environment (Section Break) field in DocType 'User'
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
msgid "Work Environment" msgid "Work Environment"
@@ -7427,7 +7427,7 @@ msgstr ""
msgid "You cannot enroll in an unpublished course." msgid "You cannot enroll in an unpublished course."
msgstr "" msgstr ""
#: lms/lms/utils.py:2085 #: lms/lms/utils.py:2086
msgid "You cannot enroll in an unpublished program." msgid "You cannot enroll in an unpublished program."
msgstr "" msgstr ""
@@ -7443,11 +7443,11 @@ msgstr "No puede programar evaluaciones después de {0}."
msgid "You cannot schedule evaluations for past slots." msgid "You cannot schedule evaluations for past slots."
msgstr "No puede programar evaluaciones para espacios anteriores." 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." msgid "You do not have access to this batch."
msgstr "" msgstr ""
#: lms/lms/utils.py:2242 #: lms/lms/utils.py:2243
msgid "You do not have access to this course." msgid "You do not have access to this course."
msgstr "" msgstr ""
@@ -7916,7 +7916,7 @@ msgstr ""
#. Count format of shortcut in the LMS Workspace #. Count format of shortcut in the LMS Workspace
#: lms/lms/workspace/lms/lms.json #: lms/lms/workspace/lms/lms.json
msgid "{} Active" msgid "{} Active"
msgstr "{} Activo" msgstr ""
#. Count format of shortcut in the LMS Workspace #. Count format of shortcut in the LMS Workspace
#: lms/lms/workspace/lms/lms.json #: lms/lms/workspace/lms/lms.json
+59 -59
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2026-01-16 16:04+0000\n" "POT-Creation-Date: 2026-01-23 16:05+0000\n"
"PO-Revision-Date: 2026-01-21 20:16\n" "PO-Revision-Date: 2026-02-05 06:43\n"
"Last-Translator: jannat@frappe.io\n" "Last-Translator: jannat@frappe.io\n"
"Language-Team: Persian\n" "Language-Team: Persian\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -319,7 +319,7 @@ msgid "Administrator"
msgstr "ادمین" msgstr "ادمین"
#. Name of a role #. 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" msgid "All"
msgstr "همه" msgstr "همه"
@@ -486,7 +486,7 @@ msgstr "تأیید شده"
msgid "Apps" msgid "Apps"
msgstr "برنامه‌ها" msgstr "برنامه‌ها"
#: frontend/src/pages/Batches.vue:329 #: frontend/src/pages/Batches.vue:331
msgid "Archived" msgid "Archived"
msgstr "" 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'
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request' #. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
#. Label of the batch_name (Link) field in DocType 'LMS Live Class' #. 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/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200 #: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125
@@ -878,7 +878,7 @@ msgid "Batch:"
msgstr "دسته:" msgstr "دسته:"
#. Label of the batches (Check) field in DocType 'LMS Settings' #. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue: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 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121
msgid "Batches" msgid "Batches"
msgstr "" msgstr ""
@@ -1023,7 +1023,7 @@ msgstr "لینک گواهی"
msgid "Certificate of Completion" msgid "Certificate of Completion"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:347 #: frontend/src/components/Modals/Event.vue:353
msgid "Certificate saved successfully" msgid "Certificate saved successfully"
msgstr "" msgstr ""
@@ -1043,7 +1043,7 @@ msgstr ""
#. Label of a chart in the LMS Workspace #. Label of a chart in the LMS Workspace
#. Label of a Card Break in the LMS Workspace #. Label of a Card Break in the LMS Workspace
#. Label of a Link 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/components/Sidebar/AppSidebar.vue:550
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100
#: frontend/src/pages/CourseCertification.vue:10 #: frontend/src/pages/CourseCertification.vue:10
@@ -1454,7 +1454,7 @@ msgstr ""
#. Label of the confirmation_email_template (Link) field in DocType 'LMS Batch' #. Label of the confirmation_email_template (Link) field in DocType 'LMS Batch'
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
msgid "Confirmation Email Template" msgid "Confirmation Email Template"
msgstr "" msgstr "الگوی ایمیل تأیید"
#: lms/lms/doctype/lms_certificate/lms_certificate.py:32 #: lms/lms/doctype/lms_certificate/lms_certificate.py:32
msgid "Congratulations on getting certified!" msgid "Congratulations on getting certified!"
@@ -1771,7 +1771,7 @@ msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:95 #: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127 #: 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/ProgramForm.vue:49
#: frontend/src/pages/Programs/Programs.vue:35 #: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1878,7 +1878,7 @@ msgstr "اولین دوره خود را ایجاد کنید"
msgid "Create your first quiz" msgid "Create your first quiz"
msgstr "" 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" msgid "Created"
msgstr "ایجاد شده" 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 Certificate Request'
#. Label of the date (Date) field in DocType 'LMS Live Class' #. Label of the date (Date) field in DocType 'LMS Live Class'
#. Label of the date (Date) field in DocType 'Scheduled Flow' #. 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 #: frontend/src/components/Modals/LiveClassModal.vue:29
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -2241,7 +2241,7 @@ msgstr ""
msgid "Edit Email Template" msgid "Edit Email Template"
msgstr "" msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:13
msgid "Edit Payment Gateway" msgid "Edit Payment Gateway"
msgstr "ویرایش درگاه پرداخت" msgstr "ویرایش درگاه پرداخت"
@@ -2424,7 +2424,7 @@ msgstr ""
msgid "Enroll Now" msgid "Enroll Now"
msgstr "" 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 #: frontend/src/pages/Programs/StudentPrograms.vue:96
msgid "Enrolled" msgid "Enrolled"
msgstr "" msgstr ""
@@ -2526,7 +2526,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace #. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json #: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json
msgid "Evaluation" msgid "Evaluation"
msgstr "ارزیابی" msgstr "ارزیابی"
@@ -2551,7 +2551,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date." msgid "Evaluation end date cannot be less than the batch end date."
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:286 #: frontend/src/components/Modals/Event.vue:292
msgid "Evaluation saved successfully" msgid "Evaluation saved successfully"
msgstr "" msgstr ""
@@ -2664,7 +2664,7 @@ msgstr ""
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33 #: 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 #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date" msgid "Expiry Date"
msgstr "تاریخ انقضا" msgstr "تاریخ انقضا"
@@ -2695,7 +2695,7 @@ msgstr ""
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. 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_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail" msgid "Fail"
@@ -3209,7 +3209,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course' #. 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_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "In Progress" 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 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate' #. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28 #: 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/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date" msgid "Issue Date"
@@ -3456,7 +3456,7 @@ msgstr "پیوستن"
msgid "Join Call" msgid "Join Call"
msgstr "پیوستن به تماس" msgstr "پیوستن به تماس"
#: frontend/src/components/Modals/Event.vue:78 #: frontend/src/components/Modals/Event.vue:84
msgid "Join Meeting" msgid "Join Meeting"
msgstr "" msgstr ""
@@ -3896,7 +3896,7 @@ msgstr "لینکدین"
msgid "LinkedIn ID" msgid "LinkedIn ID"
msgstr "" msgstr ""
#: frontend/src/pages/Courses.vue:341 #: frontend/src/pages/Courses.vue:340
msgid "Live" msgid "Live"
msgstr "فعال" msgstr "فعال"
@@ -4429,7 +4429,7 @@ msgstr "نام"
#: frontend/src/components/Settings/Members.vue:17 #: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16 #: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17 #: 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 #: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json #: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New" msgid "New"
@@ -4461,7 +4461,7 @@ msgstr "شغل جدید"
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "" msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:12
msgid "New Payment Gateway" msgid "New Payment Gateway"
msgstr "درگاه پرداخت جدید" msgstr "درگاه پرداخت جدید"
@@ -4778,14 +4778,9 @@ msgstr ""
#: frontend/src/components/UserAvatar.vue:11 #: frontend/src/components/UserAvatar.vue:11
#: frontend/src/pages/CertifiedParticipants.vue:46 #: frontend/src/pages/CertifiedParticipants.vue:46
#: frontend/src/pages/Profile.vue:69 #: frontend/src/pages/Profile.vue:69
msgid "Open to Opportunities" msgid "Open to Work"
msgstr "" 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' #. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:70 #: frontend/src/components/Modals/Question.vue:70
#: lms/lms/doctype/lms_option/lms_option.json #: lms/lms/doctype/lms_option/lms_option.json
@@ -4924,7 +4919,7 @@ msgstr ""
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. 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_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass" msgid "Pass"
@@ -5054,7 +5049,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' #. 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_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending" msgid "Pending"
@@ -5194,7 +5189,7 @@ msgstr ""
msgid "Please login to continue with payment." msgid "Please login to continue with payment."
msgstr "" msgstr ""
#: lms/lms/utils.py:2081 #: lms/lms/utils.py:2082
msgid "Please login to enroll in the program." msgid "Please login to enroll in the program."
msgstr "" 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 Course'
#. Label of the published (Check) field in DocType 'LMS Program' #. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51 #: 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/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105
#: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100 #: 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 (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review' #. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147 #: 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 #: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.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/AssignmentForm.vue:65
#: frontend/src/components/Modals/EditProfile.vue:121 #: frontend/src/components/Modals/EditProfile.vue:121
#: frontend/src/components/Modals/EmailTemplateModal.vue:12 #: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:115 #: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:151 #: frontend/src/components/Modals/Event.vue:157
#: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78 #: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/Coupons/CouponDetails.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/components/Settings/Transactions/TransactionDetails.vue:129
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17 #: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14 #: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
@@ -6048,7 +6043,7 @@ msgstr ""
msgid "Select Date" msgid "Select Date"
msgstr "" msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:26
msgid "Select Payment Gateway" msgid "Select Payment Gateway"
msgstr "انتخاب درگاه پرداخت" msgstr "انتخاب درگاه پرداخت"
@@ -6364,7 +6359,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission' #. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case 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/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19 #: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6475,7 +6470,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation' #. 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 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary" msgid "Summary"
msgstr "خلاصه" msgstr "خلاصه"
@@ -6571,7 +6566,7 @@ msgstr ""
#. Label of the template (Link) field in DocType 'LMS Certificate' #. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43 #: 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 #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template" msgid "Template"
msgstr "الگو" msgstr "الگو"
@@ -6620,7 +6615,7 @@ msgstr ""
msgid "Thanks and Regards" msgid "Thanks and Regards"
msgstr "" msgstr ""
#: lms/lms/utils.py:2247 #: lms/lms/utils.py:2248
msgid "The batch does not exist." msgid "The batch does not exist."
msgstr "" 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." msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session."
msgstr "" msgstr ""
#: lms/lms/utils.py:1747 #: lms/lms/utils.py:1748
msgid "The coupon code '{0}' is invalid." msgid "The coupon code '{0}' is invalid."
msgstr "" msgstr ""
@@ -6652,7 +6647,7 @@ msgstr ""
msgid "The last day to schedule your evaluations is " msgid "The last day to schedule your evaluations is "
msgstr "" msgstr ""
#: lms/lms/utils.py:2231 #: lms/lms/utils.py:2232
msgid "The lesson does not exist." msgid "The lesson does not exist."
msgstr "" msgstr ""
@@ -6660,7 +6655,7 @@ msgstr ""
msgid "The slot is already booked by another participant." msgid "The slot is already booked by another participant."
msgstr "" 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." msgid "The specified batch does not exist."
msgstr "" msgstr ""
@@ -6726,15 +6721,15 @@ msgstr ""
msgid "This class has ended" msgid "This class has ended"
msgstr "این کلاس به پایان رسید" msgstr "این کلاس به پایان رسید"
#: lms/lms/utils.py:1776 #: lms/lms/utils.py:1777
msgid "This coupon has expired." msgid "This coupon has expired."
msgstr "" msgstr ""
#: lms/lms/utils.py:1779 #: lms/lms/utils.py:1780
msgid "This coupon has reached its maximum usage limit." msgid "This coupon has reached its maximum usage limit."
msgstr "" msgstr ""
#: lms/lms/utils.py:1788 #: lms/lms/utils.py:1789
msgid "This coupon is not applicable to this {0}." msgid "This coupon is not applicable to this {0}."
msgstr "" msgstr ""
@@ -6742,7 +6737,7 @@ msgstr ""
msgid "This course has:" msgid "This course has:"
msgstr "" msgstr ""
#: lms/lms/utils.py:1707 #: lms/lms/utils.py:1708
msgid "This course is free." msgid "This course is free."
msgstr "" msgstr ""
@@ -6799,7 +6794,7 @@ msgid "Thursday"
msgstr "پنج‌شنبه" msgstr "پنج‌شنبه"
#. Label of the time (Time) field in DocType 'LMS Live Class' #. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48 #: frontend/src/components/Modals/Event.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:52 #: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Quiz.vue:58 #: frontend/src/components/Quiz.vue:58
#: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -6934,7 +6929,7 @@ msgstr "به"
msgid "To Date" msgid "To Date"
msgstr "تا تاریخ" msgstr "تا تاریخ"
#: lms/lms/utils.py:1721 #: lms/lms/utils.py:1722
msgid "To join this batch, please contact the Administrator." msgid "To join this batch, please contact the Administrator."
msgstr "" msgstr ""
@@ -7056,7 +7051,7 @@ msgstr ""
msgid "Under Review" msgid "Under Review"
msgstr "تحت بررسی" 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" msgid "Unpublished"
msgstr "منتشر نشده" msgstr "منتشر نشده"
@@ -7077,8 +7072,8 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
#. Label of the upcoming (Check) field in DocType 'LMS Course' #. 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/Batches.vue:330 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:347 #: frontend/src/pages/Courses.vue:346
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming" msgid "Upcoming"
@@ -7220,7 +7215,7 @@ msgid "View Applications"
msgstr "مشاهده درخواست‌ها" msgstr "مشاهده درخواست‌ها"
#: frontend/src/components/CertificationLinks.vue:10 #: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67 #: frontend/src/components/Modals/Event.vue:73
msgid "View Certificate" msgid "View Certificate"
msgstr "" msgstr ""
@@ -7327,6 +7322,11 @@ msgstr ""
msgid "Withdrawn" msgid "Withdrawn"
msgstr "" 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' #. Label of the work_environment (Section Break) field in DocType 'User'
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
msgid "Work Environment" msgid "Work Environment"
@@ -7427,7 +7427,7 @@ msgstr "شما نمی‌توانید نقش‌ها را در حالت فقط خ
msgid "You cannot enroll in an unpublished course." msgid "You cannot enroll in an unpublished course."
msgstr "" msgstr ""
#: lms/lms/utils.py:2085 #: lms/lms/utils.py:2086
msgid "You cannot enroll in an unpublished program." msgid "You cannot enroll in an unpublished program."
msgstr "" msgstr ""
@@ -7443,11 +7443,11 @@ msgstr ""
msgid "You cannot schedule evaluations for past slots." msgid "You cannot schedule evaluations for past slots."
msgstr "" msgstr ""
#: lms/lms/utils.py:2259 #: lms/lms/utils.py:2260
msgid "You do not have access to this batch." msgid "You do not have access to this batch."
msgstr "" msgstr ""
#: lms/lms/utils.py:2242 #: lms/lms/utils.py:2243
msgid "You do not have access to this course." msgid "You do not have access to this course."
msgstr "" msgstr ""
+59 -59
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2026-01-16 16:04+0000\n" "POT-Creation-Date: 2026-01-23 16:05+0000\n"
"PO-Revision-Date: 2026-01-21 20:16\n" "PO-Revision-Date: 2026-02-05 06:43\n"
"Last-Translator: jannat@frappe.io\n" "Last-Translator: jannat@frappe.io\n"
"Language-Team: French\n" "Language-Team: French\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -319,7 +319,7 @@ msgid "Administrator"
msgstr "" msgstr ""
#. Name of a role #. 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" msgid "All"
msgstr "Tous" msgstr "Tous"
@@ -486,7 +486,7 @@ msgstr "Approuvé"
msgid "Apps" msgid "Apps"
msgstr "" msgstr ""
#: frontend/src/pages/Batches.vue:329 #: frontend/src/pages/Batches.vue:331
msgid "Archived" msgid "Archived"
msgstr "" 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'
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request' #. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
#. Label of the batch_name (Link) field in DocType 'LMS Live Class' #. 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/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200 #: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125
@@ -878,7 +878,7 @@ msgid "Batch:"
msgstr "Lot:" msgstr "Lot:"
#. Label of the batches (Check) field in DocType 'LMS Settings' #. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue: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 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121
msgid "Batches" msgid "Batches"
msgstr "Lots" msgstr "Lots"
@@ -1023,7 +1023,7 @@ msgstr "Lien de certificat"
msgid "Certificate of Completion" msgid "Certificate of Completion"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:347 #: frontend/src/components/Modals/Event.vue:353
msgid "Certificate saved successfully" msgid "Certificate saved successfully"
msgstr "" msgstr ""
@@ -1043,7 +1043,7 @@ msgstr ""
#. Label of a chart in the LMS Workspace #. Label of a chart in the LMS Workspace
#. Label of a Card Break in the LMS Workspace #. Label of a Card Break in the LMS Workspace
#. Label of a Link 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/components/Sidebar/AppSidebar.vue:550
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100
#: frontend/src/pages/CourseCertification.vue:10 #: frontend/src/pages/CourseCertification.vue:10
@@ -1771,7 +1771,7 @@ msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:95 #: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127 #: 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/ProgramForm.vue:49
#: frontend/src/pages/Programs/Programs.vue:35 #: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1878,7 +1878,7 @@ msgstr ""
msgid "Create your first quiz" msgid "Create your first quiz"
msgstr "" 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" msgid "Created"
msgstr "Créé" 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 Certificate Request'
#. Label of the date (Date) field in DocType 'LMS Live Class' #. Label of the date (Date) field in DocType 'LMS Live Class'
#. Label of the date (Date) field in DocType 'Scheduled Flow' #. 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 #: frontend/src/components/Modals/LiveClassModal.vue:29
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -2241,7 +2241,7 @@ msgstr ""
msgid "Edit Email Template" msgid "Edit Email Template"
msgstr "" msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:13
msgid "Edit Payment Gateway" msgid "Edit Payment Gateway"
msgstr "" msgstr ""
@@ -2424,7 +2424,7 @@ msgstr ""
msgid "Enroll Now" msgid "Enroll Now"
msgstr "" 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 #: frontend/src/pages/Programs/StudentPrograms.vue:96
msgid "Enrolled" msgid "Enrolled"
msgstr "" msgstr ""
@@ -2526,7 +2526,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace #. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json #: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json
msgid "Evaluation" msgid "Evaluation"
msgstr "Évaluation" msgstr "Évaluation"
@@ -2551,7 +2551,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date." msgid "Evaluation end date cannot be less than the batch end date."
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:286 #: frontend/src/components/Modals/Event.vue:292
msgid "Evaluation saved successfully" msgid "Evaluation saved successfully"
msgstr "" msgstr ""
@@ -2664,7 +2664,7 @@ msgstr ""
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33 #: 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 #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date" msgid "Expiry Date"
msgstr "Date d'expiration" msgstr "Date d'expiration"
@@ -2695,7 +2695,7 @@ msgstr ""
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. 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_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail" msgid "Fail"
@@ -3209,7 +3209,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course' #. 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_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "In Progress" 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 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate' #. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28 #: 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/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date" msgid "Issue Date"
@@ -3456,7 +3456,7 @@ msgstr "Joindre"
msgid "Join Call" msgid "Join Call"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:78 #: frontend/src/components/Modals/Event.vue:84
msgid "Join Meeting" msgid "Join Meeting"
msgstr "" msgstr ""
@@ -3896,7 +3896,7 @@ msgstr ""
msgid "LinkedIn ID" msgid "LinkedIn ID"
msgstr "" msgstr ""
#: frontend/src/pages/Courses.vue:341 #: frontend/src/pages/Courses.vue:340
msgid "Live" msgid "Live"
msgstr "" msgstr ""
@@ -4429,7 +4429,7 @@ msgstr ""
#: frontend/src/components/Settings/Members.vue:17 #: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16 #: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17 #: 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 #: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json #: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New" msgid "New"
@@ -4461,7 +4461,7 @@ msgstr ""
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "" msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:12
msgid "New Payment Gateway" msgid "New Payment Gateway"
msgstr "" msgstr ""
@@ -4778,14 +4778,9 @@ msgstr ""
#: frontend/src/components/UserAvatar.vue:11 #: frontend/src/components/UserAvatar.vue:11
#: frontend/src/pages/CertifiedParticipants.vue:46 #: frontend/src/pages/CertifiedParticipants.vue:46
#: frontend/src/pages/Profile.vue:69 #: frontend/src/pages/Profile.vue:69
msgid "Open to Opportunities" msgid "Open to Work"
msgstr "" 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' #. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:70 #: frontend/src/components/Modals/Question.vue:70
#: lms/lms/doctype/lms_option/lms_option.json #: lms/lms/doctype/lms_option/lms_option.json
@@ -4842,7 +4837,7 @@ msgstr ""
#. Option for the 'User Category' (Select) field in DocType 'User' #. Option for the 'User Category' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json lms/templates/signup-form.html:28 #: lms/fixtures/custom_field.json lms/templates/signup-form.html:28
msgid "Others" msgid "Others"
msgstr "Autres" msgstr ""
#: frontend/src/pages/Home/StudentHome.vue:9 #: frontend/src/pages/Home/StudentHome.vue:9
msgid "Our Popular Courses" msgid "Our Popular Courses"
@@ -4924,7 +4919,7 @@ msgstr ""
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. 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_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass" msgid "Pass"
@@ -5054,7 +5049,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' #. 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_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending" msgid "Pending"
@@ -5194,7 +5189,7 @@ msgstr ""
msgid "Please login to continue with payment." msgid "Please login to continue with payment."
msgstr "" msgstr ""
#: lms/lms/utils.py:2081 #: lms/lms/utils.py:2082
msgid "Please login to enroll in the program." msgid "Please login to enroll in the program."
msgstr "" 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 Course'
#. Label of the published (Check) field in DocType 'LMS Program' #. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51 #: 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/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105
#: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100 #: 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 (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review' #. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147 #: 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 #: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.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/AssignmentForm.vue:65
#: frontend/src/components/Modals/EditProfile.vue:121 #: frontend/src/components/Modals/EditProfile.vue:121
#: frontend/src/components/Modals/EmailTemplateModal.vue:12 #: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:115 #: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:151 #: frontend/src/components/Modals/Event.vue:157
#: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78 #: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/Coupons/CouponDetails.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/components/Settings/Transactions/TransactionDetails.vue:129
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17 #: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14 #: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
@@ -6048,7 +6043,7 @@ msgstr ""
msgid "Select Date" msgid "Select Date"
msgstr "" msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:26
msgid "Select Payment Gateway" msgid "Select Payment Gateway"
msgstr "" msgstr ""
@@ -6364,7 +6359,7 @@ msgstr "Statistiques"
#. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission' #. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case 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/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19 #: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6475,7 +6470,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation' #. 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 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary" msgid "Summary"
msgstr "Résumé" msgstr "Résumé"
@@ -6571,7 +6566,7 @@ msgstr ""
#. Label of the template (Link) field in DocType 'LMS Certificate' #. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43 #: 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 #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template" msgid "Template"
msgstr "" msgstr ""
@@ -6620,7 +6615,7 @@ msgstr ""
msgid "Thanks and Regards" msgid "Thanks and Regards"
msgstr "" msgstr ""
#: lms/lms/utils.py:2247 #: lms/lms/utils.py:2248
msgid "The batch does not exist." msgid "The batch does not exist."
msgstr "" 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." msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session."
msgstr "" msgstr ""
#: lms/lms/utils.py:1747 #: lms/lms/utils.py:1748
msgid "The coupon code '{0}' is invalid." msgid "The coupon code '{0}' is invalid."
msgstr "" msgstr ""
@@ -6652,7 +6647,7 @@ msgstr ""
msgid "The last day to schedule your evaluations is " msgid "The last day to schedule your evaluations is "
msgstr "" msgstr ""
#: lms/lms/utils.py:2231 #: lms/lms/utils.py:2232
msgid "The lesson does not exist." msgid "The lesson does not exist."
msgstr "" msgstr ""
@@ -6660,7 +6655,7 @@ msgstr ""
msgid "The slot is already booked by another participant." msgid "The slot is already booked by another participant."
msgstr "" 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." msgid "The specified batch does not exist."
msgstr "" msgstr ""
@@ -6726,15 +6721,15 @@ msgstr ""
msgid "This class has ended" msgid "This class has ended"
msgstr "" msgstr ""
#: lms/lms/utils.py:1776 #: lms/lms/utils.py:1777
msgid "This coupon has expired." msgid "This coupon has expired."
msgstr "" msgstr ""
#: lms/lms/utils.py:1779 #: lms/lms/utils.py:1780
msgid "This coupon has reached its maximum usage limit." msgid "This coupon has reached its maximum usage limit."
msgstr "" msgstr ""
#: lms/lms/utils.py:1788 #: lms/lms/utils.py:1789
msgid "This coupon is not applicable to this {0}." msgid "This coupon is not applicable to this {0}."
msgstr "" msgstr ""
@@ -6742,7 +6737,7 @@ msgstr ""
msgid "This course has:" msgid "This course has:"
msgstr "" msgstr ""
#: lms/lms/utils.py:1707 #: lms/lms/utils.py:1708
msgid "This course is free." msgid "This course is free."
msgstr "" msgstr ""
@@ -6799,7 +6794,7 @@ msgid "Thursday"
msgstr "" msgstr ""
#. Label of the time (Time) field in DocType 'LMS Live Class' #. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48 #: frontend/src/components/Modals/Event.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:52 #: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Quiz.vue:58 #: frontend/src/components/Quiz.vue:58
#: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -6934,7 +6929,7 @@ msgstr ""
msgid "To Date" msgid "To Date"
msgstr "" msgstr ""
#: lms/lms/utils.py:1721 #: lms/lms/utils.py:1722
msgid "To join this batch, please contact the Administrator." msgid "To join this batch, please contact the Administrator."
msgstr "" msgstr ""
@@ -7056,7 +7051,7 @@ msgstr ""
msgid "Under Review" msgid "Under Review"
msgstr "En cours de révision" 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" msgid "Unpublished"
msgstr "" msgstr ""
@@ -7077,8 +7072,8 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
#. Label of the upcoming (Check) field in DocType 'LMS Course' #. 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/Batches.vue:330 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:347 #: frontend/src/pages/Courses.vue:346
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming" msgid "Upcoming"
@@ -7220,7 +7215,7 @@ msgid "View Applications"
msgstr "" msgstr ""
#: frontend/src/components/CertificationLinks.vue:10 #: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67 #: frontend/src/components/Modals/Event.vue:73
msgid "View Certificate" msgid "View Certificate"
msgstr "" msgstr ""
@@ -7327,6 +7322,11 @@ msgstr ""
msgid "Withdrawn" msgid "Withdrawn"
msgstr "" 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' #. Label of the work_environment (Section Break) field in DocType 'User'
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
msgid "Work Environment" msgid "Work Environment"
@@ -7427,7 +7427,7 @@ msgstr ""
msgid "You cannot enroll in an unpublished course." msgid "You cannot enroll in an unpublished course."
msgstr "" msgstr ""
#: lms/lms/utils.py:2085 #: lms/lms/utils.py:2086
msgid "You cannot enroll in an unpublished program." msgid "You cannot enroll in an unpublished program."
msgstr "" msgstr ""
@@ -7443,11 +7443,11 @@ msgstr ""
msgid "You cannot schedule evaluations for past slots." msgid "You cannot schedule evaluations for past slots."
msgstr "" msgstr ""
#: lms/lms/utils.py:2259 #: lms/lms/utils.py:2260
msgid "You do not have access to this batch." msgid "You do not have access to this batch."
msgstr "" msgstr ""
#: lms/lms/utils.py:2242 #: lms/lms/utils.py:2243
msgid "You do not have access to this course." msgid "You do not have access to this course."
msgstr "" msgstr ""
+59 -59
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2026-01-16 16:04+0000\n" "POT-Creation-Date: 2026-01-23 16:05+0000\n"
"PO-Revision-Date: 2026-01-21 20:16\n" "PO-Revision-Date: 2026-02-05 06:43\n"
"Last-Translator: jannat@frappe.io\n" "Last-Translator: jannat@frappe.io\n"
"Language-Team: Croatian\n" "Language-Team: Croatian\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -319,7 +319,7 @@ msgid "Administrator"
msgstr "Administrator" msgstr "Administrator"
#. Name of a role #. 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" msgid "All"
msgstr "Sve" msgstr "Sve"
@@ -486,7 +486,7 @@ msgstr "Odobreno"
msgid "Apps" msgid "Apps"
msgstr "Aplikacije" msgstr "Aplikacije"
#: frontend/src/pages/Batches.vue:329 #: frontend/src/pages/Batches.vue:331
msgid "Archived" msgid "Archived"
msgstr "Arhivirano" 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'
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request' #. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
#. Label of the batch_name (Link) field in DocType 'LMS Live Class' #. 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/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200 #: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125
@@ -878,7 +878,7 @@ msgid "Batch:"
msgstr "Grupa:" msgstr "Grupa:"
#. Label of the batches (Check) field in DocType 'LMS Settings' #. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue: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 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121
msgid "Batches" msgid "Batches"
msgstr "Grupe" msgstr "Grupe"
@@ -1023,7 +1023,7 @@ msgstr "Veza Certifikata"
msgid "Certificate of Completion" msgid "Certificate of Completion"
msgstr "Certifikat o Završetku" msgstr "Certifikat o Završetku"
#: frontend/src/components/Modals/Event.vue:347 #: frontend/src/components/Modals/Event.vue:353
msgid "Certificate saved successfully" msgid "Certificate saved successfully"
msgstr "Certifikat je uspješno spremljen" 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 chart in the LMS Workspace
#. Label of a Card Break in the LMS Workspace #. Label of a Card Break in the LMS Workspace
#. Label of a Link 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/components/Sidebar/AppSidebar.vue:550
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100
#: frontend/src/pages/CourseCertification.vue:10 #: 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/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127 #: 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/ProgramForm.vue:49
#: frontend/src/pages/Programs/Programs.vue:35 #: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1878,7 +1878,7 @@ msgstr "Napravi vaš prvi Tečaj"
msgid "Create your first quiz" msgid "Create your first quiz"
msgstr "Napravi vašj prvi kviz" 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" msgid "Created"
msgstr "Kreirano" 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 Certificate Request'
#. Label of the date (Date) field in DocType 'LMS Live Class' #. Label of the date (Date) field in DocType 'LMS Live Class'
#. Label of the date (Date) field in DocType 'Scheduled Flow' #. 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 #: frontend/src/components/Modals/LiveClassModal.vue:29
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -2241,7 +2241,7 @@ msgstr "Uredi kupon"
msgid "Edit Email Template" msgid "Edit Email Template"
msgstr "Uredi predložak e-pošte" 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" msgid "Edit Payment Gateway"
msgstr "Uredi Sustav Plaćanja" msgstr "Uredi Sustav Plaćanja"
@@ -2424,7 +2424,7 @@ msgstr "Upis Člana u Program"
msgid "Enroll Now" msgid "Enroll Now"
msgstr "Upišite se sada" 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 #: frontend/src/pages/Programs/StudentPrograms.vue:96
msgid "Enrolled" msgid "Enrolled"
msgstr "Upisan" 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 Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace #. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json #: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json
msgid "Evaluation" msgid "Evaluation"
msgstr "Evaluacija" msgstr "Evaluacija"
@@ -2551,7 +2551,7 @@ msgstr "Zahtjev za Ocjenu"
msgid "Evaluation end date cannot be less than the batch end date." msgid "Evaluation end date cannot be less than the batch end date."
msgstr "Datum završetka ocjenjivanja ne može biti prije od datuma završetka grupe." 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" msgid "Evaluation saved successfully"
msgstr "Evaluacija je uspješno sačuvana" 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' #. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33 #: 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 #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date" msgid "Expiry Date"
msgstr "Datum Isteka Roka" msgstr "Datum Isteka Roka"
@@ -2695,7 +2695,7 @@ msgstr "Istraži Više"
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. 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_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail" msgid "Fail"
@@ -3209,7 +3209,7 @@ msgstr "Uvezi Tečaj"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course' #. 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_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "In Progress" 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 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate' #. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28 #: 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/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date" msgid "Issue Date"
@@ -3456,7 +3456,7 @@ msgstr "Pridružite se"
msgid "Join Call" msgid "Join Call"
msgstr "Pridružite se Pozivu" msgstr "Pridružite se Pozivu"
#: frontend/src/components/Modals/Event.vue:78 #: frontend/src/components/Modals/Event.vue:84
msgid "Join Meeting" msgid "Join Meeting"
msgstr "Pridružite se Sastanku" msgstr "Pridružite se Sastanku"
@@ -3896,7 +3896,7 @@ msgstr "LinkedIn"
msgid "LinkedIn ID" msgid "LinkedIn ID"
msgstr "LinkedIn ID" msgstr "LinkedIn ID"
#: frontend/src/pages/Courses.vue:341 #: frontend/src/pages/Courses.vue:340
msgid "Live" msgid "Live"
msgstr "Uživo" msgstr "Uživo"
@@ -4429,7 +4429,7 @@ msgstr "Naziv"
#: frontend/src/components/Settings/Members.vue:17 #: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16 #: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17 #: 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 #: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json #: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New" msgid "New"
@@ -4461,7 +4461,7 @@ msgstr "Novi Posao"
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "Novi Kandidat za Posao" msgstr "Novi Kandidat za Posao"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:12
msgid "New Payment Gateway" msgid "New Payment Gateway"
msgstr "Novi Sustav Plaćanja" msgstr "Novi Sustav Plaćanja"
@@ -4778,13 +4778,8 @@ msgstr "Otvoren(a) za"
#: frontend/src/components/UserAvatar.vue:11 #: frontend/src/components/UserAvatar.vue:11
#: frontend/src/pages/CertifiedParticipants.vue:46 #: frontend/src/pages/CertifiedParticipants.vue:46
#: frontend/src/pages/Profile.vue:69 #: frontend/src/pages/Profile.vue:69
msgid "Open to Opportunities" msgid "Open to Work"
msgstr "Otvoren(a) za prilike" msgstr ""
#. Option for the 'Open to' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Opportunities"
msgstr "Prilika"
#. Label of the option (Data) field in DocType 'LMS Option' #. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:70 #: frontend/src/components/Modals/Question.vue:70
@@ -4924,7 +4919,7 @@ msgstr "Djelomično Završeno"
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. 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_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass" msgid "Pass"
@@ -5054,7 +5049,7 @@ msgstr "Aplikacija plaćanja nije instalirana"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' #. 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_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending" msgid "Pending"
@@ -5194,7 +5189,7 @@ msgstr "Prijavi se da pristupiš ovoj stranici."
msgid "Please login to continue with payment." msgid "Please login to continue with payment."
msgstr "Prijavi se da nastaviš s plaćanjem." 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." msgid "Please login to enroll in the program."
msgstr "Molimo prijavite se kako biste se prijavili u 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 Course'
#. Label of the published (Check) field in DocType 'LMS Program' #. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51 #: 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/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105
#: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100 #: 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 (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review' #. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147 #: 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 #: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.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/AssignmentForm.vue:65
#: frontend/src/components/Modals/EditProfile.vue:121 #: frontend/src/components/Modals/EditProfile.vue:121
#: frontend/src/components/Modals/EmailTemplateModal.vue:12 #: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:115 #: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:151 #: frontend/src/components/Modals/Event.vue:157
#: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78 #: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/Coupons/CouponDetails.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/components/Settings/Transactions/TransactionDetails.vue:129
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17 #: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14 #: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
@@ -6048,7 +6043,7 @@ msgstr "Prikaži sve"
msgid "Select Date" msgid "Select Date"
msgstr "Odaberi Datum" msgstr "Odaberi Datum"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:26
msgid "Select Payment Gateway" msgid "Select Payment Gateway"
msgstr "Odaberi Sustav Plaćanja" msgstr "Odaberi Sustav Plaćanja"
@@ -6364,7 +6359,7 @@ msgstr "Statistika"
#. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission' #. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case 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/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19 #: 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 #. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation' #. 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 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary" msgid "Summary"
msgstr "Sažetak" msgstr "Sažetak"
@@ -6571,7 +6566,7 @@ msgstr "Timski Rad"
#. Label of the template (Link) field in DocType 'LMS Certificate' #. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43 #: 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 #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template" msgid "Template"
msgstr "Šablon" msgstr "Šablon"
@@ -6620,7 +6615,7 @@ msgstr "Hvala vam na povratnim informacijama."
msgid "Thanks and Regards" msgid "Thanks and Regards"
msgstr "Hvala i Pozdrav" msgstr "Hvala i Pozdrav"
#: lms/lms/utils.py:2247 #: lms/lms/utils.py:2248
msgid "The batch does not exist." msgid "The batch does not exist."
msgstr "Grupa ne postoji." 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." 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." 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." msgid "The coupon code '{0}' is invalid."
msgstr "Kod kupona '{0}' nije važeći." 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 " msgid "The last day to schedule your evaluations is "
msgstr "Posljednji dan za zakazivanje ocjenjivanja je " msgstr "Posljednji dan za zakazivanje ocjenjivanja je "
#: lms/lms/utils.py:2231 #: lms/lms/utils.py:2232
msgid "The lesson does not exist." msgid "The lesson does not exist."
msgstr "Lekcija ne postoji." msgstr "Lekcija ne postoji."
@@ -6660,7 +6655,7 @@ msgstr "Lekcija ne postoji."
msgid "The slot is already booked by another participant." msgid "The slot is already booked by another participant."
msgstr "Termin je već rezervirao drugi učesnik." 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." msgid "The specified batch does not exist."
msgstr "Navedena grupa ne postoji." msgstr "Navedena grupa ne postoji."
@@ -6726,15 +6721,15 @@ msgstr "Ovaj certifikat ne ističe"
msgid "This class has ended" msgid "This class has ended"
msgstr "Ovaj čas je završen" msgstr "Ovaj čas je završen"
#: lms/lms/utils.py:1776 #: lms/lms/utils.py:1777
msgid "This coupon has expired." msgid "This coupon has expired."
msgstr "Ovaj kupon je istekao." msgstr "Ovaj kupon je istekao."
#: lms/lms/utils.py:1779 #: lms/lms/utils.py:1780
msgid "This coupon has reached its maximum usage limit." msgid "This coupon has reached its maximum usage limit."
msgstr "Ovaj kupon je dosegao maksimalni broj iskorištenja." 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}." msgid "This coupon is not applicable to this {0}."
msgstr "Ovaj kupon se ne odnosi na {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:" msgid "This course has:"
msgstr "Ovaj tečaj ima:" msgstr "Ovaj tečaj ima:"
#: lms/lms/utils.py:1707 #: lms/lms/utils.py:1708
msgid "This course is free." msgid "This course is free."
msgstr "Ovaj tečaj je besplatan." msgstr "Ovaj tečaj je besplatan."
@@ -6799,7 +6794,7 @@ msgid "Thursday"
msgstr "Četvrtak" msgstr "Četvrtak"
#. Label of the time (Time) field in DocType 'LMS Live Class' #. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48 #: frontend/src/components/Modals/Event.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:52 #: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Quiz.vue:58 #: frontend/src/components/Quiz.vue:58
#: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -6934,7 +6929,7 @@ msgstr "Do"
msgid "To Date" msgid "To Date"
msgstr "Do Datuma" msgstr "Do Datuma"
#: lms/lms/utils.py:1721 #: lms/lms/utils.py:1722
msgid "To join this batch, please contact the Administrator." msgid "To join this batch, please contact the Administrator."
msgstr "Da biste se pridružili ovoj grupi, kontaktirajte administratora." 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" msgid "Under Review"
msgstr "Pod Recenzijom" 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" msgid "Unpublished"
msgstr "Neobjavljeno" msgstr "Neobjavljeno"
@@ -7077,8 +7072,8 @@ msgstr "Nestrukturirana Uloga"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
#. Label of the upcoming (Check) field in DocType 'LMS Course' #. 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/Batches.vue:330 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:347 #: frontend/src/pages/Courses.vue:346
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming" msgid "Upcoming"
@@ -7220,7 +7215,7 @@ msgid "View Applications"
msgstr "Prikaži prijave" msgstr "Prikaži prijave"
#: frontend/src/components/CertificationLinks.vue:10 #: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67 #: frontend/src/components/Modals/Event.vue:73
msgid "View Certificate" msgid "View Certificate"
msgstr "Prikaži Certifikat" 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" msgid "Withdrawn"
msgstr "Povučen" msgstr "Povučen"
#. 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' #. Label of the work_environment (Section Break) field in DocType 'User'
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
msgid "Work Environment" 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." msgid "You cannot enroll in an unpublished course."
msgstr "Ne možete se upisati na neobjavljeni tečaj." 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." msgid "You cannot enroll in an unpublished program."
msgstr "Ne možete se upisati u neobjavljeni 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." msgid "You cannot schedule evaluations for past slots."
msgstr "Ne možete zakazati ocjenjivanje za prošle termine." 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." msgid "You do not have access to this batch."
msgstr "Nemate pristup ovoj grupi." msgstr "Nemate pristup ovoj grupi."
#: lms/lms/utils.py:2242 #: lms/lms/utils.py:2243
msgid "You do not have access to this course." msgid "You do not have access to this course."
msgstr "Nemate pristup ovom tečaju." msgstr "Nemate pristup ovom tečaju."
+58 -58
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2026-01-16 16:04+0000\n" "POT-Creation-Date: 2026-01-23 16:05+0000\n"
"PO-Revision-Date: 2026-01-21 20:16\n" "PO-Revision-Date: 2026-02-05 06:43\n"
"Last-Translator: jannat@frappe.io\n" "Last-Translator: jannat@frappe.io\n"
"Language-Team: Hungarian\n" "Language-Team: Hungarian\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -319,7 +319,7 @@ msgid "Administrator"
msgstr "Rendszergazda" msgstr "Rendszergazda"
#. Name of a role #. 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" msgid "All"
msgstr "Összes" msgstr "Összes"
@@ -486,7 +486,7 @@ msgstr ""
msgid "Apps" msgid "Apps"
msgstr "Alkalmazások" msgstr "Alkalmazások"
#: frontend/src/pages/Batches.vue:329 #: frontend/src/pages/Batches.vue:331
msgid "Archived" msgid "Archived"
msgstr "Archivált" 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'
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request' #. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
#. Label of the batch_name (Link) field in DocType 'LMS Live Class' #. 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/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200 #: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125
@@ -878,7 +878,7 @@ msgid "Batch:"
msgstr "Köteg:" msgstr "Köteg:"
#. Label of the batches (Check) field in DocType 'LMS Settings' #. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue: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 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121
msgid "Batches" msgid "Batches"
msgstr "" msgstr ""
@@ -1023,7 +1023,7 @@ msgstr ""
msgid "Certificate of Completion" msgid "Certificate of Completion"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:347 #: frontend/src/components/Modals/Event.vue:353
msgid "Certificate saved successfully" msgid "Certificate saved successfully"
msgstr "" msgstr ""
@@ -1043,7 +1043,7 @@ msgstr ""
#. Label of a chart in the LMS Workspace #. Label of a chart in the LMS Workspace
#. Label of a Card Break in the LMS Workspace #. Label of a Card Break in the LMS Workspace
#. Label of a Link 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/components/Sidebar/AppSidebar.vue:550
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100
#: frontend/src/pages/CourseCertification.vue:10 #: frontend/src/pages/CourseCertification.vue:10
@@ -1771,7 +1771,7 @@ msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:95 #: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127 #: 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/ProgramForm.vue:49
#: frontend/src/pages/Programs/Programs.vue:35 #: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1878,7 +1878,7 @@ msgstr ""
msgid "Create your first quiz" msgid "Create your first quiz"
msgstr "" 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" msgid "Created"
msgstr "Alkotó" 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 Certificate Request'
#. Label of the date (Date) field in DocType 'LMS Live Class' #. Label of the date (Date) field in DocType 'LMS Live Class'
#. Label of the date (Date) field in DocType 'Scheduled Flow' #. 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 #: frontend/src/components/Modals/LiveClassModal.vue:29
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -2241,7 +2241,7 @@ msgstr ""
msgid "Edit Email Template" msgid "Edit Email Template"
msgstr "" msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:13
msgid "Edit Payment Gateway" msgid "Edit Payment Gateway"
msgstr "" msgstr ""
@@ -2424,7 +2424,7 @@ msgstr ""
msgid "Enroll Now" msgid "Enroll Now"
msgstr "" 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 #: frontend/src/pages/Programs/StudentPrograms.vue:96
msgid "Enrolled" msgid "Enrolled"
msgstr "" msgstr ""
@@ -2526,7 +2526,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace #. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json #: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json
msgid "Evaluation" msgid "Evaluation"
msgstr "" msgstr ""
@@ -2551,7 +2551,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date." msgid "Evaluation end date cannot be less than the batch end date."
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:286 #: frontend/src/components/Modals/Event.vue:292
msgid "Evaluation saved successfully" msgid "Evaluation saved successfully"
msgstr "" msgstr ""
@@ -2664,7 +2664,7 @@ msgstr "Lejárat Dátuma"
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33 #: 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 #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date" msgid "Expiry Date"
msgstr "" msgstr ""
@@ -2695,7 +2695,7 @@ msgstr ""
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. 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_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail" msgid "Fail"
@@ -3209,7 +3209,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course' #. 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_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "In Progress" 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 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate' #. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28 #: 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/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date" msgid "Issue Date"
@@ -3456,7 +3456,7 @@ msgstr ""
msgid "Join Call" msgid "Join Call"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:78 #: frontend/src/components/Modals/Event.vue:84
msgid "Join Meeting" msgid "Join Meeting"
msgstr "" msgstr ""
@@ -3896,7 +3896,7 @@ msgstr "LinkedIn"
msgid "LinkedIn ID" msgid "LinkedIn ID"
msgstr "" msgstr ""
#: frontend/src/pages/Courses.vue:341 #: frontend/src/pages/Courses.vue:340
msgid "Live" msgid "Live"
msgstr "" msgstr ""
@@ -4429,7 +4429,7 @@ msgstr "Név"
#: frontend/src/components/Settings/Members.vue:17 #: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16 #: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17 #: 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 #: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json #: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New" msgid "New"
@@ -4461,7 +4461,7 @@ msgstr ""
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "" msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:12
msgid "New Payment Gateway" msgid "New Payment Gateway"
msgstr "" msgstr ""
@@ -4778,12 +4778,7 @@ msgstr ""
#: frontend/src/components/UserAvatar.vue:11 #: frontend/src/components/UserAvatar.vue:11
#: frontend/src/pages/CertifiedParticipants.vue:46 #: frontend/src/pages/CertifiedParticipants.vue:46
#: frontend/src/pages/Profile.vue:69 #: 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 "" msgstr ""
#. Label of the option (Data) field in DocType 'LMS Option' #. Label of the option (Data) field in DocType 'LMS Option'
@@ -4924,7 +4919,7 @@ msgstr ""
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. 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_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass" msgid "Pass"
@@ -5054,7 +5049,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' #. 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_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending" msgid "Pending"
@@ -5194,7 +5189,7 @@ msgstr ""
msgid "Please login to continue with payment." msgid "Please login to continue with payment."
msgstr "" msgstr ""
#: lms/lms/utils.py:2081 #: lms/lms/utils.py:2082
msgid "Please login to enroll in the program." msgid "Please login to enroll in the program."
msgstr "" 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 Course'
#. Label of the published (Check) field in DocType 'LMS Program' #. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51 #: 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/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105
#: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100 #: 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 (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review' #. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147 #: 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 #: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.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/AssignmentForm.vue:65
#: frontend/src/components/Modals/EditProfile.vue:121 #: frontend/src/components/Modals/EditProfile.vue:121
#: frontend/src/components/Modals/EmailTemplateModal.vue:12 #: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:115 #: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:151 #: frontend/src/components/Modals/Event.vue:157
#: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78 #: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/Coupons/CouponDetails.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/components/Settings/Transactions/TransactionDetails.vue:129
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17 #: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14 #: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
@@ -6048,7 +6043,7 @@ msgstr ""
msgid "Select Date" msgid "Select Date"
msgstr "" msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:26
msgid "Select Payment Gateway" msgid "Select Payment Gateway"
msgstr "" msgstr ""
@@ -6364,7 +6359,7 @@ msgstr "Statisztikák"
#. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission' #. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case 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/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19 #: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6475,7 +6470,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation' #. 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 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary" msgid "Summary"
msgstr "Összefoglalás" msgstr "Összefoglalás"
@@ -6571,7 +6566,7 @@ msgstr ""
#. Label of the template (Link) field in DocType 'LMS Certificate' #. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43 #: 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 #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template" msgid "Template"
msgstr "Sablon" msgstr "Sablon"
@@ -6620,7 +6615,7 @@ msgstr ""
msgid "Thanks and Regards" msgid "Thanks and Regards"
msgstr "" msgstr ""
#: lms/lms/utils.py:2247 #: lms/lms/utils.py:2248
msgid "The batch does not exist." msgid "The batch does not exist."
msgstr "" 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." msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session."
msgstr "" msgstr ""
#: lms/lms/utils.py:1747 #: lms/lms/utils.py:1748
msgid "The coupon code '{0}' is invalid." msgid "The coupon code '{0}' is invalid."
msgstr "" msgstr ""
@@ -6652,7 +6647,7 @@ msgstr ""
msgid "The last day to schedule your evaluations is " msgid "The last day to schedule your evaluations is "
msgstr "" msgstr ""
#: lms/lms/utils.py:2231 #: lms/lms/utils.py:2232
msgid "The lesson does not exist." msgid "The lesson does not exist."
msgstr "" msgstr ""
@@ -6660,7 +6655,7 @@ msgstr ""
msgid "The slot is already booked by another participant." msgid "The slot is already booked by another participant."
msgstr "" 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." msgid "The specified batch does not exist."
msgstr "" msgstr ""
@@ -6726,15 +6721,15 @@ msgstr ""
msgid "This class has ended" msgid "This class has ended"
msgstr "" msgstr ""
#: lms/lms/utils.py:1776 #: lms/lms/utils.py:1777
msgid "This coupon has expired." msgid "This coupon has expired."
msgstr "" msgstr ""
#: lms/lms/utils.py:1779 #: lms/lms/utils.py:1780
msgid "This coupon has reached its maximum usage limit." msgid "This coupon has reached its maximum usage limit."
msgstr "" msgstr ""
#: lms/lms/utils.py:1788 #: lms/lms/utils.py:1789
msgid "This coupon is not applicable to this {0}." msgid "This coupon is not applicable to this {0}."
msgstr "" msgstr ""
@@ -6742,7 +6737,7 @@ msgstr ""
msgid "This course has:" msgid "This course has:"
msgstr "" msgstr ""
#: lms/lms/utils.py:1707 #: lms/lms/utils.py:1708
msgid "This course is free." msgid "This course is free."
msgstr "" msgstr ""
@@ -6799,7 +6794,7 @@ msgid "Thursday"
msgstr "Csütörtök" msgstr "Csütörtök"
#. Label of the time (Time) field in DocType 'LMS Live Class' #. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48 #: frontend/src/components/Modals/Event.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:52 #: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Quiz.vue:58 #: frontend/src/components/Quiz.vue:58
#: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -6934,7 +6929,7 @@ msgstr "Címzett"
msgid "To Date" msgid "To Date"
msgstr "Dátumig" msgstr "Dátumig"
#: lms/lms/utils.py:1721 #: lms/lms/utils.py:1722
msgid "To join this batch, please contact the Administrator." msgid "To join this batch, please contact the Administrator."
msgstr "" msgstr ""
@@ -7056,7 +7051,7 @@ msgstr ""
msgid "Under Review" msgid "Under Review"
msgstr "" 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" msgid "Unpublished"
msgstr "" msgstr ""
@@ -7077,8 +7072,8 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
#. Label of the upcoming (Check) field in DocType 'LMS Course' #. 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/Batches.vue:330 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:347 #: frontend/src/pages/Courses.vue:346
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming" msgid "Upcoming"
@@ -7220,7 +7215,7 @@ msgid "View Applications"
msgstr "" msgstr ""
#: frontend/src/components/CertificationLinks.vue:10 #: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67 #: frontend/src/components/Modals/Event.vue:73
msgid "View Certificate" msgid "View Certificate"
msgstr "" msgstr ""
@@ -7327,6 +7322,11 @@ msgstr ""
msgid "Withdrawn" msgid "Withdrawn"
msgstr "" 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' #. Label of the work_environment (Section Break) field in DocType 'User'
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
msgid "Work Environment" msgid "Work Environment"
@@ -7427,7 +7427,7 @@ msgstr ""
msgid "You cannot enroll in an unpublished course." msgid "You cannot enroll in an unpublished course."
msgstr "" msgstr ""
#: lms/lms/utils.py:2085 #: lms/lms/utils.py:2086
msgid "You cannot enroll in an unpublished program." msgid "You cannot enroll in an unpublished program."
msgstr "" msgstr ""
@@ -7443,11 +7443,11 @@ msgstr ""
msgid "You cannot schedule evaluations for past slots." msgid "You cannot schedule evaluations for past slots."
msgstr "" msgstr ""
#: lms/lms/utils.py:2259 #: lms/lms/utils.py:2260
msgid "You do not have access to this batch." msgid "You do not have access to this batch."
msgstr "" msgstr ""
#: lms/lms/utils.py:2242 #: lms/lms/utils.py:2243
msgid "You do not have access to this course." msgid "You do not have access to this course."
msgstr "" msgstr ""
+59 -59
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2026-01-16 16:04+0000\n" "POT-Creation-Date: 2026-01-23 16:05+0000\n"
"PO-Revision-Date: 2026-01-19 20:13\n" "PO-Revision-Date: 2026-02-05 06:43\n"
"Last-Translator: jannat@frappe.io\n" "Last-Translator: jannat@frappe.io\n"
"Language-Team: Indonesian\n" "Language-Team: Indonesian\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -319,7 +319,7 @@ msgid "Administrator"
msgstr "" msgstr ""
#. Name of a role #. 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" msgid "All"
msgstr "Semua" msgstr "Semua"
@@ -486,7 +486,7 @@ msgstr ""
msgid "Apps" msgid "Apps"
msgstr "" msgstr ""
#: frontend/src/pages/Batches.vue:329 #: frontend/src/pages/Batches.vue:331
msgid "Archived" msgid "Archived"
msgstr "" 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'
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request' #. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
#. Label of the batch_name (Link) field in DocType 'LMS Live Class' #. 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/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200 #: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125
@@ -878,7 +878,7 @@ msgid "Batch:"
msgstr "" msgstr ""
#. Label of the batches (Check) field in DocType 'LMS Settings' #. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue: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 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121
msgid "Batches" msgid "Batches"
msgstr "" msgstr ""
@@ -1023,7 +1023,7 @@ msgstr ""
msgid "Certificate of Completion" msgid "Certificate of Completion"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:347 #: frontend/src/components/Modals/Event.vue:353
msgid "Certificate saved successfully" msgid "Certificate saved successfully"
msgstr "" msgstr ""
@@ -1043,7 +1043,7 @@ msgstr ""
#. Label of a chart in the LMS Workspace #. Label of a chart in the LMS Workspace
#. Label of a Card Break in the LMS Workspace #. Label of a Card Break in the LMS Workspace
#. Label of a Link 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/components/Sidebar/AppSidebar.vue:550
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100
#: frontend/src/pages/CourseCertification.vue:10 #: frontend/src/pages/CourseCertification.vue:10
@@ -1771,7 +1771,7 @@ msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:95 #: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127 #: 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/ProgramForm.vue:49
#: frontend/src/pages/Programs/Programs.vue:35 #: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1878,7 +1878,7 @@ msgstr ""
msgid "Create your first quiz" msgid "Create your first quiz"
msgstr "" 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" msgid "Created"
msgstr "" 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 Certificate Request'
#. Label of the date (Date) field in DocType 'LMS Live Class' #. Label of the date (Date) field in DocType 'LMS Live Class'
#. Label of the date (Date) field in DocType 'Scheduled Flow' #. 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 #: frontend/src/components/Modals/LiveClassModal.vue:29
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -2241,7 +2241,7 @@ msgstr ""
msgid "Edit Email Template" msgid "Edit Email Template"
msgstr "" msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:13
msgid "Edit Payment Gateway" msgid "Edit Payment Gateway"
msgstr "" msgstr ""
@@ -2424,7 +2424,7 @@ msgstr ""
msgid "Enroll Now" msgid "Enroll Now"
msgstr "" 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 #: frontend/src/pages/Programs/StudentPrograms.vue:96
msgid "Enrolled" msgid "Enrolled"
msgstr "" msgstr ""
@@ -2526,7 +2526,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace #. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json #: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json
msgid "Evaluation" msgid "Evaluation"
msgstr "Evaluasi" msgstr "Evaluasi"
@@ -2551,7 +2551,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date." msgid "Evaluation end date cannot be less than the batch end date."
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:286 #: frontend/src/components/Modals/Event.vue:292
msgid "Evaluation saved successfully" msgid "Evaluation saved successfully"
msgstr "" msgstr ""
@@ -2664,7 +2664,7 @@ msgstr ""
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33 #: 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 #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date" msgid "Expiry Date"
msgstr "" msgstr ""
@@ -2695,7 +2695,7 @@ msgstr ""
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. 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_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail" msgid "Fail"
@@ -3209,7 +3209,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course' #. 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_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "In Progress" 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 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate' #. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28 #: 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/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date" msgid "Issue Date"
@@ -3456,7 +3456,7 @@ msgstr ""
msgid "Join Call" msgid "Join Call"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:78 #: frontend/src/components/Modals/Event.vue:84
msgid "Join Meeting" msgid "Join Meeting"
msgstr "" msgstr ""
@@ -3896,7 +3896,7 @@ msgstr ""
msgid "LinkedIn ID" msgid "LinkedIn ID"
msgstr "" msgstr ""
#: frontend/src/pages/Courses.vue:341 #: frontend/src/pages/Courses.vue:340
msgid "Live" msgid "Live"
msgstr "" msgstr ""
@@ -4429,7 +4429,7 @@ msgstr "Nama"
#: frontend/src/components/Settings/Members.vue:17 #: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16 #: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17 #: 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 #: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json #: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New" msgid "New"
@@ -4461,7 +4461,7 @@ msgstr ""
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "" msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:12
msgid "New Payment Gateway" msgid "New Payment Gateway"
msgstr "" msgstr ""
@@ -4778,14 +4778,9 @@ msgstr ""
#: frontend/src/components/UserAvatar.vue:11 #: frontend/src/components/UserAvatar.vue:11
#: frontend/src/pages/CertifiedParticipants.vue:46 #: frontend/src/pages/CertifiedParticipants.vue:46
#: frontend/src/pages/Profile.vue:69 #: frontend/src/pages/Profile.vue:69
msgid "Open to Opportunities" msgid "Open to Work"
msgstr "" 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' #. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:70 #: frontend/src/components/Modals/Question.vue:70
#: lms/lms/doctype/lms_option/lms_option.json #: lms/lms/doctype/lms_option/lms_option.json
@@ -4842,7 +4837,7 @@ msgstr ""
#. Option for the 'User Category' (Select) field in DocType 'User' #. Option for the 'User Category' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json lms/templates/signup-form.html:28 #: lms/fixtures/custom_field.json lms/templates/signup-form.html:28
msgid "Others" msgid "Others"
msgstr "Lainnya" msgstr ""
#: frontend/src/pages/Home/StudentHome.vue:9 #: frontend/src/pages/Home/StudentHome.vue:9
msgid "Our Popular Courses" msgid "Our Popular Courses"
@@ -4924,7 +4919,7 @@ msgstr ""
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. 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_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass" msgid "Pass"
@@ -5054,7 +5049,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' #. 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_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending" msgid "Pending"
@@ -5194,7 +5189,7 @@ msgstr ""
msgid "Please login to continue with payment." msgid "Please login to continue with payment."
msgstr "" msgstr ""
#: lms/lms/utils.py:2081 #: lms/lms/utils.py:2082
msgid "Please login to enroll in the program." msgid "Please login to enroll in the program."
msgstr "" 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 Course'
#. Label of the published (Check) field in DocType 'LMS Program' #. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51 #: 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/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105
#: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100 #: 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 (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review' #. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147 #: 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 #: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.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/AssignmentForm.vue:65
#: frontend/src/components/Modals/EditProfile.vue:121 #: frontend/src/components/Modals/EditProfile.vue:121
#: frontend/src/components/Modals/EmailTemplateModal.vue:12 #: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:115 #: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:151 #: frontend/src/components/Modals/Event.vue:157
#: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78 #: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/Coupons/CouponDetails.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/components/Settings/Transactions/TransactionDetails.vue:129
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17 #: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14 #: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
@@ -6048,7 +6043,7 @@ msgstr ""
msgid "Select Date" msgid "Select Date"
msgstr "" msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:26
msgid "Select Payment Gateway" msgid "Select Payment Gateway"
msgstr "" msgstr ""
@@ -6364,7 +6359,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission' #. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case 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/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19 #: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6475,7 +6470,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation' #. 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 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary" msgid "Summary"
msgstr "Ringkasan" msgstr "Ringkasan"
@@ -6571,7 +6566,7 @@ msgstr ""
#. Label of the template (Link) field in DocType 'LMS Certificate' #. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43 #: 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 #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template" msgid "Template"
msgstr "" msgstr ""
@@ -6620,7 +6615,7 @@ msgstr ""
msgid "Thanks and Regards" msgid "Thanks and Regards"
msgstr "" msgstr ""
#: lms/lms/utils.py:2247 #: lms/lms/utils.py:2248
msgid "The batch does not exist." msgid "The batch does not exist."
msgstr "" 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." msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session."
msgstr "" msgstr ""
#: lms/lms/utils.py:1747 #: lms/lms/utils.py:1748
msgid "The coupon code '{0}' is invalid." msgid "The coupon code '{0}' is invalid."
msgstr "" msgstr ""
@@ -6652,7 +6647,7 @@ msgstr ""
msgid "The last day to schedule your evaluations is " msgid "The last day to schedule your evaluations is "
msgstr "" msgstr ""
#: lms/lms/utils.py:2231 #: lms/lms/utils.py:2232
msgid "The lesson does not exist." msgid "The lesson does not exist."
msgstr "" msgstr ""
@@ -6660,7 +6655,7 @@ msgstr ""
msgid "The slot is already booked by another participant." msgid "The slot is already booked by another participant."
msgstr "" 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." msgid "The specified batch does not exist."
msgstr "" msgstr ""
@@ -6726,15 +6721,15 @@ msgstr ""
msgid "This class has ended" msgid "This class has ended"
msgstr "" msgstr ""
#: lms/lms/utils.py:1776 #: lms/lms/utils.py:1777
msgid "This coupon has expired." msgid "This coupon has expired."
msgstr "" msgstr ""
#: lms/lms/utils.py:1779 #: lms/lms/utils.py:1780
msgid "This coupon has reached its maximum usage limit." msgid "This coupon has reached its maximum usage limit."
msgstr "" msgstr ""
#: lms/lms/utils.py:1788 #: lms/lms/utils.py:1789
msgid "This coupon is not applicable to this {0}." msgid "This coupon is not applicable to this {0}."
msgstr "" msgstr ""
@@ -6742,7 +6737,7 @@ msgstr ""
msgid "This course has:" msgid "This course has:"
msgstr "" msgstr ""
#: lms/lms/utils.py:1707 #: lms/lms/utils.py:1708
msgid "This course is free." msgid "This course is free."
msgstr "" msgstr ""
@@ -6799,7 +6794,7 @@ msgid "Thursday"
msgstr "" msgstr ""
#. Label of the time (Time) field in DocType 'LMS Live Class' #. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48 #: frontend/src/components/Modals/Event.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:52 #: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Quiz.vue:58 #: frontend/src/components/Quiz.vue:58
#: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -6934,7 +6929,7 @@ msgstr "Untuk"
msgid "To Date" msgid "To Date"
msgstr "Untuk Tanggal" msgstr "Untuk Tanggal"
#: lms/lms/utils.py:1721 #: lms/lms/utils.py:1722
msgid "To join this batch, please contact the Administrator." msgid "To join this batch, please contact the Administrator."
msgstr "" msgstr ""
@@ -7056,7 +7051,7 @@ msgstr ""
msgid "Under Review" msgid "Under Review"
msgstr "" 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" msgid "Unpublished"
msgstr "" msgstr ""
@@ -7077,8 +7072,8 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
#. Label of the upcoming (Check) field in DocType 'LMS Course' #. 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/Batches.vue:330 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:347 #: frontend/src/pages/Courses.vue:346
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming" msgid "Upcoming"
@@ -7220,7 +7215,7 @@ msgid "View Applications"
msgstr "" msgstr ""
#: frontend/src/components/CertificationLinks.vue:10 #: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67 #: frontend/src/components/Modals/Event.vue:73
msgid "View Certificate" msgid "View Certificate"
msgstr "" msgstr ""
@@ -7327,6 +7322,11 @@ msgstr ""
msgid "Withdrawn" msgid "Withdrawn"
msgstr "" 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' #. Label of the work_environment (Section Break) field in DocType 'User'
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
msgid "Work Environment" msgid "Work Environment"
@@ -7427,7 +7427,7 @@ msgstr ""
msgid "You cannot enroll in an unpublished course." msgid "You cannot enroll in an unpublished course."
msgstr "" msgstr ""
#: lms/lms/utils.py:2085 #: lms/lms/utils.py:2086
msgid "You cannot enroll in an unpublished program." msgid "You cannot enroll in an unpublished program."
msgstr "" msgstr ""
@@ -7443,11 +7443,11 @@ msgstr ""
msgid "You cannot schedule evaluations for past slots." msgid "You cannot schedule evaluations for past slots."
msgstr "" msgstr ""
#: lms/lms/utils.py:2259 #: lms/lms/utils.py:2260
msgid "You do not have access to this batch." msgid "You do not have access to this batch."
msgstr "" msgstr ""
#: lms/lms/utils.py:2242 #: lms/lms/utils.py:2243
msgid "You do not have access to this course." msgid "You do not have access to this course."
msgstr "" msgstr ""
+105 -105
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2026-01-16 16:04+0000\n" "POT-Creation-Date: 2026-01-23 16:05+0000\n"
"PO-Revision-Date: 2026-01-21 20:16\n" "PO-Revision-Date: 2026-02-05 06:43\n"
"Last-Translator: jannat@frappe.io\n" "Last-Translator: jannat@frappe.io\n"
"Language-Team: Italian\n" "Language-Team: Italian\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -32,7 +32,7 @@ msgstr ""
#: lms/templates/emails/published_batch_notification.html:19 #: lms/templates/emails/published_batch_notification.html:19
msgid " to " msgid " to "
msgstr "" msgstr " a "
#: frontend/src/pages/Home/Streak.vue:21 #: frontend/src/pages/Home/Streak.vue:21
msgid " you are on a" msgid " you are on a"
@@ -88,24 +88,24 @@ msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:189 #: lms/lms/doctype/lms_batch/lms_batch.py:189
msgid "A new batch '{0}' has been published that might interest you. Check it out!" 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 #: lms/templates/emails/published_batch_notification.html:7
msgid "A new batch has been published on " 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 #: lms/lms/doctype/lms_course/lms_course.py:198
msgid "A new course '{0}' has been published that might interest you. Check it out!" 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 #: lms/templates/emails/published_course_notification.html:7
msgid "A new course has been published on " 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_batch/lms_batch.py:151
#: lms/lms/doctype/lms_course/lms_course.py:162 #: lms/lms/doctype/lms_course/lms_course.py:162
msgid "A new course has been published on {0}" msgid "A new course has been published on {0}"
msgstr "" msgstr "Un nuovo corso è stato pubblicato su {0}"
#: frontend/src/pages/CourseForm.vue:143 #: frontend/src/pages/CourseForm.vue:143
msgid "A one line introduction to the course that appears on the course card" 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 #: frontend/src/pages/CourseForm.vue:55
msgid "Add a keyword and then press enter" msgid "Add a keyword and then press enter"
msgstr "" msgstr "Aggiungi una password e poi premi Invio"
#: frontend/src/components/Sidebar/AppSidebar.vue:525 #: frontend/src/components/Sidebar/AppSidebar.vue:525
msgid "Add a lesson" msgid "Add a lesson"
@@ -263,7 +263,7 @@ msgstr ""
#: frontend/src/components/Sidebar/AppSidebar.vue:488 #: frontend/src/components/Sidebar/AppSidebar.vue:488
msgid "Add courses to your batch" msgid "Add courses to your batch"
msgstr "" msgstr "Aggiungi corsi al tuo gruppo"
#: frontend/src/components/Modals/QuizInVideo.vue:5 #: frontend/src/components/Modals/QuizInVideo.vue:5
msgid "Add quiz to this video" msgid "Add quiz to this video"
@@ -319,7 +319,7 @@ msgid "Administrator"
msgstr "" msgstr ""
#. Name of a role #. 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" msgid "All"
msgstr "" msgstr ""
@@ -393,7 +393,7 @@ msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:75 #: lms/lms/doctype/lms_batch/lms_batch.py:75
msgid "Amount and currency are required for paid batches." 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 #: lms/lms/doctype/lms_course/lms_course.py:77
msgid "Amount and currency are required for paid certificates." 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' #. Label of the applicable_items (Table) field in DocType 'LMS Coupon'
#: lms/lms/doctype/lms_coupon/lms_coupon.json #: lms/lms/doctype/lms_coupon/lms_coupon.json
msgid "Applicable Items" msgid "Applicable Items"
msgstr "" msgstr "Articoli applicabili"
#: frontend/src/pages/JobApplications.vue:22 #: frontend/src/pages/JobApplications.vue:22
msgid "Application" msgid "Application"
@@ -446,7 +446,7 @@ msgstr ""
#. Label of a field in the job-opportunity Web Form #. Label of a field in the job-opportunity Web Form
#: lms/job/web_form/job_opportunity/job_opportunity.json #: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Application Form Link" msgid "Application Form Link"
msgstr "" msgstr "Link al modulo di domanda"
#: frontend/src/pages/JobApplications.vue:14 #: frontend/src/pages/JobApplications.vue:14
#: frontend/src/pages/JobApplications.vue:22 #: frontend/src/pages/JobApplications.vue:22
@@ -486,7 +486,7 @@ msgstr ""
msgid "Apps" msgid "Apps"
msgstr "Applicazioni" msgstr "Applicazioni"
#: frontend/src/pages/Batches.vue:329 #: frontend/src/pages/Batches.vue:331
msgid "Archived" msgid "Archived"
msgstr "" msgstr ""
@@ -591,7 +591,7 @@ msgstr ""
#: frontend/src/pages/AssignmentSubmissionList.vue:222 #: frontend/src/pages/AssignmentSubmissionList.vue:222
msgid "Assignment Submissions" msgid "Assignment Submissions"
msgstr "" msgstr "Invio degli incarichi"
#. Label of the assignment_title (Data) field in DocType 'LMS Assignment #. Label of the assignment_title (Data) field in DocType 'LMS Assignment
#. Submission' #. 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'
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request' #. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
#. Label of the batch_name (Link) field in DocType 'LMS Live Class' #. 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/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200 #: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125
@@ -878,10 +878,10 @@ msgid "Batch:"
msgstr "" msgstr ""
#. Label of the batches (Check) field in DocType 'LMS Settings' #. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue: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 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121
msgid "Batches" msgid "Batches"
msgstr "" msgstr "Gruppi"
#: lms/templates/emails/batch_confirmation.html:33 #: lms/templates/emails/batch_confirmation.html:33
#: lms/templates/emails/batch_start_reminder.html:31 #: lms/templates/emails/batch_start_reminder.html:31
@@ -1023,7 +1023,7 @@ msgstr ""
msgid "Certificate of Completion" msgid "Certificate of Completion"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:347 #: frontend/src/components/Modals/Event.vue:353
msgid "Certificate saved successfully" msgid "Certificate saved successfully"
msgstr "" msgstr ""
@@ -1043,7 +1043,7 @@ msgstr ""
#. Label of a chart in the LMS Workspace #. Label of a chart in the LMS Workspace
#. Label of a Card Break in the LMS Workspace #. Label of a Card Break in the LMS Workspace
#. Label of a Link 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/components/Sidebar/AppSidebar.vue:550
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100
#: frontend/src/pages/CourseCertification.vue:10 #: frontend/src/pages/CourseCertification.vue:10
@@ -1244,7 +1244,7 @@ msgstr "Client Secret"
#: frontend/src/components/Settings/Categories.vue:27 #: frontend/src/components/Settings/Categories.vue:27
msgid "Close" msgid "Close"
msgstr "Vicino" msgstr "Chiudi"
#. Option for the 'Status' (Select) field in DocType 'Job Opportunity' #. Option for the 'Status' (Select) field in DocType 'Job Opportunity'
#. Option in a Select field in the job-opportunity Web Form #. Option in a Select field in the job-opportunity Web Form
@@ -1275,7 +1275,7 @@ msgstr ""
#: frontend/src/components/Sidebar/AppSidebar.vue:155 #: frontend/src/components/Sidebar/AppSidebar.vue:155
msgid "Collapse" msgid "Collapse"
msgstr "" msgstr "Riduci"
#. Label of the college (Data) field in DocType 'User' #. Label of the college (Data) field in DocType 'User'
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
@@ -1303,7 +1303,7 @@ msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Comments" msgid "Comments"
msgstr "" msgstr "Commenti"
#: frontend/src/components/Assignment.vue:148 #: frontend/src/components/Assignment.vue:148
msgid "Comments by Evaluator" msgid "Comments by Evaluator"
@@ -1377,7 +1377,7 @@ msgstr ""
#: lms/lms/doctype/lms_course_progress/lms_course_progress.json #: lms/lms/doctype/lms_course_progress/lms_course_progress.json
#: lms/lms/widgets/CourseCard.html:75 #: lms/lms/widgets/CourseCard.html:75
msgid "Complete" msgid "Complete"
msgstr "" msgstr "Completato"
#: lms/templates/emails/lms_invite_request_approved.html:7 #: lms/templates/emails/lms_invite_request_approved.html:7
msgid "Complete Sign Up" msgid "Complete Sign Up"
@@ -1771,7 +1771,7 @@ msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:95 #: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127 #: 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/ProgramForm.vue:49
#: frontend/src/pages/Programs/Programs.vue:35 #: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1824,7 +1824,7 @@ msgstr ""
#: frontend/src/components/Controls/Link.vue:38 #: frontend/src/components/Controls/Link.vue:38
#: frontend/src/components/Controls/MultiSelect.vue:76 #: frontend/src/components/Controls/MultiSelect.vue:76
msgid "Create New" msgid "Create New"
msgstr "Crea Nuovo" msgstr "Crea nuovo"
#: frontend/src/pages/Programs/ProgramForm.vue:12 #: frontend/src/pages/Programs/ProgramForm.vue:12
msgid "Create Program" msgid "Create Program"
@@ -1878,7 +1878,7 @@ msgstr ""
msgid "Create your first quiz" msgid "Create your first quiz"
msgstr "" 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" msgid "Created"
msgstr "" msgstr ""
@@ -1943,7 +1943,7 @@ msgstr "Ciano"
#. Label of the show_dashboard (Check) field in DocType 'LMS Settings' #. Label of the show_dashboard (Check) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Dashboard" msgid "Dashboard"
msgstr "" msgstr "Dashboard"
#: frontend/src/pages/DataImport.vue:46 #: frontend/src/pages/DataImport.vue:46
msgid "Data Import" 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 Certificate Request'
#. Label of the date (Date) field in DocType 'LMS Live Class' #. Label of the date (Date) field in DocType 'LMS Live Class'
#. Label of the date (Date) field in DocType 'Scheduled Flow' #. 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 #: frontend/src/components/Modals/LiveClassModal.vue:29
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -2020,7 +2020,7 @@ msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:230 #: frontend/src/pages/Programs/ProgramForm.vue:230
#: frontend/src/pages/Programs/ProgramForm.vue:567 #: frontend/src/pages/Programs/ProgramForm.vue:567
msgid "Delete" msgid "Delete"
msgstr "Eliminare" msgstr "Elimina"
#: frontend/src/components/CourseOutline.vue:67 #: frontend/src/components/CourseOutline.vue:67
msgid "Delete Chapter" msgid "Delete Chapter"
@@ -2164,7 +2164,7 @@ msgstr ""
#: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment/lms_assignment.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
msgid "Document" msgid "Document"
msgstr "" msgstr "Documento"
#: frontend/src/components/Settings/Coupons/CouponItems.vue:11 #: frontend/src/components/Settings/Coupons/CouponItems.vue:11
msgid "Document Name" msgid "Document Name"
@@ -2241,7 +2241,7 @@ msgstr ""
msgid "Edit Email Template" msgid "Edit Email Template"
msgstr "" msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:13
msgid "Edit Payment Gateway" msgid "Edit Payment Gateway"
msgstr "" msgstr ""
@@ -2424,7 +2424,7 @@ msgstr ""
msgid "Enroll Now" msgid "Enroll Now"
msgstr "" 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 #: frontend/src/pages/Programs/StudentPrograms.vue:96
msgid "Enrolled" msgid "Enrolled"
msgstr "" msgstr ""
@@ -2526,7 +2526,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace #. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json #: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json
msgid "Evaluation" msgid "Evaluation"
msgstr "" msgstr ""
@@ -2551,7 +2551,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date." msgid "Evaluation end date cannot be less than the batch end date."
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:286 #: frontend/src/components/Modals/Event.vue:292
msgid "Evaluation saved successfully" msgid "Evaluation saved successfully"
msgstr "" msgstr ""
@@ -2664,7 +2664,7 @@ msgstr ""
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33 #: 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 #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date" msgid "Expiry Date"
msgstr "" msgstr ""
@@ -2695,7 +2695,7 @@ msgstr ""
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. 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_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail" msgid "Fail"
@@ -2796,7 +2796,7 @@ msgstr ""
#: frontend/src/components/Modals/EditProfile.vue:70 #: frontend/src/components/Modals/EditProfile.vue:70
#: frontend/src/components/Settings/Members.vue:110 #: frontend/src/components/Settings/Members.vue:110
msgid "First Name" msgid "First Name"
msgstr "Nome di battesimo" msgstr "Nome"
#. Option for the 'Time Preference' (Select) field in DocType 'User' #. Option for the 'Time Preference' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
@@ -2908,7 +2908,7 @@ msgstr ""
#: frontend/src/components/Settings/PaymentGateways.vue:134 #: frontend/src/components/Settings/PaymentGateways.vue:134
msgid "Gateway" msgid "Gateway"
msgstr "" msgstr "Ingresso"
#. Label of the general_tab (Tab Break) field in DocType 'LMS Settings' #. Label of the general_tab (Tab Break) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -2949,7 +2949,7 @@ msgstr ""
#: frontend/src/components/Modals/EditProfile.vue:82 #: frontend/src/components/Modals/EditProfile.vue:82
msgid "GitHub ID" msgid "GitHub ID"
msgstr "" msgstr "ID GitHub"
#. Label of the github (Data) field in DocType 'User' #. Label of the github (Data) field in DocType 'User'
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
@@ -3025,7 +3025,7 @@ msgstr ""
#: frontend/src/components/Sidebar/AppSidebar.vue:141 #: frontend/src/components/Sidebar/AppSidebar.vue:141
msgid "Help" msgid "Help"
msgstr "" msgstr "Aiuto"
#: lms/templates/courses_created.html:15 #: lms/templates/courses_created.html:15
msgid "Help others learn something new by creating a course." msgid "Help others learn something new by creating a course."
@@ -3076,7 +3076,7 @@ msgstr ""
#: frontend/src/components/Notes/InlineLessonMenu.vue:12 #: frontend/src/components/Notes/InlineLessonMenu.vue:12
msgid "Highlight" msgid "Highlight"
msgstr "" msgstr "Evidenzia"
#. Label of the highlighted_text (Small Text) field in DocType 'LMS Lesson #. Label of the highlighted_text (Small Text) field in DocType 'LMS Lesson
#. Note' #. Note'
@@ -3124,13 +3124,13 @@ msgstr ""
#: frontend/src/pages/QuizForm.vue:338 #: frontend/src/pages/QuizForm.vue:338
msgid "ID" msgid "ID"
msgstr "" msgstr "ID"
#. Label of the icon (Data) field in DocType 'LMS Sidebar Item' #. Label of the icon (Data) field in DocType 'LMS Sidebar Item'
#: frontend/src/components/Modals/PageModal.vue:28 #: frontend/src/components/Modals/PageModal.vue:28
#: lms/lms/doctype/lms_sidebar_item/lms_sidebar_item.json #: lms/lms/doctype/lms_sidebar_item/lms_sidebar_item.json
msgid "Icon" msgid "Icon"
msgstr "" msgstr "Icona"
#. Label of the user_category (Check) field in DocType 'LMS Settings' #. Label of the user_category (Check) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -3209,7 +3209,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course' #. 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_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "In Progress" msgid "In Progress"
@@ -3288,7 +3288,7 @@ msgstr ""
#: frontend/src/pages/Lesson.vue:233 frontend/src/pages/LessonForm.vue:42 #: frontend/src/pages/Lesson.vue:233 frontend/src/pages/LessonForm.vue:42
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Instructor Notes" msgid "Instructor Notes"
msgstr "" msgstr "Note dell'istruttore"
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch' #. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch'
#. Label of the instructors (Rating) field in DocType 'LMS Batch Feedback' #. 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 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate' #. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28 #: 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/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date" msgid "Issue Date"
@@ -3456,7 +3456,7 @@ msgstr ""
msgid "Join Call" msgid "Join Call"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:78 #: frontend/src/components/Modals/Event.vue:84
msgid "Join Meeting" msgid "Join Meeting"
msgstr "" msgstr ""
@@ -3563,12 +3563,12 @@ msgstr ""
#. Name of a DocType #. Name of a DocType
#: lms/lms/doctype/lms_coupon/lms_coupon.json #: lms/lms/doctype/lms_coupon/lms_coupon.json
msgid "LMS Coupon" msgid "LMS Coupon"
msgstr "" msgstr "Coupon LMS"
#. Name of a DocType #. Name of a DocType
#: lms/lms/doctype/lms_coupon_item/lms_coupon_item.json #: lms/lms/doctype/lms_coupon_item/lms_coupon_item.json
msgid "LMS Coupon Item" msgid "LMS Coupon Item"
msgstr "" msgstr "Elemento Coupon LMS"
#. Option for the 'Reference DocType' (Select) field in DocType 'LMS Coupon #. Option for the 'Reference DocType' (Select) field in DocType 'LMS Coupon
#. Item' #. Item'
@@ -3896,7 +3896,7 @@ msgstr "LinkedIn"
msgid "LinkedIn ID" msgid "LinkedIn ID"
msgstr "" msgstr ""
#: frontend/src/pages/Courses.vue:341 #: frontend/src/pages/Courses.vue:340
msgid "Live" msgid "Live"
msgstr "" msgstr ""
@@ -4012,7 +4012,7 @@ msgstr ""
#: frontend/src/pages/Notifications.vue:12 #: frontend/src/pages/Notifications.vue:12
msgid "Mark all as read" 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 Question'
#. Label of the marks (Int) field in DocType 'LMS Quiz Result' #. 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' #. Label of the milestone (Check) field in DocType 'LMS Batch Timetable'
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
msgid "Milestone" msgid "Milestone"
msgstr "" msgstr "Milestone"
#: lms/lms/doctype/lms_question/lms_question.py:49 #: lms/lms/doctype/lms_question/lms_question.py:49
msgid "Minimum two options are required for multiple choice questions." 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/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16 #: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17 #: 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 #: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json #: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New" msgid "New"
@@ -4461,7 +4461,7 @@ msgstr ""
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "" msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:12
msgid "New Payment Gateway" msgid "New Payment Gateway"
msgstr "" msgstr ""
@@ -4479,7 +4479,7 @@ msgstr ""
#: lms/lms/utils.py:423 #: lms/lms/utils.py:423
msgid "New comment in batch {0}" msgid "New comment in batch {0}"
msgstr "" msgstr "Nuovo commento nel gruppo {0}"
#: lms/lms/utils.py:414 #: lms/lms/utils.py:414
msgid "New reply on the topic {0} in course {1}" msgid "New reply on the topic {0} in course {1}"
@@ -4683,7 +4683,7 @@ msgstr ""
#. Settings' #. Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Notifications" msgid "Notifications"
msgstr "" msgstr "Notifiche"
#: lms/lms/widgets/NoPreviewModal.html:30 #: lms/lms/widgets/NoPreviewModal.html:30
msgid "Notify me when available" msgid "Notify me when available"
@@ -4778,12 +4778,7 @@ msgstr ""
#: frontend/src/components/UserAvatar.vue:11 #: frontend/src/components/UserAvatar.vue:11
#: frontend/src/pages/CertifiedParticipants.vue:46 #: frontend/src/pages/CertifiedParticipants.vue:46
#: frontend/src/pages/Profile.vue:69 #: 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 "" msgstr ""
#. Label of the option (Data) field in DocType 'LMS Option' #. 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' #. Label of the output (Data) field in DocType 'LMS Test Case Submission'
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Output" msgid "Output"
msgstr "" msgstr "Risultato"
#: frontend/src/components/Settings/BadgeForm.vue:216 #: frontend/src/components/Settings/BadgeForm.vue:216
#: lms/lms/doctype/lms_badge/lms_badge.js:37 #: lms/lms/doctype/lms_badge/lms_badge.js:37
@@ -4889,7 +4884,7 @@ msgstr ""
#: frontend/src/pages/BatchForm.vue:222 #: frontend/src/pages/BatchForm.vue:222
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
msgid "Paid Batch" msgid "Paid Batch"
msgstr "" msgstr "Gruppo a pagamento"
#. Label of the paid_certificate (Check) field in DocType 'LMS Course' #. Label of the paid_certificate (Check) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:207 #: frontend/src/pages/CourseForm.vue:207
@@ -4924,7 +4919,7 @@ msgstr ""
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. 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_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass" msgid "Pass"
@@ -4950,7 +4945,7 @@ msgstr ""
#. Label of the password (Password) field in DocType 'LMS Live Class' #. Label of the password (Password) field in DocType 'LMS Live Class'
#: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/lms_live_class/lms_live_class.json
msgid "Password" msgid "Password"
msgstr "" msgstr "Password"
#: frontend/src/pages/CourseForm.vue:167 #: frontend/src/pages/CourseForm.vue:167
msgid "Paste the youtube link of a short video introducing the course" 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 #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' #. 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_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending" msgid "Pending"
@@ -5172,7 +5167,7 @@ msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.py:68 #: 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}" 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 #: 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}" 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." msgid "Please login to continue with payment."
msgstr "" msgstr ""
#: lms/lms/utils.py:2081 #: lms/lms/utils.py:2082
msgid "Please login to enroll in the program." msgid "Please login to enroll in the program."
msgstr "" 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 Course'
#. Label of the published (Check) field in DocType 'LMS Program' #. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51 #: 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/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105
#: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100 #: 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 (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review' #. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147 #: 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 #: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.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/AssignmentForm.vue:65
#: frontend/src/components/Modals/EditProfile.vue:121 #: frontend/src/components/Modals/EditProfile.vue:121
#: frontend/src/components/Modals/EmailTemplateModal.vue:12 #: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:115 #: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:151 #: frontend/src/components/Modals/Event.vue:157
#: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78 #: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/Coupons/CouponDetails.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/components/Settings/Transactions/TransactionDetails.vue:129
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17 #: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14 #: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
@@ -5947,7 +5942,7 @@ msgstr ""
#: frontend/src/pages/Quizzes.vue:105 #: frontend/src/pages/Quizzes.vue:105
#: lms/job/web_form/job_opportunity/job_opportunity.json #: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Save" msgid "Save"
msgstr "" msgstr "Salva"
#. Label of the schedule (Table) field in DocType 'Course Evaluator' #. Label of the schedule (Table) field in DocType 'Course Evaluator'
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
@@ -6048,7 +6043,7 @@ msgstr ""
msgid "Select Date" msgid "Select Date"
msgstr "" msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:26
msgid "Select Payment Gateway" msgid "Select Payment Gateway"
msgstr "" msgstr ""
@@ -6364,7 +6359,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission' #. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case 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/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19 #: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6475,7 +6470,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation' #. 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 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary" msgid "Summary"
msgstr "" msgstr ""
@@ -6547,7 +6542,7 @@ msgstr "Amministratore Sistema"
#: frontend/src/pages/CourseForm.vue:51 #: frontend/src/pages/CourseForm.vue:51
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "Tags" msgid "Tags"
msgstr "Etichette" msgstr "Tag"
#: frontend/src/components/InstallPrompt.vue:52 #: frontend/src/components/InstallPrompt.vue:52
msgid "Tap" msgid "Tap"
@@ -6571,7 +6566,7 @@ msgstr ""
#. Label of the template (Link) field in DocType 'LMS Certificate' #. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43 #: 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 #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template" msgid "Template"
msgstr "Modelli" msgstr "Modelli"
@@ -6620,7 +6615,7 @@ msgstr ""
msgid "Thanks and Regards" msgid "Thanks and Regards"
msgstr "" msgstr ""
#: lms/lms/utils.py:2247 #: lms/lms/utils.py:2248
msgid "The batch does not exist." msgid "The batch does not exist."
msgstr "" 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." msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session."
msgstr "" msgstr ""
#: lms/lms/utils.py:1747 #: lms/lms/utils.py:1748
msgid "The coupon code '{0}' is invalid." msgid "The coupon code '{0}' is invalid."
msgstr "" msgstr ""
@@ -6652,7 +6647,7 @@ msgstr ""
msgid "The last day to schedule your evaluations is " msgid "The last day to schedule your evaluations is "
msgstr "" msgstr ""
#: lms/lms/utils.py:2231 #: lms/lms/utils.py:2232
msgid "The lesson does not exist." msgid "The lesson does not exist."
msgstr "" msgstr ""
@@ -6660,7 +6655,7 @@ msgstr ""
msgid "The slot is already booked by another participant." msgid "The slot is already booked by another participant."
msgstr "" 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." msgid "The specified batch does not exist."
msgstr "" msgstr ""
@@ -6705,7 +6700,7 @@ msgstr ""
#. 'LMS Batch' #. 'LMS Batch'
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
msgid "These customisations will work on the main batch page." msgid "These customisations will work on the main batch page."
msgstr "" msgstr "Queste personalizzazioni funzioneranno sulla pagina principale del gruppo."
#: frontend/src/pages/Badge.vue:14 #: frontend/src/pages/Badge.vue:14
msgid "This badge has been awarded to {0} on {1}." msgid "This badge has been awarded to {0} on {1}."
@@ -6726,15 +6721,15 @@ msgstr ""
msgid "This class has ended" msgid "This class has ended"
msgstr "" msgstr ""
#: lms/lms/utils.py:1776 #: lms/lms/utils.py:1777
msgid "This coupon has expired." msgid "This coupon has expired."
msgstr "" msgstr ""
#: lms/lms/utils.py:1779 #: lms/lms/utils.py:1780
msgid "This coupon has reached its maximum usage limit." msgid "This coupon has reached its maximum usage limit."
msgstr "" msgstr ""
#: lms/lms/utils.py:1788 #: lms/lms/utils.py:1789
msgid "This coupon is not applicable to this {0}." msgid "This coupon is not applicable to this {0}."
msgstr "" msgstr ""
@@ -6742,7 +6737,7 @@ msgstr ""
msgid "This course has:" msgid "This course has:"
msgstr "" msgstr ""
#: lms/lms/utils.py:1707 #: lms/lms/utils.py:1708
msgid "This course is free." msgid "This course is free."
msgstr "" msgstr ""
@@ -6799,7 +6794,7 @@ msgid "Thursday"
msgstr "" msgstr ""
#. Label of the time (Time) field in DocType 'LMS Live Class' #. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48 #: frontend/src/components/Modals/Event.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:52 #: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Quiz.vue:58 #: frontend/src/components/Quiz.vue:58
#: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -6934,7 +6929,7 @@ msgstr ""
msgid "To Date" msgid "To Date"
msgstr "" msgstr ""
#: lms/lms/utils.py:1721 #: lms/lms/utils.py:1722
msgid "To join this batch, please contact the Administrator." msgid "To join this batch, please contact the Administrator."
msgstr "" msgstr ""
@@ -7056,7 +7051,7 @@ msgstr ""
msgid "Under Review" msgid "Under Review"
msgstr "" 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" msgid "Unpublished"
msgstr "" msgstr ""
@@ -7077,8 +7072,8 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
#. Label of the upcoming (Check) field in DocType 'LMS Course' #. 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/Batches.vue:330 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:347 #: frontend/src/pages/Courses.vue:346
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming" msgid "Upcoming"
@@ -7109,7 +7104,7 @@ msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExercises.vue:281 #: frontend/src/pages/ProgrammingExercises/ProgrammingExercises.vue:281
msgid "Updated On" msgid "Updated On"
msgstr "" msgstr "Aggiornato il"
#: frontend/src/components/Controls/Uploader.vue:23 #: frontend/src/components/Controls/Uploader.vue:23
msgid "Upload" msgid "Upload"
@@ -7220,7 +7215,7 @@ msgid "View Applications"
msgstr "" msgstr ""
#: frontend/src/components/CertificationLinks.vue:10 #: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67 #: frontend/src/components/Modals/Event.vue:73
msgid "View Certificate" msgid "View Certificate"
msgstr "" msgstr ""
@@ -7327,6 +7322,11 @@ msgstr ""
msgid "Withdrawn" msgid "Withdrawn"
msgstr "" 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' #. Label of the work_environment (Section Break) field in DocType 'User'
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
msgid "Work Environment" msgid "Work Environment"
@@ -7427,7 +7427,7 @@ msgstr ""
msgid "You cannot enroll in an unpublished course." msgid "You cannot enroll in an unpublished course."
msgstr "" msgstr ""
#: lms/lms/utils.py:2085 #: lms/lms/utils.py:2086
msgid "You cannot enroll in an unpublished program." msgid "You cannot enroll in an unpublished program."
msgstr "" msgstr ""
@@ -7443,11 +7443,11 @@ msgstr ""
msgid "You cannot schedule evaluations for past slots." msgid "You cannot schedule evaluations for past slots."
msgstr "" msgstr ""
#: lms/lms/utils.py:2259 #: lms/lms/utils.py:2260
msgid "You do not have access to this batch." msgid "You do not have access to this batch."
msgstr "" msgstr ""
#: lms/lms/utils.py:2242 #: lms/lms/utils.py:2243
msgid "You do not have access to this course." msgid "You do not have access to this course."
msgstr "" msgstr ""
@@ -7819,11 +7819,11 @@ msgstr "per chiudere"
#: frontend/src/components/CommandPalette/CommandPalette.vue:45 #: frontend/src/components/CommandPalette/CommandPalette.vue:45
msgid "to navigate" msgid "to navigate"
msgstr "" msgstr "per navigare"
#: frontend/src/components/CommandPalette/CommandPalette.vue:53 #: frontend/src/components/CommandPalette/CommandPalette.vue:53
msgid "to select" msgid "to select"
msgstr "" msgstr "per selezionare"
#: frontend/src/components/BatchFeedback.vue:12 #: frontend/src/components/BatchFeedback.vue:12
msgid "to view your feedback." msgid "to view your feedback."
@@ -7867,7 +7867,7 @@ msgstr ""
#: lms/lms/doctype/lms_course/lms_course.py:195 #: lms/lms/doctype/lms_course/lms_course.py:195
msgid "{0} has published a new course {1}" msgid "{0} has published a new course {1}"
msgstr "" msgstr "{0} ha pubblicato un nuovo corso {1}"
#: lms/templates/emails/job_report.html:4 #: lms/templates/emails/job_report.html:4
msgid "{0} has reported a job post for the following reason." msgid "{0} has reported a job post for the following reason."
@@ -7899,7 +7899,7 @@ msgstr ""
#: lms/templates/emails/mention_template.html:2 #: lms/templates/emails/mention_template.html:2
msgid "{0} mentioned you in a comment in your batch." 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 #: lms/lms/utils.py:469 lms/lms/utils.py:475
msgid "{0} mentioned you in a comment in {1}" msgid "{0} mentioned you in a comment in {1}"
+58 -58
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2026-01-16 16:04+0000\n" "POT-Creation-Date: 2026-01-23 16:05+0000\n"
"PO-Revision-Date: 2026-01-19 20:13\n" "PO-Revision-Date: 2026-02-05 06:43\n"
"Last-Translator: jannat@frappe.io\n" "Last-Translator: jannat@frappe.io\n"
"Language-Team: Burmese\n" "Language-Team: Burmese\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -319,7 +319,7 @@ msgid "Administrator"
msgstr "" msgstr ""
#. Name of a role #. 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" msgid "All"
msgstr "" msgstr ""
@@ -486,7 +486,7 @@ msgstr ""
msgid "Apps" msgid "Apps"
msgstr "" msgstr ""
#: frontend/src/pages/Batches.vue:329 #: frontend/src/pages/Batches.vue:331
msgid "Archived" msgid "Archived"
msgstr "" 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'
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request' #. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
#. Label of the batch_name (Link) field in DocType 'LMS Live Class' #. 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/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200 #: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125
@@ -878,7 +878,7 @@ msgid "Batch:"
msgstr "" msgstr ""
#. Label of the batches (Check) field in DocType 'LMS Settings' #. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue: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 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121
msgid "Batches" msgid "Batches"
msgstr "" msgstr ""
@@ -1023,7 +1023,7 @@ msgstr ""
msgid "Certificate of Completion" msgid "Certificate of Completion"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:347 #: frontend/src/components/Modals/Event.vue:353
msgid "Certificate saved successfully" msgid "Certificate saved successfully"
msgstr "" msgstr ""
@@ -1043,7 +1043,7 @@ msgstr ""
#. Label of a chart in the LMS Workspace #. Label of a chart in the LMS Workspace
#. Label of a Card Break in the LMS Workspace #. Label of a Card Break in the LMS Workspace
#. Label of a Link 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/components/Sidebar/AppSidebar.vue:550
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100
#: frontend/src/pages/CourseCertification.vue:10 #: frontend/src/pages/CourseCertification.vue:10
@@ -1771,7 +1771,7 @@ msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:95 #: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127 #: 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/ProgramForm.vue:49
#: frontend/src/pages/Programs/Programs.vue:35 #: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1878,7 +1878,7 @@ msgstr ""
msgid "Create your first quiz" msgid "Create your first quiz"
msgstr "" 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" msgid "Created"
msgstr "" 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 Certificate Request'
#. Label of the date (Date) field in DocType 'LMS Live Class' #. Label of the date (Date) field in DocType 'LMS Live Class'
#. Label of the date (Date) field in DocType 'Scheduled Flow' #. 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 #: frontend/src/components/Modals/LiveClassModal.vue:29
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -2241,7 +2241,7 @@ msgstr ""
msgid "Edit Email Template" msgid "Edit Email Template"
msgstr "" msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:13
msgid "Edit Payment Gateway" msgid "Edit Payment Gateway"
msgstr "" msgstr ""
@@ -2424,7 +2424,7 @@ msgstr ""
msgid "Enroll Now" msgid "Enroll Now"
msgstr "" 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 #: frontend/src/pages/Programs/StudentPrograms.vue:96
msgid "Enrolled" msgid "Enrolled"
msgstr "" msgstr ""
@@ -2526,7 +2526,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace #. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json #: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json
msgid "Evaluation" msgid "Evaluation"
msgstr "" msgstr ""
@@ -2551,7 +2551,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date." msgid "Evaluation end date cannot be less than the batch end date."
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:286 #: frontend/src/components/Modals/Event.vue:292
msgid "Evaluation saved successfully" msgid "Evaluation saved successfully"
msgstr "" msgstr ""
@@ -2664,7 +2664,7 @@ msgstr ""
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33 #: 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 #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date" msgid "Expiry Date"
msgstr "" msgstr ""
@@ -2695,7 +2695,7 @@ msgstr ""
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. 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_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail" msgid "Fail"
@@ -3209,7 +3209,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course' #. 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_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "In Progress" 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 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate' #. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28 #: 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/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date" msgid "Issue Date"
@@ -3456,7 +3456,7 @@ msgstr ""
msgid "Join Call" msgid "Join Call"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:78 #: frontend/src/components/Modals/Event.vue:84
msgid "Join Meeting" msgid "Join Meeting"
msgstr "" msgstr ""
@@ -3896,7 +3896,7 @@ msgstr ""
msgid "LinkedIn ID" msgid "LinkedIn ID"
msgstr "" msgstr ""
#: frontend/src/pages/Courses.vue:341 #: frontend/src/pages/Courses.vue:340
msgid "Live" msgid "Live"
msgstr "" msgstr ""
@@ -4429,7 +4429,7 @@ msgstr ""
#: frontend/src/components/Settings/Members.vue:17 #: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16 #: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17 #: 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 #: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json #: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New" msgid "New"
@@ -4461,7 +4461,7 @@ msgstr ""
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "" msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:12
msgid "New Payment Gateway" msgid "New Payment Gateway"
msgstr "" msgstr ""
@@ -4778,12 +4778,7 @@ msgstr ""
#: frontend/src/components/UserAvatar.vue:11 #: frontend/src/components/UserAvatar.vue:11
#: frontend/src/pages/CertifiedParticipants.vue:46 #: frontend/src/pages/CertifiedParticipants.vue:46
#: frontend/src/pages/Profile.vue:69 #: 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 "" msgstr ""
#. Label of the option (Data) field in DocType 'LMS Option' #. Label of the option (Data) field in DocType 'LMS Option'
@@ -4924,7 +4919,7 @@ msgstr ""
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. 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_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass" msgid "Pass"
@@ -5054,7 +5049,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' #. 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_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending" msgid "Pending"
@@ -5194,7 +5189,7 @@ msgstr ""
msgid "Please login to continue with payment." msgid "Please login to continue with payment."
msgstr "" msgstr ""
#: lms/lms/utils.py:2081 #: lms/lms/utils.py:2082
msgid "Please login to enroll in the program." msgid "Please login to enroll in the program."
msgstr "" 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 Course'
#. Label of the published (Check) field in DocType 'LMS Program' #. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51 #: 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/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105
#: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100 #: 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 (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review' #. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147 #: 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 #: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.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/AssignmentForm.vue:65
#: frontend/src/components/Modals/EditProfile.vue:121 #: frontend/src/components/Modals/EditProfile.vue:121
#: frontend/src/components/Modals/EmailTemplateModal.vue:12 #: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:115 #: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:151 #: frontend/src/components/Modals/Event.vue:157
#: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78 #: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/Coupons/CouponDetails.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/components/Settings/Transactions/TransactionDetails.vue:129
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17 #: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14 #: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
@@ -6048,7 +6043,7 @@ msgstr ""
msgid "Select Date" msgid "Select Date"
msgstr "" msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:26
msgid "Select Payment Gateway" msgid "Select Payment Gateway"
msgstr "" msgstr ""
@@ -6364,7 +6359,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission' #. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case 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/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19 #: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6475,7 +6470,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation' #. 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 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary" msgid "Summary"
msgstr "" msgstr ""
@@ -6571,7 +6566,7 @@ msgstr ""
#. Label of the template (Link) field in DocType 'LMS Certificate' #. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43 #: 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 #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template" msgid "Template"
msgstr "" msgstr ""
@@ -6620,7 +6615,7 @@ msgstr ""
msgid "Thanks and Regards" msgid "Thanks and Regards"
msgstr "" msgstr ""
#: lms/lms/utils.py:2247 #: lms/lms/utils.py:2248
msgid "The batch does not exist." msgid "The batch does not exist."
msgstr "" 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." msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session."
msgstr "" msgstr ""
#: lms/lms/utils.py:1747 #: lms/lms/utils.py:1748
msgid "The coupon code '{0}' is invalid." msgid "The coupon code '{0}' is invalid."
msgstr "" msgstr ""
@@ -6652,7 +6647,7 @@ msgstr ""
msgid "The last day to schedule your evaluations is " msgid "The last day to schedule your evaluations is "
msgstr "" msgstr ""
#: lms/lms/utils.py:2231 #: lms/lms/utils.py:2232
msgid "The lesson does not exist." msgid "The lesson does not exist."
msgstr "" msgstr ""
@@ -6660,7 +6655,7 @@ msgstr ""
msgid "The slot is already booked by another participant." msgid "The slot is already booked by another participant."
msgstr "" 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." msgid "The specified batch does not exist."
msgstr "" msgstr ""
@@ -6726,15 +6721,15 @@ msgstr ""
msgid "This class has ended" msgid "This class has ended"
msgstr "" msgstr ""
#: lms/lms/utils.py:1776 #: lms/lms/utils.py:1777
msgid "This coupon has expired." msgid "This coupon has expired."
msgstr "" msgstr ""
#: lms/lms/utils.py:1779 #: lms/lms/utils.py:1780
msgid "This coupon has reached its maximum usage limit." msgid "This coupon has reached its maximum usage limit."
msgstr "" msgstr ""
#: lms/lms/utils.py:1788 #: lms/lms/utils.py:1789
msgid "This coupon is not applicable to this {0}." msgid "This coupon is not applicable to this {0}."
msgstr "" msgstr ""
@@ -6742,7 +6737,7 @@ msgstr ""
msgid "This course has:" msgid "This course has:"
msgstr "" msgstr ""
#: lms/lms/utils.py:1707 #: lms/lms/utils.py:1708
msgid "This course is free." msgid "This course is free."
msgstr "" msgstr ""
@@ -6799,7 +6794,7 @@ msgid "Thursday"
msgstr "" msgstr ""
#. Label of the time (Time) field in DocType 'LMS Live Class' #. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48 #: frontend/src/components/Modals/Event.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:52 #: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Quiz.vue:58 #: frontend/src/components/Quiz.vue:58
#: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -6934,7 +6929,7 @@ msgstr ""
msgid "To Date" msgid "To Date"
msgstr "" msgstr ""
#: lms/lms/utils.py:1721 #: lms/lms/utils.py:1722
msgid "To join this batch, please contact the Administrator." msgid "To join this batch, please contact the Administrator."
msgstr "" msgstr ""
@@ -7056,7 +7051,7 @@ msgstr ""
msgid "Under Review" msgid "Under Review"
msgstr "" 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" msgid "Unpublished"
msgstr "" msgstr ""
@@ -7077,8 +7072,8 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
#. Label of the upcoming (Check) field in DocType 'LMS Course' #. 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/Batches.vue:330 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:347 #: frontend/src/pages/Courses.vue:346
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming" msgid "Upcoming"
@@ -7220,7 +7215,7 @@ msgid "View Applications"
msgstr "" msgstr ""
#: frontend/src/components/CertificationLinks.vue:10 #: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67 #: frontend/src/components/Modals/Event.vue:73
msgid "View Certificate" msgid "View Certificate"
msgstr "" msgstr ""
@@ -7327,6 +7322,11 @@ msgstr ""
msgid "Withdrawn" msgid "Withdrawn"
msgstr "" 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' #. Label of the work_environment (Section Break) field in DocType 'User'
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
msgid "Work Environment" msgid "Work Environment"
@@ -7427,7 +7427,7 @@ msgstr ""
msgid "You cannot enroll in an unpublished course." msgid "You cannot enroll in an unpublished course."
msgstr "" msgstr ""
#: lms/lms/utils.py:2085 #: lms/lms/utils.py:2086
msgid "You cannot enroll in an unpublished program." msgid "You cannot enroll in an unpublished program."
msgstr "" msgstr ""
@@ -7443,11 +7443,11 @@ msgstr ""
msgid "You cannot schedule evaluations for past slots." msgid "You cannot schedule evaluations for past slots."
msgstr "" msgstr ""
#: lms/lms/utils.py:2259 #: lms/lms/utils.py:2260
msgid "You do not have access to this batch." msgid "You do not have access to this batch."
msgstr "" msgstr ""
#: lms/lms/utils.py:2242 #: lms/lms/utils.py:2243
msgid "You do not have access to this course." msgid "You do not have access to this course."
msgstr "" msgstr ""
+58 -58
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2026-01-16 16:04+0000\n" "POT-Creation-Date: 2026-01-23 16:05+0000\n"
"PO-Revision-Date: 2026-01-21 20:16\n" "PO-Revision-Date: 2026-02-05 06:43\n"
"Last-Translator: jannat@frappe.io\n" "Last-Translator: jannat@frappe.io\n"
"Language-Team: Norwegian Bokmal\n" "Language-Team: Norwegian Bokmal\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -319,7 +319,7 @@ msgid "Administrator"
msgstr "Administrator" msgstr "Administrator"
#. Name of a role #. 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" msgid "All"
msgstr "Alle" msgstr "Alle"
@@ -486,7 +486,7 @@ msgstr "Godkjent"
msgid "Apps" msgid "Apps"
msgstr "Apper" msgstr "Apper"
#: frontend/src/pages/Batches.vue:329 #: frontend/src/pages/Batches.vue:331
msgid "Archived" msgid "Archived"
msgstr "Arkivert" 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'
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request' #. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
#. Label of the batch_name (Link) field in DocType 'LMS Live Class' #. 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/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200 #: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125
@@ -878,7 +878,7 @@ msgid "Batch:"
msgstr "" msgstr ""
#. Label of the batches (Check) field in DocType 'LMS Settings' #. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue: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 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121
msgid "Batches" msgid "Batches"
msgstr "" msgstr ""
@@ -1023,7 +1023,7 @@ msgstr ""
msgid "Certificate of Completion" msgid "Certificate of Completion"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:347 #: frontend/src/components/Modals/Event.vue:353
msgid "Certificate saved successfully" msgid "Certificate saved successfully"
msgstr "" msgstr ""
@@ -1043,7 +1043,7 @@ msgstr ""
#. Label of a chart in the LMS Workspace #. Label of a chart in the LMS Workspace
#. Label of a Card Break in the LMS Workspace #. Label of a Card Break in the LMS Workspace
#. Label of a Link 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/components/Sidebar/AppSidebar.vue:550
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100
#: frontend/src/pages/CourseCertification.vue:10 #: frontend/src/pages/CourseCertification.vue:10
@@ -1771,7 +1771,7 @@ msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:95 #: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127 #: 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/ProgramForm.vue:49
#: frontend/src/pages/Programs/Programs.vue:35 #: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1878,7 +1878,7 @@ msgstr ""
msgid "Create your first quiz" msgid "Create your first quiz"
msgstr "" 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" msgid "Created"
msgstr "Opprettet" 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 Certificate Request'
#. Label of the date (Date) field in DocType 'LMS Live Class' #. Label of the date (Date) field in DocType 'LMS Live Class'
#. Label of the date (Date) field in DocType 'Scheduled Flow' #. 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 #: frontend/src/components/Modals/LiveClassModal.vue:29
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -2241,7 +2241,7 @@ msgstr ""
msgid "Edit Email Template" msgid "Edit Email Template"
msgstr "" msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:13
msgid "Edit Payment Gateway" msgid "Edit Payment Gateway"
msgstr "" msgstr ""
@@ -2424,7 +2424,7 @@ msgstr ""
msgid "Enroll Now" msgid "Enroll Now"
msgstr "" 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 #: frontend/src/pages/Programs/StudentPrograms.vue:96
msgid "Enrolled" msgid "Enrolled"
msgstr "" msgstr ""
@@ -2526,7 +2526,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace #. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json #: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json
msgid "Evaluation" msgid "Evaluation"
msgstr "" msgstr ""
@@ -2551,7 +2551,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date." msgid "Evaluation end date cannot be less than the batch end date."
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:286 #: frontend/src/components/Modals/Event.vue:292
msgid "Evaluation saved successfully" msgid "Evaluation saved successfully"
msgstr "" msgstr ""
@@ -2664,7 +2664,7 @@ msgstr "Utløper den"
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33 #: 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 #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date" msgid "Expiry Date"
msgstr "Utløpsdato" msgstr "Utløpsdato"
@@ -2695,7 +2695,7 @@ msgstr ""
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. 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_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail" msgid "Fail"
@@ -3209,7 +3209,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course' #. 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_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "In Progress" 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 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate' #. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28 #: 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/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date" msgid "Issue Date"
@@ -3456,7 +3456,7 @@ msgstr ""
msgid "Join Call" msgid "Join Call"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:78 #: frontend/src/components/Modals/Event.vue:84
msgid "Join Meeting" msgid "Join Meeting"
msgstr "" msgstr ""
@@ -3896,7 +3896,7 @@ msgstr ""
msgid "LinkedIn ID" msgid "LinkedIn ID"
msgstr "" msgstr ""
#: frontend/src/pages/Courses.vue:341 #: frontend/src/pages/Courses.vue:340
msgid "Live" msgid "Live"
msgstr "" msgstr ""
@@ -4429,7 +4429,7 @@ msgstr "Navn"
#: frontend/src/components/Settings/Members.vue:17 #: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16 #: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17 #: 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 #: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json #: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New" msgid "New"
@@ -4461,7 +4461,7 @@ msgstr ""
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "" msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:12
msgid "New Payment Gateway" msgid "New Payment Gateway"
msgstr "" msgstr ""
@@ -4778,12 +4778,7 @@ msgstr ""
#: frontend/src/components/UserAvatar.vue:11 #: frontend/src/components/UserAvatar.vue:11
#: frontend/src/pages/CertifiedParticipants.vue:46 #: frontend/src/pages/CertifiedParticipants.vue:46
#: frontend/src/pages/Profile.vue:69 #: 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 "" msgstr ""
#. Label of the option (Data) field in DocType 'LMS Option' #. Label of the option (Data) field in DocType 'LMS Option'
@@ -4924,7 +4919,7 @@ msgstr ""
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. 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_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass" msgid "Pass"
@@ -5054,7 +5049,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' #. 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_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending" msgid "Pending"
@@ -5194,7 +5189,7 @@ msgstr ""
msgid "Please login to continue with payment." msgid "Please login to continue with payment."
msgstr "" msgstr ""
#: lms/lms/utils.py:2081 #: lms/lms/utils.py:2082
msgid "Please login to enroll in the program." msgid "Please login to enroll in the program."
msgstr "" 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 Course'
#. Label of the published (Check) field in DocType 'LMS Program' #. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51 #: 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/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105
#: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100 #: 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 (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review' #. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147 #: 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 #: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.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/AssignmentForm.vue:65
#: frontend/src/components/Modals/EditProfile.vue:121 #: frontend/src/components/Modals/EditProfile.vue:121
#: frontend/src/components/Modals/EmailTemplateModal.vue:12 #: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:115 #: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:151 #: frontend/src/components/Modals/Event.vue:157
#: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78 #: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/Coupons/CouponDetails.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/components/Settings/Transactions/TransactionDetails.vue:129
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17 #: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14 #: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
@@ -6048,7 +6043,7 @@ msgstr ""
msgid "Select Date" msgid "Select Date"
msgstr "" msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:26
msgid "Select Payment Gateway" msgid "Select Payment Gateway"
msgstr "" msgstr ""
@@ -6364,7 +6359,7 @@ msgstr "Statistikk"
#. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission' #. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case 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/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19 #: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6475,7 +6470,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation' #. 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 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary" msgid "Summary"
msgstr "Sammendrag" msgstr "Sammendrag"
@@ -6571,7 +6566,7 @@ msgstr ""
#. Label of the template (Link) field in DocType 'LMS Certificate' #. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43 #: 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 #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template" msgid "Template"
msgstr "Mal" msgstr "Mal"
@@ -6620,7 +6615,7 @@ msgstr ""
msgid "Thanks and Regards" msgid "Thanks and Regards"
msgstr "" msgstr ""
#: lms/lms/utils.py:2247 #: lms/lms/utils.py:2248
msgid "The batch does not exist." msgid "The batch does not exist."
msgstr "" 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." msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session."
msgstr "" msgstr ""
#: lms/lms/utils.py:1747 #: lms/lms/utils.py:1748
msgid "The coupon code '{0}' is invalid." msgid "The coupon code '{0}' is invalid."
msgstr "" msgstr ""
@@ -6652,7 +6647,7 @@ msgstr ""
msgid "The last day to schedule your evaluations is " msgid "The last day to schedule your evaluations is "
msgstr "" msgstr ""
#: lms/lms/utils.py:2231 #: lms/lms/utils.py:2232
msgid "The lesson does not exist." msgid "The lesson does not exist."
msgstr "" msgstr ""
@@ -6660,7 +6655,7 @@ msgstr ""
msgid "The slot is already booked by another participant." msgid "The slot is already booked by another participant."
msgstr "" 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." msgid "The specified batch does not exist."
msgstr "" msgstr ""
@@ -6726,15 +6721,15 @@ msgstr ""
msgid "This class has ended" msgid "This class has ended"
msgstr "" msgstr ""
#: lms/lms/utils.py:1776 #: lms/lms/utils.py:1777
msgid "This coupon has expired." msgid "This coupon has expired."
msgstr "" msgstr ""
#: lms/lms/utils.py:1779 #: lms/lms/utils.py:1780
msgid "This coupon has reached its maximum usage limit." msgid "This coupon has reached its maximum usage limit."
msgstr "" msgstr ""
#: lms/lms/utils.py:1788 #: lms/lms/utils.py:1789
msgid "This coupon is not applicable to this {0}." msgid "This coupon is not applicable to this {0}."
msgstr "" msgstr ""
@@ -6742,7 +6737,7 @@ msgstr ""
msgid "This course has:" msgid "This course has:"
msgstr "" msgstr ""
#: lms/lms/utils.py:1707 #: lms/lms/utils.py:1708
msgid "This course is free." msgid "This course is free."
msgstr "" msgstr ""
@@ -6799,7 +6794,7 @@ msgid "Thursday"
msgstr "Torsdag" msgstr "Torsdag"
#. Label of the time (Time) field in DocType 'LMS Live Class' #. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48 #: frontend/src/components/Modals/Event.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:52 #: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Quiz.vue:58 #: frontend/src/components/Quiz.vue:58
#: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -6934,7 +6929,7 @@ msgstr "Til"
msgid "To Date" msgid "To Date"
msgstr "Til dato" msgstr "Til dato"
#: lms/lms/utils.py:1721 #: lms/lms/utils.py:1722
msgid "To join this batch, please contact the Administrator." msgid "To join this batch, please contact the Administrator."
msgstr "" msgstr ""
@@ -7056,7 +7051,7 @@ msgstr ""
msgid "Under Review" msgid "Under Review"
msgstr "" 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" msgid "Unpublished"
msgstr "" msgstr ""
@@ -7077,8 +7072,8 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
#. Label of the upcoming (Check) field in DocType 'LMS Course' #. 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/Batches.vue:330 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:347 #: frontend/src/pages/Courses.vue:346
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming" msgid "Upcoming"
@@ -7220,7 +7215,7 @@ msgid "View Applications"
msgstr "" msgstr ""
#: frontend/src/components/CertificationLinks.vue:10 #: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67 #: frontend/src/components/Modals/Event.vue:73
msgid "View Certificate" msgid "View Certificate"
msgstr "" msgstr ""
@@ -7327,6 +7322,11 @@ msgstr ""
msgid "Withdrawn" msgid "Withdrawn"
msgstr "" 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' #. Label of the work_environment (Section Break) field in DocType 'User'
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
msgid "Work Environment" msgid "Work Environment"
@@ -7427,7 +7427,7 @@ msgstr ""
msgid "You cannot enroll in an unpublished course." msgid "You cannot enroll in an unpublished course."
msgstr "" msgstr ""
#: lms/lms/utils.py:2085 #: lms/lms/utils.py:2086
msgid "You cannot enroll in an unpublished program." msgid "You cannot enroll in an unpublished program."
msgstr "" msgstr ""
@@ -7443,11 +7443,11 @@ msgstr ""
msgid "You cannot schedule evaluations for past slots." msgid "You cannot schedule evaluations for past slots."
msgstr "" msgstr ""
#: lms/lms/utils.py:2259 #: lms/lms/utils.py:2260
msgid "You do not have access to this batch." msgid "You do not have access to this batch."
msgstr "" msgstr ""
#: lms/lms/utils.py:2242 #: lms/lms/utils.py:2243
msgid "You do not have access to this course." msgid "You do not have access to this course."
msgstr "" 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 "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2026-01-16 16:04+0000\n" "POT-Creation-Date: 2026-01-23 16:05+0000\n"
"PO-Revision-Date: 2026-01-21 20:16\n" "PO-Revision-Date: 2026-02-05 06:43\n"
"Last-Translator: jannat@frappe.io\n" "Last-Translator: jannat@frappe.io\n"
"Language-Team: Polish\n" "Language-Team: Polish\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -319,7 +319,7 @@ msgid "Administrator"
msgstr "Administrator" msgstr "Administrator"
#. Name of a role #. 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" msgid "All"
msgstr "" msgstr ""
@@ -486,7 +486,7 @@ msgstr ""
msgid "Apps" msgid "Apps"
msgstr "Aplikacje" msgstr "Aplikacje"
#: frontend/src/pages/Batches.vue:329 #: frontend/src/pages/Batches.vue:331
msgid "Archived" msgid "Archived"
msgstr "W archiwum" 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'
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request' #. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
#. Label of the batch_name (Link) field in DocType 'LMS Live Class' #. 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/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200 #: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125
@@ -878,7 +878,7 @@ msgid "Batch:"
msgstr "Grupa:" msgstr "Grupa:"
#. Label of the batches (Check) field in DocType 'LMS Settings' #. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue: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 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121
msgid "Batches" msgid "Batches"
msgstr "" msgstr ""
@@ -1023,7 +1023,7 @@ msgstr ""
msgid "Certificate of Completion" msgid "Certificate of Completion"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:347 #: frontend/src/components/Modals/Event.vue:353
msgid "Certificate saved successfully" msgid "Certificate saved successfully"
msgstr "" msgstr ""
@@ -1043,7 +1043,7 @@ msgstr ""
#. Label of a chart in the LMS Workspace #. Label of a chart in the LMS Workspace
#. Label of a Card Break in the LMS Workspace #. Label of a Card Break in the LMS Workspace
#. Label of a Link 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/components/Sidebar/AppSidebar.vue:550
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100
#: frontend/src/pages/CourseCertification.vue:10 #: frontend/src/pages/CourseCertification.vue:10
@@ -1771,7 +1771,7 @@ msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:95 #: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127 #: 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/ProgramForm.vue:49
#: frontend/src/pages/Programs/Programs.vue:35 #: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1878,7 +1878,7 @@ msgstr ""
msgid "Create your first quiz" msgid "Create your first quiz"
msgstr "" 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" msgid "Created"
msgstr "utworzył(a)" 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 Certificate Request'
#. Label of the date (Date) field in DocType 'LMS Live Class' #. Label of the date (Date) field in DocType 'LMS Live Class'
#. Label of the date (Date) field in DocType 'Scheduled Flow' #. 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 #: frontend/src/components/Modals/LiveClassModal.vue:29
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -2241,7 +2241,7 @@ msgstr ""
msgid "Edit Email Template" msgid "Edit Email Template"
msgstr "" msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:13
msgid "Edit Payment Gateway" msgid "Edit Payment Gateway"
msgstr "" msgstr ""
@@ -2424,7 +2424,7 @@ msgstr ""
msgid "Enroll Now" msgid "Enroll Now"
msgstr "" 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 #: frontend/src/pages/Programs/StudentPrograms.vue:96
msgid "Enrolled" msgid "Enrolled"
msgstr "" msgstr ""
@@ -2526,7 +2526,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace #. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json #: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json
msgid "Evaluation" msgid "Evaluation"
msgstr "" msgstr ""
@@ -2551,7 +2551,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date." msgid "Evaluation end date cannot be less than the batch end date."
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:286 #: frontend/src/components/Modals/Event.vue:292
msgid "Evaluation saved successfully" msgid "Evaluation saved successfully"
msgstr "" msgstr ""
@@ -2664,7 +2664,7 @@ msgstr ""
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33 #: 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 #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date" msgid "Expiry Date"
msgstr "Data ważności" msgstr "Data ważności"
@@ -2695,7 +2695,7 @@ msgstr ""
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. 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_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail" msgid "Fail"
@@ -3209,7 +3209,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course' #. 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_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "In Progress" 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 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate' #. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28 #: 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/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date" msgid "Issue Date"
@@ -3456,7 +3456,7 @@ msgstr ""
msgid "Join Call" msgid "Join Call"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:78 #: frontend/src/components/Modals/Event.vue:84
msgid "Join Meeting" msgid "Join Meeting"
msgstr "" msgstr ""
@@ -3896,7 +3896,7 @@ msgstr "LinkedIn"
msgid "LinkedIn ID" msgid "LinkedIn ID"
msgstr "" msgstr ""
#: frontend/src/pages/Courses.vue:341 #: frontend/src/pages/Courses.vue:340
msgid "Live" msgid "Live"
msgstr "" msgstr ""
@@ -4429,7 +4429,7 @@ msgstr "Nazwa"
#: frontend/src/components/Settings/Members.vue:17 #: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16 #: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17 #: 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 #: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json #: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New" msgid "New"
@@ -4461,7 +4461,7 @@ msgstr ""
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "" msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:12
msgid "New Payment Gateway" msgid "New Payment Gateway"
msgstr "" msgstr ""
@@ -4778,12 +4778,7 @@ msgstr ""
#: frontend/src/components/UserAvatar.vue:11 #: frontend/src/components/UserAvatar.vue:11
#: frontend/src/pages/CertifiedParticipants.vue:46 #: frontend/src/pages/CertifiedParticipants.vue:46
#: frontend/src/pages/Profile.vue:69 #: 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 "" msgstr ""
#. Label of the option (Data) field in DocType 'LMS Option' #. Label of the option (Data) field in DocType 'LMS Option'
@@ -4924,7 +4919,7 @@ msgstr ""
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. 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_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass" msgid "Pass"
@@ -5054,7 +5049,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' #. 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_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending" msgid "Pending"
@@ -5194,7 +5189,7 @@ msgstr ""
msgid "Please login to continue with payment." msgid "Please login to continue with payment."
msgstr "" msgstr ""
#: lms/lms/utils.py:2081 #: lms/lms/utils.py:2082
msgid "Please login to enroll in the program." msgid "Please login to enroll in the program."
msgstr "" 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 Course'
#. Label of the published (Check) field in DocType 'LMS Program' #. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51 #: 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/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105
#: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100 #: 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 (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review' #. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147 #: 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 #: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.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/AssignmentForm.vue:65
#: frontend/src/components/Modals/EditProfile.vue:121 #: frontend/src/components/Modals/EditProfile.vue:121
#: frontend/src/components/Modals/EmailTemplateModal.vue:12 #: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:115 #: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:151 #: frontend/src/components/Modals/Event.vue:157
#: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78 #: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/Coupons/CouponDetails.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/components/Settings/Transactions/TransactionDetails.vue:129
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17 #: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14 #: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
@@ -6048,7 +6043,7 @@ msgstr ""
msgid "Select Date" msgid "Select Date"
msgstr "" msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:26
msgid "Select Payment Gateway" msgid "Select Payment Gateway"
msgstr "" msgstr ""
@@ -6364,7 +6359,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission' #. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case 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/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19 #: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6475,7 +6470,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation' #. 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 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary" msgid "Summary"
msgstr "Podsumowanie" msgstr "Podsumowanie"
@@ -6571,7 +6566,7 @@ msgstr ""
#. Label of the template (Link) field in DocType 'LMS Certificate' #. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43 #: 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 #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template" msgid "Template"
msgstr "Szablon" msgstr "Szablon"
@@ -6620,7 +6615,7 @@ msgstr ""
msgid "Thanks and Regards" msgid "Thanks and Regards"
msgstr "" msgstr ""
#: lms/lms/utils.py:2247 #: lms/lms/utils.py:2248
msgid "The batch does not exist." msgid "The batch does not exist."
msgstr "" 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." msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session."
msgstr "" msgstr ""
#: lms/lms/utils.py:1747 #: lms/lms/utils.py:1748
msgid "The coupon code '{0}' is invalid." msgid "The coupon code '{0}' is invalid."
msgstr "" msgstr ""
@@ -6652,7 +6647,7 @@ msgstr ""
msgid "The last day to schedule your evaluations is " msgid "The last day to schedule your evaluations is "
msgstr "" msgstr ""
#: lms/lms/utils.py:2231 #: lms/lms/utils.py:2232
msgid "The lesson does not exist." msgid "The lesson does not exist."
msgstr "" msgstr ""
@@ -6660,7 +6655,7 @@ msgstr ""
msgid "The slot is already booked by another participant." msgid "The slot is already booked by another participant."
msgstr "" 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." msgid "The specified batch does not exist."
msgstr "" msgstr ""
@@ -6726,15 +6721,15 @@ msgstr ""
msgid "This class has ended" msgid "This class has ended"
msgstr "" msgstr ""
#: lms/lms/utils.py:1776 #: lms/lms/utils.py:1777
msgid "This coupon has expired." msgid "This coupon has expired."
msgstr "" msgstr ""
#: lms/lms/utils.py:1779 #: lms/lms/utils.py:1780
msgid "This coupon has reached its maximum usage limit." msgid "This coupon has reached its maximum usage limit."
msgstr "" msgstr ""
#: lms/lms/utils.py:1788 #: lms/lms/utils.py:1789
msgid "This coupon is not applicable to this {0}." msgid "This coupon is not applicable to this {0}."
msgstr "" msgstr ""
@@ -6742,7 +6737,7 @@ msgstr ""
msgid "This course has:" msgid "This course has:"
msgstr "" msgstr ""
#: lms/lms/utils.py:1707 #: lms/lms/utils.py:1708
msgid "This course is free." msgid "This course is free."
msgstr "" msgstr ""
@@ -6799,7 +6794,7 @@ msgid "Thursday"
msgstr "czwartek" msgstr "czwartek"
#. Label of the time (Time) field in DocType 'LMS Live Class' #. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48 #: frontend/src/components/Modals/Event.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:52 #: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Quiz.vue:58 #: frontend/src/components/Quiz.vue:58
#: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -6934,7 +6929,7 @@ msgstr ""
msgid "To Date" msgid "To Date"
msgstr "" msgstr ""
#: lms/lms/utils.py:1721 #: lms/lms/utils.py:1722
msgid "To join this batch, please contact the Administrator." msgid "To join this batch, please contact the Administrator."
msgstr "" msgstr ""
@@ -7056,7 +7051,7 @@ msgstr ""
msgid "Under Review" msgid "Under Review"
msgstr "" 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" msgid "Unpublished"
msgstr "" msgstr ""
@@ -7077,8 +7072,8 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
#. Label of the upcoming (Check) field in DocType 'LMS Course' #. 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/Batches.vue:330 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:347 #: frontend/src/pages/Courses.vue:346
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming" msgid "Upcoming"
@@ -7220,7 +7215,7 @@ msgid "View Applications"
msgstr "" msgstr ""
#: frontend/src/components/CertificationLinks.vue:10 #: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67 #: frontend/src/components/Modals/Event.vue:73
msgid "View Certificate" msgid "View Certificate"
msgstr "" msgstr ""
@@ -7327,6 +7322,11 @@ msgstr ""
msgid "Withdrawn" msgid "Withdrawn"
msgstr "" 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' #. Label of the work_environment (Section Break) field in DocType 'User'
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
msgid "Work Environment" msgid "Work Environment"
@@ -7427,7 +7427,7 @@ msgstr ""
msgid "You cannot enroll in an unpublished course." msgid "You cannot enroll in an unpublished course."
msgstr "" msgstr ""
#: lms/lms/utils.py:2085 #: lms/lms/utils.py:2086
msgid "You cannot enroll in an unpublished program." msgid "You cannot enroll in an unpublished program."
msgstr "" msgstr ""
@@ -7443,11 +7443,11 @@ msgstr ""
msgid "You cannot schedule evaluations for past slots." msgid "You cannot schedule evaluations for past slots."
msgstr "" msgstr ""
#: lms/lms/utils.py:2259 #: lms/lms/utils.py:2260
msgid "You do not have access to this batch." msgid "You do not have access to this batch."
msgstr "" msgstr ""
#: lms/lms/utils.py:2242 #: lms/lms/utils.py:2243
msgid "You do not have access to this course." msgid "You do not have access to this course."
msgstr "" msgstr ""
+58 -58
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2026-01-16 16:04+0000\n" "POT-Creation-Date: 2026-01-23 16:05+0000\n"
"PO-Revision-Date: 2026-01-19 20:13\n" "PO-Revision-Date: 2026-02-05 06:43\n"
"Last-Translator: jannat@frappe.io\n" "Last-Translator: jannat@frappe.io\n"
"Language-Team: Portuguese\n" "Language-Team: Portuguese\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -319,7 +319,7 @@ msgid "Administrator"
msgstr "" msgstr ""
#. Name of a role #. 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" msgid "All"
msgstr "" msgstr ""
@@ -486,7 +486,7 @@ msgstr ""
msgid "Apps" msgid "Apps"
msgstr "" msgstr ""
#: frontend/src/pages/Batches.vue:329 #: frontend/src/pages/Batches.vue:331
msgid "Archived" msgid "Archived"
msgstr "" 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'
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request' #. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
#. Label of the batch_name (Link) field in DocType 'LMS Live Class' #. 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/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200 #: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125
@@ -878,7 +878,7 @@ msgid "Batch:"
msgstr "" msgstr ""
#. Label of the batches (Check) field in DocType 'LMS Settings' #. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue: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 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121
msgid "Batches" msgid "Batches"
msgstr "" msgstr ""
@@ -1023,7 +1023,7 @@ msgstr ""
msgid "Certificate of Completion" msgid "Certificate of Completion"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:347 #: frontend/src/components/Modals/Event.vue:353
msgid "Certificate saved successfully" msgid "Certificate saved successfully"
msgstr "" msgstr ""
@@ -1043,7 +1043,7 @@ msgstr ""
#. Label of a chart in the LMS Workspace #. Label of a chart in the LMS Workspace
#. Label of a Card Break in the LMS Workspace #. Label of a Card Break in the LMS Workspace
#. Label of a Link 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/components/Sidebar/AppSidebar.vue:550
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100
#: frontend/src/pages/CourseCertification.vue:10 #: frontend/src/pages/CourseCertification.vue:10
@@ -1771,7 +1771,7 @@ msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:95 #: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127 #: 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/ProgramForm.vue:49
#: frontend/src/pages/Programs/Programs.vue:35 #: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1878,7 +1878,7 @@ msgstr ""
msgid "Create your first quiz" msgid "Create your first quiz"
msgstr "" 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" msgid "Created"
msgstr "" 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 Certificate Request'
#. Label of the date (Date) field in DocType 'LMS Live Class' #. Label of the date (Date) field in DocType 'LMS Live Class'
#. Label of the date (Date) field in DocType 'Scheduled Flow' #. 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 #: frontend/src/components/Modals/LiveClassModal.vue:29
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -2241,7 +2241,7 @@ msgstr ""
msgid "Edit Email Template" msgid "Edit Email Template"
msgstr "" msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:13
msgid "Edit Payment Gateway" msgid "Edit Payment Gateway"
msgstr "" msgstr ""
@@ -2424,7 +2424,7 @@ msgstr ""
msgid "Enroll Now" msgid "Enroll Now"
msgstr "" 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 #: frontend/src/pages/Programs/StudentPrograms.vue:96
msgid "Enrolled" msgid "Enrolled"
msgstr "" msgstr ""
@@ -2526,7 +2526,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace #. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json #: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json
msgid "Evaluation" msgid "Evaluation"
msgstr "" msgstr ""
@@ -2551,7 +2551,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date." msgid "Evaluation end date cannot be less than the batch end date."
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:286 #: frontend/src/components/Modals/Event.vue:292
msgid "Evaluation saved successfully" msgid "Evaluation saved successfully"
msgstr "" msgstr ""
@@ -2664,7 +2664,7 @@ msgstr ""
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33 #: 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 #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date" msgid "Expiry Date"
msgstr "" msgstr ""
@@ -2695,7 +2695,7 @@ msgstr ""
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. 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_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail" msgid "Fail"
@@ -3209,7 +3209,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course' #. 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_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "In Progress" 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 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate' #. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28 #: 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/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date" msgid "Issue Date"
@@ -3456,7 +3456,7 @@ msgstr ""
msgid "Join Call" msgid "Join Call"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:78 #: frontend/src/components/Modals/Event.vue:84
msgid "Join Meeting" msgid "Join Meeting"
msgstr "" msgstr ""
@@ -3896,7 +3896,7 @@ msgstr ""
msgid "LinkedIn ID" msgid "LinkedIn ID"
msgstr "" msgstr ""
#: frontend/src/pages/Courses.vue:341 #: frontend/src/pages/Courses.vue:340
msgid "Live" msgid "Live"
msgstr "" msgstr ""
@@ -4429,7 +4429,7 @@ msgstr ""
#: frontend/src/components/Settings/Members.vue:17 #: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16 #: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17 #: 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 #: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json #: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New" msgid "New"
@@ -4461,7 +4461,7 @@ msgstr ""
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "" msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:12
msgid "New Payment Gateway" msgid "New Payment Gateway"
msgstr "" msgstr ""
@@ -4778,12 +4778,7 @@ msgstr ""
#: frontend/src/components/UserAvatar.vue:11 #: frontend/src/components/UserAvatar.vue:11
#: frontend/src/pages/CertifiedParticipants.vue:46 #: frontend/src/pages/CertifiedParticipants.vue:46
#: frontend/src/pages/Profile.vue:69 #: 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 "" msgstr ""
#. Label of the option (Data) field in DocType 'LMS Option' #. Label of the option (Data) field in DocType 'LMS Option'
@@ -4924,7 +4919,7 @@ msgstr ""
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. 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_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass" msgid "Pass"
@@ -5054,7 +5049,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' #. 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_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending" msgid "Pending"
@@ -5194,7 +5189,7 @@ msgstr ""
msgid "Please login to continue with payment." msgid "Please login to continue with payment."
msgstr "" msgstr ""
#: lms/lms/utils.py:2081 #: lms/lms/utils.py:2082
msgid "Please login to enroll in the program." msgid "Please login to enroll in the program."
msgstr "" 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 Course'
#. Label of the published (Check) field in DocType 'LMS Program' #. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51 #: 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/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105
#: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100 #: 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 (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review' #. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147 #: 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 #: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.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/AssignmentForm.vue:65
#: frontend/src/components/Modals/EditProfile.vue:121 #: frontend/src/components/Modals/EditProfile.vue:121
#: frontend/src/components/Modals/EmailTemplateModal.vue:12 #: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:115 #: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:151 #: frontend/src/components/Modals/Event.vue:157
#: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78 #: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/Coupons/CouponDetails.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/components/Settings/Transactions/TransactionDetails.vue:129
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17 #: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14 #: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
@@ -6048,7 +6043,7 @@ msgstr ""
msgid "Select Date" msgid "Select Date"
msgstr "" msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:26
msgid "Select Payment Gateway" msgid "Select Payment Gateway"
msgstr "" msgstr ""
@@ -6364,7 +6359,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission' #. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case 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/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19 #: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6475,7 +6470,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation' #. 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 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary" msgid "Summary"
msgstr "" msgstr ""
@@ -6571,7 +6566,7 @@ msgstr ""
#. Label of the template (Link) field in DocType 'LMS Certificate' #. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43 #: 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 #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template" msgid "Template"
msgstr "" msgstr ""
@@ -6620,7 +6615,7 @@ msgstr ""
msgid "Thanks and Regards" msgid "Thanks and Regards"
msgstr "" msgstr ""
#: lms/lms/utils.py:2247 #: lms/lms/utils.py:2248
msgid "The batch does not exist." msgid "The batch does not exist."
msgstr "" 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." msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session."
msgstr "" msgstr ""
#: lms/lms/utils.py:1747 #: lms/lms/utils.py:1748
msgid "The coupon code '{0}' is invalid." msgid "The coupon code '{0}' is invalid."
msgstr "" msgstr ""
@@ -6652,7 +6647,7 @@ msgstr ""
msgid "The last day to schedule your evaluations is " msgid "The last day to schedule your evaluations is "
msgstr "" msgstr ""
#: lms/lms/utils.py:2231 #: lms/lms/utils.py:2232
msgid "The lesson does not exist." msgid "The lesson does not exist."
msgstr "" msgstr ""
@@ -6660,7 +6655,7 @@ msgstr ""
msgid "The slot is already booked by another participant." msgid "The slot is already booked by another participant."
msgstr "" 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." msgid "The specified batch does not exist."
msgstr "" msgstr ""
@@ -6726,15 +6721,15 @@ msgstr ""
msgid "This class has ended" msgid "This class has ended"
msgstr "" msgstr ""
#: lms/lms/utils.py:1776 #: lms/lms/utils.py:1777
msgid "This coupon has expired." msgid "This coupon has expired."
msgstr "" msgstr ""
#: lms/lms/utils.py:1779 #: lms/lms/utils.py:1780
msgid "This coupon has reached its maximum usage limit." msgid "This coupon has reached its maximum usage limit."
msgstr "" msgstr ""
#: lms/lms/utils.py:1788 #: lms/lms/utils.py:1789
msgid "This coupon is not applicable to this {0}." msgid "This coupon is not applicable to this {0}."
msgstr "" msgstr ""
@@ -6742,7 +6737,7 @@ msgstr ""
msgid "This course has:" msgid "This course has:"
msgstr "" msgstr ""
#: lms/lms/utils.py:1707 #: lms/lms/utils.py:1708
msgid "This course is free." msgid "This course is free."
msgstr "" msgstr ""
@@ -6799,7 +6794,7 @@ msgid "Thursday"
msgstr "" msgstr ""
#. Label of the time (Time) field in DocType 'LMS Live Class' #. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48 #: frontend/src/components/Modals/Event.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:52 #: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Quiz.vue:58 #: frontend/src/components/Quiz.vue:58
#: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -6934,7 +6929,7 @@ msgstr ""
msgid "To Date" msgid "To Date"
msgstr "" msgstr ""
#: lms/lms/utils.py:1721 #: lms/lms/utils.py:1722
msgid "To join this batch, please contact the Administrator." msgid "To join this batch, please contact the Administrator."
msgstr "" msgstr ""
@@ -7056,7 +7051,7 @@ msgstr ""
msgid "Under Review" msgid "Under Review"
msgstr "" 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" msgid "Unpublished"
msgstr "" msgstr ""
@@ -7077,8 +7072,8 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
#. Label of the upcoming (Check) field in DocType 'LMS Course' #. 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/Batches.vue:330 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:347 #: frontend/src/pages/Courses.vue:346
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming" msgid "Upcoming"
@@ -7220,7 +7215,7 @@ msgid "View Applications"
msgstr "" msgstr ""
#: frontend/src/components/CertificationLinks.vue:10 #: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67 #: frontend/src/components/Modals/Event.vue:73
msgid "View Certificate" msgid "View Certificate"
msgstr "" msgstr ""
@@ -7327,6 +7322,11 @@ msgstr ""
msgid "Withdrawn" msgid "Withdrawn"
msgstr "" 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' #. Label of the work_environment (Section Break) field in DocType 'User'
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
msgid "Work Environment" msgid "Work Environment"
@@ -7427,7 +7427,7 @@ msgstr ""
msgid "You cannot enroll in an unpublished course." msgid "You cannot enroll in an unpublished course."
msgstr "" msgstr ""
#: lms/lms/utils.py:2085 #: lms/lms/utils.py:2086
msgid "You cannot enroll in an unpublished program." msgid "You cannot enroll in an unpublished program."
msgstr "" msgstr ""
@@ -7443,11 +7443,11 @@ msgstr ""
msgid "You cannot schedule evaluations for past slots." msgid "You cannot schedule evaluations for past slots."
msgstr "" msgstr ""
#: lms/lms/utils.py:2259 #: lms/lms/utils.py:2260
msgid "You do not have access to this batch." msgid "You do not have access to this batch."
msgstr "" msgstr ""
#: lms/lms/utils.py:2242 #: lms/lms/utils.py:2243
msgid "You do not have access to this course." msgid "You do not have access to this course."
msgstr "" msgstr ""
+77 -77
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2026-01-16 16:04+0000\n" "POT-Creation-Date: 2026-01-23 16:05+0000\n"
"PO-Revision-Date: 2026-01-21 20:16\n" "PO-Revision-Date: 2026-02-05 06:43\n"
"Last-Translator: jannat@frappe.io\n" "Last-Translator: jannat@frappe.io\n"
"Language-Team: Portuguese, Brazilian\n" "Language-Team: Portuguese, Brazilian\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -319,7 +319,7 @@ msgid "Administrator"
msgstr "" msgstr ""
#. Name of a role #. 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" msgid "All"
msgstr "" msgstr ""
@@ -486,7 +486,7 @@ msgstr ""
msgid "Apps" msgid "Apps"
msgstr "" msgstr ""
#: frontend/src/pages/Batches.vue:329 #: frontend/src/pages/Batches.vue:331
msgid "Archived" msgid "Archived"
msgstr "" 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'
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request' #. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
#. Label of the batch_name (Link) field in DocType 'LMS Live Class' #. 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/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200 #: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125
@@ -878,7 +878,7 @@ msgid "Batch:"
msgstr "" msgstr ""
#. Label of the batches (Check) field in DocType 'LMS Settings' #. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue: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 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121
msgid "Batches" msgid "Batches"
msgstr "" msgstr ""
@@ -1023,7 +1023,7 @@ msgstr ""
msgid "Certificate of Completion" msgid "Certificate of Completion"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:347 #: frontend/src/components/Modals/Event.vue:353
msgid "Certificate saved successfully" msgid "Certificate saved successfully"
msgstr "" msgstr ""
@@ -1043,7 +1043,7 @@ msgstr ""
#. Label of a chart in the LMS Workspace #. Label of a chart in the LMS Workspace
#. Label of a Card Break in the LMS Workspace #. Label of a Card Break in the LMS Workspace
#. Label of a Link 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/components/Sidebar/AppSidebar.vue:550
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100
#: frontend/src/pages/CourseCertification.vue:10 #: frontend/src/pages/CourseCertification.vue:10
@@ -1207,7 +1207,7 @@ msgstr ""
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "City" msgid "City"
msgstr "" msgstr "Cidade"
#: lms/templates/emails/live_class_reminder.html:10 #: lms/templates/emails/live_class_reminder.html:10
msgid "Class:" msgid "Class:"
@@ -1524,7 +1524,7 @@ msgstr ""
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/payment_country/payment_country.json #: lms/lms/doctype/payment_country/payment_country.json
msgid "Country" msgid "Country"
msgstr "" msgstr "País"
#. Label of the coupon (Link) field in DocType 'LMS Payment' #. Label of the coupon (Link) field in DocType 'LMS Payment'
#: lms/lms/doctype/lms_payment/lms_payment.json #: lms/lms/doctype/lms_payment/lms_payment.json
@@ -1771,7 +1771,7 @@ msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:95 #: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127 #: 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/ProgramForm.vue:49
#: frontend/src/pages/Programs/Programs.vue:35 #: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1878,7 +1878,7 @@ msgstr ""
msgid "Create your first quiz" msgid "Create your first quiz"
msgstr "" 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" msgid "Created"
msgstr "" msgstr ""
@@ -1899,7 +1899,7 @@ msgstr ""
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_payment/lms_payment.json #: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Currency" msgid "Currency"
msgstr "" msgstr "Moeda"
#. Label of the current_lesson (Link) field in DocType 'LMS Enrollment' #. Label of the current_lesson (Link) field in DocType 'LMS Enrollment'
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json #: 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 Certificate Request'
#. Label of the date (Date) field in DocType 'LMS Live Class' #. Label of the date (Date) field in DocType 'LMS Live Class'
#. Label of the date (Date) field in DocType 'Scheduled Flow' #. 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 #: frontend/src/components/Modals/LiveClassModal.vue:29
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -1962,7 +1962,7 @@ msgstr ""
#: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/lms_live_class/lms_live_class.json
#: lms/lms/doctype/scheduled_flow/scheduled_flow.json #: lms/lms/doctype/scheduled_flow/scheduled_flow.json
msgid "Date" msgid "Date"
msgstr "" msgstr "Data"
#: frontend/src/pages/BatchForm.vue:76 #: frontend/src/pages/BatchForm.vue:76
msgid "Date and Time" msgid "Date and Time"
@@ -2086,7 +2086,7 @@ msgstr ""
#: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/lms_live_class/lms_live_class.json
#: lms/lms/doctype/work_experience/work_experience.json #: lms/lms/doctype/work_experience/work_experience.json
msgid "Description" msgid "Description"
msgstr "" msgstr "Descrição"
#: frontend/src/components/Sidebar/Apps.vue:50 #: frontend/src/components/Sidebar/Apps.vue:50
msgid "Desk" msgid "Desk"
@@ -2096,7 +2096,7 @@ msgstr ""
#: frontend/src/pages/BatchForm.vue:21 frontend/src/pages/CourseForm.vue:25 #: frontend/src/pages/BatchForm.vue:21 frontend/src/pages/CourseForm.vue:25
#: frontend/src/pages/QuizForm.vue:50 #: frontend/src/pages/QuizForm.vue:50
msgid "Details" msgid "Details"
msgstr "" msgstr "Detalhes"
#. Label of the disable_pwa (Check) field in DocType 'LMS Settings' #. Label of the disable_pwa (Check) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -2122,7 +2122,7 @@ msgstr ""
#: frontend/src/components/Settings/PaymentGateways.vue:55 #: frontend/src/components/Settings/PaymentGateways.vue:55
#: frontend/src/components/Settings/ZoomSettings.vue:66 #: frontend/src/components/Settings/ZoomSettings.vue:66
msgid "Disabled" msgid "Disabled"
msgstr "" msgstr "Desativado"
#: frontend/src/components/DiscussionReplies.vue:57 #: frontend/src/components/DiscussionReplies.vue:57
#: lms/lms/widgets/NoPreviewModal.html:25 #: lms/lms/widgets/NoPreviewModal.html:25
@@ -2241,7 +2241,7 @@ msgstr ""
msgid "Edit Email Template" msgid "Edit Email Template"
msgstr "" msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:13
msgid "Edit Payment Gateway" msgid "Edit Payment Gateway"
msgstr "" msgstr ""
@@ -2291,7 +2291,7 @@ msgstr ""
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
#: lms/templates/signup-form.html:10 #: lms/templates/signup-form.html:10
msgid "Email" msgid "Email"
msgstr "" msgstr "E-Mail"
#: frontend/src/components/Modals/Event.vue:16 #: frontend/src/components/Modals/Event.vue:16
msgid "Email ID" msgid "Email ID"
@@ -2424,7 +2424,7 @@ msgstr ""
msgid "Enroll Now" msgid "Enroll Now"
msgstr "" 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 #: frontend/src/pages/Programs/StudentPrograms.vue:96
msgid "Enrolled" msgid "Enrolled"
msgstr "" msgstr ""
@@ -2526,7 +2526,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace #. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json #: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json
msgid "Evaluation" msgid "Evaluation"
msgstr "" msgstr ""
@@ -2551,7 +2551,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date." msgid "Evaluation end date cannot be less than the batch end date."
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:286 #: frontend/src/components/Modals/Event.vue:292
msgid "Evaluation saved successfully" msgid "Evaluation saved successfully"
msgstr "" msgstr ""
@@ -2664,7 +2664,7 @@ msgstr ""
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33 #: 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 #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date" msgid "Expiry Date"
msgstr "" msgstr ""
@@ -2695,7 +2695,7 @@ msgstr ""
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. 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_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail" msgid "Fail"
@@ -2796,7 +2796,7 @@ msgstr ""
#: frontend/src/components/Modals/EditProfile.vue:70 #: frontend/src/components/Modals/EditProfile.vue:70
#: frontend/src/components/Settings/Members.vue:110 #: frontend/src/components/Settings/Members.vue:110
msgid "First Name" msgid "First Name"
msgstr "" msgstr "Nome"
#. Option for the 'Time Preference' (Select) field in DocType 'User' #. Option for the 'Time Preference' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
@@ -2874,7 +2874,7 @@ msgstr ""
#: lms/lms/doctype/lms_program_member/lms_program_member.json #: lms/lms/doctype/lms_program_member/lms_program_member.json
#: lms/templates/signup-form.html:5 #: lms/templates/signup-form.html:5
msgid "Full Name" msgid "Full Name"
msgstr "" msgstr "Nome Completo"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#. Option in a Select field in the job-opportunity Web Form #. 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_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge/lms_badge.json #: lms/lms/doctype/lms_badge/lms_badge.json
msgid "Image" msgid "Image"
msgstr "" msgstr "Imagem"
#: frontend/src/components/Modals/EditCoverImage.vue:58 #: frontend/src/components/Modals/EditCoverImage.vue:58
#: frontend/src/components/UnsplashImageBrowser.vue:52 #: frontend/src/components/UnsplashImageBrowser.vue:52
@@ -3209,7 +3209,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course' #. 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_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "In Progress" msgid "In Progress"
@@ -3248,7 +3248,7 @@ msgstr ""
#: lms/lms/doctype/industry/industry.json #: lms/lms/doctype/industry/industry.json
#: lms/lms/doctype/preferred_industry/preferred_industry.json #: lms/lms/doctype/preferred_industry/preferred_industry.json
msgid "Industry" 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'
#. Label of the input (Data) field in DocType 'LMS Test Case Submission' #. 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 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate' #. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28 #: 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/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date" msgid "Issue Date"
@@ -3436,7 +3436,7 @@ msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.json #: lms/job/doctype/lms_job_application/lms_job_application.json
#: lms/job/web_form/job_opportunity/job_opportunity.json #: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Job Title" msgid "Job Title"
msgstr "" msgstr "Cargo"
#. Label of the jobs (Check) field in DocType 'LMS Settings' #. Label of the jobs (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/JobApplications.vue:9 frontend/src/pages/JobDetail.vue:10 #: frontend/src/pages/JobApplications.vue:9 frontend/src/pages/JobDetail.vue:10
@@ -3456,7 +3456,7 @@ msgstr ""
msgid "Join Call" msgid "Join Call"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:78 #: frontend/src/components/Modals/Event.vue:84
msgid "Join Meeting" msgid "Join Meeting"
msgstr "" msgstr ""
@@ -3782,7 +3782,7 @@ msgstr ""
#: frontend/src/components/Modals/EditProfile.vue:74 #: frontend/src/components/Modals/EditProfile.vue:74
msgid "Last Name" msgid "Last Name"
msgstr "" msgstr "Sobrenome"
#. Label of the launch_file (Code) field in DocType 'Course Chapter' #. Label of the launch_file (Code) field in DocType 'Course Chapter'
#: lms/lms/doctype/course_chapter/course_chapter.json #: lms/lms/doctype/course_chapter/course_chapter.json
@@ -3896,7 +3896,7 @@ msgstr ""
msgid "LinkedIn ID" msgid "LinkedIn ID"
msgstr "" msgstr ""
#: frontend/src/pages/Courses.vue:341 #: frontend/src/pages/Courses.vue:340
msgid "Live" msgid "Live"
msgstr "" msgstr ""
@@ -4429,7 +4429,7 @@ msgstr ""
#: frontend/src/components/Settings/Members.vue:17 #: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16 #: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17 #: 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 #: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json #: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New" msgid "New"
@@ -4461,7 +4461,7 @@ msgstr ""
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "" msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:12
msgid "New Payment Gateway" msgid "New Payment Gateway"
msgstr "" msgstr ""
@@ -4665,7 +4665,7 @@ msgstr ""
#: frontend/src/pages/Lesson.vue:405 frontend/src/pages/Lesson.vue:886 #: frontend/src/pages/Lesson.vue:405 frontend/src/pages/Lesson.vue:886
#: frontend/src/pages/Lesson.vue:897 #: frontend/src/pages/Lesson.vue:897
msgid "Notes" msgid "Notes"
msgstr "Notas" msgstr "Anotações"
#: frontend/src/pages/Notifications.vue:143 #: frontend/src/pages/Notifications.vue:143
msgid "Nothing to see here." msgid "Nothing to see here."
@@ -4778,14 +4778,9 @@ msgstr ""
#: frontend/src/components/UserAvatar.vue:11 #: frontend/src/components/UserAvatar.vue:11
#: frontend/src/pages/CertifiedParticipants.vue:46 #: frontend/src/pages/CertifiedParticipants.vue:46
#: frontend/src/pages/Profile.vue:69 #: frontend/src/pages/Profile.vue:69
msgid "Open to Opportunities" msgid "Open to Work"
msgstr "" 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' #. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:70 #: frontend/src/components/Modals/Question.vue:70
#: lms/lms/doctype/lms_option/lms_option.json #: lms/lms/doctype/lms_option/lms_option.json
@@ -4924,7 +4919,7 @@ msgstr ""
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. 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_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass" msgid "Pass"
@@ -5054,7 +5049,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' #. 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_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending" msgid "Pending"
@@ -5194,7 +5189,7 @@ msgstr ""
msgid "Please login to continue with payment." msgid "Please login to continue with payment."
msgstr "" msgstr ""
#: lms/lms/utils.py:2081 #: lms/lms/utils.py:2082
msgid "Please login to enroll in the program." msgid "Please login to enroll in the program."
msgstr "" 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 Course'
#. Label of the published (Check) field in DocType 'LMS Program' #. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51 #: 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/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105
#: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100 #: 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 (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review' #. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147 #: 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 #: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.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/AssignmentForm.vue:65
#: frontend/src/components/Modals/EditProfile.vue:121 #: frontend/src/components/Modals/EditProfile.vue:121
#: frontend/src/components/Modals/EmailTemplateModal.vue:12 #: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:115 #: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:151 #: frontend/src/components/Modals/Event.vue:157
#: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78 #: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/Coupons/CouponDetails.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/components/Settings/Transactions/TransactionDetails.vue:129
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17 #: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14 #: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
@@ -6048,7 +6043,7 @@ msgstr ""
msgid "Select Date" msgid "Select Date"
msgstr "" msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:26
msgid "Select Payment Gateway" msgid "Select Payment Gateway"
msgstr "" msgstr ""
@@ -6276,7 +6271,7 @@ msgstr ""
#: lms/lms/doctype/lms_source/lms_source.json #: lms/lms/doctype/lms_source/lms_source.json
#: lms/lms/doctype/lms_video_watch_duration/lms_video_watch_duration.json #: lms/lms/doctype/lms_video_watch_duration/lms_video_watch_duration.json
msgid "Source" msgid "Source"
msgstr "" msgstr "Origem"
#. Option for the 'Member Type' (Select) field in DocType 'LMS Enrollment' #. Option for the 'Member Type' (Select) field in DocType 'LMS Enrollment'
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json #: lms/lms/doctype/lms_enrollment/lms_enrollment.json
@@ -6342,7 +6337,7 @@ msgstr ""
#: frontend/src/pages/Billing.vue:134 #: frontend/src/pages/Billing.vue:134
msgid "State/Province" msgid "State/Province"
msgstr "" msgstr "Estado"
#. Label of the tab_4_tab (Tab Break) field in DocType 'LMS Course' #. Label of the tab_4_tab (Tab Break) field in DocType 'LMS Course'
#. Label of the statistics (Check) field in DocType 'LMS Settings' #. 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 #. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission' #. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case 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/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19 #: 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_programming_exercise_submission/lms_programming_exercise_submission.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Status" msgid "Status"
msgstr "" msgstr "Situação"
#: lms/templates/assessments.html:17 #: lms/templates/assessments.html:17
msgid "Status/Score" msgid "Status/Score"
@@ -6475,7 +6470,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation' #. 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 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary" msgid "Summary"
msgstr "" msgstr ""
@@ -6571,7 +6566,7 @@ msgstr ""
#. Label of the template (Link) field in DocType 'LMS Certificate' #. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43 #: 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 #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template" msgid "Template"
msgstr "" msgstr ""
@@ -6620,7 +6615,7 @@ msgstr ""
msgid "Thanks and Regards" msgid "Thanks and Regards"
msgstr "" msgstr ""
#: lms/lms/utils.py:2247 #: lms/lms/utils.py:2248
msgid "The batch does not exist." msgid "The batch does not exist."
msgstr "" 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." msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session."
msgstr "" msgstr ""
#: lms/lms/utils.py:1747 #: lms/lms/utils.py:1748
msgid "The coupon code '{0}' is invalid." msgid "The coupon code '{0}' is invalid."
msgstr "" msgstr ""
@@ -6652,7 +6647,7 @@ msgstr ""
msgid "The last day to schedule your evaluations is " msgid "The last day to schedule your evaluations is "
msgstr "" msgstr ""
#: lms/lms/utils.py:2231 #: lms/lms/utils.py:2232
msgid "The lesson does not exist." msgid "The lesson does not exist."
msgstr "" msgstr ""
@@ -6660,7 +6655,7 @@ msgstr ""
msgid "The slot is already booked by another participant." msgid "The slot is already booked by another participant."
msgstr "" 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." msgid "The specified batch does not exist."
msgstr "" msgstr ""
@@ -6726,15 +6721,15 @@ msgstr ""
msgid "This class has ended" msgid "This class has ended"
msgstr "" msgstr ""
#: lms/lms/utils.py:1776 #: lms/lms/utils.py:1777
msgid "This coupon has expired." msgid "This coupon has expired."
msgstr "" msgstr ""
#: lms/lms/utils.py:1779 #: lms/lms/utils.py:1780
msgid "This coupon has reached its maximum usage limit." msgid "This coupon has reached its maximum usage limit."
msgstr "" msgstr ""
#: lms/lms/utils.py:1788 #: lms/lms/utils.py:1789
msgid "This coupon is not applicable to this {0}." msgid "This coupon is not applicable to this {0}."
msgstr "" msgstr ""
@@ -6742,7 +6737,7 @@ msgstr ""
msgid "This course has:" msgid "This course has:"
msgstr "" msgstr ""
#: lms/lms/utils.py:1707 #: lms/lms/utils.py:1708
msgid "This course is free." msgid "This course is free."
msgstr "" msgstr ""
@@ -6799,7 +6794,7 @@ msgid "Thursday"
msgstr "" msgstr ""
#. Label of the time (Time) field in DocType 'LMS Live Class' #. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48 #: frontend/src/components/Modals/Event.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:52 #: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Quiz.vue:58 #: frontend/src/components/Quiz.vue:58
#: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -6934,7 +6929,7 @@ msgstr ""
msgid "To Date" msgid "To Date"
msgstr "" msgstr ""
#: lms/lms/utils.py:1721 #: lms/lms/utils.py:1722
msgid "To join this batch, please contact the Administrator." msgid "To join this batch, please contact the Administrator."
msgstr "" msgstr ""
@@ -7056,7 +7051,7 @@ msgstr ""
msgid "Under Review" msgid "Under Review"
msgstr "" 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" msgid "Unpublished"
msgstr "" msgstr ""
@@ -7077,8 +7072,8 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
#. Label of the upcoming (Check) field in DocType 'LMS Course' #. 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/Batches.vue:330 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:347 #: frontend/src/pages/Courses.vue:346
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming" msgid "Upcoming"
@@ -7220,7 +7215,7 @@ msgid "View Applications"
msgstr "" msgstr ""
#: frontend/src/components/CertificationLinks.vue:10 #: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67 #: frontend/src/components/Modals/Event.vue:73
msgid "View Certificate" msgid "View Certificate"
msgstr "" msgstr ""
@@ -7327,6 +7322,11 @@ msgstr ""
msgid "Withdrawn" msgid "Withdrawn"
msgstr "" 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' #. Label of the work_environment (Section Break) field in DocType 'User'
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
msgid "Work Environment" msgid "Work Environment"
@@ -7427,7 +7427,7 @@ msgstr ""
msgid "You cannot enroll in an unpublished course." msgid "You cannot enroll in an unpublished course."
msgstr "" msgstr ""
#: lms/lms/utils.py:2085 #: lms/lms/utils.py:2086
msgid "You cannot enroll in an unpublished program." msgid "You cannot enroll in an unpublished program."
msgstr "" msgstr ""
@@ -7443,11 +7443,11 @@ msgstr ""
msgid "You cannot schedule evaluations for past slots." msgid "You cannot schedule evaluations for past slots."
msgstr "" msgstr ""
#: lms/lms/utils.py:2259 #: lms/lms/utils.py:2260
msgid "You do not have access to this batch." msgid "You do not have access to this batch."
msgstr "" msgstr ""
#: lms/lms/utils.py:2242 #: lms/lms/utils.py:2243
msgid "You do not have access to this course." msgid "You do not have access to this course."
msgstr "" msgstr ""
@@ -7664,7 +7664,7 @@ msgstr ""
#: frontend/src/components/StudentHeatmap.vue:6 #: frontend/src/components/StudentHeatmap.vue:6
msgid "activities" msgid "activities"
msgstr "" msgstr "atividades"
#: frontend/src/components/StudentHeatmap.vue:6 #: frontend/src/components/StudentHeatmap.vue:6
msgid "activity" msgid "activity"
+59 -59
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2026-01-16 16:04+0000\n" "POT-Creation-Date: 2026-01-23 16:05+0000\n"
"PO-Revision-Date: 2026-01-21 20:16\n" "PO-Revision-Date: 2026-02-05 06:43\n"
"Last-Translator: jannat@frappe.io\n" "Last-Translator: jannat@frappe.io\n"
"Language-Team: Russian\n" "Language-Team: Russian\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -319,7 +319,7 @@ msgid "Administrator"
msgstr "Администратор" msgstr "Администратор"
#. Name of a role #. 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" msgid "All"
msgstr "Все" msgstr "Все"
@@ -486,7 +486,7 @@ msgstr "Утвержден"
msgid "Apps" msgid "Apps"
msgstr "Приложения" msgstr "Приложения"
#: frontend/src/pages/Batches.vue:329 #: frontend/src/pages/Batches.vue:331
msgid "Archived" msgid "Archived"
msgstr "Архивировано" 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'
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request' #. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
#. Label of the batch_name (Link) field in DocType 'LMS Live Class' #. 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/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200 #: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125
@@ -878,7 +878,7 @@ msgid "Batch:"
msgstr "Партия:" msgstr "Партия:"
#. Label of the batches (Check) field in DocType 'LMS Settings' #. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue: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 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121
msgid "Batches" msgid "Batches"
msgstr "Группы" msgstr "Группы"
@@ -1023,7 +1023,7 @@ msgstr "Ссылка на сертификат"
msgid "Certificate of Completion" msgid "Certificate of Completion"
msgstr "Сертификат об окончании" msgstr "Сертификат об окончании"
#: frontend/src/components/Modals/Event.vue:347 #: frontend/src/components/Modals/Event.vue:353
msgid "Certificate saved successfully" msgid "Certificate saved successfully"
msgstr "Сертификат успешно сохранен" msgstr "Сертификат успешно сохранен"
@@ -1043,7 +1043,7 @@ msgstr "Сертификаты успешно созданы"
#. Label of a chart in the LMS Workspace #. Label of a chart in the LMS Workspace
#. Label of a Card Break in the LMS Workspace #. Label of a Card Break in the LMS Workspace
#. Label of a Link 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/components/Sidebar/AppSidebar.vue:550
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100
#: frontend/src/pages/CourseCertification.vue:10 #: frontend/src/pages/CourseCertification.vue:10
@@ -1771,7 +1771,7 @@ msgstr "Курс {0} уже добавлен в эту программу."
#: frontend/src/components/Modals/BatchStudentProgress.vue:95 #: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127 #: 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/ProgramForm.vue:49
#: frontend/src/pages/Programs/Programs.vue:35 #: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1878,7 +1878,7 @@ msgstr "Создайте свой первый курс"
msgid "Create your first quiz" msgid "Create your first quiz"
msgstr "Создать свой первый тест" 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" msgid "Created"
msgstr "Создано" 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 Certificate Request'
#. Label of the date (Date) field in DocType 'LMS Live Class' #. Label of the date (Date) field in DocType 'LMS Live Class'
#. Label of the date (Date) field in DocType 'Scheduled Flow' #. 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 #: frontend/src/components/Modals/LiveClassModal.vue:29
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -2241,7 +2241,7 @@ msgstr "Изменить купон"
msgid "Edit Email Template" msgid "Edit Email Template"
msgstr "Редактировать шаблон письма" msgstr "Редактировать шаблон письма"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:13
msgid "Edit Payment Gateway" msgid "Edit Payment Gateway"
msgstr "Изменить платежный шлюз" msgstr "Изменить платежный шлюз"
@@ -2424,7 +2424,7 @@ msgstr "Зарегистрировать участника в программ
msgid "Enroll Now" msgid "Enroll Now"
msgstr "Записаться сейчас" 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 #: frontend/src/pages/Programs/StudentPrograms.vue:96
msgid "Enrolled" msgid "Enrolled"
msgstr "Записан" msgstr "Записан"
@@ -2526,7 +2526,7 @@ msgstr "Ошибка при обновлении шаблона письма"
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace #. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json #: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json
msgid "Evaluation" msgid "Evaluation"
msgstr "Оценка" msgstr "Оценка"
@@ -2551,7 +2551,7 @@ msgstr "Запрос на оценку"
msgid "Evaluation end date cannot be less than the batch end date." msgid "Evaluation end date cannot be less than the batch end date."
msgstr "Дата окончания оценки не может быть меньше даты окончания группы." msgstr "Дата окончания оценки не может быть меньше даты окончания группы."
#: frontend/src/components/Modals/Event.vue:286 #: frontend/src/components/Modals/Event.vue:292
msgid "Evaluation saved successfully" msgid "Evaluation saved successfully"
msgstr "Вычисление успешно сохранено" msgstr "Вычисление успешно сохранено"
@@ -2664,7 +2664,7 @@ msgstr "Актуален до"
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33 #: 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 #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date" msgid "Expiry Date"
msgstr "Истекает" msgstr "Истекает"
@@ -2695,7 +2695,7 @@ msgstr "Узнать больше"
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. 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_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail" msgid "Fail"
@@ -3209,7 +3209,7 @@ msgstr "Курс импорта"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course' #. 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_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "In Progress" 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 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate' #. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28 #: 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/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date" msgid "Issue Date"
@@ -3456,7 +3456,7 @@ msgstr "Присоединиться"
msgid "Join Call" msgid "Join Call"
msgstr "Присоединиться к звонку" msgstr "Присоединиться к звонку"
#: frontend/src/components/Modals/Event.vue:78 #: frontend/src/components/Modals/Event.vue:84
msgid "Join Meeting" msgid "Join Meeting"
msgstr "Присоединиться к встрече" msgstr "Присоединиться к встрече"
@@ -3896,7 +3896,7 @@ msgstr "LinkedIn"
msgid "LinkedIn ID" msgid "LinkedIn ID"
msgstr "LinkedIn ID" msgstr "LinkedIn ID"
#: frontend/src/pages/Courses.vue:341 #: frontend/src/pages/Courses.vue:340
msgid "Live" msgid "Live"
msgstr "Live" msgstr "Live"
@@ -4429,7 +4429,7 @@ msgstr "Наименование"
#: frontend/src/components/Settings/Members.vue:17 #: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16 #: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17 #: 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 #: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json #: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New" msgid "New"
@@ -4461,7 +4461,7 @@ msgstr "Новая Вакансия"
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "Новый соискатель работы" msgstr "Новый соискатель работы"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:12
msgid "New Payment Gateway" msgid "New Payment Gateway"
msgstr "Новый платежный шлюз" msgstr "Новый платежный шлюз"
@@ -4778,13 +4778,8 @@ msgstr "Открыто для"
#: frontend/src/components/UserAvatar.vue:11 #: frontend/src/components/UserAvatar.vue:11
#: frontend/src/pages/CertifiedParticipants.vue:46 #: frontend/src/pages/CertifiedParticipants.vue:46
#: frontend/src/pages/Profile.vue:69 #: frontend/src/pages/Profile.vue:69
msgid "Open to Opportunities" msgid "Open to Work"
msgstr "Открыт для новых возможностей" 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' #. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:70 #: frontend/src/components/Modals/Question.vue:70
@@ -4924,7 +4919,7 @@ msgstr "Частично завершено"
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. 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_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass" msgid "Pass"
@@ -5054,7 +5049,7 @@ msgstr "Приложение платежей не установлено"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' #. 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_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending" msgid "Pending"
@@ -5194,7 +5189,7 @@ msgstr "Пожалуйста, войдите в систему, чтобы по
msgid "Please login to continue with payment." msgid "Please login to continue with payment."
msgstr "Пожалуйста, войдите в систему, чтобы продолжить оплату." msgstr "Пожалуйста, войдите в систему, чтобы продолжить оплату."
#: lms/lms/utils.py:2081 #: lms/lms/utils.py:2082
msgid "Please login to enroll in the program." msgid "Please login to enroll in the program."
msgstr "Пожалуйста, войдите в систему, чтобы зарегистрироваться в программе." 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 Course'
#. Label of the published (Check) field in DocType 'LMS Program' #. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51 #: 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/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105
#: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100 #: 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 (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review' #. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147 #: 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 #: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.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/AssignmentForm.vue:65
#: frontend/src/components/Modals/EditProfile.vue:121 #: frontend/src/components/Modals/EditProfile.vue:121
#: frontend/src/components/Modals/EmailTemplateModal.vue:12 #: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:115 #: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:151 #: frontend/src/components/Modals/Event.vue:157
#: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78 #: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/Coupons/CouponDetails.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/components/Settings/Transactions/TransactionDetails.vue:129
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17 #: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14 #: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
@@ -6048,7 +6043,7 @@ msgstr "Смотреть все"
msgid "Select Date" msgid "Select Date"
msgstr "Выбрать дату" msgstr "Выбрать дату"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:26
msgid "Select Payment Gateway" msgid "Select Payment Gateway"
msgstr "Выберите платежный шлюз" msgstr "Выберите платежный шлюз"
@@ -6364,7 +6359,7 @@ msgstr "Статистика"
#. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission' #. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case 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/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19 #: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6475,7 +6470,7 @@ msgstr "Успешно зачислен в программу"
#. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation' #. 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 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary" msgid "Summary"
msgstr "Резюме" msgstr "Резюме"
@@ -6571,7 +6566,7 @@ msgstr "Командная работа"
#. Label of the template (Link) field in DocType 'LMS Certificate' #. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43 #: 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 #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template" msgid "Template"
msgstr "Шаблон" msgstr "Шаблон"
@@ -6620,7 +6615,7 @@ msgstr "Спасибо за ваш отзыв."
msgid "Thanks and Regards" msgid "Thanks and Regards"
msgstr "Спасибо и с наилучшими пожеланиями" msgstr "Спасибо и с наилучшими пожеланиями"
#: lms/lms/utils.py:2247 #: lms/lms/utils.py:2248
msgid "The batch does not exist." msgid "The batch does not exist."
msgstr "Партия не существует." 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." msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session."
msgstr "Пакет, за который вы записались, начинается завтра. Будьте готовы и подождите, пока не закончите сеанс." msgstr "Пакет, за который вы записались, начинается завтра. Будьте готовы и подождите, пока не закончите сеанс."
#: lms/lms/utils.py:1747 #: lms/lms/utils.py:1748
msgid "The coupon code '{0}' is invalid." msgid "The coupon code '{0}' is invalid."
msgstr "Код купона '{0}' недействителен." msgstr "Код купона '{0}' недействителен."
@@ -6652,7 +6647,7 @@ msgstr ""
msgid "The last day to schedule your evaluations is " msgid "The last day to schedule your evaluations is "
msgstr "Последний день, когда можно назначить оценки " msgstr "Последний день, когда можно назначить оценки "
#: lms/lms/utils.py:2231 #: lms/lms/utils.py:2232
msgid "The lesson does not exist." msgid "The lesson does not exist."
msgstr "Урока не существует." msgstr "Урока не существует."
@@ -6660,7 +6655,7 @@ msgstr "Урока не существует."
msgid "The slot is already booked by another participant." msgid "The slot is already booked by another participant."
msgstr "Слот уже забронирован другим участником." 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." msgid "The specified batch does not exist."
msgstr "Указанная партия не существует." msgstr "Указанная партия не существует."
@@ -6726,15 +6721,15 @@ msgstr "Этот сертификат является бессрочным"
msgid "This class has ended" msgid "This class has ended"
msgstr "Этот урок закончился" msgstr "Этот урок закончился"
#: lms/lms/utils.py:1776 #: lms/lms/utils.py:1777
msgid "This coupon has expired." msgid "This coupon has expired."
msgstr "Срок действия этого купона истек." msgstr "Срок действия этого купона истек."
#: lms/lms/utils.py:1779 #: lms/lms/utils.py:1780
msgid "This coupon has reached its maximum usage limit." msgid "This coupon has reached its maximum usage limit."
msgstr "Данный купон достиг максимального лимита использования." msgstr "Данный купон достиг максимального лимита использования."
#: lms/lms/utils.py:1788 #: lms/lms/utils.py:1789
msgid "This coupon is not applicable to this {0}." msgid "This coupon is not applicable to this {0}."
msgstr "Этот купон не распространяется на этот {0}." msgstr "Этот купон не распространяется на этот {0}."
@@ -6742,7 +6737,7 @@ msgstr "Этот купон не распространяется на этот
msgid "This course has:" msgid "This course has:"
msgstr "Этот курс имеет:" msgstr "Этот курс имеет:"
#: lms/lms/utils.py:1707 #: lms/lms/utils.py:1708
msgid "This course is free." msgid "This course is free."
msgstr "Этот курс бесплатный." msgstr "Этот курс бесплатный."
@@ -6799,7 +6794,7 @@ msgid "Thursday"
msgstr "Четверг" msgstr "Четверг"
#. Label of the time (Time) field in DocType 'LMS Live Class' #. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48 #: frontend/src/components/Modals/Event.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:52 #: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Quiz.vue:58 #: frontend/src/components/Quiz.vue:58
#: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -6934,7 +6929,7 @@ msgstr "Кому"
msgid "To Date" msgid "To Date"
msgstr "По дате" msgstr "По дате"
#: lms/lms/utils.py:1721 #: lms/lms/utils.py:1722
msgid "To join this batch, please contact the Administrator." msgid "To join this batch, please contact the Administrator."
msgstr "Чтобы присоединиться к этой группе, свяжитесь с администратором." msgstr "Чтобы присоединиться к этой группе, свяжитесь с администратором."
@@ -7056,7 +7051,7 @@ msgstr "Недоступно с даты не может быть больше,
msgid "Under Review" msgid "Under Review"
msgstr "На рассмотрении" 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" msgid "Unpublished"
msgstr "Не опубликовано" msgstr "Не опубликовано"
@@ -7077,8 +7072,8 @@ msgstr "Неструктурированная роль"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
#. Label of the upcoming (Check) field in DocType 'LMS Course' #. 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/Batches.vue:330 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:347 #: frontend/src/pages/Courses.vue:346
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming" msgid "Upcoming"
@@ -7220,7 +7215,7 @@ msgid "View Applications"
msgstr "Просмотреть приложения" msgstr "Просмотреть приложения"
#: frontend/src/components/CertificationLinks.vue:10 #: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67 #: frontend/src/components/Modals/Event.vue:73
msgid "View Certificate" msgid "View Certificate"
msgstr "Просмотр сертификата" msgstr "Просмотр сертификата"
@@ -7327,6 +7322,11 @@ msgstr "С этой сертификацией вы теперь можете п
msgid "Withdrawn" msgid "Withdrawn"
msgstr "Отозван" 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' #. Label of the work_environment (Section Break) field in DocType 'User'
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
msgid "Work Environment" msgid "Work Environment"
@@ -7427,7 +7427,7 @@ msgstr "Вы не можете изменить роли в режиме тол
msgid "You cannot enroll in an unpublished course." msgid "You cannot enroll in an unpublished course."
msgstr "Вы не можете записаться на неопубликованный курс." msgstr "Вы не можете записаться на неопубликованный курс."
#: lms/lms/utils.py:2085 #: lms/lms/utils.py:2086
msgid "You cannot enroll in an unpublished program." msgid "You cannot enroll in an unpublished program."
msgstr "Вы не можете зарегистрироваться в неопубликованной программе." msgstr "Вы не можете зарегистрироваться в неопубликованной программе."
@@ -7443,11 +7443,11 @@ msgstr "Вы не можете запланировать оценки посл
msgid "You cannot schedule evaluations for past slots." msgid "You cannot schedule evaluations for past slots."
msgstr "Вы не можете планировать оценки для прошедших слотов." msgstr "Вы не можете планировать оценки для прошедших слотов."
#: lms/lms/utils.py:2259 #: lms/lms/utils.py:2260
msgid "You do not have access to this batch." msgid "You do not have access to this batch."
msgstr "У вас нет доступа к этому пакету." msgstr "У вас нет доступа к этому пакету."
#: lms/lms/utils.py:2242 #: lms/lms/utils.py:2243
msgid "You do not have access to this course." msgid "You do not have access to this course."
msgstr "У вас нет доступа к этому курсу." msgstr "У вас нет доступа к этому курсу."
+58 -58
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2026-01-16 16:04+0000\n" "POT-Creation-Date: 2026-01-23 16:05+0000\n"
"PO-Revision-Date: 2026-01-19 20:13\n" "PO-Revision-Date: 2026-02-05 06:43\n"
"Last-Translator: jannat@frappe.io\n" "Last-Translator: jannat@frappe.io\n"
"Language-Team: Slovenian\n" "Language-Team: Slovenian\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -319,7 +319,7 @@ msgid "Administrator"
msgstr "Administrator" msgstr "Administrator"
#. Name of a role #. 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" msgid "All"
msgstr "Vsi" msgstr "Vsi"
@@ -486,7 +486,7 @@ msgstr "Odobreno"
msgid "Apps" msgid "Apps"
msgstr "Aplikacije" msgstr "Aplikacije"
#: frontend/src/pages/Batches.vue:329 #: frontend/src/pages/Batches.vue:331
msgid "Archived" msgid "Archived"
msgstr "Arhivirano" 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'
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request' #. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
#. Label of the batch_name (Link) field in DocType 'LMS Live Class' #. 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/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200 #: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125
@@ -878,7 +878,7 @@ msgid "Batch:"
msgstr "Skupina:" msgstr "Skupina:"
#. Label of the batches (Check) field in DocType 'LMS Settings' #. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue: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 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121
msgid "Batches" msgid "Batches"
msgstr "Skupine" msgstr "Skupine"
@@ -1023,7 +1023,7 @@ msgstr "Povezava Potrdila"
msgid "Certificate of Completion" msgid "Certificate of Completion"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:347 #: frontend/src/components/Modals/Event.vue:353
msgid "Certificate saved successfully" msgid "Certificate saved successfully"
msgstr "Potrdilo je uspešno shranjeno" 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 chart in the LMS Workspace
#. Label of a Card Break in the LMS Workspace #. Label of a Card Break in the LMS Workspace
#. Label of a Link 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/components/Sidebar/AppSidebar.vue:550
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100
#: frontend/src/pages/CourseCertification.vue:10 #: 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/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127 #: 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/ProgramForm.vue:49
#: frontend/src/pages/Programs/Programs.vue:35 #: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1878,7 +1878,7 @@ msgstr "Ustvari Prvi Tečaj"
msgid "Create your first quiz" msgid "Create your first quiz"
msgstr "Ustvari Prvi Kviz" 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" msgid "Created"
msgstr "Ustvarjeno" 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 Certificate Request'
#. Label of the date (Date) field in DocType 'LMS Live Class' #. Label of the date (Date) field in DocType 'LMS Live Class'
#. Label of the date (Date) field in DocType 'Scheduled Flow' #. 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 #: frontend/src/components/Modals/LiveClassModal.vue:29
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -2241,7 +2241,7 @@ msgstr "Uredi Kupon"
msgid "Edit Email Template" msgid "Edit Email Template"
msgstr "Uredi predloge e-pošte" msgstr "Uredi predloge e-pošte"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:13
msgid "Edit Payment Gateway" msgid "Edit Payment Gateway"
msgstr "Uredi Plačilni Prehod" msgstr "Uredi Plačilni Prehod"
@@ -2424,7 +2424,7 @@ msgstr ""
msgid "Enroll Now" msgid "Enroll Now"
msgstr "Vpišite se zdaj" 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 #: frontend/src/pages/Programs/StudentPrograms.vue:96
msgid "Enrolled" msgid "Enrolled"
msgstr "Vpisan" msgstr "Vpisan"
@@ -2526,7 +2526,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace #. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json #: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json
msgid "Evaluation" msgid "Evaluation"
msgstr "Vrednotenje" msgstr "Vrednotenje"
@@ -2551,7 +2551,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date." msgid "Evaluation end date cannot be less than the batch end date."
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:286 #: frontend/src/components/Modals/Event.vue:292
msgid "Evaluation saved successfully" msgid "Evaluation saved successfully"
msgstr "" msgstr ""
@@ -2664,7 +2664,7 @@ msgstr "Poteče"
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33 #: 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 #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date" msgid "Expiry Date"
msgstr "Datum Poteka" msgstr "Datum Poteka"
@@ -2695,7 +2695,7 @@ msgstr "Razišči več"
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. 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_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail" msgid "Fail"
@@ -3209,7 +3209,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course' #. 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_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "In Progress" 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 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate' #. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28 #: 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/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date" msgid "Issue Date"
@@ -3456,7 +3456,7 @@ msgstr ""
msgid "Join Call" msgid "Join Call"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:78 #: frontend/src/components/Modals/Event.vue:84
msgid "Join Meeting" msgid "Join Meeting"
msgstr "" msgstr ""
@@ -3896,7 +3896,7 @@ msgstr ""
msgid "LinkedIn ID" msgid "LinkedIn ID"
msgstr "" msgstr ""
#: frontend/src/pages/Courses.vue:341 #: frontend/src/pages/Courses.vue:340
msgid "Live" msgid "Live"
msgstr "V živo" msgstr "V živo"
@@ -4429,7 +4429,7 @@ msgstr ""
#: frontend/src/components/Settings/Members.vue:17 #: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16 #: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17 #: 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 #: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json #: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New" msgid "New"
@@ -4461,7 +4461,7 @@ msgstr ""
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "" msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:12
msgid "New Payment Gateway" msgid "New Payment Gateway"
msgstr "" msgstr ""
@@ -4778,12 +4778,7 @@ msgstr ""
#: frontend/src/components/UserAvatar.vue:11 #: frontend/src/components/UserAvatar.vue:11
#: frontend/src/pages/CertifiedParticipants.vue:46 #: frontend/src/pages/CertifiedParticipants.vue:46
#: frontend/src/pages/Profile.vue:69 #: 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 "" msgstr ""
#. Label of the option (Data) field in DocType 'LMS Option' #. Label of the option (Data) field in DocType 'LMS Option'
@@ -4924,7 +4919,7 @@ msgstr ""
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. 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_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass" msgid "Pass"
@@ -5054,7 +5049,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' #. 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_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending" msgid "Pending"
@@ -5194,7 +5189,7 @@ msgstr ""
msgid "Please login to continue with payment." msgid "Please login to continue with payment."
msgstr "" msgstr ""
#: lms/lms/utils.py:2081 #: lms/lms/utils.py:2082
msgid "Please login to enroll in the program." msgid "Please login to enroll in the program."
msgstr "" 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 Course'
#. Label of the published (Check) field in DocType 'LMS Program' #. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51 #: 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/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105
#: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100 #: 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 (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review' #. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147 #: 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 #: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.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/AssignmentForm.vue:65
#: frontend/src/components/Modals/EditProfile.vue:121 #: frontend/src/components/Modals/EditProfile.vue:121
#: frontend/src/components/Modals/EmailTemplateModal.vue:12 #: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:115 #: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:151 #: frontend/src/components/Modals/Event.vue:157
#: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78 #: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/Coupons/CouponDetails.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/components/Settings/Transactions/TransactionDetails.vue:129
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17 #: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14 #: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
@@ -6048,7 +6043,7 @@ msgstr ""
msgid "Select Date" msgid "Select Date"
msgstr "" msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:26
msgid "Select Payment Gateway" msgid "Select Payment Gateway"
msgstr "" msgstr ""
@@ -6364,7 +6359,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission' #. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case 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/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19 #: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6475,7 +6470,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation' #. 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 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary" msgid "Summary"
msgstr "" msgstr ""
@@ -6571,7 +6566,7 @@ msgstr ""
#. Label of the template (Link) field in DocType 'LMS Certificate' #. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43 #: 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 #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template" msgid "Template"
msgstr "Predloga" msgstr "Predloga"
@@ -6620,7 +6615,7 @@ msgstr ""
msgid "Thanks and Regards" msgid "Thanks and Regards"
msgstr "" msgstr ""
#: lms/lms/utils.py:2247 #: lms/lms/utils.py:2248
msgid "The batch does not exist." msgid "The batch does not exist."
msgstr "" 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." msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session."
msgstr "" msgstr ""
#: lms/lms/utils.py:1747 #: lms/lms/utils.py:1748
msgid "The coupon code '{0}' is invalid." msgid "The coupon code '{0}' is invalid."
msgstr "" msgstr ""
@@ -6652,7 +6647,7 @@ msgstr ""
msgid "The last day to schedule your evaluations is " msgid "The last day to schedule your evaluations is "
msgstr "" msgstr ""
#: lms/lms/utils.py:2231 #: lms/lms/utils.py:2232
msgid "The lesson does not exist." msgid "The lesson does not exist."
msgstr "" msgstr ""
@@ -6660,7 +6655,7 @@ msgstr ""
msgid "The slot is already booked by another participant." msgid "The slot is already booked by another participant."
msgstr "" 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." msgid "The specified batch does not exist."
msgstr "" msgstr ""
@@ -6726,15 +6721,15 @@ msgstr ""
msgid "This class has ended" msgid "This class has ended"
msgstr "" msgstr ""
#: lms/lms/utils.py:1776 #: lms/lms/utils.py:1777
msgid "This coupon has expired." msgid "This coupon has expired."
msgstr "" msgstr ""
#: lms/lms/utils.py:1779 #: lms/lms/utils.py:1780
msgid "This coupon has reached its maximum usage limit." msgid "This coupon has reached its maximum usage limit."
msgstr "" msgstr ""
#: lms/lms/utils.py:1788 #: lms/lms/utils.py:1789
msgid "This coupon is not applicable to this {0}." msgid "This coupon is not applicable to this {0}."
msgstr "" msgstr ""
@@ -6742,7 +6737,7 @@ msgstr ""
msgid "This course has:" msgid "This course has:"
msgstr "" msgstr ""
#: lms/lms/utils.py:1707 #: lms/lms/utils.py:1708
msgid "This course is free." msgid "This course is free."
msgstr "" msgstr ""
@@ -6799,7 +6794,7 @@ msgid "Thursday"
msgstr "" msgstr ""
#. Label of the time (Time) field in DocType 'LMS Live Class' #. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48 #: frontend/src/components/Modals/Event.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:52 #: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Quiz.vue:58 #: frontend/src/components/Quiz.vue:58
#: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -6934,7 +6929,7 @@ msgstr ""
msgid "To Date" msgid "To Date"
msgstr "" msgstr ""
#: lms/lms/utils.py:1721 #: lms/lms/utils.py:1722
msgid "To join this batch, please contact the Administrator." msgid "To join this batch, please contact the Administrator."
msgstr "" msgstr ""
@@ -7056,7 +7051,7 @@ msgstr ""
msgid "Under Review" msgid "Under Review"
msgstr "" 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" msgid "Unpublished"
msgstr "" msgstr ""
@@ -7077,8 +7072,8 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
#. Label of the upcoming (Check) field in DocType 'LMS Course' #. 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/Batches.vue:330 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:347 #: frontend/src/pages/Courses.vue:346
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming" msgid "Upcoming"
@@ -7220,7 +7215,7 @@ msgid "View Applications"
msgstr "" msgstr ""
#: frontend/src/components/CertificationLinks.vue:10 #: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67 #: frontend/src/components/Modals/Event.vue:73
msgid "View Certificate" msgid "View Certificate"
msgstr "" msgstr ""
@@ -7327,6 +7322,11 @@ msgstr ""
msgid "Withdrawn" msgid "Withdrawn"
msgstr "" 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' #. Label of the work_environment (Section Break) field in DocType 'User'
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
msgid "Work Environment" msgid "Work Environment"
@@ -7427,7 +7427,7 @@ msgstr ""
msgid "You cannot enroll in an unpublished course." msgid "You cannot enroll in an unpublished course."
msgstr "" msgstr ""
#: lms/lms/utils.py:2085 #: lms/lms/utils.py:2086
msgid "You cannot enroll in an unpublished program." msgid "You cannot enroll in an unpublished program."
msgstr "" msgstr ""
@@ -7443,11 +7443,11 @@ msgstr ""
msgid "You cannot schedule evaluations for past slots." msgid "You cannot schedule evaluations for past slots."
msgstr "" msgstr ""
#: lms/lms/utils.py:2259 #: lms/lms/utils.py:2260
msgid "You do not have access to this batch." msgid "You do not have access to this batch."
msgstr "" msgstr ""
#: lms/lms/utils.py:2242 #: lms/lms/utils.py:2243
msgid "You do not have access to this course." msgid "You do not have access to this course."
msgstr "" msgstr ""
+59 -59
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2026-01-16 16:04+0000\n" "POT-Creation-Date: 2026-01-23 16:05+0000\n"
"PO-Revision-Date: 2026-01-21 20:16\n" "PO-Revision-Date: 2026-02-05 06:43\n"
"Last-Translator: jannat@frappe.io\n" "Last-Translator: jannat@frappe.io\n"
"Language-Team: Serbian (Cyrillic)\n" "Language-Team: Serbian (Cyrillic)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -319,7 +319,7 @@ msgid "Administrator"
msgstr "Администратор" msgstr "Администратор"
#. Name of a role #. 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" msgid "All"
msgstr "Све" msgstr "Све"
@@ -486,7 +486,7 @@ msgstr "Одобрено"
msgid "Apps" msgid "Apps"
msgstr "Апликације" msgstr "Апликације"
#: frontend/src/pages/Batches.vue:329 #: frontend/src/pages/Batches.vue:331
msgid "Archived" msgid "Archived"
msgstr "Архивирано" 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'
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request' #. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
#. Label of the batch_name (Link) field in DocType 'LMS Live Class' #. 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/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200 #: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125
@@ -878,7 +878,7 @@ msgid "Batch:"
msgstr "Група:" msgstr "Група:"
#. Label of the batches (Check) field in DocType 'LMS Settings' #. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue: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 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121
msgid "Batches" msgid "Batches"
msgstr "Групе" msgstr "Групе"
@@ -1023,7 +1023,7 @@ msgstr "Линк сертификата"
msgid "Certificate of Completion" msgid "Certificate of Completion"
msgstr "Сертификат о похађању" msgstr "Сертификат о похађању"
#: frontend/src/components/Modals/Event.vue:347 #: frontend/src/components/Modals/Event.vue:353
msgid "Certificate saved successfully" msgid "Certificate saved successfully"
msgstr "Сертификат је успешно сачуван" msgstr "Сертификат је успешно сачуван"
@@ -1043,7 +1043,7 @@ msgstr "Сертификати су успешно генерисани"
#. Label of a chart in the LMS Workspace #. Label of a chart in the LMS Workspace
#. Label of a Card Break in the LMS Workspace #. Label of a Card Break in the LMS Workspace
#. Label of a Link 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/components/Sidebar/AppSidebar.vue:550
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100
#: frontend/src/pages/CourseCertification.vue:10 #: frontend/src/pages/CourseCertification.vue:10
@@ -1771,7 +1771,7 @@ msgstr "Обука {0} је већ додата у овај програм."
#: frontend/src/components/Modals/BatchStudentProgress.vue:95 #: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127 #: 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/ProgramForm.vue:49
#: frontend/src/pages/Programs/Programs.vue:35 #: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1878,7 +1878,7 @@ msgstr "Креирајте своју прву обуку"
msgid "Create your first quiz" msgid "Create your first quiz"
msgstr "Креирајте свој први квиз" 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" msgid "Created"
msgstr "Креирано" 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 Certificate Request'
#. Label of the date (Date) field in DocType 'LMS Live Class' #. Label of the date (Date) field in DocType 'LMS Live Class'
#. Label of the date (Date) field in DocType 'Scheduled Flow' #. 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 #: frontend/src/components/Modals/LiveClassModal.vue:29
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -2241,7 +2241,7 @@ msgstr "Уреди купон"
msgid "Edit Email Template" msgid "Edit Email Template"
msgstr "Уреди имејл шаблон" msgstr "Уреди имејл шаблон"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:13
msgid "Edit Payment Gateway" msgid "Edit Payment Gateway"
msgstr "Уреди платни портал" msgstr "Уреди платни портал"
@@ -2424,7 +2424,7 @@ msgstr "Упиши члана у програм"
msgid "Enroll Now" msgid "Enroll Now"
msgstr "Упишите се сада" 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 #: frontend/src/pages/Programs/StudentPrograms.vue:96
msgid "Enrolled" msgid "Enrolled"
msgstr "Уписан" msgstr "Уписан"
@@ -2526,7 +2526,7 @@ msgstr "Грешка приликом ажурирања имејл шаблон
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace #. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json #: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json
msgid "Evaluation" msgid "Evaluation"
msgstr "Оцењивање" msgstr "Оцењивање"
@@ -2551,7 +2551,7 @@ msgstr "Захтев за оцењивање"
msgid "Evaluation end date cannot be less than the batch end date." msgid "Evaluation end date cannot be less than the batch end date."
msgstr "Датум завршетка оцењивања не може бити мањи од датума завршетка групе." msgstr "Датум завршетка оцењивања не може бити мањи од датума завршетка групе."
#: frontend/src/components/Modals/Event.vue:286 #: frontend/src/components/Modals/Event.vue:292
msgid "Evaluation saved successfully" msgid "Evaluation saved successfully"
msgstr "Оцењивање је успешно сачувано" msgstr "Оцењивање је успешно сачувано"
@@ -2664,7 +2664,7 @@ msgstr "Истиче на"
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33 #: 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 #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date" msgid "Expiry Date"
msgstr "Датум истека" msgstr "Датум истека"
@@ -2695,7 +2695,7 @@ msgstr "Истражите више"
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. 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_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail" msgid "Fail"
@@ -3209,7 +3209,7 @@ msgstr "Увези обуку"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course' #. 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_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "In Progress" 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 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate' #. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28 #: 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/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date" msgid "Issue Date"
@@ -3456,7 +3456,7 @@ msgstr "Придружи се"
msgid "Join Call" msgid "Join Call"
msgstr "Придружи се позиву" msgstr "Придружи се позиву"
#: frontend/src/components/Modals/Event.vue:78 #: frontend/src/components/Modals/Event.vue:84
msgid "Join Meeting" msgid "Join Meeting"
msgstr "Придружи се састанку" msgstr "Придружи се састанку"
@@ -3896,7 +3896,7 @@ msgstr "LinkedIn"
msgid "LinkedIn ID" msgid "LinkedIn ID"
msgstr "LinkedIn ИД" msgstr "LinkedIn ИД"
#: frontend/src/pages/Courses.vue:341 #: frontend/src/pages/Courses.vue:340
msgid "Live" msgid "Live"
msgstr "Активно" msgstr "Активно"
@@ -4429,7 +4429,7 @@ msgstr "Име"
#: frontend/src/components/Settings/Members.vue:17 #: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16 #: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17 #: 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 #: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json #: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New" msgid "New"
@@ -4461,7 +4461,7 @@ msgstr "Нови посао"
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "Нови кандидат за посао" msgstr "Нови кандидат за посао"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:12
msgid "New Payment Gateway" msgid "New Payment Gateway"
msgstr "Нови платни портал" msgstr "Нови платни портал"
@@ -4778,13 +4778,8 @@ msgstr "Отворен за"
#: frontend/src/components/UserAvatar.vue:11 #: frontend/src/components/UserAvatar.vue:11
#: frontend/src/pages/CertifiedParticipants.vue:46 #: frontend/src/pages/CertifiedParticipants.vue:46
#: frontend/src/pages/Profile.vue:69 #: frontend/src/pages/Profile.vue:69
msgid "Open to Opportunities" msgid "Open to Work"
msgstr "Отворен за прилике" 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' #. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:70 #: frontend/src/components/Modals/Question.vue:70
@@ -4924,7 +4919,7 @@ msgstr "Делимично завршено"
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. 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_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass" msgid "Pass"
@@ -5054,7 +5049,7 @@ msgstr "Апликација за обраду плаћања није инст
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' #. 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_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending" msgid "Pending"
@@ -5194,7 +5189,7 @@ msgstr "Молимо Вас да се пријавите да бисте при
msgid "Please login to continue with payment." msgid "Please login to continue with payment."
msgstr "Молимо Вас да се пријавите да бисте наставили са плаћањем." msgstr "Молимо Вас да се пријавите да бисте наставили са плаћањем."
#: lms/lms/utils.py:2081 #: lms/lms/utils.py:2082
msgid "Please login to enroll in the program." msgid "Please login to enroll in the program."
msgstr "Молимо Вас да се пријавите да бисте се уписали у програм." 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 Course'
#. Label of the published (Check) field in DocType 'LMS Program' #. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51 #: 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/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105
#: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100 #: 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 (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review' #. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147 #: 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 #: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.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/AssignmentForm.vue:65
#: frontend/src/components/Modals/EditProfile.vue:121 #: frontend/src/components/Modals/EditProfile.vue:121
#: frontend/src/components/Modals/EmailTemplateModal.vue:12 #: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:115 #: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:151 #: frontend/src/components/Modals/Event.vue:157
#: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78 #: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/Coupons/CouponDetails.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/components/Settings/Transactions/TransactionDetails.vue:129
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17 #: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14 #: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
@@ -6048,7 +6043,7 @@ msgstr "Погледај све"
msgid "Select Date" msgid "Select Date"
msgstr "Изаберите датум" msgstr "Изаберите датум"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:26
msgid "Select Payment Gateway" msgid "Select Payment Gateway"
msgstr "Изаберите платни портал" msgstr "Изаберите платни портал"
@@ -6364,7 +6359,7 @@ msgstr "Статистика"
#. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission' #. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case 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/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19 #: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6475,7 +6470,7 @@ msgstr "Успешно сте уписани у програм"
#. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation' #. 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 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary" msgid "Summary"
msgstr "Резиме" msgstr "Резиме"
@@ -6571,7 +6566,7 @@ msgstr "Тимски рад"
#. Label of the template (Link) field in DocType 'LMS Certificate' #. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43 #: 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 #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template" msgid "Template"
msgstr "Шаблон" msgstr "Шаблон"
@@ -6620,7 +6615,7 @@ msgstr "Хвала Вам што сте поделили своје утиске
msgid "Thanks and Regards" msgid "Thanks and Regards"
msgstr "Хвала и срдачан поздрав" msgstr "Хвала и срдачан поздрав"
#: lms/lms/utils.py:2247 #: lms/lms/utils.py:2248
msgid "The batch does not exist." msgid "The batch does not exist."
msgstr "Група не постоји." 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." msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session."
msgstr "Група у коју сте се уписали почиње сутра. Молимо Вас да будете спремни и тачни за сесију." msgstr "Група у коју сте се уписали почиње сутра. Молимо Вас да будете спремни и тачни за сесију."
#: lms/lms/utils.py:1747 #: lms/lms/utils.py:1748
msgid "The coupon code '{0}' is invalid." msgid "The coupon code '{0}' is invalid."
msgstr "Шифра купона '{0}' није важећа." msgstr "Шифра купона '{0}' није важећа."
@@ -6652,7 +6647,7 @@ msgstr "Предавача је оставио коментар на Вашем
msgid "The last day to schedule your evaluations is " msgid "The last day to schedule your evaluations is "
msgstr "Последњи дан за заказивање Вашег оцењивања је " msgstr "Последњи дан за заказивање Вашег оцењивања је "
#: lms/lms/utils.py:2231 #: lms/lms/utils.py:2232
msgid "The lesson does not exist." msgid "The lesson does not exist."
msgstr "Лекција не постоји." msgstr "Лекција не постоји."
@@ -6660,7 +6655,7 @@ msgstr "Лекција не постоји."
msgid "The slot is already booked by another participant." msgid "The slot is already booked by another participant."
msgstr "Термин је већ резервисан од стране другог учесника." 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." msgid "The specified batch does not exist."
msgstr "Наведена група не постоји." msgstr "Наведена група не постоји."
@@ -6726,15 +6721,15 @@ msgstr "Овај сертификат нема рок трајања"
msgid "This class has ended" msgid "This class has ended"
msgstr "Ово предавање се завршило" msgstr "Ово предавање се завршило"
#: lms/lms/utils.py:1776 #: lms/lms/utils.py:1777
msgid "This coupon has expired." msgid "This coupon has expired."
msgstr "Овај купон је истекао." msgstr "Овај купон је истекао."
#: lms/lms/utils.py:1779 #: lms/lms/utils.py:1780
msgid "This coupon has reached its maximum usage limit." msgid "This coupon has reached its maximum usage limit."
msgstr "Овај купон је достигао максимално ограничење употребе." msgstr "Овај купон је достигао максимално ограничење употребе."
#: lms/lms/utils.py:1788 #: lms/lms/utils.py:1789
msgid "This coupon is not applicable to this {0}." msgid "This coupon is not applicable to this {0}."
msgstr "Овај купон се не може применити на овај {0}." msgstr "Овај купон се не може применити на овај {0}."
@@ -6742,7 +6737,7 @@ msgstr "Овај купон се не може применити на овај
msgid "This course has:" msgid "This course has:"
msgstr "Ова обука садржи:" msgstr "Ова обука садржи:"
#: lms/lms/utils.py:1707 #: lms/lms/utils.py:1708
msgid "This course is free." msgid "This course is free."
msgstr "Ова обука је бесплатна." msgstr "Ова обука је бесплатна."
@@ -6799,7 +6794,7 @@ msgid "Thursday"
msgstr "Четвртак" msgstr "Четвртак"
#. Label of the time (Time) field in DocType 'LMS Live Class' #. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48 #: frontend/src/components/Modals/Event.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:52 #: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Quiz.vue:58 #: frontend/src/components/Quiz.vue:58
#: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -6934,7 +6929,7 @@ msgstr "За"
msgid "To Date" msgid "To Date"
msgstr "Датум завршетка" msgstr "Датум завршетка"
#: lms/lms/utils.py:1721 #: lms/lms/utils.py:1722
msgid "To join this batch, please contact the Administrator." msgid "To join this batch, please contact the Administrator."
msgstr "За придруживање овој групи, молимо Вас да контактирате администратора." msgstr "За придруживање овој групи, молимо Вас да контактирате администратора."
@@ -7056,7 +7051,7 @@ msgstr "Датум почетка недоступности не може би
msgid "Under Review" msgid "Under Review"
msgstr "Преглед у току" 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" msgid "Unpublished"
msgstr "Необјављено" msgstr "Необјављено"
@@ -7077,8 +7072,8 @@ msgstr "Неструктурирана улога"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
#. Label of the upcoming (Check) field in DocType 'LMS Course' #. 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/Batches.vue:330 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:347 #: frontend/src/pages/Courses.vue:346
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming" msgid "Upcoming"
@@ -7220,7 +7215,7 @@ msgid "View Applications"
msgstr "Приказ пријава" msgstr "Приказ пријава"
#: frontend/src/components/CertificationLinks.vue:10 #: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67 #: frontend/src/components/Modals/Event.vue:73
msgid "View Certificate" msgid "View Certificate"
msgstr "Приказ сертификата" msgstr "Приказ сертификата"
@@ -7327,6 +7322,11 @@ msgstr "Уз ову сертификацију сада можете показ
msgid "Withdrawn" msgid "Withdrawn"
msgstr "Повучено" 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' #. Label of the work_environment (Section Break) field in DocType 'User'
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
msgid "Work Environment" msgid "Work Environment"
@@ -7427,7 +7427,7 @@ msgstr "Не можете мењати улоге у режиму само за
msgid "You cannot enroll in an unpublished course." msgid "You cannot enroll in an unpublished course."
msgstr "Није могуће уписати се на необјављену обуку." msgstr "Није могуће уписати се на необјављену обуку."
#: lms/lms/utils.py:2085 #: lms/lms/utils.py:2086
msgid "You cannot enroll in an unpublished program." msgid "You cannot enroll in an unpublished program."
msgstr "Није могуће уписати се на необјављен програм." msgstr "Није могуће уписати се на необјављен програм."
@@ -7443,11 +7443,11 @@ msgstr "Не можете заказати оцењивање након {0}."
msgid "You cannot schedule evaluations for past slots." msgid "You cannot schedule evaluations for past slots."
msgstr "Оцењивање није могуће заказати за термине који су већ прошли." msgstr "Оцењивање није могуће заказати за термине који су већ прошли."
#: lms/lms/utils.py:2259 #: lms/lms/utils.py:2260
msgid "You do not have access to this batch." msgid "You do not have access to this batch."
msgstr "Немате приступ овој групи." msgstr "Немате приступ овој групи."
#: lms/lms/utils.py:2242 #: lms/lms/utils.py:2243
msgid "You do not have access to this course." msgid "You do not have access to this course."
msgstr "Немате приступ овој обуци." msgstr "Немате приступ овој обуци."
+59 -59
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2026-01-16 16:04+0000\n" "POT-Creation-Date: 2026-01-23 16:05+0000\n"
"PO-Revision-Date: 2026-01-21 20:16\n" "PO-Revision-Date: 2026-02-05 06:43\n"
"Last-Translator: jannat@frappe.io\n" "Last-Translator: jannat@frappe.io\n"
"Language-Team: Serbian (Latin)\n" "Language-Team: Serbian (Latin)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -319,7 +319,7 @@ msgid "Administrator"
msgstr "Administrator" msgstr "Administrator"
#. Name of a role #. 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" msgid "All"
msgstr "Sve" msgstr "Sve"
@@ -486,7 +486,7 @@ msgstr "Odobreno"
msgid "Apps" msgid "Apps"
msgstr "Aplikacije" msgstr "Aplikacije"
#: frontend/src/pages/Batches.vue:329 #: frontend/src/pages/Batches.vue:331
msgid "Archived" msgid "Archived"
msgstr "Arhivirano" 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'
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request' #. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
#. Label of the batch_name (Link) field in DocType 'LMS Live Class' #. 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/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200 #: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125
@@ -878,7 +878,7 @@ msgid "Batch:"
msgstr "Grupa:" msgstr "Grupa:"
#. Label of the batches (Check) field in DocType 'LMS Settings' #. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue: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 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121
msgid "Batches" msgid "Batches"
msgstr "Grupe" msgstr "Grupe"
@@ -1023,7 +1023,7 @@ msgstr "Link sertifikata"
msgid "Certificate of Completion" msgid "Certificate of Completion"
msgstr "Sertifikat o pohađanju" msgstr "Sertifikat o pohađanju"
#: frontend/src/components/Modals/Event.vue:347 #: frontend/src/components/Modals/Event.vue:353
msgid "Certificate saved successfully" msgid "Certificate saved successfully"
msgstr "Sertifikat je uspešno sačuvan" 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 chart in the LMS Workspace
#. Label of a Card Break in the LMS Workspace #. Label of a Card Break in the LMS Workspace
#. Label of a Link 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/components/Sidebar/AppSidebar.vue:550
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100
#: frontend/src/pages/CourseCertification.vue:10 #: 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/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127 #: 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/ProgramForm.vue:49
#: frontend/src/pages/Programs/Programs.vue:35 #: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1878,7 +1878,7 @@ msgstr "Kreirajte svoju prvu obuku"
msgid "Create your first quiz" msgid "Create your first quiz"
msgstr "Kreirajte svoj prvi kviz" 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" msgid "Created"
msgstr "Kreirano" 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 Certificate Request'
#. Label of the date (Date) field in DocType 'LMS Live Class' #. Label of the date (Date) field in DocType 'LMS Live Class'
#. Label of the date (Date) field in DocType 'Scheduled Flow' #. 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 #: frontend/src/components/Modals/LiveClassModal.vue:29
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -2241,7 +2241,7 @@ msgstr "Uredi kupon"
msgid "Edit Email Template" msgid "Edit Email Template"
msgstr "Uredi imejl šablon" msgstr "Uredi imejl šablon"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:13
msgid "Edit Payment Gateway" msgid "Edit Payment Gateway"
msgstr "Uredi platni portal" msgstr "Uredi platni portal"
@@ -2424,7 +2424,7 @@ msgstr "Upiši člana u program"
msgid "Enroll Now" msgid "Enroll Now"
msgstr "Upišite se sada" 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 #: frontend/src/pages/Programs/StudentPrograms.vue:96
msgid "Enrolled" msgid "Enrolled"
msgstr "Upisan" 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 Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace #. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json #: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json
msgid "Evaluation" msgid "Evaluation"
msgstr "Ocenjivanje" msgstr "Ocenjivanje"
@@ -2551,7 +2551,7 @@ msgstr "Zahtev za ocenjivanje"
msgid "Evaluation end date cannot be less than the batch end date." msgid "Evaluation end date cannot be less than the batch end date."
msgstr "Datum završetka ocenjivanja ne može biti manji od datuma završetka grupe." 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" msgid "Evaluation saved successfully"
msgstr "Ocenjivanje je uspešno sačuvano" 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' #. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33 #: 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 #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date" msgid "Expiry Date"
msgstr "Datum isteka" msgstr "Datum isteka"
@@ -2695,7 +2695,7 @@ msgstr "Istražite više"
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. 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_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail" msgid "Fail"
@@ -3209,7 +3209,7 @@ msgstr "Uvezi obuku"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course' #. 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_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "In Progress" 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 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate' #. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28 #: 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/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date" msgid "Issue Date"
@@ -3456,7 +3456,7 @@ msgstr "Pridruži se"
msgid "Join Call" msgid "Join Call"
msgstr "Pridruži se pozivu" msgstr "Pridruži se pozivu"
#: frontend/src/components/Modals/Event.vue:78 #: frontend/src/components/Modals/Event.vue:84
msgid "Join Meeting" msgid "Join Meeting"
msgstr "Pridruži se sastanku" msgstr "Pridruži se sastanku"
@@ -3896,7 +3896,7 @@ msgstr "LinkedIn"
msgid "LinkedIn ID" msgid "LinkedIn ID"
msgstr "LinkedIn ID" msgstr "LinkedIn ID"
#: frontend/src/pages/Courses.vue:341 #: frontend/src/pages/Courses.vue:340
msgid "Live" msgid "Live"
msgstr "Aktivno" msgstr "Aktivno"
@@ -4429,7 +4429,7 @@ msgstr "Naziv"
#: frontend/src/components/Settings/Members.vue:17 #: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16 #: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17 #: 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 #: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json #: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New" msgid "New"
@@ -4461,7 +4461,7 @@ msgstr "Novi posao"
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "Novi kandidat za posao" msgstr "Novi kandidat za posao"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:12
msgid "New Payment Gateway" msgid "New Payment Gateway"
msgstr "Novi platni portal" msgstr "Novi platni portal"
@@ -4778,13 +4778,8 @@ msgstr "Otvoren za"
#: frontend/src/components/UserAvatar.vue:11 #: frontend/src/components/UserAvatar.vue:11
#: frontend/src/pages/CertifiedParticipants.vue:46 #: frontend/src/pages/CertifiedParticipants.vue:46
#: frontend/src/pages/Profile.vue:69 #: frontend/src/pages/Profile.vue:69
msgid "Open to Opportunities" msgid "Open to Work"
msgstr "Otvoren za prilike" msgstr ""
#. Option for the 'Open to' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Opportunities"
msgstr "Prilike"
#. Label of the option (Data) field in DocType 'LMS Option' #. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:70 #: frontend/src/components/Modals/Question.vue:70
@@ -4924,7 +4919,7 @@ msgstr "Delimično završeno"
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. 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_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass" msgid "Pass"
@@ -5054,7 +5049,7 @@ msgstr "Aplikacija za obradu plaćanja nije instalirana"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' #. 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_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending" msgid "Pending"
@@ -5194,7 +5189,7 @@ msgstr "Molimo Vas da se prijavite da biste pristupili ovoj stranici."
msgid "Please login to continue with payment." msgid "Please login to continue with payment."
msgstr "Molimo Vas da se prijavite da biste nastavili sa plaćanjem." 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." msgid "Please login to enroll in the program."
msgstr "Molimo Vas da se prijavite da biste se upisali u 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 Course'
#. Label of the published (Check) field in DocType 'LMS Program' #. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51 #: 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/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105
#: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100 #: 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 (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review' #. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147 #: 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 #: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.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/AssignmentForm.vue:65
#: frontend/src/components/Modals/EditProfile.vue:121 #: frontend/src/components/Modals/EditProfile.vue:121
#: frontend/src/components/Modals/EmailTemplateModal.vue:12 #: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:115 #: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:151 #: frontend/src/components/Modals/Event.vue:157
#: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78 #: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/Coupons/CouponDetails.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/components/Settings/Transactions/TransactionDetails.vue:129
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17 #: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14 #: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
@@ -6048,7 +6043,7 @@ msgstr "Pogledaj sve"
msgid "Select Date" msgid "Select Date"
msgstr "Izaberite datum" msgstr "Izaberite datum"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:26
msgid "Select Payment Gateway" msgid "Select Payment Gateway"
msgstr "Izaberite platni portal" msgstr "Izaberite platni portal"
@@ -6364,7 +6359,7 @@ msgstr "Statistika"
#. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission' #. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case 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/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19 #: 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 #. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation' #. 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 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary" msgid "Summary"
msgstr "Rezime" msgstr "Rezime"
@@ -6571,7 +6566,7 @@ msgstr "Timski rad"
#. Label of the template (Link) field in DocType 'LMS Certificate' #. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43 #: 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 #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template" msgid "Template"
msgstr "Šablon" msgstr "Šablon"
@@ -6620,7 +6615,7 @@ msgstr "Hvala Vam što ste podelili svoje utiske."
msgid "Thanks and Regards" msgid "Thanks and Regards"
msgstr "Hvala i srdačan pozdrav" msgstr "Hvala i srdačan pozdrav"
#: lms/lms/utils.py:2247 #: lms/lms/utils.py:2248
msgid "The batch does not exist." msgid "The batch does not exist."
msgstr "Grupa ne postoji." 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." 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." 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." msgid "The coupon code '{0}' is invalid."
msgstr "Šifra kupona '{0}' nije važeća." 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 " msgid "The last day to schedule your evaluations is "
msgstr "Poslednji dan za zakazivanje Vašeg ocenjivanja je " 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." msgid "The lesson does not exist."
msgstr "Lekcija ne postoji." msgstr "Lekcija ne postoji."
@@ -6660,7 +6655,7 @@ msgstr "Lekcija ne postoji."
msgid "The slot is already booked by another participant." msgid "The slot is already booked by another participant."
msgstr "Termin je već rezervisan od strane drugog učesnika." 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." msgid "The specified batch does not exist."
msgstr "Navedena grupa ne postoji." msgstr "Navedena grupa ne postoji."
@@ -6726,15 +6721,15 @@ msgstr "Ovaj sertifikat nema rok trajanja"
msgid "This class has ended" msgid "This class has ended"
msgstr "Ovo predavanje se završilo" msgstr "Ovo predavanje se završilo"
#: lms/lms/utils.py:1776 #: lms/lms/utils.py:1777
msgid "This coupon has expired." msgid "This coupon has expired."
msgstr "Ovaj kupon je istekao." msgstr "Ovaj kupon je istekao."
#: lms/lms/utils.py:1779 #: lms/lms/utils.py:1780
msgid "This coupon has reached its maximum usage limit." msgid "This coupon has reached its maximum usage limit."
msgstr "Ovaj kupon je dostigao maksimalno ograničenje upotrebe." 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}." msgid "This coupon is not applicable to this {0}."
msgstr "Ovaj kupon se ne može primeniti na ovaj {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:" msgid "This course has:"
msgstr "Ova obuka sadrži:" msgstr "Ova obuka sadrži:"
#: lms/lms/utils.py:1707 #: lms/lms/utils.py:1708
msgid "This course is free." msgid "This course is free."
msgstr "Ova obuka je besplatna." msgstr "Ova obuka je besplatna."
@@ -6799,7 +6794,7 @@ msgid "Thursday"
msgstr "Četvrtak" msgstr "Četvrtak"
#. Label of the time (Time) field in DocType 'LMS Live Class' #. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48 #: frontend/src/components/Modals/Event.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:52 #: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Quiz.vue:58 #: frontend/src/components/Quiz.vue:58
#: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -6934,7 +6929,7 @@ msgstr "Za"
msgid "To Date" msgid "To Date"
msgstr "Datum završetka" msgstr "Datum završetka"
#: lms/lms/utils.py:1721 #: lms/lms/utils.py:1722
msgid "To join this batch, please contact the Administrator." msgid "To join this batch, please contact the Administrator."
msgstr "Za pridruživanje ovoj grupi, molimo Vas da kontaktirate administratora." 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" msgid "Under Review"
msgstr "Pregled u toku" 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" msgid "Unpublished"
msgstr "Neobjavljeno" msgstr "Neobjavljeno"
@@ -7077,8 +7072,8 @@ msgstr "Nestrukturirana uloga"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
#. Label of the upcoming (Check) field in DocType 'LMS Course' #. 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/Batches.vue:330 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:347 #: frontend/src/pages/Courses.vue:346
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming" msgid "Upcoming"
@@ -7220,7 +7215,7 @@ msgid "View Applications"
msgstr "Prikaz prijava" msgstr "Prikaz prijava"
#: frontend/src/components/CertificationLinks.vue:10 #: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67 #: frontend/src/components/Modals/Event.vue:73
msgid "View Certificate" msgid "View Certificate"
msgstr "Prikaz sertifikata" msgstr "Prikaz sertifikata"
@@ -7327,6 +7322,11 @@ msgstr "Uz ovu sertifikaciju sada možete pokazati svoja unapređena znanja i po
msgid "Withdrawn" msgid "Withdrawn"
msgstr "Povučeno" msgstr "Povučeno"
#. 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' #. Label of the work_environment (Section Break) field in DocType 'User'
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
msgid "Work Environment" 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." msgid "You cannot enroll in an unpublished course."
msgstr "Nije moguće upisati se na neobjavljenu obuku." 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." msgid "You cannot enroll in an unpublished program."
msgstr "Nije moguće upisati se na neobjavljen 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." msgid "You cannot schedule evaluations for past slots."
msgstr "Ocenjivanje nije moguće zakazati za termine koji su već prošli." 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." msgid "You do not have access to this batch."
msgstr "Nemate pristup ovoj grupi." msgstr "Nemate pristup ovoj grupi."
#: lms/lms/utils.py:2242 #: lms/lms/utils.py:2243
msgid "You do not have access to this course." msgid "You do not have access to this course."
msgstr "Nemate pristup ovoj obuci." msgstr "Nemate pristup ovoj obuci."
+59 -59
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2026-01-16 16:04+0000\n" "POT-Creation-Date: 2026-01-23 16:05+0000\n"
"PO-Revision-Date: 2026-01-21 20:16\n" "PO-Revision-Date: 2026-02-05 06:43\n"
"Last-Translator: jannat@frappe.io\n" "Last-Translator: jannat@frappe.io\n"
"Language-Team: Swedish\n" "Language-Team: Swedish\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -319,7 +319,7 @@ msgid "Administrator"
msgstr "Administratör" msgstr "Administratör"
#. Name of a role #. 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" msgid "All"
msgstr "Alla" msgstr "Alla"
@@ -486,7 +486,7 @@ msgstr "Godkänd"
msgid "Apps" msgid "Apps"
msgstr "Appar" msgstr "Appar"
#: frontend/src/pages/Batches.vue:329 #: frontend/src/pages/Batches.vue:331
msgid "Archived" msgid "Archived"
msgstr "Arkiverad" 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'
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request' #. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
#. Label of the batch_name (Link) field in DocType 'LMS Live Class' #. 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/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200 #: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125
@@ -878,7 +878,7 @@ msgid "Batch:"
msgstr "Parti:" msgstr "Parti:"
#. Label of the batches (Check) field in DocType 'LMS Settings' #. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue: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 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121
msgid "Batches" msgid "Batches"
msgstr "Grupper" msgstr "Grupper"
@@ -1023,7 +1023,7 @@ msgstr "Cerifikat Länk"
msgid "Certificate of Completion" msgid "Certificate of Completion"
msgstr "Certifikat för Genomförande" msgstr "Certifikat för Genomförande"
#: frontend/src/components/Modals/Event.vue:347 #: frontend/src/components/Modals/Event.vue:353
msgid "Certificate saved successfully" msgid "Certificate saved successfully"
msgstr "Certifikat sparad" msgstr "Certifikat sparad"
@@ -1043,7 +1043,7 @@ msgstr "Certifikat genererade"
#. Label of a chart in the LMS Workspace #. Label of a chart in the LMS Workspace
#. Label of a Card Break in the LMS Workspace #. Label of a Card Break in the LMS Workspace
#. Label of a Link 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/components/Sidebar/AppSidebar.vue:550
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100
#: frontend/src/pages/CourseCertification.vue:10 #: 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/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127 #: 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/ProgramForm.vue:49
#: frontend/src/pages/Programs/Programs.vue:35 #: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1878,7 +1878,7 @@ msgstr "Skapa din första kurs"
msgid "Create your first quiz" msgid "Create your first quiz"
msgstr "Skapa din första frågesport" 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" msgid "Created"
msgstr "Skapad" 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 Certificate Request'
#. Label of the date (Date) field in DocType 'LMS Live Class' #. Label of the date (Date) field in DocType 'LMS Live Class'
#. Label of the date (Date) field in DocType 'Scheduled Flow' #. 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 #: frontend/src/components/Modals/LiveClassModal.vue:29
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -2241,7 +2241,7 @@ msgstr "Redigera Kupong"
msgid "Edit Email Template" msgid "Edit Email Template"
msgstr "Redigera e-post mall" msgstr "Redigera e-post mall"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:13
msgid "Edit Payment Gateway" msgid "Edit Payment Gateway"
msgstr "Redigera Betalning Portal" msgstr "Redigera Betalning Portal"
@@ -2424,7 +2424,7 @@ msgstr "Registrera Medlem till Program"
msgid "Enroll Now" msgid "Enroll Now"
msgstr "Registrera Nu" 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 #: frontend/src/pages/Programs/StudentPrograms.vue:96
msgid "Enrolled" msgid "Enrolled"
msgstr "Inskriven" 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 Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace #. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json #: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json
msgid "Evaluation" msgid "Evaluation"
msgstr "Utvärdering" msgstr "Utvärdering"
@@ -2551,7 +2551,7 @@ msgstr "Utvärdering Begäran"
msgid "Evaluation end date cannot be less than the batch end date." msgid "Evaluation end date cannot be less than the batch end date."
msgstr "Utvärdering slutdatum får inte vara tidigare än grupp slutdatum." 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" msgid "Evaluation saved successfully"
msgstr "Utvärdering sparad" msgstr "Utvärdering sparad"
@@ -2664,7 +2664,7 @@ msgstr "Utgår"
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33 #: 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 #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date" msgid "Expiry Date"
msgstr "Utgång Datum" msgstr "Utgång Datum"
@@ -2695,7 +2695,7 @@ msgstr "Utforska mer"
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. 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_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail" msgid "Fail"
@@ -3209,7 +3209,7 @@ msgstr "Importera Kurs"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course' #. 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_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "In Progress" 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 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate' #. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28 #: 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/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date" msgid "Issue Date"
@@ -3456,7 +3456,7 @@ msgstr "Anslut"
msgid "Join Call" msgid "Join Call"
msgstr "Delta i Samtal" msgstr "Delta i Samtal"
#: frontend/src/components/Modals/Event.vue:78 #: frontend/src/components/Modals/Event.vue:84
msgid "Join Meeting" msgid "Join Meeting"
msgstr "Delta i Möte" msgstr "Delta i Möte"
@@ -3896,7 +3896,7 @@ msgstr "LinkedIn"
msgid "LinkedIn ID" msgid "LinkedIn ID"
msgstr "LinkedIn ID" msgstr "LinkedIn ID"
#: frontend/src/pages/Courses.vue:341 #: frontend/src/pages/Courses.vue:340
msgid "Live" msgid "Live"
msgstr "Live" msgstr "Live"
@@ -4429,7 +4429,7 @@ msgstr "Namn"
#: frontend/src/components/Settings/Members.vue:17 #: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16 #: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17 #: 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 #: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json #: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New" msgid "New"
@@ -4461,7 +4461,7 @@ msgstr "Nya Jobb"
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "Ny Jobb Sökande" msgstr "Ny Jobb Sökande"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:12
msgid "New Payment Gateway" msgid "New Payment Gateway"
msgstr "Ny Betalning Portal" msgstr "Ny Betalning Portal"
@@ -4778,13 +4778,8 @@ msgstr "Öppen för"
#: frontend/src/components/UserAvatar.vue:11 #: frontend/src/components/UserAvatar.vue:11
#: frontend/src/pages/CertifiedParticipants.vue:46 #: frontend/src/pages/CertifiedParticipants.vue:46
#: frontend/src/pages/Profile.vue:69 #: frontend/src/pages/Profile.vue:69
msgid "Open to Opportunities" msgid "Open to Work"
msgstr "Öppen för Möjligheter" msgstr ""
#. Option for the 'Open to' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json
msgid "Opportunities"
msgstr "Möjligheter"
#. Label of the option (Data) field in DocType 'LMS Option' #. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:70 #: frontend/src/components/Modals/Question.vue:70
@@ -4924,7 +4919,7 @@ msgstr "Delvis Klar"
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. 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_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass" msgid "Pass"
@@ -5054,7 +5049,7 @@ msgstr "Betalning App är inte installerad"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' #. 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_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending" msgid "Pending"
@@ -5194,7 +5189,7 @@ msgstr "Logga in för att komma till denna sida."
msgid "Please login to continue with payment." msgid "Please login to continue with payment."
msgstr "Logga in för att fortsätta med betalning." msgstr "Logga in för att fortsätta med betalning."
#: lms/lms/utils.py:2081 #: lms/lms/utils.py:2082
msgid "Please login to enroll in the program." msgid "Please login to enroll in the program."
msgstr "Logga in för att registrera dig i programmet." 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 Course'
#. Label of the published (Check) field in DocType 'LMS Program' #. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51 #: 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/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105
#: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100 #: 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 (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review' #. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147 #: 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 #: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.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/AssignmentForm.vue:65
#: frontend/src/components/Modals/EditProfile.vue:121 #: frontend/src/components/Modals/EditProfile.vue:121
#: frontend/src/components/Modals/EmailTemplateModal.vue:12 #: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:115 #: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:151 #: frontend/src/components/Modals/Event.vue:157
#: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78 #: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/Coupons/CouponDetails.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/components/Settings/Transactions/TransactionDetails.vue:129
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17 #: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14 #: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
@@ -6048,7 +6043,7 @@ msgstr "Se alla"
msgid "Select Date" msgid "Select Date"
msgstr "Välj Datum" msgstr "Välj Datum"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:26
msgid "Select Payment Gateway" msgid "Select Payment Gateway"
msgstr "Välj Betalning Portal" msgstr "Välj Betalning Portal"
@@ -6364,7 +6359,7 @@ msgstr "Statistik"
#. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission' #. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case 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/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19 #: 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 #. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation' #. 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 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary" msgid "Summary"
msgstr "Översikt" msgstr "Översikt"
@@ -6571,7 +6566,7 @@ msgstr "Teamarbete"
#. Label of the template (Link) field in DocType 'LMS Certificate' #. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43 #: 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 #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template" msgid "Template"
msgstr "Mall" msgstr "Mall"
@@ -6620,7 +6615,7 @@ msgstr "Tack för återkoppling."
msgid "Thanks and Regards" msgid "Thanks and Regards"
msgstr "Tack och Hälsningar" msgstr "Tack och Hälsningar"
#: lms/lms/utils.py:2247 #: lms/lms/utils.py:2248
msgid "The batch does not exist." msgid "The batch does not exist."
msgstr "Grupp existerar inte." 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." 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." 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." msgid "The coupon code '{0}' is invalid."
msgstr "Kupongkod '{0}' är ogiltig." 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 " msgid "The last day to schedule your evaluations is "
msgstr "Sista dagen att boka utvärderingar är " msgstr "Sista dagen att boka utvärderingar är "
#: lms/lms/utils.py:2231 #: lms/lms/utils.py:2232
msgid "The lesson does not exist." msgid "The lesson does not exist."
msgstr "Lektion existerar inte." msgstr "Lektion existerar inte."
@@ -6660,7 +6655,7 @@ msgstr "Lektion existerar inte."
msgid "The slot is already booked by another participant." msgid "The slot is already booked by another participant."
msgstr "Tiden är redan bokad av en annan deltagare." 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." msgid "The specified batch does not exist."
msgstr "Angiven grupp existerar inte." msgstr "Angiven grupp existerar inte."
@@ -6726,15 +6721,15 @@ msgstr "Detta certifikat upphör inte att gälla"
msgid "This class has ended" msgid "This class has ended"
msgstr "Denna klass har avslutats" msgstr "Denna klass har avslutats"
#: lms/lms/utils.py:1776 #: lms/lms/utils.py:1777
msgid "This coupon has expired." msgid "This coupon has expired."
msgstr "Denna kupong har gått ut." 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." msgid "This coupon has reached its maximum usage limit."
msgstr "Denna kupong har nått sin maximala inlösenantal." 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}." msgid "This coupon is not applicable to this {0}."
msgstr "Denna kupong är inte tillämplig på denna {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:" msgid "This course has:"
msgstr "Denna kurs har:" msgstr "Denna kurs har:"
#: lms/lms/utils.py:1707 #: lms/lms/utils.py:1708
msgid "This course is free." msgid "This course is free."
msgstr "Denna kurs är gratis." msgstr "Denna kurs är gratis."
@@ -6799,7 +6794,7 @@ msgid "Thursday"
msgstr "Torsdag" msgstr "Torsdag"
#. Label of the time (Time) field in DocType 'LMS Live Class' #. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48 #: frontend/src/components/Modals/Event.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:52 #: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Quiz.vue:58 #: frontend/src/components/Quiz.vue:58
#: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -6934,7 +6929,7 @@ msgstr "Till"
msgid "To Date" msgid "To Date"
msgstr "Till Datum" msgstr "Till Datum"
#: lms/lms/utils.py:1721 #: lms/lms/utils.py:1722
msgid "To join this batch, please contact the Administrator." msgid "To join this batch, please contact the Administrator."
msgstr "För att gå med i denna grupp, kontakta Administratör." 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" msgid "Under Review"
msgstr "Under Recension" 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" msgid "Unpublished"
msgstr "Opublicerad" msgstr "Opublicerad"
@@ -7077,8 +7072,8 @@ msgstr "Ostrukturerad Roll"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
#. Label of the upcoming (Check) field in DocType 'LMS Course' #. 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/Batches.vue:330 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:347 #: frontend/src/pages/Courses.vue:346
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming" msgid "Upcoming"
@@ -7220,7 +7215,7 @@ msgid "View Applications"
msgstr "Visa Ansökningar" msgstr "Visa Ansökningar"
#: frontend/src/components/CertificationLinks.vue:10 #: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67 #: frontend/src/components/Modals/Event.vue:73
msgid "View Certificate" msgid "View Certificate"
msgstr "Visa Certifikat" msgstr "Visa Certifikat"
@@ -7327,6 +7322,11 @@ msgstr "Med denna certifiering kan du nu visa upp dina uppdaterade färdigheter
msgid "Withdrawn" msgid "Withdrawn"
msgstr "Återkallad" msgstr "Återkallad"
#. 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' #. Label of the work_environment (Section Break) field in DocType 'User'
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
msgid "Work Environment" 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." msgid "You cannot enroll in an unpublished course."
msgstr "Du kan inte anmäla dig till opublicerad kurs." 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." msgid "You cannot enroll in an unpublished program."
msgstr "Du kan inte anmäla dig till opublicerad 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." msgid "You cannot schedule evaluations for past slots."
msgstr "Du kan inte schemalägga utvärderingar för förflutna tider." 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." msgid "You do not have access to this batch."
msgstr "Du har inte åtkomst till denna grupp." 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." msgid "You do not have access to this course."
msgstr "Du har inte åtkomst till denna kurs." msgstr "Du har inte åtkomst till denna kurs."
+58 -58
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2026-01-16 16:04+0000\n" "POT-Creation-Date: 2026-01-23 16:05+0000\n"
"PO-Revision-Date: 2026-01-19 20:13\n" "PO-Revision-Date: 2026-02-05 06:43\n"
"Last-Translator: jannat@frappe.io\n" "Last-Translator: jannat@frappe.io\n"
"Language-Team: Thai\n" "Language-Team: Thai\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -319,7 +319,7 @@ msgid "Administrator"
msgstr "" msgstr ""
#. Name of a role #. 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" msgid "All"
msgstr "" msgstr ""
@@ -486,7 +486,7 @@ msgstr ""
msgid "Apps" msgid "Apps"
msgstr "" msgstr ""
#: frontend/src/pages/Batches.vue:329 #: frontend/src/pages/Batches.vue:331
msgid "Archived" msgid "Archived"
msgstr "" 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'
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request' #. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
#. Label of the batch_name (Link) field in DocType 'LMS Live Class' #. 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/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200 #: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125
@@ -878,7 +878,7 @@ msgid "Batch:"
msgstr "" msgstr ""
#. Label of the batches (Check) field in DocType 'LMS Settings' #. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue: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 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121
msgid "Batches" msgid "Batches"
msgstr "" msgstr ""
@@ -1023,7 +1023,7 @@ msgstr ""
msgid "Certificate of Completion" msgid "Certificate of Completion"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:347 #: frontend/src/components/Modals/Event.vue:353
msgid "Certificate saved successfully" msgid "Certificate saved successfully"
msgstr "" msgstr ""
@@ -1043,7 +1043,7 @@ msgstr ""
#. Label of a chart in the LMS Workspace #. Label of a chart in the LMS Workspace
#. Label of a Card Break in the LMS Workspace #. Label of a Card Break in the LMS Workspace
#. Label of a Link 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/components/Sidebar/AppSidebar.vue:550
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100
#: frontend/src/pages/CourseCertification.vue:10 #: frontend/src/pages/CourseCertification.vue:10
@@ -1771,7 +1771,7 @@ msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:95 #: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127 #: 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/ProgramForm.vue:49
#: frontend/src/pages/Programs/Programs.vue:35 #: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1878,7 +1878,7 @@ msgstr ""
msgid "Create your first quiz" msgid "Create your first quiz"
msgstr "" 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" msgid "Created"
msgstr "" 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 Certificate Request'
#. Label of the date (Date) field in DocType 'LMS Live Class' #. Label of the date (Date) field in DocType 'LMS Live Class'
#. Label of the date (Date) field in DocType 'Scheduled Flow' #. 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 #: frontend/src/components/Modals/LiveClassModal.vue:29
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -2244,7 +2244,7 @@ msgstr ""
msgid "Edit Email Template" msgid "Edit Email Template"
msgstr "" msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:13
msgid "Edit Payment Gateway" msgid "Edit Payment Gateway"
msgstr "" msgstr ""
@@ -2427,7 +2427,7 @@ msgstr ""
msgid "Enroll Now" msgid "Enroll Now"
msgstr "" 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 #: frontend/src/pages/Programs/StudentPrograms.vue:96
msgid "Enrolled" msgid "Enrolled"
msgstr "" msgstr ""
@@ -2529,7 +2529,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace #. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json #: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json
msgid "Evaluation" msgid "Evaluation"
msgstr "" msgstr ""
@@ -2554,7 +2554,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date." msgid "Evaluation end date cannot be less than the batch end date."
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:286 #: frontend/src/components/Modals/Event.vue:292
msgid "Evaluation saved successfully" msgid "Evaluation saved successfully"
msgstr "" msgstr ""
@@ -2667,7 +2667,7 @@ msgstr "หมดอายุเมื่อ"
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33 #: 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 #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date" msgid "Expiry Date"
msgstr "วันหมดอายุ" msgstr "วันหมดอายุ"
@@ -2698,7 +2698,7 @@ msgstr ""
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. 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_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail" msgid "Fail"
@@ -3212,7 +3212,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course' #. 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_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "In Progress" 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 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate' #. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28 #: 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/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date" msgid "Issue Date"
@@ -3459,7 +3459,7 @@ msgstr ""
msgid "Join Call" msgid "Join Call"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:78 #: frontend/src/components/Modals/Event.vue:84
msgid "Join Meeting" msgid "Join Meeting"
msgstr "" msgstr ""
@@ -3899,7 +3899,7 @@ msgstr ""
msgid "LinkedIn ID" msgid "LinkedIn ID"
msgstr "" msgstr ""
#: frontend/src/pages/Courses.vue:341 #: frontend/src/pages/Courses.vue:340
msgid "Live" msgid "Live"
msgstr "" msgstr ""
@@ -4432,7 +4432,7 @@ msgstr "ชื่อ"
#: frontend/src/components/Settings/Members.vue:17 #: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16 #: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17 #: 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 #: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json #: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New" msgid "New"
@@ -4464,7 +4464,7 @@ msgstr ""
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "" msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:12
msgid "New Payment Gateway" msgid "New Payment Gateway"
msgstr "" msgstr ""
@@ -4781,14 +4781,9 @@ msgstr ""
#: frontend/src/components/UserAvatar.vue:11 #: frontend/src/components/UserAvatar.vue:11
#: frontend/src/pages/CertifiedParticipants.vue:46 #: frontend/src/pages/CertifiedParticipants.vue:46
#: frontend/src/pages/Profile.vue:69 #: frontend/src/pages/Profile.vue:69
msgid "Open to Opportunities" msgid "Open to Work"
msgstr "" 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' #. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:70 #: frontend/src/components/Modals/Question.vue:70
#: lms/lms/doctype/lms_option/lms_option.json #: lms/lms/doctype/lms_option/lms_option.json
@@ -4927,7 +4922,7 @@ msgstr ""
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. 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_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass" msgid "Pass"
@@ -5057,7 +5052,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' #. 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_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending" msgid "Pending"
@@ -5197,7 +5192,7 @@ msgstr ""
msgid "Please login to continue with payment." msgid "Please login to continue with payment."
msgstr "" msgstr ""
#: lms/lms/utils.py:2081 #: lms/lms/utils.py:2082
msgid "Please login to enroll in the program." msgid "Please login to enroll in the program."
msgstr "" 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 Course'
#. Label of the published (Check) field in DocType 'LMS Program' #. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51 #: 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/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105
#: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100 #: 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 (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review' #. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147 #: 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 #: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.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/AssignmentForm.vue:65
#: frontend/src/components/Modals/EditProfile.vue:121 #: frontend/src/components/Modals/EditProfile.vue:121
#: frontend/src/components/Modals/EmailTemplateModal.vue:12 #: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:115 #: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:151 #: frontend/src/components/Modals/Event.vue:157
#: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78 #: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/Coupons/CouponDetails.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/components/Settings/Transactions/TransactionDetails.vue:129
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17 #: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14 #: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
@@ -6051,7 +6046,7 @@ msgstr ""
msgid "Select Date" msgid "Select Date"
msgstr "" msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:26
msgid "Select Payment Gateway" msgid "Select Payment Gateway"
msgstr "" msgstr ""
@@ -6367,7 +6362,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission' #. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case 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/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19 #: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6478,7 +6473,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation' #. 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 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary" msgid "Summary"
msgstr "" msgstr ""
@@ -6574,7 +6569,7 @@ msgstr ""
#. Label of the template (Link) field in DocType 'LMS Certificate' #. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43 #: 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 #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template" msgid "Template"
msgstr "" msgstr ""
@@ -6623,7 +6618,7 @@ msgstr ""
msgid "Thanks and Regards" msgid "Thanks and Regards"
msgstr "" msgstr ""
#: lms/lms/utils.py:2247 #: lms/lms/utils.py:2248
msgid "The batch does not exist." msgid "The batch does not exist."
msgstr "" 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." msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session."
msgstr "" msgstr ""
#: lms/lms/utils.py:1747 #: lms/lms/utils.py:1748
msgid "The coupon code '{0}' is invalid." msgid "The coupon code '{0}' is invalid."
msgstr "" msgstr ""
@@ -6655,7 +6650,7 @@ msgstr ""
msgid "The last day to schedule your evaluations is " msgid "The last day to schedule your evaluations is "
msgstr "" msgstr ""
#: lms/lms/utils.py:2231 #: lms/lms/utils.py:2232
msgid "The lesson does not exist." msgid "The lesson does not exist."
msgstr "" msgstr ""
@@ -6663,7 +6658,7 @@ msgstr ""
msgid "The slot is already booked by another participant." msgid "The slot is already booked by another participant."
msgstr "" 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." msgid "The specified batch does not exist."
msgstr "" msgstr ""
@@ -6729,15 +6724,15 @@ msgstr ""
msgid "This class has ended" msgid "This class has ended"
msgstr "" msgstr ""
#: lms/lms/utils.py:1776 #: lms/lms/utils.py:1777
msgid "This coupon has expired." msgid "This coupon has expired."
msgstr "" msgstr ""
#: lms/lms/utils.py:1779 #: lms/lms/utils.py:1780
msgid "This coupon has reached its maximum usage limit." msgid "This coupon has reached its maximum usage limit."
msgstr "" msgstr ""
#: lms/lms/utils.py:1788 #: lms/lms/utils.py:1789
msgid "This coupon is not applicable to this {0}." msgid "This coupon is not applicable to this {0}."
msgstr "" msgstr ""
@@ -6745,7 +6740,7 @@ msgstr ""
msgid "This course has:" msgid "This course has:"
msgstr "" msgstr ""
#: lms/lms/utils.py:1707 #: lms/lms/utils.py:1708
msgid "This course is free." msgid "This course is free."
msgstr "" msgstr ""
@@ -6802,7 +6797,7 @@ msgid "Thursday"
msgstr "" msgstr ""
#. Label of the time (Time) field in DocType 'LMS Live Class' #. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48 #: frontend/src/components/Modals/Event.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:52 #: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Quiz.vue:58 #: frontend/src/components/Quiz.vue:58
#: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -6937,7 +6932,7 @@ msgstr ""
msgid "To Date" msgid "To Date"
msgstr "" msgstr ""
#: lms/lms/utils.py:1721 #: lms/lms/utils.py:1722
msgid "To join this batch, please contact the Administrator." msgid "To join this batch, please contact the Administrator."
msgstr "" msgstr ""
@@ -7059,7 +7054,7 @@ msgstr ""
msgid "Under Review" msgid "Under Review"
msgstr "" 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" msgid "Unpublished"
msgstr "" msgstr ""
@@ -7080,8 +7075,8 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
#. Label of the upcoming (Check) field in DocType 'LMS Course' #. 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/Batches.vue:330 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:347 #: frontend/src/pages/Courses.vue:346
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming" msgid "Upcoming"
@@ -7223,7 +7218,7 @@ msgid "View Applications"
msgstr "" msgstr ""
#: frontend/src/components/CertificationLinks.vue:10 #: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67 #: frontend/src/components/Modals/Event.vue:73
msgid "View Certificate" msgid "View Certificate"
msgstr "" msgstr ""
@@ -7330,6 +7325,11 @@ msgstr ""
msgid "Withdrawn" msgid "Withdrawn"
msgstr "" 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' #. Label of the work_environment (Section Break) field in DocType 'User'
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
msgid "Work Environment" msgid "Work Environment"
@@ -7430,7 +7430,7 @@ msgstr ""
msgid "You cannot enroll in an unpublished course." msgid "You cannot enroll in an unpublished course."
msgstr "" msgstr ""
#: lms/lms/utils.py:2085 #: lms/lms/utils.py:2086
msgid "You cannot enroll in an unpublished program." msgid "You cannot enroll in an unpublished program."
msgstr "" msgstr ""
@@ -7446,11 +7446,11 @@ msgstr ""
msgid "You cannot schedule evaluations for past slots." msgid "You cannot schedule evaluations for past slots."
msgstr "" msgstr ""
#: lms/lms/utils.py:2259 #: lms/lms/utils.py:2260
msgid "You do not have access to this batch." msgid "You do not have access to this batch."
msgstr "" msgstr ""
#: lms/lms/utils.py:2242 #: lms/lms/utils.py:2243
msgid "You do not have access to this course." msgid "You do not have access to this course."
msgstr "" msgstr ""
+59 -59
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2026-01-16 16:04+0000\n" "POT-Creation-Date: 2026-01-23 16:05+0000\n"
"PO-Revision-Date: 2026-01-21 20:16\n" "PO-Revision-Date: 2026-02-05 06:43\n"
"Last-Translator: jannat@frappe.io\n" "Last-Translator: jannat@frappe.io\n"
"Language-Team: Turkish\n" "Language-Team: Turkish\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -319,7 +319,7 @@ msgid "Administrator"
msgstr "Yönetici" msgstr "Yönetici"
#. Name of a role #. 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" msgid "All"
msgstr "Tümü" msgstr "Tümü"
@@ -486,7 +486,7 @@ msgstr "Onaylandı"
msgid "Apps" msgid "Apps"
msgstr "Uygulamalar" msgstr "Uygulamalar"
#: frontend/src/pages/Batches.vue:329 #: frontend/src/pages/Batches.vue:331
msgid "Archived" msgid "Archived"
msgstr "" 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'
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request' #. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
#. Label of the batch_name (Link) field in DocType 'LMS Live Class' #. 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/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200 #: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125
@@ -878,7 +878,7 @@ msgid "Batch:"
msgstr "Parti:" msgstr "Parti:"
#. Label of the batches (Check) field in DocType 'LMS Settings' #. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue: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 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121
msgid "Batches" msgid "Batches"
msgstr "Sınıflar" msgstr "Sınıflar"
@@ -1023,7 +1023,7 @@ msgstr "Sertifika Bağlantısı"
msgid "Certificate of Completion" msgid "Certificate of Completion"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:347 #: frontend/src/components/Modals/Event.vue:353
msgid "Certificate saved successfully" msgid "Certificate saved successfully"
msgstr "" msgstr ""
@@ -1043,7 +1043,7 @@ msgstr ""
#. Label of a chart in the LMS Workspace #. Label of a chart in the LMS Workspace
#. Label of a Card Break in the LMS Workspace #. Label of a Card Break in the LMS Workspace
#. Label of a Link 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/components/Sidebar/AppSidebar.vue:550
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100
#: frontend/src/pages/CourseCertification.vue:10 #: frontend/src/pages/CourseCertification.vue:10
@@ -1771,7 +1771,7 @@ msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:95 #: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127 #: 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/ProgramForm.vue:49
#: frontend/src/pages/Programs/Programs.vue:35 #: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1878,7 +1878,7 @@ msgstr ""
msgid "Create your first quiz" msgid "Create your first quiz"
msgstr "" 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" msgid "Created"
msgstr "Oluşturdu" 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 Certificate Request'
#. Label of the date (Date) field in DocType 'LMS Live Class' #. Label of the date (Date) field in DocType 'LMS Live Class'
#. Label of the date (Date) field in DocType 'Scheduled Flow' #. 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 #: frontend/src/components/Modals/LiveClassModal.vue:29
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -2241,7 +2241,7 @@ msgstr ""
msgid "Edit Email Template" msgid "Edit Email Template"
msgstr "" msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:13
msgid "Edit Payment Gateway" msgid "Edit Payment Gateway"
msgstr "" msgstr ""
@@ -2424,7 +2424,7 @@ msgstr ""
msgid "Enroll Now" msgid "Enroll Now"
msgstr "Hemen Kaydol" 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 #: frontend/src/pages/Programs/StudentPrograms.vue:96
msgid "Enrolled" msgid "Enrolled"
msgstr "Kayıtlı" msgstr "Kayıtlı"
@@ -2526,7 +2526,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace #. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json #: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json
msgid "Evaluation" msgid "Evaluation"
msgstr "Değerlendirme" msgstr "Değerlendirme"
@@ -2551,7 +2551,7 @@ msgstr "Değerlendirme Talebi"
msgid "Evaluation end date cannot be less than the batch end date." msgid "Evaluation end date cannot be less than the batch end date."
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:286 #: frontend/src/components/Modals/Event.vue:292
msgid "Evaluation saved successfully" msgid "Evaluation saved successfully"
msgstr "" msgstr ""
@@ -2664,7 +2664,7 @@ msgstr "Sona Erme Tarihi"
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33 #: 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 #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date" msgid "Expiry Date"
msgstr "Son Kullanım Tarihi" msgstr "Son Kullanım Tarihi"
@@ -2695,7 +2695,7 @@ msgstr "Daha Fazlasını Keşfedin"
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. 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_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail" msgid "Fail"
@@ -3209,7 +3209,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course' #. 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_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "In Progress" 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 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate' #. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28 #: 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/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date" msgid "Issue Date"
@@ -3456,7 +3456,7 @@ msgstr "Katıl"
msgid "Join Call" msgid "Join Call"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:78 #: frontend/src/components/Modals/Event.vue:84
msgid "Join Meeting" msgid "Join Meeting"
msgstr "Görüşmeye Katıl" msgstr "Görüşmeye Katıl"
@@ -3896,7 +3896,7 @@ msgstr "LinkedIn"
msgid "LinkedIn ID" msgid "LinkedIn ID"
msgstr "LinkedIn" msgstr "LinkedIn"
#: frontend/src/pages/Courses.vue:341 #: frontend/src/pages/Courses.vue:340
msgid "Live" msgid "Live"
msgstr "Canlı" msgstr "Canlı"
@@ -4429,7 +4429,7 @@ msgstr "Adı"
#: frontend/src/components/Settings/Members.vue:17 #: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16 #: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17 #: 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 #: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json #: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New" msgid "New"
@@ -4461,7 +4461,7 @@ msgstr "Yeni İş"
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "Yeni İş Başvurusu" msgstr "Yeni İş Başvurusu"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:12
msgid "New Payment Gateway" msgid "New Payment Gateway"
msgstr "" msgstr ""
@@ -4778,14 +4778,9 @@ msgstr ""
#: frontend/src/components/UserAvatar.vue:11 #: frontend/src/components/UserAvatar.vue:11
#: frontend/src/pages/CertifiedParticipants.vue:46 #: frontend/src/pages/CertifiedParticipants.vue:46
#: frontend/src/pages/Profile.vue:69 #: frontend/src/pages/Profile.vue:69
msgid "Open to Opportunities" msgid "Open to Work"
msgstr "" 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' #. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:70 #: frontend/src/components/Modals/Question.vue:70
#: lms/lms/doctype/lms_option/lms_option.json #: lms/lms/doctype/lms_option/lms_option.json
@@ -4924,7 +4919,7 @@ msgstr "Kısmen Tamamlandı"
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. 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_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass" msgid "Pass"
@@ -5054,7 +5049,7 @@ msgstr "Ödeme uygulaması yüklü değil"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' #. 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_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending" 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." msgid "Please login to continue with payment."
msgstr "Ödeme işlemine devam etmek için lütfen giriş yapın." msgstr "Ödeme işlemine devam etmek için lütfen giriş yapın."
#: lms/lms/utils.py:2081 #: lms/lms/utils.py:2082
msgid "Please login to enroll in the program." msgid "Please login to enroll in the program."
msgstr "" 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 Course'
#. Label of the published (Check) field in DocType 'LMS Program' #. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51 #: 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/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105
#: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100 #: 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 (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review' #. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147 #: 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 #: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.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/AssignmentForm.vue:65
#: frontend/src/components/Modals/EditProfile.vue:121 #: frontend/src/components/Modals/EditProfile.vue:121
#: frontend/src/components/Modals/EmailTemplateModal.vue:12 #: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:115 #: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:151 #: frontend/src/components/Modals/Event.vue:157
#: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78 #: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/Coupons/CouponDetails.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/components/Settings/Transactions/TransactionDetails.vue:129
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17 #: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14 #: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
@@ -6048,7 +6043,7 @@ msgstr ""
msgid "Select Date" msgid "Select Date"
msgstr "" msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:26
msgid "Select Payment Gateway" msgid "Select Payment Gateway"
msgstr "" msgstr ""
@@ -6364,7 +6359,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission' #. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case 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/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19 #: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6475,7 +6470,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation' #. 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 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary" msgid "Summary"
msgstr "Özet" msgstr "Özet"
@@ -6571,7 +6566,7 @@ msgstr "Takım Çalışması"
#. Label of the template (Link) field in DocType 'LMS Certificate' #. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43 #: 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 #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template" msgid "Template"
msgstr "" msgstr ""
@@ -6620,7 +6615,7 @@ msgstr "Geri bildiriminiz için teşekkür ederiz."
msgid "Thanks and Regards" msgid "Thanks and Regards"
msgstr "Teşekkürler ve Saygılar" msgstr "Teşekkürler ve Saygılar"
#: lms/lms/utils.py:2247 #: lms/lms/utils.py:2248
msgid "The batch does not exist." msgid "The batch does not exist."
msgstr "" 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." msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session."
msgstr "" msgstr ""
#: lms/lms/utils.py:1747 #: lms/lms/utils.py:1748
msgid "The coupon code '{0}' is invalid." msgid "The coupon code '{0}' is invalid."
msgstr "" msgstr ""
@@ -6652,7 +6647,7 @@ msgstr ""
msgid "The last day to schedule your evaluations is " msgid "The last day to schedule your evaluations is "
msgstr "" msgstr ""
#: lms/lms/utils.py:2231 #: lms/lms/utils.py:2232
msgid "The lesson does not exist." msgid "The lesson does not exist."
msgstr "" msgstr ""
@@ -6660,7 +6655,7 @@ msgstr ""
msgid "The slot is already booked by another participant." msgid "The slot is already booked by another participant."
msgstr "Bu slot başka bir katılımcı tarafından rezerve edilmiş." 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." msgid "The specified batch does not exist."
msgstr "" msgstr ""
@@ -6726,15 +6721,15 @@ msgstr ""
msgid "This class has ended" msgid "This class has ended"
msgstr "" msgstr ""
#: lms/lms/utils.py:1776 #: lms/lms/utils.py:1777
msgid "This coupon has expired." msgid "This coupon has expired."
msgstr "" msgstr ""
#: lms/lms/utils.py:1779 #: lms/lms/utils.py:1780
msgid "This coupon has reached its maximum usage limit." msgid "This coupon has reached its maximum usage limit."
msgstr "" msgstr ""
#: lms/lms/utils.py:1788 #: lms/lms/utils.py:1789
msgid "This coupon is not applicable to this {0}." msgid "This coupon is not applicable to this {0}."
msgstr "" msgstr ""
@@ -6742,7 +6737,7 @@ msgstr ""
msgid "This course has:" msgid "This course has:"
msgstr "Bu kursta:" msgstr "Bu kursta:"
#: lms/lms/utils.py:1707 #: lms/lms/utils.py:1708
msgid "This course is free." msgid "This course is free."
msgstr "Bu kurs ücretsizdir." msgstr "Bu kurs ücretsizdir."
@@ -6799,7 +6794,7 @@ msgid "Thursday"
msgstr "" msgstr ""
#. Label of the time (Time) field in DocType 'LMS Live Class' #. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48 #: frontend/src/components/Modals/Event.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:52 #: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Quiz.vue:58 #: frontend/src/components/Quiz.vue:58
#: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -6934,7 +6929,7 @@ msgstr "Kime"
msgid "To Date" msgid "To Date"
msgstr "Bitiş Tarihi" msgstr "Bitiş Tarihi"
#: lms/lms/utils.py:1721 #: lms/lms/utils.py:1722
msgid "To join this batch, please contact the Administrator." msgid "To join this batch, please contact the Administrator."
msgstr "" msgstr ""
@@ -7056,7 +7051,7 @@ msgstr ""
msgid "Under Review" msgid "Under Review"
msgstr "İnceleniyor" 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" msgid "Unpublished"
msgstr "" msgstr ""
@@ -7077,8 +7072,8 @@ msgstr "Ayarlanmamış Rol"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
#. Label of the upcoming (Check) field in DocType 'LMS Course' #. 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/Batches.vue:330 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:347 #: frontend/src/pages/Courses.vue:346
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming" msgid "Upcoming"
@@ -7220,7 +7215,7 @@ msgid "View Applications"
msgstr "" msgstr ""
#: frontend/src/components/CertificationLinks.vue:10 #: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67 #: frontend/src/components/Modals/Event.vue:73
msgid "View Certificate" msgid "View Certificate"
msgstr "Sertifikayı Görüntüle" msgstr "Sertifikayı Görüntüle"
@@ -7327,6 +7322,11 @@ msgstr "Bu sertifika ile artık güncellenmiş becerilerinizi sergileyebilir ve
msgid "Withdrawn" msgid "Withdrawn"
msgstr "" 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' #. Label of the work_environment (Section Break) field in DocType 'User'
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
msgid "Work Environment" msgid "Work Environment"
@@ -7427,7 +7427,7 @@ msgstr ""
msgid "You cannot enroll in an unpublished course." msgid "You cannot enroll in an unpublished course."
msgstr "" msgstr ""
#: lms/lms/utils.py:2085 #: lms/lms/utils.py:2086
msgid "You cannot enroll in an unpublished program." msgid "You cannot enroll in an unpublished program."
msgstr "" msgstr ""
@@ -7443,11 +7443,11 @@ msgstr "{0} tarihinden sonra değerlendirme planlayamazsınız."
msgid "You cannot schedule evaluations for past slots." msgid "You cannot schedule evaluations for past slots."
msgstr "Geçmiş dönemler için değerlendirme planlayamazsınız." 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." msgid "You do not have access to this batch."
msgstr "" msgstr ""
#: lms/lms/utils.py:2242 #: lms/lms/utils.py:2243
msgid "You do not have access to this course." msgid "You do not have access to this course."
msgstr "" msgstr ""
@@ -7916,7 +7916,7 @@ msgstr ""
#. Count format of shortcut in the LMS Workspace #. Count format of shortcut in the LMS Workspace
#: lms/lms/workspace/lms/lms.json #: lms/lms/workspace/lms/lms.json
msgid "{} Active" msgid "{} Active"
msgstr "{} Aktif" msgstr ""
#. Count format of shortcut in the LMS Workspace #. Count format of shortcut in the LMS Workspace
#: lms/lms/workspace/lms/lms.json #: lms/lms/workspace/lms/lms.json
+58 -58
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2026-01-16 16:04+0000\n" "POT-Creation-Date: 2026-01-23 16:05+0000\n"
"PO-Revision-Date: 2026-01-21 20:16\n" "PO-Revision-Date: 2026-02-05 06:43\n"
"Last-Translator: jannat@frappe.io\n" "Last-Translator: jannat@frappe.io\n"
"Language-Team: Vietnamese\n" "Language-Team: Vietnamese\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -319,7 +319,7 @@ msgid "Administrator"
msgstr "" msgstr ""
#. Name of a role #. 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" msgid "All"
msgstr "" msgstr ""
@@ -486,7 +486,7 @@ msgstr ""
msgid "Apps" msgid "Apps"
msgstr "" msgstr ""
#: frontend/src/pages/Batches.vue:329 #: frontend/src/pages/Batches.vue:331
msgid "Archived" msgid "Archived"
msgstr "" 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'
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request' #. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
#. Label of the batch_name (Link) field in DocType 'LMS Live Class' #. 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/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200 #: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125
@@ -878,7 +878,7 @@ msgid "Batch:"
msgstr "" msgstr ""
#. Label of the batches (Check) field in DocType 'LMS Settings' #. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue: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 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121
msgid "Batches" msgid "Batches"
msgstr "" msgstr ""
@@ -1023,7 +1023,7 @@ msgstr ""
msgid "Certificate of Completion" msgid "Certificate of Completion"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:347 #: frontend/src/components/Modals/Event.vue:353
msgid "Certificate saved successfully" msgid "Certificate saved successfully"
msgstr "" msgstr ""
@@ -1043,7 +1043,7 @@ msgstr ""
#. Label of a chart in the LMS Workspace #. Label of a chart in the LMS Workspace
#. Label of a Card Break in the LMS Workspace #. Label of a Card Break in the LMS Workspace
#. Label of a Link 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/components/Sidebar/AppSidebar.vue:550
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100
#: frontend/src/pages/CourseCertification.vue:10 #: frontend/src/pages/CourseCertification.vue:10
@@ -1771,7 +1771,7 @@ msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:95 #: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127 #: 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/ProgramForm.vue:49
#: frontend/src/pages/Programs/Programs.vue:35 #: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1878,7 +1878,7 @@ msgstr ""
msgid "Create your first quiz" msgid "Create your first quiz"
msgstr "" 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" msgid "Created"
msgstr "" 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 Certificate Request'
#. Label of the date (Date) field in DocType 'LMS Live Class' #. Label of the date (Date) field in DocType 'LMS Live Class'
#. Label of the date (Date) field in DocType 'Scheduled Flow' #. 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 #: frontend/src/components/Modals/LiveClassModal.vue:29
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -2241,7 +2241,7 @@ msgstr ""
msgid "Edit Email Template" msgid "Edit Email Template"
msgstr "" msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:13
msgid "Edit Payment Gateway" msgid "Edit Payment Gateway"
msgstr "" msgstr ""
@@ -2424,7 +2424,7 @@ msgstr ""
msgid "Enroll Now" msgid "Enroll Now"
msgstr "" 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 #: frontend/src/pages/Programs/StudentPrograms.vue:96
msgid "Enrolled" msgid "Enrolled"
msgstr "" msgstr ""
@@ -2526,7 +2526,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace #. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json #: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json
msgid "Evaluation" msgid "Evaluation"
msgstr "" msgstr ""
@@ -2551,7 +2551,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date." msgid "Evaluation end date cannot be less than the batch end date."
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:286 #: frontend/src/components/Modals/Event.vue:292
msgid "Evaluation saved successfully" msgid "Evaluation saved successfully"
msgstr "" msgstr ""
@@ -2664,7 +2664,7 @@ msgstr ""
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33 #: 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 #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date" msgid "Expiry Date"
msgstr "" msgstr ""
@@ -2695,7 +2695,7 @@ msgstr ""
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. 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_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail" msgid "Fail"
@@ -3209,7 +3209,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course' #. 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_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "In Progress" 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 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate' #. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28 #: 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/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date" msgid "Issue Date"
@@ -3456,7 +3456,7 @@ msgstr ""
msgid "Join Call" msgid "Join Call"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:78 #: frontend/src/components/Modals/Event.vue:84
msgid "Join Meeting" msgid "Join Meeting"
msgstr "" msgstr ""
@@ -3896,7 +3896,7 @@ msgstr ""
msgid "LinkedIn ID" msgid "LinkedIn ID"
msgstr "" msgstr ""
#: frontend/src/pages/Courses.vue:341 #: frontend/src/pages/Courses.vue:340
msgid "Live" msgid "Live"
msgstr "" msgstr ""
@@ -4429,7 +4429,7 @@ msgstr ""
#: frontend/src/components/Settings/Members.vue:17 #: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16 #: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17 #: 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 #: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json #: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New" msgid "New"
@@ -4461,7 +4461,7 @@ msgstr ""
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "" msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:12
msgid "New Payment Gateway" msgid "New Payment Gateway"
msgstr "" msgstr ""
@@ -4778,12 +4778,7 @@ msgstr ""
#: frontend/src/components/UserAvatar.vue:11 #: frontend/src/components/UserAvatar.vue:11
#: frontend/src/pages/CertifiedParticipants.vue:46 #: frontend/src/pages/CertifiedParticipants.vue:46
#: frontend/src/pages/Profile.vue:69 #: 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 "" msgstr ""
#. Label of the option (Data) field in DocType 'LMS Option' #. Label of the option (Data) field in DocType 'LMS Option'
@@ -4924,7 +4919,7 @@ msgstr ""
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. 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_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass" msgid "Pass"
@@ -5054,7 +5049,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' #. 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_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending" msgid "Pending"
@@ -5194,7 +5189,7 @@ msgstr ""
msgid "Please login to continue with payment." msgid "Please login to continue with payment."
msgstr "" msgstr ""
#: lms/lms/utils.py:2081 #: lms/lms/utils.py:2082
msgid "Please login to enroll in the program." msgid "Please login to enroll in the program."
msgstr "" 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 Course'
#. Label of the published (Check) field in DocType 'LMS Program' #. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51 #: 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/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105
#: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100 #: 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 (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review' #. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147 #: 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 #: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.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/AssignmentForm.vue:65
#: frontend/src/components/Modals/EditProfile.vue:121 #: frontend/src/components/Modals/EditProfile.vue:121
#: frontend/src/components/Modals/EmailTemplateModal.vue:12 #: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:115 #: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:151 #: frontend/src/components/Modals/Event.vue:157
#: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78 #: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/Coupons/CouponDetails.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/components/Settings/Transactions/TransactionDetails.vue:129
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17 #: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14 #: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
@@ -6048,7 +6043,7 @@ msgstr ""
msgid "Select Date" msgid "Select Date"
msgstr "" msgstr ""
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:26
msgid "Select Payment Gateway" msgid "Select Payment Gateway"
msgstr "" msgstr ""
@@ -6364,7 +6359,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission' #. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case 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/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19 #: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6475,7 +6470,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation' #. 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 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary" msgid "Summary"
msgstr "" msgstr ""
@@ -6571,7 +6566,7 @@ msgstr ""
#. Label of the template (Link) field in DocType 'LMS Certificate' #. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43 #: 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 #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template" msgid "Template"
msgstr "" msgstr ""
@@ -6620,7 +6615,7 @@ msgstr ""
msgid "Thanks and Regards" msgid "Thanks and Regards"
msgstr "" msgstr ""
#: lms/lms/utils.py:2247 #: lms/lms/utils.py:2248
msgid "The batch does not exist." msgid "The batch does not exist."
msgstr "" 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." msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session."
msgstr "" msgstr ""
#: lms/lms/utils.py:1747 #: lms/lms/utils.py:1748
msgid "The coupon code '{0}' is invalid." msgid "The coupon code '{0}' is invalid."
msgstr "" msgstr ""
@@ -6652,7 +6647,7 @@ msgstr ""
msgid "The last day to schedule your evaluations is " msgid "The last day to schedule your evaluations is "
msgstr "" msgstr ""
#: lms/lms/utils.py:2231 #: lms/lms/utils.py:2232
msgid "The lesson does not exist." msgid "The lesson does not exist."
msgstr "" msgstr ""
@@ -6660,7 +6655,7 @@ msgstr ""
msgid "The slot is already booked by another participant." msgid "The slot is already booked by another participant."
msgstr "" 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." msgid "The specified batch does not exist."
msgstr "" msgstr ""
@@ -6726,15 +6721,15 @@ msgstr ""
msgid "This class has ended" msgid "This class has ended"
msgstr "" msgstr ""
#: lms/lms/utils.py:1776 #: lms/lms/utils.py:1777
msgid "This coupon has expired." msgid "This coupon has expired."
msgstr "" msgstr ""
#: lms/lms/utils.py:1779 #: lms/lms/utils.py:1780
msgid "This coupon has reached its maximum usage limit." msgid "This coupon has reached its maximum usage limit."
msgstr "" msgstr ""
#: lms/lms/utils.py:1788 #: lms/lms/utils.py:1789
msgid "This coupon is not applicable to this {0}." msgid "This coupon is not applicable to this {0}."
msgstr "" msgstr ""
@@ -6742,7 +6737,7 @@ msgstr ""
msgid "This course has:" msgid "This course has:"
msgstr "" msgstr ""
#: lms/lms/utils.py:1707 #: lms/lms/utils.py:1708
msgid "This course is free." msgid "This course is free."
msgstr "" msgstr ""
@@ -6799,7 +6794,7 @@ msgid "Thursday"
msgstr "" msgstr ""
#. Label of the time (Time) field in DocType 'LMS Live Class' #. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48 #: frontend/src/components/Modals/Event.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:52 #: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Quiz.vue:58 #: frontend/src/components/Quiz.vue:58
#: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -6934,7 +6929,7 @@ msgstr ""
msgid "To Date" msgid "To Date"
msgstr "" msgstr ""
#: lms/lms/utils.py:1721 #: lms/lms/utils.py:1722
msgid "To join this batch, please contact the Administrator." msgid "To join this batch, please contact the Administrator."
msgstr "" msgstr ""
@@ -7056,7 +7051,7 @@ msgstr ""
msgid "Under Review" msgid "Under Review"
msgstr "" 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" msgid "Unpublished"
msgstr "" msgstr ""
@@ -7077,8 +7072,8 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
#. Label of the upcoming (Check) field in DocType 'LMS Course' #. 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/Batches.vue:330 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:347 #: frontend/src/pages/Courses.vue:346
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming" msgid "Upcoming"
@@ -7220,7 +7215,7 @@ msgid "View Applications"
msgstr "" msgstr ""
#: frontend/src/components/CertificationLinks.vue:10 #: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67 #: frontend/src/components/Modals/Event.vue:73
msgid "View Certificate" msgid "View Certificate"
msgstr "" msgstr ""
@@ -7327,6 +7322,11 @@ msgstr ""
msgid "Withdrawn" msgid "Withdrawn"
msgstr "" 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' #. Label of the work_environment (Section Break) field in DocType 'User'
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
msgid "Work Environment" msgid "Work Environment"
@@ -7427,7 +7427,7 @@ msgstr ""
msgid "You cannot enroll in an unpublished course." msgid "You cannot enroll in an unpublished course."
msgstr "" msgstr ""
#: lms/lms/utils.py:2085 #: lms/lms/utils.py:2086
msgid "You cannot enroll in an unpublished program." msgid "You cannot enroll in an unpublished program."
msgstr "" msgstr ""
@@ -7443,11 +7443,11 @@ msgstr ""
msgid "You cannot schedule evaluations for past slots." msgid "You cannot schedule evaluations for past slots."
msgstr "" msgstr ""
#: lms/lms/utils.py:2259 #: lms/lms/utils.py:2260
msgid "You do not have access to this batch." msgid "You do not have access to this batch."
msgstr "" msgstr ""
#: lms/lms/utils.py:2242 #: lms/lms/utils.py:2243
msgid "You do not have access to this course." msgid "You do not have access to this course."
msgstr "" msgstr ""
+59 -59
View File
@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2026-01-16 16:04+0000\n" "POT-Creation-Date: 2026-01-23 16:05+0000\n"
"PO-Revision-Date: 2026-01-21 20:16\n" "PO-Revision-Date: 2026-02-05 06:43\n"
"Last-Translator: jannat@frappe.io\n" "Last-Translator: jannat@frappe.io\n"
"Language-Team: Chinese Simplified\n" "Language-Team: Chinese Simplified\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -190,7 +190,7 @@ msgstr "为视频添加测验"
#: frontend/src/components/Controls/ChildTable.vue:77 #: frontend/src/components/Controls/ChildTable.vue:77
#: frontend/src/components/Settings/Coupons/CouponItems.vue:55 #: frontend/src/components/Settings/Coupons/CouponItems.vue:55
msgid "Add Row" msgid "Add Row"
msgstr "添加行" msgstr "添加行"
#: frontend/src/pages/ProfileEvaluator.vue:96 #: frontend/src/pages/ProfileEvaluator.vue:96
msgid "Add Slot" msgid "Add Slot"
@@ -319,7 +319,7 @@ msgid "Administrator"
msgstr "管理员" msgstr "管理员"
#. Name of a role #. 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" msgid "All"
msgstr "全部" msgstr "全部"
@@ -486,7 +486,7 @@ msgstr "已批准"
msgid "Apps" msgid "Apps"
msgstr "应用" msgstr "应用"
#: frontend/src/pages/Batches.vue:329 #: frontend/src/pages/Batches.vue:331
msgid "Archived" msgid "Archived"
msgstr "已归档" 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'
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request' #. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
#. Label of the batch_name (Link) field in DocType 'LMS Live Class' #. 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/BadgeForm.vue:195
#: frontend/src/components/Settings/Badges.vue:200 #: frontend/src/components/Settings/Badges.vue:200
#: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125 #: frontend/src/components/Settings/Transactions/TransactionDetails.vue:125
@@ -878,7 +878,7 @@ msgid "Batch:"
msgstr "批次:" msgstr "批次:"
#. Label of the batches (Check) field in DocType 'LMS Settings' #. Label of the batches (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/Batches.vue: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 #: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:121
msgid "Batches" msgid "Batches"
msgstr "批次" msgstr "批次"
@@ -1023,7 +1023,7 @@ msgstr "证书链接"
msgid "Certificate of Completion" msgid "Certificate of Completion"
msgstr "结业证书" msgstr "结业证书"
#: frontend/src/components/Modals/Event.vue:347 #: frontend/src/components/Modals/Event.vue:353
msgid "Certificate saved successfully" msgid "Certificate saved successfully"
msgstr "证书保存成功" msgstr "证书保存成功"
@@ -1043,7 +1043,7 @@ msgstr "证书生成成功"
#. Label of a chart in the LMS Workspace #. Label of a chart in the LMS Workspace
#. Label of a Card Break in the LMS Workspace #. Label of a Card Break in the LMS Workspace
#. Label of a Link 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/components/Sidebar/AppSidebar.vue:550
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:100
#: frontend/src/pages/CourseCertification.vue:10 #: frontend/src/pages/CourseCertification.vue:10
@@ -1771,7 +1771,7 @@ msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:95 #: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127 #: 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/ProgramForm.vue:49
#: frontend/src/pages/Programs/Programs.vue:35 #: frontend/src/pages/Programs/Programs.vue:35
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
@@ -1878,7 +1878,7 @@ msgstr "创建首门课程"
msgid "Create your first quiz" msgid "Create your first quiz"
msgstr "创建首项测验" 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" msgid "Created"
msgstr "已创建" 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 Certificate Request'
#. Label of the date (Date) field in DocType 'LMS Live Class' #. Label of the date (Date) field in DocType 'LMS Live Class'
#. Label of the date (Date) field in DocType 'Scheduled Flow' #. 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 #: frontend/src/components/Modals/LiveClassModal.vue:29
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json #: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -2241,7 +2241,7 @@ msgstr ""
msgid "Edit Email Template" msgid "Edit Email Template"
msgstr "编辑邮件模板" msgstr "编辑邮件模板"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:8 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:13
msgid "Edit Payment Gateway" msgid "Edit Payment Gateway"
msgstr "编辑支付网关" msgstr "编辑支付网关"
@@ -2424,7 +2424,7 @@ msgstr "为成员注册项目"
msgid "Enroll Now" msgid "Enroll Now"
msgstr "立即报名" 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 #: frontend/src/pages/Programs/StudentPrograms.vue:96
msgid "Enrolled" msgid "Enrolled"
msgstr "已注册" msgstr "已注册"
@@ -2526,7 +2526,7 @@ msgstr "邮件模板更新错误"
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace #. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:404 lms/lms/workspace/lms/lms.json #: frontend/src/components/Modals/Event.vue:420 lms/lms/workspace/lms/lms.json
msgid "Evaluation" msgid "Evaluation"
msgstr "评估" msgstr "评估"
@@ -2551,7 +2551,7 @@ msgstr "评估请求"
msgid "Evaluation end date cannot be less than the batch end date." msgid "Evaluation end date cannot be less than the batch end date."
msgstr "评估结束日期不得早于批次结束日期" msgstr "评估结束日期不得早于批次结束日期"
#: frontend/src/components/Modals/Event.vue:286 #: frontend/src/components/Modals/Event.vue:292
msgid "Evaluation saved successfully" msgid "Evaluation saved successfully"
msgstr "评估保存成功" msgstr "评估保存成功"
@@ -2664,7 +2664,7 @@ msgstr "到期日"
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33 #: 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 #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date" msgid "Expiry Date"
msgstr "到期日" msgstr "到期日"
@@ -2695,7 +2695,7 @@ msgstr "查看更多"
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. 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_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail" msgid "Fail"
@@ -3209,7 +3209,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course' #. 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_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "In Progress" 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 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate' #. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28 #: 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/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date" msgid "Issue Date"
@@ -3456,7 +3456,7 @@ msgstr "加入"
msgid "Join Call" msgid "Join Call"
msgstr "加入通话" msgstr "加入通话"
#: frontend/src/components/Modals/Event.vue:78 #: frontend/src/components/Modals/Event.vue:84
msgid "Join Meeting" msgid "Join Meeting"
msgstr "加入会议" msgstr "加入会议"
@@ -3896,7 +3896,7 @@ msgstr "领英"
msgid "LinkedIn ID" msgid "LinkedIn ID"
msgstr "领英账号" msgstr "领英账号"
#: frontend/src/pages/Courses.vue:341 #: frontend/src/pages/Courses.vue:340
msgid "Live" msgid "Live"
msgstr "直播" msgstr "直播"
@@ -4429,7 +4429,7 @@ msgstr "名称"
#: frontend/src/components/Settings/Members.vue:17 #: frontend/src/components/Settings/Members.vue:17
#: frontend/src/components/Settings/PaymentGateways.vue:16 #: frontend/src/components/Settings/PaymentGateways.vue:16
#: frontend/src/components/Settings/ZoomSettings.vue:17 #: 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 #: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json #: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New" msgid "New"
@@ -4461,7 +4461,7 @@ msgstr "新建职位"
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "新职位申请人" msgstr "新职位申请人"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:7 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:12
msgid "New Payment Gateway" msgid "New Payment Gateway"
msgstr "新建支付网关" msgstr "新建支付网关"
@@ -4778,14 +4778,9 @@ msgstr ""
#: frontend/src/components/UserAvatar.vue:11 #: frontend/src/components/UserAvatar.vue:11
#: frontend/src/pages/CertifiedParticipants.vue:46 #: frontend/src/pages/CertifiedParticipants.vue:46
#: frontend/src/pages/Profile.vue:69 #: frontend/src/pages/Profile.vue:69
msgid "Open to Opportunities" msgid "Open to Work"
msgstr "" 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' #. Label of the option (Data) field in DocType 'LMS Option'
#: frontend/src/components/Modals/Question.vue:70 #: frontend/src/components/Modals/Question.vue:70
#: lms/lms/doctype/lms_option/lms_option.json #: lms/lms/doctype/lms_option/lms_option.json
@@ -4924,7 +4919,7 @@ msgstr "部分完成"
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. 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_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass" msgid "Pass"
@@ -5054,7 +5049,7 @@ msgstr "未安装支付应用"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' #. 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_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending" msgid "Pending"
@@ -5194,7 +5189,7 @@ msgstr "请登录以访问此页面"
msgid "Please login to continue with payment." msgid "Please login to continue with payment."
msgstr "请登录以继续支付" msgstr "请登录以继续支付"
#: lms/lms/utils.py:2081 #: lms/lms/utils.py:2082
msgid "Please login to enroll in the program." msgid "Please login to enroll in the program."
msgstr "请登录以报名项目。" 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 Course'
#. Label of the published (Check) field in DocType 'LMS Program' #. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51 #: 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/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:105
#: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100 #: 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 (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review' #. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147 #: 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 #: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.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/AssignmentForm.vue:65
#: frontend/src/components/Modals/EditProfile.vue:121 #: frontend/src/components/Modals/EditProfile.vue:121
#: frontend/src/components/Modals/EmailTemplateModal.vue:12 #: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:115 #: frontend/src/components/Modals/Event.vue:121
#: frontend/src/components/Modals/Event.vue:151 #: frontend/src/components/Modals/Event.vue:157
#: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
#: frontend/src/components/Settings/BadgeForm.vue:78 #: frontend/src/components/Settings/BadgeForm.vue:78
#: frontend/src/components/Settings/Coupons/CouponDetails.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/components/Settings/Transactions/TransactionDetails.vue:129
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17 #: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:17
#: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14 #: frontend/src/pages/JobForm.vue:8 frontend/src/pages/LessonForm.vue:14
@@ -6048,7 +6043,7 @@ msgstr "查看全部"
msgid "Select Date" msgid "Select Date"
msgstr "选择日期" msgstr "选择日期"
#: frontend/src/components/Settings/PaymentGatewayDetails.vue:22 #: frontend/src/components/Settings/PaymentGatewayDetails.vue:26
msgid "Select Payment Gateway" msgid "Select Payment Gateway"
msgstr "选择支付网关" msgstr "选择支付网关"
@@ -6364,7 +6359,7 @@ msgstr "统计"
#. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission' #. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case 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/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19 #: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6475,7 +6470,7 @@ msgstr "项目报名成功"
#. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation' #. 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 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary" msgid "Summary"
msgstr "摘要" msgstr "摘要"
@@ -6571,7 +6566,7 @@ msgstr "团队协作"
#. Label of the template (Link) field in DocType 'LMS Certificate' #. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43 #: 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 #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template" msgid "Template"
msgstr "模板" msgstr "模板"
@@ -6620,7 +6615,7 @@ msgstr "感谢您提供反馈。"
msgid "Thanks and Regards" msgid "Thanks and Regards"
msgstr "此致敬礼" msgstr "此致敬礼"
#: lms/lms/utils.py:2247 #: lms/lms/utils.py:2248
msgid "The batch does not exist." msgid "The batch does not exist."
msgstr "" 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." msgid "The batch you have enrolled for is starting tomorrow. Please be prepared and be on time for the session."
msgstr "您报名的批次明日开始,请做好准备准时参加" msgstr "您报名的批次明日开始,请做好准备准时参加"
#: lms/lms/utils.py:1747 #: lms/lms/utils.py:1748
msgid "The coupon code '{0}' is invalid." msgid "The coupon code '{0}' is invalid."
msgstr "" msgstr ""
@@ -6652,7 +6647,7 @@ msgstr ""
msgid "The last day to schedule your evaluations is " msgid "The last day to schedule your evaluations is "
msgstr "" msgstr ""
#: lms/lms/utils.py:2231 #: lms/lms/utils.py:2232
msgid "The lesson does not exist." msgid "The lesson does not exist."
msgstr "" msgstr ""
@@ -6660,7 +6655,7 @@ msgstr ""
msgid "The slot is already booked by another participant." msgid "The slot is already booked by another participant."
msgstr "该时段已被其他参与者预定" 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." msgid "The specified batch does not exist."
msgstr "" msgstr ""
@@ -6726,15 +6721,15 @@ msgstr "本证书永久有效"
msgid "This class has ended" msgid "This class has ended"
msgstr "本课程已结束" msgstr "本课程已结束"
#: lms/lms/utils.py:1776 #: lms/lms/utils.py:1777
msgid "This coupon has expired." msgid "This coupon has expired."
msgstr "" msgstr ""
#: lms/lms/utils.py:1779 #: lms/lms/utils.py:1780
msgid "This coupon has reached its maximum usage limit." msgid "This coupon has reached its maximum usage limit."
msgstr "" msgstr ""
#: lms/lms/utils.py:1788 #: lms/lms/utils.py:1789
msgid "This coupon is not applicable to this {0}." msgid "This coupon is not applicable to this {0}."
msgstr "" msgstr ""
@@ -6742,7 +6737,7 @@ msgstr ""
msgid "This course has:" msgid "This course has:"
msgstr "本课程包含:" msgstr "本课程包含:"
#: lms/lms/utils.py:1707 #: lms/lms/utils.py:1708
msgid "This course is free." msgid "This course is free."
msgstr "本课程免费" msgstr "本课程免费"
@@ -6799,7 +6794,7 @@ msgid "Thursday"
msgstr "星期四" msgstr "星期四"
#. Label of the time (Time) field in DocType 'LMS Live Class' #. Label of the time (Time) field in DocType 'LMS Live Class'
#: frontend/src/components/Modals/Event.vue:48 #: frontend/src/components/Modals/Event.vue:54
#: frontend/src/components/Modals/LiveClassModal.vue:52 #: frontend/src/components/Modals/LiveClassModal.vue:52
#: frontend/src/components/Quiz.vue:58 #: frontend/src/components/Quiz.vue:58
#: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -6934,7 +6929,7 @@ msgstr "至"
msgid "To Date" msgid "To Date"
msgstr "截止日期" msgstr "截止日期"
#: lms/lms/utils.py:1721 #: lms/lms/utils.py:1722
msgid "To join this batch, please contact the Administrator." msgid "To join this batch, please contact the Administrator."
msgstr "加入本批次请联系管理员" msgstr "加入本批次请联系管理员"
@@ -7056,7 +7051,7 @@ msgstr "不可用开始日期不可晚于结束日期"
msgid "Under Review" msgid "Under Review"
msgstr "审核中" 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" msgid "Unpublished"
msgstr "未发布" msgstr "未发布"
@@ -7077,8 +7072,8 @@ msgstr "非结构化角色"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request' #. Option for the 'Status' (Select) field in DocType 'LMS Certificate Request'
#. Label of the upcoming (Check) field in DocType 'LMS Course' #. 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/Batches.vue:330 frontend/src/pages/CourseForm.vue:117
#: frontend/src/pages/Courses.vue:347 #: frontend/src/pages/Courses.vue:346
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "Upcoming" msgid "Upcoming"
@@ -7220,7 +7215,7 @@ msgid "View Applications"
msgstr "" msgstr ""
#: frontend/src/components/CertificationLinks.vue:10 #: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67 #: frontend/src/components/Modals/Event.vue:73
msgid "View Certificate" msgid "View Certificate"
msgstr "查看证书" msgstr "查看证书"
@@ -7327,6 +7322,11 @@ msgstr "获得此认证后,您可向同事及领英展示最新技能。点击
msgid "Withdrawn" msgid "Withdrawn"
msgstr "已撤回" 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' #. Label of the work_environment (Section Break) field in DocType 'User'
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
msgid "Work Environment" msgid "Work Environment"
@@ -7427,7 +7427,7 @@ msgstr "只读模式下不可修改角色。"
msgid "You cannot enroll in an unpublished course." msgid "You cannot enroll in an unpublished course."
msgstr "" msgstr ""
#: lms/lms/utils.py:2085 #: lms/lms/utils.py:2086
msgid "You cannot enroll in an unpublished program." msgid "You cannot enroll in an unpublished program."
msgstr "" msgstr ""
@@ -7443,11 +7443,11 @@ msgstr "您不能在{0}之后安排评估"
msgid "You cannot schedule evaluations for past slots." msgid "You cannot schedule evaluations for past slots."
msgstr "不能为过去的时段安排评估" msgstr "不能为过去的时段安排评估"
#: lms/lms/utils.py:2259 #: lms/lms/utils.py:2260
msgid "You do not have access to this batch." msgid "You do not have access to this batch."
msgstr "" msgstr ""
#: lms/lms/utils.py:2242 #: lms/lms/utils.py:2243
msgid "You do not have access to this course." msgid "You do not have access to this course."
msgstr "" 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,
)