Compare commits

..

38 Commits

Author SHA1 Message Date
Frappe PR Bot
bb6e97992b chore(release): Bumped to Version 2.19.0 2025-01-08 14:21:07 +00:00
Jannat Patel
64fac451f3 Merge pull request #1236 from FahidLatheef/fix/days_diff_function_name
fix: fixed typo in spelling in frappe.utils.date_diff import
2025-01-08 12:43:10 +05:30
Jannat Patel
eb6b72515e Merge pull request #1235 from FahidLatheef/fix/assignment-popup-on-edit-quiz
fix: fix issue where assignment form is popped up on add quiz button in Lesson Edit form
2025-01-08 10:45:42 +05:30
Fahid Latheef A
0550d3aea3 fix: fixed typo in spelling in frappe.utils.date_diff import 2025-01-07 21:07:23 +05:30
Fahid Latheef A
f6577acbff refactor: fixed linting issue 2025-01-07 20:41:54 +05:30
Fahid Latheef A
09c494f38a Added quiz type prop for AssessmentPlugin component 2025-01-07 20:29:07 +05:30
Fahid Latheef A
6c600d747e Added assignement type prop for AssessmentPlugin component 2025-01-07 20:27:39 +05:30
Jannat Patel
9dcfc347d9 Merge pull request #1234 from pateljannat/batch-dashboard-23
feat: student activities display in a heatmap
2025-01-07 19:31:20 +05:30
Jannat Patel
fb40b627fc feat: show student progress heatmap on moderators dashboard 2025-01-07 18:15:59 +05:30
Jannat Patel
c597f96375 Merge pull request #1233 from frappe/l10n_develop2
chore: sync translations from crowdin
2025-01-07 10:27:39 +05:30
Jannat Patel
f1961ab614 chore: Esperanto translations 2025-01-07 09:39:40 +05:30
Jannat Patel
c2c7b7b250 chore: Bosnian translations 2025-01-07 09:39:38 +05:30
Jannat Patel
c20c272f8e chore: Persian translations 2025-01-07 09:39:37 +05:30
Jannat Patel
85e4115306 chore: Chinese Simplified translations 2025-01-07 09:39:36 +05:30
Jannat Patel
10c2bc589a chore: Turkish translations 2025-01-07 09:39:34 +05:30
Jannat Patel
a30244cb4a chore: Swedish translations 2025-01-07 09:39:33 +05:30
Jannat Patel
5691fcdca4 chore: Russian translations 2025-01-07 09:39:31 +05:30
Jannat Patel
f5848207e2 chore: Polish translations 2025-01-07 09:39:30 +05:30
Jannat Patel
ad224161d8 chore: Hungarian translations 2025-01-07 09:39:28 +05:30
Jannat Patel
5837a1ffab chore: German translations 2025-01-07 09:39:27 +05:30
Jannat Patel
1cfd7cdb98 chore: Arabic translations 2025-01-07 09:39:25 +05:30
Jannat Patel
56a4aa2a3f chore: Spanish translations 2025-01-07 09:39:24 +05:30
Jannat Patel
d91d2ded77 chore: French translations 2025-01-07 09:39:22 +05:30
Jannat Patel
6a48d44b14 Merge pull request #1232 from pateljannat/issues-63
fix: misc issues
2025-01-06 16:25:21 +05:30
Jannat Patel
31c5d423d0 fix: misc issues 2025-01-06 16:00:48 +05:30
Jannat Patel
79177b5f5b feat: students heatmap 2025-01-06 15:42:44 +05:30
Jannat Patel
74658b2054 Merge pull request #1231 from pateljannat/refactor-batch-list
refactor: fetch minimal information for batch cards
2025-01-06 12:44:28 +05:30
Jannat Patel
052fffccef refactor: badge page data 2025-01-06 12:36:44 +05:30
Jannat Patel
bd2b558154 refactor: fetch minimal information for batch cards 2025-01-06 12:05:29 +05:30
Jannat Patel
65ee6b62ea Merge pull request #1230 from pateljannat/issues-62
refactor: duration field in quiz should be in minutes
2025-01-06 11:24:13 +05:30
Jannat Patel
26266a22e8 fix: add description to indicate that duration should be in minutes 2025-01-06 11:02:46 +05:30
Jannat Patel
e52ca63075 refactor: duration field in quiz should be in minutes 2025-01-06 11:01:01 +05:30
Jannat Patel
4d8b2eb5b4 Merge pull request #1229 from frappe/l10n_develop2
chore: sync translations from crowdin
2025-01-06 10:41:42 +05:30
Jannat Patel
2d81a1ce31 Merge pull request #1227 from frappe/pot_develop_2025-01-03
chore: update POT file
2025-01-06 10:41:30 +05:30
Jannat Patel
052a85fbc0 chore: Swedish translations 2025-01-06 09:43:51 +05:30
frappe-pr-bot
fa0e84c671 chore: update POT file 2025-01-03 16:04:23 +00:00
Jannat Patel
4759736571 Merge pull request #1226 from pateljannat/issues-61
fix: misc batch issues
2025-01-03 17:57:42 +05:30
Jannat Patel
f77686feaa fix: misc batch issues 2025-01-03 17:37:22 +05:30
37 changed files with 3489 additions and 1699 deletions

View File

@@ -11,7 +11,7 @@
{{ __('Add') }} {{ __('Add') }}
</Button> </Button>
</div> </div>
<div v-if="assessments.data?.length"> <div v-if="assessments.data?.length" class="text-sm">
<ListView <ListView
:columns="getAssessmentColumns()" :columns="getAssessmentColumns()"
:rows="assessments.data" :rows="assessments.data"

View File

@@ -1,17 +1,18 @@
<template> <template>
<div> <div class="space-y-10">
<UpcomingEvaluations <UpcomingEvaluations
:batch="batch.data.name" :batch="batch.data.name"
:endDate="batch.data.evaluation_end_date" :endDate="batch.data.evaluation_end_date"
:courses="batch.data.courses" :courses="batch.data.courses"
:isStudent="isStudent"
/> />
<Assessments :batch="batch.data.name" /> <Assessments :batch="batch.data.name" />
<StudentHeatmap />
</div> </div>
</template> </template>
<script setup> <script setup>
import UpcomingEvaluations from '@/components/UpcomingEvaluations.vue' import UpcomingEvaluations from '@/components/UpcomingEvaluations.vue'
import Assessments from '@/components/Assessments.vue' import Assessments from '@/components/Assessments.vue'
import StudentHeatmap from '@/components/StudentHeatmap.vue'
const props = defineProps({ const props = defineProps({
batch: { batch: {

View File

@@ -8,10 +8,10 @@
<div class="grid grid-cols-3 gap-5 mb-8"> <div class="grid grid-cols-3 gap-5 mb-8">
<div class="flex items-center shadow py-2 px-3 rounded-md"> <div class="flex items-center shadow py-2 px-3 rounded-md">
<div class="p-2 rounded-md bg-gray-100 mr-3"> <div class="p-2 rounded-md bg-gray-100 mr-3">
<User class="w-18 h-18 stroke-1.5 text-gray-700" /> <User class="w-5 h-5 stroke-1.5 text-gray-700" />
</div> </div>
<div class="flex flex-col"> <div class="flex items-center space-x-2">
<span class="text-xl font-semibold mb-1"> <span class="font-semibold">
{{ students.data?.length }} {{ students.data?.length }}
</span> </span>
<span class="text-gray-700"> <span class="text-gray-700">
@@ -22,10 +22,10 @@
<div class="flex items-center shadow py-2 px-3 rounded-md"> <div class="flex items-center shadow py-2 px-3 rounded-md">
<div class="p-2 rounded-md bg-gray-100 mr-3"> <div class="p-2 rounded-md bg-gray-100 mr-3">
<BookOpen class="w-18 h-18 stroke-1.5 text-gray-700" /> <BookOpen class="w-5 h-5 stroke-1.5 text-gray-700" />
</div> </div>
<div class="flex flex-col"> <div class="flex items-center space-x-2">
<span class="text-xl font-semibold mb-1"> <span class="font-semibold">
{{ batch.courses?.length }} {{ batch.courses?.length }}
</span> </span>
<span class="text-gray-700"> <span class="text-gray-700">
@@ -36,10 +36,10 @@
<div class="flex items-center shadow py-2 px-3 rounded-md"> <div class="flex items-center shadow py-2 px-3 rounded-md">
<div class="p-2 rounded-md bg-gray-100 mr-3"> <div class="p-2 rounded-md bg-gray-100 mr-3">
<ShieldCheck class="w-18 h-18 stroke-1.5 text-gray-700" /> <ShieldCheck class="w-5 h-5 stroke-1.5 text-gray-700" />
</div> </div>
<div class="flex flex-col"> <div class="flex items-center space-x-2">
<span class="text-xl font-semibold mb-1"> <span class="font-semibold">
{{ assessmentCount }} {{ assessmentCount }}
</span> </span>
<span class="text-gray-700"> <span class="text-gray-700">
@@ -48,28 +48,33 @@
</div> </div>
</div> </div>
</div> </div>
<div class="mb-8"> <div v-if="showProgressChart" class="mb-8">
<div class="text-gray-600 font-medium"> <div class="text-gray-600 font-medium">
{{ __('Progress') }} {{ __('Progress') }}
</div> </div>
<ApexChart <ApexChart
v-if="showProgressChart"
:options="chartOptions" :options="chartOptions"
:series="chartData" :series="chartData"
type="bar" type="bar"
height="350" height="200"
/> />
<div <div
class="flex items-center justify-center text-sm text-gray-700 space-x-4" class="flex items-center justify-center text-sm text-gray-700 space-x-4"
> >
<div class="flex items-center space-x-2"> <div class="flex items-center space-x-2">
<div class="w-3 h-3" style="background-color: #0f736b"></div> <div
class="w-3 h-3 rounded-sm"
:style="{ 'background-color': theme.colors.green[600] }"
></div>
<div> <div>
{{ __('Courses') }} {{ __('Courses') }}
</div> </div>
</div> </div>
<div class="flex items-center space-x-2"> <div class="flex items-center space-x-2">
<div class="w-3 h-3" style="background-color: #0070cc"></div> <div
class="w-3 h-3 rounded-sm"
:style="{ 'background-color': theme.colors.blue[600] }"
></div>
<div> <div>
{{ __('Assessments') }} {{ __('Assessments') }}
</div> </div>
@@ -125,7 +130,11 @@
@click="openStudentProgressModal(row)" @click="openStudentProgressModal(row)"
> >
<template #default="{ column, item }"> <template #default="{ column, item }">
<ListRowItem :item="row[column.key]" :align="column.align"> <ListRowItem
:item="row[column.key]"
:align="column.align"
class="text-sm"
>
<template #prefix> <template #prefix>
<div v-if="column.key == 'full_name'"> <div v-if="column.key == 'full_name'">
<Avatar <Avatar
@@ -141,16 +150,7 @@
class="flex items-center space-x-4 w-full" class="flex items-center space-x-4 w-full"
> >
<ProgressBar :progress="row[column.key]" size="sm" /> <ProgressBar :progress="row[column.key]" size="sm" />
</div> <div class="text-xs">{{ row[column.key] }}%</div>
<div
v-else-if="column.key == 'copy'"
class="invisible group-hover:visible"
>
<Button variant="ghost" @click="copyEmail(row)">
<template #icon>
<Clipboard class="h-4 w-4 stroke-1.5" />
</template>
</Button>
</div> </div>
<div v-else> <div v-else>
{{ row[column.key] }} {{ row[column.key] }}
@@ -216,6 +216,7 @@ import { showToast } from '@/utils'
import ProgressBar from '@/components/ProgressBar.vue' import ProgressBar from '@/components/ProgressBar.vue'
import BatchStudentProgress from '@/components/Modals/BatchStudentProgress.vue' import BatchStudentProgress from '@/components/Modals/BatchStudentProgress.vue'
import ApexChart from 'vue3-apexcharts' import ApexChart from 'vue3-apexcharts'
import { theme } from '@/utils/theme'
const showStudentModal = ref(false) const showStudentModal = ref(false)
const showStudentProgressModal = ref(false) const showStudentProgressModal = ref(false)
@@ -256,20 +257,16 @@ const getStudentColumns = () => {
{ {
label: 'Progress', label: 'Progress',
key: 'progress', key: 'progress',
width: '10rem', width: '15rem',
icon: 'activity', icon: 'activity',
}, },
{ {
label: 'Last Active', label: 'Last Active',
key: 'last_active', key: 'last_active',
width: '15rem', width: '10rem',
align: 'center', align: 'center',
icon: 'clock', icon: 'clock',
}, },
{
label: '',
key: 'copy',
},
] ]
return columns return columns
@@ -352,8 +349,8 @@ const getChartData = () => {
} }
const getChartOptions = (categories) => { const getChartOptions = (categories) => {
const courseColor = '#0F736B' const courseColor = theme.colors.green[700]
const assessmentColor = '#0070CC' const assessmentColor = theme.colors.blue[700]
const maxY = const maxY =
students.data?.length % 5 students.data?.length % 5
? students.data?.length + (5 - (students.data?.length % 5)) ? students.data?.length + (5 - (students.data?.length % 5))
@@ -362,7 +359,6 @@ const getChartOptions = (categories) => {
return { return {
chart: { chart: {
type: 'bar', type: 'bar',
height: 50,
toolbar: { toolbar: {
show: false, show: false,
}, },
@@ -370,9 +366,10 @@ const getChartOptions = (categories) => {
plotOptions: { plotOptions: {
bar: { bar: {
distributed: true, distributed: true,
borderRadius: 0, borderRadius: 3,
borderRadiusApplication: 'end',
horizontal: true, horizontal: true,
barHeight: '30%', barHeight: '40%',
}, },
}, },
colors: Object.values(categories).map((item) => colors: Object.values(categories).map((item) =>
@@ -386,7 +383,7 @@ const getChartOptions = (categories) => {
}, },
rotate: 0, rotate: 0,
formatter: function (value) { formatter: function (value) {
return value.length > 20 ? `${value.substring(0, 20)}...` : value // Trim long labels return value.length > 30 ? `${value.substring(0, 30)}...` : value // Trim long labels
}, },
}, },
}, },
@@ -395,15 +392,11 @@ const getChartOptions = (categories) => {
min: 0, min: 0,
stepSize: 10, stepSize: 10,
tickAmount: maxY / 5, tickAmount: maxY / 5,
/* reversed: true */
}, },
} }
} }
const copyEmail = (row) => {
navigator.clipboard.writeText(row.email)
showToast(__('Success'), __('Email copied to clipboard'), 'check')
}
watch(students, () => { watch(students, () => {
if (students.data?.length) { if (students.data?.length) {
assessmentCount.value = Object.keys(students.data?.[0].assessments).length assessmentCount.value = Object.keys(students.data?.[0].assessments).length

View File

@@ -15,45 +15,55 @@
<div v-if="liveClasses.data?.length" class="grid grid-cols-2 gap-5"> <div v-if="liveClasses.data?.length" class="grid grid-cols-2 gap-5">
<div <div
v-for="cls in liveClasses.data" v-for="cls in liveClasses.data"
class="flex flex-col border rounded-md h-full text-sm text-gray-700 p-3" class="flex flex-col border rounded-md h-full text-gray-700 p-3"
> >
<div class="font-semibold text-gray-900 text-lg mb-4"> <div class="font-semibold text-gray-900 text-lg mb-1">
{{ cls.title }} {{ cls.title }}
</div> </div>
<div class="leading-5 text-gray-700 text-sm mb-4"> <div class="short-introduction">
{{ cls.description }} {{ cls.description }}
</div> </div>
<div class="flex items-center mb-2"> <div class="space-y-3">
<Calendar class="w-4 h-4 stroke-1.5 text-gray-700" /> <div class="flex items-center space-x-2">
<span class="ml-2"> <Calendar class="w-4 h-4 stroke-1.5" />
{{ dayjs(cls.date).format('DD MMMM YYYY') }} <span>
</span> {{ dayjs(cls.date).format('DD MMMM YYYY') }}
</div> </span>
<div class="flex items-center mb-5"> </div>
<Clock class="w-4 h-4 stroke-1.5" /> <div class="flex items-center space-x-2">
<span class="ml-2"> <Clock class="w-4 h-4 stroke-1.5" />
{{ formatTime(cls.time) }} <span>
</span> {{ formatTime(cls.time) }}
</div> </span>
<div class="flex items-center space-x-2 text-gray-900 mt-auto"> </div>
<a <div
v-if="user.data?.is_moderator || user.data?.is_evaluator" v-if="cls.date >= dayjs().format('YYYY-MM-DD')"
:href="cls.start_url" class="flex items-center space-x-2 text-gray-900 mt-auto"
target="_blank"
class="w-1/2 cursor-pointer inline-flex items-center justify-center gap-2 transition-colors focus:outline-none text-gray-800 bg-gray-100 hover:bg-gray-200 active:bg-gray-300 focus-visible:ring focus-visible:ring-gray-400 h-7 text-base px-2 rounded"
> >
<Monitor class="h-4 w-4 stroke-1.5" /> <a
{{ __('Start') }} v-if="user.data?.is_moderator || user.data?.is_evaluator"
</a> :href="cls.start_url"
<a target="_blank"
v-if="cls.date <= dayjs().format('YYYY-MM-DD')" class="w-1/2 cursor-pointer inline-flex items-center justify-center gap-2 transition-colors focus:outline-none text-gray-800 bg-gray-100 hover:bg-gray-200 active:bg-gray-300 focus-visible:ring focus-visible:ring-gray-400 h-7 text-base px-2 rounded"
:href="cls.join_url" >
target="_blank" <Monitor class="h-4 w-4 stroke-1.5" />
class="w-full cursor-pointer inline-flex items-center justify-center gap-2 transition-colors focus:outline-none text-gray-800 bg-gray-100 hover:bg-gray-200 active:bg-gray-300 focus-visible:ring focus-visible:ring-gray-400 h-7 text-base px-2 rounded" {{ __('Start') }}
> </a>
<Video class="h-4 w-4 stroke-1.5" /> <a
{{ __('Join') }} :href="cls.join_url"
</a> target="_blank"
class="w-full cursor-pointer inline-flex items-center justify-center gap-2 transition-colors focus:outline-none text-gray-800 bg-gray-100 hover:bg-gray-200 active:bg-gray-300 focus-visible:ring focus-visible:ring-gray-400 h-7 text-base px-2 rounded"
>
<Video class="h-4 w-4 stroke-1.5" />
{{ __('Join') }}
</a>
</div>
<div v-else class="flex items-center space-x-2 text-yellow-700">
<Info class="w-4 h-4 stroke-1.5" />
<span>
{{ __('This class has ended') }}
</span>
</div>
</div> </div>
</div> </div>
</div> </div>
@@ -68,7 +78,7 @@
</template> </template>
<script setup> <script setup>
import { createListResource, Button } from 'frappe-ui' import { createListResource, Button } from 'frappe-ui'
import { Plus, Clock, Calendar, Video, Monitor } from 'lucide-vue-next' import { Plus, Clock, Calendar, Video, Monitor, Info } from 'lucide-vue-next'
import { inject } from 'vue' import { inject } from 'vue'
import LiveClassModal from '@/components/Modals/LiveClassModal.vue' import LiveClassModal from '@/components/Modals/LiveClassModal.vue'
import { ref } from 'vue' import { ref } from 'vue'
@@ -107,3 +117,15 @@ const openLiveClassModal = () => {
showLiveClassModal.value = true showLiveClassModal.value = true
} }
</script> </script>
<style>
.short-introduction {
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
text-overflow: ellipsis;
width: 100%;
overflow: hidden;
margin: 0.25rem 0 1.5rem;
line-height: 1.5;
}
</style>

View File

@@ -1,7 +1,12 @@
<template> <template>
<Dialog v-model="show" :options="{}"> <Dialog
v-model="show"
:options="{
size: 'xl',
}"
>
<template #body> <template #body>
<div class="p-5 space-y-8 text-base"> <div class="p-5 space-y-10 text-base">
<div class="flex items-center space-x-2"> <div class="flex items-center space-x-2">
<Avatar :image="student.user_image" size="3xl" /> <Avatar :image="student.user_image" size="3xl" />
<div class="space-y-1"> <div class="space-y-1">
@@ -19,13 +24,11 @@
</div> </div>
</div> </div>
<!-- Assessments --> <div class="space-y-8">
<div> <!-- Assessments -->
<div> <div class="space-y-2 text-sm">
<div <div class="flex items-center border-b pb-1 font-medium">
class="grid grid-cols-[70%,30%] border-b pl-2 pb-1 mb-2 text-xs text-gray-700 font-medium" <span class="flex-1">
>
<span>
{{ __('Assessment') }} {{ __('Assessment') }}
</span> </span>
<span> <span>
@@ -34,9 +37,9 @@
</div> </div>
<div <div
v-for="assessment in Object.keys(student.assessments)" v-for="assessment in Object.keys(student.assessments)"
class="grid grid-cols-[70%,30%] pl-2 mb-2 text-gray-700 font-medium" class="flex items-center text-gray-700 font-medium"
> >
<span> <span class="flex-1">
{{ assessment }} {{ assessment }}
</span> </span>
<span v-if="isAssignment(student.assessments[assessment])"> <span v-if="isAssignment(student.assessments[assessment])">
@@ -49,15 +52,11 @@
</span> </span>
</div> </div>
</div> </div>
</div>
<!-- Courses --> <!-- Courses -->
<div> <div class="space-y-2 text-sm">
<div> <div class="flex items-center border-b pb-1 font-medium">
<div <span class="flex-1">
class="grid grid-cols-[70%,30%] mb-2 text-xs text-gray-700 border-b pl-2 pb-1 font-medium"
>
<span>
{{ __('Courses') }} {{ __('Courses') }}
</span> </span>
<span> <span>
@@ -66,9 +65,9 @@
</div> </div>
<div <div
v-for="course in Object.keys(student.courses)" v-for="course in Object.keys(student.courses)"
class="grid grid-cols-[70%,30%] pl-2 mb-2 text-gray-700 font-medium" class="flex items-center text-gray-700 font-medium"
> >
<span> <span class="flex-1">
{{ course }} {{ course }}
</span> </span>
<span> <span>
@@ -78,16 +77,15 @@
</div> </div>
</div> </div>
<!-- <span class="mt-4"> <!-- Heatmap -->
{{ student }} <StudentHeatmap :member="student.email" :base_days="120" />
</span> -->
</div> </div>
</template> </template>
</Dialog> </Dialog>
</template> </template>
<script setup> <script setup>
import { Avatar, Badge, Dialog } from 'frappe-ui' import { Avatar, Badge, Dialog } from 'frappe-ui'
import ProgressBar from '@/components/ProgressBar.vue' import StudentHeatmap from '@/components/StudentHeatmap.vue'
const show = defineModel() const show = defineModel()
const props = defineProps({ const props = defineProps({

View File

@@ -0,0 +1,138 @@
<template>
<div v-if="heatmap.data">
<div class="text-lg font-semibold mb-2">
{{ heatmap.data.total_activities }}
{{
heatmap.data.total_activities > 1 ? __('activities') : __('activity')
}}
{{ __('in the last') }}
{{ heatmap.data.weeks }}
{{ __('weeks') }}
</div>
<ApexChart :options="chartOptions" :series="chartSeries" height="240" />
</div>
</template>
<script setup>
import { createResource } from 'frappe-ui'
import { computed, inject, onMounted, ref, watch } from 'vue'
import ApexChart from 'vue3-apexcharts'
import { theme } from '@/utils/theme'
const user = inject('$user')
const labels = ref([])
const memberName = ref(null)
const props = defineProps({
member: {
type: String,
},
base_days: {
type: Number,
default: 200,
},
})
onMounted(() => {
memberName.value = props.member || user.data?.name
})
const heatmap = createResource({
url: 'lms.lms.api.get_heatmap_data',
makeParams(values) {
return {
member: values.member,
base_days: props.base_days,
}
},
auto: false,
cache: ['heatmap', memberName.value],
})
watch(memberName, (newVal) => {
heatmap.reload(
{
member: newVal,
},
{
onSuccess(data) {
labels.value = data.labels
},
}
)
})
const chartOptions = computed(() => {
return {
chart: {
type: 'heatmap',
toolbar: {
show: false,
},
},
highlightOnHover: false,
grid: {
show: false,
},
plotOptions: {
heatmap: {
radius: 8,
shadeIntensity: 0.2,
enableShades: true,
colorScale: {
ranges: [
{ from: 0, to: 0, color: theme.colors.gray[400] },
{ from: 1, to: 5, color: theme.colors.green[200] },
{ from: 6, to: 15, color: theme.colors.green[500] },
{ from: 16, to: 30, color: theme.colors.green[700] },
{ from: 31, to: 100, color: theme.colors.green[800] },
],
},
},
},
dataLabels: {
enabled: false,
},
xaxis: {
type: 'category',
categories: labels.value,
position: 'top',
axisBorder: {
show: false,
},
axisTicks: {
show: false,
},
tooltip: {
enabled: false,
},
},
yaxis: {
type: 'category',
categories: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'],
reversed: true,
tooltip: {
enabled: false,
},
},
tooltip: {
custom: ({ series, seriesIndex, dataPointIndex, w }) => {
return `<div class="text-xs bg-gray-900 text-white font-medium p-1">
<div class="text-center">${heatmap.data.heatmap_data[seriesIndex].data[dataPointIndex].label}</div>
</div>`
},
},
}
})
const chartSeries = computed(() => {
if (!heatmap.data) return []
let series = heatmap.data.heatmap_data.map((row) => {
return {
name: row.name,
data: row.data.map((value) => value.count),
}
})
return series
})
</script>

View File

@@ -1,10 +1,12 @@
<template> <template>
<div class="mb-10"> <div>
<Button v-if="isStudent" @click="openEvalModal" class="float-right"> <div class="flex items-center justify-between mb-4">
{{ __('Schedule Evaluation') }} <div class="text-lg font-semibold">
</Button> {{ __('Upcoming Evaluations') }}
<div class="text-lg font-semibold mb-4"> </div>
{{ __('Upcoming Evaluations') }} <Button @click="openEvalModal">
{{ __('Schedule Evaluation') }}
</Button>
</div> </div>
<div v-if="upcoming_evals.data?.length"> <div v-if="upcoming_evals.data?.length">
<div class="grid grid-cols-2 gap-4"> <div class="grid grid-cols-2 gap-4">
@@ -67,10 +69,6 @@ const props = defineProps({
type: Array, type: Array,
default: [], default: [],
}, },
isStudent: {
type: Boolean,
default: false,
},
endDate: { endDate: {
type: String, type: String,
default: null, default: null,

View File

@@ -1,32 +1,33 @@
<template> <template>
<div v-if="badge.doc"> <div v-if="badge.data">
<div class="p-5 flex flex-col items-center mt-40"> <div class="p-5 flex flex-col items-center mt-40">
<div class="text-3xl font-semibold"> <div class="text-3xl font-semibold">
{{ badge.doc.title }} {{ badge.data.badge }}
</div> </div>
<img :src="badge.doc.image" :alt="badge.doc.title" class="h-60 mt-2" /> <img
<div class="text-lg"> :src="badge.data.badge_image"
:alt="badge.data.badge"
class="h-60 mt-2"
/>
<div class="">
{{ {{
__('This badge has been awarded to {0} on {1}.').format( __('This badge has been awarded to {0} on {1}.').format(
userName, badge.data.member_name,
dayjs(issuedOn.data?.issued_on).format('DD MMM YYYY') dayjs(badge.data.issued_on).format('DD MMM YYYY')
) )
}} }}
</div> </div>
<div class="text-lg mt-2"> <div class="mt-2">
{{ badge.doc.description }} {{ badge.data.badge_description }}
</div> </div>
</div> </div>
</div> </div>
</template> </template>
<script setup> <script setup>
import { createDocumentResource, createResource, Breadcrumbs } from 'frappe-ui' import { createDocumentResource, createResource } from 'frappe-ui'
import { computed, inject } from 'vue' import { computed, inject } from 'vue'
import { useRouter } from 'vue-router'
const allUsers = inject('$allUsers')
const dayjs = inject('$dayjs') const dayjs = inject('$dayjs')
const router = useRouter()
const props = defineProps({ const props = defineProps({
badgeName: { badgeName: {
@@ -39,33 +40,15 @@ const props = defineProps({
}, },
}) })
const badge = createDocumentResource({ const badge = createResource({
doctype: 'LMS Badge', url: 'frappe.client.get',
name: props.badgeName,
})
const userName = computed(() => {
const user = Object.values(allUsers.data).find(
(user) => user.name === props.email
)
return user ? user.full_name : props.email
})
const issuedOn = createResource({
url: 'frappe.client.get_value',
makeParams(values) { makeParams(values) {
return { return {
doctype: 'LMS Badge Assignment', doctype: 'LMS Badge Assignment',
filters: { filters: {
member: props.email,
badge: props.badgeName, badge: props.badgeName,
member: props.email,
}, },
fieldname: 'issued_on',
}
},
onSuccess(data) {
if (!data.issued_on) {
router.push({ name: 'Courses' })
} }
}, },
auto: true, auto: true,
@@ -77,11 +60,11 @@ const breadcrumbs = computed(() => {
label: 'Badges', label: 'Badges',
}, },
{ {
label: badge.doc.title, label: badge.data.badge,
route: { route: {
name: 'Badge', name: 'Badge',
params: { params: {
badge: badge.doc.name, badge: badge.data.badge,
}, },
}, },
}, },

View File

@@ -89,10 +89,10 @@
</Tabs> </Tabs>
</div> </div>
<div class="p-5"> <div class="p-5">
<div class="text-xl font-semibold mb-2"> <div class="text-gray-700 font-semibold mb-4">
{{ batch.data.title }} {{ __('About this batch') }}:
</div> </div>
<div v-html="batch.data.description" class="leading-5 mb-2"></div> <div v-html="batch.data.description" class="leading-5 mb-4"></div>
<div class="flex items-center avatar-group overlap mb-5"> <div class="flex items-center avatar-group overlap mb-5">
<div <div

View File

@@ -28,9 +28,7 @@
size="lg" size="lg"
> >
{{ program.members }} {{ program.members }}
{{ {{ program.members == 1 ? __('member') : __('members') }}
program.members == 1 ? __(singularize('members')) : __('members')
}}
</Badge> </Badge>
<Badge <Badge
v-if="program.progress" v-if="program.progress"
@@ -133,7 +131,7 @@ import { computed, inject, onMounted, ref } from 'vue'
import { BookOpen, Edit, Plus, LockKeyhole } from 'lucide-vue-next' import { BookOpen, Edit, Plus, LockKeyhole } from 'lucide-vue-next'
import CourseCard from '@/components/CourseCard.vue' import CourseCard from '@/components/CourseCard.vue'
import { useRouter } from 'vue-router' import { useRouter } from 'vue-router'
import { showToast, singularize } from '@/utils' import { showToast } from '@/utils'
import { useSettings } from '@/stores/settings' import { useSettings } from '@/stores/settings'
const user = inject('$user') const user = inject('$user')

View File

@@ -228,8 +228,7 @@ router.beforeEach(async (to, from, next) => {
isLoggedIn && isLoggedIn &&
(to.name == 'Lesson' || (to.name == 'Lesson' ||
to.name == 'Batch' || to.name == 'Batch' ||
to.name == 'Notifications' || to.name == 'Notifications')
to.name == 'Badge')
) { ) {
await allUsers.promise await allUsers.promise
} }

View File

@@ -66,6 +66,7 @@ export class Assignment {
return return
} }
const app = createApp(AssessmentPlugin, { const app = createApp(AssessmentPlugin, {
type: 'assignment',
onAddition: (assignment) => { onAddition: (assignment) => {
this.data.assignment = assignment this.data.assignment = assignment
this.renderAssignment(assignment) this.renderAssignment(assignment)

View File

@@ -64,6 +64,7 @@ export class Quiz {
return return
} }
const app = createApp(AssessmentPlugin, { const app = createApp(AssessmentPlugin, {
type: 'quiz',
onAddition: (quiz) => { onAddition: (quiz) => {
this.data.quiz = quiz this.data.quiz = quiz
this.renderQuiz(quiz) this.renderQuiz(quiz)

View File

@@ -0,0 +1,5 @@
import resolveConfig from 'tailwindcss/resolveConfig'
import tailwindConfig from 'tailwind.config.js'
export const config = resolveConfig(tailwindConfig)
export const theme = config.theme

View File

@@ -17,6 +17,7 @@ export default defineConfig({
resolve: { resolve: {
alias: { alias: {
'@': path.resolve(__dirname, 'src'), '@': path.resolve(__dirname, 'src'),
'tailwind.config.js': path.resolve(__dirname, 'tailwind.config.js'),
}, },
}, },
build: { build: {
@@ -36,6 +37,11 @@ export default defineConfig({
}, },
}, },
optimizeDeps: { optimizeDeps: {
include: ['frappe-ui > feather-icons', 'showdown', 'engine.io-client'], include: [
'feather-icons',
'showdown',
'engine.io-client',
'tailwind.config.js',
],
}, },
}) })

View File

@@ -1 +1 @@
__version__ = "2.18.0" __version__ = "2.19.0"

View File

@@ -13,7 +13,17 @@ from frappe.translate import get_all_translations
from frappe import _ from frappe import _
from frappe.query_builder import DocType from frappe.query_builder import DocType
from frappe.query_builder.functions import Count from frappe.query_builder.functions import Count
from frappe.utils import time_diff, now_datetime, get_datetime, flt from frappe.utils import (
time_diff,
now_datetime,
get_datetime,
cint,
flt,
now,
add_days,
format_date,
date_diff,
)
from typing import Optional from typing import Optional
from lms.lms.utils import get_average_rating, get_lesson_count from lms.lms.utils import get_average_rating, get_lesson_count
from xml.dom.minidom import parseString from xml.dom.minidom import parseString
@@ -594,7 +604,7 @@ def get_categories(doctype, filters):
def get_members(start=0, search=""): def get_members(start=0, search=""):
"""Get members for the given search term and start index. """Get members for the given search term and start index.
Args: start (int): Start index for the query. Args: start (int): Start index for the query.
search (str): Search term to filter the results. search (str): Search term to filter the results.
Returns: List of members. Returns: List of members.
""" """
@@ -1043,3 +1053,121 @@ def mark_lesson_progress(course, chapter_number, lesson_number):
"Lesson Reference", {"parent": chapter_name, "idx": lesson_number}, "lesson" "Lesson Reference", {"parent": chapter_name, "idx": lesson_number}, "lesson"
) )
save_progress(lesson_name, course) save_progress(lesson_name, course)
@frappe.whitelist()
def get_heatmap_data(member=None, base_days=200):
if not member:
member = frappe.session.user
base_date, start_date, number_of_days, days = calculate_date_ranges(base_days)
date_count = initialize_date_count(days)
lesson_completions, quiz_submissions, assignment_submissions = fetch_activity_data(
member, start_date
)
count_dates(lesson_completions, date_count)
count_dates(quiz_submissions, date_count)
count_dates(assignment_submissions, date_count)
heatmap_data, labels, total_activities, weeks = prepare_heatmap_data(
start_date, number_of_days, date_count
)
return {
"heatmap_data": heatmap_data,
"labels": labels,
"total_activities": total_activities,
"weeks": weeks,
}
def calculate_date_ranges(base_days):
today = format_date(now(), "YYYY-MM-dd")
day_today = get_datetime(today).strftime("%w")
padding_end = 6 - cint(day_today)
base_date = add_days(today, -base_days)
day_of_base_date = cint(get_datetime(base_date).strftime("%w"))
start_date = add_days(base_date, -day_of_base_date)
number_of_days = base_days + day_of_base_date + padding_end
days = [add_days(start_date, i) for i in range(number_of_days + 1)]
return base_date, start_date, number_of_days, days
def initialize_date_count(days):
return {format_date(day, "YYYY-MM-dd"): 0 for day in days}
def fetch_activity_data(member, start_date):
lesson_completions = frappe.get_all(
"LMS Course Progress",
fields=["creation"],
filters={"member": member, "creation": [">=", start_date]},
)
quiz_submissions = frappe.get_all(
"LMS Quiz Submission",
fields=["creation"],
filters={"member": member, "creation": [">=", start_date]},
)
assignment_submissions = frappe.get_all(
"LMS Assignment Submission",
fields=["creation"],
filters={"member": member, "creation": [">=", start_date]},
)
return lesson_completions, quiz_submissions, assignment_submissions
def count_dates(data, date_count):
for entry in data:
date = format_date(entry.creation, "YYYY-MM-dd")
if date in date_count:
date_count[date] += 1
def prepare_heatmap_data(start_date, number_of_days, date_count):
days_of_week = ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"]
heatmap_data = {day: [] for day in days_of_week}
week_count = -(number_of_days // -7)
labels = [None] * week_count
last_seen_month = None
sorted_dates = sorted(date_count.keys())
for date in sorted_dates:
activity_count = date_count[date]
day_of_week = get_datetime(date).strftime("%a")
current_month = get_datetime(date).strftime("%b")
column_index = get_week_difference(start_date, date)
if 0 <= column_index < week_count:
heatmap_data[day_of_week].append(
{
"date": date,
"count": activity_count,
"label": f"{activity_count} activities on {format_date(date, 'dd MMM')}",
}
)
if last_seen_month != current_month:
labels[column_index] = current_month
last_seen_month = current_month
for (index, label) in enumerate(labels):
if not label:
labels[index] = ""
formatted_heatmap_data = [
{"name": day, "data": heatmap_data[day]} for day in days_of_week
]
total_activities = sum(date_count.values())
return formatted_heatmap_data, labels, total_activities, week_count
def get_week_difference(start_date, current_date):
diff_in_days = date_diff(current_date, start_date)
return diff_in_days // 7

View File

@@ -10,5 +10,11 @@ frappe.ui.form.on("LMS Badge Assignment", {
}, },
}; };
}); });
if (frm.doc.name)
frm.add_web_link(
`/badges/${frm.doc.badge}/${frm.doc.member}`,
"See on Website"
);
}, },
}); });

View File

@@ -6,6 +6,7 @@
"engine": "InnoDB", "engine": "InnoDB",
"field_order": [ "field_order": [
"member", "member",
"member_name",
"issued_on", "issued_on",
"column_break_ugix", "column_break_ugix",
"badge", "badge",
@@ -57,11 +58,18 @@
"label": "Badge Description", "label": "Badge Description",
"read_only": 1, "read_only": 1,
"reqd": 1 "reqd": 1
},
{
"fetch_from": "member.full_name",
"fieldname": "member_name",
"fieldtype": "Data",
"label": "Member Name",
"read_only": 1
} }
], ],
"index_web_pages_for_search": 1, "index_web_pages_for_search": 1,
"links": [], "links": [],
"modified": "2024-05-13 20:16:00.191517", "modified": "2025-01-06 12:32:28.450028",
"modified_by": "Administrator", "modified_by": "Administrator",
"module": "LMS", "module": "LMS",
"name": "LMS Badge Assignment", "name": "LMS Badge Assignment",

View File

@@ -132,13 +132,13 @@
}, },
{ {
"fieldname": "duration", "fieldname": "duration",
"fieldtype": "Duration", "fieldtype": "Data",
"label": "Duration" "label": "Duration (in minutes)"
} }
], ],
"index_web_pages_for_search": 1, "index_web_pages_for_search": 1,
"links": [], "links": [],
"modified": "2024-10-11 22:39:40.381183", "modified": "2025-01-06 11:02:09.749207",
"modified_by": "Administrator", "modified_by": "Administrator",
"module": "LMS", "module": "LMS",
"name": "LMS Quiz", "name": "LMS Quiz",

View File

@@ -1030,6 +1030,7 @@ def get_course_details(course):
course_details.tags = course_details.tags.split(",") if course_details.tags else [] course_details.tags = course_details.tags.split(",") if course_details.tags else []
course_details.instructors = get_instructors(course_details.name) course_details.instructors = get_instructors(course_details.name)
# course_details.is_instructor = is_instructor(course_details.name)
if course_details.paid_course: if course_details.paid_course:
"""course_details.course_price, course_details.currency = check_multicurrency( """course_details.course_price, course_details.currency = check_multicurrency(
course_details.course_price, course_details.currency, None, course_details.amount_usd course_details.course_price, course_details.currency, None, course_details.amount_usd
@@ -1048,7 +1049,6 @@ def get_course_details(course):
["name", "course", "current_lesson", "progress", "member"], ["name", "course", "current_lesson", "progress", "member"],
as_dict=1, as_dict=1,
) )
course_details.is_instructor = is_instructor(course_details.name)
if course_details.membership and course_details.membership.current_lesson: if course_details.membership and course_details.membership.current_lesson:
course_details.current_lesson = get_lesson_index( course_details.current_lesson = get_lesson_index(
@@ -1219,12 +1219,50 @@ def get_batches():
batch_list = frappe.get_all("LMS Batch", filters) batch_list = frappe.get_all("LMS Batch", filters)
for batch in batch_list: for batch in batch_list:
batches.append(get_batch_details(batch.name)) batches.append(get_batch_card_details(batch.name))
batches = categorize_batches(batches) batches = categorize_batches(batches)
return batches return batches
def get_batch_card_details(batchname):
batch = frappe.db.get_value(
"LMS Batch",
batchname,
[
"name",
"title",
"description",
"seat_count",
"paid_batch",
"amount",
"amount_usd",
"currency",
"start_date",
"end_date",
"start_time",
"end_time",
"timezone",
"published",
],
as_dict=True,
)
batch.instructors = get_instructors(batchname)
students_count = frappe.db.count("Batch Student", {"parent": batchname})
if batch.seat_count:
batch.seats_left = batch.seat_count - students_count
if batch.paid_batch and batch.start_date >= getdate():
batch.amount, batch.currency = check_multicurrency(
batch.amount, batch.currency, None, batch.amount_usd
)
batch.price = fmt_money(batch.amount, 0, batch.currency)
return batch
@frappe.whitelist(allow_guest=True) @frappe.whitelist(allow_guest=True)
def get_batch_details(batch): def get_batch_details(batch):
batch_details = frappe.db.get_value( batch_details = frappe.db.get_value(
@@ -1499,7 +1537,7 @@ def get_batch_students(batch):
detail.progress = 0 detail.progress = 0
students.append(detail) students.append(detail)
students = sorted(students, key=lambda x: x.progress, reverse=True)
return students return students
@@ -1750,31 +1788,31 @@ def enroll_in_batch(batch, payment_name=None):
if not frappe.db.exists( if not frappe.db.exists(
"Batch Student", {"parent": batch, "student": frappe.session.user} "Batch Student", {"parent": batch, "student": frappe.session.user}
): ):
student = frappe.new_doc("Batch Student") batch_doc = frappe.get_doc("LMS Batch", batch)
current_count = frappe.db.count("Batch Student", {"parent": batch}) if batch_doc.seat_count and len(batch_doc.students) >= batch_doc.seat_count:
frappe.throw(_("The batch is full. Please contact the Administrator."))
student.update( new_student = {
{ "student": frappe.session.user,
"student": frappe.session.user, "parent": batch,
"parent": batch, "parenttype": "LMS Batch",
"parenttype": "LMS Batch", "parentfield": "students",
"parentfield": "students", "idx": len(batch_doc.students) + 1,
"idx": current_count + 1, }
}
)
if payment_name: if payment_name:
payment = frappe.db.get_value( payment = frappe.db.get_value(
"LMS Payment", payment_name, ["name", "source"], as_dict=True "LMS Payment", payment_name, ["name", "source"], as_dict=True
) )
student.update( new_student.update(
{ {
"payment": payment.name, "payment": payment.name,
"source": payment.source, "source": payment.source,
} }
) )
student.save(ignore_permissions=True) batch_doc.append("students", new_student)
batch_doc.save(ignore_permissions=True)
@frappe.whitelist() @frappe.whitelist()

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-12-27 16:04+0000\n" "POT-Creation-Date: 2025-01-03 16:04+0000\n"
"PO-Revision-Date: 2024-12-31 03:29\n" "PO-Revision-Date: 2025-01-07 04:09\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"
@@ -156,7 +156,7 @@ msgstr ""
msgid "Add a new question" msgid "Add a new question"
msgstr "" msgstr ""
#: frontend/src/components/QuizPlugin.vue:11 #: frontend/src/components/AssessmentPlugin.vue:11
msgid "Add a quiz to your lesson" msgid "Add a quiz to your lesson"
msgstr "" msgstr ""
@@ -164,6 +164,10 @@ msgstr ""
msgid "Add an assessment" msgid "Add an assessment"
msgstr "" msgstr ""
#: frontend/src/components/AssessmentPlugin.vue:14
msgid "Add an assignment to your lesson"
msgstr ""
#: frontend/src/components/Modals/Question.vue:18 #: frontend/src/components/Modals/Question.vue:18
msgid "Add an existing question" msgid "Add an existing question"
msgstr "" msgstr ""
@@ -176,7 +180,7 @@ msgstr ""
msgid "Add web page to sidebar" msgid "Add web page to sidebar"
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:44 #: frontend/src/components/Assignment.vue:65
msgid "Add your assignment as {0}" msgid "Add your assignment as {0}"
msgstr "" msgstr ""
@@ -393,6 +397,8 @@ msgstr "عين"
#. Label of the section_break_16 (Section Break) field in DocType 'Course #. Label of the section_break_16 (Section Break) field in DocType 'Course
#. Lesson' #. Lesson'
#. Label of the assignment (Link) field in DocType 'LMS Assignment Submission' #. Label of the assignment (Link) field in DocType 'LMS Assignment Submission'
#: frontend/src/pages/AssignmentSubmissionList.vue:12
#: frontend/src/utils/assignment.js:25
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/templates/assignment.html:3 #: lms/templates/assignment.html:3
@@ -417,15 +423,23 @@ msgstr ""
msgid "Assignment Title" msgid "Assignment Title"
msgstr "" msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:31 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:33
msgid "Assignment for Lesson {0} by {1} already exists." msgid "Assignment for Lesson {0} by {1} already exists."
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentForm.vue:155
msgid "Assignment saved successfully"
msgstr ""
#. Description of the 'Question' (Small Text) field in DocType 'Course Lesson' #. Description of the 'Question' (Small Text) field in DocType 'Course Lesson'
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Assignment will appear at the bottom of the lesson." msgid "Assignment will appear at the bottom of the lesson."
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentForm.vue:174
msgid "Assignments"
msgstr "تعيينات"
#: lms/lms/doctype/lms_question/lms_question.py:43 #: lms/lms/doctype/lms_question/lms_question.py:43
msgid "At least one option must be correct for this question." msgid "At least one option must be correct for this question."
msgstr "" msgstr ""
@@ -746,6 +760,10 @@ msgstr ""
msgid "Change" msgid "Change"
msgstr "تغيير" msgstr "تغيير"
#: frontend/src/components/Assignment.vue:316
msgid "Changes saved successfully"
msgstr ""
#. Label of the chapter (Link) field in DocType 'Chapter Reference' #. Label of the chapter (Link) field in DocType 'Chapter Reference'
#. Label of the chapter (Link) field in DocType 'LMS Course Progress' #. Label of the chapter (Link) field in DocType 'LMS Course Progress'
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
@@ -774,7 +792,7 @@ msgstr ""
msgid "Chapters" msgid "Chapters"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:201 lms/templates/quiz/quiz.html:120 #: frontend/src/components/Quiz.vue:203 lms/templates/quiz/quiz.html:120
msgid "Check" msgid "Check"
msgstr "التحقق من" msgstr "التحقق من"
@@ -797,7 +815,7 @@ msgstr ""
msgid "Choices" msgid "Choices"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:581 lms/templates/quiz/quiz.html:53 #: frontend/src/components/Quiz.vue:587 lms/templates/quiz/quiz.html:53
msgid "Choose all answers that apply" msgid "Choose all answers that apply"
msgstr "" msgstr ""
@@ -805,7 +823,7 @@ msgstr ""
msgid "Choose an icon" msgid "Choose an icon"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:582 lms/templates/quiz/quiz.html:53 #: frontend/src/components/Quiz.vue:588 lms/templates/quiz/quiz.html:53
msgid "Choose one answer" msgid "Choose one answer"
msgstr "" msgstr ""
@@ -814,12 +832,16 @@ msgstr ""
msgid "City" msgid "City"
msgstr "مدينة" msgstr "مدينة"
#: frontend/src/components/Controls/Link.vue:49
msgid "Clear"
msgstr "واضح"
#. Option for the 'Role Preference' (Select) field in DocType 'User' #. Option for the 'Role Preference' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
msgid "Clearly Defined Role" msgid "Clearly Defined Role"
msgstr "" msgstr ""
#: frontend/src/components/LessonHelp.vue:15 #: frontend/src/components/LessonHelp.vue:30
msgid "Click on the add icon in the editor and select Quiz from the menu. It opens up a dialog, where you can either select a quiz from the list or create a new quiz. When you select the Create New option it redirects you to the quiz creation page." msgid "Click on the add icon in the editor and select Quiz from the menu. It opens up a dialog, where you can either select a quiz from the list or create a new quiz. When you select the Create New option it redirects you to the quiz creation page."
msgstr "" msgstr ""
@@ -917,6 +939,7 @@ msgstr "اللون"
#. Label of the comments (Small Text) field in DocType 'LMS Assignment #. Label of the comments (Small Text) field in DocType 'LMS Assignment
#. Submission' #. Submission'
#. Label of the comments (Small Text) field in DocType 'LMS Mentor Request' #. Label of the comments (Small Text) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Assignment.vue:161
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
#: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
@@ -924,6 +947,10 @@ msgstr "اللون"
msgid "Comments" msgid "Comments"
msgstr "تعليقات" msgstr "تعليقات"
#: frontend/src/components/Assignment.vue:139
msgid "Comments by Evaluator"
msgstr ""
#. Label of the company (Data) field in DocType 'LMS Job Application' #. Label of the company (Data) field in DocType 'LMS Job Application'
#. Label of the company (Data) field in DocType 'Work Experience' #. Label of the company (Data) field in DocType 'Work Experience'
#: lms/job/doctype/lms_job_application/lms_job_application.json #: lms/job/doctype/lms_job_application/lms_job_application.json
@@ -986,7 +1013,7 @@ msgstr ""
msgid "Completed" msgid "Completed"
msgstr "أكتمل" msgstr "أكتمل"
#: frontend/src/components/BatchStudents.vue:325 #: frontend/src/components/BatchStudents.vue:353
msgid "Completed by Students" msgid "Completed by Students"
msgstr "" msgstr ""
@@ -1036,7 +1063,7 @@ msgid "Continue Learning"
msgstr "" msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:117 #: frontend/src/pages/Jobs.vue:120
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Contract" msgid "Contract"
msgstr "عقد" msgstr "عقد"
@@ -1045,7 +1072,7 @@ msgstr "عقد"
msgid "Cookie Policy" msgid "Cookie Policy"
msgstr "" msgstr ""
#: frontend/src/components/LessonHelp.vue:53 #: frontend/src/components/LessonHelp.vue:68
msgid "Copy the URL of the video from YouTube and paste it in the editor." msgid "Copy the URL of the video from YouTube and paste it in the editor."
msgstr "" msgstr ""
@@ -1057,7 +1084,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Exercise Latest #. Option for the 'Status' (Select) field in DocType 'Exercise Latest
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'Exercise Submission' #. Option for the 'Status' (Select) field in DocType 'Exercise Submission'
#: frontend/src/components/Quiz.vue:161 #: frontend/src/components/Quiz.vue:163
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
#: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json
msgid "Correct" msgid "Correct"
@@ -1197,7 +1224,7 @@ msgstr ""
msgid "Course Name" msgid "Course Name"
msgstr "" msgstr ""
#: frontend/src/pages/CourseDetail.vue:74 #: frontend/src/pages/CourseDetail.vue:76
msgid "Course Outline" msgid "Course Outline"
msgstr "" msgstr ""
@@ -1322,6 +1349,10 @@ msgstr ""
msgid "Create a new question" msgid "Create a new question"
msgstr "" msgstr ""
#: frontend/src/pages/Assignments.vue:163
msgid "Created"
msgstr "أنشأ"
#. Label of the currency (Link) field in DocType 'Web Form' #. Label of the currency (Link) field in DocType 'Web Form'
#. Label of the currency (Link) field in DocType 'LMS Batch' #. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course' #. Label of the currency (Link) field in DocType 'LMS Course'
@@ -1487,8 +1518,8 @@ msgid "Desk"
msgstr "" msgstr ""
#: frontend/src/components/Modals/DiscussionModal.vue:22 #: frontend/src/components/Modals/DiscussionModal.vue:22
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:28 #: frontend/src/pages/AssignmentForm.vue:27 frontend/src/pages/BatchForm.vue:14
#: frontend/src/pages/QuizForm.vue:42 #: frontend/src/pages/CourseForm.vue:28 frontend/src/pages/QuizForm.vue:42
msgid "Details" msgid "Details"
msgstr "تفاصيل" msgstr "تفاصيل"
@@ -1619,6 +1650,10 @@ msgstr "إرسال البريد الإلكتروني"
msgid "Email Templates" msgid "Email Templates"
msgstr "" msgstr ""
#: frontend/src/components/BatchStudents.vue:409
msgid "Email copied to clipboard"
msgstr ""
#. Label of the show_emails (Check) field in DocType 'LMS Settings' #. Label of the show_emails (Check) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Emails" msgid "Emails"
@@ -1699,8 +1734,8 @@ msgid "Enroll Now"
msgstr "" msgstr ""
#: frontend/src/components/CourseCard.vue:43 #: frontend/src/components/CourseCard.vue:43
#: frontend/src/components/CourseCardOverlay.vue:103 #: frontend/src/components/CourseCardOverlay.vue:104
#: frontend/src/pages/CourseDetail.vue:31 #: frontend/src/pages/CourseDetail.vue:33
msgid "Enrolled Students" msgid "Enrolled Students"
msgstr "" msgstr ""
@@ -1717,7 +1752,7 @@ msgstr ""
msgid "Enrollment Count" msgid "Enrollment Count"
msgstr "" msgstr ""
#: lms/lms/utils.py:1720 #: lms/lms/utils.py:1726
msgid "Enrollment Failed" msgid "Enrollment Failed"
msgstr "" msgstr ""
@@ -1733,7 +1768,7 @@ msgstr ""
msgid "Enter Client Id and Client Secret in Google Settings to send calendar invites for evaluations." msgid "Enter Client Id and Client Secret in Google Settings to send calendar invites for evaluations."
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:96 #: frontend/src/components/Assignment.vue:110
msgid "Enter a URL" msgid "Enter a URL"
msgstr "" msgstr ""
@@ -1745,6 +1780,7 @@ msgstr ""
msgid "Enter the correct answer" msgid "Enter the correct answer"
msgstr "" msgstr ""
#: frontend/src/components/Assignment.vue:268
#: frontend/src/components/Modals/AnnouncementModal.vue:105 #: frontend/src/components/Modals/AnnouncementModal.vue:105
#: frontend/src/components/Modals/BulkCertificates.vue:115 #: frontend/src/components/Modals/BulkCertificates.vue:115
#: frontend/src/components/Modals/ChapterModal.vue:159 #: frontend/src/components/Modals/ChapterModal.vue:159
@@ -1755,8 +1791,9 @@ msgstr ""
#: frontend/src/components/Modals/Question.vue:326 #: frontend/src/components/Modals/Question.vue:326
#: frontend/src/components/Modals/StudentModal.vue:69 #: frontend/src/components/Modals/StudentModal.vue:69
#: frontend/src/components/SettingDetails.vue:62 #: frontend/src/components/SettingDetails.vue:62
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350 #: frontend/src/pages/AssignmentForm.vue:139
#: frontend/src/pages/QuizForm.vue:365 #: frontend/src/pages/AssignmentForm.vue:159 frontend/src/pages/Billing.vue:264
#: frontend/src/pages/QuizForm.vue:346 frontend/src/pages/QuizForm.vue:361
#: frontend/src/pages/QuizSubmission.vue:141 #: frontend/src/pages/QuizSubmission.vue:141
msgid "Error" msgid "Error"
msgstr "خطأ" msgstr "خطأ"
@@ -1919,7 +1956,7 @@ msgstr ""
msgid "Featured" msgid "Featured"
msgstr "متميز" msgstr "متميز"
#: frontend/src/pages/AssignmentSubmission.vue:21 #: frontend/src/components/Assignment.vue:61
msgid "Feel free to make edits to your submission if needed." msgid "Feel free to make edits to your submission if needed."
msgstr "" msgstr ""
@@ -1938,6 +1975,10 @@ msgstr ""
msgid "File Type" msgid "File Type"
msgstr "نوع الملف" msgstr "نوع الملف"
#: frontend/src/pages/Jobs.vue:47
msgid "Find the perfect job for you"
msgstr ""
#: frontend/src/components/Members.vue:38 #: frontend/src/components/Members.vue:38
#: frontend/src/components/Modals/EditProfile.vue:59 #: frontend/src/components/Modals/EditProfile.vue:59
msgid "First Name" msgid "First Name"
@@ -1953,7 +1994,7 @@ msgstr ""
msgid "Flexible Time" msgid "Flexible Time"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:463 #: frontend/src/pages/QuizForm.vue:459
msgid "Form to create and edit quizzes" msgid "Form to create and edit quizzes"
msgstr "" msgstr ""
@@ -1967,7 +2008,7 @@ msgid "Free"
msgstr "" msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:118 #: frontend/src/pages/Jobs.vue:121
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Freelance" msgid "Freelance"
msgstr "" msgstr ""
@@ -2009,7 +2050,7 @@ msgid "Full Name"
msgstr "الاسم الكامل" msgstr "الاسم الكامل"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:115 #: frontend/src/pages/Jobs.vue:118
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Full Time" msgid "Full Time"
msgstr "" msgstr ""
@@ -2069,6 +2110,7 @@ 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:154
#: lms/lms/doctype/education_detail/education_detail.json #: lms/lms/doctype/education_detail/education_detail.json
msgid "Grade" msgid "Grade"
msgstr "" msgstr ""
@@ -2083,6 +2125,10 @@ msgstr ""
msgid "Grade Type" msgid "Grade Type"
msgstr "" msgstr ""
#: frontend/src/components/Assignment.vue:149
msgid "Grading"
msgstr ""
#. Label of the grant_only_once (Check) field in DocType 'LMS Badge' #. Label of the grant_only_once (Check) field in DocType 'LMS Badge'
#: lms/lms/doctype/lms_badge/lms_badge.json #: lms/lms/doctype/lms_badge/lms_badge.json
msgid "Grant only once" msgid "Grant only once"
@@ -2146,7 +2192,7 @@ msgstr ""
msgid "Host" msgid "Host"
msgstr "" msgstr ""
#: frontend/src/components/LessonHelp.vue:9 #: frontend/src/components/LessonHelp.vue:24
msgid "How to add a Quiz?" msgid "How to add a Quiz?"
msgstr "" msgstr ""
@@ -2168,7 +2214,7 @@ msgstr ""
msgid "I am unavailable" msgid "I am unavailable"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:384 #: frontend/src/pages/QuizForm.vue:380
msgid "ID" msgid "ID"
msgstr "هوية شخصية" msgstr "هوية شخصية"
@@ -2178,7 +2224,7 @@ msgstr "هوية شخصية"
msgid "Icon" msgid "Icon"
msgstr "أيقونة" msgstr "أيقونة"
#: frontend/src/components/LessonHelp.vue:68 #: frontend/src/components/LessonHelp.vue:11
msgid "If Include in Preview is enabled for a lesson then the lesson will also be accessible to non logged in users." msgid "If Include in Preview is enabled for a lesson then the lesson will also be accessible to non logged in users."
msgstr "" msgstr ""
@@ -2261,7 +2307,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Exercise Latest #. Option for the 'Status' (Select) field in DocType 'Exercise Latest
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'Exercise Submission' #. Option for the 'Status' (Select) field in DocType 'Exercise Submission'
#: frontend/src/components/Quiz.vue:166 #: frontend/src/components/Quiz.vue:168
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
#: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json
msgid "Incorrect" msgid "Incorrect"
@@ -2469,7 +2515,7 @@ msgstr "المسمى الوظيفي"
msgid "Jobs" msgid "Jobs"
msgstr "وظائف" msgstr "وظائف"
#: frontend/src/components/LiveClass.vue:55 #: frontend/src/components/LiveClass.vue:58
#: lms/templates/upcoming_evals.html:15 #: lms/templates/upcoming_evals.html:15
msgid "Join" msgid "Join"
msgstr "انضم" msgstr "انضم"
@@ -2759,7 +2805,7 @@ msgstr ""
#. Group in Course Chapter's connections #. Group in Course Chapter's connections
#. Label of the lessons (Data) field in DocType 'LMS Course' #. Label of the lessons (Data) field in DocType 'LMS Course'
#: frontend/src/components/CourseCard.vue:34 #: frontend/src/components/CourseCard.vue:34
#: frontend/src/components/CourseCardOverlay.vue:96 #: frontend/src/components/CourseCardOverlay.vue:97
#: lms/lms/doctype/course_chapter/course_chapter.json #: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "Lessons" msgid "Lessons"
@@ -2825,6 +2871,7 @@ msgid "LiveCode URL"
msgstr "" msgstr ""
#: frontend/src/components/Members.vue:106 #: frontend/src/components/Members.vue:106
#: frontend/src/pages/Assignments.vue:71
#: frontend/src/pages/QuizSubmissionList.vue:39 #: frontend/src/pages/QuizSubmissionList.vue:39
#: frontend/src/pages/Quizzes.vue:51 #: frontend/src/pages/Quizzes.vue:51
msgid "Load More" msgid "Load More"
@@ -2854,6 +2901,7 @@ msgstr "الموقع"
msgid "Location Preference" msgid "Location Preference"
msgstr "" msgstr ""
#: frontend/src/components/AssignmentBlock.vue:13
#: frontend/src/components/NoPermission.vue:28 #: frontend/src/components/NoPermission.vue:28
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:175 #: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:175
#: frontend/src/pages/Lesson.vue:24 #: frontend/src/pages/Lesson.vue:24
@@ -2913,7 +2961,7 @@ msgstr ""
#. Label of the marks (Int) field in DocType 'LMS Quiz Result' #. Label of the marks (Int) field in DocType 'LMS Quiz Result'
#: frontend/src/components/Modals/Question.vue:50 #: frontend/src/components/Modals/Question.vue:50
#: frontend/src/components/Modals/Question.vue:99 #: frontend/src/components/Modals/Question.vue:99
#: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:394 #: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:390
#: frontend/src/pages/QuizSubmission.vue:59 #: frontend/src/pages/QuizSubmission.vue:59
#: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json #: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json
#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json
@@ -2970,6 +3018,7 @@ msgstr "متوسط:"
#. Label of the member (Link) field in DocType 'LMS Payment' #. Label of the member (Link) field in DocType 'LMS Payment'
#. Label of the member (Link) field in DocType 'LMS Program Member' #. Label of the member (Link) field in DocType 'LMS Program Member'
#. Label of the member (Link) field in DocType 'LMS Quiz Submission' #. Label of the member (Link) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/AssignmentSubmissionList.vue:14
#: frontend/src/pages/QuizSubmission.vue:31 #: frontend/src/pages/QuizSubmission.vue:31
#: frontend/src/pages/QuizSubmissionList.vue:86 #: frontend/src/pages/QuizSubmissionList.vue:86
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
@@ -3140,11 +3189,11 @@ msgstr ""
msgid "Modified By" msgid "Modified By"
msgstr "عدل من قبل" msgstr "عدل من قبل"
#: lms/lms/api.py:199 #: lms/lms/api.py:201
msgid "Module Name is incorrect or does not exist." msgid "Module Name is incorrect or does not exist."
msgstr "" msgstr ""
#: lms/lms/api.py:195 #: lms/lms/api.py:197
msgid "Module is incorrect." msgid "Module is incorrect."
msgstr "" msgstr ""
@@ -3173,12 +3222,17 @@ msgid "My calendar"
msgstr "" msgstr ""
#. Option for the 'Event' (Select) field in DocType 'LMS Badge' #. Option for the 'Event' (Select) field in DocType 'LMS Badge'
#: frontend/src/pages/Batches.vue:30 frontend/src/pages/Courses.vue:45 #: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:30
#: frontend/src/pages/Programs.vue:14 lms/lms/doctype/lms_badge/lms_badge.json #: frontend/src/pages/Courses.vue:45 frontend/src/pages/Programs.vue:14
#: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New" msgid "New"
msgstr "جديد" msgstr "جديد"
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:41 #: frontend/src/pages/AssignmentForm.vue:178
msgid "New Assignment"
msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:43
msgid "New Assignment Submission" msgid "New Assignment Submission"
msgstr "" msgstr ""
@@ -3214,7 +3268,7 @@ msgstr ""
msgid "New Question" msgid "New Question"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:454 frontend/src/pages/QuizForm.vue:462 #: frontend/src/pages/QuizForm.vue:450 frontend/src/pages/QuizForm.vue:458
#: frontend/src/pages/Quizzes.vue:18 #: frontend/src/pages/Quizzes.vue:18
msgid "New Quiz" msgid "New Quiz"
msgstr "" msgstr ""
@@ -3236,7 +3290,7 @@ msgstr ""
msgid "New {0}" msgid "New {0}"
msgstr "{0} جديد" msgstr "{0} جديد"
#: frontend/src/components/Quiz.vue:209 frontend/src/pages/Lesson.vue:84 #: frontend/src/components/Quiz.vue:211 frontend/src/pages/Lesson.vue:84
msgid "Next" msgid "Next"
msgstr "التالي" msgstr "التالي"
@@ -3244,7 +3298,7 @@ msgstr "التالي"
msgid "Next Question" msgid "Next Question"
msgstr "" msgstr ""
#: frontend/src/components/Assessments.vue:66 lms/templates/assessments.html:58 #: frontend/src/components/Assessments.vue:75 lms/templates/assessments.html:58
msgid "No Assessments" msgid "No Assessments"
msgstr "" msgstr ""
@@ -3265,6 +3319,10 @@ msgstr ""
msgid "No announcements" msgid "No announcements"
msgstr "" msgstr ""
#: frontend/src/pages/Assignments.vue:56
msgid "No assignments found"
msgstr ""
#: frontend/src/pages/Batches.vue:125 #: frontend/src/pages/Batches.vue:125
msgid "No batches found" msgid "No batches found"
msgstr "" msgstr ""
@@ -3293,11 +3351,11 @@ msgstr ""
msgid "No introduction" msgid "No introduction"
msgstr "" msgstr ""
#: frontend/src/pages/Jobs.vue:60 #: frontend/src/pages/Jobs.vue:63
msgid "No jobs posted" msgid "No jobs posted"
msgstr "" msgstr ""
#: frontend/src/components/LiveClass.vue:61 #: frontend/src/components/LiveClass.vue:71
msgid "No live classes scheduled" msgid "No live classes scheduled"
msgstr "" msgstr ""
@@ -3313,6 +3371,10 @@ msgstr ""
msgid "No slots available for this date." msgid "No slots available for this date."
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmissionList.vue:67
msgid "No submissions"
msgstr ""
#: frontend/src/components/UpcomingEvaluations.vue:39 #: frontend/src/components/UpcomingEvaluations.vue:39
msgid "No upcoming evaluations." msgid "No upcoming evaluations."
msgstr "" msgstr ""
@@ -3361,6 +3423,7 @@ msgstr ""
msgid "Not Permitted" msgid "Not Permitted"
msgstr "لا يسمح" msgstr "لا يسمح"
#: frontend/src/components/Assignment.vue:33
#: frontend/src/components/BrandSettings.vue:10 #: frontend/src/components/BrandSettings.vue:10
#: frontend/src/components/PaymentSettings.vue:9 #: frontend/src/components/PaymentSettings.vue:9
#: frontend/src/components/SettingDetails.vue:10 #: frontend/src/components/SettingDetails.vue:10
@@ -3404,7 +3467,7 @@ msgstr ""
msgid "Once again, congratulations on this significant accomplishment." msgid "Once again, congratulations on this significant accomplishment."
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:17 #: frontend/src/components/Assignment.vue:57
msgid "Once the moderator grades your submission, you'll find the details here." msgid "Once the moderator grades your submission, you'll find the details here."
msgstr "" msgstr ""
@@ -3421,7 +3484,7 @@ msgstr ""
msgid "Only files of type {0} will be accepted." msgid "Only files of type {0} will be accepted."
msgstr "" msgstr ""
#: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:527 #: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:529
msgid "Only image file is allowed." msgid "Only image file is allowed."
msgstr "" msgstr ""
@@ -3550,7 +3613,7 @@ msgid "Pan Number"
msgstr "" msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:116 #: frontend/src/pages/Jobs.vue:119
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Part Time" msgid "Part Time"
msgstr "" msgstr ""
@@ -3681,7 +3744,7 @@ msgstr ""
msgid "Phone Number" msgid "Phone Number"
msgstr "رقم الهاتف" msgstr "رقم الهاتف"
#: frontend/src/components/CourseCardOverlay.vue:141 #: frontend/src/components/CourseCardOverlay.vue:145
msgid "Please Login" msgid "Please Login"
msgstr "" msgstr ""
@@ -3701,7 +3764,7 @@ msgstr "يرجى التحقق من بريدك الالكتروني للتحقق"
msgid "Please click on the following button to set your new password" msgid "Please click on the following button to set your new password"
msgstr "" msgstr ""
#: lms/lms/utils.py:1842 lms/lms/utils.py:1846 #: lms/lms/utils.py:1848 lms/lms/utils.py:1852
msgid "Please complete the previous courses in the program to enroll in this course." msgid "Please complete the previous courses in the program to enroll in this course."
msgstr "" msgstr ""
@@ -3721,8 +3784,8 @@ msgstr ""
msgid "Please enter a title." msgid "Please enter a title."
msgstr "" msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:38 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:40
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:98 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:122
msgid "Please enter a valid URL." msgid "Please enter a valid URL."
msgstr "" msgstr ""
@@ -3730,7 +3793,7 @@ msgstr ""
msgid "Please enter a valid time in the format HH:mm." msgid "Please enter a valid time in the format HH:mm."
msgstr "" msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:92 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:116
msgid "Please enter the URL for assignment submission." msgid "Please enter the URL for assignment submission."
msgstr "" msgstr ""
@@ -3750,6 +3813,10 @@ msgstr ""
msgid "Please let us know where you heard about us from." msgid "Please let us know where you heard about us from."
msgstr "" msgstr ""
#: frontend/src/components/AssignmentBlock.vue:9
msgid "Please login to access the assignment."
msgstr ""
#: frontend/src/components/QuizBlock.vue:5 #: frontend/src/components/QuizBlock.vue:5
msgid "Please login to access the quiz." msgid "Please login to access the quiz."
msgstr "" msgstr ""
@@ -3758,7 +3825,7 @@ msgstr ""
msgid "Please login to access this page." msgid "Please login to access this page."
msgstr "" msgstr ""
#: lms/lms/api.py:191 #: lms/lms/api.py:193
msgid "Please login to continue with payment." msgid "Please login to continue with payment."
msgstr "" msgstr ""
@@ -3795,7 +3862,7 @@ msgstr ""
msgid "Please upload a SCORM package" msgid "Please upload a SCORM package"
msgstr "" msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:95 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:119
msgid "Please upload the assignment file." msgid "Please upload the assignment file."
msgstr "" msgstr ""
@@ -4003,9 +4070,9 @@ msgstr "نشرت في"
#. Label of the question (Text Editor) field in DocType 'LMS Question' #. Label of the question (Text Editor) field in DocType 'LMS Question'
#. Label of the question (Link) field in DocType 'LMS Quiz Question' #. Label of the question (Link) field in DocType 'LMS Quiz Question'
#. Label of the question (Text) field in DocType 'LMS Quiz Result' #. Label of the question (Text) field in DocType 'LMS Quiz Result'
#: frontend/src/components/Assignment.vue:17
#: frontend/src/components/Modals/Question.vue:38 #: frontend/src/components/Modals/Question.vue:38
#: frontend/src/pages/AssignmentSubmission.vue:26 #: frontend/src/pages/AssignmentForm.vue:45 frontend/src/pages/QuizForm.vue:385
#: frontend/src/pages/QuizForm.vue:389
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment/lms_assignment.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
@@ -4042,7 +4109,7 @@ msgstr ""
msgid "Question {0}" msgid "Question {0}"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:186 #: frontend/src/components/Quiz.vue:188
msgid "Question {0} of {1}" msgid "Question {0} of {1}"
msgstr "" msgstr ""
@@ -4051,7 +4118,7 @@ msgstr ""
msgid "Questions" msgid "Questions"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:431 #: frontend/src/pages/QuizForm.vue:427
msgid "Questions deleted successfully" msgid "Questions deleted successfully"
msgstr "" msgstr ""
@@ -4079,7 +4146,7 @@ msgstr ""
msgid "Quiz Submissions" msgid "Quiz Submissions"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:223 #: frontend/src/components/Quiz.vue:225
msgid "Quiz Summary" msgid "Quiz Summary"
msgstr "" msgstr ""
@@ -4088,7 +4155,7 @@ msgstr ""
msgid "Quiz Title" msgid "Quiz Title"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:343 #: frontend/src/pages/QuizForm.vue:339
msgid "Quiz created successfully" msgid "Quiz created successfully"
msgstr "" msgstr ""
@@ -4096,7 +4163,7 @@ msgstr ""
msgid "Quiz is not available to Guest users. Please login to continue." msgid "Quiz is not available to Guest users. Please login to continue."
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:362 #: frontend/src/pages/QuizForm.vue:358
msgid "Quiz updated successfully" msgid "Quiz updated successfully"
msgstr "" msgstr ""
@@ -4105,7 +4172,7 @@ msgstr ""
msgid "Quiz will appear at the bottom of the lesson." msgid "Quiz will appear at the bottom of the lesson."
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:442 frontend/src/pages/Quizzes.vue:138 #: frontend/src/pages/QuizForm.vue:438 frontend/src/pages/Quizzes.vue:138
#: frontend/src/pages/Quizzes.vue:148 #: frontend/src/pages/Quizzes.vue:148
msgid "Quizzes" msgid "Quizzes"
msgstr "" msgstr ""
@@ -4113,7 +4180,7 @@ msgstr ""
#. Label of the rating (Rating) field in DocType 'LMS Certificate Evaluation' #. Label of the rating (Rating) field in DocType 'LMS Certificate Evaluation'
#. 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:108 #: frontend/src/components/CourseCardOverlay.vue:110
#: frontend/src/components/Modals/Event.vue:86 #: frontend/src/components/Modals/Event.vue:86
#: frontend/src/components/Modals/ReviewModal.vue:20 #: frontend/src/components/Modals/ReviewModal.vue:20
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -4127,10 +4194,6 @@ msgstr "تقييم"
msgid "Rating cannot be 0" msgid "Rating cannot be 0"
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:30
msgid "Read the question carefully before attempting the assignment."
msgstr ""
#. Option for the 'Stage' (Select) field in DocType 'LMS Batch Old' #. Option for the 'Stage' (Select) field in DocType 'LMS Batch Old'
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
msgid "Ready" msgid "Ready"
@@ -4309,15 +4372,15 @@ msgstr ""
msgid "Saturday" msgid "Saturday"
msgstr "السبت" msgstr "السبت"
#: frontend/src/components/AssessmentPlugin.vue:34
#: frontend/src/components/Assignment.vue:43
#: frontend/src/components/Controls/CodeEditor.vue:25 #: frontend/src/components/Controls/CodeEditor.vue:25
#: frontend/src/components/Modals/Event.vue:101 #: frontend/src/components/Modals/Event.vue:101
#: frontend/src/components/Modals/Event.vue:129 #: frontend/src/components/Modals/Event.vue:129
#: frontend/src/components/QuizPlugin.vue:23 #: frontend/src/pages/AssignmentForm.vue:21 frontend/src/pages/BatchForm.vue:8
#: frontend/src/pages/AssignmentSubmission.vue:7 #: frontend/src/pages/CourseForm.vue:20 frontend/src/pages/JobCreation.vue:8
#: frontend/src/pages/BatchForm.vue:8 frontend/src/pages/CourseForm.vue:20 #: frontend/src/pages/LessonForm.vue:14 frontend/src/pages/ProgramForm.vue:7
#: frontend/src/pages/JobCreation.vue:8 frontend/src/pages/LessonForm.vue:14 #: frontend/src/pages/QuizForm.vue:34 frontend/src/pages/QuizSubmission.vue:14
#: frontend/src/pages/ProgramForm.vue:7 frontend/src/pages/QuizForm.vue:34
#: frontend/src/pages/QuizSubmission.vue:14
#: lms/public/js/common_functions.js:405 #: lms/public/js/common_functions.js:405
msgid "Save" msgid "Save"
msgstr "حفظ" msgstr "حفظ"
@@ -4359,6 +4422,10 @@ msgstr ""
msgid "Search" msgid "Search"
msgstr "البحث" msgstr "البحث"
#: frontend/src/pages/Assignments.vue:25
msgid "Search by title"
msgstr ""
#: frontend/src/components/Controls/IconPicker.vue:36 #: frontend/src/components/Controls/IconPicker.vue:36
msgid "Search for an icon" msgid "Search for an icon"
msgstr "" msgstr ""
@@ -4384,7 +4451,7 @@ msgstr ""
msgid "Select a question" msgid "Select a question"
msgstr "" msgstr ""
#: frontend/src/components/QuizPlugin.vue:17 #: frontend/src/components/AssessmentPlugin.vue:21
msgid "Select a quiz" msgid "Select a quiz"
msgstr "" msgstr ""
@@ -4392,6 +4459,10 @@ msgstr ""
msgid "Select a slot" msgid "Select a slot"
msgstr "" msgstr ""
#: frontend/src/components/AssessmentPlugin.vue:28
msgid "Select an assignment"
msgstr ""
#. Label of the send_calendar_invite_for_evaluations (Check) field in DocType #. Label of the send_calendar_invite_for_evaluations (Check) field in DocType
#. 'LMS Settings' #. 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -4583,7 +4654,7 @@ msgstr ""
msgid "Stage" msgid "Stage"
msgstr "" msgstr ""
#: frontend/src/components/LiveClass.vue:46 frontend/src/components/Quiz.vue:65 #: frontend/src/components/LiveClass.vue:50 frontend/src/components/Quiz.vue:65
#: lms/templates/quiz/quiz.html:39 #: lms/templates/quiz/quiz.html:39
msgid "Start" msgid "Start"
msgstr "بداية" msgstr "بداية"
@@ -4664,6 +4735,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Course Progress' #. Label of the status (Select) field in DocType 'LMS Course Progress'
#. Label of the status (Select) field in DocType 'LMS Mentor Request' #. Label of the status (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:91 #: frontend/src/components/Modals/Event.vue:91
#: frontend/src/pages/AssignmentSubmissionList.vue:19
#: frontend/src/pages/JobCreation.vue:41 #: frontend/src/pages/JobCreation.vue:41
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/cohort/cohort.json
@@ -4724,7 +4796,7 @@ msgstr ""
msgid "Students" msgid "Students"
msgstr "" msgstr ""
#: frontend/src/components/BatchStudents.vue:282 #: frontend/src/components/BatchStudents.vue:310
msgid "Students deleted successfully" msgid "Students deleted successfully"
msgstr "" msgstr ""
@@ -4746,19 +4818,24 @@ msgstr ""
msgid "Subject" msgid "Subject"
msgstr "موضوع" msgstr "موضوع"
#: frontend/src/pages/AssignmentSubmission.vue:40 #: frontend/src/components/Assignment.vue:29
msgid "Submission" msgid "Submission"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:30 #: frontend/src/pages/AssignmentForm.vue:17 frontend/src/pages/QuizForm.vue:30
msgid "Submission List" msgid "Submission List"
msgstr "" msgstr ""
#: frontend/src/components/Assignment.vue:10
#: frontend/src/components/Assignment.vue:13
msgid "Submission by"
msgstr ""
#: frontend/src/components/Modals/AssessmentModal.vue:9 #: frontend/src/components/Modals/AssessmentModal.vue:9
#: frontend/src/components/Modals/BatchCourseModal.vue:9 #: frontend/src/components/Modals/BatchCourseModal.vue:9
#: frontend/src/components/Modals/EvaluationModal.vue:9 #: frontend/src/components/Modals/EvaluationModal.vue:9
#: frontend/src/components/Modals/Question.vue:338 #: frontend/src/components/Modals/Question.vue:338
#: frontend/src/components/Quiz.vue:214 lms/templates/assignment.html:9 #: frontend/src/components/Quiz.vue:216 lms/templates/assignment.html:9
#: lms/templates/livecode/extension_footer.html:25 #: lms/templates/livecode/extension_footer.html:25
#: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163 #: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163
#: lms/www/new-sign-up.html:32 #: lms/www/new-sign-up.html:32
@@ -4774,10 +4851,12 @@ msgstr ""
msgid "Submitted {0}" msgid "Submitted {0}"
msgstr "" msgstr ""
#: frontend/src/components/Assignment.vue:316
#: frontend/src/components/BatchCourses.vue:150 #: frontend/src/components/BatchCourses.vue:150
#: frontend/src/components/BatchOverlay.vue:135 #: frontend/src/components/BatchOverlay.vue:135
#: frontend/src/components/BatchStudents.vue:282 #: frontend/src/components/BatchStudents.vue:310
#: frontend/src/components/CourseCardOverlay.vue:161 #: frontend/src/components/BatchStudents.vue:409
#: frontend/src/components/CourseCardOverlay.vue:165
#: frontend/src/components/Modals/AnnouncementModal.vue:99 #: frontend/src/components/Modals/AnnouncementModal.vue:99
#: frontend/src/components/Modals/AssessmentModal.vue:73 #: frontend/src/components/Modals/AssessmentModal.vue:73
#: frontend/src/components/Modals/BulkCertificates.vue:121 #: frontend/src/components/Modals/BulkCertificates.vue:121
@@ -4787,11 +4866,12 @@ msgstr ""
#: frontend/src/components/Modals/Event.vue:310 #: frontend/src/components/Modals/Event.vue:310
#: frontend/src/components/Modals/Question.vue:264 #: frontend/src/components/Modals/Question.vue:264
#: frontend/src/components/Modals/Question.vue:315 #: frontend/src/components/Modals/Question.vue:315
#: frontend/src/pages/AssignmentForm.vue:155
#: frontend/src/pages/CourseForm.vue:461 frontend/src/pages/ProgramForm.vue:229 #: frontend/src/pages/CourseForm.vue:461 frontend/src/pages/ProgramForm.vue:229
#: frontend/src/pages/ProgramForm.vue:251 #: frontend/src/pages/ProgramForm.vue:251
#: frontend/src/pages/ProgramForm.vue:272 #: frontend/src/pages/ProgramForm.vue:272
#: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:343 #: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:339
#: frontend/src/pages/QuizForm.vue:362 frontend/src/pages/QuizForm.vue:431 #: frontend/src/pages/QuizForm.vue:358 frontend/src/pages/QuizForm.vue:427
msgid "Success" msgid "Success"
msgstr "نجاح" msgstr "نجاح"
@@ -4809,7 +4889,7 @@ msgstr "ملخص"
msgid "Sunday" msgid "Sunday"
msgstr "الأحد" msgstr "الأحد"
#: lms/lms/api.py:952 #: lms/lms/api.py:954
msgid "Suspicious pattern found in {0}: {1}" msgid "Suspicious pattern found in {0}: {1}"
msgstr "" msgstr ""
@@ -4924,6 +5004,10 @@ msgstr "نص"
msgid "Thanks and Regards" msgid "Thanks and Regards"
msgstr "" msgstr ""
#: lms/lms/utils.py:1755
msgid "The batch is full. Please contact the Administrator."
msgstr ""
#: lms/templates/emails/lms_course_interest.html:5 #: lms/templates/emails/lms_course_interest.html:5
msgid "The course {0} is now available on {1}." msgid "The course {0} is now available on {1}."
msgstr "" msgstr ""
@@ -4964,14 +5048,22 @@ msgstr ""
msgid "There are no seats available in this batch." msgid "There are no seats available in this batch."
msgstr "" msgstr ""
#: frontend/src/components/BatchStudents.vue:165 #: frontend/src/components/BatchStudents.vue:182
msgid "There are no students in this batch." msgid "There are no students in this batch."
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmissionList.vue:70
msgid "There are no submissions for this assignment."
msgstr ""
#: lms/templates/course_list.html:14 #: lms/templates/course_list.html:14
msgid "There are no {0} on this site." msgid "There are no {0} on this site."
msgstr "" msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:82
msgid "There has been an update on your submission for assignment {0}"
msgstr ""
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:42 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:42
msgid "There has been an update on your submission. You have got a score of {0} for the quiz {1}" msgid "There has been an update on your submission. You have got a score of {0} for the quiz {1}"
msgstr "" msgstr ""
@@ -4991,11 +5083,15 @@ msgstr ""
msgid "This certificate does no expire" msgid "This certificate does no expire"
msgstr "" msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:91 #: frontend/src/components/LiveClass.vue:64
msgid "This class has ended"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:92
msgid "This course has:" msgid "This course has:"
msgstr "" msgstr ""
#: lms/lms/utils.py:1600 #: lms/lms/utils.py:1606
msgid "This course is free." msgid "This course is free."
msgstr "" msgstr ""
@@ -5098,10 +5194,12 @@ msgstr ""
#. Label of the title (Data) field in DocType 'Work Experience' #. Label of the title (Data) field in DocType 'Work Experience'
#: frontend/src/components/Modals/DiscussionModal.vue:18 #: frontend/src/components/Modals/DiscussionModal.vue:18
#: frontend/src/components/Modals/LiveClassModal.vue:23 #: frontend/src/components/Modals/LiveClassModal.vue:23
#: frontend/src/pages/BatchForm.vue:20 frontend/src/pages/CourseForm.vue:32 #: frontend/src/pages/AssignmentForm.vue:32
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/ProgramForm.vue:11 #: frontend/src/pages/Assignments.vue:152 frontend/src/pages/BatchForm.vue:20
#: frontend/src/pages/Programs.vue:118 frontend/src/pages/QuizForm.vue:48 #: frontend/src/pages/CourseForm.vue:32 frontend/src/pages/JobCreation.vue:20
#: frontend/src/pages/Quizzes.vue:116 lms/lms/doctype/cohort/cohort.json #: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:118
#: frontend/src/pages/QuizForm.vue:48 frontend/src/pages/Quizzes.vue:116
#: lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/course_chapter/course_chapter.json #: lms/lms/doctype/course_chapter/course_chapter.json
@@ -5137,11 +5235,11 @@ msgstr "إلى"
msgid "To Date" msgid "To Date"
msgstr "إلى تاريخ" msgstr "إلى تاريخ"
#: lms/lms/utils.py:1611 #: lms/lms/utils.py:1617
msgid "To join this batch, please contact the Administrator." msgid "To join this batch, please contact the Administrator."
msgstr "" msgstr ""
#: frontend/src/components/LessonHelp.vue:34 #: frontend/src/components/LessonHelp.vue:49
msgid "To upload Image, Video, Audio or PDF from your system, click on the add icon and select upload from the menu. Then choose the file you want to add to the lesson and it gets added to your lesson." msgid "To upload Image, Video, Audio or PDF from your system, click on the add icon and select upload from the menu. Then choose the file you want to add to the lesson and it gets added to your lesson."
msgstr "" msgstr ""
@@ -5169,7 +5267,7 @@ msgstr ""
msgid "Travel" msgid "Travel"
msgstr "السفر" msgstr "السفر"
#: frontend/src/components/Quiz.vue:252 lms/templates/quiz/quiz.html:131 #: frontend/src/components/Quiz.vue:254 lms/templates/quiz/quiz.html:131
msgid "Try Again" msgid "Try Again"
msgstr "" msgstr ""
@@ -5191,6 +5289,8 @@ msgstr ""
#. Label of the type (Select) field in DocType 'LMS Quiz Question' #. Label of the type (Select) field in DocType 'LMS Quiz Question'
#: frontend/src/components/Modals/AssessmentModal.vue:22 #: frontend/src/components/Modals/AssessmentModal.vue:22
#: frontend/src/components/Modals/Question.vue:54 #: frontend/src/components/Modals/Question.vue:54
#: frontend/src/pages/AssignmentForm.vue:39
#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:157
#: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:16 #: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:16
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment/lms_assignment.json
@@ -5201,7 +5301,7 @@ msgstr ""
msgid "Type" msgid "Type"
msgstr "النوع" msgstr "النوع"
#: frontend/src/components/Quiz.vue:583 #: frontend/src/components/Quiz.vue:589
msgid "Type your answer" msgid "Type your answer"
msgstr "" msgstr ""
@@ -5282,11 +5382,11 @@ msgstr ""
msgid "Upload" msgid "Upload"
msgstr "تحميل" msgstr "تحميل"
#: frontend/src/pages/AssignmentSubmission.vue:69 #: frontend/src/components/Assignment.vue:78
msgid "Upload File" msgid "Upload File"
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:68 #: frontend/src/components/Assignment.vue:77
msgid "Uploading {0}%" msgid "Uploading {0}%"
msgstr "" msgstr ""
@@ -5404,7 +5504,7 @@ msgstr "الأربعاء"
msgid "Welcome to {0}!" msgid "Welcome to {0}!"
msgstr "أهلا وسهلا بك إلى {0}!" msgstr "أهلا وسهلا بك إلى {0}!"
#: frontend/src/components/LessonHelp.vue:63 #: frontend/src/components/LessonHelp.vue:6
msgid "What does include in preview mean?" msgid "What does include in preview mean?"
msgstr "" msgstr ""
@@ -5453,7 +5553,7 @@ msgstr ""
msgid "Write a review" msgid "Write a review"
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:102 #: frontend/src/components/Assignment.vue:120
msgid "Write your answer here" msgid "Write your answer here"
msgstr "" msgstr ""
@@ -5461,11 +5561,11 @@ msgstr ""
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}."
msgstr "" msgstr ""
#: lms/lms/api.py:215 #: lms/lms/api.py:217
msgid "You are already enrolled for this batch." msgid "You are already enrolled for this batch."
msgstr "" msgstr ""
#: lms/lms/api.py:207 #: lms/lms/api.py:209
msgid "You are already enrolled for this course." msgid "You are already enrolled for this course."
msgstr "" msgstr ""
@@ -5530,7 +5630,7 @@ msgstr ""
msgid "You got" msgid "You got"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:234 #: frontend/src/components/Quiz.vue:236
#, python-format #, python-format
msgid "You got {0}% correct answers with a score of {1} out of {2}" msgid "You got {0}% correct answers with a score of {1} out of {2}"
msgstr "" msgstr ""
@@ -5551,7 +5651,7 @@ msgstr ""
msgid "You have been enrolled in this batch" msgid "You have been enrolled in this batch"
msgstr "" msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:162 #: frontend/src/components/CourseCardOverlay.vue:166
msgid "You have been enrolled in this course" msgid "You have been enrolled in this course"
msgstr "" msgstr ""
@@ -5559,6 +5659,10 @@ msgstr ""
msgid "You have got a score of {0} for the quiz {1}" msgid "You have got a score of {0} for the quiz {1}"
msgstr "" msgstr ""
#: frontend/src/pages/Assignments.vue:60
msgid "You have not created any assignments yet. To create a new assignment, click on the \"New\" button above."
msgstr ""
#: frontend/src/pages/Quizzes.vue:65 #: frontend/src/pages/Quizzes.vue:65
msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above." msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above."
msgstr "" msgstr ""
@@ -5571,7 +5675,7 @@ msgstr ""
msgid "You haven't enrolled for any courses" msgid "You haven't enrolled for any courses"
msgstr "" msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:142 #: frontend/src/components/CourseCardOverlay.vue:146
msgid "You need to login first to enroll for this course" msgid "You need to login first to enroll for this course"
msgstr "" msgstr ""
@@ -5584,7 +5688,7 @@ msgstr ""
msgid "You've applied to become a mentor for this course. Your request is currently under review." msgid "You've applied to become a mentor for this course. Your request is currently under review."
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:15 #: frontend/src/components/Assignment.vue:55
msgid "You've successfully submitted the assignment." msgid "You've successfully submitted the assignment."
msgstr "" msgstr ""
@@ -5628,7 +5732,7 @@ msgstr ""
msgid "Your score is" msgid "Your score is"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:227 #: frontend/src/components/Quiz.vue:229
msgid "Your submission has been successfully saved. The instructor will review and grade it shortly, and you'll be notified of your final result." msgid "Your submission has been successfully saved. The instructor will review and grade it shortly, and you'll be notified of your final result."
msgstr "" msgstr ""
@@ -5677,7 +5781,7 @@ msgstr ""
msgid "posted by" msgid "posted by"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:390 #: frontend/src/pages/QuizForm.vue:386
msgid "question_detail" msgid "question_detail"
msgstr "" msgstr ""
@@ -5693,7 +5797,7 @@ msgstr ""
msgid "you can" msgid "you can"
msgstr "" msgstr ""
#: lms/lms/api.py:749 lms/lms/api.py:757 #: lms/lms/api.py:751 lms/lms/api.py:759
msgid "{0} Settings not found" msgid "{0} Settings not found"
msgstr "" msgstr ""

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-12-27 16:04+0000\n" "POT-Creation-Date: 2025-01-03 16:04+0000\n"
"PO-Revision-Date: 2024-12-31 03:29\n" "PO-Revision-Date: 2025-01-07 04:09\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"
@@ -156,7 +156,7 @@ msgstr ""
msgid "Add a new question" msgid "Add a new question"
msgstr "" msgstr ""
#: frontend/src/components/QuizPlugin.vue:11 #: frontend/src/components/AssessmentPlugin.vue:11
msgid "Add a quiz to your lesson" msgid "Add a quiz to your lesson"
msgstr "" msgstr ""
@@ -164,6 +164,10 @@ msgstr ""
msgid "Add an assessment" msgid "Add an assessment"
msgstr "" msgstr ""
#: frontend/src/components/AssessmentPlugin.vue:14
msgid "Add an assignment to your lesson"
msgstr ""
#: frontend/src/components/Modals/Question.vue:18 #: frontend/src/components/Modals/Question.vue:18
msgid "Add an existing question" msgid "Add an existing question"
msgstr "" msgstr ""
@@ -176,7 +180,7 @@ msgstr ""
msgid "Add web page to sidebar" msgid "Add web page to sidebar"
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:44 #: frontend/src/components/Assignment.vue:65
msgid "Add your assignment as {0}" msgid "Add your assignment as {0}"
msgstr "" msgstr ""
@@ -393,6 +397,8 @@ msgstr ""
#. Label of the section_break_16 (Section Break) field in DocType 'Course #. Label of the section_break_16 (Section Break) field in DocType 'Course
#. Lesson' #. Lesson'
#. Label of the assignment (Link) field in DocType 'LMS Assignment Submission' #. Label of the assignment (Link) field in DocType 'LMS Assignment Submission'
#: frontend/src/pages/AssignmentSubmissionList.vue:12
#: frontend/src/utils/assignment.js:25
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/templates/assignment.html:3 #: lms/templates/assignment.html:3
@@ -417,15 +423,23 @@ msgstr ""
msgid "Assignment Title" msgid "Assignment Title"
msgstr "" msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:31 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:33
msgid "Assignment for Lesson {0} by {1} already exists." msgid "Assignment for Lesson {0} by {1} already exists."
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentForm.vue:155
msgid "Assignment saved successfully"
msgstr ""
#. Description of the 'Question' (Small Text) field in DocType 'Course Lesson' #. Description of the 'Question' (Small Text) field in DocType 'Course Lesson'
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Assignment will appear at the bottom of the lesson." msgid "Assignment will appear at the bottom of the lesson."
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentForm.vue:174
msgid "Assignments"
msgstr "Dodjele"
#: lms/lms/doctype/lms_question/lms_question.py:43 #: lms/lms/doctype/lms_question/lms_question.py:43
msgid "At least one option must be correct for this question." msgid "At least one option must be correct for this question."
msgstr "" msgstr ""
@@ -746,6 +760,10 @@ msgstr ""
msgid "Change" msgid "Change"
msgstr "Promjeni" msgstr "Promjeni"
#: frontend/src/components/Assignment.vue:316
msgid "Changes saved successfully"
msgstr ""
#. Label of the chapter (Link) field in DocType 'Chapter Reference' #. Label of the chapter (Link) field in DocType 'Chapter Reference'
#. Label of the chapter (Link) field in DocType 'LMS Course Progress' #. Label of the chapter (Link) field in DocType 'LMS Course Progress'
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
@@ -774,7 +792,7 @@ msgstr ""
msgid "Chapters" msgid "Chapters"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:201 lms/templates/quiz/quiz.html:120 #: frontend/src/components/Quiz.vue:203 lms/templates/quiz/quiz.html:120
msgid "Check" msgid "Check"
msgstr "Provjeri" msgstr "Provjeri"
@@ -797,7 +815,7 @@ msgstr ""
msgid "Choices" msgid "Choices"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:581 lms/templates/quiz/quiz.html:53 #: frontend/src/components/Quiz.vue:587 lms/templates/quiz/quiz.html:53
msgid "Choose all answers that apply" msgid "Choose all answers that apply"
msgstr "" msgstr ""
@@ -805,7 +823,7 @@ msgstr ""
msgid "Choose an icon" msgid "Choose an icon"
msgstr "Odaberi ikonu" msgstr "Odaberi ikonu"
#: frontend/src/components/Quiz.vue:582 lms/templates/quiz/quiz.html:53 #: frontend/src/components/Quiz.vue:588 lms/templates/quiz/quiz.html:53
msgid "Choose one answer" msgid "Choose one answer"
msgstr "" msgstr ""
@@ -814,12 +832,16 @@ msgstr ""
msgid "City" msgid "City"
msgstr "Grad" msgstr "Grad"
#: frontend/src/components/Controls/Link.vue:49
msgid "Clear"
msgstr "Očisti"
#. Option for the 'Role Preference' (Select) field in DocType 'User' #. Option for the 'Role Preference' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
msgid "Clearly Defined Role" msgid "Clearly Defined Role"
msgstr "" msgstr ""
#: frontend/src/components/LessonHelp.vue:15 #: frontend/src/components/LessonHelp.vue:30
msgid "Click on the add icon in the editor and select Quiz from the menu. It opens up a dialog, where you can either select a quiz from the list or create a new quiz. When you select the Create New option it redirects you to the quiz creation page." msgid "Click on the add icon in the editor and select Quiz from the menu. It opens up a dialog, where you can either select a quiz from the list or create a new quiz. When you select the Create New option it redirects you to the quiz creation page."
msgstr "" msgstr ""
@@ -917,6 +939,7 @@ msgstr "Boja"
#. Label of the comments (Small Text) field in DocType 'LMS Assignment #. Label of the comments (Small Text) field in DocType 'LMS Assignment
#. Submission' #. Submission'
#. Label of the comments (Small Text) field in DocType 'LMS Mentor Request' #. Label of the comments (Small Text) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Assignment.vue:161
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
#: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
@@ -924,6 +947,10 @@ msgstr "Boja"
msgid "Comments" msgid "Comments"
msgstr "Komentari" msgstr "Komentari"
#: frontend/src/components/Assignment.vue:139
msgid "Comments by Evaluator"
msgstr ""
#. Label of the company (Data) field in DocType 'LMS Job Application' #. Label of the company (Data) field in DocType 'LMS Job Application'
#. Label of the company (Data) field in DocType 'Work Experience' #. Label of the company (Data) field in DocType 'Work Experience'
#: lms/job/doctype/lms_job_application/lms_job_application.json #: lms/job/doctype/lms_job_application/lms_job_application.json
@@ -986,7 +1013,7 @@ msgstr ""
msgid "Completed" msgid "Completed"
msgstr "Završeno" msgstr "Završeno"
#: frontend/src/components/BatchStudents.vue:325 #: frontend/src/components/BatchStudents.vue:353
msgid "Completed by Students" msgid "Completed by Students"
msgstr "" msgstr ""
@@ -1036,7 +1063,7 @@ msgid "Continue Learning"
msgstr "" msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:117 #: frontend/src/pages/Jobs.vue:120
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Contract" msgid "Contract"
msgstr "" msgstr ""
@@ -1045,7 +1072,7 @@ msgstr ""
msgid "Cookie Policy" msgid "Cookie Policy"
msgstr "" msgstr ""
#: frontend/src/components/LessonHelp.vue:53 #: frontend/src/components/LessonHelp.vue:68
msgid "Copy the URL of the video from YouTube and paste it in the editor." msgid "Copy the URL of the video from YouTube and paste it in the editor."
msgstr "" msgstr ""
@@ -1057,7 +1084,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Exercise Latest #. Option for the 'Status' (Select) field in DocType 'Exercise Latest
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'Exercise Submission' #. Option for the 'Status' (Select) field in DocType 'Exercise Submission'
#: frontend/src/components/Quiz.vue:161 #: frontend/src/components/Quiz.vue:163
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
#: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json
msgid "Correct" msgid "Correct"
@@ -1197,7 +1224,7 @@ msgstr ""
msgid "Course Name" msgid "Course Name"
msgstr "" msgstr ""
#: frontend/src/pages/CourseDetail.vue:74 #: frontend/src/pages/CourseDetail.vue:76
msgid "Course Outline" msgid "Course Outline"
msgstr "" msgstr ""
@@ -1322,6 +1349,10 @@ msgstr ""
msgid "Create a new question" msgid "Create a new question"
msgstr "" msgstr ""
#: frontend/src/pages/Assignments.vue:163
msgid "Created"
msgstr "Kreirano"
#. Label of the currency (Link) field in DocType 'Web Form' #. Label of the currency (Link) field in DocType 'Web Form'
#. Label of the currency (Link) field in DocType 'LMS Batch' #. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course' #. Label of the currency (Link) field in DocType 'LMS Course'
@@ -1487,8 +1518,8 @@ msgid "Desk"
msgstr "" msgstr ""
#: frontend/src/components/Modals/DiscussionModal.vue:22 #: frontend/src/components/Modals/DiscussionModal.vue:22
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:28 #: frontend/src/pages/AssignmentForm.vue:27 frontend/src/pages/BatchForm.vue:14
#: frontend/src/pages/QuizForm.vue:42 #: frontend/src/pages/CourseForm.vue:28 frontend/src/pages/QuizForm.vue:42
msgid "Details" msgid "Details"
msgstr "Detalji" msgstr "Detalji"
@@ -1619,6 +1650,10 @@ msgstr "E-pošta poslana"
msgid "Email Templates" msgid "Email Templates"
msgstr "" msgstr ""
#: frontend/src/components/BatchStudents.vue:409
msgid "Email copied to clipboard"
msgstr ""
#. Label of the show_emails (Check) field in DocType 'LMS Settings' #. Label of the show_emails (Check) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Emails" msgid "Emails"
@@ -1699,8 +1734,8 @@ msgid "Enroll Now"
msgstr "" msgstr ""
#: frontend/src/components/CourseCard.vue:43 #: frontend/src/components/CourseCard.vue:43
#: frontend/src/components/CourseCardOverlay.vue:103 #: frontend/src/components/CourseCardOverlay.vue:104
#: frontend/src/pages/CourseDetail.vue:31 #: frontend/src/pages/CourseDetail.vue:33
msgid "Enrolled Students" msgid "Enrolled Students"
msgstr "" msgstr ""
@@ -1717,7 +1752,7 @@ msgstr ""
msgid "Enrollment Count" msgid "Enrollment Count"
msgstr "" msgstr ""
#: lms/lms/utils.py:1720 #: lms/lms/utils.py:1726
msgid "Enrollment Failed" msgid "Enrollment Failed"
msgstr "" msgstr ""
@@ -1733,7 +1768,7 @@ msgstr ""
msgid "Enter Client Id and Client Secret in Google Settings to send calendar invites for evaluations." msgid "Enter Client Id and Client Secret in Google Settings to send calendar invites for evaluations."
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:96 #: frontend/src/components/Assignment.vue:110
msgid "Enter a URL" msgid "Enter a URL"
msgstr "" msgstr ""
@@ -1745,6 +1780,7 @@ msgstr ""
msgid "Enter the correct answer" msgid "Enter the correct answer"
msgstr "" msgstr ""
#: frontend/src/components/Assignment.vue:268
#: frontend/src/components/Modals/AnnouncementModal.vue:105 #: frontend/src/components/Modals/AnnouncementModal.vue:105
#: frontend/src/components/Modals/BulkCertificates.vue:115 #: frontend/src/components/Modals/BulkCertificates.vue:115
#: frontend/src/components/Modals/ChapterModal.vue:159 #: frontend/src/components/Modals/ChapterModal.vue:159
@@ -1755,8 +1791,9 @@ msgstr ""
#: frontend/src/components/Modals/Question.vue:326 #: frontend/src/components/Modals/Question.vue:326
#: frontend/src/components/Modals/StudentModal.vue:69 #: frontend/src/components/Modals/StudentModal.vue:69
#: frontend/src/components/SettingDetails.vue:62 #: frontend/src/components/SettingDetails.vue:62
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350 #: frontend/src/pages/AssignmentForm.vue:139
#: frontend/src/pages/QuizForm.vue:365 #: frontend/src/pages/AssignmentForm.vue:159 frontend/src/pages/Billing.vue:264
#: frontend/src/pages/QuizForm.vue:346 frontend/src/pages/QuizForm.vue:361
#: frontend/src/pages/QuizSubmission.vue:141 #: frontend/src/pages/QuizSubmission.vue:141
msgid "Error" msgid "Error"
msgstr "Grеška" msgstr "Grеška"
@@ -1919,7 +1956,7 @@ msgstr "Neuspjeh"
msgid "Featured" msgid "Featured"
msgstr "Istaknuto" msgstr "Istaknuto"
#: frontend/src/pages/AssignmentSubmission.vue:21 #: frontend/src/components/Assignment.vue:61
msgid "Feel free to make edits to your submission if needed." msgid "Feel free to make edits to your submission if needed."
msgstr "" msgstr ""
@@ -1938,6 +1975,10 @@ msgstr ""
msgid "File Type" msgid "File Type"
msgstr "Vrsta datoteke" msgstr "Vrsta datoteke"
#: frontend/src/pages/Jobs.vue:47
msgid "Find the perfect job for you"
msgstr ""
#: frontend/src/components/Members.vue:38 #: frontend/src/components/Members.vue:38
#: frontend/src/components/Modals/EditProfile.vue:59 #: frontend/src/components/Modals/EditProfile.vue:59
msgid "First Name" msgid "First Name"
@@ -1953,7 +1994,7 @@ msgstr ""
msgid "Flexible Time" msgid "Flexible Time"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:463 #: frontend/src/pages/QuizForm.vue:459
msgid "Form to create and edit quizzes" msgid "Form to create and edit quizzes"
msgstr "" msgstr ""
@@ -1967,7 +2008,7 @@ msgid "Free"
msgstr "" msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:118 #: frontend/src/pages/Jobs.vue:121
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Freelance" msgid "Freelance"
msgstr "" msgstr ""
@@ -2009,7 +2050,7 @@ msgid "Full Name"
msgstr "Puno ime" msgstr "Puno ime"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:115 #: frontend/src/pages/Jobs.vue:118
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Full Time" msgid "Full Time"
msgstr "" msgstr ""
@@ -2069,6 +2110,7 @@ msgid "Google Meet Link"
msgstr "Google Meet veza" msgstr "Google Meet veza"
#. 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:154
#: lms/lms/doctype/education_detail/education_detail.json #: lms/lms/doctype/education_detail/education_detail.json
msgid "Grade" msgid "Grade"
msgstr "" msgstr ""
@@ -2083,6 +2125,10 @@ msgstr ""
msgid "Grade Type" msgid "Grade Type"
msgstr "" msgstr ""
#: frontend/src/components/Assignment.vue:149
msgid "Grading"
msgstr ""
#. Label of the grant_only_once (Check) field in DocType 'LMS Badge' #. Label of the grant_only_once (Check) field in DocType 'LMS Badge'
#: lms/lms/doctype/lms_badge/lms_badge.json #: lms/lms/doctype/lms_badge/lms_badge.json
msgid "Grant only once" msgid "Grant only once"
@@ -2146,7 +2192,7 @@ msgstr ""
msgid "Host" msgid "Host"
msgstr "" msgstr ""
#: frontend/src/components/LessonHelp.vue:9 #: frontend/src/components/LessonHelp.vue:24
msgid "How to add a Quiz?" msgid "How to add a Quiz?"
msgstr "" msgstr ""
@@ -2168,7 +2214,7 @@ msgstr ""
msgid "I am unavailable" msgid "I am unavailable"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:384 #: frontend/src/pages/QuizForm.vue:380
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
@@ -2178,7 +2224,7 @@ msgstr "ID"
msgid "Icon" msgid "Icon"
msgstr "Ikona" msgstr "Ikona"
#: frontend/src/components/LessonHelp.vue:68 #: frontend/src/components/LessonHelp.vue:11
msgid "If Include in Preview is enabled for a lesson then the lesson will also be accessible to non logged in users." msgid "If Include in Preview is enabled for a lesson then the lesson will also be accessible to non logged in users."
msgstr "" msgstr ""
@@ -2261,7 +2307,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Exercise Latest #. Option for the 'Status' (Select) field in DocType 'Exercise Latest
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'Exercise Submission' #. Option for the 'Status' (Select) field in DocType 'Exercise Submission'
#: frontend/src/components/Quiz.vue:166 #: frontend/src/components/Quiz.vue:168
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
#: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json
msgid "Incorrect" msgid "Incorrect"
@@ -2469,7 +2515,7 @@ msgstr ""
msgid "Jobs" msgid "Jobs"
msgstr "" msgstr ""
#: frontend/src/components/LiveClass.vue:55 #: frontend/src/components/LiveClass.vue:58
#: lms/templates/upcoming_evals.html:15 #: lms/templates/upcoming_evals.html:15
msgid "Join" msgid "Join"
msgstr "" msgstr ""
@@ -2759,7 +2805,7 @@ msgstr ""
#. Group in Course Chapter's connections #. Group in Course Chapter's connections
#. Label of the lessons (Data) field in DocType 'LMS Course' #. Label of the lessons (Data) field in DocType 'LMS Course'
#: frontend/src/components/CourseCard.vue:34 #: frontend/src/components/CourseCard.vue:34
#: frontend/src/components/CourseCardOverlay.vue:96 #: frontend/src/components/CourseCardOverlay.vue:97
#: lms/lms/doctype/course_chapter/course_chapter.json #: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "Lessons" msgid "Lessons"
@@ -2825,6 +2871,7 @@ msgid "LiveCode URL"
msgstr "" msgstr ""
#: frontend/src/components/Members.vue:106 #: frontend/src/components/Members.vue:106
#: frontend/src/pages/Assignments.vue:71
#: frontend/src/pages/QuizSubmissionList.vue:39 #: frontend/src/pages/QuizSubmissionList.vue:39
#: frontend/src/pages/Quizzes.vue:51 #: frontend/src/pages/Quizzes.vue:51
msgid "Load More" msgid "Load More"
@@ -2854,6 +2901,7 @@ msgstr ""
msgid "Location Preference" msgid "Location Preference"
msgstr "" msgstr ""
#: frontend/src/components/AssignmentBlock.vue:13
#: frontend/src/components/NoPermission.vue:28 #: frontend/src/components/NoPermission.vue:28
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:175 #: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:175
#: frontend/src/pages/Lesson.vue:24 #: frontend/src/pages/Lesson.vue:24
@@ -2913,7 +2961,7 @@ msgstr ""
#. Label of the marks (Int) field in DocType 'LMS Quiz Result' #. Label of the marks (Int) field in DocType 'LMS Quiz Result'
#: frontend/src/components/Modals/Question.vue:50 #: frontend/src/components/Modals/Question.vue:50
#: frontend/src/components/Modals/Question.vue:99 #: frontend/src/components/Modals/Question.vue:99
#: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:394 #: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:390
#: frontend/src/pages/QuizSubmission.vue:59 #: frontend/src/pages/QuizSubmission.vue:59
#: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json #: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json
#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json
@@ -2970,6 +3018,7 @@ msgstr "Srednje:"
#. Label of the member (Link) field in DocType 'LMS Payment' #. Label of the member (Link) field in DocType 'LMS Payment'
#. Label of the member (Link) field in DocType 'LMS Program Member' #. Label of the member (Link) field in DocType 'LMS Program Member'
#. Label of the member (Link) field in DocType 'LMS Quiz Submission' #. Label of the member (Link) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/AssignmentSubmissionList.vue:14
#: frontend/src/pages/QuizSubmission.vue:31 #: frontend/src/pages/QuizSubmission.vue:31
#: frontend/src/pages/QuizSubmissionList.vue:86 #: frontend/src/pages/QuizSubmissionList.vue:86
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
@@ -3140,11 +3189,11 @@ msgstr ""
msgid "Modified By" msgid "Modified By"
msgstr "Izmijenio" msgstr "Izmijenio"
#: lms/lms/api.py:199 #: lms/lms/api.py:201
msgid "Module Name is incorrect or does not exist." msgid "Module Name is incorrect or does not exist."
msgstr "" msgstr ""
#: lms/lms/api.py:195 #: lms/lms/api.py:197
msgid "Module is incorrect." msgid "Module is incorrect."
msgstr "" msgstr ""
@@ -3173,12 +3222,17 @@ msgid "My calendar"
msgstr "" msgstr ""
#. Option for the 'Event' (Select) field in DocType 'LMS Badge' #. Option for the 'Event' (Select) field in DocType 'LMS Badge'
#: frontend/src/pages/Batches.vue:30 frontend/src/pages/Courses.vue:45 #: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:30
#: frontend/src/pages/Programs.vue:14 lms/lms/doctype/lms_badge/lms_badge.json #: frontend/src/pages/Courses.vue:45 frontend/src/pages/Programs.vue:14
#: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New" msgid "New"
msgstr "" msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:41 #: frontend/src/pages/AssignmentForm.vue:178
msgid "New Assignment"
msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:43
msgid "New Assignment Submission" msgid "New Assignment Submission"
msgstr "" msgstr ""
@@ -3214,7 +3268,7 @@ msgstr ""
msgid "New Question" msgid "New Question"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:454 frontend/src/pages/QuizForm.vue:462 #: frontend/src/pages/QuizForm.vue:450 frontend/src/pages/QuizForm.vue:458
#: frontend/src/pages/Quizzes.vue:18 #: frontend/src/pages/Quizzes.vue:18
msgid "New Quiz" msgid "New Quiz"
msgstr "" msgstr ""
@@ -3236,7 +3290,7 @@ msgstr ""
msgid "New {0}" msgid "New {0}"
msgstr "Novi {0}" msgstr "Novi {0}"
#: frontend/src/components/Quiz.vue:209 frontend/src/pages/Lesson.vue:84 #: frontend/src/components/Quiz.vue:211 frontend/src/pages/Lesson.vue:84
msgid "Next" msgid "Next"
msgstr "Sljedeći" msgstr "Sljedeći"
@@ -3244,7 +3298,7 @@ msgstr "Sljedeći"
msgid "Next Question" msgid "Next Question"
msgstr "" msgstr ""
#: frontend/src/components/Assessments.vue:66 lms/templates/assessments.html:58 #: frontend/src/components/Assessments.vue:75 lms/templates/assessments.html:58
msgid "No Assessments" msgid "No Assessments"
msgstr "" msgstr ""
@@ -3265,6 +3319,10 @@ msgstr ""
msgid "No announcements" msgid "No announcements"
msgstr "" msgstr ""
#: frontend/src/pages/Assignments.vue:56
msgid "No assignments found"
msgstr ""
#: frontend/src/pages/Batches.vue:125 #: frontend/src/pages/Batches.vue:125
msgid "No batches found" msgid "No batches found"
msgstr "" msgstr ""
@@ -3293,11 +3351,11 @@ msgstr ""
msgid "No introduction" msgid "No introduction"
msgstr "" msgstr ""
#: frontend/src/pages/Jobs.vue:60 #: frontend/src/pages/Jobs.vue:63
msgid "No jobs posted" msgid "No jobs posted"
msgstr "" msgstr ""
#: frontend/src/components/LiveClass.vue:61 #: frontend/src/components/LiveClass.vue:71
msgid "No live classes scheduled" msgid "No live classes scheduled"
msgstr "" msgstr ""
@@ -3313,6 +3371,10 @@ msgstr ""
msgid "No slots available for this date." msgid "No slots available for this date."
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmissionList.vue:67
msgid "No submissions"
msgstr ""
#: frontend/src/components/UpcomingEvaluations.vue:39 #: frontend/src/components/UpcomingEvaluations.vue:39
msgid "No upcoming evaluations." msgid "No upcoming evaluations."
msgstr "" msgstr ""
@@ -3361,6 +3423,7 @@ msgstr ""
msgid "Not Permitted" msgid "Not Permitted"
msgstr "Nije dozvoljeno" msgstr "Nije dozvoljeno"
#: frontend/src/components/Assignment.vue:33
#: frontend/src/components/BrandSettings.vue:10 #: frontend/src/components/BrandSettings.vue:10
#: frontend/src/components/PaymentSettings.vue:9 #: frontend/src/components/PaymentSettings.vue:9
#: frontend/src/components/SettingDetails.vue:10 #: frontend/src/components/SettingDetails.vue:10
@@ -3404,7 +3467,7 @@ msgstr ""
msgid "Once again, congratulations on this significant accomplishment." msgid "Once again, congratulations on this significant accomplishment."
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:17 #: frontend/src/components/Assignment.vue:57
msgid "Once the moderator grades your submission, you'll find the details here." msgid "Once the moderator grades your submission, you'll find the details here."
msgstr "" msgstr ""
@@ -3421,7 +3484,7 @@ msgstr ""
msgid "Only files of type {0} will be accepted." msgid "Only files of type {0} will be accepted."
msgstr "" msgstr ""
#: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:527 #: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:529
msgid "Only image file is allowed." msgid "Only image file is allowed."
msgstr "" msgstr ""
@@ -3550,7 +3613,7 @@ msgid "Pan Number"
msgstr "" msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:116 #: frontend/src/pages/Jobs.vue:119
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Part Time" msgid "Part Time"
msgstr "" msgstr ""
@@ -3681,7 +3744,7 @@ msgstr ""
msgid "Phone Number" msgid "Phone Number"
msgstr "" msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:141 #: frontend/src/components/CourseCardOverlay.vue:145
msgid "Please Login" msgid "Please Login"
msgstr "" msgstr ""
@@ -3701,7 +3764,7 @@ msgstr "Molimo provjerite svoju e-poštu za potvrdu"
msgid "Please click on the following button to set your new password" msgid "Please click on the following button to set your new password"
msgstr "" msgstr ""
#: lms/lms/utils.py:1842 lms/lms/utils.py:1846 #: lms/lms/utils.py:1848 lms/lms/utils.py:1852
msgid "Please complete the previous courses in the program to enroll in this course." msgid "Please complete the previous courses in the program to enroll in this course."
msgstr "" msgstr ""
@@ -3721,8 +3784,8 @@ msgstr ""
msgid "Please enter a title." msgid "Please enter a title."
msgstr "" msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:38 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:40
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:98 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:122
msgid "Please enter a valid URL." msgid "Please enter a valid URL."
msgstr "" msgstr ""
@@ -3730,7 +3793,7 @@ msgstr ""
msgid "Please enter a valid time in the format HH:mm." msgid "Please enter a valid time in the format HH:mm."
msgstr "" msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:92 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:116
msgid "Please enter the URL for assignment submission." msgid "Please enter the URL for assignment submission."
msgstr "" msgstr ""
@@ -3750,6 +3813,10 @@ msgstr ""
msgid "Please let us know where you heard about us from." msgid "Please let us know where you heard about us from."
msgstr "" msgstr ""
#: frontend/src/components/AssignmentBlock.vue:9
msgid "Please login to access the assignment."
msgstr ""
#: frontend/src/components/QuizBlock.vue:5 #: frontend/src/components/QuizBlock.vue:5
msgid "Please login to access the quiz." msgid "Please login to access the quiz."
msgstr "" msgstr ""
@@ -3758,7 +3825,7 @@ msgstr ""
msgid "Please login to access this page." msgid "Please login to access this page."
msgstr "" msgstr ""
#: lms/lms/api.py:191 #: lms/lms/api.py:193
msgid "Please login to continue with payment." msgid "Please login to continue with payment."
msgstr "" msgstr ""
@@ -3795,7 +3862,7 @@ msgstr ""
msgid "Please upload a SCORM package" msgid "Please upload a SCORM package"
msgstr "" msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:95 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:119
msgid "Please upload the assignment file." msgid "Please upload the assignment file."
msgstr "" msgstr ""
@@ -4003,9 +4070,9 @@ msgstr "Objavljeno dana"
#. Label of the question (Text Editor) field in DocType 'LMS Question' #. Label of the question (Text Editor) field in DocType 'LMS Question'
#. Label of the question (Link) field in DocType 'LMS Quiz Question' #. Label of the question (Link) field in DocType 'LMS Quiz Question'
#. Label of the question (Text) field in DocType 'LMS Quiz Result' #. Label of the question (Text) field in DocType 'LMS Quiz Result'
#: frontend/src/components/Assignment.vue:17
#: frontend/src/components/Modals/Question.vue:38 #: frontend/src/components/Modals/Question.vue:38
#: frontend/src/pages/AssignmentSubmission.vue:26 #: frontend/src/pages/AssignmentForm.vue:45 frontend/src/pages/QuizForm.vue:385
#: frontend/src/pages/QuizForm.vue:389
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment/lms_assignment.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
@@ -4042,7 +4109,7 @@ msgstr ""
msgid "Question {0}" msgid "Question {0}"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:186 #: frontend/src/components/Quiz.vue:188
msgid "Question {0} of {1}" msgid "Question {0} of {1}"
msgstr "" msgstr ""
@@ -4051,7 +4118,7 @@ msgstr ""
msgid "Questions" msgid "Questions"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:431 #: frontend/src/pages/QuizForm.vue:427
msgid "Questions deleted successfully" msgid "Questions deleted successfully"
msgstr "" msgstr ""
@@ -4079,7 +4146,7 @@ msgstr ""
msgid "Quiz Submissions" msgid "Quiz Submissions"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:223 #: frontend/src/components/Quiz.vue:225
msgid "Quiz Summary" msgid "Quiz Summary"
msgstr "" msgstr ""
@@ -4088,7 +4155,7 @@ msgstr ""
msgid "Quiz Title" msgid "Quiz Title"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:343 #: frontend/src/pages/QuizForm.vue:339
msgid "Quiz created successfully" msgid "Quiz created successfully"
msgstr "" msgstr ""
@@ -4096,7 +4163,7 @@ msgstr ""
msgid "Quiz is not available to Guest users. Please login to continue." msgid "Quiz is not available to Guest users. Please login to continue."
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:362 #: frontend/src/pages/QuizForm.vue:358
msgid "Quiz updated successfully" msgid "Quiz updated successfully"
msgstr "" msgstr ""
@@ -4105,7 +4172,7 @@ msgstr ""
msgid "Quiz will appear at the bottom of the lesson." msgid "Quiz will appear at the bottom of the lesson."
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:442 frontend/src/pages/Quizzes.vue:138 #: frontend/src/pages/QuizForm.vue:438 frontend/src/pages/Quizzes.vue:138
#: frontend/src/pages/Quizzes.vue:148 #: frontend/src/pages/Quizzes.vue:148
msgid "Quizzes" msgid "Quizzes"
msgstr "" msgstr ""
@@ -4113,7 +4180,7 @@ msgstr ""
#. Label of the rating (Rating) field in DocType 'LMS Certificate Evaluation' #. Label of the rating (Rating) field in DocType 'LMS Certificate Evaluation'
#. 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:108 #: frontend/src/components/CourseCardOverlay.vue:110
#: frontend/src/components/Modals/Event.vue:86 #: frontend/src/components/Modals/Event.vue:86
#: frontend/src/components/Modals/ReviewModal.vue:20 #: frontend/src/components/Modals/ReviewModal.vue:20
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -4127,10 +4194,6 @@ msgstr ""
msgid "Rating cannot be 0" msgid "Rating cannot be 0"
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:30
msgid "Read the question carefully before attempting the assignment."
msgstr ""
#. Option for the 'Stage' (Select) field in DocType 'LMS Batch Old' #. Option for the 'Stage' (Select) field in DocType 'LMS Batch Old'
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
msgid "Ready" msgid "Ready"
@@ -4309,15 +4372,15 @@ msgstr ""
msgid "Saturday" msgid "Saturday"
msgstr "" msgstr ""
#: frontend/src/components/AssessmentPlugin.vue:34
#: frontend/src/components/Assignment.vue:43
#: frontend/src/components/Controls/CodeEditor.vue:25 #: frontend/src/components/Controls/CodeEditor.vue:25
#: frontend/src/components/Modals/Event.vue:101 #: frontend/src/components/Modals/Event.vue:101
#: frontend/src/components/Modals/Event.vue:129 #: frontend/src/components/Modals/Event.vue:129
#: frontend/src/components/QuizPlugin.vue:23 #: frontend/src/pages/AssignmentForm.vue:21 frontend/src/pages/BatchForm.vue:8
#: frontend/src/pages/AssignmentSubmission.vue:7 #: frontend/src/pages/CourseForm.vue:20 frontend/src/pages/JobCreation.vue:8
#: frontend/src/pages/BatchForm.vue:8 frontend/src/pages/CourseForm.vue:20 #: frontend/src/pages/LessonForm.vue:14 frontend/src/pages/ProgramForm.vue:7
#: frontend/src/pages/JobCreation.vue:8 frontend/src/pages/LessonForm.vue:14 #: frontend/src/pages/QuizForm.vue:34 frontend/src/pages/QuizSubmission.vue:14
#: frontend/src/pages/ProgramForm.vue:7 frontend/src/pages/QuizForm.vue:34
#: frontend/src/pages/QuizSubmission.vue:14
#: lms/public/js/common_functions.js:405 #: lms/public/js/common_functions.js:405
msgid "Save" msgid "Save"
msgstr "" msgstr ""
@@ -4359,6 +4422,10 @@ msgstr ""
msgid "Search" msgid "Search"
msgstr "" msgstr ""
#: frontend/src/pages/Assignments.vue:25
msgid "Search by title"
msgstr ""
#: frontend/src/components/Controls/IconPicker.vue:36 #: frontend/src/components/Controls/IconPicker.vue:36
msgid "Search for an icon" msgid "Search for an icon"
msgstr "" msgstr ""
@@ -4384,7 +4451,7 @@ msgstr ""
msgid "Select a question" msgid "Select a question"
msgstr "" msgstr ""
#: frontend/src/components/QuizPlugin.vue:17 #: frontend/src/components/AssessmentPlugin.vue:21
msgid "Select a quiz" msgid "Select a quiz"
msgstr "" msgstr ""
@@ -4392,6 +4459,10 @@ msgstr ""
msgid "Select a slot" msgid "Select a slot"
msgstr "" msgstr ""
#: frontend/src/components/AssessmentPlugin.vue:28
msgid "Select an assignment"
msgstr ""
#. Label of the send_calendar_invite_for_evaluations (Check) field in DocType #. Label of the send_calendar_invite_for_evaluations (Check) field in DocType
#. 'LMS Settings' #. 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -4583,7 +4654,7 @@ msgstr ""
msgid "Stage" msgid "Stage"
msgstr "" msgstr ""
#: frontend/src/components/LiveClass.vue:46 frontend/src/components/Quiz.vue:65 #: frontend/src/components/LiveClass.vue:50 frontend/src/components/Quiz.vue:65
#: lms/templates/quiz/quiz.html:39 #: lms/templates/quiz/quiz.html:39
msgid "Start" msgid "Start"
msgstr "" msgstr ""
@@ -4664,6 +4735,7 @@ msgstr "Statistika"
#. Label of the status (Select) field in DocType 'LMS Course Progress' #. Label of the status (Select) field in DocType 'LMS Course Progress'
#. Label of the status (Select) field in DocType 'LMS Mentor Request' #. Label of the status (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:91 #: frontend/src/components/Modals/Event.vue:91
#: frontend/src/pages/AssignmentSubmissionList.vue:19
#: frontend/src/pages/JobCreation.vue:41 #: frontend/src/pages/JobCreation.vue:41
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/cohort/cohort.json
@@ -4724,7 +4796,7 @@ msgstr ""
msgid "Students" msgid "Students"
msgstr "" msgstr ""
#: frontend/src/components/BatchStudents.vue:282 #: frontend/src/components/BatchStudents.vue:310
msgid "Students deleted successfully" msgid "Students deleted successfully"
msgstr "" msgstr ""
@@ -4746,19 +4818,24 @@ msgstr ""
msgid "Subject" msgid "Subject"
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:40 #: frontend/src/components/Assignment.vue:29
msgid "Submission" msgid "Submission"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:30 #: frontend/src/pages/AssignmentForm.vue:17 frontend/src/pages/QuizForm.vue:30
msgid "Submission List" msgid "Submission List"
msgstr "" msgstr ""
#: frontend/src/components/Assignment.vue:10
#: frontend/src/components/Assignment.vue:13
msgid "Submission by"
msgstr ""
#: frontend/src/components/Modals/AssessmentModal.vue:9 #: frontend/src/components/Modals/AssessmentModal.vue:9
#: frontend/src/components/Modals/BatchCourseModal.vue:9 #: frontend/src/components/Modals/BatchCourseModal.vue:9
#: frontend/src/components/Modals/EvaluationModal.vue:9 #: frontend/src/components/Modals/EvaluationModal.vue:9
#: frontend/src/components/Modals/Question.vue:338 #: frontend/src/components/Modals/Question.vue:338
#: frontend/src/components/Quiz.vue:214 lms/templates/assignment.html:9 #: frontend/src/components/Quiz.vue:216 lms/templates/assignment.html:9
#: lms/templates/livecode/extension_footer.html:25 #: lms/templates/livecode/extension_footer.html:25
#: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163 #: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163
#: lms/www/new-sign-up.html:32 #: lms/www/new-sign-up.html:32
@@ -4774,10 +4851,12 @@ msgstr ""
msgid "Submitted {0}" msgid "Submitted {0}"
msgstr "" msgstr ""
#: frontend/src/components/Assignment.vue:316
#: frontend/src/components/BatchCourses.vue:150 #: frontend/src/components/BatchCourses.vue:150
#: frontend/src/components/BatchOverlay.vue:135 #: frontend/src/components/BatchOverlay.vue:135
#: frontend/src/components/BatchStudents.vue:282 #: frontend/src/components/BatchStudents.vue:310
#: frontend/src/components/CourseCardOverlay.vue:161 #: frontend/src/components/BatchStudents.vue:409
#: frontend/src/components/CourseCardOverlay.vue:165
#: frontend/src/components/Modals/AnnouncementModal.vue:99 #: frontend/src/components/Modals/AnnouncementModal.vue:99
#: frontend/src/components/Modals/AssessmentModal.vue:73 #: frontend/src/components/Modals/AssessmentModal.vue:73
#: frontend/src/components/Modals/BulkCertificates.vue:121 #: frontend/src/components/Modals/BulkCertificates.vue:121
@@ -4787,11 +4866,12 @@ msgstr ""
#: frontend/src/components/Modals/Event.vue:310 #: frontend/src/components/Modals/Event.vue:310
#: frontend/src/components/Modals/Question.vue:264 #: frontend/src/components/Modals/Question.vue:264
#: frontend/src/components/Modals/Question.vue:315 #: frontend/src/components/Modals/Question.vue:315
#: frontend/src/pages/AssignmentForm.vue:155
#: frontend/src/pages/CourseForm.vue:461 frontend/src/pages/ProgramForm.vue:229 #: frontend/src/pages/CourseForm.vue:461 frontend/src/pages/ProgramForm.vue:229
#: frontend/src/pages/ProgramForm.vue:251 #: frontend/src/pages/ProgramForm.vue:251
#: frontend/src/pages/ProgramForm.vue:272 #: frontend/src/pages/ProgramForm.vue:272
#: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:343 #: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:339
#: frontend/src/pages/QuizForm.vue:362 frontend/src/pages/QuizForm.vue:431 #: frontend/src/pages/QuizForm.vue:358 frontend/src/pages/QuizForm.vue:427
msgid "Success" msgid "Success"
msgstr "" msgstr ""
@@ -4809,7 +4889,7 @@ msgstr ""
msgid "Sunday" msgid "Sunday"
msgstr "" msgstr ""
#: lms/lms/api.py:952 #: lms/lms/api.py:954
msgid "Suspicious pattern found in {0}: {1}" msgid "Suspicious pattern found in {0}: {1}"
msgstr "" msgstr ""
@@ -4924,6 +5004,10 @@ msgstr "Tekst"
msgid "Thanks and Regards" msgid "Thanks and Regards"
msgstr "" msgstr ""
#: lms/lms/utils.py:1755
msgid "The batch is full. Please contact the Administrator."
msgstr ""
#: lms/templates/emails/lms_course_interest.html:5 #: lms/templates/emails/lms_course_interest.html:5
msgid "The course {0} is now available on {1}." msgid "The course {0} is now available on {1}."
msgstr "" msgstr ""
@@ -4964,14 +5048,22 @@ msgstr ""
msgid "There are no seats available in this batch." msgid "There are no seats available in this batch."
msgstr "" msgstr ""
#: frontend/src/components/BatchStudents.vue:165 #: frontend/src/components/BatchStudents.vue:182
msgid "There are no students in this batch." msgid "There are no students in this batch."
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmissionList.vue:70
msgid "There are no submissions for this assignment."
msgstr ""
#: lms/templates/course_list.html:14 #: lms/templates/course_list.html:14
msgid "There are no {0} on this site." msgid "There are no {0} on this site."
msgstr "" msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:82
msgid "There has been an update on your submission for assignment {0}"
msgstr ""
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:42 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:42
msgid "There has been an update on your submission. You have got a score of {0} for the quiz {1}" msgid "There has been an update on your submission. You have got a score of {0} for the quiz {1}"
msgstr "" msgstr ""
@@ -4991,11 +5083,15 @@ msgstr ""
msgid "This certificate does no expire" msgid "This certificate does no expire"
msgstr "" msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:91 #: frontend/src/components/LiveClass.vue:64
msgid "This class has ended"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:92
msgid "This course has:" msgid "This course has:"
msgstr "" msgstr ""
#: lms/lms/utils.py:1600 #: lms/lms/utils.py:1606
msgid "This course is free." msgid "This course is free."
msgstr "" msgstr ""
@@ -5098,10 +5194,12 @@ msgstr ""
#. Label of the title (Data) field in DocType 'Work Experience' #. Label of the title (Data) field in DocType 'Work Experience'
#: frontend/src/components/Modals/DiscussionModal.vue:18 #: frontend/src/components/Modals/DiscussionModal.vue:18
#: frontend/src/components/Modals/LiveClassModal.vue:23 #: frontend/src/components/Modals/LiveClassModal.vue:23
#: frontend/src/pages/BatchForm.vue:20 frontend/src/pages/CourseForm.vue:32 #: frontend/src/pages/AssignmentForm.vue:32
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/ProgramForm.vue:11 #: frontend/src/pages/Assignments.vue:152 frontend/src/pages/BatchForm.vue:20
#: frontend/src/pages/Programs.vue:118 frontend/src/pages/QuizForm.vue:48 #: frontend/src/pages/CourseForm.vue:32 frontend/src/pages/JobCreation.vue:20
#: frontend/src/pages/Quizzes.vue:116 lms/lms/doctype/cohort/cohort.json #: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:118
#: frontend/src/pages/QuizForm.vue:48 frontend/src/pages/Quizzes.vue:116
#: lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/course_chapter/course_chapter.json #: lms/lms/doctype/course_chapter/course_chapter.json
@@ -5137,11 +5235,11 @@ msgstr ""
msgid "To Date" msgid "To Date"
msgstr "" msgstr ""
#: lms/lms/utils.py:1611 #: lms/lms/utils.py:1617
msgid "To join this batch, please contact the Administrator." msgid "To join this batch, please contact the Administrator."
msgstr "" msgstr ""
#: frontend/src/components/LessonHelp.vue:34 #: frontend/src/components/LessonHelp.vue:49
msgid "To upload Image, Video, Audio or PDF from your system, click on the add icon and select upload from the menu. Then choose the file you want to add to the lesson and it gets added to your lesson." msgid "To upload Image, Video, Audio or PDF from your system, click on the add icon and select upload from the menu. Then choose the file you want to add to the lesson and it gets added to your lesson."
msgstr "" msgstr ""
@@ -5169,7 +5267,7 @@ msgstr ""
msgid "Travel" msgid "Travel"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:252 lms/templates/quiz/quiz.html:131 #: frontend/src/components/Quiz.vue:254 lms/templates/quiz/quiz.html:131
msgid "Try Again" msgid "Try Again"
msgstr "Pokušaj ponovo" msgstr "Pokušaj ponovo"
@@ -5191,6 +5289,8 @@ msgstr ""
#. Label of the type (Select) field in DocType 'LMS Quiz Question' #. Label of the type (Select) field in DocType 'LMS Quiz Question'
#: frontend/src/components/Modals/AssessmentModal.vue:22 #: frontend/src/components/Modals/AssessmentModal.vue:22
#: frontend/src/components/Modals/Question.vue:54 #: frontend/src/components/Modals/Question.vue:54
#: frontend/src/pages/AssignmentForm.vue:39
#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:157
#: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:16 #: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:16
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment/lms_assignment.json
@@ -5201,7 +5301,7 @@ msgstr ""
msgid "Type" msgid "Type"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:583 #: frontend/src/components/Quiz.vue:589
msgid "Type your answer" msgid "Type your answer"
msgstr "" msgstr ""
@@ -5282,11 +5382,11 @@ msgstr ""
msgid "Upload" msgid "Upload"
msgstr "Učitaj" msgstr "Učitaj"
#: frontend/src/pages/AssignmentSubmission.vue:69 #: frontend/src/components/Assignment.vue:78
msgid "Upload File" msgid "Upload File"
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:68 #: frontend/src/components/Assignment.vue:77
msgid "Uploading {0}%" msgid "Uploading {0}%"
msgstr "" msgstr ""
@@ -5404,7 +5504,7 @@ msgstr ""
msgid "Welcome to {0}!" msgid "Welcome to {0}!"
msgstr "" msgstr ""
#: frontend/src/components/LessonHelp.vue:63 #: frontend/src/components/LessonHelp.vue:6
msgid "What does include in preview mean?" msgid "What does include in preview mean?"
msgstr "" msgstr ""
@@ -5453,7 +5553,7 @@ msgstr ""
msgid "Write a review" msgid "Write a review"
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:102 #: frontend/src/components/Assignment.vue:120
msgid "Write your answer here" msgid "Write your answer here"
msgstr "" msgstr ""
@@ -5461,11 +5561,11 @@ msgstr ""
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}."
msgstr "" msgstr ""
#: lms/lms/api.py:215 #: lms/lms/api.py:217
msgid "You are already enrolled for this batch." msgid "You are already enrolled for this batch."
msgstr "" msgstr ""
#: lms/lms/api.py:207 #: lms/lms/api.py:209
msgid "You are already enrolled for this course." msgid "You are already enrolled for this course."
msgstr "" msgstr ""
@@ -5530,7 +5630,7 @@ msgstr ""
msgid "You got" msgid "You got"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:234 #: frontend/src/components/Quiz.vue:236
#, python-format #, python-format
msgid "You got {0}% correct answers with a score of {1} out of {2}" msgid "You got {0}% correct answers with a score of {1} out of {2}"
msgstr "" msgstr ""
@@ -5551,7 +5651,7 @@ msgstr ""
msgid "You have been enrolled in this batch" msgid "You have been enrolled in this batch"
msgstr "" msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:162 #: frontend/src/components/CourseCardOverlay.vue:166
msgid "You have been enrolled in this course" msgid "You have been enrolled in this course"
msgstr "" msgstr ""
@@ -5559,6 +5659,10 @@ msgstr ""
msgid "You have got a score of {0} for the quiz {1}" msgid "You have got a score of {0} for the quiz {1}"
msgstr "" msgstr ""
#: frontend/src/pages/Assignments.vue:60
msgid "You have not created any assignments yet. To create a new assignment, click on the \"New\" button above."
msgstr ""
#: frontend/src/pages/Quizzes.vue:65 #: frontend/src/pages/Quizzes.vue:65
msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above." msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above."
msgstr "" msgstr ""
@@ -5571,7 +5675,7 @@ msgstr ""
msgid "You haven't enrolled for any courses" msgid "You haven't enrolled for any courses"
msgstr "" msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:142 #: frontend/src/components/CourseCardOverlay.vue:146
msgid "You need to login first to enroll for this course" msgid "You need to login first to enroll for this course"
msgstr "" msgstr ""
@@ -5584,7 +5688,7 @@ msgstr ""
msgid "You've applied to become a mentor for this course. Your request is currently under review." msgid "You've applied to become a mentor for this course. Your request is currently under review."
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:15 #: frontend/src/components/Assignment.vue:55
msgid "You've successfully submitted the assignment." msgid "You've successfully submitted the assignment."
msgstr "" msgstr ""
@@ -5628,7 +5732,7 @@ msgstr ""
msgid "Your score is" msgid "Your score is"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:227 #: frontend/src/components/Quiz.vue:229
msgid "Your submission has been successfully saved. The instructor will review and grade it shortly, and you'll be notified of your final result." msgid "Your submission has been successfully saved. The instructor will review and grade it shortly, and you'll be notified of your final result."
msgstr "" msgstr ""
@@ -5677,7 +5781,7 @@ msgstr ""
msgid "posted by" msgid "posted by"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:390 #: frontend/src/pages/QuizForm.vue:386
msgid "question_detail" msgid "question_detail"
msgstr "" msgstr ""
@@ -5693,7 +5797,7 @@ msgstr ""
msgid "you can" msgid "you can"
msgstr "" msgstr ""
#: lms/lms/api.py:749 lms/lms/api.py:757 #: lms/lms/api.py:751 lms/lms/api.py:759
msgid "{0} Settings not found" msgid "{0} Settings not found"
msgstr "" msgstr ""

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-12-27 16:04+0000\n" "POT-Creation-Date: 2025-01-03 16:04+0000\n"
"PO-Revision-Date: 2024-12-31 03:29\n" "PO-Revision-Date: 2025-01-07 04:09\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"
@@ -156,7 +156,7 @@ msgstr ""
msgid "Add a new question" msgid "Add a new question"
msgstr "" msgstr ""
#: frontend/src/components/QuizPlugin.vue:11 #: frontend/src/components/AssessmentPlugin.vue:11
msgid "Add a quiz to your lesson" msgid "Add a quiz to your lesson"
msgstr "" msgstr ""
@@ -164,6 +164,10 @@ msgstr ""
msgid "Add an assessment" msgid "Add an assessment"
msgstr "" msgstr ""
#: frontend/src/components/AssessmentPlugin.vue:14
msgid "Add an assignment to your lesson"
msgstr ""
#: frontend/src/components/Modals/Question.vue:18 #: frontend/src/components/Modals/Question.vue:18
msgid "Add an existing question" msgid "Add an existing question"
msgstr "" msgstr ""
@@ -176,7 +180,7 @@ msgstr "Fügen Sie mindestens eine mögliche Antwort für diese Frage hinzu: {0}
msgid "Add web page to sidebar" msgid "Add web page to sidebar"
msgstr "Webseite zur Seitenleiste hinzufügen" msgstr "Webseite zur Seitenleiste hinzufügen"
#: frontend/src/pages/AssignmentSubmission.vue:44 #: frontend/src/components/Assignment.vue:65
msgid "Add your assignment as {0}" msgid "Add your assignment as {0}"
msgstr "Aufgabe als {0} hinzufügen" msgstr "Aufgabe als {0} hinzufügen"
@@ -393,6 +397,8 @@ msgstr "Zuweisen"
#. Label of the section_break_16 (Section Break) field in DocType 'Course #. Label of the section_break_16 (Section Break) field in DocType 'Course
#. Lesson' #. Lesson'
#. Label of the assignment (Link) field in DocType 'LMS Assignment Submission' #. Label of the assignment (Link) field in DocType 'LMS Assignment Submission'
#: frontend/src/pages/AssignmentSubmissionList.vue:12
#: frontend/src/utils/assignment.js:25
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/templates/assignment.html:3 #: lms/templates/assignment.html:3
@@ -417,15 +423,23 @@ msgstr "Vorlage für Aufgabeneinreichung"
msgid "Assignment Title" msgid "Assignment Title"
msgstr "Aufgabentitel" msgstr "Aufgabentitel"
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:31 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:33
msgid "Assignment for Lesson {0} by {1} already exists." msgid "Assignment for Lesson {0} by {1} already exists."
msgstr "Die Aufgabe für Lektion {0} von {1} existiert bereits." msgstr "Die Aufgabe für Lektion {0} von {1} existiert bereits."
#: frontend/src/pages/AssignmentForm.vue:155
msgid "Assignment saved successfully"
msgstr ""
#. Description of the 'Question' (Small Text) field in DocType 'Course Lesson' #. Description of the 'Question' (Small Text) field in DocType 'Course Lesson'
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Assignment will appear at the bottom of the lesson." msgid "Assignment will appear at the bottom of the lesson."
msgstr "Die Aufgabe wird unten in der Lektion angezeigt." msgstr "Die Aufgabe wird unten in der Lektion angezeigt."
#: frontend/src/pages/AssignmentForm.vue:174
msgid "Assignments"
msgstr "Zuordnungen"
#: lms/lms/doctype/lms_question/lms_question.py:43 #: lms/lms/doctype/lms_question/lms_question.py:43
msgid "At least one option must be correct for this question." msgid "At least one option must be correct for this question."
msgstr "Bei dieser Frage muss mindestens eine Antwortmöglichkeit richtig sein." msgstr "Bei dieser Frage muss mindestens eine Antwortmöglichkeit richtig sein."
@@ -746,6 +760,10 @@ msgstr "Zertifizierte Teilnehmer"
msgid "Change" msgid "Change"
msgstr "Ändern" msgstr "Ändern"
#: frontend/src/components/Assignment.vue:316
msgid "Changes saved successfully"
msgstr ""
#. Label of the chapter (Link) field in DocType 'Chapter Reference' #. Label of the chapter (Link) field in DocType 'Chapter Reference'
#. Label of the chapter (Link) field in DocType 'LMS Course Progress' #. Label of the chapter (Link) field in DocType 'LMS Course Progress'
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
@@ -774,7 +792,7 @@ msgstr ""
msgid "Chapters" msgid "Chapters"
msgstr "Kapitel" msgstr "Kapitel"
#: frontend/src/components/Quiz.vue:201 lms/templates/quiz/quiz.html:120 #: frontend/src/components/Quiz.vue:203 lms/templates/quiz/quiz.html:120
msgid "Check" msgid "Check"
msgstr "Prüfen" msgstr "Prüfen"
@@ -797,7 +815,7 @@ msgstr ""
msgid "Choices" msgid "Choices"
msgstr "Auswahlmöglichkeiten" msgstr "Auswahlmöglichkeiten"
#: frontend/src/components/Quiz.vue:581 lms/templates/quiz/quiz.html:53 #: frontend/src/components/Quiz.vue:587 lms/templates/quiz/quiz.html:53
msgid "Choose all answers that apply" msgid "Choose all answers that apply"
msgstr "Wählen Sie alle zutreffenden Antworten aus" msgstr "Wählen Sie alle zutreffenden Antworten aus"
@@ -805,7 +823,7 @@ msgstr "Wählen Sie alle zutreffenden Antworten aus"
msgid "Choose an icon" msgid "Choose an icon"
msgstr "Symbol auswählen" msgstr "Symbol auswählen"
#: frontend/src/components/Quiz.vue:582 lms/templates/quiz/quiz.html:53 #: frontend/src/components/Quiz.vue:588 lms/templates/quiz/quiz.html:53
msgid "Choose one answer" msgid "Choose one answer"
msgstr "Wählen Sie eine Antwort" msgstr "Wählen Sie eine Antwort"
@@ -814,12 +832,16 @@ msgstr "Wählen Sie eine Antwort"
msgid "City" msgid "City"
msgstr "Ort" msgstr "Ort"
#: frontend/src/components/Controls/Link.vue:49
msgid "Clear"
msgstr "Löschen"
#. Option for the 'Role Preference' (Select) field in DocType 'User' #. Option for the 'Role Preference' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
msgid "Clearly Defined Role" msgid "Clearly Defined Role"
msgstr "" msgstr ""
#: frontend/src/components/LessonHelp.vue:15 #: frontend/src/components/LessonHelp.vue:30
msgid "Click on the add icon in the editor and select Quiz from the menu. It opens up a dialog, where you can either select a quiz from the list or create a new quiz. When you select the Create New option it redirects you to the quiz creation page." msgid "Click on the add icon in the editor and select Quiz from the menu. It opens up a dialog, where you can either select a quiz from the list or create a new quiz. When you select the Create New option it redirects you to the quiz creation page."
msgstr "" msgstr ""
@@ -917,6 +939,7 @@ msgstr "Farbe"
#. Label of the comments (Small Text) field in DocType 'LMS Assignment #. Label of the comments (Small Text) field in DocType 'LMS Assignment
#. Submission' #. Submission'
#. Label of the comments (Small Text) field in DocType 'LMS Mentor Request' #. Label of the comments (Small Text) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Assignment.vue:161
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
#: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
@@ -924,6 +947,10 @@ msgstr "Farbe"
msgid "Comments" msgid "Comments"
msgstr "Kommentare" msgstr "Kommentare"
#: frontend/src/components/Assignment.vue:139
msgid "Comments by Evaluator"
msgstr ""
#. Label of the company (Data) field in DocType 'LMS Job Application' #. Label of the company (Data) field in DocType 'LMS Job Application'
#. Label of the company (Data) field in DocType 'Work Experience' #. Label of the company (Data) field in DocType 'Work Experience'
#: lms/job/doctype/lms_job_application/lms_job_application.json #: lms/job/doctype/lms_job_application/lms_job_application.json
@@ -986,7 +1013,7 @@ msgstr ""
msgid "Completed" msgid "Completed"
msgstr "Abgeschlossen" msgstr "Abgeschlossen"
#: frontend/src/components/BatchStudents.vue:325 #: frontend/src/components/BatchStudents.vue:353
msgid "Completed by Students" msgid "Completed by Students"
msgstr "" msgstr ""
@@ -1036,7 +1063,7 @@ msgid "Continue Learning"
msgstr "" msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:117 #: frontend/src/pages/Jobs.vue:120
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Contract" msgid "Contract"
msgstr "Vertrag" msgstr "Vertrag"
@@ -1045,7 +1072,7 @@ msgstr "Vertrag"
msgid "Cookie Policy" msgid "Cookie Policy"
msgstr "Cookie-Richtlinie" msgstr "Cookie-Richtlinie"
#: frontend/src/components/LessonHelp.vue:53 #: frontend/src/components/LessonHelp.vue:68
msgid "Copy the URL of the video from YouTube and paste it in the editor." msgid "Copy the URL of the video from YouTube and paste it in the editor."
msgstr "" msgstr ""
@@ -1057,7 +1084,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Exercise Latest #. Option for the 'Status' (Select) field in DocType 'Exercise Latest
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'Exercise Submission' #. Option for the 'Status' (Select) field in DocType 'Exercise Submission'
#: frontend/src/components/Quiz.vue:161 #: frontend/src/components/Quiz.vue:163
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
#: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json
msgid "Correct" msgid "Correct"
@@ -1197,7 +1224,7 @@ msgstr "Kursliste"
msgid "Course Name" msgid "Course Name"
msgstr "Kursname" msgstr "Kursname"
#: frontend/src/pages/CourseDetail.vue:74 #: frontend/src/pages/CourseDetail.vue:76
msgid "Course Outline" msgid "Course Outline"
msgstr "" msgstr ""
@@ -1322,6 +1349,10 @@ msgstr ""
msgid "Create a new question" msgid "Create a new question"
msgstr "" msgstr ""
#: frontend/src/pages/Assignments.vue:163
msgid "Created"
msgstr "Erstellt"
#. Label of the currency (Link) field in DocType 'Web Form' #. Label of the currency (Link) field in DocType 'Web Form'
#. Label of the currency (Link) field in DocType 'LMS Batch' #. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course' #. Label of the currency (Link) field in DocType 'LMS Course'
@@ -1487,8 +1518,8 @@ msgid "Desk"
msgstr "" msgstr ""
#: frontend/src/components/Modals/DiscussionModal.vue:22 #: frontend/src/components/Modals/DiscussionModal.vue:22
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:28 #: frontend/src/pages/AssignmentForm.vue:27 frontend/src/pages/BatchForm.vue:14
#: frontend/src/pages/QuizForm.vue:42 #: frontend/src/pages/CourseForm.vue:28 frontend/src/pages/QuizForm.vue:42
msgid "Details" msgid "Details"
msgstr "Details" msgstr "Details"
@@ -1619,6 +1650,10 @@ msgstr "E-Mail wurde versandt"
msgid "Email Templates" msgid "Email Templates"
msgstr "E-Mail-Vorlagen" msgstr "E-Mail-Vorlagen"
#: frontend/src/components/BatchStudents.vue:409
msgid "Email copied to clipboard"
msgstr ""
#. Label of the show_emails (Check) field in DocType 'LMS Settings' #. Label of the show_emails (Check) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Emails" msgid "Emails"
@@ -1699,8 +1734,8 @@ msgid "Enroll Now"
msgstr "" msgstr ""
#: frontend/src/components/CourseCard.vue:43 #: frontend/src/components/CourseCard.vue:43
#: frontend/src/components/CourseCardOverlay.vue:103 #: frontend/src/components/CourseCardOverlay.vue:104
#: frontend/src/pages/CourseDetail.vue:31 #: frontend/src/pages/CourseDetail.vue:33
msgid "Enrolled Students" msgid "Enrolled Students"
msgstr "Eingeschriebene Studenten" msgstr "Eingeschriebene Studenten"
@@ -1717,7 +1752,7 @@ msgstr ""
msgid "Enrollment Count" msgid "Enrollment Count"
msgstr "Anzahl der Einschreibungen" msgstr "Anzahl der Einschreibungen"
#: lms/lms/utils.py:1720 #: lms/lms/utils.py:1726
msgid "Enrollment Failed" msgid "Enrollment Failed"
msgstr "" msgstr ""
@@ -1733,7 +1768,7 @@ msgstr "Einschreibungen"
msgid "Enter Client Id and Client Secret in Google Settings to send calendar invites for evaluations." msgid "Enter Client Id and Client Secret in Google Settings to send calendar invites for evaluations."
msgstr "Geben Sie die Client-Id und das Client-Geheimnis in den Google-Einstellungen ein, um Kalendereinladungen für Bewertungen zu versenden." msgstr "Geben Sie die Client-Id und das Client-Geheimnis in den Google-Einstellungen ein, um Kalendereinladungen für Bewertungen zu versenden."
#: frontend/src/pages/AssignmentSubmission.vue:96 #: frontend/src/components/Assignment.vue:110
msgid "Enter a URL" msgid "Enter a URL"
msgstr "Gib eine URL ein" msgstr "Gib eine URL ein"
@@ -1745,6 +1780,7 @@ msgstr ""
msgid "Enter the correct answer" msgid "Enter the correct answer"
msgstr "Geben Sie die richtige Antwort ein" msgstr "Geben Sie die richtige Antwort ein"
#: frontend/src/components/Assignment.vue:268
#: frontend/src/components/Modals/AnnouncementModal.vue:105 #: frontend/src/components/Modals/AnnouncementModal.vue:105
#: frontend/src/components/Modals/BulkCertificates.vue:115 #: frontend/src/components/Modals/BulkCertificates.vue:115
#: frontend/src/components/Modals/ChapterModal.vue:159 #: frontend/src/components/Modals/ChapterModal.vue:159
@@ -1755,8 +1791,9 @@ msgstr "Geben Sie die richtige Antwort ein"
#: frontend/src/components/Modals/Question.vue:326 #: frontend/src/components/Modals/Question.vue:326
#: frontend/src/components/Modals/StudentModal.vue:69 #: frontend/src/components/Modals/StudentModal.vue:69
#: frontend/src/components/SettingDetails.vue:62 #: frontend/src/components/SettingDetails.vue:62
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350 #: frontend/src/pages/AssignmentForm.vue:139
#: frontend/src/pages/QuizForm.vue:365 #: frontend/src/pages/AssignmentForm.vue:159 frontend/src/pages/Billing.vue:264
#: frontend/src/pages/QuizForm.vue:346 frontend/src/pages/QuizForm.vue:361
#: frontend/src/pages/QuizSubmission.vue:141 #: frontend/src/pages/QuizSubmission.vue:141
msgid "Error" msgid "Error"
msgstr "Fehler" msgstr "Fehler"
@@ -1919,7 +1956,7 @@ msgstr "Fehler"
msgid "Featured" msgid "Featured"
msgstr "Vorgestellt" msgstr "Vorgestellt"
#: frontend/src/pages/AssignmentSubmission.vue:21 #: frontend/src/components/Assignment.vue:61
msgid "Feel free to make edits to your submission if needed." msgid "Feel free to make edits to your submission if needed."
msgstr "Bei Bedarf können Sie Änderungen an Ihrer Einreichung vornehmen." msgstr "Bei Bedarf können Sie Änderungen an Ihrer Einreichung vornehmen."
@@ -1938,6 +1975,10 @@ msgstr ""
msgid "File Type" msgid "File Type"
msgstr "Dateityp" msgstr "Dateityp"
#: frontend/src/pages/Jobs.vue:47
msgid "Find the perfect job for you"
msgstr ""
#: frontend/src/components/Members.vue:38 #: frontend/src/components/Members.vue:38
#: frontend/src/components/Modals/EditProfile.vue:59 #: frontend/src/components/Modals/EditProfile.vue:59
msgid "First Name" msgid "First Name"
@@ -1953,7 +1994,7 @@ msgstr ""
msgid "Flexible Time" msgid "Flexible Time"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:463 #: frontend/src/pages/QuizForm.vue:459
msgid "Form to create and edit quizzes" msgid "Form to create and edit quizzes"
msgstr "" msgstr ""
@@ -1967,7 +2008,7 @@ msgid "Free"
msgstr "Frei" msgstr "Frei"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:118 #: frontend/src/pages/Jobs.vue:121
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Freelance" msgid "Freelance"
msgstr "" msgstr ""
@@ -2009,7 +2050,7 @@ msgid "Full Name"
msgstr "Vollständiger Name" msgstr "Vollständiger Name"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:115 #: frontend/src/pages/Jobs.vue:118
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Full Time" msgid "Full Time"
msgstr "Vollzeit" msgstr "Vollzeit"
@@ -2069,6 +2110,7 @@ msgid "Google Meet Link"
msgstr "Google Meet-Link" msgstr "Google Meet-Link"
#. 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:154
#: lms/lms/doctype/education_detail/education_detail.json #: lms/lms/doctype/education_detail/education_detail.json
msgid "Grade" msgid "Grade"
msgstr "Stufe" msgstr "Stufe"
@@ -2083,6 +2125,10 @@ msgstr "Notenvergabe"
msgid "Grade Type" msgid "Grade Type"
msgstr "Notentyp" msgstr "Notentyp"
#: frontend/src/components/Assignment.vue:149
msgid "Grading"
msgstr ""
#. Label of the grant_only_once (Check) field in DocType 'LMS Badge' #. Label of the grant_only_once (Check) field in DocType 'LMS Badge'
#: lms/lms/doctype/lms_badge/lms_badge.json #: lms/lms/doctype/lms_badge/lms_badge.json
msgid "Grant only once" msgid "Grant only once"
@@ -2146,7 +2192,7 @@ msgstr "Hinweise"
msgid "Host" msgid "Host"
msgstr "Gastgeber" msgstr "Gastgeber"
#: frontend/src/components/LessonHelp.vue:9 #: frontend/src/components/LessonHelp.vue:24
msgid "How to add a Quiz?" msgid "How to add a Quiz?"
msgstr "" msgstr ""
@@ -2168,7 +2214,7 @@ msgstr ""
msgid "I am unavailable" msgid "I am unavailable"
msgstr "Ich bin nicht verfügbar" msgstr "Ich bin nicht verfügbar"
#: frontend/src/pages/QuizForm.vue:384 #: frontend/src/pages/QuizForm.vue:380
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
@@ -2178,7 +2224,7 @@ msgstr "ID"
msgid "Icon" msgid "Icon"
msgstr "Symbol" msgstr "Symbol"
#: frontend/src/components/LessonHelp.vue:68 #: frontend/src/components/LessonHelp.vue:11
msgid "If Include in Preview is enabled for a lesson then the lesson will also be accessible to non logged in users." msgid "If Include in Preview is enabled for a lesson then the lesson will also be accessible to non logged in users."
msgstr "" msgstr ""
@@ -2261,7 +2307,7 @@ msgstr "Unvollständig"
#. Option for the 'Status' (Select) field in DocType 'Exercise Latest #. Option for the 'Status' (Select) field in DocType 'Exercise Latest
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'Exercise Submission' #. Option for the 'Status' (Select) field in DocType 'Exercise Submission'
#: frontend/src/components/Quiz.vue:166 #: frontend/src/components/Quiz.vue:168
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
#: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json
msgid "Incorrect" msgid "Incorrect"
@@ -2469,7 +2515,7 @@ msgstr "Stellenbezeichnung"
msgid "Jobs" msgid "Jobs"
msgstr "freie Stellen" msgstr "freie Stellen"
#: frontend/src/components/LiveClass.vue:55 #: frontend/src/components/LiveClass.vue:58
#: lms/templates/upcoming_evals.html:15 #: lms/templates/upcoming_evals.html:15
msgid "Join" msgid "Join"
msgstr "Beitreten" msgstr "Beitreten"
@@ -2759,7 +2805,7 @@ msgstr "Titel der Unterrichtseinheit"
#. Group in Course Chapter's connections #. Group in Course Chapter's connections
#. Label of the lessons (Data) field in DocType 'LMS Course' #. Label of the lessons (Data) field in DocType 'LMS Course'
#: frontend/src/components/CourseCard.vue:34 #: frontend/src/components/CourseCard.vue:34
#: frontend/src/components/CourseCardOverlay.vue:96 #: frontend/src/components/CourseCardOverlay.vue:97
#: lms/lms/doctype/course_chapter/course_chapter.json #: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "Lessons" msgid "Lessons"
@@ -2825,6 +2871,7 @@ msgid "LiveCode URL"
msgstr "" msgstr ""
#: frontend/src/components/Members.vue:106 #: frontend/src/components/Members.vue:106
#: frontend/src/pages/Assignments.vue:71
#: frontend/src/pages/QuizSubmissionList.vue:39 #: frontend/src/pages/QuizSubmissionList.vue:39
#: frontend/src/pages/Quizzes.vue:51 #: frontend/src/pages/Quizzes.vue:51
msgid "Load More" msgid "Load More"
@@ -2854,6 +2901,7 @@ msgstr "Ort"
msgid "Location Preference" msgid "Location Preference"
msgstr "" msgstr ""
#: frontend/src/components/AssignmentBlock.vue:13
#: frontend/src/components/NoPermission.vue:28 #: frontend/src/components/NoPermission.vue:28
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:175 #: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:175
#: frontend/src/pages/Lesson.vue:24 #: frontend/src/pages/Lesson.vue:24
@@ -2913,7 +2961,7 @@ msgstr "Als gelesen markieren"
#. Label of the marks (Int) field in DocType 'LMS Quiz Result' #. Label of the marks (Int) field in DocType 'LMS Quiz Result'
#: frontend/src/components/Modals/Question.vue:50 #: frontend/src/components/Modals/Question.vue:50
#: frontend/src/components/Modals/Question.vue:99 #: frontend/src/components/Modals/Question.vue:99
#: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:394 #: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:390
#: frontend/src/pages/QuizSubmission.vue:59 #: frontend/src/pages/QuizSubmission.vue:59
#: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json #: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json
#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json
@@ -2970,6 +3018,7 @@ msgstr "Mittel:"
#. Label of the member (Link) field in DocType 'LMS Payment' #. Label of the member (Link) field in DocType 'LMS Payment'
#. Label of the member (Link) field in DocType 'LMS Program Member' #. Label of the member (Link) field in DocType 'LMS Program Member'
#. Label of the member (Link) field in DocType 'LMS Quiz Submission' #. Label of the member (Link) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/AssignmentSubmissionList.vue:14
#: frontend/src/pages/QuizSubmission.vue:31 #: frontend/src/pages/QuizSubmission.vue:31
#: frontend/src/pages/QuizSubmissionList.vue:86 #: frontend/src/pages/QuizSubmissionList.vue:86
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
@@ -3140,11 +3189,11 @@ msgstr ""
msgid "Modified By" msgid "Modified By"
msgstr "Geändert von" msgstr "Geändert von"
#: lms/lms/api.py:199 #: lms/lms/api.py:201
msgid "Module Name is incorrect or does not exist." msgid "Module Name is incorrect or does not exist."
msgstr "" msgstr ""
#: lms/lms/api.py:195 #: lms/lms/api.py:197
msgid "Module is incorrect." msgid "Module is incorrect."
msgstr "" msgstr ""
@@ -3173,12 +3222,17 @@ msgid "My calendar"
msgstr "Mein Kalender" msgstr "Mein Kalender"
#. Option for the 'Event' (Select) field in DocType 'LMS Badge' #. Option for the 'Event' (Select) field in DocType 'LMS Badge'
#: frontend/src/pages/Batches.vue:30 frontend/src/pages/Courses.vue:45 #: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:30
#: frontend/src/pages/Programs.vue:14 lms/lms/doctype/lms_badge/lms_badge.json #: frontend/src/pages/Courses.vue:45 frontend/src/pages/Programs.vue:14
#: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New" msgid "New"
msgstr "Neu" msgstr "Neu"
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:41 #: frontend/src/pages/AssignmentForm.vue:178
msgid "New Assignment"
msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:43
msgid "New Assignment Submission" msgid "New Assignment Submission"
msgstr "" msgstr ""
@@ -3214,7 +3268,7 @@ msgstr ""
msgid "New Question" msgid "New Question"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:454 frontend/src/pages/QuizForm.vue:462 #: frontend/src/pages/QuizForm.vue:450 frontend/src/pages/QuizForm.vue:458
#: frontend/src/pages/Quizzes.vue:18 #: frontend/src/pages/Quizzes.vue:18
msgid "New Quiz" msgid "New Quiz"
msgstr "" msgstr ""
@@ -3236,7 +3290,7 @@ msgstr ""
msgid "New {0}" msgid "New {0}"
msgstr "Neu {0}" msgstr "Neu {0}"
#: frontend/src/components/Quiz.vue:209 frontend/src/pages/Lesson.vue:84 #: frontend/src/components/Quiz.vue:211 frontend/src/pages/Lesson.vue:84
msgid "Next" msgid "Next"
msgstr "Weiter" msgstr "Weiter"
@@ -3244,7 +3298,7 @@ msgstr "Weiter"
msgid "Next Question" msgid "Next Question"
msgstr "Nächste Frage" msgstr "Nächste Frage"
#: frontend/src/components/Assessments.vue:66 lms/templates/assessments.html:58 #: frontend/src/components/Assessments.vue:75 lms/templates/assessments.html:58
msgid "No Assessments" msgid "No Assessments"
msgstr "" msgstr ""
@@ -3265,6 +3319,10 @@ msgstr "Keine bevorstehenden Bewertungen"
msgid "No announcements" msgid "No announcements"
msgstr "Keine Ankündigungen" msgstr "Keine Ankündigungen"
#: frontend/src/pages/Assignments.vue:56
msgid "No assignments found"
msgstr ""
#: frontend/src/pages/Batches.vue:125 #: frontend/src/pages/Batches.vue:125
msgid "No batches found" msgid "No batches found"
msgstr "" msgstr ""
@@ -3293,11 +3351,11 @@ msgstr "Keine Kurse in Überprüfung"
msgid "No introduction" msgid "No introduction"
msgstr "Keine Einführung" msgstr "Keine Einführung"
#: frontend/src/pages/Jobs.vue:60 #: frontend/src/pages/Jobs.vue:63
msgid "No jobs posted" msgid "No jobs posted"
msgstr "Keine Stellen ausgeschrieben" msgstr "Keine Stellen ausgeschrieben"
#: frontend/src/components/LiveClass.vue:61 #: frontend/src/components/LiveClass.vue:71
msgid "No live classes scheduled" msgid "No live classes scheduled"
msgstr "Keine Live-Kurse geplant" msgstr "Keine Live-Kurse geplant"
@@ -3313,6 +3371,10 @@ msgstr ""
msgid "No slots available for this date." msgid "No slots available for this date."
msgstr "Für dieses Datum sind keine Plätze verfügbar." msgstr "Für dieses Datum sind keine Plätze verfügbar."
#: frontend/src/pages/AssignmentSubmissionList.vue:67
msgid "No submissions"
msgstr ""
#: frontend/src/components/UpcomingEvaluations.vue:39 #: frontend/src/components/UpcomingEvaluations.vue:39
msgid "No upcoming evaluations." msgid "No upcoming evaluations."
msgstr "Keine bevorstehenden Bewertungen." msgstr "Keine bevorstehenden Bewertungen."
@@ -3361,6 +3423,7 @@ msgstr "Nicht bewertet"
msgid "Not Permitted" msgid "Not Permitted"
msgstr "Nicht zulässig" msgstr "Nicht zulässig"
#: frontend/src/components/Assignment.vue:33
#: frontend/src/components/BrandSettings.vue:10 #: frontend/src/components/BrandSettings.vue:10
#: frontend/src/components/PaymentSettings.vue:9 #: frontend/src/components/PaymentSettings.vue:9
#: frontend/src/components/SettingDetails.vue:10 #: frontend/src/components/SettingDetails.vue:10
@@ -3404,7 +3467,7 @@ msgstr "Offline"
msgid "Once again, congratulations on this significant accomplishment." msgid "Once again, congratulations on this significant accomplishment."
msgstr "Nochmals herzlichen Glückwunsch zu dieser bedeutenden Leistung." msgstr "Nochmals herzlichen Glückwunsch zu dieser bedeutenden Leistung."
#: frontend/src/pages/AssignmentSubmission.vue:17 #: frontend/src/components/Assignment.vue:57
msgid "Once the moderator grades your submission, you'll find the details here." msgid "Once the moderator grades your submission, you'll find the details here."
msgstr "Sobald der Moderator Ihren Beitrag bewertet hat, finden Sie hier die Details." msgstr "Sobald der Moderator Ihren Beitrag bewertet hat, finden Sie hier die Details."
@@ -3421,7 +3484,7 @@ msgstr ""
msgid "Only files of type {0} will be accepted." msgid "Only files of type {0} will be accepted."
msgstr "Es werden nur Dateien vom Typ {0} akzeptiert." msgstr "Es werden nur Dateien vom Typ {0} akzeptiert."
#: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:527 #: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:529
msgid "Only image file is allowed." msgid "Only image file is allowed."
msgstr "" msgstr ""
@@ -3550,7 +3613,7 @@ msgid "Pan Number"
msgstr "" msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:116 #: frontend/src/pages/Jobs.vue:119
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Part Time" msgid "Part Time"
msgstr "Teilzeit" msgstr "Teilzeit"
@@ -3681,7 +3744,7 @@ msgstr "Prozentsatz (z. B. 70 %)"
msgid "Phone Number" msgid "Phone Number"
msgstr "Telefonnummer" msgstr "Telefonnummer"
#: frontend/src/components/CourseCardOverlay.vue:141 #: frontend/src/components/CourseCardOverlay.vue:145
msgid "Please Login" msgid "Please Login"
msgstr "" msgstr ""
@@ -3701,7 +3764,7 @@ msgstr "Bitte überprüfen Sie Ihren Posteingang. Wir haben Ihnen eine E-Mail mi
msgid "Please click on the following button to set your new password" msgid "Please click on the following button to set your new password"
msgstr "Bitte klicken Sie auf die folgende Schaltfläche, um Ihr neues Passwort festzulegen" msgstr "Bitte klicken Sie auf die folgende Schaltfläche, um Ihr neues Passwort festzulegen"
#: lms/lms/utils.py:1842 lms/lms/utils.py:1846 #: lms/lms/utils.py:1848 lms/lms/utils.py:1852
msgid "Please complete the previous courses in the program to enroll in this course." msgid "Please complete the previous courses in the program to enroll in this course."
msgstr "" msgstr ""
@@ -3721,8 +3784,8 @@ msgstr ""
msgid "Please enter a title." msgid "Please enter a title."
msgstr "" msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:38 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:40
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:98 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:122
msgid "Please enter a valid URL." msgid "Please enter a valid URL."
msgstr "Bitte geben Sie eine gültige URL ein." msgstr "Bitte geben Sie eine gültige URL ein."
@@ -3730,7 +3793,7 @@ msgstr "Bitte geben Sie eine gültige URL ein."
msgid "Please enter a valid time in the format HH:mm." msgid "Please enter a valid time in the format HH:mm."
msgstr "" msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:92 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:116
msgid "Please enter the URL for assignment submission." msgid "Please enter the URL for assignment submission."
msgstr "Bitte geben Sie die URL zur Aufgabeneinreichung ein." msgstr "Bitte geben Sie die URL zur Aufgabeneinreichung ein."
@@ -3750,6 +3813,10 @@ msgstr ""
msgid "Please let us know where you heard about us from." msgid "Please let us know where you heard about us from."
msgstr "" msgstr ""
#: frontend/src/components/AssignmentBlock.vue:9
msgid "Please login to access the assignment."
msgstr ""
#: frontend/src/components/QuizBlock.vue:5 #: frontend/src/components/QuizBlock.vue:5
msgid "Please login to access the quiz." msgid "Please login to access the quiz."
msgstr "Bitte melden Sie sich an, um auf das Quiz zuzugreifen." msgstr "Bitte melden Sie sich an, um auf das Quiz zuzugreifen."
@@ -3758,7 +3825,7 @@ msgstr "Bitte melden Sie sich an, um auf das Quiz zuzugreifen."
msgid "Please login to access this page." msgid "Please login to access this page."
msgstr "Bitte melden Sie sich an, um auf diese Seite zuzugreifen." msgstr "Bitte melden Sie sich an, um auf diese Seite zuzugreifen."
#: lms/lms/api.py:191 #: lms/lms/api.py:193
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."
@@ -3795,7 +3862,7 @@ msgstr ""
msgid "Please upload a SCORM package" msgid "Please upload a SCORM package"
msgstr "" msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:95 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:119
msgid "Please upload the assignment file." msgid "Please upload the assignment file."
msgstr "" msgstr ""
@@ -4003,9 +4070,9 @@ msgstr "Veröffentlicht am"
#. Label of the question (Text Editor) field in DocType 'LMS Question' #. Label of the question (Text Editor) field in DocType 'LMS Question'
#. Label of the question (Link) field in DocType 'LMS Quiz Question' #. Label of the question (Link) field in DocType 'LMS Quiz Question'
#. Label of the question (Text) field in DocType 'LMS Quiz Result' #. Label of the question (Text) field in DocType 'LMS Quiz Result'
#: frontend/src/components/Assignment.vue:17
#: frontend/src/components/Modals/Question.vue:38 #: frontend/src/components/Modals/Question.vue:38
#: frontend/src/pages/AssignmentSubmission.vue:26 #: frontend/src/pages/AssignmentForm.vue:45 frontend/src/pages/QuizForm.vue:385
#: frontend/src/pages/QuizForm.vue:389
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment/lms_assignment.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
@@ -4042,7 +4109,7 @@ msgstr ""
msgid "Question {0}" msgid "Question {0}"
msgstr "Frage {0}" msgstr "Frage {0}"
#: frontend/src/components/Quiz.vue:186 #: frontend/src/components/Quiz.vue:188
msgid "Question {0} of {1}" msgid "Question {0} of {1}"
msgstr "Frage {0} von {1}" msgstr "Frage {0} von {1}"
@@ -4051,7 +4118,7 @@ msgstr "Frage {0} von {1}"
msgid "Questions" msgid "Questions"
msgstr "Fragen" msgstr "Fragen"
#: frontend/src/pages/QuizForm.vue:431 #: frontend/src/pages/QuizForm.vue:427
msgid "Questions deleted successfully" msgid "Questions deleted successfully"
msgstr "" msgstr ""
@@ -4079,7 +4146,7 @@ msgstr "Quiz-Einreichung"
msgid "Quiz Submissions" msgid "Quiz Submissions"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:223 #: frontend/src/components/Quiz.vue:225
msgid "Quiz Summary" msgid "Quiz Summary"
msgstr "Quiz-Zusammenfassung" msgstr "Quiz-Zusammenfassung"
@@ -4088,7 +4155,7 @@ msgstr "Quiz-Zusammenfassung"
msgid "Quiz Title" msgid "Quiz Title"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:343 #: frontend/src/pages/QuizForm.vue:339
msgid "Quiz created successfully" msgid "Quiz created successfully"
msgstr "" msgstr ""
@@ -4096,7 +4163,7 @@ msgstr ""
msgid "Quiz is not available to Guest users. Please login to continue." msgid "Quiz is not available to Guest users. Please login to continue."
msgstr "Das Quiz ist für Gastbenutzer nicht verfügbar. Bitte melden Sie sich an, um fortzufahren." msgstr "Das Quiz ist für Gastbenutzer nicht verfügbar. Bitte melden Sie sich an, um fortzufahren."
#: frontend/src/pages/QuizForm.vue:362 #: frontend/src/pages/QuizForm.vue:358
msgid "Quiz updated successfully" msgid "Quiz updated successfully"
msgstr "" msgstr ""
@@ -4105,7 +4172,7 @@ msgstr ""
msgid "Quiz will appear at the bottom of the lesson." msgid "Quiz will appear at the bottom of the lesson."
msgstr "Das Quiz wird am Ende der Lektion angezeigt." msgstr "Das Quiz wird am Ende der Lektion angezeigt."
#: frontend/src/pages/QuizForm.vue:442 frontend/src/pages/Quizzes.vue:138 #: frontend/src/pages/QuizForm.vue:438 frontend/src/pages/Quizzes.vue:138
#: frontend/src/pages/Quizzes.vue:148 #: frontend/src/pages/Quizzes.vue:148
msgid "Quizzes" msgid "Quizzes"
msgstr "" msgstr ""
@@ -4113,7 +4180,7 @@ msgstr ""
#. Label of the rating (Rating) field in DocType 'LMS Certificate Evaluation' #. Label of the rating (Rating) field in DocType 'LMS Certificate Evaluation'
#. 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:108 #: frontend/src/components/CourseCardOverlay.vue:110
#: frontend/src/components/Modals/Event.vue:86 #: frontend/src/components/Modals/Event.vue:86
#: frontend/src/components/Modals/ReviewModal.vue:20 #: frontend/src/components/Modals/ReviewModal.vue:20
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -4127,10 +4194,6 @@ msgstr "Bewertung"
msgid "Rating cannot be 0" msgid "Rating cannot be 0"
msgstr "Bewertung kann nicht 0 sein" msgstr "Bewertung kann nicht 0 sein"
#: frontend/src/pages/AssignmentSubmission.vue:30
msgid "Read the question carefully before attempting the assignment."
msgstr "Lesen Sie die Frage sorgfältig durch, bevor Sie die Aufgabe bearbeiten."
#. Option for the 'Stage' (Select) field in DocType 'LMS Batch Old' #. Option for the 'Stage' (Select) field in DocType 'LMS Batch Old'
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
msgid "Ready" msgid "Ready"
@@ -4309,15 +4372,15 @@ msgstr ""
msgid "Saturday" msgid "Saturday"
msgstr "Samstag" msgstr "Samstag"
#: frontend/src/components/AssessmentPlugin.vue:34
#: frontend/src/components/Assignment.vue:43
#: frontend/src/components/Controls/CodeEditor.vue:25 #: frontend/src/components/Controls/CodeEditor.vue:25
#: frontend/src/components/Modals/Event.vue:101 #: frontend/src/components/Modals/Event.vue:101
#: frontend/src/components/Modals/Event.vue:129 #: frontend/src/components/Modals/Event.vue:129
#: frontend/src/components/QuizPlugin.vue:23 #: frontend/src/pages/AssignmentForm.vue:21 frontend/src/pages/BatchForm.vue:8
#: frontend/src/pages/AssignmentSubmission.vue:7 #: frontend/src/pages/CourseForm.vue:20 frontend/src/pages/JobCreation.vue:8
#: frontend/src/pages/BatchForm.vue:8 frontend/src/pages/CourseForm.vue:20 #: frontend/src/pages/LessonForm.vue:14 frontend/src/pages/ProgramForm.vue:7
#: frontend/src/pages/JobCreation.vue:8 frontend/src/pages/LessonForm.vue:14 #: frontend/src/pages/QuizForm.vue:34 frontend/src/pages/QuizSubmission.vue:14
#: frontend/src/pages/ProgramForm.vue:7 frontend/src/pages/QuizForm.vue:34
#: frontend/src/pages/QuizSubmission.vue:14
#: lms/public/js/common_functions.js:405 #: lms/public/js/common_functions.js:405
msgid "Save" msgid "Save"
msgstr "Speichern" msgstr "Speichern"
@@ -4359,6 +4422,10 @@ msgstr ""
msgid "Search" msgid "Search"
msgstr "Suchen" msgstr "Suchen"
#: frontend/src/pages/Assignments.vue:25
msgid "Search by title"
msgstr ""
#: frontend/src/components/Controls/IconPicker.vue:36 #: frontend/src/components/Controls/IconPicker.vue:36
msgid "Search for an icon" msgid "Search for an icon"
msgstr "" msgstr ""
@@ -4384,7 +4451,7 @@ msgstr ""
msgid "Select a question" msgid "Select a question"
msgstr "" msgstr ""
#: frontend/src/components/QuizPlugin.vue:17 #: frontend/src/components/AssessmentPlugin.vue:21
msgid "Select a quiz" msgid "Select a quiz"
msgstr "" msgstr ""
@@ -4392,6 +4459,10 @@ msgstr ""
msgid "Select a slot" msgid "Select a slot"
msgstr "" msgstr ""
#: frontend/src/components/AssessmentPlugin.vue:28
msgid "Select an assignment"
msgstr ""
#. Label of the send_calendar_invite_for_evaluations (Check) field in DocType #. Label of the send_calendar_invite_for_evaluations (Check) field in DocType
#. 'LMS Settings' #. 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -4583,7 +4654,7 @@ msgstr "Mitarbeiter"
msgid "Stage" msgid "Stage"
msgstr "Stufe" msgstr "Stufe"
#: frontend/src/components/LiveClass.vue:46 frontend/src/components/Quiz.vue:65 #: frontend/src/components/LiveClass.vue:50 frontend/src/components/Quiz.vue:65
#: lms/templates/quiz/quiz.html:39 #: lms/templates/quiz/quiz.html:39
msgid "Start" msgid "Start"
msgstr "Starten" msgstr "Starten"
@@ -4664,6 +4735,7 @@ msgstr "Statistiken"
#. Label of the status (Select) field in DocType 'LMS Course Progress' #. Label of the status (Select) field in DocType 'LMS Course Progress'
#. Label of the status (Select) field in DocType 'LMS Mentor Request' #. Label of the status (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:91 #: frontend/src/components/Modals/Event.vue:91
#: frontend/src/pages/AssignmentSubmissionList.vue:19
#: frontend/src/pages/JobCreation.vue:41 #: frontend/src/pages/JobCreation.vue:41
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/cohort/cohort.json
@@ -4724,7 +4796,7 @@ msgstr ""
msgid "Students" msgid "Students"
msgstr "Schüler" msgstr "Schüler"
#: frontend/src/components/BatchStudents.vue:282 #: frontend/src/components/BatchStudents.vue:310
msgid "Students deleted successfully" msgid "Students deleted successfully"
msgstr "" msgstr ""
@@ -4746,19 +4818,24 @@ msgstr "Untergruppe"
msgid "Subject" msgid "Subject"
msgstr "Betreff" msgstr "Betreff"
#: frontend/src/pages/AssignmentSubmission.vue:40 #: frontend/src/components/Assignment.vue:29
msgid "Submission" msgid "Submission"
msgstr "Einreichung" msgstr "Einreichung"
#: frontend/src/pages/QuizForm.vue:30 #: frontend/src/pages/AssignmentForm.vue:17 frontend/src/pages/QuizForm.vue:30
msgid "Submission List" msgid "Submission List"
msgstr "" msgstr ""
#: frontend/src/components/Assignment.vue:10
#: frontend/src/components/Assignment.vue:13
msgid "Submission by"
msgstr ""
#: frontend/src/components/Modals/AssessmentModal.vue:9 #: frontend/src/components/Modals/AssessmentModal.vue:9
#: frontend/src/components/Modals/BatchCourseModal.vue:9 #: frontend/src/components/Modals/BatchCourseModal.vue:9
#: frontend/src/components/Modals/EvaluationModal.vue:9 #: frontend/src/components/Modals/EvaluationModal.vue:9
#: frontend/src/components/Modals/Question.vue:338 #: frontend/src/components/Modals/Question.vue:338
#: frontend/src/components/Quiz.vue:214 lms/templates/assignment.html:9 #: frontend/src/components/Quiz.vue:216 lms/templates/assignment.html:9
#: lms/templates/livecode/extension_footer.html:25 #: lms/templates/livecode/extension_footer.html:25
#: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163 #: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163
#: lms/www/new-sign-up.html:32 #: lms/www/new-sign-up.html:32
@@ -4774,10 +4851,12 @@ msgstr ""
msgid "Submitted {0}" msgid "Submitted {0}"
msgstr "" msgstr ""
#: frontend/src/components/Assignment.vue:316
#: frontend/src/components/BatchCourses.vue:150 #: frontend/src/components/BatchCourses.vue:150
#: frontend/src/components/BatchOverlay.vue:135 #: frontend/src/components/BatchOverlay.vue:135
#: frontend/src/components/BatchStudents.vue:282 #: frontend/src/components/BatchStudents.vue:310
#: frontend/src/components/CourseCardOverlay.vue:161 #: frontend/src/components/BatchStudents.vue:409
#: frontend/src/components/CourseCardOverlay.vue:165
#: frontend/src/components/Modals/AnnouncementModal.vue:99 #: frontend/src/components/Modals/AnnouncementModal.vue:99
#: frontend/src/components/Modals/AssessmentModal.vue:73 #: frontend/src/components/Modals/AssessmentModal.vue:73
#: frontend/src/components/Modals/BulkCertificates.vue:121 #: frontend/src/components/Modals/BulkCertificates.vue:121
@@ -4787,11 +4866,12 @@ msgstr ""
#: frontend/src/components/Modals/Event.vue:310 #: frontend/src/components/Modals/Event.vue:310
#: frontend/src/components/Modals/Question.vue:264 #: frontend/src/components/Modals/Question.vue:264
#: frontend/src/components/Modals/Question.vue:315 #: frontend/src/components/Modals/Question.vue:315
#: frontend/src/pages/AssignmentForm.vue:155
#: frontend/src/pages/CourseForm.vue:461 frontend/src/pages/ProgramForm.vue:229 #: frontend/src/pages/CourseForm.vue:461 frontend/src/pages/ProgramForm.vue:229
#: frontend/src/pages/ProgramForm.vue:251 #: frontend/src/pages/ProgramForm.vue:251
#: frontend/src/pages/ProgramForm.vue:272 #: frontend/src/pages/ProgramForm.vue:272
#: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:343 #: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:339
#: frontend/src/pages/QuizForm.vue:362 frontend/src/pages/QuizForm.vue:431 #: frontend/src/pages/QuizForm.vue:358 frontend/src/pages/QuizForm.vue:427
msgid "Success" msgid "Success"
msgstr "Erfolg" msgstr "Erfolg"
@@ -4809,7 +4889,7 @@ msgstr "Zusammenfassung"
msgid "Sunday" msgid "Sunday"
msgstr "Sonntag" msgstr "Sonntag"
#: lms/lms/api.py:952 #: lms/lms/api.py:954
msgid "Suspicious pattern found in {0}: {1}" msgid "Suspicious pattern found in {0}: {1}"
msgstr "" msgstr ""
@@ -4924,6 +5004,10 @@ msgstr "Text"
msgid "Thanks and Regards" msgid "Thanks and Regards"
msgstr "Danke und Grüße" msgstr "Danke und Grüße"
#: lms/lms/utils.py:1755
msgid "The batch is full. Please contact the Administrator."
msgstr ""
#: lms/templates/emails/lms_course_interest.html:5 #: lms/templates/emails/lms_course_interest.html:5
msgid "The course {0} is now available on {1}." msgid "The course {0} is now available on {1}."
msgstr "" msgstr ""
@@ -4964,14 +5048,22 @@ msgstr ""
msgid "There are no seats available in this batch." msgid "There are no seats available in this batch."
msgstr "" msgstr ""
#: frontend/src/components/BatchStudents.vue:165 #: frontend/src/components/BatchStudents.vue:182
msgid "There are no students in this batch." msgid "There are no students in this batch."
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmissionList.vue:70
msgid "There are no submissions for this assignment."
msgstr ""
#: lms/templates/course_list.html:14 #: lms/templates/course_list.html:14
msgid "There are no {0} on this site." msgid "There are no {0} on this site."
msgstr "" msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:82
msgid "There has been an update on your submission for assignment {0}"
msgstr ""
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:42 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:42
msgid "There has been an update on your submission. You have got a score of {0} for the quiz {1}" msgid "There has been an update on your submission. You have got a score of {0} for the quiz {1}"
msgstr "" msgstr ""
@@ -4991,11 +5083,15 @@ msgstr ""
msgid "This certificate does no expire" msgid "This certificate does no expire"
msgstr "Dieses Zertifikat läuft nicht ab" msgstr "Dieses Zertifikat läuft nicht ab"
#: frontend/src/components/CourseCardOverlay.vue:91 #: frontend/src/components/LiveClass.vue:64
msgid "This class has ended"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:92
msgid "This course has:" msgid "This course has:"
msgstr "" msgstr ""
#: lms/lms/utils.py:1600 #: lms/lms/utils.py:1606
msgid "This course is free." msgid "This course is free."
msgstr "Dieser Kurs ist kostenlos." msgstr "Dieser Kurs ist kostenlos."
@@ -5098,10 +5194,12 @@ msgstr ""
#. Label of the title (Data) field in DocType 'Work Experience' #. Label of the title (Data) field in DocType 'Work Experience'
#: frontend/src/components/Modals/DiscussionModal.vue:18 #: frontend/src/components/Modals/DiscussionModal.vue:18
#: frontend/src/components/Modals/LiveClassModal.vue:23 #: frontend/src/components/Modals/LiveClassModal.vue:23
#: frontend/src/pages/BatchForm.vue:20 frontend/src/pages/CourseForm.vue:32 #: frontend/src/pages/AssignmentForm.vue:32
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/ProgramForm.vue:11 #: frontend/src/pages/Assignments.vue:152 frontend/src/pages/BatchForm.vue:20
#: frontend/src/pages/Programs.vue:118 frontend/src/pages/QuizForm.vue:48 #: frontend/src/pages/CourseForm.vue:32 frontend/src/pages/JobCreation.vue:20
#: frontend/src/pages/Quizzes.vue:116 lms/lms/doctype/cohort/cohort.json #: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:118
#: frontend/src/pages/QuizForm.vue:48 frontend/src/pages/Quizzes.vue:116
#: lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/course_chapter/course_chapter.json #: lms/lms/doctype/course_chapter/course_chapter.json
@@ -5137,11 +5235,11 @@ msgstr "An"
msgid "To Date" msgid "To Date"
msgstr "Bis-Datum" msgstr "Bis-Datum"
#: lms/lms/utils.py:1611 #: lms/lms/utils.py:1617
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."
#: frontend/src/components/LessonHelp.vue:34 #: frontend/src/components/LessonHelp.vue:49
msgid "To upload Image, Video, Audio or PDF from your system, click on the add icon and select upload from the menu. Then choose the file you want to add to the lesson and it gets added to your lesson." msgid "To upload Image, Video, Audio or PDF from your system, click on the add icon and select upload from the menu. Then choose the file you want to add to the lesson and it gets added to your lesson."
msgstr "" msgstr ""
@@ -5169,7 +5267,7 @@ msgstr "Gesamte Registrierungen"
msgid "Travel" msgid "Travel"
msgstr "Reise" msgstr "Reise"
#: frontend/src/components/Quiz.vue:252 lms/templates/quiz/quiz.html:131 #: frontend/src/components/Quiz.vue:254 lms/templates/quiz/quiz.html:131
msgid "Try Again" msgid "Try Again"
msgstr "Erneut versuchen" msgstr "Erneut versuchen"
@@ -5191,6 +5289,8 @@ msgstr "Twitter"
#. Label of the type (Select) field in DocType 'LMS Quiz Question' #. Label of the type (Select) field in DocType 'LMS Quiz Question'
#: frontend/src/components/Modals/AssessmentModal.vue:22 #: frontend/src/components/Modals/AssessmentModal.vue:22
#: frontend/src/components/Modals/Question.vue:54 #: frontend/src/components/Modals/Question.vue:54
#: frontend/src/pages/AssignmentForm.vue:39
#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:157
#: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:16 #: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:16
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment/lms_assignment.json
@@ -5201,7 +5301,7 @@ msgstr "Twitter"
msgid "Type" msgid "Type"
msgstr "Typ" msgstr "Typ"
#: frontend/src/components/Quiz.vue:583 #: frontend/src/components/Quiz.vue:589
msgid "Type your answer" msgid "Type your answer"
msgstr "" msgstr ""
@@ -5282,11 +5382,11 @@ msgstr "Passwort ändern"
msgid "Upload" msgid "Upload"
msgstr "Hochladen" msgstr "Hochladen"
#: frontend/src/pages/AssignmentSubmission.vue:69 #: frontend/src/components/Assignment.vue:78
msgid "Upload File" msgid "Upload File"
msgstr "Datei hochladen" msgstr "Datei hochladen"
#: frontend/src/pages/AssignmentSubmission.vue:68 #: frontend/src/components/Assignment.vue:77
msgid "Uploading {0}%" msgid "Uploading {0}%"
msgstr "Hochladen {0}%" msgstr "Hochladen {0}%"
@@ -5404,7 +5504,7 @@ msgstr "Mittwoch"
msgid "Welcome to {0}!" msgid "Welcome to {0}!"
msgstr "Willkommen auf {0}!" msgstr "Willkommen auf {0}!"
#: frontend/src/components/LessonHelp.vue:63 #: frontend/src/components/LessonHelp.vue:6
msgid "What does include in preview mean?" msgid "What does include in preview mean?"
msgstr "" msgstr ""
@@ -5453,7 +5553,7 @@ msgstr "Eine Rezension schreiben"
msgid "Write a review" msgid "Write a review"
msgstr "Eine Rezension schreiben" msgstr "Eine Rezension schreiben"
#: frontend/src/pages/AssignmentSubmission.vue:102 #: frontend/src/components/Assignment.vue:120
msgid "Write your answer here" msgid "Write your answer here"
msgstr "Schreiben Sie hier Ihre Antwort" msgstr "Schreiben Sie hier Ihre Antwort"
@@ -5461,11 +5561,11 @@ msgstr "Schreiben Sie hier Ihre Antwort"
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}."
msgstr "" msgstr ""
#: lms/lms/api.py:215 #: lms/lms/api.py:217
msgid "You are already enrolled for this batch." msgid "You are already enrolled for this batch."
msgstr "" msgstr ""
#: lms/lms/api.py:207 #: lms/lms/api.py:209
msgid "You are already enrolled for this course." msgid "You are already enrolled for this course."
msgstr "Sie sind bereits in diesem Kurs eingeschrieben." msgstr "Sie sind bereits in diesem Kurs eingeschrieben."
@@ -5530,7 +5630,7 @@ msgstr "Sie haben keine Benachrichtigungen."
msgid "You got" msgid "You got"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:234 #: frontend/src/components/Quiz.vue:236
#, python-format #, python-format
msgid "You got {0}% correct answers with a score of {1} out of {2}" msgid "You got {0}% correct answers with a score of {1} out of {2}"
msgstr "Sie haben {0}% richtige Antworten mit einer Punktzahl von {1} von {2}" msgstr "Sie haben {0}% richtige Antworten mit einer Punktzahl von {1} von {2}"
@@ -5551,7 +5651,7 @@ msgstr "Sie haben diesen Kurs bereits bewertet"
msgid "You have been enrolled in this batch" msgid "You have been enrolled in this batch"
msgstr "" msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:162 #: frontend/src/components/CourseCardOverlay.vue:166
msgid "You have been enrolled in this course" msgid "You have been enrolled in this course"
msgstr "" msgstr ""
@@ -5559,6 +5659,10 @@ msgstr ""
msgid "You have got a score of {0} for the quiz {1}" msgid "You have got a score of {0} for the quiz {1}"
msgstr "" msgstr ""
#: frontend/src/pages/Assignments.vue:60
msgid "You have not created any assignments yet. To create a new assignment, click on the \"New\" button above."
msgstr ""
#: frontend/src/pages/Quizzes.vue:65 #: frontend/src/pages/Quizzes.vue:65
msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above." msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above."
msgstr "" msgstr ""
@@ -5571,7 +5675,7 @@ msgstr "Sie haben sich für eine Benachrichtigung zu diesem Kurs entschieden. Si
msgid "You haven't enrolled for any courses" msgid "You haven't enrolled for any courses"
msgstr "Sie haben sich für keinen Kurs angemeldet" msgstr "Sie haben sich für keinen Kurs angemeldet"
#: frontend/src/components/CourseCardOverlay.vue:142 #: frontend/src/components/CourseCardOverlay.vue:146
msgid "You need to login first to enroll for this course" msgid "You need to login first to enroll for this course"
msgstr "" msgstr ""
@@ -5584,7 +5688,7 @@ msgstr "Sie müssen {0}% der Fragen richtig beantworten, um das Quiz zu bestehen
msgid "You've applied to become a mentor for this course. Your request is currently under review." msgid "You've applied to become a mentor for this course. Your request is currently under review."
msgstr "Sie haben sich als Mentor für diesen Kurs beworben. Ihre Anfrage wird derzeit geprüft." msgstr "Sie haben sich als Mentor für diesen Kurs beworben. Ihre Anfrage wird derzeit geprüft."
#: frontend/src/pages/AssignmentSubmission.vue:15 #: frontend/src/components/Assignment.vue:55
msgid "You've successfully submitted the assignment." msgid "You've successfully submitted the assignment."
msgstr "Sie haben die Aufgabe erfolgreich eingereicht." msgstr "Sie haben die Aufgabe erfolgreich eingereicht."
@@ -5628,7 +5732,7 @@ msgstr "Ihre Anfrage zur Mitarbeit als Mentor/in im Kurs"
msgid "Your score is" msgid "Your score is"
msgstr "Ihr Ergebnis ist" msgstr "Ihr Ergebnis ist"
#: frontend/src/components/Quiz.vue:227 #: frontend/src/components/Quiz.vue:229
msgid "Your submission has been successfully saved. The instructor will review and grade it shortly, and you'll be notified of your final result." msgid "Your submission has been successfully saved. The instructor will review and grade it shortly, and you'll be notified of your final result."
msgstr "" msgstr ""
@@ -5677,7 +5781,7 @@ msgstr "von"
msgid "posted by" msgid "posted by"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:390 #: frontend/src/pages/QuizForm.vue:386
msgid "question_detail" msgid "question_detail"
msgstr "" msgstr ""
@@ -5693,7 +5797,7 @@ msgstr ""
msgid "you can" msgid "you can"
msgstr "Sie können" msgstr "Sie können"
#: lms/lms/api.py:749 lms/lms/api.py:757 #: lms/lms/api.py:751 lms/lms/api.py:759
msgid "{0} Settings not found" msgid "{0} Settings not found"
msgstr "" msgstr ""

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-12-27 16:04+0000\n" "POT-Creation-Date: 2025-01-03 16:04+0000\n"
"PO-Revision-Date: 2024-12-31 03:29\n" "PO-Revision-Date: 2025-01-07 04:09\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"
@@ -156,7 +156,7 @@ msgstr "crwdns151728:0crwdne151728:0"
msgid "Add a new question" msgid "Add a new question"
msgstr "crwdns149228:0crwdne149228:0" msgstr "crwdns149228:0crwdne149228:0"
#: frontend/src/components/QuizPlugin.vue:11 #: frontend/src/components/AssessmentPlugin.vue:11
msgid "Add a quiz to your lesson" msgid "Add a quiz to your lesson"
msgstr "crwdns149230:0crwdne149230:0" msgstr "crwdns149230:0crwdne149230:0"
@@ -164,6 +164,10 @@ msgstr "crwdns149230:0crwdne149230:0"
msgid "Add an assessment" msgid "Add an assessment"
msgstr "crwdns149232:0crwdne149232:0" msgstr "crwdns149232:0crwdne149232:0"
#: frontend/src/components/AssessmentPlugin.vue:14
msgid "Add an assignment to your lesson"
msgstr "crwdns152104:0crwdne152104:0"
#: frontend/src/components/Modals/Question.vue:18 #: frontend/src/components/Modals/Question.vue:18
msgid "Add an existing question" msgid "Add an existing question"
msgstr "crwdns149234:0crwdne149234:0" msgstr "crwdns149234:0crwdne149234:0"
@@ -176,7 +180,7 @@ msgstr "crwdns149236:0{0}crwdne149236:0"
msgid "Add web page to sidebar" msgid "Add web page to sidebar"
msgstr "crwdns149238:0crwdne149238:0" msgstr "crwdns149238:0crwdne149238:0"
#: frontend/src/pages/AssignmentSubmission.vue:44 #: frontend/src/components/Assignment.vue:65
msgid "Add your assignment as {0}" msgid "Add your assignment as {0}"
msgstr "crwdns149240:0{0}crwdne149240:0" msgstr "crwdns149240:0{0}crwdne149240:0"
@@ -393,6 +397,8 @@ msgstr "crwdns149312:0crwdne149312:0"
#. Label of the section_break_16 (Section Break) field in DocType 'Course #. Label of the section_break_16 (Section Break) field in DocType 'Course
#. Lesson' #. Lesson'
#. Label of the assignment (Link) field in DocType 'LMS Assignment Submission' #. Label of the assignment (Link) field in DocType 'LMS Assignment Submission'
#: frontend/src/pages/AssignmentSubmissionList.vue:12
#: frontend/src/utils/assignment.js:25
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/templates/assignment.html:3 #: lms/templates/assignment.html:3
@@ -417,15 +423,23 @@ msgstr "crwdns149318:0crwdne149318:0"
msgid "Assignment Title" msgid "Assignment Title"
msgstr "crwdns149320:0crwdne149320:0" msgstr "crwdns149320:0crwdne149320:0"
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:31 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:33
msgid "Assignment for Lesson {0} by {1} already exists." msgid "Assignment for Lesson {0} by {1} already exists."
msgstr "crwdns149322:0{0}crwdnd149322:0{1}crwdne149322:0" msgstr "crwdns149322:0{0}crwdnd149322:0{1}crwdne149322:0"
#: frontend/src/pages/AssignmentForm.vue:155
msgid "Assignment saved successfully"
msgstr "crwdns152106:0crwdne152106:0"
#. Description of the 'Question' (Small Text) field in DocType 'Course Lesson' #. Description of the 'Question' (Small Text) field in DocType 'Course Lesson'
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Assignment will appear at the bottom of the lesson." msgid "Assignment will appear at the bottom of the lesson."
msgstr "crwdns149324:0crwdne149324:0" msgstr "crwdns149324:0crwdne149324:0"
#: frontend/src/pages/AssignmentForm.vue:174
msgid "Assignments"
msgstr "crwdns152108:0crwdne152108:0"
#: lms/lms/doctype/lms_question/lms_question.py:43 #: lms/lms/doctype/lms_question/lms_question.py:43
msgid "At least one option must be correct for this question." msgid "At least one option must be correct for this question."
msgstr "crwdns149326:0crwdne149326:0" msgstr "crwdns149326:0crwdne149326:0"
@@ -746,6 +760,10 @@ msgstr "crwdns149438:0crwdne149438:0"
msgid "Change" msgid "Change"
msgstr "crwdns149440:0crwdne149440:0" msgstr "crwdns149440:0crwdne149440:0"
#: frontend/src/components/Assignment.vue:316
msgid "Changes saved successfully"
msgstr "crwdns152110:0crwdne152110:0"
#. Label of the chapter (Link) field in DocType 'Chapter Reference' #. Label of the chapter (Link) field in DocType 'Chapter Reference'
#. Label of the chapter (Link) field in DocType 'LMS Course Progress' #. Label of the chapter (Link) field in DocType 'LMS Course Progress'
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
@@ -774,7 +792,7 @@ msgstr "crwdns151622:0crwdne151622:0"
msgid "Chapters" msgid "Chapters"
msgstr "crwdns149446:0crwdne149446:0" msgstr "crwdns149446:0crwdne149446:0"
#: frontend/src/components/Quiz.vue:201 lms/templates/quiz/quiz.html:120 #: frontend/src/components/Quiz.vue:203 lms/templates/quiz/quiz.html:120
msgid "Check" msgid "Check"
msgstr "crwdns149448:0crwdne149448:0" msgstr "crwdns149448:0crwdne149448:0"
@@ -797,7 +815,7 @@ msgstr "crwdns149454:0crwdne149454:0"
msgid "Choices" msgid "Choices"
msgstr "crwdns149456:0crwdne149456:0" msgstr "crwdns149456:0crwdne149456:0"
#: frontend/src/components/Quiz.vue:581 lms/templates/quiz/quiz.html:53 #: frontend/src/components/Quiz.vue:587 lms/templates/quiz/quiz.html:53
msgid "Choose all answers that apply" msgid "Choose all answers that apply"
msgstr "crwdns149458:0crwdne149458:0" msgstr "crwdns149458:0crwdne149458:0"
@@ -805,7 +823,7 @@ msgstr "crwdns149458:0crwdne149458:0"
msgid "Choose an icon" msgid "Choose an icon"
msgstr "crwdns149460:0crwdne149460:0" msgstr "crwdns149460:0crwdne149460:0"
#: frontend/src/components/Quiz.vue:582 lms/templates/quiz/quiz.html:53 #: frontend/src/components/Quiz.vue:588 lms/templates/quiz/quiz.html:53
msgid "Choose one answer" msgid "Choose one answer"
msgstr "crwdns149462:0crwdne149462:0" msgstr "crwdns149462:0crwdne149462:0"
@@ -814,12 +832,16 @@ msgstr "crwdns149462:0crwdne149462:0"
msgid "City" msgid "City"
msgstr "crwdns149464:0crwdne149464:0" msgstr "crwdns149464:0crwdne149464:0"
#: frontend/src/components/Controls/Link.vue:49
msgid "Clear"
msgstr "crwdns152112:0crwdne152112:0"
#. Option for the 'Role Preference' (Select) field in DocType 'User' #. Option for the 'Role Preference' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
msgid "Clearly Defined Role" msgid "Clearly Defined Role"
msgstr "crwdns149466:0crwdne149466:0" msgstr "crwdns149466:0crwdne149466:0"
#: frontend/src/components/LessonHelp.vue:15 #: frontend/src/components/LessonHelp.vue:30
msgid "Click on the add icon in the editor and select Quiz from the menu. It opens up a dialog, where you can either select a quiz from the list or create a new quiz. When you select the Create New option it redirects you to the quiz creation page." msgid "Click on the add icon in the editor and select Quiz from the menu. It opens up a dialog, where you can either select a quiz from the list or create a new quiz. When you select the Create New option it redirects you to the quiz creation page."
msgstr "crwdns149468:0crwdne149468:0" msgstr "crwdns149468:0crwdne149468:0"
@@ -917,6 +939,7 @@ msgstr "crwdns149498:0crwdne149498:0"
#. Label of the comments (Small Text) field in DocType 'LMS Assignment #. Label of the comments (Small Text) field in DocType 'LMS Assignment
#. Submission' #. Submission'
#. Label of the comments (Small Text) field in DocType 'LMS Mentor Request' #. Label of the comments (Small Text) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Assignment.vue:161
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
#: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
@@ -924,6 +947,10 @@ msgstr "crwdns149498:0crwdne149498:0"
msgid "Comments" msgid "Comments"
msgstr "crwdns149500:0crwdne149500:0" msgstr "crwdns149500:0crwdne149500:0"
#: frontend/src/components/Assignment.vue:139
msgid "Comments by Evaluator"
msgstr "crwdns152114:0crwdne152114:0"
#. Label of the company (Data) field in DocType 'LMS Job Application' #. Label of the company (Data) field in DocType 'LMS Job Application'
#. Label of the company (Data) field in DocType 'Work Experience' #. Label of the company (Data) field in DocType 'Work Experience'
#: lms/job/doctype/lms_job_application/lms_job_application.json #: lms/job/doctype/lms_job_application/lms_job_application.json
@@ -986,7 +1013,7 @@ msgstr "crwdns149518:0crwdne149518:0"
msgid "Completed" msgid "Completed"
msgstr "crwdns149520:0crwdne149520:0" msgstr "crwdns149520:0crwdne149520:0"
#: frontend/src/components/BatchStudents.vue:325 #: frontend/src/components/BatchStudents.vue:353
msgid "Completed by Students" msgid "Completed by Students"
msgstr "crwdns152082:0crwdne152082:0" msgstr "crwdns152082:0crwdne152082:0"
@@ -1036,7 +1063,7 @@ msgid "Continue Learning"
msgstr "crwdns149540:0crwdne149540:0" msgstr "crwdns149540:0crwdne149540:0"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:117 #: frontend/src/pages/Jobs.vue:120
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Contract" msgid "Contract"
msgstr "crwdns149542:0crwdne149542:0" msgstr "crwdns149542:0crwdne149542:0"
@@ -1045,7 +1072,7 @@ msgstr "crwdns149542:0crwdne149542:0"
msgid "Cookie Policy" msgid "Cookie Policy"
msgstr "crwdns149544:0crwdne149544:0" msgstr "crwdns149544:0crwdne149544:0"
#: frontend/src/components/LessonHelp.vue:53 #: frontend/src/components/LessonHelp.vue:68
msgid "Copy the URL of the video from YouTube and paste it in the editor." msgid "Copy the URL of the video from YouTube and paste it in the editor."
msgstr "crwdns149546:0crwdne149546:0" msgstr "crwdns149546:0crwdne149546:0"
@@ -1057,7 +1084,7 @@ msgstr "crwdns149548:0crwdne149548:0"
#. Option for the 'Status' (Select) field in DocType 'Exercise Latest #. Option for the 'Status' (Select) field in DocType 'Exercise Latest
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'Exercise Submission' #. Option for the 'Status' (Select) field in DocType 'Exercise Submission'
#: frontend/src/components/Quiz.vue:161 #: frontend/src/components/Quiz.vue:163
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
#: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json
msgid "Correct" msgid "Correct"
@@ -1197,7 +1224,7 @@ msgstr "crwdns149578:0crwdne149578:0"
msgid "Course Name" msgid "Course Name"
msgstr "crwdns149580:0crwdne149580:0" msgstr "crwdns149580:0crwdne149580:0"
#: frontend/src/pages/CourseDetail.vue:74 #: frontend/src/pages/CourseDetail.vue:76
msgid "Course Outline" msgid "Course Outline"
msgstr "crwdns151624:0crwdne151624:0" msgstr "crwdns151624:0crwdne151624:0"
@@ -1322,6 +1349,10 @@ msgstr "crwdns151738:0crwdne151738:0"
msgid "Create a new question" msgid "Create a new question"
msgstr "crwdns149616:0crwdne149616:0" msgstr "crwdns149616:0crwdne149616:0"
#: frontend/src/pages/Assignments.vue:163
msgid "Created"
msgstr "crwdns152116:0crwdne152116:0"
#. Label of the currency (Link) field in DocType 'Web Form' #. Label of the currency (Link) field in DocType 'Web Form'
#. Label of the currency (Link) field in DocType 'LMS Batch' #. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course' #. Label of the currency (Link) field in DocType 'LMS Course'
@@ -1487,8 +1518,8 @@ msgid "Desk"
msgstr "crwdns149652:0crwdne149652:0" msgstr "crwdns149652:0crwdne149652:0"
#: frontend/src/components/Modals/DiscussionModal.vue:22 #: frontend/src/components/Modals/DiscussionModal.vue:22
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:28 #: frontend/src/pages/AssignmentForm.vue:27 frontend/src/pages/BatchForm.vue:14
#: frontend/src/pages/QuizForm.vue:42 #: frontend/src/pages/CourseForm.vue:28 frontend/src/pages/QuizForm.vue:42
msgid "Details" msgid "Details"
msgstr "crwdns149654:0crwdne149654:0" msgstr "crwdns149654:0crwdne149654:0"
@@ -1619,6 +1650,10 @@ msgstr "crwdns149700:0crwdne149700:0"
msgid "Email Templates" msgid "Email Templates"
msgstr "crwdns149702:0crwdne149702:0" msgstr "crwdns149702:0crwdne149702:0"
#: frontend/src/components/BatchStudents.vue:409
msgid "Email copied to clipboard"
msgstr "crwdns152118:0crwdne152118:0"
#. Label of the show_emails (Check) field in DocType 'LMS Settings' #. Label of the show_emails (Check) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Emails" msgid "Emails"
@@ -1699,8 +1734,8 @@ msgid "Enroll Now"
msgstr "crwdns149722:0crwdne149722:0" msgstr "crwdns149722:0crwdne149722:0"
#: frontend/src/components/CourseCard.vue:43 #: frontend/src/components/CourseCard.vue:43
#: frontend/src/components/CourseCardOverlay.vue:103 #: frontend/src/components/CourseCardOverlay.vue:104
#: frontend/src/pages/CourseDetail.vue:31 #: frontend/src/pages/CourseDetail.vue:33
msgid "Enrolled Students" msgid "Enrolled Students"
msgstr "crwdns149724:0crwdne149724:0" msgstr "crwdns149724:0crwdne149724:0"
@@ -1717,7 +1752,7 @@ msgstr "crwdns149728:0crwdne149728:0"
msgid "Enrollment Count" msgid "Enrollment Count"
msgstr "crwdns149730:0crwdne149730:0" msgstr "crwdns149730:0crwdne149730:0"
#: lms/lms/utils.py:1720 #: lms/lms/utils.py:1726
msgid "Enrollment Failed" msgid "Enrollment Failed"
msgstr "crwdns149732:0crwdne149732:0" msgstr "crwdns149732:0crwdne149732:0"
@@ -1733,7 +1768,7 @@ msgstr "crwdns149734:0crwdne149734:0"
msgid "Enter Client Id and Client Secret in Google Settings to send calendar invites for evaluations." msgid "Enter Client Id and Client Secret in Google Settings to send calendar invites for evaluations."
msgstr "crwdns149736:0crwdne149736:0" msgstr "crwdns149736:0crwdne149736:0"
#: frontend/src/pages/AssignmentSubmission.vue:96 #: frontend/src/components/Assignment.vue:110
msgid "Enter a URL" msgid "Enter a URL"
msgstr "crwdns149738:0crwdne149738:0" msgstr "crwdns149738:0crwdne149738:0"
@@ -1745,6 +1780,7 @@ msgstr "crwdns149740:0crwdne149740:0"
msgid "Enter the correct answer" msgid "Enter the correct answer"
msgstr "crwdns149742:0crwdne149742:0" msgstr "crwdns149742:0crwdne149742:0"
#: frontend/src/components/Assignment.vue:268
#: frontend/src/components/Modals/AnnouncementModal.vue:105 #: frontend/src/components/Modals/AnnouncementModal.vue:105
#: frontend/src/components/Modals/BulkCertificates.vue:115 #: frontend/src/components/Modals/BulkCertificates.vue:115
#: frontend/src/components/Modals/ChapterModal.vue:159 #: frontend/src/components/Modals/ChapterModal.vue:159
@@ -1755,8 +1791,9 @@ msgstr "crwdns149742:0crwdne149742:0"
#: frontend/src/components/Modals/Question.vue:326 #: frontend/src/components/Modals/Question.vue:326
#: frontend/src/components/Modals/StudentModal.vue:69 #: frontend/src/components/Modals/StudentModal.vue:69
#: frontend/src/components/SettingDetails.vue:62 #: frontend/src/components/SettingDetails.vue:62
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350 #: frontend/src/pages/AssignmentForm.vue:139
#: frontend/src/pages/QuizForm.vue:365 #: frontend/src/pages/AssignmentForm.vue:159 frontend/src/pages/Billing.vue:264
#: frontend/src/pages/QuizForm.vue:346 frontend/src/pages/QuizForm.vue:361
#: frontend/src/pages/QuizSubmission.vue:141 #: frontend/src/pages/QuizSubmission.vue:141
msgid "Error" msgid "Error"
msgstr "crwdns149744:0crwdne149744:0" msgstr "crwdns149744:0crwdne149744:0"
@@ -1919,7 +1956,7 @@ msgstr "crwdns149788:0crwdne149788:0"
msgid "Featured" msgid "Featured"
msgstr "crwdns149790:0crwdne149790:0" msgstr "crwdns149790:0crwdne149790:0"
#: frontend/src/pages/AssignmentSubmission.vue:21 #: frontend/src/components/Assignment.vue:61
msgid "Feel free to make edits to your submission if needed." msgid "Feel free to make edits to your submission if needed."
msgstr "crwdns149792:0crwdne149792:0" msgstr "crwdns149792:0crwdne149792:0"
@@ -1938,6 +1975,10 @@ msgstr "crwdns149796:0crwdne149796:0"
msgid "File Type" msgid "File Type"
msgstr "crwdns149798:0crwdne149798:0" msgstr "crwdns149798:0crwdne149798:0"
#: frontend/src/pages/Jobs.vue:47
msgid "Find the perfect job for you"
msgstr "crwdns152120:0crwdne152120:0"
#: frontend/src/components/Members.vue:38 #: frontend/src/components/Members.vue:38
#: frontend/src/components/Modals/EditProfile.vue:59 #: frontend/src/components/Modals/EditProfile.vue:59
msgid "First Name" msgid "First Name"
@@ -1953,7 +1994,7 @@ msgstr "crwdns149802:0crwdne149802:0"
msgid "Flexible Time" msgid "Flexible Time"
msgstr "crwdns149804:0crwdne149804:0" msgstr "crwdns149804:0crwdne149804:0"
#: frontend/src/pages/QuizForm.vue:463 #: frontend/src/pages/QuizForm.vue:459
msgid "Form to create and edit quizzes" msgid "Form to create and edit quizzes"
msgstr "crwdns149806:0crwdne149806:0" msgstr "crwdns149806:0crwdne149806:0"
@@ -1967,7 +2008,7 @@ msgid "Free"
msgstr "crwdns149810:0crwdne149810:0" msgstr "crwdns149810:0crwdne149810:0"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:118 #: frontend/src/pages/Jobs.vue:121
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Freelance" msgid "Freelance"
msgstr "crwdns149812:0crwdne149812:0" msgstr "crwdns149812:0crwdne149812:0"
@@ -2009,7 +2050,7 @@ msgid "Full Name"
msgstr "crwdns149824:0crwdne149824:0" msgstr "crwdns149824:0crwdne149824:0"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:115 #: frontend/src/pages/Jobs.vue:118
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Full Time" msgid "Full Time"
msgstr "crwdns149826:0crwdne149826:0" msgstr "crwdns149826:0crwdne149826:0"
@@ -2069,6 +2110,7 @@ msgid "Google Meet Link"
msgstr "crwdns149844:0crwdne149844:0" msgstr "crwdns149844:0crwdne149844:0"
#. 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:154
#: lms/lms/doctype/education_detail/education_detail.json #: lms/lms/doctype/education_detail/education_detail.json
msgid "Grade" msgid "Grade"
msgstr "crwdns149846:0crwdne149846:0" msgstr "crwdns149846:0crwdne149846:0"
@@ -2083,6 +2125,10 @@ msgstr "crwdns149848:0crwdne149848:0"
msgid "Grade Type" msgid "Grade Type"
msgstr "crwdns149850:0crwdne149850:0" msgstr "crwdns149850:0crwdne149850:0"
#: frontend/src/components/Assignment.vue:149
msgid "Grading"
msgstr "crwdns152122:0crwdne152122:0"
#. Label of the grant_only_once (Check) field in DocType 'LMS Badge' #. Label of the grant_only_once (Check) field in DocType 'LMS Badge'
#: lms/lms/doctype/lms_badge/lms_badge.json #: lms/lms/doctype/lms_badge/lms_badge.json
msgid "Grant only once" msgid "Grant only once"
@@ -2146,7 +2192,7 @@ msgstr "crwdns149878:0crwdne149878:0"
msgid "Host" msgid "Host"
msgstr "crwdns149880:0crwdne149880:0" msgstr "crwdns149880:0crwdne149880:0"
#: frontend/src/components/LessonHelp.vue:9 #: frontend/src/components/LessonHelp.vue:24
msgid "How to add a Quiz?" msgid "How to add a Quiz?"
msgstr "crwdns149882:0crwdne149882:0" msgstr "crwdns149882:0crwdne149882:0"
@@ -2168,7 +2214,7 @@ msgstr "crwdns149892:0crwdne149892:0"
msgid "I am unavailable" msgid "I am unavailable"
msgstr "crwdns149894:0crwdne149894:0" msgstr "crwdns149894:0crwdne149894:0"
#: frontend/src/pages/QuizForm.vue:384 #: frontend/src/pages/QuizForm.vue:380
msgid "ID" msgid "ID"
msgstr "crwdns149896:0crwdne149896:0" msgstr "crwdns149896:0crwdne149896:0"
@@ -2178,7 +2224,7 @@ msgstr "crwdns149896:0crwdne149896:0"
msgid "Icon" msgid "Icon"
msgstr "crwdns149898:0crwdne149898:0" msgstr "crwdns149898:0crwdne149898:0"
#: frontend/src/components/LessonHelp.vue:68 #: frontend/src/components/LessonHelp.vue:11
msgid "If Include in Preview is enabled for a lesson then the lesson will also be accessible to non logged in users." msgid "If Include in Preview is enabled for a lesson then the lesson will also be accessible to non logged in users."
msgstr "crwdns151474:0crwdne151474:0" msgstr "crwdns151474:0crwdne151474:0"
@@ -2261,7 +2307,7 @@ msgstr "crwdns149922:0crwdne149922:0"
#. Option for the 'Status' (Select) field in DocType 'Exercise Latest #. Option for the 'Status' (Select) field in DocType 'Exercise Latest
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'Exercise Submission' #. Option for the 'Status' (Select) field in DocType 'Exercise Submission'
#: frontend/src/components/Quiz.vue:166 #: frontend/src/components/Quiz.vue:168
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
#: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json
msgid "Incorrect" msgid "Incorrect"
@@ -2469,7 +2515,7 @@ msgstr "crwdns149992:0crwdne149992:0"
msgid "Jobs" msgid "Jobs"
msgstr "crwdns149994:0crwdne149994:0" msgstr "crwdns149994:0crwdne149994:0"
#: frontend/src/components/LiveClass.vue:55 #: frontend/src/components/LiveClass.vue:58
#: lms/templates/upcoming_evals.html:15 #: lms/templates/upcoming_evals.html:15
msgid "Join" msgid "Join"
msgstr "crwdns149996:0crwdne149996:0" msgstr "crwdns149996:0crwdne149996:0"
@@ -2759,7 +2805,7 @@ msgstr "crwdns150084:0crwdne150084:0"
#. Group in Course Chapter's connections #. Group in Course Chapter's connections
#. Label of the lessons (Data) field in DocType 'LMS Course' #. Label of the lessons (Data) field in DocType 'LMS Course'
#: frontend/src/components/CourseCard.vue:34 #: frontend/src/components/CourseCard.vue:34
#: frontend/src/components/CourseCardOverlay.vue:96 #: frontend/src/components/CourseCardOverlay.vue:97
#: lms/lms/doctype/course_chapter/course_chapter.json #: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "Lessons" msgid "Lessons"
@@ -2825,6 +2871,7 @@ msgid "LiveCode URL"
msgstr "crwdns150110:0crwdne150110:0" msgstr "crwdns150110:0crwdne150110:0"
#: frontend/src/components/Members.vue:106 #: frontend/src/components/Members.vue:106
#: frontend/src/pages/Assignments.vue:71
#: frontend/src/pages/QuizSubmissionList.vue:39 #: frontend/src/pages/QuizSubmissionList.vue:39
#: frontend/src/pages/Quizzes.vue:51 #: frontend/src/pages/Quizzes.vue:51
msgid "Load More" msgid "Load More"
@@ -2854,6 +2901,7 @@ msgstr "crwdns150118:0crwdne150118:0"
msgid "Location Preference" msgid "Location Preference"
msgstr "crwdns150120:0crwdne150120:0" msgstr "crwdns150120:0crwdne150120:0"
#: frontend/src/components/AssignmentBlock.vue:13
#: frontend/src/components/NoPermission.vue:28 #: frontend/src/components/NoPermission.vue:28
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:175 #: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:175
#: frontend/src/pages/Lesson.vue:24 #: frontend/src/pages/Lesson.vue:24
@@ -2913,7 +2961,7 @@ msgstr "crwdns150142:0crwdne150142:0"
#. Label of the marks (Int) field in DocType 'LMS Quiz Result' #. Label of the marks (Int) field in DocType 'LMS Quiz Result'
#: frontend/src/components/Modals/Question.vue:50 #: frontend/src/components/Modals/Question.vue:50
#: frontend/src/components/Modals/Question.vue:99 #: frontend/src/components/Modals/Question.vue:99
#: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:394 #: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:390
#: frontend/src/pages/QuizSubmission.vue:59 #: frontend/src/pages/QuizSubmission.vue:59
#: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json #: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json
#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json
@@ -2970,6 +3018,7 @@ msgstr "crwdns150158:0crwdne150158:0"
#. Label of the member (Link) field in DocType 'LMS Payment' #. Label of the member (Link) field in DocType 'LMS Payment'
#. Label of the member (Link) field in DocType 'LMS Program Member' #. Label of the member (Link) field in DocType 'LMS Program Member'
#. Label of the member (Link) field in DocType 'LMS Quiz Submission' #. Label of the member (Link) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/AssignmentSubmissionList.vue:14
#: frontend/src/pages/QuizSubmission.vue:31 #: frontend/src/pages/QuizSubmission.vue:31
#: frontend/src/pages/QuizSubmissionList.vue:86 #: frontend/src/pages/QuizSubmissionList.vue:86
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
@@ -3140,11 +3189,11 @@ msgstr "crwdns150196:0crwdne150196:0"
msgid "Modified By" msgid "Modified By"
msgstr "crwdns150198:0crwdne150198:0" msgstr "crwdns150198:0crwdne150198:0"
#: lms/lms/api.py:199 #: lms/lms/api.py:201
msgid "Module Name is incorrect or does not exist." msgid "Module Name is incorrect or does not exist."
msgstr "crwdns150200:0crwdne150200:0" msgstr "crwdns150200:0crwdne150200:0"
#: lms/lms/api.py:195 #: lms/lms/api.py:197
msgid "Module is incorrect." msgid "Module is incorrect."
msgstr "crwdns150202:0crwdne150202:0" msgstr "crwdns150202:0crwdne150202:0"
@@ -3173,12 +3222,17 @@ msgid "My calendar"
msgstr "crwdns150212:0crwdne150212:0" msgstr "crwdns150212:0crwdne150212:0"
#. Option for the 'Event' (Select) field in DocType 'LMS Badge' #. Option for the 'Event' (Select) field in DocType 'LMS Badge'
#: frontend/src/pages/Batches.vue:30 frontend/src/pages/Courses.vue:45 #: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:30
#: frontend/src/pages/Programs.vue:14 lms/lms/doctype/lms_badge/lms_badge.json #: frontend/src/pages/Courses.vue:45 frontend/src/pages/Programs.vue:14
#: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New" msgid "New"
msgstr "crwdns150214:0crwdne150214:0" msgstr "crwdns150214:0crwdne150214:0"
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:41 #: frontend/src/pages/AssignmentForm.vue:178
msgid "New Assignment"
msgstr "crwdns152124:0crwdne152124:0"
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:43
msgid "New Assignment Submission" msgid "New Assignment Submission"
msgstr "crwdns150216:0crwdne150216:0" msgstr "crwdns150216:0crwdne150216:0"
@@ -3214,7 +3268,7 @@ msgstr "crwdns151764:0crwdne151764:0"
msgid "New Question" msgid "New Question"
msgstr "crwdns150226:0crwdne150226:0" msgstr "crwdns150226:0crwdne150226:0"
#: frontend/src/pages/QuizForm.vue:454 frontend/src/pages/QuizForm.vue:462 #: frontend/src/pages/QuizForm.vue:450 frontend/src/pages/QuizForm.vue:458
#: frontend/src/pages/Quizzes.vue:18 #: frontend/src/pages/Quizzes.vue:18
msgid "New Quiz" msgid "New Quiz"
msgstr "crwdns150228:0crwdne150228:0" msgstr "crwdns150228:0crwdne150228:0"
@@ -3236,7 +3290,7 @@ msgstr "crwdns150234:0{0}crwdnd150234:0{1}crwdne150234:0"
msgid "New {0}" msgid "New {0}"
msgstr "crwdns150236:0{0}crwdne150236:0" msgstr "crwdns150236:0{0}crwdne150236:0"
#: frontend/src/components/Quiz.vue:209 frontend/src/pages/Lesson.vue:84 #: frontend/src/components/Quiz.vue:211 frontend/src/pages/Lesson.vue:84
msgid "Next" msgid "Next"
msgstr "crwdns150238:0crwdne150238:0" msgstr "crwdns150238:0crwdne150238:0"
@@ -3244,7 +3298,7 @@ msgstr "crwdns150238:0crwdne150238:0"
msgid "Next Question" msgid "Next Question"
msgstr "crwdns150240:0crwdne150240:0" msgstr "crwdns150240:0crwdne150240:0"
#: frontend/src/components/Assessments.vue:66 lms/templates/assessments.html:58 #: frontend/src/components/Assessments.vue:75 lms/templates/assessments.html:58
msgid "No Assessments" msgid "No Assessments"
msgstr "crwdns150242:0crwdne150242:0" msgstr "crwdns150242:0crwdne150242:0"
@@ -3265,6 +3319,10 @@ msgstr "crwdns150248:0crwdne150248:0"
msgid "No announcements" msgid "No announcements"
msgstr "crwdns150250:0crwdne150250:0" msgstr "crwdns150250:0crwdne150250:0"
#: frontend/src/pages/Assignments.vue:56
msgid "No assignments found"
msgstr "crwdns152126:0crwdne152126:0"
#: frontend/src/pages/Batches.vue:125 #: frontend/src/pages/Batches.vue:125
msgid "No batches found" msgid "No batches found"
msgstr "crwdns151478:0crwdne151478:0" msgstr "crwdns151478:0crwdne151478:0"
@@ -3293,11 +3351,11 @@ msgstr "crwdns150256:0crwdne150256:0"
msgid "No introduction" msgid "No introduction"
msgstr "crwdns150258:0crwdne150258:0" msgstr "crwdns150258:0crwdne150258:0"
#: frontend/src/pages/Jobs.vue:60 #: frontend/src/pages/Jobs.vue:63
msgid "No jobs posted" msgid "No jobs posted"
msgstr "crwdns150260:0crwdne150260:0" msgstr "crwdns150260:0crwdne150260:0"
#: frontend/src/components/LiveClass.vue:61 #: frontend/src/components/LiveClass.vue:71
msgid "No live classes scheduled" msgid "No live classes scheduled"
msgstr "crwdns150262:0crwdne150262:0" msgstr "crwdns150262:0crwdne150262:0"
@@ -3313,6 +3371,10 @@ msgstr "crwdns151592:0crwdne151592:0"
msgid "No slots available for this date." msgid "No slots available for this date."
msgstr "crwdns150264:0crwdne150264:0" msgstr "crwdns150264:0crwdne150264:0"
#: frontend/src/pages/AssignmentSubmissionList.vue:67
msgid "No submissions"
msgstr "crwdns152128:0crwdne152128:0"
#: frontend/src/components/UpcomingEvaluations.vue:39 #: frontend/src/components/UpcomingEvaluations.vue:39
msgid "No upcoming evaluations." msgid "No upcoming evaluations."
msgstr "crwdns150266:0crwdne150266:0" msgstr "crwdns150266:0crwdne150266:0"
@@ -3361,6 +3423,7 @@ msgstr "crwdns150284:0crwdne150284:0"
msgid "Not Permitted" msgid "Not Permitted"
msgstr "crwdns150286:0crwdne150286:0" msgstr "crwdns150286:0crwdne150286:0"
#: frontend/src/components/Assignment.vue:33
#: frontend/src/components/BrandSettings.vue:10 #: frontend/src/components/BrandSettings.vue:10
#: frontend/src/components/PaymentSettings.vue:9 #: frontend/src/components/PaymentSettings.vue:9
#: frontend/src/components/SettingDetails.vue:10 #: frontend/src/components/SettingDetails.vue:10
@@ -3404,7 +3467,7 @@ msgstr "crwdns150300:0crwdne150300:0"
msgid "Once again, congratulations on this significant accomplishment." msgid "Once again, congratulations on this significant accomplishment."
msgstr "crwdns150302:0crwdne150302:0" msgstr "crwdns150302:0crwdne150302:0"
#: frontend/src/pages/AssignmentSubmission.vue:17 #: frontend/src/components/Assignment.vue:57
msgid "Once the moderator grades your submission, you'll find the details here." msgid "Once the moderator grades your submission, you'll find the details here."
msgstr "crwdns150304:0crwdne150304:0" msgstr "crwdns150304:0crwdne150304:0"
@@ -3421,7 +3484,7 @@ msgstr "crwdns151770:0crwdne151770:0"
msgid "Only files of type {0} will be accepted." msgid "Only files of type {0} will be accepted."
msgstr "crwdns150308:0{0}crwdne150308:0" msgstr "crwdns150308:0{0}crwdne150308:0"
#: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:527 #: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:529
msgid "Only image file is allowed." msgid "Only image file is allowed."
msgstr "crwdns150310:0crwdne150310:0" msgstr "crwdns150310:0crwdne150310:0"
@@ -3550,7 +3613,7 @@ msgid "Pan Number"
msgstr "crwdns150356:0crwdne150356:0" msgstr "crwdns150356:0crwdne150356:0"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:116 #: frontend/src/pages/Jobs.vue:119
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Part Time" msgid "Part Time"
msgstr "crwdns150358:0crwdne150358:0" msgstr "crwdns150358:0crwdne150358:0"
@@ -3681,7 +3744,7 @@ msgstr "crwdns150394:0crwdne150394:0"
msgid "Phone Number" msgid "Phone Number"
msgstr "crwdns150396:0crwdne150396:0" msgstr "crwdns150396:0crwdne150396:0"
#: frontend/src/components/CourseCardOverlay.vue:141 #: frontend/src/components/CourseCardOverlay.vue:145
msgid "Please Login" msgid "Please Login"
msgstr "crwdns150398:0crwdne150398:0" msgstr "crwdns150398:0crwdne150398:0"
@@ -3701,7 +3764,7 @@ msgstr "crwdns150404:0crwdne150404:0"
msgid "Please click on the following button to set your new password" msgid "Please click on the following button to set your new password"
msgstr "crwdns150406:0crwdne150406:0" msgstr "crwdns150406:0crwdne150406:0"
#: lms/lms/utils.py:1842 lms/lms/utils.py:1846 #: lms/lms/utils.py:1848 lms/lms/utils.py:1852
msgid "Please complete the previous courses in the program to enroll in this course." msgid "Please complete the previous courses in the program to enroll in this course."
msgstr "crwdns151772:0crwdne151772:0" msgstr "crwdns151772:0crwdne151772:0"
@@ -3721,8 +3784,8 @@ msgstr "crwdns150410:0{0}crwdne150410:0"
msgid "Please enter a title." msgid "Please enter a title."
msgstr "crwdns151774:0crwdne151774:0" msgstr "crwdns151774:0crwdne151774:0"
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:38 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:40
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:98 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:122
msgid "Please enter a valid URL." msgid "Please enter a valid URL."
msgstr "crwdns150412:0crwdne150412:0" msgstr "crwdns150412:0crwdne150412:0"
@@ -3730,7 +3793,7 @@ msgstr "crwdns150412:0crwdne150412:0"
msgid "Please enter a valid time in the format HH:mm." msgid "Please enter a valid time in the format HH:mm."
msgstr "crwdns151776:0crwdne151776:0" msgstr "crwdns151776:0crwdne151776:0"
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:92 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:116
msgid "Please enter the URL for assignment submission." msgid "Please enter the URL for assignment submission."
msgstr "crwdns150414:0crwdne150414:0" msgstr "crwdns150414:0crwdne150414:0"
@@ -3750,6 +3813,10 @@ msgstr "crwdns150420:0crwdne150420:0"
msgid "Please let us know where you heard about us from." msgid "Please let us know where you heard about us from."
msgstr "crwdns150422:0crwdne150422:0" msgstr "crwdns150422:0crwdne150422:0"
#: frontend/src/components/AssignmentBlock.vue:9
msgid "Please login to access the assignment."
msgstr "crwdns152130:0crwdne152130:0"
#: frontend/src/components/QuizBlock.vue:5 #: frontend/src/components/QuizBlock.vue:5
msgid "Please login to access the quiz." msgid "Please login to access the quiz."
msgstr "crwdns150424:0crwdne150424:0" msgstr "crwdns150424:0crwdne150424:0"
@@ -3758,7 +3825,7 @@ msgstr "crwdns150424:0crwdne150424:0"
msgid "Please login to access this page." msgid "Please login to access this page."
msgstr "crwdns150426:0crwdne150426:0" msgstr "crwdns150426:0crwdne150426:0"
#: lms/lms/api.py:191 #: lms/lms/api.py:193
msgid "Please login to continue with payment." msgid "Please login to continue with payment."
msgstr "crwdns150428:0crwdne150428:0" msgstr "crwdns150428:0crwdne150428:0"
@@ -3795,7 +3862,7 @@ msgstr "crwdns150432:0{0}crwdne150432:0"
msgid "Please upload a SCORM package" msgid "Please upload a SCORM package"
msgstr "crwdns151646:0crwdne151646:0" msgstr "crwdns151646:0crwdne151646:0"
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:95 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:119
msgid "Please upload the assignment file." msgid "Please upload the assignment file."
msgstr "crwdns150434:0crwdne150434:0" msgstr "crwdns150434:0crwdne150434:0"
@@ -4003,9 +4070,9 @@ msgstr "crwdns150500:0crwdne150500:0"
#. Label of the question (Text Editor) field in DocType 'LMS Question' #. Label of the question (Text Editor) field in DocType 'LMS Question'
#. Label of the question (Link) field in DocType 'LMS Quiz Question' #. Label of the question (Link) field in DocType 'LMS Quiz Question'
#. Label of the question (Text) field in DocType 'LMS Quiz Result' #. Label of the question (Text) field in DocType 'LMS Quiz Result'
#: frontend/src/components/Assignment.vue:17
#: frontend/src/components/Modals/Question.vue:38 #: frontend/src/components/Modals/Question.vue:38
#: frontend/src/pages/AssignmentSubmission.vue:26 #: frontend/src/pages/AssignmentForm.vue:45 frontend/src/pages/QuizForm.vue:385
#: frontend/src/pages/QuizForm.vue:389
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment/lms_assignment.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
@@ -4042,7 +4109,7 @@ msgstr "crwdns150512:0crwdne150512:0"
msgid "Question {0}" msgid "Question {0}"
msgstr "crwdns150514:0{0}crwdne150514:0" msgstr "crwdns150514:0{0}crwdne150514:0"
#: frontend/src/components/Quiz.vue:186 #: frontend/src/components/Quiz.vue:188
msgid "Question {0} of {1}" msgid "Question {0} of {1}"
msgstr "crwdns150516:0{0}crwdnd150516:0{1}crwdne150516:0" msgstr "crwdns150516:0{0}crwdnd150516:0{1}crwdne150516:0"
@@ -4051,7 +4118,7 @@ msgstr "crwdns150516:0{0}crwdnd150516:0{1}crwdne150516:0"
msgid "Questions" msgid "Questions"
msgstr "crwdns150518:0crwdne150518:0" msgstr "crwdns150518:0crwdne150518:0"
#: frontend/src/pages/QuizForm.vue:431 #: frontend/src/pages/QuizForm.vue:427
msgid "Questions deleted successfully" msgid "Questions deleted successfully"
msgstr "crwdns150520:0crwdne150520:0" msgstr "crwdns150520:0crwdne150520:0"
@@ -4079,7 +4146,7 @@ msgstr "crwdns150526:0crwdne150526:0"
msgid "Quiz Submissions" msgid "Quiz Submissions"
msgstr "crwdns150528:0crwdne150528:0" msgstr "crwdns150528:0crwdne150528:0"
#: frontend/src/components/Quiz.vue:223 #: frontend/src/components/Quiz.vue:225
msgid "Quiz Summary" msgid "Quiz Summary"
msgstr "crwdns150530:0crwdne150530:0" msgstr "crwdns150530:0crwdne150530:0"
@@ -4088,7 +4155,7 @@ msgstr "crwdns150530:0crwdne150530:0"
msgid "Quiz Title" msgid "Quiz Title"
msgstr "crwdns150532:0crwdne150532:0" msgstr "crwdns150532:0crwdne150532:0"
#: frontend/src/pages/QuizForm.vue:343 #: frontend/src/pages/QuizForm.vue:339
msgid "Quiz created successfully" msgid "Quiz created successfully"
msgstr "crwdns150534:0crwdne150534:0" msgstr "crwdns150534:0crwdne150534:0"
@@ -4096,7 +4163,7 @@ msgstr "crwdns150534:0crwdne150534:0"
msgid "Quiz is not available to Guest users. Please login to continue." msgid "Quiz is not available to Guest users. Please login to continue."
msgstr "crwdns150536:0crwdne150536:0" msgstr "crwdns150536:0crwdne150536:0"
#: frontend/src/pages/QuizForm.vue:362 #: frontend/src/pages/QuizForm.vue:358
msgid "Quiz updated successfully" msgid "Quiz updated successfully"
msgstr "crwdns150538:0crwdne150538:0" msgstr "crwdns150538:0crwdne150538:0"
@@ -4105,7 +4172,7 @@ msgstr "crwdns150538:0crwdne150538:0"
msgid "Quiz will appear at the bottom of the lesson." msgid "Quiz will appear at the bottom of the lesson."
msgstr "crwdns150540:0crwdne150540:0" msgstr "crwdns150540:0crwdne150540:0"
#: frontend/src/pages/QuizForm.vue:442 frontend/src/pages/Quizzes.vue:138 #: frontend/src/pages/QuizForm.vue:438 frontend/src/pages/Quizzes.vue:138
#: frontend/src/pages/Quizzes.vue:148 #: frontend/src/pages/Quizzes.vue:148
msgid "Quizzes" msgid "Quizzes"
msgstr "crwdns150542:0crwdne150542:0" msgstr "crwdns150542:0crwdne150542:0"
@@ -4113,7 +4180,7 @@ msgstr "crwdns150542:0crwdne150542:0"
#. Label of the rating (Rating) field in DocType 'LMS Certificate Evaluation' #. Label of the rating (Rating) field in DocType 'LMS Certificate Evaluation'
#. 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:108 #: frontend/src/components/CourseCardOverlay.vue:110
#: frontend/src/components/Modals/Event.vue:86 #: frontend/src/components/Modals/Event.vue:86
#: frontend/src/components/Modals/ReviewModal.vue:20 #: frontend/src/components/Modals/ReviewModal.vue:20
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -4127,10 +4194,6 @@ msgstr "crwdns150544:0crwdne150544:0"
msgid "Rating cannot be 0" msgid "Rating cannot be 0"
msgstr "crwdns150546:0crwdne150546:0" msgstr "crwdns150546:0crwdne150546:0"
#: frontend/src/pages/AssignmentSubmission.vue:30
msgid "Read the question carefully before attempting the assignment."
msgstr "crwdns150548:0crwdne150548:0"
#. Option for the 'Stage' (Select) field in DocType 'LMS Batch Old' #. Option for the 'Stage' (Select) field in DocType 'LMS Batch Old'
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
msgid "Ready" msgid "Ready"
@@ -4309,15 +4372,15 @@ msgstr "crwdns151652:0crwdne151652:0"
msgid "Saturday" msgid "Saturday"
msgstr "crwdns150610:0crwdne150610:0" msgstr "crwdns150610:0crwdne150610:0"
#: frontend/src/components/AssessmentPlugin.vue:34
#: frontend/src/components/Assignment.vue:43
#: frontend/src/components/Controls/CodeEditor.vue:25 #: frontend/src/components/Controls/CodeEditor.vue:25
#: frontend/src/components/Modals/Event.vue:101 #: frontend/src/components/Modals/Event.vue:101
#: frontend/src/components/Modals/Event.vue:129 #: frontend/src/components/Modals/Event.vue:129
#: frontend/src/components/QuizPlugin.vue:23 #: frontend/src/pages/AssignmentForm.vue:21 frontend/src/pages/BatchForm.vue:8
#: frontend/src/pages/AssignmentSubmission.vue:7 #: frontend/src/pages/CourseForm.vue:20 frontend/src/pages/JobCreation.vue:8
#: frontend/src/pages/BatchForm.vue:8 frontend/src/pages/CourseForm.vue:20 #: frontend/src/pages/LessonForm.vue:14 frontend/src/pages/ProgramForm.vue:7
#: frontend/src/pages/JobCreation.vue:8 frontend/src/pages/LessonForm.vue:14 #: frontend/src/pages/QuizForm.vue:34 frontend/src/pages/QuizSubmission.vue:14
#: frontend/src/pages/ProgramForm.vue:7 frontend/src/pages/QuizForm.vue:34
#: frontend/src/pages/QuizSubmission.vue:14
#: lms/public/js/common_functions.js:405 #: lms/public/js/common_functions.js:405
msgid "Save" msgid "Save"
msgstr "crwdns150612:0crwdne150612:0" msgstr "crwdns150612:0crwdne150612:0"
@@ -4359,6 +4422,10 @@ msgstr "crwdns150624:0crwdne150624:0"
msgid "Search" msgid "Search"
msgstr "crwdns150626:0crwdne150626:0" msgstr "crwdns150626:0crwdne150626:0"
#: frontend/src/pages/Assignments.vue:25
msgid "Search by title"
msgstr "crwdns152132:0crwdne152132:0"
#: frontend/src/components/Controls/IconPicker.vue:36 #: frontend/src/components/Controls/IconPicker.vue:36
msgid "Search for an icon" msgid "Search for an icon"
msgstr "crwdns150628:0crwdne150628:0" msgstr "crwdns150628:0crwdne150628:0"
@@ -4384,7 +4451,7 @@ msgstr "crwdns150634:0crwdne150634:0"
msgid "Select a question" msgid "Select a question"
msgstr "crwdns150636:0crwdne150636:0" msgstr "crwdns150636:0crwdne150636:0"
#: frontend/src/components/QuizPlugin.vue:17 #: frontend/src/components/AssessmentPlugin.vue:21
msgid "Select a quiz" msgid "Select a quiz"
msgstr "crwdns150638:0crwdne150638:0" msgstr "crwdns150638:0crwdne150638:0"
@@ -4392,6 +4459,10 @@ msgstr "crwdns150638:0crwdne150638:0"
msgid "Select a slot" msgid "Select a slot"
msgstr "crwdns150640:0crwdne150640:0" msgstr "crwdns150640:0crwdne150640:0"
#: frontend/src/components/AssessmentPlugin.vue:28
msgid "Select an assignment"
msgstr "crwdns152134:0crwdne152134:0"
#. Label of the send_calendar_invite_for_evaluations (Check) field in DocType #. Label of the send_calendar_invite_for_evaluations (Check) field in DocType
#. 'LMS Settings' #. 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -4583,7 +4654,7 @@ msgstr "crwdns150708:0crwdne150708:0"
msgid "Stage" msgid "Stage"
msgstr "crwdns150710:0crwdne150710:0" msgstr "crwdns150710:0crwdne150710:0"
#: frontend/src/components/LiveClass.vue:46 frontend/src/components/Quiz.vue:65 #: frontend/src/components/LiveClass.vue:50 frontend/src/components/Quiz.vue:65
#: lms/templates/quiz/quiz.html:39 #: lms/templates/quiz/quiz.html:39
msgid "Start" msgid "Start"
msgstr "crwdns150712:0crwdne150712:0" msgstr "crwdns150712:0crwdne150712:0"
@@ -4664,6 +4735,7 @@ msgstr "crwdns150732:0crwdne150732:0"
#. Label of the status (Select) field in DocType 'LMS Course Progress' #. Label of the status (Select) field in DocType 'LMS Course Progress'
#. Label of the status (Select) field in DocType 'LMS Mentor Request' #. Label of the status (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:91 #: frontend/src/components/Modals/Event.vue:91
#: frontend/src/pages/AssignmentSubmissionList.vue:19
#: frontend/src/pages/JobCreation.vue:41 #: frontend/src/pages/JobCreation.vue:41
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/cohort/cohort.json
@@ -4724,7 +4796,7 @@ msgstr "crwdns150746:0{0}crwdne150746:0"
msgid "Students" msgid "Students"
msgstr "crwdns150748:0crwdne150748:0" msgstr "crwdns150748:0crwdne150748:0"
#: frontend/src/components/BatchStudents.vue:282 #: frontend/src/components/BatchStudents.vue:310
msgid "Students deleted successfully" msgid "Students deleted successfully"
msgstr "crwdns150750:0crwdne150750:0" msgstr "crwdns150750:0crwdne150750:0"
@@ -4746,19 +4818,24 @@ msgstr "crwdns150754:0crwdne150754:0"
msgid "Subject" msgid "Subject"
msgstr "crwdns150756:0crwdne150756:0" msgstr "crwdns150756:0crwdne150756:0"
#: frontend/src/pages/AssignmentSubmission.vue:40 #: frontend/src/components/Assignment.vue:29
msgid "Submission" msgid "Submission"
msgstr "crwdns150758:0crwdne150758:0" msgstr "crwdns150758:0crwdne150758:0"
#: frontend/src/pages/QuizForm.vue:30 #: frontend/src/pages/AssignmentForm.vue:17 frontend/src/pages/QuizForm.vue:30
msgid "Submission List" msgid "Submission List"
msgstr "crwdns150760:0crwdne150760:0" msgstr "crwdns150760:0crwdne150760:0"
#: frontend/src/components/Assignment.vue:10
#: frontend/src/components/Assignment.vue:13
msgid "Submission by"
msgstr "crwdns152136:0crwdne152136:0"
#: frontend/src/components/Modals/AssessmentModal.vue:9 #: frontend/src/components/Modals/AssessmentModal.vue:9
#: frontend/src/components/Modals/BatchCourseModal.vue:9 #: frontend/src/components/Modals/BatchCourseModal.vue:9
#: frontend/src/components/Modals/EvaluationModal.vue:9 #: frontend/src/components/Modals/EvaluationModal.vue:9
#: frontend/src/components/Modals/Question.vue:338 #: frontend/src/components/Modals/Question.vue:338
#: frontend/src/components/Quiz.vue:214 lms/templates/assignment.html:9 #: frontend/src/components/Quiz.vue:216 lms/templates/assignment.html:9
#: lms/templates/livecode/extension_footer.html:25 #: lms/templates/livecode/extension_footer.html:25
#: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163 #: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163
#: lms/www/new-sign-up.html:32 #: lms/www/new-sign-up.html:32
@@ -4774,10 +4851,12 @@ msgstr "crwdns150764:0crwdne150764:0"
msgid "Submitted {0}" msgid "Submitted {0}"
msgstr "crwdns150766:0{0}crwdne150766:0" msgstr "crwdns150766:0{0}crwdne150766:0"
#: frontend/src/components/Assignment.vue:316
#: frontend/src/components/BatchCourses.vue:150 #: frontend/src/components/BatchCourses.vue:150
#: frontend/src/components/BatchOverlay.vue:135 #: frontend/src/components/BatchOverlay.vue:135
#: frontend/src/components/BatchStudents.vue:282 #: frontend/src/components/BatchStudents.vue:310
#: frontend/src/components/CourseCardOverlay.vue:161 #: frontend/src/components/BatchStudents.vue:409
#: frontend/src/components/CourseCardOverlay.vue:165
#: frontend/src/components/Modals/AnnouncementModal.vue:99 #: frontend/src/components/Modals/AnnouncementModal.vue:99
#: frontend/src/components/Modals/AssessmentModal.vue:73 #: frontend/src/components/Modals/AssessmentModal.vue:73
#: frontend/src/components/Modals/BulkCertificates.vue:121 #: frontend/src/components/Modals/BulkCertificates.vue:121
@@ -4787,11 +4866,12 @@ msgstr "crwdns150766:0{0}crwdne150766:0"
#: frontend/src/components/Modals/Event.vue:310 #: frontend/src/components/Modals/Event.vue:310
#: frontend/src/components/Modals/Question.vue:264 #: frontend/src/components/Modals/Question.vue:264
#: frontend/src/components/Modals/Question.vue:315 #: frontend/src/components/Modals/Question.vue:315
#: frontend/src/pages/AssignmentForm.vue:155
#: frontend/src/pages/CourseForm.vue:461 frontend/src/pages/ProgramForm.vue:229 #: frontend/src/pages/CourseForm.vue:461 frontend/src/pages/ProgramForm.vue:229
#: frontend/src/pages/ProgramForm.vue:251 #: frontend/src/pages/ProgramForm.vue:251
#: frontend/src/pages/ProgramForm.vue:272 #: frontend/src/pages/ProgramForm.vue:272
#: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:343 #: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:339
#: frontend/src/pages/QuizForm.vue:362 frontend/src/pages/QuizForm.vue:431 #: frontend/src/pages/QuizForm.vue:358 frontend/src/pages/QuizForm.vue:427
msgid "Success" msgid "Success"
msgstr "crwdns150768:0crwdne150768:0" msgstr "crwdns150768:0crwdne150768:0"
@@ -4809,7 +4889,7 @@ msgstr "crwdns150770:0crwdne150770:0"
msgid "Sunday" msgid "Sunday"
msgstr "crwdns150772:0crwdne150772:0" msgstr "crwdns150772:0crwdne150772:0"
#: lms/lms/api.py:952 #: lms/lms/api.py:954
msgid "Suspicious pattern found in {0}: {1}" msgid "Suspicious pattern found in {0}: {1}"
msgstr "crwdns151930:0{0}crwdnd151930:0{1}crwdne151930:0" msgstr "crwdns151930:0{0}crwdnd151930:0{1}crwdne151930:0"
@@ -4924,6 +5004,10 @@ msgstr "crwdns150792:0crwdne150792:0"
msgid "Thanks and Regards" msgid "Thanks and Regards"
msgstr "crwdns150794:0crwdne150794:0" msgstr "crwdns150794:0crwdne150794:0"
#: lms/lms/utils.py:1755
msgid "The batch is full. Please contact the Administrator."
msgstr "crwdns152138:0crwdne152138:0"
#: lms/templates/emails/lms_course_interest.html:5 #: lms/templates/emails/lms_course_interest.html:5
msgid "The course {0} is now available on {1}." msgid "The course {0} is now available on {1}."
msgstr "crwdns150796:0{0}crwdnd150796:0{1}crwdne150796:0" msgstr "crwdns150796:0{0}crwdnd150796:0{1}crwdne150796:0"
@@ -4964,14 +5048,22 @@ msgstr "crwdns151798:0crwdne151798:0"
msgid "There are no seats available in this batch." msgid "There are no seats available in this batch."
msgstr "crwdns150808:0crwdne150808:0" msgstr "crwdns150808:0crwdne150808:0"
#: frontend/src/components/BatchStudents.vue:165 #: frontend/src/components/BatchStudents.vue:182
msgid "There are no students in this batch." msgid "There are no students in this batch."
msgstr "crwdns150810:0crwdne150810:0" msgstr "crwdns150810:0crwdne150810:0"
#: frontend/src/pages/AssignmentSubmissionList.vue:70
msgid "There are no submissions for this assignment."
msgstr "crwdns152140:0crwdne152140:0"
#: lms/templates/course_list.html:14 #: lms/templates/course_list.html:14
msgid "There are no {0} on this site." msgid "There are no {0} on this site."
msgstr "crwdns150812:0{0}crwdne150812:0" msgstr "crwdns150812:0{0}crwdne150812:0"
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:82
msgid "There has been an update on your submission for assignment {0}"
msgstr "crwdns152142:0{0}crwdne152142:0"
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:42 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:42
msgid "There has been an update on your submission. You have got a score of {0} for the quiz {1}" msgid "There has been an update on your submission. You have got a score of {0} for the quiz {1}"
msgstr "crwdns151850:0{0}crwdnd151850:0{1}crwdne151850:0" msgstr "crwdns151850:0{0}crwdnd151850:0{1}crwdne151850:0"
@@ -4991,11 +5083,15 @@ msgstr "crwdns150816:0{0}crwdnd150816:0{1}crwdne150816:0"
msgid "This certificate does no expire" msgid "This certificate does no expire"
msgstr "crwdns150818:0crwdne150818:0" msgstr "crwdns150818:0crwdne150818:0"
#: frontend/src/components/CourseCardOverlay.vue:91 #: frontend/src/components/LiveClass.vue:64
msgid "This class has ended"
msgstr "crwdns152144:0crwdne152144:0"
#: frontend/src/components/CourseCardOverlay.vue:92
msgid "This course has:" msgid "This course has:"
msgstr "crwdns150820:0crwdne150820:0" msgstr "crwdns150820:0crwdne150820:0"
#: lms/lms/utils.py:1600 #: lms/lms/utils.py:1606
msgid "This course is free." msgid "This course is free."
msgstr "crwdns150822:0crwdne150822:0" msgstr "crwdns150822:0crwdne150822:0"
@@ -5098,10 +5194,12 @@ msgstr "crwdns150848:0crwdne150848:0"
#. Label of the title (Data) field in DocType 'Work Experience' #. Label of the title (Data) field in DocType 'Work Experience'
#: frontend/src/components/Modals/DiscussionModal.vue:18 #: frontend/src/components/Modals/DiscussionModal.vue:18
#: frontend/src/components/Modals/LiveClassModal.vue:23 #: frontend/src/components/Modals/LiveClassModal.vue:23
#: frontend/src/pages/BatchForm.vue:20 frontend/src/pages/CourseForm.vue:32 #: frontend/src/pages/AssignmentForm.vue:32
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/ProgramForm.vue:11 #: frontend/src/pages/Assignments.vue:152 frontend/src/pages/BatchForm.vue:20
#: frontend/src/pages/Programs.vue:118 frontend/src/pages/QuizForm.vue:48 #: frontend/src/pages/CourseForm.vue:32 frontend/src/pages/JobCreation.vue:20
#: frontend/src/pages/Quizzes.vue:116 lms/lms/doctype/cohort/cohort.json #: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:118
#: frontend/src/pages/QuizForm.vue:48 frontend/src/pages/Quizzes.vue:116
#: lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/course_chapter/course_chapter.json #: lms/lms/doctype/course_chapter/course_chapter.json
@@ -5137,11 +5235,11 @@ msgstr "crwdns150852:0crwdne150852:0"
msgid "To Date" msgid "To Date"
msgstr "crwdns150854:0crwdne150854:0" msgstr "crwdns150854:0crwdne150854:0"
#: lms/lms/utils.py:1611 #: lms/lms/utils.py:1617
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"
#: frontend/src/components/LessonHelp.vue:34 #: frontend/src/components/LessonHelp.vue:49
msgid "To upload Image, Video, Audio or PDF from your system, click on the add icon and select upload from the menu. Then choose the file you want to add to the lesson and it gets added to your lesson." msgid "To upload Image, Video, Audio or PDF from your system, click on the add icon and select upload from the menu. Then choose the file you want to add to the lesson and it gets added to your lesson."
msgstr "crwdns150860:0crwdne150860:0" msgstr "crwdns150860:0crwdne150860:0"
@@ -5169,7 +5267,7 @@ msgstr "crwdns150868:0crwdne150868:0"
msgid "Travel" msgid "Travel"
msgstr "crwdns150870:0crwdne150870:0" msgstr "crwdns150870:0crwdne150870:0"
#: frontend/src/components/Quiz.vue:252 lms/templates/quiz/quiz.html:131 #: frontend/src/components/Quiz.vue:254 lms/templates/quiz/quiz.html:131
msgid "Try Again" msgid "Try Again"
msgstr "crwdns150872:0crwdne150872:0" msgstr "crwdns150872:0crwdne150872:0"
@@ -5191,6 +5289,8 @@ msgstr "crwdns150876:0crwdne150876:0"
#. Label of the type (Select) field in DocType 'LMS Quiz Question' #. Label of the type (Select) field in DocType 'LMS Quiz Question'
#: frontend/src/components/Modals/AssessmentModal.vue:22 #: frontend/src/components/Modals/AssessmentModal.vue:22
#: frontend/src/components/Modals/Question.vue:54 #: frontend/src/components/Modals/Question.vue:54
#: frontend/src/pages/AssignmentForm.vue:39
#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:157
#: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:16 #: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:16
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment/lms_assignment.json
@@ -5201,7 +5301,7 @@ msgstr "crwdns150876:0crwdne150876:0"
msgid "Type" msgid "Type"
msgstr "crwdns150878:0crwdne150878:0" msgstr "crwdns150878:0crwdne150878:0"
#: frontend/src/components/Quiz.vue:583 #: frontend/src/components/Quiz.vue:589
msgid "Type your answer" msgid "Type your answer"
msgstr "crwdns150880:0crwdne150880:0" msgstr "crwdns150880:0crwdne150880:0"
@@ -5282,11 +5382,11 @@ msgstr "crwdns150908:0crwdne150908:0"
msgid "Upload" msgid "Upload"
msgstr "crwdns151498:0crwdne151498:0" msgstr "crwdns151498:0crwdne151498:0"
#: frontend/src/pages/AssignmentSubmission.vue:69 #: frontend/src/components/Assignment.vue:78
msgid "Upload File" msgid "Upload File"
msgstr "crwdns150910:0crwdne150910:0" msgstr "crwdns150910:0crwdne150910:0"
#: frontend/src/pages/AssignmentSubmission.vue:68 #: frontend/src/components/Assignment.vue:77
msgid "Uploading {0}%" msgid "Uploading {0}%"
msgstr "crwdns150912:0{0}crwdne150912:0" msgstr "crwdns150912:0{0}crwdne150912:0"
@@ -5404,7 +5504,7 @@ msgstr "crwdns150954:0crwdne150954:0"
msgid "Welcome to {0}!" msgid "Welcome to {0}!"
msgstr "crwdns150956:0{0}crwdne150956:0" msgstr "crwdns150956:0{0}crwdne150956:0"
#: frontend/src/components/LessonHelp.vue:63 #: frontend/src/components/LessonHelp.vue:6
msgid "What does include in preview mean?" msgid "What does include in preview mean?"
msgstr "crwdns151500:0crwdne151500:0" msgstr "crwdns151500:0crwdne151500:0"
@@ -5453,7 +5553,7 @@ msgstr "crwdns150972:0crwdne150972:0"
msgid "Write a review" msgid "Write a review"
msgstr "crwdns150974:0crwdne150974:0" msgstr "crwdns150974:0crwdne150974:0"
#: frontend/src/pages/AssignmentSubmission.vue:102 #: frontend/src/components/Assignment.vue:120
msgid "Write your answer here" msgid "Write your answer here"
msgstr "crwdns150976:0crwdne150976:0" msgstr "crwdns150976:0crwdne150976:0"
@@ -5461,11 +5561,11 @@ msgstr "crwdns150976:0crwdne150976:0"
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}."
msgstr "crwdns150978:0{0}crwdnd150978:0{1}crwdnd150978:0{2}crwdne150978:0" msgstr "crwdns150978:0{0}crwdnd150978:0{1}crwdnd150978:0{2}crwdne150978:0"
#: lms/lms/api.py:215 #: lms/lms/api.py:217
msgid "You are already enrolled for this batch." msgid "You are already enrolled for this batch."
msgstr "crwdns150980:0crwdne150980:0" msgstr "crwdns150980:0crwdne150980:0"
#: lms/lms/api.py:207 #: lms/lms/api.py:209
msgid "You are already enrolled for this course." msgid "You are already enrolled for this course."
msgstr "crwdns150982:0crwdne150982:0" msgstr "crwdns150982:0crwdne150982:0"
@@ -5530,7 +5630,7 @@ msgstr "crwdns151002:0crwdne151002:0"
msgid "You got" msgid "You got"
msgstr "crwdns151004:0crwdne151004:0" msgstr "crwdns151004:0crwdne151004:0"
#: frontend/src/components/Quiz.vue:234 #: frontend/src/components/Quiz.vue:236
#, python-format #, python-format
msgid "You got {0}% correct answers with a score of {1} out of {2}" msgid "You got {0}% correct answers with a score of {1} out of {2}"
msgstr "crwdns151006:0{0}crwdnd151006:0{1}crwdnd151006:0{2}crwdne151006:0" msgstr "crwdns151006:0{0}crwdnd151006:0{1}crwdnd151006:0{2}crwdne151006:0"
@@ -5551,7 +5651,7 @@ msgstr "crwdns151012:0crwdne151012:0"
msgid "You have been enrolled in this batch" msgid "You have been enrolled in this batch"
msgstr "crwdns151014:0crwdne151014:0" msgstr "crwdns151014:0crwdne151014:0"
#: frontend/src/components/CourseCardOverlay.vue:162 #: frontend/src/components/CourseCardOverlay.vue:166
msgid "You have been enrolled in this course" msgid "You have been enrolled in this course"
msgstr "crwdns151016:0crwdne151016:0" msgstr "crwdns151016:0crwdne151016:0"
@@ -5559,6 +5659,10 @@ msgstr "crwdns151016:0crwdne151016:0"
msgid "You have got a score of {0} for the quiz {1}" msgid "You have got a score of {0} for the quiz {1}"
msgstr "crwdns151852:0{0}crwdnd151852:0{1}crwdne151852:0" msgstr "crwdns151852:0{0}crwdnd151852:0{1}crwdne151852:0"
#: frontend/src/pages/Assignments.vue:60
msgid "You have not created any assignments yet. To create a new assignment, click on the \"New\" button above."
msgstr "crwdns152146:0crwdne152146:0"
#: frontend/src/pages/Quizzes.vue:65 #: frontend/src/pages/Quizzes.vue:65
msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above." msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above."
msgstr "crwdns151594:0crwdne151594:0" msgstr "crwdns151594:0crwdne151594:0"
@@ -5571,7 +5675,7 @@ msgstr "crwdns151018:0crwdne151018:0"
msgid "You haven't enrolled for any courses" msgid "You haven't enrolled for any courses"
msgstr "crwdns151020:0crwdne151020:0" msgstr "crwdns151020:0crwdne151020:0"
#: frontend/src/components/CourseCardOverlay.vue:142 #: frontend/src/components/CourseCardOverlay.vue:146
msgid "You need to login first to enroll for this course" msgid "You need to login first to enroll for this course"
msgstr "crwdns151022:0crwdne151022:0" msgstr "crwdns151022:0crwdne151022:0"
@@ -5584,7 +5688,7 @@ msgstr "crwdns151024:0{0}crwdne151024:0"
msgid "You've applied to become a mentor for this course. Your request is currently under review." msgid "You've applied to become a mentor for this course. Your request is currently under review."
msgstr "crwdns151026:0crwdne151026:0" msgstr "crwdns151026:0crwdne151026:0"
#: frontend/src/pages/AssignmentSubmission.vue:15 #: frontend/src/components/Assignment.vue:55
msgid "You've successfully submitted the assignment." msgid "You've successfully submitted the assignment."
msgstr "crwdns151028:0crwdne151028:0" msgstr "crwdns151028:0crwdne151028:0"
@@ -5628,7 +5732,7 @@ msgstr "crwdns151044:0crwdne151044:0"
msgid "Your score is" msgid "Your score is"
msgstr "crwdns151046:0crwdne151046:0" msgstr "crwdns151046:0crwdne151046:0"
#: frontend/src/components/Quiz.vue:227 #: frontend/src/components/Quiz.vue:229
msgid "Your submission has been successfully saved. The instructor will review and grade it shortly, and you'll be notified of your final result." msgid "Your submission has been successfully saved. The instructor will review and grade it shortly, and you'll be notified of your final result."
msgstr "crwdns151048:0crwdne151048:0" msgstr "crwdns151048:0crwdne151048:0"
@@ -5677,7 +5781,7 @@ msgstr "crwdns151066:0crwdne151066:0"
msgid "posted by" msgid "posted by"
msgstr "crwdns151068:0crwdne151068:0" msgstr "crwdns151068:0crwdne151068:0"
#: frontend/src/pages/QuizForm.vue:390 #: frontend/src/pages/QuizForm.vue:386
msgid "question_detail" msgid "question_detail"
msgstr "crwdns151070:0crwdne151070:0" msgstr "crwdns151070:0crwdne151070:0"
@@ -5693,7 +5797,7 @@ msgstr "crwdns151074:0crwdne151074:0"
msgid "you can" msgid "you can"
msgstr "crwdns151076:0crwdne151076:0" msgstr "crwdns151076:0crwdne151076:0"
#: lms/lms/api.py:749 lms/lms/api.py:757 #: lms/lms/api.py:751 lms/lms/api.py:759
msgid "{0} Settings not found" msgid "{0} Settings not found"
msgstr "crwdns151078:0{0}crwdne151078:0" msgstr "crwdns151078:0{0}crwdne151078:0"

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-12-27 16:04+0000\n" "POT-Creation-Date: 2025-01-03 16:04+0000\n"
"PO-Revision-Date: 2024-12-31 03:29\n" "PO-Revision-Date: 2025-01-07 04:09\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"
@@ -156,7 +156,7 @@ msgstr ""
msgid "Add a new question" msgid "Add a new question"
msgstr "Añadir una nueva pregunta" msgstr "Añadir una nueva pregunta"
#: frontend/src/components/QuizPlugin.vue:11 #: frontend/src/components/AssessmentPlugin.vue:11
msgid "Add a quiz to your lesson" msgid "Add a quiz to your lesson"
msgstr "Añade un cuestionario a tu lección" msgstr "Añade un cuestionario a tu lección"
@@ -164,6 +164,10 @@ msgstr "Añade un cuestionario a tu lección"
msgid "Add an assessment" msgid "Add an assessment"
msgstr "Añadir un examen" msgstr "Añadir un examen"
#: frontend/src/components/AssessmentPlugin.vue:14
msgid "Add an assignment to your lesson"
msgstr ""
#: frontend/src/components/Modals/Question.vue:18 #: frontend/src/components/Modals/Question.vue:18
msgid "Add an existing question" msgid "Add an existing question"
msgstr "Añadir una pregunta existente" msgstr "Añadir una pregunta existente"
@@ -176,7 +180,7 @@ msgstr "Añadir al menos una respuesta posible para esta pregunta: {0}"
msgid "Add web page to sidebar" msgid "Add web page to sidebar"
msgstr "Agregar página web a la barra lateral" msgstr "Agregar página web a la barra lateral"
#: frontend/src/pages/AssignmentSubmission.vue:44 #: frontend/src/components/Assignment.vue:65
msgid "Add your assignment as {0}" msgid "Add your assignment as {0}"
msgstr "Añadir su tarea como {0}" msgstr "Añadir su tarea como {0}"
@@ -393,6 +397,8 @@ msgstr "Asignar"
#. Label of the section_break_16 (Section Break) field in DocType 'Course #. Label of the section_break_16 (Section Break) field in DocType 'Course
#. Lesson' #. Lesson'
#. Label of the assignment (Link) field in DocType 'LMS Assignment Submission' #. Label of the assignment (Link) field in DocType 'LMS Assignment Submission'
#: frontend/src/pages/AssignmentSubmissionList.vue:12
#: frontend/src/utils/assignment.js:25
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/templates/assignment.html:3 #: lms/templates/assignment.html:3
@@ -417,15 +423,23 @@ msgstr "Plantilla de entrega de tareas"
msgid "Assignment Title" msgid "Assignment Title"
msgstr "Título de la tarea" msgstr "Título de la tarea"
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:31 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:33
msgid "Assignment for Lesson {0} by {1} already exists." msgid "Assignment for Lesson {0} by {1} already exists."
msgstr "Ya existe una asignación para la lección {0} por {1}." msgstr "Ya existe una asignación para la lección {0} por {1}."
#: frontend/src/pages/AssignmentForm.vue:155
msgid "Assignment saved successfully"
msgstr ""
#. Description of the 'Question' (Small Text) field in DocType 'Course Lesson' #. Description of the 'Question' (Small Text) field in DocType 'Course Lesson'
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Assignment will appear at the bottom of the lesson." msgid "Assignment will appear at the bottom of the lesson."
msgstr "La tarea aparecerá al final de la lección." msgstr "La tarea aparecerá al final de la lección."
#: frontend/src/pages/AssignmentForm.vue:174
msgid "Assignments"
msgstr "Asignaciones"
#: lms/lms/doctype/lms_question/lms_question.py:43 #: lms/lms/doctype/lms_question/lms_question.py:43
msgid "At least one option must be correct for this question." msgid "At least one option must be correct for this question."
msgstr "Al menos una opción debe ser correcta para esta pregunta." msgstr "Al menos una opción debe ser correcta para esta pregunta."
@@ -746,6 +760,10 @@ msgstr "Participantes certificados"
msgid "Change" msgid "Change"
msgstr "Cambio" msgstr "Cambio"
#: frontend/src/components/Assignment.vue:316
msgid "Changes saved successfully"
msgstr ""
#. Label of the chapter (Link) field in DocType 'Chapter Reference' #. Label of the chapter (Link) field in DocType 'Chapter Reference'
#. Label of the chapter (Link) field in DocType 'LMS Course Progress' #. Label of the chapter (Link) field in DocType 'LMS Course Progress'
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
@@ -774,7 +792,7 @@ msgstr ""
msgid "Chapters" msgid "Chapters"
msgstr "Capítulos" msgstr "Capítulos"
#: frontend/src/components/Quiz.vue:201 lms/templates/quiz/quiz.html:120 #: frontend/src/components/Quiz.vue:203 lms/templates/quiz/quiz.html:120
msgid "Check" msgid "Check"
msgstr "Marcar" msgstr "Marcar"
@@ -797,7 +815,7 @@ msgstr "Comprobar cursos"
msgid "Choices" msgid "Choices"
msgstr "Opciones" msgstr "Opciones"
#: frontend/src/components/Quiz.vue:581 lms/templates/quiz/quiz.html:53 #: frontend/src/components/Quiz.vue:587 lms/templates/quiz/quiz.html:53
msgid "Choose all answers that apply" msgid "Choose all answers that apply"
msgstr "Elegir todas las respuestas que apliquen" msgstr "Elegir todas las respuestas que apliquen"
@@ -805,7 +823,7 @@ msgstr "Elegir todas las respuestas que apliquen"
msgid "Choose an icon" msgid "Choose an icon"
msgstr "Elegir icono" msgstr "Elegir icono"
#: frontend/src/components/Quiz.vue:582 lms/templates/quiz/quiz.html:53 #: frontend/src/components/Quiz.vue:588 lms/templates/quiz/quiz.html:53
msgid "Choose one answer" msgid "Choose one answer"
msgstr "Elige una respuesta" msgstr "Elige una respuesta"
@@ -814,12 +832,16 @@ msgstr "Elige una respuesta"
msgid "City" msgid "City"
msgstr "Ciudad" msgstr "Ciudad"
#: frontend/src/components/Controls/Link.vue:49
msgid "Clear"
msgstr "Quitar"
#. Option for the 'Role Preference' (Select) field in DocType 'User' #. Option for the 'Role Preference' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
msgid "Clearly Defined Role" msgid "Clearly Defined Role"
msgstr "Rol claramente definido" msgstr "Rol claramente definido"
#: frontend/src/components/LessonHelp.vue:15 #: frontend/src/components/LessonHelp.vue:30
msgid "Click on the add icon in the editor and select Quiz from the menu. It opens up a dialog, where you can either select a quiz from the list or create a new quiz. When you select the Create New option it redirects you to the quiz creation page." msgid "Click on the add icon in the editor and select Quiz from the menu. It opens up a dialog, where you can either select a quiz from the list or create a new quiz. When you select the Create New option it redirects you to the quiz creation page."
msgstr "Haga clic en el icono añadir en el editor y del menú seleccione Encuesta. Se abrirá un diálogo donde puede seleccionar un cuestionario de la lista o crear un nuevo cuestionario. Cuando selecciona la opción Crear Nuevo, le llevará a la página de creación de cuestionarios." msgstr "Haga clic en el icono añadir en el editor y del menú seleccione Encuesta. Se abrirá un diálogo donde puede seleccionar un cuestionario de la lista o crear un nuevo cuestionario. Cuando selecciona la opción Crear Nuevo, le llevará a la página de creación de cuestionarios."
@@ -917,6 +939,7 @@ msgstr "Color"
#. Label of the comments (Small Text) field in DocType 'LMS Assignment #. Label of the comments (Small Text) field in DocType 'LMS Assignment
#. Submission' #. Submission'
#. Label of the comments (Small Text) field in DocType 'LMS Mentor Request' #. Label of the comments (Small Text) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Assignment.vue:161
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
#: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
@@ -924,6 +947,10 @@ msgstr "Color"
msgid "Comments" msgid "Comments"
msgstr "Comentarios" msgstr "Comentarios"
#: frontend/src/components/Assignment.vue:139
msgid "Comments by Evaluator"
msgstr ""
#. Label of the company (Data) field in DocType 'LMS Job Application' #. Label of the company (Data) field in DocType 'LMS Job Application'
#. Label of the company (Data) field in DocType 'Work Experience' #. Label of the company (Data) field in DocType 'Work Experience'
#: lms/job/doctype/lms_job_application/lms_job_application.json #: lms/job/doctype/lms_job_application/lms_job_application.json
@@ -986,7 +1013,7 @@ msgstr "Completar registro"
msgid "Completed" msgid "Completed"
msgstr "Completado" msgstr "Completado"
#: frontend/src/components/BatchStudents.vue:325 #: frontend/src/components/BatchStudents.vue:353
msgid "Completed by Students" msgid "Completed by Students"
msgstr "" msgstr ""
@@ -1036,7 +1063,7 @@ msgid "Continue Learning"
msgstr "Continuar aprendiendo" msgstr "Continuar aprendiendo"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:117 #: frontend/src/pages/Jobs.vue:120
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Contract" msgid "Contract"
msgstr "Contrato" msgstr "Contrato"
@@ -1045,7 +1072,7 @@ msgstr "Contrato"
msgid "Cookie Policy" msgid "Cookie Policy"
msgstr "Política de cookies" msgstr "Política de cookies"
#: frontend/src/components/LessonHelp.vue:53 #: frontend/src/components/LessonHelp.vue:68
msgid "Copy the URL of the video from YouTube and paste it in the editor." msgid "Copy the URL of the video from YouTube and paste it in the editor."
msgstr "Copia la URL del vídeo de YouTube y pégala en el editor." msgstr "Copia la URL del vídeo de YouTube y pégala en el editor."
@@ -1057,7 +1084,7 @@ msgstr "Organización corporativa"
#. Option for the 'Status' (Select) field in DocType 'Exercise Latest #. Option for the 'Status' (Select) field in DocType 'Exercise Latest
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'Exercise Submission' #. Option for the 'Status' (Select) field in DocType 'Exercise Submission'
#: frontend/src/components/Quiz.vue:161 #: frontend/src/components/Quiz.vue:163
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
#: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json
msgid "Correct" msgid "Correct"
@@ -1197,7 +1224,7 @@ msgstr "Lista de Cursos"
msgid "Course Name" msgid "Course Name"
msgstr "Nombre del Curso" msgstr "Nombre del Curso"
#: frontend/src/pages/CourseDetail.vue:74 #: frontend/src/pages/CourseDetail.vue:76
msgid "Course Outline" msgid "Course Outline"
msgstr "" msgstr ""
@@ -1322,6 +1349,10 @@ msgstr ""
msgid "Create a new question" msgid "Create a new question"
msgstr "Crear una nueva pregunta" msgstr "Crear una nueva pregunta"
#: frontend/src/pages/Assignments.vue:163
msgid "Created"
msgstr "Creado"
#. Label of the currency (Link) field in DocType 'Web Form' #. Label of the currency (Link) field in DocType 'Web Form'
#. Label of the currency (Link) field in DocType 'LMS Batch' #. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course' #. Label of the currency (Link) field in DocType 'LMS Course'
@@ -1487,8 +1518,8 @@ msgid "Desk"
msgstr "Escritorio" msgstr "Escritorio"
#: frontend/src/components/Modals/DiscussionModal.vue:22 #: frontend/src/components/Modals/DiscussionModal.vue:22
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:28 #: frontend/src/pages/AssignmentForm.vue:27 frontend/src/pages/BatchForm.vue:14
#: frontend/src/pages/QuizForm.vue:42 #: frontend/src/pages/CourseForm.vue:28 frontend/src/pages/QuizForm.vue:42
msgid "Details" msgid "Details"
msgstr "Detalles" msgstr "Detalles"
@@ -1619,6 +1650,10 @@ msgstr "Correo Electrónico Enviado"
msgid "Email Templates" msgid "Email Templates"
msgstr "Plantillas de correo" msgstr "Plantillas de correo"
#: frontend/src/components/BatchStudents.vue:409
msgid "Email copied to clipboard"
msgstr ""
#. Label of the show_emails (Check) field in DocType 'LMS Settings' #. Label of the show_emails (Check) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Emails" msgid "Emails"
@@ -1699,8 +1734,8 @@ msgid "Enroll Now"
msgstr "Inscribirse ahora" msgstr "Inscribirse ahora"
#: frontend/src/components/CourseCard.vue:43 #: frontend/src/components/CourseCard.vue:43
#: frontend/src/components/CourseCardOverlay.vue:103 #: frontend/src/components/CourseCardOverlay.vue:104
#: frontend/src/pages/CourseDetail.vue:31 #: frontend/src/pages/CourseDetail.vue:33
msgid "Enrolled Students" msgid "Enrolled Students"
msgstr "Estudiantes inscritos" msgstr "Estudiantes inscritos"
@@ -1717,7 +1752,7 @@ msgstr "Confirmación de inscripción para el próximo Lote de Entrenamiento"
msgid "Enrollment Count" msgid "Enrollment Count"
msgstr "Recuento de inscripciones" msgstr "Recuento de inscripciones"
#: lms/lms/utils.py:1720 #: lms/lms/utils.py:1726
msgid "Enrollment Failed" msgid "Enrollment Failed"
msgstr "Error al inscribirse" msgstr "Error al inscribirse"
@@ -1733,7 +1768,7 @@ msgstr "Inscripciones"
msgid "Enter Client Id and Client Secret in Google Settings to send calendar invites for evaluations." msgid "Enter Client Id and Client Secret in Google Settings to send calendar invites for evaluations."
msgstr "Ingrese el ID del cliente y el secreto del cliente en la configuración de Google para enviar invitaciones al calendario para evaluaciones." msgstr "Ingrese el ID del cliente y el secreto del cliente en la configuración de Google para enviar invitaciones al calendario para evaluaciones."
#: frontend/src/pages/AssignmentSubmission.vue:96 #: frontend/src/components/Assignment.vue:110
msgid "Enter a URL" msgid "Enter a URL"
msgstr "Introduce una URL" msgstr "Introduce una URL"
@@ -1745,6 +1780,7 @@ msgstr "Ingrese un título y guarde el cuestionario para continuar."
msgid "Enter the correct answer" msgid "Enter the correct answer"
msgstr "Ingrese la respuesta correcta" msgstr "Ingrese la respuesta correcta"
#: frontend/src/components/Assignment.vue:268
#: frontend/src/components/Modals/AnnouncementModal.vue:105 #: frontend/src/components/Modals/AnnouncementModal.vue:105
#: frontend/src/components/Modals/BulkCertificates.vue:115 #: frontend/src/components/Modals/BulkCertificates.vue:115
#: frontend/src/components/Modals/ChapterModal.vue:159 #: frontend/src/components/Modals/ChapterModal.vue:159
@@ -1755,8 +1791,9 @@ msgstr "Ingrese la respuesta correcta"
#: frontend/src/components/Modals/Question.vue:326 #: frontend/src/components/Modals/Question.vue:326
#: frontend/src/components/Modals/StudentModal.vue:69 #: frontend/src/components/Modals/StudentModal.vue:69
#: frontend/src/components/SettingDetails.vue:62 #: frontend/src/components/SettingDetails.vue:62
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350 #: frontend/src/pages/AssignmentForm.vue:139
#: frontend/src/pages/QuizForm.vue:365 #: frontend/src/pages/AssignmentForm.vue:159 frontend/src/pages/Billing.vue:264
#: frontend/src/pages/QuizForm.vue:346 frontend/src/pages/QuizForm.vue:361
#: frontend/src/pages/QuizSubmission.vue:141 #: frontend/src/pages/QuizSubmission.vue:141
msgid "Error" msgid "Error"
msgstr "Error" msgstr "Error"
@@ -1919,7 +1956,7 @@ msgstr "Falla"
msgid "Featured" msgid "Featured"
msgstr "Destacados" msgstr "Destacados"
#: frontend/src/pages/AssignmentSubmission.vue:21 #: frontend/src/components/Assignment.vue:61
msgid "Feel free to make edits to your submission if needed." msgid "Feel free to make edits to your submission if needed."
msgstr "Siéntase libre de realizar modificaciones en su envío si es necesario." msgstr "Siéntase libre de realizar modificaciones en su envío si es necesario."
@@ -1938,6 +1975,10 @@ msgstr "Campo de especialización/estudio"
msgid "File Type" msgid "File Type"
msgstr "Tipo de Archivo" msgstr "Tipo de Archivo"
#: frontend/src/pages/Jobs.vue:47
msgid "Find the perfect job for you"
msgstr ""
#: frontend/src/components/Members.vue:38 #: frontend/src/components/Members.vue:38
#: frontend/src/components/Modals/EditProfile.vue:59 #: frontend/src/components/Modals/EditProfile.vue:59
msgid "First Name" msgid "First Name"
@@ -1953,7 +1994,7 @@ msgstr "Horario fijo de 9 a 5"
msgid "Flexible Time" msgid "Flexible Time"
msgstr "Horario flexible" msgstr "Horario flexible"
#: frontend/src/pages/QuizForm.vue:463 #: frontend/src/pages/QuizForm.vue:459
msgid "Form to create and edit quizzes" msgid "Form to create and edit quizzes"
msgstr "Formulario para crear y editar cuestionarios" msgstr "Formulario para crear y editar cuestionarios"
@@ -1967,7 +2008,7 @@ msgid "Free"
msgstr "Gratis" msgstr "Gratis"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:118 #: frontend/src/pages/Jobs.vue:121
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Freelance" msgid "Freelance"
msgstr "Freelance" msgstr "Freelance"
@@ -2009,7 +2050,7 @@ msgid "Full Name"
msgstr "Nombre completo" msgstr "Nombre completo"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:115 #: frontend/src/pages/Jobs.vue:118
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Full Time" msgid "Full Time"
msgstr "Tiempo completo" msgstr "Tiempo completo"
@@ -2069,6 +2110,7 @@ msgid "Google Meet Link"
msgstr "Enlace Google Meet" msgstr "Enlace Google Meet"
#. 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:154
#: lms/lms/doctype/education_detail/education_detail.json #: lms/lms/doctype/education_detail/education_detail.json
msgid "Grade" msgid "Grade"
msgstr "Calificación" msgstr "Calificación"
@@ -2083,6 +2125,10 @@ msgstr "Calificar asignación"
msgid "Grade Type" msgid "Grade Type"
msgstr "Tipo de grado" msgstr "Tipo de grado"
#: frontend/src/components/Assignment.vue:149
msgid "Grading"
msgstr ""
#. Label of the grant_only_once (Check) field in DocType 'LMS Badge' #. Label of the grant_only_once (Check) field in DocType 'LMS Badge'
#: lms/lms/doctype/lms_badge/lms_badge.json #: lms/lms/doctype/lms_badge/lms_badge.json
msgid "Grant only once" msgid "Grant only once"
@@ -2146,7 +2192,7 @@ msgstr "Consejos"
msgid "Host" msgid "Host"
msgstr "Anfitrión" msgstr "Anfitrión"
#: frontend/src/components/LessonHelp.vue:9 #: frontend/src/components/LessonHelp.vue:24
msgid "How to add a Quiz?" msgid "How to add a Quiz?"
msgstr "¿Cómo añadir un cuestionario?" msgstr "¿Cómo añadir un cuestionario?"
@@ -2168,7 +2214,7 @@ msgstr "Estoy buscando un trabajo"
msgid "I am unavailable" msgid "I am unavailable"
msgstr "No estoy disponible" msgstr "No estoy disponible"
#: frontend/src/pages/QuizForm.vue:384 #: frontend/src/pages/QuizForm.vue:380
msgid "ID" msgid "ID"
msgstr "Identificador" msgstr "Identificador"
@@ -2178,7 +2224,7 @@ msgstr "Identificador"
msgid "Icon" msgid "Icon"
msgstr "Icono" msgstr "Icono"
#: frontend/src/components/LessonHelp.vue:68 #: frontend/src/components/LessonHelp.vue:11
msgid "If Include in Preview is enabled for a lesson then the lesson will also be accessible to non logged in users." msgid "If Include in Preview is enabled for a lesson then the lesson will also be accessible to non logged in users."
msgstr "Si la opción Incluir en vista previa está habilitada para una lección, la lección también será accesible para usuarios que no hayan iniciado sesión." msgstr "Si la opción Incluir en vista previa está habilitada para una lección, la lección también será accesible para usuarios que no hayan iniciado sesión."
@@ -2261,7 +2307,7 @@ msgstr "Incompleto"
#. Option for the 'Status' (Select) field in DocType 'Exercise Latest #. Option for the 'Status' (Select) field in DocType 'Exercise Latest
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'Exercise Submission' #. Option for the 'Status' (Select) field in DocType 'Exercise Submission'
#: frontend/src/components/Quiz.vue:166 #: frontend/src/components/Quiz.vue:168
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
#: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json
msgid "Incorrect" msgid "Incorrect"
@@ -2469,7 +2515,7 @@ msgstr "Título del trabajo"
msgid "Jobs" msgid "Jobs"
msgstr "Trabajos" msgstr "Trabajos"
#: frontend/src/components/LiveClass.vue:55 #: frontend/src/components/LiveClass.vue:58
#: lms/templates/upcoming_evals.html:15 #: lms/templates/upcoming_evals.html:15
msgid "Join" msgid "Join"
msgstr "Unirse" msgstr "Unirse"
@@ -2759,7 +2805,7 @@ msgstr "Título de la lección"
#. Group in Course Chapter's connections #. Group in Course Chapter's connections
#. Label of the lessons (Data) field in DocType 'LMS Course' #. Label of the lessons (Data) field in DocType 'LMS Course'
#: frontend/src/components/CourseCard.vue:34 #: frontend/src/components/CourseCard.vue:34
#: frontend/src/components/CourseCardOverlay.vue:96 #: frontend/src/components/CourseCardOverlay.vue:97
#: lms/lms/doctype/course_chapter/course_chapter.json #: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "Lessons" msgid "Lessons"
@@ -2825,6 +2871,7 @@ msgid "LiveCode URL"
msgstr "URL LiveCode" msgstr "URL LiveCode"
#: frontend/src/components/Members.vue:106 #: frontend/src/components/Members.vue:106
#: frontend/src/pages/Assignments.vue:71
#: frontend/src/pages/QuizSubmissionList.vue:39 #: frontend/src/pages/QuizSubmissionList.vue:39
#: frontend/src/pages/Quizzes.vue:51 #: frontend/src/pages/Quizzes.vue:51
msgid "Load More" msgid "Load More"
@@ -2854,6 +2901,7 @@ msgstr "Ubicación"
msgid "Location Preference" msgid "Location Preference"
msgstr "Preferencia de ubicación" msgstr "Preferencia de ubicación"
#: frontend/src/components/AssignmentBlock.vue:13
#: frontend/src/components/NoPermission.vue:28 #: frontend/src/components/NoPermission.vue:28
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:175 #: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:175
#: frontend/src/pages/Lesson.vue:24 #: frontend/src/pages/Lesson.vue:24
@@ -2913,7 +2961,7 @@ msgstr "Marcar como leído"
#. Label of the marks (Int) field in DocType 'LMS Quiz Result' #. Label of the marks (Int) field in DocType 'LMS Quiz Result'
#: frontend/src/components/Modals/Question.vue:50 #: frontend/src/components/Modals/Question.vue:50
#: frontend/src/components/Modals/Question.vue:99 #: frontend/src/components/Modals/Question.vue:99
#: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:394 #: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:390
#: frontend/src/pages/QuizSubmission.vue:59 #: frontend/src/pages/QuizSubmission.vue:59
#: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json #: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json
#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json
@@ -2970,6 +3018,7 @@ msgstr "Medio:"
#. Label of the member (Link) field in DocType 'LMS Payment' #. Label of the member (Link) field in DocType 'LMS Payment'
#. Label of the member (Link) field in DocType 'LMS Program Member' #. Label of the member (Link) field in DocType 'LMS Program Member'
#. Label of the member (Link) field in DocType 'LMS Quiz Submission' #. Label of the member (Link) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/AssignmentSubmissionList.vue:14
#: frontend/src/pages/QuizSubmission.vue:31 #: frontend/src/pages/QuizSubmission.vue:31
#: frontend/src/pages/QuizSubmissionList.vue:86 #: frontend/src/pages/QuizSubmissionList.vue:86
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
@@ -3140,11 +3189,11 @@ msgstr "Moderador"
msgid "Modified By" msgid "Modified By"
msgstr "Modificado por" msgstr "Modificado por"
#: lms/lms/api.py:199 #: lms/lms/api.py:201
msgid "Module Name is incorrect or does not exist." msgid "Module Name is incorrect or does not exist."
msgstr "El nombre del módulo es incorrecto o no existe." msgstr "El nombre del módulo es incorrecto o no existe."
#: lms/lms/api.py:195 #: lms/lms/api.py:197
msgid "Module is incorrect." msgid "Module is incorrect."
msgstr "Módulo incorrecto." msgstr "Módulo incorrecto."
@@ -3173,12 +3222,17 @@ msgid "My calendar"
msgstr "Mi calendario" msgstr "Mi calendario"
#. Option for the 'Event' (Select) field in DocType 'LMS Badge' #. Option for the 'Event' (Select) field in DocType 'LMS Badge'
#: frontend/src/pages/Batches.vue:30 frontend/src/pages/Courses.vue:45 #: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:30
#: frontend/src/pages/Programs.vue:14 lms/lms/doctype/lms_badge/lms_badge.json #: frontend/src/pages/Courses.vue:45 frontend/src/pages/Programs.vue:14
#: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New" msgid "New"
msgstr "Nuevo" msgstr "Nuevo"
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:41 #: frontend/src/pages/AssignmentForm.vue:178
msgid "New Assignment"
msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:43
msgid "New Assignment Submission" msgid "New Assignment Submission"
msgstr "Nuevo envío de la tarea" msgstr "Nuevo envío de la tarea"
@@ -3214,7 +3268,7 @@ msgstr ""
msgid "New Question" msgid "New Question"
msgstr "Nueva pregunta" msgstr "Nueva pregunta"
#: frontend/src/pages/QuizForm.vue:454 frontend/src/pages/QuizForm.vue:462 #: frontend/src/pages/QuizForm.vue:450 frontend/src/pages/QuizForm.vue:458
#: frontend/src/pages/Quizzes.vue:18 #: frontend/src/pages/Quizzes.vue:18
msgid "New Quiz" msgid "New Quiz"
msgstr "Nuevo cuestionario" msgstr "Nuevo cuestionario"
@@ -3236,7 +3290,7 @@ msgstr "Nueva respuesta sobre el tema {0} en curso {1}"
msgid "New {0}" msgid "New {0}"
msgstr "Nuevo/a: {0}" msgstr "Nuevo/a: {0}"
#: frontend/src/components/Quiz.vue:209 frontend/src/pages/Lesson.vue:84 #: frontend/src/components/Quiz.vue:211 frontend/src/pages/Lesson.vue:84
msgid "Next" msgid "Next"
msgstr "Siguiente" msgstr "Siguiente"
@@ -3244,7 +3298,7 @@ msgstr "Siguiente"
msgid "Next Question" msgid "Next Question"
msgstr "Siguiente pregunta" msgstr "Siguiente pregunta"
#: frontend/src/components/Assessments.vue:66 lms/templates/assessments.html:58 #: frontend/src/components/Assessments.vue:75 lms/templates/assessments.html:58
msgid "No Assessments" msgid "No Assessments"
msgstr "Sin evaluaciones" msgstr "Sin evaluaciones"
@@ -3265,6 +3319,10 @@ msgstr "No hay próximas evaluaciones"
msgid "No announcements" msgid "No announcements"
msgstr "Sin anuncios" msgstr "Sin anuncios"
#: frontend/src/pages/Assignments.vue:56
msgid "No assignments found"
msgstr ""
#: frontend/src/pages/Batches.vue:125 #: frontend/src/pages/Batches.vue:125
msgid "No batches found" msgid "No batches found"
msgstr "No se encontraron grupos" msgstr "No se encontraron grupos"
@@ -3293,11 +3351,11 @@ msgstr "No hay cursos en revisión"
msgid "No introduction" msgid "No introduction"
msgstr "No hay introducción" msgstr "No hay introducción"
#: frontend/src/pages/Jobs.vue:60 #: frontend/src/pages/Jobs.vue:63
msgid "No jobs posted" msgid "No jobs posted"
msgstr "No hay trabajos publicados" msgstr "No hay trabajos publicados"
#: frontend/src/components/LiveClass.vue:61 #: frontend/src/components/LiveClass.vue:71
msgid "No live classes scheduled" msgid "No live classes scheduled"
msgstr "No hay clases en vivo programadas" msgstr "No hay clases en vivo programadas"
@@ -3313,6 +3371,10 @@ msgstr ""
msgid "No slots available for this date." msgid "No slots available for this date."
msgstr "No hay cupos disponibles para esta fecha." msgstr "No hay cupos disponibles para esta fecha."
#: frontend/src/pages/AssignmentSubmissionList.vue:67
msgid "No submissions"
msgstr ""
#: frontend/src/components/UpcomingEvaluations.vue:39 #: frontend/src/components/UpcomingEvaluations.vue:39
msgid "No upcoming evaluations." msgid "No upcoming evaluations."
msgstr "No hay próximas evaluaciones." msgstr "No hay próximas evaluaciones."
@@ -3361,6 +3423,7 @@ msgstr "Sin calificar"
msgid "Not Permitted" msgid "Not Permitted"
msgstr "No permitido" msgstr "No permitido"
#: frontend/src/components/Assignment.vue:33
#: frontend/src/components/BrandSettings.vue:10 #: frontend/src/components/BrandSettings.vue:10
#: frontend/src/components/PaymentSettings.vue:9 #: frontend/src/components/PaymentSettings.vue:9
#: frontend/src/components/SettingDetails.vue:10 #: frontend/src/components/SettingDetails.vue:10
@@ -3404,7 +3467,7 @@ msgstr "Desconectado"
msgid "Once again, congratulations on this significant accomplishment." msgid "Once again, congratulations on this significant accomplishment."
msgstr "Una vez más, felicidades por este importante logro." msgstr "Una vez más, felicidades por este importante logro."
#: frontend/src/pages/AssignmentSubmission.vue:17 #: frontend/src/components/Assignment.vue:57
msgid "Once the moderator grades your submission, you'll find the details here." msgid "Once the moderator grades your submission, you'll find the details here."
msgstr "Una vez que el moderador califique su envío, encontrará los detalles aquí." msgstr "Una vez que el moderador califique su envío, encontrará los detalles aquí."
@@ -3421,7 +3484,7 @@ msgstr ""
msgid "Only files of type {0} will be accepted." msgid "Only files of type {0} will be accepted."
msgstr "Sólo se aceptarán archivos del tipo {0}." msgstr "Sólo se aceptarán archivos del tipo {0}."
#: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:527 #: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:529
msgid "Only image file is allowed." msgid "Only image file is allowed."
msgstr "Sólo se permiten archivos de imagen." msgstr "Sólo se permiten archivos de imagen."
@@ -3550,7 +3613,7 @@ msgid "Pan Number"
msgstr "Número NIF" msgstr "Número NIF"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:116 #: frontend/src/pages/Jobs.vue:119
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Part Time" msgid "Part Time"
msgstr "Tiempo parcial" msgstr "Tiempo parcial"
@@ -3681,7 +3744,7 @@ msgstr "Porcentaje (por ejemplo, 70%)"
msgid "Phone Number" msgid "Phone Number"
msgstr "Número de teléfono" msgstr "Número de teléfono"
#: frontend/src/components/CourseCardOverlay.vue:141 #: frontend/src/components/CourseCardOverlay.vue:145
msgid "Please Login" msgid "Please Login"
msgstr "Por favor, inicie sesión" msgstr "Por favor, inicie sesión"
@@ -3701,7 +3764,7 @@ msgstr "Por favor, consultar su correo electrónico para la verificación"
msgid "Please click on the following button to set your new password" msgid "Please click on the following button to set your new password"
msgstr "Haga clic en el siguiente botón para establecer su nueva contraseña" msgstr "Haga clic en el siguiente botón para establecer su nueva contraseña"
#: lms/lms/utils.py:1842 lms/lms/utils.py:1846 #: lms/lms/utils.py:1848 lms/lms/utils.py:1852
msgid "Please complete the previous courses in the program to enroll in this course." msgid "Please complete the previous courses in the program to enroll in this course."
msgstr "" msgstr ""
@@ -3721,8 +3784,8 @@ msgstr "Asegúrese de completar todas las preguntas en {0} minutos."
msgid "Please enter a title." msgid "Please enter a title."
msgstr "" msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:38 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:40
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:98 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:122
msgid "Please enter a valid URL." msgid "Please enter a valid URL."
msgstr "Introduce una URL válida." msgstr "Introduce una URL válida."
@@ -3730,7 +3793,7 @@ msgstr "Introduce una URL válida."
msgid "Please enter a valid time in the format HH:mm." msgid "Please enter a valid time in the format HH:mm."
msgstr "" msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:92 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:116
msgid "Please enter the URL for assignment submission." msgid "Please enter the URL for assignment submission."
msgstr "Por favor, introduzca la URL para el envío de la tarea." msgstr "Por favor, introduzca la URL para el envío de la tarea."
@@ -3750,6 +3813,10 @@ msgstr "Instale la aplicación Pagos para crear un curso pago."
msgid "Please let us know where you heard about us from." msgid "Please let us know where you heard about us from."
msgstr "Por favor, háganos saber dónde se enteró de nosotros." msgstr "Por favor, háganos saber dónde se enteró de nosotros."
#: frontend/src/components/AssignmentBlock.vue:9
msgid "Please login to access the assignment."
msgstr ""
#: frontend/src/components/QuizBlock.vue:5 #: frontend/src/components/QuizBlock.vue:5
msgid "Please login to access the quiz." msgid "Please login to access the quiz."
msgstr "Inicie sesión para acceder al cuestionario." msgstr "Inicie sesión para acceder al cuestionario."
@@ -3758,7 +3825,7 @@ msgstr "Inicie sesión para acceder al cuestionario."
msgid "Please login to access this page." msgid "Please login to access this page."
msgstr "Por favor inicie sesión para acceder a esta página." msgstr "Por favor inicie sesión para acceder a esta página."
#: lms/lms/api.py:191 #: lms/lms/api.py:193
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."
@@ -3795,7 +3862,7 @@ msgstr "Tome las medidas adecuadas en {0}"
msgid "Please upload a SCORM package" msgid "Please upload a SCORM package"
msgstr "" msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:95 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:119
msgid "Please upload the assignment file." msgid "Please upload the assignment file."
msgstr "Por favor, suba el archivo de la tarea." msgstr "Por favor, suba el archivo de la tarea."
@@ -4003,9 +4070,9 @@ msgstr "Publicado el"
#. Label of the question (Text Editor) field in DocType 'LMS Question' #. Label of the question (Text Editor) field in DocType 'LMS Question'
#. Label of the question (Link) field in DocType 'LMS Quiz Question' #. Label of the question (Link) field in DocType 'LMS Quiz Question'
#. Label of the question (Text) field in DocType 'LMS Quiz Result' #. Label of the question (Text) field in DocType 'LMS Quiz Result'
#: frontend/src/components/Assignment.vue:17
#: frontend/src/components/Modals/Question.vue:38 #: frontend/src/components/Modals/Question.vue:38
#: frontend/src/pages/AssignmentSubmission.vue:26 #: frontend/src/pages/AssignmentForm.vue:45 frontend/src/pages/QuizForm.vue:385
#: frontend/src/pages/QuizForm.vue:389
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment/lms_assignment.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
@@ -4042,7 +4109,7 @@ msgstr "Pregunta actualizada correctamente"
msgid "Question {0}" msgid "Question {0}"
msgstr "Pregunta {0}" msgstr "Pregunta {0}"
#: frontend/src/components/Quiz.vue:186 #: frontend/src/components/Quiz.vue:188
msgid "Question {0} of {1}" msgid "Question {0} of {1}"
msgstr "Pregunta {0} de {1}" msgstr "Pregunta {0} de {1}"
@@ -4051,7 +4118,7 @@ msgstr "Pregunta {0} de {1}"
msgid "Questions" msgid "Questions"
msgstr "Preguntas" msgstr "Preguntas"
#: frontend/src/pages/QuizForm.vue:431 #: frontend/src/pages/QuizForm.vue:427
msgid "Questions deleted successfully" msgid "Questions deleted successfully"
msgstr "Preguntas eliminadas correctamente" msgstr "Preguntas eliminadas correctamente"
@@ -4079,7 +4146,7 @@ msgstr "Envíos de cuestionarios"
msgid "Quiz Submissions" msgid "Quiz Submissions"
msgstr "Envíos de cuestionarios" msgstr "Envíos de cuestionarios"
#: frontend/src/components/Quiz.vue:223 #: frontend/src/components/Quiz.vue:225
msgid "Quiz Summary" msgid "Quiz Summary"
msgstr "Resumen del cuestionario" msgstr "Resumen del cuestionario"
@@ -4088,7 +4155,7 @@ msgstr "Resumen del cuestionario"
msgid "Quiz Title" msgid "Quiz Title"
msgstr "Título del cuestionario" msgstr "Título del cuestionario"
#: frontend/src/pages/QuizForm.vue:343 #: frontend/src/pages/QuizForm.vue:339
msgid "Quiz created successfully" msgid "Quiz created successfully"
msgstr "Cuestionario creado correctamente" msgstr "Cuestionario creado correctamente"
@@ -4096,7 +4163,7 @@ msgstr "Cuestionario creado correctamente"
msgid "Quiz is not available to Guest users. Please login to continue." msgid "Quiz is not available to Guest users. Please login to continue."
msgstr "El cuestionario no está disponible para usuarios invitados. Por favor inicie sesión para continuar." msgstr "El cuestionario no está disponible para usuarios invitados. Por favor inicie sesión para continuar."
#: frontend/src/pages/QuizForm.vue:362 #: frontend/src/pages/QuizForm.vue:358
msgid "Quiz updated successfully" msgid "Quiz updated successfully"
msgstr "Cuestionario actualizado correctamente" msgstr "Cuestionario actualizado correctamente"
@@ -4105,7 +4172,7 @@ msgstr "Cuestionario actualizado correctamente"
msgid "Quiz will appear at the bottom of the lesson." msgid "Quiz will appear at the bottom of the lesson."
msgstr "El cuestionario aparecerá al final de la lección." msgstr "El cuestionario aparecerá al final de la lección."
#: frontend/src/pages/QuizForm.vue:442 frontend/src/pages/Quizzes.vue:138 #: frontend/src/pages/QuizForm.vue:438 frontend/src/pages/Quizzes.vue:138
#: frontend/src/pages/Quizzes.vue:148 #: frontend/src/pages/Quizzes.vue:148
msgid "Quizzes" msgid "Quizzes"
msgstr "Cuestionarios" msgstr "Cuestionarios"
@@ -4113,7 +4180,7 @@ msgstr "Cuestionarios"
#. Label of the rating (Rating) field in DocType 'LMS Certificate Evaluation' #. Label of the rating (Rating) field in DocType 'LMS Certificate Evaluation'
#. 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:108 #: frontend/src/components/CourseCardOverlay.vue:110
#: frontend/src/components/Modals/Event.vue:86 #: frontend/src/components/Modals/Event.vue:86
#: frontend/src/components/Modals/ReviewModal.vue:20 #: frontend/src/components/Modals/ReviewModal.vue:20
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -4127,10 +4194,6 @@ msgstr "Clasificación"
msgid "Rating cannot be 0" msgid "Rating cannot be 0"
msgstr "La calificación no puede ser 0" msgstr "La calificación no puede ser 0"
#: frontend/src/pages/AssignmentSubmission.vue:30
msgid "Read the question carefully before attempting the assignment."
msgstr "Lea la pregunta detenidamente antes de intentar la asignación."
#. Option for the 'Stage' (Select) field in DocType 'LMS Batch Old' #. Option for the 'Stage' (Select) field in DocType 'LMS Batch Old'
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
msgid "Ready" msgid "Ready"
@@ -4309,15 +4372,15 @@ msgstr ""
msgid "Saturday" msgid "Saturday"
msgstr "Sábado" msgstr "Sábado"
#: frontend/src/components/AssessmentPlugin.vue:34
#: frontend/src/components/Assignment.vue:43
#: frontend/src/components/Controls/CodeEditor.vue:25 #: frontend/src/components/Controls/CodeEditor.vue:25
#: frontend/src/components/Modals/Event.vue:101 #: frontend/src/components/Modals/Event.vue:101
#: frontend/src/components/Modals/Event.vue:129 #: frontend/src/components/Modals/Event.vue:129
#: frontend/src/components/QuizPlugin.vue:23 #: frontend/src/pages/AssignmentForm.vue:21 frontend/src/pages/BatchForm.vue:8
#: frontend/src/pages/AssignmentSubmission.vue:7 #: frontend/src/pages/CourseForm.vue:20 frontend/src/pages/JobCreation.vue:8
#: frontend/src/pages/BatchForm.vue:8 frontend/src/pages/CourseForm.vue:20 #: frontend/src/pages/LessonForm.vue:14 frontend/src/pages/ProgramForm.vue:7
#: frontend/src/pages/JobCreation.vue:8 frontend/src/pages/LessonForm.vue:14 #: frontend/src/pages/QuizForm.vue:34 frontend/src/pages/QuizSubmission.vue:14
#: frontend/src/pages/ProgramForm.vue:7 frontend/src/pages/QuizForm.vue:34
#: frontend/src/pages/QuizSubmission.vue:14
#: lms/public/js/common_functions.js:405 #: lms/public/js/common_functions.js:405
msgid "Save" msgid "Save"
msgstr "Guardar" msgstr "Guardar"
@@ -4359,6 +4422,10 @@ msgstr "Puntuación fuera de"
msgid "Search" msgid "Search"
msgstr "Buscar" msgstr "Buscar"
#: frontend/src/pages/Assignments.vue:25
msgid "Search by title"
msgstr ""
#: frontend/src/components/Controls/IconPicker.vue:36 #: frontend/src/components/Controls/IconPicker.vue:36
msgid "Search for an icon" msgid "Search for an icon"
msgstr "Buscar un icono" msgstr "Buscar un icono"
@@ -4384,7 +4451,7 @@ msgstr "Asiento restantea"
msgid "Select a question" msgid "Select a question"
msgstr "Seleccione una pregunta" msgstr "Seleccione una pregunta"
#: frontend/src/components/QuizPlugin.vue:17 #: frontend/src/components/AssessmentPlugin.vue:21
msgid "Select a quiz" msgid "Select a quiz"
msgstr "Seleccione un cuestionario" msgstr "Seleccione un cuestionario"
@@ -4392,6 +4459,10 @@ msgstr "Seleccione un cuestionario"
msgid "Select a slot" msgid "Select a slot"
msgstr "Selecciona un Espacio" msgstr "Selecciona un Espacio"
#: frontend/src/components/AssessmentPlugin.vue:28
msgid "Select an assignment"
msgstr ""
#. Label of the send_calendar_invite_for_evaluations (Check) field in DocType #. Label of the send_calendar_invite_for_evaluations (Check) field in DocType
#. 'LMS Settings' #. 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -4583,7 +4654,7 @@ msgstr "Personal"
msgid "Stage" msgid "Stage"
msgstr "Etapa" msgstr "Etapa"
#: frontend/src/components/LiveClass.vue:46 frontend/src/components/Quiz.vue:65 #: frontend/src/components/LiveClass.vue:50 frontend/src/components/Quiz.vue:65
#: lms/templates/quiz/quiz.html:39 #: lms/templates/quiz/quiz.html:39
msgid "Start" msgid "Start"
msgstr "Iniciar" msgstr "Iniciar"
@@ -4664,6 +4735,7 @@ msgstr "Estadísticas"
#. Label of the status (Select) field in DocType 'LMS Course Progress' #. Label of the status (Select) field in DocType 'LMS Course Progress'
#. Label of the status (Select) field in DocType 'LMS Mentor Request' #. Label of the status (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:91 #: frontend/src/components/Modals/Event.vue:91
#: frontend/src/pages/AssignmentSubmissionList.vue:19
#: frontend/src/pages/JobCreation.vue:41 #: frontend/src/pages/JobCreation.vue:41
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/cohort/cohort.json
@@ -4724,7 +4796,7 @@ msgstr "El estudiante {0} ya ha sido añadido a este lote."
msgid "Students" msgid "Students"
msgstr "Estudiantes" msgstr "Estudiantes"
#: frontend/src/components/BatchStudents.vue:282 #: frontend/src/components/BatchStudents.vue:310
msgid "Students deleted successfully" msgid "Students deleted successfully"
msgstr "Estudiantes eliminados correctamente" msgstr "Estudiantes eliminados correctamente"
@@ -4746,19 +4818,24 @@ msgstr "Subgrupo"
msgid "Subject" msgid "Subject"
msgstr "Asunto" msgstr "Asunto"
#: frontend/src/pages/AssignmentSubmission.vue:40 #: frontend/src/components/Assignment.vue:29
msgid "Submission" msgid "Submission"
msgstr "Envío" msgstr "Envío"
#: frontend/src/pages/QuizForm.vue:30 #: frontend/src/pages/AssignmentForm.vue:17 frontend/src/pages/QuizForm.vue:30
msgid "Submission List" msgid "Submission List"
msgstr "Lista de entregas" msgstr "Lista de entregas"
#: frontend/src/components/Assignment.vue:10
#: frontend/src/components/Assignment.vue:13
msgid "Submission by"
msgstr ""
#: frontend/src/components/Modals/AssessmentModal.vue:9 #: frontend/src/components/Modals/AssessmentModal.vue:9
#: frontend/src/components/Modals/BatchCourseModal.vue:9 #: frontend/src/components/Modals/BatchCourseModal.vue:9
#: frontend/src/components/Modals/EvaluationModal.vue:9 #: frontend/src/components/Modals/EvaluationModal.vue:9
#: frontend/src/components/Modals/Question.vue:338 #: frontend/src/components/Modals/Question.vue:338
#: frontend/src/components/Quiz.vue:214 lms/templates/assignment.html:9 #: frontend/src/components/Quiz.vue:216 lms/templates/assignment.html:9
#: lms/templates/livecode/extension_footer.html:25 #: lms/templates/livecode/extension_footer.html:25
#: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163 #: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163
#: lms/www/new-sign-up.html:32 #: lms/www/new-sign-up.html:32
@@ -4774,10 +4851,12 @@ msgstr "Envíe su currículum para proceder con su solicitud para este puesto. U
msgid "Submitted {0}" msgid "Submitted {0}"
msgstr "Enviado {0}" msgstr "Enviado {0}"
#: frontend/src/components/Assignment.vue:316
#: frontend/src/components/BatchCourses.vue:150 #: frontend/src/components/BatchCourses.vue:150
#: frontend/src/components/BatchOverlay.vue:135 #: frontend/src/components/BatchOverlay.vue:135
#: frontend/src/components/BatchStudents.vue:282 #: frontend/src/components/BatchStudents.vue:310
#: frontend/src/components/CourseCardOverlay.vue:161 #: frontend/src/components/BatchStudents.vue:409
#: frontend/src/components/CourseCardOverlay.vue:165
#: frontend/src/components/Modals/AnnouncementModal.vue:99 #: frontend/src/components/Modals/AnnouncementModal.vue:99
#: frontend/src/components/Modals/AssessmentModal.vue:73 #: frontend/src/components/Modals/AssessmentModal.vue:73
#: frontend/src/components/Modals/BulkCertificates.vue:121 #: frontend/src/components/Modals/BulkCertificates.vue:121
@@ -4787,11 +4866,12 @@ msgstr "Enviado {0}"
#: frontend/src/components/Modals/Event.vue:310 #: frontend/src/components/Modals/Event.vue:310
#: frontend/src/components/Modals/Question.vue:264 #: frontend/src/components/Modals/Question.vue:264
#: frontend/src/components/Modals/Question.vue:315 #: frontend/src/components/Modals/Question.vue:315
#: frontend/src/pages/AssignmentForm.vue:155
#: frontend/src/pages/CourseForm.vue:461 frontend/src/pages/ProgramForm.vue:229 #: frontend/src/pages/CourseForm.vue:461 frontend/src/pages/ProgramForm.vue:229
#: frontend/src/pages/ProgramForm.vue:251 #: frontend/src/pages/ProgramForm.vue:251
#: frontend/src/pages/ProgramForm.vue:272 #: frontend/src/pages/ProgramForm.vue:272
#: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:343 #: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:339
#: frontend/src/pages/QuizForm.vue:362 frontend/src/pages/QuizForm.vue:431 #: frontend/src/pages/QuizForm.vue:358 frontend/src/pages/QuizForm.vue:427
msgid "Success" msgid "Success"
msgstr "Éxito" msgstr "Éxito"
@@ -4809,7 +4889,7 @@ msgstr "Resumen"
msgid "Sunday" msgid "Sunday"
msgstr "Domingo" msgstr "Domingo"
#: lms/lms/api.py:952 #: lms/lms/api.py:954
msgid "Suspicious pattern found in {0}: {1}" msgid "Suspicious pattern found in {0}: {1}"
msgstr "" msgstr ""
@@ -4924,6 +5004,10 @@ msgstr "Texto"
msgid "Thanks and Regards" msgid "Thanks and Regards"
msgstr "Gracias y saludos" msgstr "Gracias y saludos"
#: lms/lms/utils.py:1755
msgid "The batch is full. Please contact the Administrator."
msgstr ""
#: lms/templates/emails/lms_course_interest.html:5 #: lms/templates/emails/lms_course_interest.html:5
msgid "The course {0} is now available on {1}." msgid "The course {0} is now available on {1}."
msgstr "El curso {0} ya está disponible en {1}." msgstr "El curso {0} ya está disponible en {1}."
@@ -4964,14 +5048,22 @@ msgstr ""
msgid "There are no seats available in this batch." msgid "There are no seats available in this batch."
msgstr "No hay asientos disponibles en este lote." msgstr "No hay asientos disponibles en este lote."
#: frontend/src/components/BatchStudents.vue:165 #: frontend/src/components/BatchStudents.vue:182
msgid "There are no students in this batch." msgid "There are no students in this batch."
msgstr "No hay estudiantes en este lote." msgstr "No hay estudiantes en este lote."
#: frontend/src/pages/AssignmentSubmissionList.vue:70
msgid "There are no submissions for this assignment."
msgstr ""
#: lms/templates/course_list.html:14 #: lms/templates/course_list.html:14
msgid "There are no {0} on this site." msgid "There are no {0} on this site."
msgstr "No hay {0} en este sitio." msgstr "No hay {0} en este sitio."
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:82
msgid "There has been an update on your submission for assignment {0}"
msgstr ""
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:42 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:42
msgid "There has been an update on your submission. You have got a score of {0} for the quiz {1}" msgid "There has been an update on your submission. You have got a score of {0} for the quiz {1}"
msgstr "" msgstr ""
@@ -4991,11 +5083,15 @@ msgstr "Esta insignia se otorgó a {0} el {1}."
msgid "This certificate does no expire" msgid "This certificate does no expire"
msgstr "Este certificado no caduca" msgstr "Este certificado no caduca"
#: frontend/src/components/CourseCardOverlay.vue:91 #: frontend/src/components/LiveClass.vue:64
msgid "This class has ended"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:92
msgid "This course has:" msgid "This course has:"
msgstr "Este curso tiene:" msgstr "Este curso tiene:"
#: lms/lms/utils.py:1600 #: lms/lms/utils.py:1606
msgid "This course is free." msgid "This course is free."
msgstr "Este curso es gratuito." msgstr "Este curso es gratuito."
@@ -5098,10 +5194,12 @@ msgstr "Horarios:"
#. Label of the title (Data) field in DocType 'Work Experience' #. Label of the title (Data) field in DocType 'Work Experience'
#: frontend/src/components/Modals/DiscussionModal.vue:18 #: frontend/src/components/Modals/DiscussionModal.vue:18
#: frontend/src/components/Modals/LiveClassModal.vue:23 #: frontend/src/components/Modals/LiveClassModal.vue:23
#: frontend/src/pages/BatchForm.vue:20 frontend/src/pages/CourseForm.vue:32 #: frontend/src/pages/AssignmentForm.vue:32
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/ProgramForm.vue:11 #: frontend/src/pages/Assignments.vue:152 frontend/src/pages/BatchForm.vue:20
#: frontend/src/pages/Programs.vue:118 frontend/src/pages/QuizForm.vue:48 #: frontend/src/pages/CourseForm.vue:32 frontend/src/pages/JobCreation.vue:20
#: frontend/src/pages/Quizzes.vue:116 lms/lms/doctype/cohort/cohort.json #: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:118
#: frontend/src/pages/QuizForm.vue:48 frontend/src/pages/Quizzes.vue:116
#: lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/course_chapter/course_chapter.json #: lms/lms/doctype/course_chapter/course_chapter.json
@@ -5137,11 +5235,11 @@ msgstr "A"
msgid "To Date" msgid "To Date"
msgstr "Hasta la fecha" msgstr "Hasta la fecha"
#: lms/lms/utils.py:1611 #: lms/lms/utils.py:1617
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."
#: frontend/src/components/LessonHelp.vue:34 #: frontend/src/components/LessonHelp.vue:49
msgid "To upload Image, Video, Audio or PDF from your system, click on the add icon and select upload from the menu. Then choose the file you want to add to the lesson and it gets added to your lesson." msgid "To upload Image, Video, Audio or PDF from your system, click on the add icon and select upload from the menu. Then choose the file you want to add to the lesson and it gets added to your lesson."
msgstr "Para cargar una imagen, un vídeo, un audio o un PDF desde su sistema, haga clic en el icono de añadir y en el menú seleccione cargar. A continuación, elija el archivo que desea añadir a la lección y se añadirá a la misma." msgstr "Para cargar una imagen, un vídeo, un audio o un PDF desde su sistema, haga clic en el icono de añadir y en el menú seleccione cargar. A continuación, elija el archivo que desea añadir a la lección y se añadirá a la misma."
@@ -5169,7 +5267,7 @@ msgstr "Registros totales"
msgid "Travel" msgid "Travel"
msgstr "Viajes" msgstr "Viajes"
#: frontend/src/components/Quiz.vue:252 lms/templates/quiz/quiz.html:131 #: frontend/src/components/Quiz.vue:254 lms/templates/quiz/quiz.html:131
msgid "Try Again" msgid "Try Again"
msgstr "Inténtelo de nuevo" msgstr "Inténtelo de nuevo"
@@ -5191,6 +5289,8 @@ msgstr "Twitter"
#. Label of the type (Select) field in DocType 'LMS Quiz Question' #. Label of the type (Select) field in DocType 'LMS Quiz Question'
#: frontend/src/components/Modals/AssessmentModal.vue:22 #: frontend/src/components/Modals/AssessmentModal.vue:22
#: frontend/src/components/Modals/Question.vue:54 #: frontend/src/components/Modals/Question.vue:54
#: frontend/src/pages/AssignmentForm.vue:39
#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:157
#: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:16 #: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:16
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment/lms_assignment.json
@@ -5201,7 +5301,7 @@ msgstr "Twitter"
msgid "Type" msgid "Type"
msgstr "Tipo" msgstr "Tipo"
#: frontend/src/components/Quiz.vue:583 #: frontend/src/components/Quiz.vue:589
msgid "Type your answer" msgid "Type your answer"
msgstr "Escribe tu respuesta" msgstr "Escribe tu respuesta"
@@ -5282,11 +5382,11 @@ msgstr "Actualizar contraseña"
msgid "Upload" msgid "Upload"
msgstr "Subir" msgstr "Subir"
#: frontend/src/pages/AssignmentSubmission.vue:69 #: frontend/src/components/Assignment.vue:78
msgid "Upload File" msgid "Upload File"
msgstr "Subir archivo" msgstr "Subir archivo"
#: frontend/src/pages/AssignmentSubmission.vue:68 #: frontend/src/components/Assignment.vue:77
msgid "Uploading {0}%" msgid "Uploading {0}%"
msgstr "Subiendo {0}%" msgstr "Subiendo {0}%"
@@ -5404,7 +5504,7 @@ msgstr "Miércoles"
msgid "Welcome to {0}!" msgid "Welcome to {0}!"
msgstr "Bienvenido a {0}!" msgstr "Bienvenido a {0}!"
#: frontend/src/components/LessonHelp.vue:63 #: frontend/src/components/LessonHelp.vue:6
msgid "What does include in preview mean?" msgid "What does include in preview mean?"
msgstr "¿Qué significa incluir en la vista previa?" msgstr "¿Qué significa incluir en la vista previa?"
@@ -5453,7 +5553,7 @@ msgstr "Escribe una reseña"
msgid "Write a review" msgid "Write a review"
msgstr "Escribir una reseña" msgstr "Escribir una reseña"
#: frontend/src/pages/AssignmentSubmission.vue:102 #: frontend/src/components/Assignment.vue:120
msgid "Write your answer here" msgid "Write your answer here"
msgstr "Escriba su respuesta aquí" msgstr "Escriba su respuesta aquí"
@@ -5461,11 +5561,11 @@ msgstr "Escriba su respuesta aquí"
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}."
msgstr "Ya tiene una evaluación en {0} en {1} para el curso {2}." msgstr "Ya tiene una evaluación en {0} en {1} para el curso {2}."
#: lms/lms/api.py:215 #: lms/lms/api.py:217
msgid "You are already enrolled for this batch." msgid "You are already enrolled for this batch."
msgstr "Ya estás inscrito en este lote." msgstr "Ya estás inscrito en este lote."
#: lms/lms/api.py:207 #: lms/lms/api.py:209
msgid "You are already enrolled for this course." msgid "You are already enrolled for this course."
msgstr "Ya estás inscrito en este curso." msgstr "Ya estás inscrito en este curso."
@@ -5530,7 +5630,7 @@ msgstr "No tienes ninguna notificación."
msgid "You got" msgid "You got"
msgstr "Has conseguido" msgstr "Has conseguido"
#: frontend/src/components/Quiz.vue:234 #: frontend/src/components/Quiz.vue:236
#, python-format #, python-format
msgid "You got {0}% correct answers with a score of {1} out of {2}" msgid "You got {0}% correct answers with a score of {1} out of {2}"
msgstr "Obtuviste {0}% de respuestas correctas con una puntuación de {1} de {2}" msgstr "Obtuviste {0}% de respuestas correctas con una puntuación de {1} de {2}"
@@ -5551,7 +5651,7 @@ msgstr "Ya has revisado este curso"
msgid "You have been enrolled in this batch" msgid "You have been enrolled in this batch"
msgstr "Te has inscrito en este grupo" msgstr "Te has inscrito en este grupo"
#: frontend/src/components/CourseCardOverlay.vue:162 #: frontend/src/components/CourseCardOverlay.vue:166
msgid "You have been enrolled in this course" msgid "You have been enrolled in this course"
msgstr "Te has inscrito en este curso" msgstr "Te has inscrito en este curso"
@@ -5559,6 +5659,10 @@ msgstr "Te has inscrito en este curso"
msgid "You have got a score of {0} for the quiz {1}" msgid "You have got a score of {0} for the quiz {1}"
msgstr "" msgstr ""
#: frontend/src/pages/Assignments.vue:60
msgid "You have not created any assignments yet. To create a new assignment, click on the \"New\" button above."
msgstr ""
#: frontend/src/pages/Quizzes.vue:65 #: frontend/src/pages/Quizzes.vue:65
msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above." msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above."
msgstr "" msgstr ""
@@ -5571,7 +5675,7 @@ msgstr "Has optado por recibir notificaciones sobre este curso. Recibirás un co
msgid "You haven't enrolled for any courses" msgid "You haven't enrolled for any courses"
msgstr "No te has inscrito en ningún curso" msgstr "No te has inscrito en ningún curso"
#: frontend/src/components/CourseCardOverlay.vue:142 #: frontend/src/components/CourseCardOverlay.vue:146
msgid "You need to login first to enroll for this course" msgid "You need to login first to enroll for this course"
msgstr "Debes iniciar sesión primero para inscribirte en este curso." msgstr "Debes iniciar sesión primero para inscribirte en este curso."
@@ -5584,7 +5688,7 @@ msgstr "Tendrás que obtener {0}% de respuestas correctas para poder aprobar el
msgid "You've applied to become a mentor for this course. Your request is currently under review." msgid "You've applied to become a mentor for this course. Your request is currently under review."
msgstr "Has solicitado ser mentor para este curso. Tu solicitud está siendo revisada." msgstr "Has solicitado ser mentor para este curso. Tu solicitud está siendo revisada."
#: frontend/src/pages/AssignmentSubmission.vue:15 #: frontend/src/components/Assignment.vue:55
msgid "You've successfully submitted the assignment." msgid "You've successfully submitted the assignment."
msgstr "Ha enviado correctamente la tarea." msgstr "Ha enviado correctamente la tarea."
@@ -5628,7 +5732,7 @@ msgstr "Su solicitud para unirse a nosotros como mentor del curso"
msgid "Your score is" msgid "Your score is"
msgstr "Tu puntuación es" msgstr "Tu puntuación es"
#: frontend/src/components/Quiz.vue:227 #: frontend/src/components/Quiz.vue:229
msgid "Your submission has been successfully saved. The instructor will review and grade it shortly, and you'll be notified of your final result." msgid "Your submission has been successfully saved. The instructor will review and grade it shortly, and you'll be notified of your final result."
msgstr "Tu envío se ha guardado correctamente. El instructor lo revisará y calificará en breve y te notificará el resultado final." msgstr "Tu envío se ha guardado correctamente. El instructor lo revisará y calificará en breve y te notificará el resultado final."
@@ -5677,7 +5781,7 @@ msgstr "fuera de"
msgid "posted by" msgid "posted by"
msgstr "publicado por" msgstr "publicado por"
#: frontend/src/pages/QuizForm.vue:390 #: frontend/src/pages/QuizForm.vue:386
msgid "question_detail" msgid "question_detail"
msgstr "pregunta_detalle" msgstr "pregunta_detalle"
@@ -5693,7 +5797,7 @@ msgstr "estrellas"
msgid "you can" msgid "you can"
msgstr "puedes" msgstr "puedes"
#: lms/lms/api.py:749 lms/lms/api.py:757 #: lms/lms/api.py:751 lms/lms/api.py:759
msgid "{0} Settings not found" msgid "{0} Settings not found"
msgstr "Configuraciones {0} no encontradas" msgstr "Configuraciones {0} no encontradas"

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-12-27 16:04+0000\n" "POT-Creation-Date: 2025-01-03 16:04+0000\n"
"PO-Revision-Date: 2025-01-01 03:30\n" "PO-Revision-Date: 2025-01-07 04:09\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"
@@ -156,7 +156,7 @@ msgstr ""
msgid "Add a new question" msgid "Add a new question"
msgstr "" msgstr ""
#: frontend/src/components/QuizPlugin.vue:11 #: frontend/src/components/AssessmentPlugin.vue:11
msgid "Add a quiz to your lesson" msgid "Add a quiz to your lesson"
msgstr "" msgstr ""
@@ -164,6 +164,10 @@ msgstr ""
msgid "Add an assessment" msgid "Add an assessment"
msgstr "" msgstr ""
#: frontend/src/components/AssessmentPlugin.vue:14
msgid "Add an assignment to your lesson"
msgstr ""
#: frontend/src/components/Modals/Question.vue:18 #: frontend/src/components/Modals/Question.vue:18
msgid "Add an existing question" msgid "Add an existing question"
msgstr "" msgstr ""
@@ -176,7 +180,7 @@ msgstr "حداقل یک پاسخ ممکن برای این سؤال اضافه ک
msgid "Add web page to sidebar" msgid "Add web page to sidebar"
msgstr "صفحه وب را به نوار کناری اضافه کنید" msgstr "صفحه وب را به نوار کناری اضافه کنید"
#: frontend/src/pages/AssignmentSubmission.vue:44 #: frontend/src/components/Assignment.vue:65
msgid "Add your assignment as {0}" msgid "Add your assignment as {0}"
msgstr "تکلیف خود را به عنوان {0} اضافه کنید" msgstr "تکلیف خود را به عنوان {0} اضافه کنید"
@@ -393,6 +397,8 @@ msgstr "اختصاص دهید"
#. Label of the section_break_16 (Section Break) field in DocType 'Course #. Label of the section_break_16 (Section Break) field in DocType 'Course
#. Lesson' #. Lesson'
#. Label of the assignment (Link) field in DocType 'LMS Assignment Submission' #. Label of the assignment (Link) field in DocType 'LMS Assignment Submission'
#: frontend/src/pages/AssignmentSubmissionList.vue:12
#: frontend/src/utils/assignment.js:25
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/templates/assignment.html:3 #: lms/templates/assignment.html:3
@@ -417,15 +423,23 @@ msgstr ""
msgid "Assignment Title" msgid "Assignment Title"
msgstr "عنوان تکلیف" msgstr "عنوان تکلیف"
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:31 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:33
msgid "Assignment for Lesson {0} by {1} already exists." msgid "Assignment for Lesson {0} by {1} already exists."
msgstr "تکلیف برای درس {0} توسط {1} از قبل وجود دارد." msgstr "تکلیف برای درس {0} توسط {1} از قبل وجود دارد."
#: frontend/src/pages/AssignmentForm.vue:155
msgid "Assignment saved successfully"
msgstr ""
#. Description of the 'Question' (Small Text) field in DocType 'Course Lesson' #. Description of the 'Question' (Small Text) field in DocType 'Course Lesson'
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Assignment will appear at the bottom of the lesson." msgid "Assignment will appear at the bottom of the lesson."
msgstr "تکلیف زیر درس نشان داده می شود." msgstr "تکلیف زیر درس نشان داده می شود."
#: frontend/src/pages/AssignmentForm.vue:174
msgid "Assignments"
msgstr "تکالیف"
#: lms/lms/doctype/lms_question/lms_question.py:43 #: lms/lms/doctype/lms_question/lms_question.py:43
msgid "At least one option must be correct for this question." msgid "At least one option must be correct for this question."
msgstr "حداقل یک گزینه برای این سؤال باید صحیح باشد." msgstr "حداقل یک گزینه برای این سؤال باید صحیح باشد."
@@ -746,6 +760,10 @@ msgstr ""
msgid "Change" msgid "Change"
msgstr "تغییر دادن" msgstr "تغییر دادن"
#: frontend/src/components/Assignment.vue:316
msgid "Changes saved successfully"
msgstr ""
#. Label of the chapter (Link) field in DocType 'Chapter Reference' #. Label of the chapter (Link) field in DocType 'Chapter Reference'
#. Label of the chapter (Link) field in DocType 'LMS Course Progress' #. Label of the chapter (Link) field in DocType 'LMS Course Progress'
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
@@ -774,7 +792,7 @@ msgstr "فصل با موفقیت به روز شد"
msgid "Chapters" msgid "Chapters"
msgstr "فصل‌ها" msgstr "فصل‌ها"
#: frontend/src/components/Quiz.vue:201 lms/templates/quiz/quiz.html:120 #: frontend/src/components/Quiz.vue:203 lms/templates/quiz/quiz.html:120
msgid "Check" msgid "Check"
msgstr "بررسی" msgstr "بررسی"
@@ -797,7 +815,7 @@ msgstr ""
msgid "Choices" msgid "Choices"
msgstr "گزینه‌ها" msgstr "گزینه‌ها"
#: frontend/src/components/Quiz.vue:581 lms/templates/quiz/quiz.html:53 #: frontend/src/components/Quiz.vue:587 lms/templates/quiz/quiz.html:53
msgid "Choose all answers that apply" msgid "Choose all answers that apply"
msgstr "همه‌ی پاسخ‌هایی که صحیح هستند را انتخاب کردن کنید" msgstr "همه‌ی پاسخ‌هایی که صحیح هستند را انتخاب کردن کنید"
@@ -805,7 +823,7 @@ msgstr "همه‌ی پاسخ‌هایی که صحیح هستند را انتخا
msgid "Choose an icon" msgid "Choose an icon"
msgstr "یک تصویر انتخاب کن" msgstr "یک تصویر انتخاب کن"
#: frontend/src/components/Quiz.vue:582 lms/templates/quiz/quiz.html:53 #: frontend/src/components/Quiz.vue:588 lms/templates/quiz/quiz.html:53
msgid "Choose one answer" msgid "Choose one answer"
msgstr "یک پاسخ را انتخاب کردن کنید" msgstr "یک پاسخ را انتخاب کردن کنید"
@@ -814,12 +832,16 @@ msgstr "یک پاسخ را انتخاب کردن کنید"
msgid "City" msgid "City"
msgstr "شهر" msgstr "شهر"
#: frontend/src/components/Controls/Link.vue:49
msgid "Clear"
msgstr "پاک کردن"
#. Option for the 'Role Preference' (Select) field in DocType 'User' #. Option for the 'Role Preference' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
msgid "Clearly Defined Role" msgid "Clearly Defined Role"
msgstr "" msgstr ""
#: frontend/src/components/LessonHelp.vue:15 #: frontend/src/components/LessonHelp.vue:30
msgid "Click on the add icon in the editor and select Quiz from the menu. It opens up a dialog, where you can either select a quiz from the list or create a new quiz. When you select the Create New option it redirects you to the quiz creation page." msgid "Click on the add icon in the editor and select Quiz from the menu. It opens up a dialog, where you can either select a quiz from the list or create a new quiz. When you select the Create New option it redirects you to the quiz creation page."
msgstr "" msgstr ""
@@ -917,6 +939,7 @@ msgstr "رنگ"
#. Label of the comments (Small Text) field in DocType 'LMS Assignment #. Label of the comments (Small Text) field in DocType 'LMS Assignment
#. Submission' #. Submission'
#. Label of the comments (Small Text) field in DocType 'LMS Mentor Request' #. Label of the comments (Small Text) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Assignment.vue:161
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
#: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
@@ -924,6 +947,10 @@ msgstr "رنگ"
msgid "Comments" msgid "Comments"
msgstr "نظرات" msgstr "نظرات"
#: frontend/src/components/Assignment.vue:139
msgid "Comments by Evaluator"
msgstr ""
#. Label of the company (Data) field in DocType 'LMS Job Application' #. Label of the company (Data) field in DocType 'LMS Job Application'
#. Label of the company (Data) field in DocType 'Work Experience' #. Label of the company (Data) field in DocType 'Work Experience'
#: lms/job/doctype/lms_job_application/lms_job_application.json #: lms/job/doctype/lms_job_application/lms_job_application.json
@@ -986,7 +1013,7 @@ msgstr ""
msgid "Completed" msgid "Completed"
msgstr "تکمیل شد" msgstr "تکمیل شد"
#: frontend/src/components/BatchStudents.vue:325 #: frontend/src/components/BatchStudents.vue:353
msgid "Completed by Students" msgid "Completed by Students"
msgstr "" msgstr ""
@@ -1036,7 +1063,7 @@ msgid "Continue Learning"
msgstr "" msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:117 #: frontend/src/pages/Jobs.vue:120
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Contract" msgid "Contract"
msgstr "قرارداد" msgstr "قرارداد"
@@ -1045,7 +1072,7 @@ msgstr "قرارداد"
msgid "Cookie Policy" msgid "Cookie Policy"
msgstr "" msgstr ""
#: frontend/src/components/LessonHelp.vue:53 #: frontend/src/components/LessonHelp.vue:68
msgid "Copy the URL of the video from YouTube and paste it in the editor." msgid "Copy the URL of the video from YouTube and paste it in the editor."
msgstr "" msgstr ""
@@ -1057,7 +1084,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Exercise Latest #. Option for the 'Status' (Select) field in DocType 'Exercise Latest
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'Exercise Submission' #. Option for the 'Status' (Select) field in DocType 'Exercise Submission'
#: frontend/src/components/Quiz.vue:161 #: frontend/src/components/Quiz.vue:163
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
#: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json
msgid "Correct" msgid "Correct"
@@ -1197,7 +1224,7 @@ msgstr ""
msgid "Course Name" msgid "Course Name"
msgstr "اسم دوره" msgstr "اسم دوره"
#: frontend/src/pages/CourseDetail.vue:74 #: frontend/src/pages/CourseDetail.vue:76
msgid "Course Outline" msgid "Course Outline"
msgstr "طرح کلی دوره" msgstr "طرح کلی دوره"
@@ -1322,6 +1349,10 @@ msgstr ""
msgid "Create a new question" msgid "Create a new question"
msgstr "" msgstr ""
#: frontend/src/pages/Assignments.vue:163
msgid "Created"
msgstr "ایجاد شده"
#. Label of the currency (Link) field in DocType 'Web Form' #. Label of the currency (Link) field in DocType 'Web Form'
#. Label of the currency (Link) field in DocType 'LMS Batch' #. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course' #. Label of the currency (Link) field in DocType 'LMS Course'
@@ -1487,8 +1518,8 @@ msgid "Desk"
msgstr "" msgstr ""
#: frontend/src/components/Modals/DiscussionModal.vue:22 #: frontend/src/components/Modals/DiscussionModal.vue:22
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:28 #: frontend/src/pages/AssignmentForm.vue:27 frontend/src/pages/BatchForm.vue:14
#: frontend/src/pages/QuizForm.vue:42 #: frontend/src/pages/CourseForm.vue:28 frontend/src/pages/QuizForm.vue:42
msgid "Details" msgid "Details"
msgstr "جزئیات" msgstr "جزئیات"
@@ -1619,6 +1650,10 @@ msgstr "ایمیل ارسال شد"
msgid "Email Templates" msgid "Email Templates"
msgstr "قالب‌های ایمیل" msgstr "قالب‌های ایمیل"
#: frontend/src/components/BatchStudents.vue:409
msgid "Email copied to clipboard"
msgstr ""
#. Label of the show_emails (Check) field in DocType 'LMS Settings' #. Label of the show_emails (Check) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Emails" msgid "Emails"
@@ -1699,8 +1734,8 @@ msgid "Enroll Now"
msgstr "" msgstr ""
#: frontend/src/components/CourseCard.vue:43 #: frontend/src/components/CourseCard.vue:43
#: frontend/src/components/CourseCardOverlay.vue:103 #: frontend/src/components/CourseCardOverlay.vue:104
#: frontend/src/pages/CourseDetail.vue:31 #: frontend/src/pages/CourseDetail.vue:33
msgid "Enrolled Students" msgid "Enrolled Students"
msgstr "دانش آموزان ثبت نام شده" msgstr "دانش آموزان ثبت نام شده"
@@ -1717,7 +1752,7 @@ msgstr ""
msgid "Enrollment Count" msgid "Enrollment Count"
msgstr "" msgstr ""
#: lms/lms/utils.py:1720 #: lms/lms/utils.py:1726
msgid "Enrollment Failed" msgid "Enrollment Failed"
msgstr "" msgstr ""
@@ -1733,7 +1768,7 @@ msgstr ""
msgid "Enter Client Id and Client Secret in Google Settings to send calendar invites for evaluations." msgid "Enter Client Id and Client Secret in Google Settings to send calendar invites for evaluations."
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:96 #: frontend/src/components/Assignment.vue:110
msgid "Enter a URL" msgid "Enter a URL"
msgstr "" msgstr ""
@@ -1745,6 +1780,7 @@ msgstr ""
msgid "Enter the correct answer" msgid "Enter the correct answer"
msgstr "پاسخ صحیح را وارد کنید" msgstr "پاسخ صحیح را وارد کنید"
#: frontend/src/components/Assignment.vue:268
#: frontend/src/components/Modals/AnnouncementModal.vue:105 #: frontend/src/components/Modals/AnnouncementModal.vue:105
#: frontend/src/components/Modals/BulkCertificates.vue:115 #: frontend/src/components/Modals/BulkCertificates.vue:115
#: frontend/src/components/Modals/ChapterModal.vue:159 #: frontend/src/components/Modals/ChapterModal.vue:159
@@ -1755,8 +1791,9 @@ msgstr "پاسخ صحیح را وارد کنید"
#: frontend/src/components/Modals/Question.vue:326 #: frontend/src/components/Modals/Question.vue:326
#: frontend/src/components/Modals/StudentModal.vue:69 #: frontend/src/components/Modals/StudentModal.vue:69
#: frontend/src/components/SettingDetails.vue:62 #: frontend/src/components/SettingDetails.vue:62
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350 #: frontend/src/pages/AssignmentForm.vue:139
#: frontend/src/pages/QuizForm.vue:365 #: frontend/src/pages/AssignmentForm.vue:159 frontend/src/pages/Billing.vue:264
#: frontend/src/pages/QuizForm.vue:346 frontend/src/pages/QuizForm.vue:361
#: frontend/src/pages/QuizSubmission.vue:141 #: frontend/src/pages/QuizSubmission.vue:141
msgid "Error" msgid "Error"
msgstr "خطا" msgstr "خطا"
@@ -1919,7 +1956,7 @@ msgstr ""
msgid "Featured" msgid "Featured"
msgstr "ویژه" msgstr "ویژه"
#: frontend/src/pages/AssignmentSubmission.vue:21 #: frontend/src/components/Assignment.vue:61
msgid "Feel free to make edits to your submission if needed." msgid "Feel free to make edits to your submission if needed."
msgstr "" msgstr ""
@@ -1938,6 +1975,10 @@ msgstr ""
msgid "File Type" msgid "File Type"
msgstr "نوع فایل" msgstr "نوع فایل"
#: frontend/src/pages/Jobs.vue:47
msgid "Find the perfect job for you"
msgstr ""
#: frontend/src/components/Members.vue:38 #: frontend/src/components/Members.vue:38
#: frontend/src/components/Modals/EditProfile.vue:59 #: frontend/src/components/Modals/EditProfile.vue:59
msgid "First Name" msgid "First Name"
@@ -1953,7 +1994,7 @@ msgstr ""
msgid "Flexible Time" msgid "Flexible Time"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:463 #: frontend/src/pages/QuizForm.vue:459
msgid "Form to create and edit quizzes" msgid "Form to create and edit quizzes"
msgstr "" msgstr ""
@@ -1967,7 +2008,7 @@ msgid "Free"
msgstr "رایگان" msgstr "رایگان"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:118 #: frontend/src/pages/Jobs.vue:121
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Freelance" msgid "Freelance"
msgstr "" msgstr ""
@@ -2009,7 +2050,7 @@ msgid "Full Name"
msgstr "نام و نام خانوادگی" msgstr "نام و نام خانوادگی"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:115 #: frontend/src/pages/Jobs.vue:118
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Full Time" msgid "Full Time"
msgstr "تمام وقت" msgstr "تمام وقت"
@@ -2069,6 +2110,7 @@ msgid "Google Meet Link"
msgstr "پیوند Google Meet" msgstr "پیوند Google Meet"
#. 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:154
#: lms/lms/doctype/education_detail/education_detail.json #: lms/lms/doctype/education_detail/education_detail.json
msgid "Grade" msgid "Grade"
msgstr "مقطع تحصیلی" msgstr "مقطع تحصیلی"
@@ -2083,6 +2125,10 @@ msgstr ""
msgid "Grade Type" msgid "Grade Type"
msgstr "" msgstr ""
#: frontend/src/components/Assignment.vue:149
msgid "Grading"
msgstr ""
#. Label of the grant_only_once (Check) field in DocType 'LMS Badge' #. Label of the grant_only_once (Check) field in DocType 'LMS Badge'
#: lms/lms/doctype/lms_badge/lms_badge.json #: lms/lms/doctype/lms_badge/lms_badge.json
msgid "Grant only once" msgid "Grant only once"
@@ -2146,7 +2192,7 @@ msgstr "راهنمایی‌ها"
msgid "Host" msgid "Host"
msgstr "میزبان" msgstr "میزبان"
#: frontend/src/components/LessonHelp.vue:9 #: frontend/src/components/LessonHelp.vue:24
msgid "How to add a Quiz?" msgid "How to add a Quiz?"
msgstr "" msgstr ""
@@ -2168,7 +2214,7 @@ msgstr ""
msgid "I am unavailable" msgid "I am unavailable"
msgstr "من در دسترس نیستم" msgstr "من در دسترس نیستم"
#: frontend/src/pages/QuizForm.vue:384 #: frontend/src/pages/QuizForm.vue:380
msgid "ID" msgid "ID"
msgstr "شناسه" msgstr "شناسه"
@@ -2178,7 +2224,7 @@ msgstr "شناسه"
msgid "Icon" msgid "Icon"
msgstr "آیکون" msgstr "آیکون"
#: frontend/src/components/LessonHelp.vue:68 #: frontend/src/components/LessonHelp.vue:11
msgid "If Include in Preview is enabled for a lesson then the lesson will also be accessible to non logged in users." msgid "If Include in Preview is enabled for a lesson then the lesson will also be accessible to non logged in users."
msgstr "" msgstr ""
@@ -2261,7 +2307,7 @@ msgstr "ناتمام"
#. Option for the 'Status' (Select) field in DocType 'Exercise Latest #. Option for the 'Status' (Select) field in DocType 'Exercise Latest
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'Exercise Submission' #. Option for the 'Status' (Select) field in DocType 'Exercise Submission'
#: frontend/src/components/Quiz.vue:166 #: frontend/src/components/Quiz.vue:168
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
#: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json
msgid "Incorrect" msgid "Incorrect"
@@ -2469,7 +2515,7 @@ msgstr "عنوان شغلی"
msgid "Jobs" msgid "Jobs"
msgstr "شغل ها" msgstr "شغل ها"
#: frontend/src/components/LiveClass.vue:55 #: frontend/src/components/LiveClass.vue:58
#: lms/templates/upcoming_evals.html:15 #: lms/templates/upcoming_evals.html:15
msgid "Join" msgid "Join"
msgstr "پیوستن" msgstr "پیوستن"
@@ -2759,7 +2805,7 @@ msgstr "عنوان درس"
#. Group in Course Chapter's connections #. Group in Course Chapter's connections
#. Label of the lessons (Data) field in DocType 'LMS Course' #. Label of the lessons (Data) field in DocType 'LMS Course'
#: frontend/src/components/CourseCard.vue:34 #: frontend/src/components/CourseCard.vue:34
#: frontend/src/components/CourseCardOverlay.vue:96 #: frontend/src/components/CourseCardOverlay.vue:97
#: lms/lms/doctype/course_chapter/course_chapter.json #: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "Lessons" msgid "Lessons"
@@ -2825,6 +2871,7 @@ msgid "LiveCode URL"
msgstr "" msgstr ""
#: frontend/src/components/Members.vue:106 #: frontend/src/components/Members.vue:106
#: frontend/src/pages/Assignments.vue:71
#: frontend/src/pages/QuizSubmissionList.vue:39 #: frontend/src/pages/QuizSubmissionList.vue:39
#: frontend/src/pages/Quizzes.vue:51 #: frontend/src/pages/Quizzes.vue:51
msgid "Load More" msgid "Load More"
@@ -2854,6 +2901,7 @@ msgstr "محل"
msgid "Location Preference" msgid "Location Preference"
msgstr "" msgstr ""
#: frontend/src/components/AssignmentBlock.vue:13
#: frontend/src/components/NoPermission.vue:28 #: frontend/src/components/NoPermission.vue:28
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:175 #: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:175
#: frontend/src/pages/Lesson.vue:24 #: frontend/src/pages/Lesson.vue:24
@@ -2913,7 +2961,7 @@ msgstr "علامت‌گذاری به عنوان خوانده شد"
#. Label of the marks (Int) field in DocType 'LMS Quiz Result' #. Label of the marks (Int) field in DocType 'LMS Quiz Result'
#: frontend/src/components/Modals/Question.vue:50 #: frontend/src/components/Modals/Question.vue:50
#: frontend/src/components/Modals/Question.vue:99 #: frontend/src/components/Modals/Question.vue:99
#: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:394 #: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:390
#: frontend/src/pages/QuizSubmission.vue:59 #: frontend/src/pages/QuizSubmission.vue:59
#: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json #: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json
#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json
@@ -2970,6 +3018,7 @@ msgstr "متوسط:"
#. Label of the member (Link) field in DocType 'LMS Payment' #. Label of the member (Link) field in DocType 'LMS Payment'
#. Label of the member (Link) field in DocType 'LMS Program Member' #. Label of the member (Link) field in DocType 'LMS Program Member'
#. Label of the member (Link) field in DocType 'LMS Quiz Submission' #. Label of the member (Link) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/AssignmentSubmissionList.vue:14
#: frontend/src/pages/QuizSubmission.vue:31 #: frontend/src/pages/QuizSubmission.vue:31
#: frontend/src/pages/QuizSubmissionList.vue:86 #: frontend/src/pages/QuizSubmissionList.vue:86
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
@@ -3140,11 +3189,11 @@ msgstr ""
msgid "Modified By" msgid "Modified By"
msgstr "تغییر داده شده توسط" msgstr "تغییر داده شده توسط"
#: lms/lms/api.py:199 #: lms/lms/api.py:201
msgid "Module Name is incorrect or does not exist." msgid "Module Name is incorrect or does not exist."
msgstr "" msgstr ""
#: lms/lms/api.py:195 #: lms/lms/api.py:197
msgid "Module is incorrect." msgid "Module is incorrect."
msgstr "" msgstr ""
@@ -3173,12 +3222,17 @@ msgid "My calendar"
msgstr "تقویم من" msgstr "تقویم من"
#. Option for the 'Event' (Select) field in DocType 'LMS Badge' #. Option for the 'Event' (Select) field in DocType 'LMS Badge'
#: frontend/src/pages/Batches.vue:30 frontend/src/pages/Courses.vue:45 #: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:30
#: frontend/src/pages/Programs.vue:14 lms/lms/doctype/lms_badge/lms_badge.json #: frontend/src/pages/Courses.vue:45 frontend/src/pages/Programs.vue:14
#: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New" msgid "New"
msgstr "جدید" msgstr "جدید"
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:41 #: frontend/src/pages/AssignmentForm.vue:178
msgid "New Assignment"
msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:43
msgid "New Assignment Submission" msgid "New Assignment Submission"
msgstr "" msgstr ""
@@ -3214,7 +3268,7 @@ msgstr ""
msgid "New Question" msgid "New Question"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:454 frontend/src/pages/QuizForm.vue:462 #: frontend/src/pages/QuizForm.vue:450 frontend/src/pages/QuizForm.vue:458
#: frontend/src/pages/Quizzes.vue:18 #: frontend/src/pages/Quizzes.vue:18
msgid "New Quiz" msgid "New Quiz"
msgstr "" msgstr ""
@@ -3236,7 +3290,7 @@ msgstr ""
msgid "New {0}" msgid "New {0}"
msgstr "{0} جدید" msgstr "{0} جدید"
#: frontend/src/components/Quiz.vue:209 frontend/src/pages/Lesson.vue:84 #: frontend/src/components/Quiz.vue:211 frontend/src/pages/Lesson.vue:84
msgid "Next" msgid "Next"
msgstr "بعد" msgstr "بعد"
@@ -3244,7 +3298,7 @@ msgstr "بعد"
msgid "Next Question" msgid "Next Question"
msgstr "سؤال بعدی" msgstr "سؤال بعدی"
#: frontend/src/components/Assessments.vue:66 lms/templates/assessments.html:58 #: frontend/src/components/Assessments.vue:75 lms/templates/assessments.html:58
msgid "No Assessments" msgid "No Assessments"
msgstr "" msgstr ""
@@ -3265,6 +3319,10 @@ msgstr ""
msgid "No announcements" msgid "No announcements"
msgstr "" msgstr ""
#: frontend/src/pages/Assignments.vue:56
msgid "No assignments found"
msgstr ""
#: frontend/src/pages/Batches.vue:125 #: frontend/src/pages/Batches.vue:125
msgid "No batches found" msgid "No batches found"
msgstr "" msgstr ""
@@ -3293,11 +3351,11 @@ msgstr ""
msgid "No introduction" msgid "No introduction"
msgstr "" msgstr ""
#: frontend/src/pages/Jobs.vue:60 #: frontend/src/pages/Jobs.vue:63
msgid "No jobs posted" msgid "No jobs posted"
msgstr "" msgstr ""
#: frontend/src/components/LiveClass.vue:61 #: frontend/src/components/LiveClass.vue:71
msgid "No live classes scheduled" msgid "No live classes scheduled"
msgstr "" msgstr ""
@@ -3313,6 +3371,10 @@ msgstr ""
msgid "No slots available for this date." msgid "No slots available for this date."
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmissionList.vue:67
msgid "No submissions"
msgstr ""
#: frontend/src/components/UpcomingEvaluations.vue:39 #: frontend/src/components/UpcomingEvaluations.vue:39
msgid "No upcoming evaluations." msgid "No upcoming evaluations."
msgstr "" msgstr ""
@@ -3361,6 +3423,7 @@ msgstr ""
msgid "Not Permitted" msgid "Not Permitted"
msgstr "غیر مجاز" msgstr "غیر مجاز"
#: frontend/src/components/Assignment.vue:33
#: frontend/src/components/BrandSettings.vue:10 #: frontend/src/components/BrandSettings.vue:10
#: frontend/src/components/PaymentSettings.vue:9 #: frontend/src/components/PaymentSettings.vue:9
#: frontend/src/components/SettingDetails.vue:10 #: frontend/src/components/SettingDetails.vue:10
@@ -3404,7 +3467,7 @@ msgstr "آفلاین"
msgid "Once again, congratulations on this significant accomplishment." msgid "Once again, congratulations on this significant accomplishment."
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:17 #: frontend/src/components/Assignment.vue:57
msgid "Once the moderator grades your submission, you'll find the details here." msgid "Once the moderator grades your submission, you'll find the details here."
msgstr "" msgstr ""
@@ -3421,7 +3484,7 @@ msgstr ""
msgid "Only files of type {0} will be accepted." msgid "Only files of type {0} will be accepted."
msgstr "فقط فایل هایی از نوع {0} پذیرفته می شوند." msgstr "فقط فایل هایی از نوع {0} پذیرفته می شوند."
#: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:527 #: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:529
msgid "Only image file is allowed." msgid "Only image file is allowed."
msgstr "" msgstr ""
@@ -3550,7 +3613,7 @@ msgid "Pan Number"
msgstr "" msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:116 #: frontend/src/pages/Jobs.vue:119
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Part Time" msgid "Part Time"
msgstr "پاره وقت" msgstr "پاره وقت"
@@ -3681,7 +3744,7 @@ msgstr ""
msgid "Phone Number" msgid "Phone Number"
msgstr "شماره تلفن" msgstr "شماره تلفن"
#: frontend/src/components/CourseCardOverlay.vue:141 #: frontend/src/components/CourseCardOverlay.vue:145
msgid "Please Login" msgid "Please Login"
msgstr "" msgstr ""
@@ -3701,7 +3764,7 @@ msgstr "لطفا ایمیل خود را برای تایید بررسی کنید"
msgid "Please click on the following button to set your new password" msgid "Please click on the following button to set your new password"
msgstr "" msgstr ""
#: lms/lms/utils.py:1842 lms/lms/utils.py:1846 #: lms/lms/utils.py:1848 lms/lms/utils.py:1852
msgid "Please complete the previous courses in the program to enroll in this course." msgid "Please complete the previous courses in the program to enroll in this course."
msgstr "" msgstr ""
@@ -3721,8 +3784,8 @@ msgstr ""
msgid "Please enter a title." msgid "Please enter a title."
msgstr "" msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:38 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:40
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:98 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:122
msgid "Please enter a valid URL." msgid "Please enter a valid URL."
msgstr "" msgstr ""
@@ -3730,7 +3793,7 @@ msgstr ""
msgid "Please enter a valid time in the format HH:mm." msgid "Please enter a valid time in the format HH:mm."
msgstr "" msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:92 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:116
msgid "Please enter the URL for assignment submission." msgid "Please enter the URL for assignment submission."
msgstr "" msgstr ""
@@ -3750,6 +3813,10 @@ msgstr ""
msgid "Please let us know where you heard about us from." msgid "Please let us know where you heard about us from."
msgstr "" msgstr ""
#: frontend/src/components/AssignmentBlock.vue:9
msgid "Please login to access the assignment."
msgstr ""
#: frontend/src/components/QuizBlock.vue:5 #: frontend/src/components/QuizBlock.vue:5
msgid "Please login to access the quiz." msgid "Please login to access the quiz."
msgstr "" msgstr ""
@@ -3758,7 +3825,7 @@ msgstr ""
msgid "Please login to access this page." msgid "Please login to access this page."
msgstr "" msgstr ""
#: lms/lms/api.py:191 #: lms/lms/api.py:193
msgid "Please login to continue with payment." msgid "Please login to continue with payment."
msgstr "" msgstr ""
@@ -3795,7 +3862,7 @@ msgstr ""
msgid "Please upload a SCORM package" msgid "Please upload a SCORM package"
msgstr "" msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:95 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:119
msgid "Please upload the assignment file." msgid "Please upload the assignment file."
msgstr "لطفا فایل تکلیف را آپلود کنید." msgstr "لطفا فایل تکلیف را آپلود کنید."
@@ -4003,9 +4070,9 @@ msgstr "منتشر شده در"
#. Label of the question (Text Editor) field in DocType 'LMS Question' #. Label of the question (Text Editor) field in DocType 'LMS Question'
#. Label of the question (Link) field in DocType 'LMS Quiz Question' #. Label of the question (Link) field in DocType 'LMS Quiz Question'
#. Label of the question (Text) field in DocType 'LMS Quiz Result' #. Label of the question (Text) field in DocType 'LMS Quiz Result'
#: frontend/src/components/Assignment.vue:17
#: frontend/src/components/Modals/Question.vue:38 #: frontend/src/components/Modals/Question.vue:38
#: frontend/src/pages/AssignmentSubmission.vue:26 #: frontend/src/pages/AssignmentForm.vue:45 frontend/src/pages/QuizForm.vue:385
#: frontend/src/pages/QuizForm.vue:389
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment/lms_assignment.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
@@ -4042,7 +4109,7 @@ msgstr ""
msgid "Question {0}" msgid "Question {0}"
msgstr "سوال {0}" msgstr "سوال {0}"
#: frontend/src/components/Quiz.vue:186 #: frontend/src/components/Quiz.vue:188
msgid "Question {0} of {1}" msgid "Question {0} of {1}"
msgstr "سوال {0} از {1}" msgstr "سوال {0} از {1}"
@@ -4051,7 +4118,7 @@ msgstr "سوال {0} از {1}"
msgid "Questions" msgid "Questions"
msgstr "سوالات" msgstr "سوالات"
#: frontend/src/pages/QuizForm.vue:431 #: frontend/src/pages/QuizForm.vue:427
msgid "Questions deleted successfully" msgid "Questions deleted successfully"
msgstr "" msgstr ""
@@ -4079,7 +4146,7 @@ msgstr ""
msgid "Quiz Submissions" msgid "Quiz Submissions"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:223 #: frontend/src/components/Quiz.vue:225
msgid "Quiz Summary" msgid "Quiz Summary"
msgstr "" msgstr ""
@@ -4088,7 +4155,7 @@ msgstr ""
msgid "Quiz Title" msgid "Quiz Title"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:343 #: frontend/src/pages/QuizForm.vue:339
msgid "Quiz created successfully" msgid "Quiz created successfully"
msgstr "" msgstr ""
@@ -4096,7 +4163,7 @@ msgstr ""
msgid "Quiz is not available to Guest users. Please login to continue." msgid "Quiz is not available to Guest users. Please login to continue."
msgstr "آزمون برای کاربران مهمان در دسترس نیست. لطفا برای ادامه وارد شوید." msgstr "آزمون برای کاربران مهمان در دسترس نیست. لطفا برای ادامه وارد شوید."
#: frontend/src/pages/QuizForm.vue:362 #: frontend/src/pages/QuizForm.vue:358
msgid "Quiz updated successfully" msgid "Quiz updated successfully"
msgstr "" msgstr ""
@@ -4105,7 +4172,7 @@ msgstr ""
msgid "Quiz will appear at the bottom of the lesson." msgid "Quiz will appear at the bottom of the lesson."
msgstr "تکلیف زیر درس نشان داده می شود." msgstr "تکلیف زیر درس نشان داده می شود."
#: frontend/src/pages/QuizForm.vue:442 frontend/src/pages/Quizzes.vue:138 #: frontend/src/pages/QuizForm.vue:438 frontend/src/pages/Quizzes.vue:138
#: frontend/src/pages/Quizzes.vue:148 #: frontend/src/pages/Quizzes.vue:148
msgid "Quizzes" msgid "Quizzes"
msgstr "" msgstr ""
@@ -4113,7 +4180,7 @@ msgstr ""
#. Label of the rating (Rating) field in DocType 'LMS Certificate Evaluation' #. Label of the rating (Rating) field in DocType 'LMS Certificate Evaluation'
#. 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:108 #: frontend/src/components/CourseCardOverlay.vue:110
#: frontend/src/components/Modals/Event.vue:86 #: frontend/src/components/Modals/Event.vue:86
#: frontend/src/components/Modals/ReviewModal.vue:20 #: frontend/src/components/Modals/ReviewModal.vue:20
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -4127,10 +4194,6 @@ msgstr "رتبه بندی"
msgid "Rating cannot be 0" msgid "Rating cannot be 0"
msgstr "امتیاز نمی تواند ۰ باشد" msgstr "امتیاز نمی تواند ۰ باشد"
#: frontend/src/pages/AssignmentSubmission.vue:30
msgid "Read the question carefully before attempting the assignment."
msgstr ""
#. Option for the 'Stage' (Select) field in DocType 'LMS Batch Old' #. Option for the 'Stage' (Select) field in DocType 'LMS Batch Old'
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
msgid "Ready" msgid "Ready"
@@ -4309,15 +4372,15 @@ msgstr ""
msgid "Saturday" msgid "Saturday"
msgstr "شنبه" msgstr "شنبه"
#: frontend/src/components/AssessmentPlugin.vue:34
#: frontend/src/components/Assignment.vue:43
#: frontend/src/components/Controls/CodeEditor.vue:25 #: frontend/src/components/Controls/CodeEditor.vue:25
#: frontend/src/components/Modals/Event.vue:101 #: frontend/src/components/Modals/Event.vue:101
#: frontend/src/components/Modals/Event.vue:129 #: frontend/src/components/Modals/Event.vue:129
#: frontend/src/components/QuizPlugin.vue:23 #: frontend/src/pages/AssignmentForm.vue:21 frontend/src/pages/BatchForm.vue:8
#: frontend/src/pages/AssignmentSubmission.vue:7 #: frontend/src/pages/CourseForm.vue:20 frontend/src/pages/JobCreation.vue:8
#: frontend/src/pages/BatchForm.vue:8 frontend/src/pages/CourseForm.vue:20 #: frontend/src/pages/LessonForm.vue:14 frontend/src/pages/ProgramForm.vue:7
#: frontend/src/pages/JobCreation.vue:8 frontend/src/pages/LessonForm.vue:14 #: frontend/src/pages/QuizForm.vue:34 frontend/src/pages/QuizSubmission.vue:14
#: frontend/src/pages/ProgramForm.vue:7 frontend/src/pages/QuizForm.vue:34
#: frontend/src/pages/QuizSubmission.vue:14
#: lms/public/js/common_functions.js:405 #: lms/public/js/common_functions.js:405
msgid "Save" msgid "Save"
msgstr "ذخیره" msgstr "ذخیره"
@@ -4359,6 +4422,10 @@ msgstr ""
msgid "Search" msgid "Search"
msgstr "جستجو کردن" msgstr "جستجو کردن"
#: frontend/src/pages/Assignments.vue:25
msgid "Search by title"
msgstr ""
#: frontend/src/components/Controls/IconPicker.vue:36 #: frontend/src/components/Controls/IconPicker.vue:36
msgid "Search for an icon" msgid "Search for an icon"
msgstr "" msgstr ""
@@ -4384,7 +4451,7 @@ msgstr ""
msgid "Select a question" msgid "Select a question"
msgstr "" msgstr ""
#: frontend/src/components/QuizPlugin.vue:17 #: frontend/src/components/AssessmentPlugin.vue:21
msgid "Select a quiz" msgid "Select a quiz"
msgstr "" msgstr ""
@@ -4392,6 +4459,10 @@ msgstr ""
msgid "Select a slot" msgid "Select a slot"
msgstr "" msgstr ""
#: frontend/src/components/AssessmentPlugin.vue:28
msgid "Select an assignment"
msgstr ""
#. Label of the send_calendar_invite_for_evaluations (Check) field in DocType #. Label of the send_calendar_invite_for_evaluations (Check) field in DocType
#. 'LMS Settings' #. 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -4583,7 +4654,7 @@ msgstr ""
msgid "Stage" msgid "Stage"
msgstr "صحنه" msgstr "صحنه"
#: frontend/src/components/LiveClass.vue:46 frontend/src/components/Quiz.vue:65 #: frontend/src/components/LiveClass.vue:50 frontend/src/components/Quiz.vue:65
#: lms/templates/quiz/quiz.html:39 #: lms/templates/quiz/quiz.html:39
msgid "Start" msgid "Start"
msgstr "شروع" msgstr "شروع"
@@ -4664,6 +4735,7 @@ msgstr "آمار"
#. Label of the status (Select) field in DocType 'LMS Course Progress' #. Label of the status (Select) field in DocType 'LMS Course Progress'
#. Label of the status (Select) field in DocType 'LMS Mentor Request' #. Label of the status (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:91 #: frontend/src/components/Modals/Event.vue:91
#: frontend/src/pages/AssignmentSubmissionList.vue:19
#: frontend/src/pages/JobCreation.vue:41 #: frontend/src/pages/JobCreation.vue:41
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/cohort/cohort.json
@@ -4724,7 +4796,7 @@ msgstr "دانش‌آموز {0} قبلاً به این دسته اضافه شد
msgid "Students" msgid "Students"
msgstr "دانش‌آموزان" msgstr "دانش‌آموزان"
#: frontend/src/components/BatchStudents.vue:282 #: frontend/src/components/BatchStudents.vue:310
msgid "Students deleted successfully" msgid "Students deleted successfully"
msgstr "" msgstr ""
@@ -4746,19 +4818,24 @@ msgstr "زیر گروه"
msgid "Subject" msgid "Subject"
msgstr "موضوع" msgstr "موضوع"
#: frontend/src/pages/AssignmentSubmission.vue:40 #: frontend/src/components/Assignment.vue:29
msgid "Submission" msgid "Submission"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:30 #: frontend/src/pages/AssignmentForm.vue:17 frontend/src/pages/QuizForm.vue:30
msgid "Submission List" msgid "Submission List"
msgstr "" msgstr ""
#: frontend/src/components/Assignment.vue:10
#: frontend/src/components/Assignment.vue:13
msgid "Submission by"
msgstr ""
#: frontend/src/components/Modals/AssessmentModal.vue:9 #: frontend/src/components/Modals/AssessmentModal.vue:9
#: frontend/src/components/Modals/BatchCourseModal.vue:9 #: frontend/src/components/Modals/BatchCourseModal.vue:9
#: frontend/src/components/Modals/EvaluationModal.vue:9 #: frontend/src/components/Modals/EvaluationModal.vue:9
#: frontend/src/components/Modals/Question.vue:338 #: frontend/src/components/Modals/Question.vue:338
#: frontend/src/components/Quiz.vue:214 lms/templates/assignment.html:9 #: frontend/src/components/Quiz.vue:216 lms/templates/assignment.html:9
#: lms/templates/livecode/extension_footer.html:25 #: lms/templates/livecode/extension_footer.html:25
#: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163 #: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163
#: lms/www/new-sign-up.html:32 #: lms/www/new-sign-up.html:32
@@ -4774,10 +4851,12 @@ msgstr ""
msgid "Submitted {0}" msgid "Submitted {0}"
msgstr "" msgstr ""
#: frontend/src/components/Assignment.vue:316
#: frontend/src/components/BatchCourses.vue:150 #: frontend/src/components/BatchCourses.vue:150
#: frontend/src/components/BatchOverlay.vue:135 #: frontend/src/components/BatchOverlay.vue:135
#: frontend/src/components/BatchStudents.vue:282 #: frontend/src/components/BatchStudents.vue:310
#: frontend/src/components/CourseCardOverlay.vue:161 #: frontend/src/components/BatchStudents.vue:409
#: frontend/src/components/CourseCardOverlay.vue:165
#: frontend/src/components/Modals/AnnouncementModal.vue:99 #: frontend/src/components/Modals/AnnouncementModal.vue:99
#: frontend/src/components/Modals/AssessmentModal.vue:73 #: frontend/src/components/Modals/AssessmentModal.vue:73
#: frontend/src/components/Modals/BulkCertificates.vue:121 #: frontend/src/components/Modals/BulkCertificates.vue:121
@@ -4787,11 +4866,12 @@ msgstr ""
#: frontend/src/components/Modals/Event.vue:310 #: frontend/src/components/Modals/Event.vue:310
#: frontend/src/components/Modals/Question.vue:264 #: frontend/src/components/Modals/Question.vue:264
#: frontend/src/components/Modals/Question.vue:315 #: frontend/src/components/Modals/Question.vue:315
#: frontend/src/pages/AssignmentForm.vue:155
#: frontend/src/pages/CourseForm.vue:461 frontend/src/pages/ProgramForm.vue:229 #: frontend/src/pages/CourseForm.vue:461 frontend/src/pages/ProgramForm.vue:229
#: frontend/src/pages/ProgramForm.vue:251 #: frontend/src/pages/ProgramForm.vue:251
#: frontend/src/pages/ProgramForm.vue:272 #: frontend/src/pages/ProgramForm.vue:272
#: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:343 #: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:339
#: frontend/src/pages/QuizForm.vue:362 frontend/src/pages/QuizForm.vue:431 #: frontend/src/pages/QuizForm.vue:358 frontend/src/pages/QuizForm.vue:427
msgid "Success" msgid "Success"
msgstr "موفقیت" msgstr "موفقیت"
@@ -4809,7 +4889,7 @@ msgstr "خلاصه"
msgid "Sunday" msgid "Sunday"
msgstr "یکشنبه" msgstr "یکشنبه"
#: lms/lms/api.py:952 #: lms/lms/api.py:954
msgid "Suspicious pattern found in {0}: {1}" msgid "Suspicious pattern found in {0}: {1}"
msgstr "" msgstr ""
@@ -4924,6 +5004,10 @@ msgstr "متن"
msgid "Thanks and Regards" msgid "Thanks and Regards"
msgstr "" msgstr ""
#: lms/lms/utils.py:1755
msgid "The batch is full. Please contact the Administrator."
msgstr ""
#: lms/templates/emails/lms_course_interest.html:5 #: lms/templates/emails/lms_course_interest.html:5
msgid "The course {0} is now available on {1}." msgid "The course {0} is now available on {1}."
msgstr "دوره {0} اکنون در {1} موجود است." msgstr "دوره {0} اکنون در {1} موجود است."
@@ -4964,14 +5048,22 @@ msgstr ""
msgid "There are no seats available in this batch." msgid "There are no seats available in this batch."
msgstr "" msgstr ""
#: frontend/src/components/BatchStudents.vue:165 #: frontend/src/components/BatchStudents.vue:182
msgid "There are no students in this batch." msgid "There are no students in this batch."
msgstr "هیچ دانش‌آموزی در این گروه وجود ندارد." msgstr "هیچ دانش‌آموزی در این گروه وجود ندارد."
#: frontend/src/pages/AssignmentSubmissionList.vue:70
msgid "There are no submissions for this assignment."
msgstr ""
#: lms/templates/course_list.html:14 #: lms/templates/course_list.html:14
msgid "There are no {0} on this site." msgid "There are no {0} on this site."
msgstr "هیچ {0} در این سایت وجود ندارد." msgstr "هیچ {0} در این سایت وجود ندارد."
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:82
msgid "There has been an update on your submission for assignment {0}"
msgstr ""
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:42 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:42
msgid "There has been an update on your submission. You have got a score of {0} for the quiz {1}" msgid "There has been an update on your submission. You have got a score of {0} for the quiz {1}"
msgstr "" msgstr ""
@@ -4991,11 +5083,15 @@ msgstr ""
msgid "This certificate does no expire" msgid "This certificate does no expire"
msgstr "" msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:91 #: frontend/src/components/LiveClass.vue:64
msgid "This class has ended"
msgstr "این کلاس به پایان رسید"
#: frontend/src/components/CourseCardOverlay.vue:92
msgid "This course has:" msgid "This course has:"
msgstr "" msgstr ""
#: lms/lms/utils.py:1600 #: lms/lms/utils.py:1606
msgid "This course is free." msgid "This course is free."
msgstr "" msgstr ""
@@ -5098,10 +5194,12 @@ msgstr ""
#. Label of the title (Data) field in DocType 'Work Experience' #. Label of the title (Data) field in DocType 'Work Experience'
#: frontend/src/components/Modals/DiscussionModal.vue:18 #: frontend/src/components/Modals/DiscussionModal.vue:18
#: frontend/src/components/Modals/LiveClassModal.vue:23 #: frontend/src/components/Modals/LiveClassModal.vue:23
#: frontend/src/pages/BatchForm.vue:20 frontend/src/pages/CourseForm.vue:32 #: frontend/src/pages/AssignmentForm.vue:32
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/ProgramForm.vue:11 #: frontend/src/pages/Assignments.vue:152 frontend/src/pages/BatchForm.vue:20
#: frontend/src/pages/Programs.vue:118 frontend/src/pages/QuizForm.vue:48 #: frontend/src/pages/CourseForm.vue:32 frontend/src/pages/JobCreation.vue:20
#: frontend/src/pages/Quizzes.vue:116 lms/lms/doctype/cohort/cohort.json #: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:118
#: frontend/src/pages/QuizForm.vue:48 frontend/src/pages/Quizzes.vue:116
#: lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/course_chapter/course_chapter.json #: lms/lms/doctype/course_chapter/course_chapter.json
@@ -5137,11 +5235,11 @@ msgstr "به"
msgid "To Date" msgid "To Date"
msgstr "تا تاریخ" msgstr "تا تاریخ"
#: lms/lms/utils.py:1611 #: lms/lms/utils.py:1617
msgid "To join this batch, please contact the Administrator." msgid "To join this batch, please contact the Administrator."
msgstr "" msgstr ""
#: frontend/src/components/LessonHelp.vue:34 #: frontend/src/components/LessonHelp.vue:49
msgid "To upload Image, Video, Audio or PDF from your system, click on the add icon and select upload from the menu. Then choose the file you want to add to the lesson and it gets added to your lesson." msgid "To upload Image, Video, Audio or PDF from your system, click on the add icon and select upload from the menu. Then choose the file you want to add to the lesson and it gets added to your lesson."
msgstr "" msgstr ""
@@ -5169,7 +5267,7 @@ msgstr ""
msgid "Travel" msgid "Travel"
msgstr "سفر" msgstr "سفر"
#: frontend/src/components/Quiz.vue:252 lms/templates/quiz/quiz.html:131 #: frontend/src/components/Quiz.vue:254 lms/templates/quiz/quiz.html:131
msgid "Try Again" msgid "Try Again"
msgstr "دوباره امتحان کنید" msgstr "دوباره امتحان کنید"
@@ -5191,6 +5289,8 @@ msgstr "توییتر"
#. Label of the type (Select) field in DocType 'LMS Quiz Question' #. Label of the type (Select) field in DocType 'LMS Quiz Question'
#: frontend/src/components/Modals/AssessmentModal.vue:22 #: frontend/src/components/Modals/AssessmentModal.vue:22
#: frontend/src/components/Modals/Question.vue:54 #: frontend/src/components/Modals/Question.vue:54
#: frontend/src/pages/AssignmentForm.vue:39
#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:157
#: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:16 #: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:16
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment/lms_assignment.json
@@ -5201,7 +5301,7 @@ msgstr "توییتر"
msgid "Type" msgid "Type"
msgstr "نوع" msgstr "نوع"
#: frontend/src/components/Quiz.vue:583 #: frontend/src/components/Quiz.vue:589
msgid "Type your answer" msgid "Type your answer"
msgstr "" msgstr ""
@@ -5282,11 +5382,11 @@ msgstr "به‌روزرسانی گذرواژه"
msgid "Upload" msgid "Upload"
msgstr "آپلود" msgstr "آپلود"
#: frontend/src/pages/AssignmentSubmission.vue:69 #: frontend/src/components/Assignment.vue:78
msgid "Upload File" msgid "Upload File"
msgstr "آپلود فایل" msgstr "آپلود فایل"
#: frontend/src/pages/AssignmentSubmission.vue:68 #: frontend/src/components/Assignment.vue:77
msgid "Uploading {0}%" msgid "Uploading {0}%"
msgstr "در حال آپلود {0}%" msgstr "در حال آپلود {0}%"
@@ -5404,7 +5504,7 @@ msgstr "چهار شنبه"
msgid "Welcome to {0}!" msgid "Welcome to {0}!"
msgstr "به {0} خوش آمدید!" msgstr "به {0} خوش آمدید!"
#: frontend/src/components/LessonHelp.vue:63 #: frontend/src/components/LessonHelp.vue:6
msgid "What does include in preview mean?" msgid "What does include in preview mean?"
msgstr "" msgstr ""
@@ -5453,7 +5553,7 @@ msgstr ""
msgid "Write a review" msgid "Write a review"
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:102 #: frontend/src/components/Assignment.vue:120
msgid "Write your answer here" msgid "Write your answer here"
msgstr "" msgstr ""
@@ -5461,11 +5561,11 @@ msgstr ""
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}."
msgstr "" msgstr ""
#: lms/lms/api.py:215 #: lms/lms/api.py:217
msgid "You are already enrolled for this batch." msgid "You are already enrolled for this batch."
msgstr "" msgstr ""
#: lms/lms/api.py:207 #: lms/lms/api.py:209
msgid "You are already enrolled for this course." msgid "You are already enrolled for this course."
msgstr "" msgstr ""
@@ -5530,7 +5630,7 @@ msgstr ""
msgid "You got" msgid "You got"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:234 #: frontend/src/components/Quiz.vue:236
#, python-format #, python-format
msgid "You got {0}% correct answers with a score of {1} out of {2}" msgid "You got {0}% correct answers with a score of {1} out of {2}"
msgstr "" msgstr ""
@@ -5551,7 +5651,7 @@ msgstr ""
msgid "You have been enrolled in this batch" msgid "You have been enrolled in this batch"
msgstr "" msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:162 #: frontend/src/components/CourseCardOverlay.vue:166
msgid "You have been enrolled in this course" msgid "You have been enrolled in this course"
msgstr "" msgstr ""
@@ -5559,6 +5659,10 @@ msgstr ""
msgid "You have got a score of {0} for the quiz {1}" msgid "You have got a score of {0} for the quiz {1}"
msgstr "" msgstr ""
#: frontend/src/pages/Assignments.vue:60
msgid "You have not created any assignments yet. To create a new assignment, click on the \"New\" button above."
msgstr ""
#: frontend/src/pages/Quizzes.vue:65 #: frontend/src/pages/Quizzes.vue:65
msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above." msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above."
msgstr "" msgstr ""
@@ -5571,7 +5675,7 @@ msgstr ""
msgid "You haven't enrolled for any courses" msgid "You haven't enrolled for any courses"
msgstr "" msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:142 #: frontend/src/components/CourseCardOverlay.vue:146
msgid "You need to login first to enroll for this course" msgid "You need to login first to enroll for this course"
msgstr "" msgstr ""
@@ -5584,7 +5688,7 @@ msgstr ""
msgid "You've applied to become a mentor for this course. Your request is currently under review." msgid "You've applied to become a mentor for this course. Your request is currently under review."
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:15 #: frontend/src/components/Assignment.vue:55
msgid "You've successfully submitted the assignment." msgid "You've successfully submitted the assignment."
msgstr "" msgstr ""
@@ -5628,7 +5732,7 @@ msgstr ""
msgid "Your score is" msgid "Your score is"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:227 #: frontend/src/components/Quiz.vue:229
msgid "Your submission has been successfully saved. The instructor will review and grade it shortly, and you'll be notified of your final result." msgid "Your submission has been successfully saved. The instructor will review and grade it shortly, and you'll be notified of your final result."
msgstr "" msgstr ""
@@ -5677,7 +5781,7 @@ msgstr "از"
msgid "posted by" msgid "posted by"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:390 #: frontend/src/pages/QuizForm.vue:386
msgid "question_detail" msgid "question_detail"
msgstr "" msgstr ""
@@ -5693,7 +5797,7 @@ msgstr "ستاره ها"
msgid "you can" msgid "you can"
msgstr "" msgstr ""
#: lms/lms/api.py:749 lms/lms/api.py:757 #: lms/lms/api.py:751 lms/lms/api.py:759
msgid "{0} Settings not found" msgid "{0} Settings not found"
msgstr "" msgstr ""

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-12-27 16:04+0000\n" "POT-Creation-Date: 2025-01-03 16:04+0000\n"
"PO-Revision-Date: 2024-12-31 03:29\n" "PO-Revision-Date: 2025-01-07 04:09\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"
@@ -156,7 +156,7 @@ msgstr ""
msgid "Add a new question" msgid "Add a new question"
msgstr "" msgstr ""
#: frontend/src/components/QuizPlugin.vue:11 #: frontend/src/components/AssessmentPlugin.vue:11
msgid "Add a quiz to your lesson" msgid "Add a quiz to your lesson"
msgstr "" msgstr ""
@@ -164,6 +164,10 @@ msgstr ""
msgid "Add an assessment" msgid "Add an assessment"
msgstr "" msgstr ""
#: frontend/src/components/AssessmentPlugin.vue:14
msgid "Add an assignment to your lesson"
msgstr ""
#: frontend/src/components/Modals/Question.vue:18 #: frontend/src/components/Modals/Question.vue:18
msgid "Add an existing question" msgid "Add an existing question"
msgstr "" msgstr ""
@@ -176,7 +180,7 @@ msgstr "Ajoutez au moins une réponse possible à cette question : {0}"
msgid "Add web page to sidebar" msgid "Add web page to sidebar"
msgstr "Ajouter une page Web à la barre latérale" msgstr "Ajouter une page Web à la barre latérale"
#: frontend/src/pages/AssignmentSubmission.vue:44 #: frontend/src/components/Assignment.vue:65
msgid "Add your assignment as {0}" msgid "Add your assignment as {0}"
msgstr "Ajoutez votre devoir comme {0}" msgstr "Ajoutez votre devoir comme {0}"
@@ -393,6 +397,8 @@ msgstr "Assigner"
#. Label of the section_break_16 (Section Break) field in DocType 'Course #. Label of the section_break_16 (Section Break) field in DocType 'Course
#. Lesson' #. Lesson'
#. Label of the assignment (Link) field in DocType 'LMS Assignment Submission' #. Label of the assignment (Link) field in DocType 'LMS Assignment Submission'
#: frontend/src/pages/AssignmentSubmissionList.vue:12
#: frontend/src/utils/assignment.js:25
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/templates/assignment.html:3 #: lms/templates/assignment.html:3
@@ -417,15 +423,23 @@ msgstr "Modèle de soumission d'un travail"
msgid "Assignment Title" msgid "Assignment Title"
msgstr "Titre du devoir" msgstr "Titre du devoir"
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:31 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:33
msgid "Assignment for Lesson {0} by {1} already exists." msgid "Assignment for Lesson {0} by {1} already exists."
msgstr "Le devoir pour la leçon {0} de {1} existe déjà." msgstr "Le devoir pour la leçon {0} de {1} existe déjà."
#: frontend/src/pages/AssignmentForm.vue:155
msgid "Assignment saved successfully"
msgstr ""
#. Description of the 'Question' (Small Text) field in DocType 'Course Lesson' #. Description of the 'Question' (Small Text) field in DocType 'Course Lesson'
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Assignment will appear at the bottom of the lesson." msgid "Assignment will appear at the bottom of the lesson."
msgstr "Le devoir apparaîtra au bas de la leçon." msgstr "Le devoir apparaîtra au bas de la leçon."
#: frontend/src/pages/AssignmentForm.vue:174
msgid "Assignments"
msgstr "Affectations"
#: lms/lms/doctype/lms_question/lms_question.py:43 #: lms/lms/doctype/lms_question/lms_question.py:43
msgid "At least one option must be correct for this question." msgid "At least one option must be correct for this question."
msgstr "Au moins une option doit être correcte pour cette question." msgstr "Au moins une option doit être correcte pour cette question."
@@ -746,6 +760,10 @@ msgstr "Participants certifiés"
msgid "Change" msgid "Change"
msgstr "" msgstr ""
#: frontend/src/components/Assignment.vue:316
msgid "Changes saved successfully"
msgstr ""
#. Label of the chapter (Link) field in DocType 'Chapter Reference' #. Label of the chapter (Link) field in DocType 'Chapter Reference'
#. Label of the chapter (Link) field in DocType 'LMS Course Progress' #. Label of the chapter (Link) field in DocType 'LMS Course Progress'
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
@@ -774,7 +792,7 @@ msgstr ""
msgid "Chapters" msgid "Chapters"
msgstr "Chapitres" msgstr "Chapitres"
#: frontend/src/components/Quiz.vue:201 lms/templates/quiz/quiz.html:120 #: frontend/src/components/Quiz.vue:203 lms/templates/quiz/quiz.html:120
msgid "Check" msgid "Check"
msgstr "Vérifier" msgstr "Vérifier"
@@ -797,7 +815,7 @@ msgstr "Cours de vérification"
msgid "Choices" msgid "Choices"
msgstr "Choix" msgstr "Choix"
#: frontend/src/components/Quiz.vue:581 lms/templates/quiz/quiz.html:53 #: frontend/src/components/Quiz.vue:587 lms/templates/quiz/quiz.html:53
msgid "Choose all answers that apply" msgid "Choose all answers that apply"
msgstr "Choisissez toutes les réponses qui s'appliquent" msgstr "Choisissez toutes les réponses qui s'appliquent"
@@ -805,7 +823,7 @@ msgstr "Choisissez toutes les réponses qui s'appliquent"
msgid "Choose an icon" msgid "Choose an icon"
msgstr "Choisir une icône" msgstr "Choisir une icône"
#: frontend/src/components/Quiz.vue:582 lms/templates/quiz/quiz.html:53 #: frontend/src/components/Quiz.vue:588 lms/templates/quiz/quiz.html:53
msgid "Choose one answer" msgid "Choose one answer"
msgstr "Choisissez une réponse" msgstr "Choisissez une réponse"
@@ -814,12 +832,16 @@ msgstr "Choisissez une réponse"
msgid "City" msgid "City"
msgstr "Ville" msgstr "Ville"
#: frontend/src/components/Controls/Link.vue:49
msgid "Clear"
msgstr "Nettoyer"
#. Option for the 'Role Preference' (Select) field in DocType 'User' #. Option for the 'Role Preference' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
msgid "Clearly Defined Role" msgid "Clearly Defined Role"
msgstr "" msgstr ""
#: frontend/src/components/LessonHelp.vue:15 #: frontend/src/components/LessonHelp.vue:30
msgid "Click on the add icon in the editor and select Quiz from the menu. It opens up a dialog, where you can either select a quiz from the list or create a new quiz. When you select the Create New option it redirects you to the quiz creation page." msgid "Click on the add icon in the editor and select Quiz from the menu. It opens up a dialog, where you can either select a quiz from the list or create a new quiz. When you select the Create New option it redirects you to the quiz creation page."
msgstr "" msgstr ""
@@ -917,6 +939,7 @@ msgstr "Couleur"
#. Label of the comments (Small Text) field in DocType 'LMS Assignment #. Label of the comments (Small Text) field in DocType 'LMS Assignment
#. Submission' #. Submission'
#. Label of the comments (Small Text) field in DocType 'LMS Mentor Request' #. Label of the comments (Small Text) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Assignment.vue:161
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
#: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
@@ -924,6 +947,10 @@ msgstr "Couleur"
msgid "Comments" msgid "Comments"
msgstr "Commentaires" msgstr "Commentaires"
#: frontend/src/components/Assignment.vue:139
msgid "Comments by Evaluator"
msgstr ""
#. Label of the company (Data) field in DocType 'LMS Job Application' #. Label of the company (Data) field in DocType 'LMS Job Application'
#. Label of the company (Data) field in DocType 'Work Experience' #. Label of the company (Data) field in DocType 'Work Experience'
#: lms/job/doctype/lms_job_application/lms_job_application.json #: lms/job/doctype/lms_job_application/lms_job_application.json
@@ -986,7 +1013,7 @@ msgstr "Terminer l'inscription"
msgid "Completed" msgid "Completed"
msgstr "Terminé" msgstr "Terminé"
#: frontend/src/components/BatchStudents.vue:325 #: frontend/src/components/BatchStudents.vue:353
msgid "Completed by Students" msgid "Completed by Students"
msgstr "" msgstr ""
@@ -1036,7 +1063,7 @@ msgid "Continue Learning"
msgstr "" msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:117 #: frontend/src/pages/Jobs.vue:120
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Contract" msgid "Contract"
msgstr "Contrat" msgstr "Contrat"
@@ -1045,7 +1072,7 @@ msgstr "Contrat"
msgid "Cookie Policy" msgid "Cookie Policy"
msgstr "Politique des cookies" msgstr "Politique des cookies"
#: frontend/src/components/LessonHelp.vue:53 #: frontend/src/components/LessonHelp.vue:68
msgid "Copy the URL of the video from YouTube and paste it in the editor." msgid "Copy the URL of the video from YouTube and paste it in the editor."
msgstr "" msgstr ""
@@ -1057,7 +1084,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Exercise Latest #. Option for the 'Status' (Select) field in DocType 'Exercise Latest
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'Exercise Submission' #. Option for the 'Status' (Select) field in DocType 'Exercise Submission'
#: frontend/src/components/Quiz.vue:161 #: frontend/src/components/Quiz.vue:163
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
#: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json
msgid "Correct" msgid "Correct"
@@ -1197,7 +1224,7 @@ msgstr "Liste de cours"
msgid "Course Name" msgid "Course Name"
msgstr "Nom du cours" msgstr "Nom du cours"
#: frontend/src/pages/CourseDetail.vue:74 #: frontend/src/pages/CourseDetail.vue:76
msgid "Course Outline" msgid "Course Outline"
msgstr "" msgstr ""
@@ -1322,6 +1349,10 @@ msgstr ""
msgid "Create a new question" msgid "Create a new question"
msgstr "" msgstr ""
#: frontend/src/pages/Assignments.vue:163
msgid "Created"
msgstr "Créé"
#. Label of the currency (Link) field in DocType 'Web Form' #. Label of the currency (Link) field in DocType 'Web Form'
#. Label of the currency (Link) field in DocType 'LMS Batch' #. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course' #. Label of the currency (Link) field in DocType 'LMS Course'
@@ -1487,8 +1518,8 @@ msgid "Desk"
msgstr "" msgstr ""
#: frontend/src/components/Modals/DiscussionModal.vue:22 #: frontend/src/components/Modals/DiscussionModal.vue:22
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:28 #: frontend/src/pages/AssignmentForm.vue:27 frontend/src/pages/BatchForm.vue:14
#: frontend/src/pages/QuizForm.vue:42 #: frontend/src/pages/CourseForm.vue:28 frontend/src/pages/QuizForm.vue:42
msgid "Details" msgid "Details"
msgstr "Détails" msgstr "Détails"
@@ -1619,6 +1650,10 @@ msgstr "Email Envoyé"
msgid "Email Templates" msgid "Email Templates"
msgstr "" msgstr ""
#: frontend/src/components/BatchStudents.vue:409
msgid "Email copied to clipboard"
msgstr ""
#. Label of the show_emails (Check) field in DocType 'LMS Settings' #. Label of the show_emails (Check) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Emails" msgid "Emails"
@@ -1699,8 +1734,8 @@ msgid "Enroll Now"
msgstr "" msgstr ""
#: frontend/src/components/CourseCard.vue:43 #: frontend/src/components/CourseCard.vue:43
#: frontend/src/components/CourseCardOverlay.vue:103 #: frontend/src/components/CourseCardOverlay.vue:104
#: frontend/src/pages/CourseDetail.vue:31 #: frontend/src/pages/CourseDetail.vue:33
msgid "Enrolled Students" msgid "Enrolled Students"
msgstr "" msgstr ""
@@ -1717,7 +1752,7 @@ msgstr ""
msgid "Enrollment Count" msgid "Enrollment Count"
msgstr "" msgstr ""
#: lms/lms/utils.py:1720 #: lms/lms/utils.py:1726
msgid "Enrollment Failed" msgid "Enrollment Failed"
msgstr "" msgstr ""
@@ -1733,7 +1768,7 @@ msgstr ""
msgid "Enter Client Id and Client Secret in Google Settings to send calendar invites for evaluations." msgid "Enter Client Id and Client Secret in Google Settings to send calendar invites for evaluations."
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:96 #: frontend/src/components/Assignment.vue:110
msgid "Enter a URL" msgid "Enter a URL"
msgstr "" msgstr ""
@@ -1745,6 +1780,7 @@ msgstr ""
msgid "Enter the correct answer" msgid "Enter the correct answer"
msgstr "" msgstr ""
#: frontend/src/components/Assignment.vue:268
#: frontend/src/components/Modals/AnnouncementModal.vue:105 #: frontend/src/components/Modals/AnnouncementModal.vue:105
#: frontend/src/components/Modals/BulkCertificates.vue:115 #: frontend/src/components/Modals/BulkCertificates.vue:115
#: frontend/src/components/Modals/ChapterModal.vue:159 #: frontend/src/components/Modals/ChapterModal.vue:159
@@ -1755,8 +1791,9 @@ msgstr ""
#: frontend/src/components/Modals/Question.vue:326 #: frontend/src/components/Modals/Question.vue:326
#: frontend/src/components/Modals/StudentModal.vue:69 #: frontend/src/components/Modals/StudentModal.vue:69
#: frontend/src/components/SettingDetails.vue:62 #: frontend/src/components/SettingDetails.vue:62
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350 #: frontend/src/pages/AssignmentForm.vue:139
#: frontend/src/pages/QuizForm.vue:365 #: frontend/src/pages/AssignmentForm.vue:159 frontend/src/pages/Billing.vue:264
#: frontend/src/pages/QuizForm.vue:346 frontend/src/pages/QuizForm.vue:361
#: frontend/src/pages/QuizSubmission.vue:141 #: frontend/src/pages/QuizSubmission.vue:141
msgid "Error" msgid "Error"
msgstr "Erreur" msgstr "Erreur"
@@ -1919,7 +1956,7 @@ msgstr ""
msgid "Featured" msgid "Featured"
msgstr "En vedette" msgstr "En vedette"
#: frontend/src/pages/AssignmentSubmission.vue:21 #: frontend/src/components/Assignment.vue:61
msgid "Feel free to make edits to your submission if needed." msgid "Feel free to make edits to your submission if needed."
msgstr "" msgstr ""
@@ -1938,6 +1975,10 @@ msgstr ""
msgid "File Type" msgid "File Type"
msgstr "Type de fichier" msgstr "Type de fichier"
#: frontend/src/pages/Jobs.vue:47
msgid "Find the perfect job for you"
msgstr ""
#: frontend/src/components/Members.vue:38 #: frontend/src/components/Members.vue:38
#: frontend/src/components/Modals/EditProfile.vue:59 #: frontend/src/components/Modals/EditProfile.vue:59
msgid "First Name" msgid "First Name"
@@ -1953,7 +1994,7 @@ msgstr ""
msgid "Flexible Time" msgid "Flexible Time"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:463 #: frontend/src/pages/QuizForm.vue:459
msgid "Form to create and edit quizzes" msgid "Form to create and edit quizzes"
msgstr "" msgstr ""
@@ -1967,7 +2008,7 @@ msgid "Free"
msgstr "" msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:118 #: frontend/src/pages/Jobs.vue:121
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Freelance" msgid "Freelance"
msgstr "" msgstr ""
@@ -2009,7 +2050,7 @@ msgid "Full Name"
msgstr "Nom Complet" msgstr "Nom Complet"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:115 #: frontend/src/pages/Jobs.vue:118
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Full Time" msgid "Full Time"
msgstr "" msgstr ""
@@ -2069,6 +2110,7 @@ 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:154
#: lms/lms/doctype/education_detail/education_detail.json #: lms/lms/doctype/education_detail/education_detail.json
msgid "Grade" msgid "Grade"
msgstr "Note" msgstr "Note"
@@ -2083,6 +2125,10 @@ msgstr ""
msgid "Grade Type" msgid "Grade Type"
msgstr "" msgstr ""
#: frontend/src/components/Assignment.vue:149
msgid "Grading"
msgstr ""
#. Label of the grant_only_once (Check) field in DocType 'LMS Badge' #. Label of the grant_only_once (Check) field in DocType 'LMS Badge'
#: lms/lms/doctype/lms_badge/lms_badge.json #: lms/lms/doctype/lms_badge/lms_badge.json
msgid "Grant only once" msgid "Grant only once"
@@ -2146,7 +2192,7 @@ msgstr ""
msgid "Host" msgid "Host"
msgstr "" msgstr ""
#: frontend/src/components/LessonHelp.vue:9 #: frontend/src/components/LessonHelp.vue:24
msgid "How to add a Quiz?" msgid "How to add a Quiz?"
msgstr "" msgstr ""
@@ -2168,7 +2214,7 @@ msgstr ""
msgid "I am unavailable" msgid "I am unavailable"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:384 #: frontend/src/pages/QuizForm.vue:380
msgid "ID" msgid "ID"
msgstr "" msgstr ""
@@ -2178,7 +2224,7 @@ msgstr ""
msgid "Icon" msgid "Icon"
msgstr "Icône" msgstr "Icône"
#: frontend/src/components/LessonHelp.vue:68 #: frontend/src/components/LessonHelp.vue:11
msgid "If Include in Preview is enabled for a lesson then the lesson will also be accessible to non logged in users." msgid "If Include in Preview is enabled for a lesson then the lesson will also be accessible to non logged in users."
msgstr "" msgstr ""
@@ -2261,7 +2307,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Exercise Latest #. Option for the 'Status' (Select) field in DocType 'Exercise Latest
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'Exercise Submission' #. Option for the 'Status' (Select) field in DocType 'Exercise Submission'
#: frontend/src/components/Quiz.vue:166 #: frontend/src/components/Quiz.vue:168
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
#: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json
msgid "Incorrect" msgid "Incorrect"
@@ -2469,7 +2515,7 @@ msgstr "Titre de l'Emploi"
msgid "Jobs" msgid "Jobs"
msgstr "Emplois" msgstr "Emplois"
#: frontend/src/components/LiveClass.vue:55 #: frontend/src/components/LiveClass.vue:58
#: lms/templates/upcoming_evals.html:15 #: lms/templates/upcoming_evals.html:15
msgid "Join" msgid "Join"
msgstr "Joindre" msgstr "Joindre"
@@ -2759,7 +2805,7 @@ msgstr ""
#. Group in Course Chapter's connections #. Group in Course Chapter's connections
#. Label of the lessons (Data) field in DocType 'LMS Course' #. Label of the lessons (Data) field in DocType 'LMS Course'
#: frontend/src/components/CourseCard.vue:34 #: frontend/src/components/CourseCard.vue:34
#: frontend/src/components/CourseCardOverlay.vue:96 #: frontend/src/components/CourseCardOverlay.vue:97
#: lms/lms/doctype/course_chapter/course_chapter.json #: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "Lessons" msgid "Lessons"
@@ -2825,6 +2871,7 @@ msgid "LiveCode URL"
msgstr "" msgstr ""
#: frontend/src/components/Members.vue:106 #: frontend/src/components/Members.vue:106
#: frontend/src/pages/Assignments.vue:71
#: frontend/src/pages/QuizSubmissionList.vue:39 #: frontend/src/pages/QuizSubmissionList.vue:39
#: frontend/src/pages/Quizzes.vue:51 #: frontend/src/pages/Quizzes.vue:51
msgid "Load More" msgid "Load More"
@@ -2854,6 +2901,7 @@ msgstr "Lieu"
msgid "Location Preference" msgid "Location Preference"
msgstr "" msgstr ""
#: frontend/src/components/AssignmentBlock.vue:13
#: frontend/src/components/NoPermission.vue:28 #: frontend/src/components/NoPermission.vue:28
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:175 #: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:175
#: frontend/src/pages/Lesson.vue:24 #: frontend/src/pages/Lesson.vue:24
@@ -2913,7 +2961,7 @@ msgstr ""
#. Label of the marks (Int) field in DocType 'LMS Quiz Result' #. Label of the marks (Int) field in DocType 'LMS Quiz Result'
#: frontend/src/components/Modals/Question.vue:50 #: frontend/src/components/Modals/Question.vue:50
#: frontend/src/components/Modals/Question.vue:99 #: frontend/src/components/Modals/Question.vue:99
#: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:394 #: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:390
#: frontend/src/pages/QuizSubmission.vue:59 #: frontend/src/pages/QuizSubmission.vue:59
#: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json #: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json
#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json
@@ -2970,6 +3018,7 @@ msgstr "Moyen:"
#. Label of the member (Link) field in DocType 'LMS Payment' #. Label of the member (Link) field in DocType 'LMS Payment'
#. Label of the member (Link) field in DocType 'LMS Program Member' #. Label of the member (Link) field in DocType 'LMS Program Member'
#. Label of the member (Link) field in DocType 'LMS Quiz Submission' #. Label of the member (Link) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/AssignmentSubmissionList.vue:14
#: frontend/src/pages/QuizSubmission.vue:31 #: frontend/src/pages/QuizSubmission.vue:31
#: frontend/src/pages/QuizSubmissionList.vue:86 #: frontend/src/pages/QuizSubmissionList.vue:86
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
@@ -3140,11 +3189,11 @@ msgstr ""
msgid "Modified By" msgid "Modified By"
msgstr "Modifié Par" msgstr "Modifié Par"
#: lms/lms/api.py:199 #: lms/lms/api.py:201
msgid "Module Name is incorrect or does not exist." msgid "Module Name is incorrect or does not exist."
msgstr "" msgstr ""
#: lms/lms/api.py:195 #: lms/lms/api.py:197
msgid "Module is incorrect." msgid "Module is incorrect."
msgstr "" msgstr ""
@@ -3173,12 +3222,17 @@ msgid "My calendar"
msgstr "" msgstr ""
#. Option for the 'Event' (Select) field in DocType 'LMS Badge' #. Option for the 'Event' (Select) field in DocType 'LMS Badge'
#: frontend/src/pages/Batches.vue:30 frontend/src/pages/Courses.vue:45 #: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:30
#: frontend/src/pages/Programs.vue:14 lms/lms/doctype/lms_badge/lms_badge.json #: frontend/src/pages/Courses.vue:45 frontend/src/pages/Programs.vue:14
#: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New" msgid "New"
msgstr "Nouveau" msgstr "Nouveau"
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:41 #: frontend/src/pages/AssignmentForm.vue:178
msgid "New Assignment"
msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:43
msgid "New Assignment Submission" msgid "New Assignment Submission"
msgstr "" msgstr ""
@@ -3214,7 +3268,7 @@ msgstr ""
msgid "New Question" msgid "New Question"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:454 frontend/src/pages/QuizForm.vue:462 #: frontend/src/pages/QuizForm.vue:450 frontend/src/pages/QuizForm.vue:458
#: frontend/src/pages/Quizzes.vue:18 #: frontend/src/pages/Quizzes.vue:18
msgid "New Quiz" msgid "New Quiz"
msgstr "" msgstr ""
@@ -3236,7 +3290,7 @@ msgstr ""
msgid "New {0}" msgid "New {0}"
msgstr "Nouveau(elle) {0}" msgstr "Nouveau(elle) {0}"
#: frontend/src/components/Quiz.vue:209 frontend/src/pages/Lesson.vue:84 #: frontend/src/components/Quiz.vue:211 frontend/src/pages/Lesson.vue:84
msgid "Next" msgid "Next"
msgstr "Suivant" msgstr "Suivant"
@@ -3244,7 +3298,7 @@ msgstr "Suivant"
msgid "Next Question" msgid "Next Question"
msgstr "" msgstr ""
#: frontend/src/components/Assessments.vue:66 lms/templates/assessments.html:58 #: frontend/src/components/Assessments.vue:75 lms/templates/assessments.html:58
msgid "No Assessments" msgid "No Assessments"
msgstr "" msgstr ""
@@ -3265,6 +3319,10 @@ msgstr ""
msgid "No announcements" msgid "No announcements"
msgstr "" msgstr ""
#: frontend/src/pages/Assignments.vue:56
msgid "No assignments found"
msgstr ""
#: frontend/src/pages/Batches.vue:125 #: frontend/src/pages/Batches.vue:125
msgid "No batches found" msgid "No batches found"
msgstr "" msgstr ""
@@ -3293,11 +3351,11 @@ msgstr ""
msgid "No introduction" msgid "No introduction"
msgstr "" msgstr ""
#: frontend/src/pages/Jobs.vue:60 #: frontend/src/pages/Jobs.vue:63
msgid "No jobs posted" msgid "No jobs posted"
msgstr "" msgstr ""
#: frontend/src/components/LiveClass.vue:61 #: frontend/src/components/LiveClass.vue:71
msgid "No live classes scheduled" msgid "No live classes scheduled"
msgstr "" msgstr ""
@@ -3313,6 +3371,10 @@ msgstr ""
msgid "No slots available for this date." msgid "No slots available for this date."
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmissionList.vue:67
msgid "No submissions"
msgstr ""
#: frontend/src/components/UpcomingEvaluations.vue:39 #: frontend/src/components/UpcomingEvaluations.vue:39
msgid "No upcoming evaluations." msgid "No upcoming evaluations."
msgstr "" msgstr ""
@@ -3361,6 +3423,7 @@ msgstr ""
msgid "Not Permitted" msgid "Not Permitted"
msgstr "Non Autorisé" msgstr "Non Autorisé"
#: frontend/src/components/Assignment.vue:33
#: frontend/src/components/BrandSettings.vue:10 #: frontend/src/components/BrandSettings.vue:10
#: frontend/src/components/PaymentSettings.vue:9 #: frontend/src/components/PaymentSettings.vue:9
#: frontend/src/components/SettingDetails.vue:10 #: frontend/src/components/SettingDetails.vue:10
@@ -3404,7 +3467,7 @@ msgstr ""
msgid "Once again, congratulations on this significant accomplishment." msgid "Once again, congratulations on this significant accomplishment."
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:17 #: frontend/src/components/Assignment.vue:57
msgid "Once the moderator grades your submission, you'll find the details here." msgid "Once the moderator grades your submission, you'll find the details here."
msgstr "" msgstr ""
@@ -3421,7 +3484,7 @@ msgstr ""
msgid "Only files of type {0} will be accepted." msgid "Only files of type {0} will be accepted."
msgstr "" msgstr ""
#: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:527 #: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:529
msgid "Only image file is allowed." msgid "Only image file is allowed."
msgstr "" msgstr ""
@@ -3550,7 +3613,7 @@ msgid "Pan Number"
msgstr "" msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:116 #: frontend/src/pages/Jobs.vue:119
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Part Time" msgid "Part Time"
msgstr "" msgstr ""
@@ -3681,7 +3744,7 @@ msgstr ""
msgid "Phone Number" msgid "Phone Number"
msgstr "Numéro de téléphone" msgstr "Numéro de téléphone"
#: frontend/src/components/CourseCardOverlay.vue:141 #: frontend/src/components/CourseCardOverlay.vue:145
msgid "Please Login" msgid "Please Login"
msgstr "" msgstr ""
@@ -3701,7 +3764,7 @@ msgstr "Veuillez vérifier votre email pour validation"
msgid "Please click on the following button to set your new password" msgid "Please click on the following button to set your new password"
msgstr "" msgstr ""
#: lms/lms/utils.py:1842 lms/lms/utils.py:1846 #: lms/lms/utils.py:1848 lms/lms/utils.py:1852
msgid "Please complete the previous courses in the program to enroll in this course." msgid "Please complete the previous courses in the program to enroll in this course."
msgstr "" msgstr ""
@@ -3721,8 +3784,8 @@ msgstr ""
msgid "Please enter a title." msgid "Please enter a title."
msgstr "" msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:38 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:40
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:98 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:122
msgid "Please enter a valid URL." msgid "Please enter a valid URL."
msgstr "" msgstr ""
@@ -3730,7 +3793,7 @@ msgstr ""
msgid "Please enter a valid time in the format HH:mm." msgid "Please enter a valid time in the format HH:mm."
msgstr "" msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:92 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:116
msgid "Please enter the URL for assignment submission." msgid "Please enter the URL for assignment submission."
msgstr "" msgstr ""
@@ -3750,6 +3813,10 @@ msgstr ""
msgid "Please let us know where you heard about us from." msgid "Please let us know where you heard about us from."
msgstr "" msgstr ""
#: frontend/src/components/AssignmentBlock.vue:9
msgid "Please login to access the assignment."
msgstr ""
#: frontend/src/components/QuizBlock.vue:5 #: frontend/src/components/QuizBlock.vue:5
msgid "Please login to access the quiz." msgid "Please login to access the quiz."
msgstr "" msgstr ""
@@ -3758,7 +3825,7 @@ msgstr ""
msgid "Please login to access this page." msgid "Please login to access this page."
msgstr "" msgstr ""
#: lms/lms/api.py:191 #: lms/lms/api.py:193
msgid "Please login to continue with payment." msgid "Please login to continue with payment."
msgstr "" msgstr ""
@@ -3795,7 +3862,7 @@ msgstr ""
msgid "Please upload a SCORM package" msgid "Please upload a SCORM package"
msgstr "" msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:95 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:119
msgid "Please upload the assignment file." msgid "Please upload the assignment file."
msgstr "" msgstr ""
@@ -4003,9 +4070,9 @@ msgstr "Publié le"
#. Label of the question (Text Editor) field in DocType 'LMS Question' #. Label of the question (Text Editor) field in DocType 'LMS Question'
#. Label of the question (Link) field in DocType 'LMS Quiz Question' #. Label of the question (Link) field in DocType 'LMS Quiz Question'
#. Label of the question (Text) field in DocType 'LMS Quiz Result' #. Label of the question (Text) field in DocType 'LMS Quiz Result'
#: frontend/src/components/Assignment.vue:17
#: frontend/src/components/Modals/Question.vue:38 #: frontend/src/components/Modals/Question.vue:38
#: frontend/src/pages/AssignmentSubmission.vue:26 #: frontend/src/pages/AssignmentForm.vue:45 frontend/src/pages/QuizForm.vue:385
#: frontend/src/pages/QuizForm.vue:389
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment/lms_assignment.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
@@ -4042,7 +4109,7 @@ msgstr ""
msgid "Question {0}" msgid "Question {0}"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:186 #: frontend/src/components/Quiz.vue:188
msgid "Question {0} of {1}" msgid "Question {0} of {1}"
msgstr "" msgstr ""
@@ -4051,7 +4118,7 @@ msgstr ""
msgid "Questions" msgid "Questions"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:431 #: frontend/src/pages/QuizForm.vue:427
msgid "Questions deleted successfully" msgid "Questions deleted successfully"
msgstr "" msgstr ""
@@ -4079,7 +4146,7 @@ msgstr ""
msgid "Quiz Submissions" msgid "Quiz Submissions"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:223 #: frontend/src/components/Quiz.vue:225
msgid "Quiz Summary" msgid "Quiz Summary"
msgstr "" msgstr ""
@@ -4088,7 +4155,7 @@ msgstr ""
msgid "Quiz Title" msgid "Quiz Title"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:343 #: frontend/src/pages/QuizForm.vue:339
msgid "Quiz created successfully" msgid "Quiz created successfully"
msgstr "" msgstr ""
@@ -4096,7 +4163,7 @@ msgstr ""
msgid "Quiz is not available to Guest users. Please login to continue." msgid "Quiz is not available to Guest users. Please login to continue."
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:362 #: frontend/src/pages/QuizForm.vue:358
msgid "Quiz updated successfully" msgid "Quiz updated successfully"
msgstr "" msgstr ""
@@ -4105,7 +4172,7 @@ msgstr ""
msgid "Quiz will appear at the bottom of the lesson." msgid "Quiz will appear at the bottom of the lesson."
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:442 frontend/src/pages/Quizzes.vue:138 #: frontend/src/pages/QuizForm.vue:438 frontend/src/pages/Quizzes.vue:138
#: frontend/src/pages/Quizzes.vue:148 #: frontend/src/pages/Quizzes.vue:148
msgid "Quizzes" msgid "Quizzes"
msgstr "" msgstr ""
@@ -4113,7 +4180,7 @@ msgstr ""
#. Label of the rating (Rating) field in DocType 'LMS Certificate Evaluation' #. Label of the rating (Rating) field in DocType 'LMS Certificate Evaluation'
#. 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:108 #: frontend/src/components/CourseCardOverlay.vue:110
#: frontend/src/components/Modals/Event.vue:86 #: frontend/src/components/Modals/Event.vue:86
#: frontend/src/components/Modals/ReviewModal.vue:20 #: frontend/src/components/Modals/ReviewModal.vue:20
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -4127,10 +4194,6 @@ msgstr "Évaluation"
msgid "Rating cannot be 0" msgid "Rating cannot be 0"
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:30
msgid "Read the question carefully before attempting the assignment."
msgstr ""
#. Option for the 'Stage' (Select) field in DocType 'LMS Batch Old' #. Option for the 'Stage' (Select) field in DocType 'LMS Batch Old'
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
msgid "Ready" msgid "Ready"
@@ -4309,15 +4372,15 @@ msgstr ""
msgid "Saturday" msgid "Saturday"
msgstr "Samedi" msgstr "Samedi"
#: frontend/src/components/AssessmentPlugin.vue:34
#: frontend/src/components/Assignment.vue:43
#: frontend/src/components/Controls/CodeEditor.vue:25 #: frontend/src/components/Controls/CodeEditor.vue:25
#: frontend/src/components/Modals/Event.vue:101 #: frontend/src/components/Modals/Event.vue:101
#: frontend/src/components/Modals/Event.vue:129 #: frontend/src/components/Modals/Event.vue:129
#: frontend/src/components/QuizPlugin.vue:23 #: frontend/src/pages/AssignmentForm.vue:21 frontend/src/pages/BatchForm.vue:8
#: frontend/src/pages/AssignmentSubmission.vue:7 #: frontend/src/pages/CourseForm.vue:20 frontend/src/pages/JobCreation.vue:8
#: frontend/src/pages/BatchForm.vue:8 frontend/src/pages/CourseForm.vue:20 #: frontend/src/pages/LessonForm.vue:14 frontend/src/pages/ProgramForm.vue:7
#: frontend/src/pages/JobCreation.vue:8 frontend/src/pages/LessonForm.vue:14 #: frontend/src/pages/QuizForm.vue:34 frontend/src/pages/QuizSubmission.vue:14
#: frontend/src/pages/ProgramForm.vue:7 frontend/src/pages/QuizForm.vue:34
#: frontend/src/pages/QuizSubmission.vue:14
#: lms/public/js/common_functions.js:405 #: lms/public/js/common_functions.js:405
msgid "Save" msgid "Save"
msgstr "Sauvegarder" msgstr "Sauvegarder"
@@ -4359,6 +4422,10 @@ msgstr ""
msgid "Search" msgid "Search"
msgstr "Rechercher" msgstr "Rechercher"
#: frontend/src/pages/Assignments.vue:25
msgid "Search by title"
msgstr ""
#: frontend/src/components/Controls/IconPicker.vue:36 #: frontend/src/components/Controls/IconPicker.vue:36
msgid "Search for an icon" msgid "Search for an icon"
msgstr "" msgstr ""
@@ -4384,7 +4451,7 @@ msgstr ""
msgid "Select a question" msgid "Select a question"
msgstr "" msgstr ""
#: frontend/src/components/QuizPlugin.vue:17 #: frontend/src/components/AssessmentPlugin.vue:21
msgid "Select a quiz" msgid "Select a quiz"
msgstr "" msgstr ""
@@ -4392,6 +4459,10 @@ msgstr ""
msgid "Select a slot" msgid "Select a slot"
msgstr "" msgstr ""
#: frontend/src/components/AssessmentPlugin.vue:28
msgid "Select an assignment"
msgstr ""
#. Label of the send_calendar_invite_for_evaluations (Check) field in DocType #. Label of the send_calendar_invite_for_evaluations (Check) field in DocType
#. 'LMS Settings' #. 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -4583,7 +4654,7 @@ msgstr ""
msgid "Stage" msgid "Stage"
msgstr "Etape" msgstr "Etape"
#: frontend/src/components/LiveClass.vue:46 frontend/src/components/Quiz.vue:65 #: frontend/src/components/LiveClass.vue:50 frontend/src/components/Quiz.vue:65
#: lms/templates/quiz/quiz.html:39 #: lms/templates/quiz/quiz.html:39
msgid "Start" msgid "Start"
msgstr "Démarrer" msgstr "Démarrer"
@@ -4664,6 +4735,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Course Progress' #. Label of the status (Select) field in DocType 'LMS Course Progress'
#. Label of the status (Select) field in DocType 'LMS Mentor Request' #. Label of the status (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:91 #: frontend/src/components/Modals/Event.vue:91
#: frontend/src/pages/AssignmentSubmissionList.vue:19
#: frontend/src/pages/JobCreation.vue:41 #: frontend/src/pages/JobCreation.vue:41
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/cohort/cohort.json
@@ -4724,7 +4796,7 @@ msgstr ""
msgid "Students" msgid "Students"
msgstr "" msgstr ""
#: frontend/src/components/BatchStudents.vue:282 #: frontend/src/components/BatchStudents.vue:310
msgid "Students deleted successfully" msgid "Students deleted successfully"
msgstr "" msgstr ""
@@ -4746,19 +4818,24 @@ msgstr ""
msgid "Subject" msgid "Subject"
msgstr "Sujet" msgstr "Sujet"
#: frontend/src/pages/AssignmentSubmission.vue:40 #: frontend/src/components/Assignment.vue:29
msgid "Submission" msgid "Submission"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:30 #: frontend/src/pages/AssignmentForm.vue:17 frontend/src/pages/QuizForm.vue:30
msgid "Submission List" msgid "Submission List"
msgstr "" msgstr ""
#: frontend/src/components/Assignment.vue:10
#: frontend/src/components/Assignment.vue:13
msgid "Submission by"
msgstr ""
#: frontend/src/components/Modals/AssessmentModal.vue:9 #: frontend/src/components/Modals/AssessmentModal.vue:9
#: frontend/src/components/Modals/BatchCourseModal.vue:9 #: frontend/src/components/Modals/BatchCourseModal.vue:9
#: frontend/src/components/Modals/EvaluationModal.vue:9 #: frontend/src/components/Modals/EvaluationModal.vue:9
#: frontend/src/components/Modals/Question.vue:338 #: frontend/src/components/Modals/Question.vue:338
#: frontend/src/components/Quiz.vue:214 lms/templates/assignment.html:9 #: frontend/src/components/Quiz.vue:216 lms/templates/assignment.html:9
#: lms/templates/livecode/extension_footer.html:25 #: lms/templates/livecode/extension_footer.html:25
#: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163 #: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163
#: lms/www/new-sign-up.html:32 #: lms/www/new-sign-up.html:32
@@ -4774,10 +4851,12 @@ msgstr ""
msgid "Submitted {0}" msgid "Submitted {0}"
msgstr "" msgstr ""
#: frontend/src/components/Assignment.vue:316
#: frontend/src/components/BatchCourses.vue:150 #: frontend/src/components/BatchCourses.vue:150
#: frontend/src/components/BatchOverlay.vue:135 #: frontend/src/components/BatchOverlay.vue:135
#: frontend/src/components/BatchStudents.vue:282 #: frontend/src/components/BatchStudents.vue:310
#: frontend/src/components/CourseCardOverlay.vue:161 #: frontend/src/components/BatchStudents.vue:409
#: frontend/src/components/CourseCardOverlay.vue:165
#: frontend/src/components/Modals/AnnouncementModal.vue:99 #: frontend/src/components/Modals/AnnouncementModal.vue:99
#: frontend/src/components/Modals/AssessmentModal.vue:73 #: frontend/src/components/Modals/AssessmentModal.vue:73
#: frontend/src/components/Modals/BulkCertificates.vue:121 #: frontend/src/components/Modals/BulkCertificates.vue:121
@@ -4787,11 +4866,12 @@ msgstr ""
#: frontend/src/components/Modals/Event.vue:310 #: frontend/src/components/Modals/Event.vue:310
#: frontend/src/components/Modals/Question.vue:264 #: frontend/src/components/Modals/Question.vue:264
#: frontend/src/components/Modals/Question.vue:315 #: frontend/src/components/Modals/Question.vue:315
#: frontend/src/pages/AssignmentForm.vue:155
#: frontend/src/pages/CourseForm.vue:461 frontend/src/pages/ProgramForm.vue:229 #: frontend/src/pages/CourseForm.vue:461 frontend/src/pages/ProgramForm.vue:229
#: frontend/src/pages/ProgramForm.vue:251 #: frontend/src/pages/ProgramForm.vue:251
#: frontend/src/pages/ProgramForm.vue:272 #: frontend/src/pages/ProgramForm.vue:272
#: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:343 #: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:339
#: frontend/src/pages/QuizForm.vue:362 frontend/src/pages/QuizForm.vue:431 #: frontend/src/pages/QuizForm.vue:358 frontend/src/pages/QuizForm.vue:427
msgid "Success" msgid "Success"
msgstr "Succès" msgstr "Succès"
@@ -4809,7 +4889,7 @@ msgstr "Résumé"
msgid "Sunday" msgid "Sunday"
msgstr "Dimanche" msgstr "Dimanche"
#: lms/lms/api.py:952 #: lms/lms/api.py:954
msgid "Suspicious pattern found in {0}: {1}" msgid "Suspicious pattern found in {0}: {1}"
msgstr "" msgstr ""
@@ -4924,6 +5004,10 @@ msgstr "Texte"
msgid "Thanks and Regards" msgid "Thanks and Regards"
msgstr "" msgstr ""
#: lms/lms/utils.py:1755
msgid "The batch is full. Please contact the Administrator."
msgstr ""
#: lms/templates/emails/lms_course_interest.html:5 #: lms/templates/emails/lms_course_interest.html:5
msgid "The course {0} is now available on {1}." msgid "The course {0} is now available on {1}."
msgstr "" msgstr ""
@@ -4964,14 +5048,22 @@ msgstr ""
msgid "There are no seats available in this batch." msgid "There are no seats available in this batch."
msgstr "" msgstr ""
#: frontend/src/components/BatchStudents.vue:165 #: frontend/src/components/BatchStudents.vue:182
msgid "There are no students in this batch." msgid "There are no students in this batch."
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmissionList.vue:70
msgid "There are no submissions for this assignment."
msgstr ""
#: lms/templates/course_list.html:14 #: lms/templates/course_list.html:14
msgid "There are no {0} on this site." msgid "There are no {0} on this site."
msgstr "" msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:82
msgid "There has been an update on your submission for assignment {0}"
msgstr ""
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:42 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:42
msgid "There has been an update on your submission. You have got a score of {0} for the quiz {1}" msgid "There has been an update on your submission. You have got a score of {0} for the quiz {1}"
msgstr "" msgstr ""
@@ -4991,11 +5083,15 @@ msgstr ""
msgid "This certificate does no expire" msgid "This certificate does no expire"
msgstr "" msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:91 #: frontend/src/components/LiveClass.vue:64
msgid "This class has ended"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:92
msgid "This course has:" msgid "This course has:"
msgstr "" msgstr ""
#: lms/lms/utils.py:1600 #: lms/lms/utils.py:1606
msgid "This course is free." msgid "This course is free."
msgstr "" msgstr ""
@@ -5098,10 +5194,12 @@ msgstr ""
#. Label of the title (Data) field in DocType 'Work Experience' #. Label of the title (Data) field in DocType 'Work Experience'
#: frontend/src/components/Modals/DiscussionModal.vue:18 #: frontend/src/components/Modals/DiscussionModal.vue:18
#: frontend/src/components/Modals/LiveClassModal.vue:23 #: frontend/src/components/Modals/LiveClassModal.vue:23
#: frontend/src/pages/BatchForm.vue:20 frontend/src/pages/CourseForm.vue:32 #: frontend/src/pages/AssignmentForm.vue:32
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/ProgramForm.vue:11 #: frontend/src/pages/Assignments.vue:152 frontend/src/pages/BatchForm.vue:20
#: frontend/src/pages/Programs.vue:118 frontend/src/pages/QuizForm.vue:48 #: frontend/src/pages/CourseForm.vue:32 frontend/src/pages/JobCreation.vue:20
#: frontend/src/pages/Quizzes.vue:116 lms/lms/doctype/cohort/cohort.json #: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:118
#: frontend/src/pages/QuizForm.vue:48 frontend/src/pages/Quizzes.vue:116
#: lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/course_chapter/course_chapter.json #: lms/lms/doctype/course_chapter/course_chapter.json
@@ -5137,11 +5235,11 @@ msgstr "À"
msgid "To Date" msgid "To Date"
msgstr "Jusqu'au" msgstr "Jusqu'au"
#: lms/lms/utils.py:1611 #: lms/lms/utils.py:1617
msgid "To join this batch, please contact the Administrator." msgid "To join this batch, please contact the Administrator."
msgstr "" msgstr ""
#: frontend/src/components/LessonHelp.vue:34 #: frontend/src/components/LessonHelp.vue:49
msgid "To upload Image, Video, Audio or PDF from your system, click on the add icon and select upload from the menu. Then choose the file you want to add to the lesson and it gets added to your lesson." msgid "To upload Image, Video, Audio or PDF from your system, click on the add icon and select upload from the menu. Then choose the file you want to add to the lesson and it gets added to your lesson."
msgstr "" msgstr ""
@@ -5169,7 +5267,7 @@ msgstr ""
msgid "Travel" msgid "Travel"
msgstr "Déplacement" msgstr "Déplacement"
#: frontend/src/components/Quiz.vue:252 lms/templates/quiz/quiz.html:131 #: frontend/src/components/Quiz.vue:254 lms/templates/quiz/quiz.html:131
msgid "Try Again" msgid "Try Again"
msgstr "" msgstr ""
@@ -5191,6 +5289,8 @@ msgstr ""
#. Label of the type (Select) field in DocType 'LMS Quiz Question' #. Label of the type (Select) field in DocType 'LMS Quiz Question'
#: frontend/src/components/Modals/AssessmentModal.vue:22 #: frontend/src/components/Modals/AssessmentModal.vue:22
#: frontend/src/components/Modals/Question.vue:54 #: frontend/src/components/Modals/Question.vue:54
#: frontend/src/pages/AssignmentForm.vue:39
#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:157
#: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:16 #: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:16
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment/lms_assignment.json
@@ -5201,7 +5301,7 @@ msgstr ""
msgid "Type" msgid "Type"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:583 #: frontend/src/components/Quiz.vue:589
msgid "Type your answer" msgid "Type your answer"
msgstr "" msgstr ""
@@ -5282,11 +5382,11 @@ msgstr ""
msgid "Upload" msgid "Upload"
msgstr "Charger" msgstr "Charger"
#: frontend/src/pages/AssignmentSubmission.vue:69 #: frontend/src/components/Assignment.vue:78
msgid "Upload File" msgid "Upload File"
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:68 #: frontend/src/components/Assignment.vue:77
msgid "Uploading {0}%" msgid "Uploading {0}%"
msgstr "Envoi de {0}%" msgstr "Envoi de {0}%"
@@ -5404,7 +5504,7 @@ msgstr "Mercredi"
msgid "Welcome to {0}!" msgid "Welcome to {0}!"
msgstr "Bienvenue sur {0}!" msgstr "Bienvenue sur {0}!"
#: frontend/src/components/LessonHelp.vue:63 #: frontend/src/components/LessonHelp.vue:6
msgid "What does include in preview mean?" msgid "What does include in preview mean?"
msgstr "" msgstr ""
@@ -5453,7 +5553,7 @@ msgstr ""
msgid "Write a review" msgid "Write a review"
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:102 #: frontend/src/components/Assignment.vue:120
msgid "Write your answer here" msgid "Write your answer here"
msgstr "" msgstr ""
@@ -5461,11 +5561,11 @@ msgstr ""
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}."
msgstr "" msgstr ""
#: lms/lms/api.py:215 #: lms/lms/api.py:217
msgid "You are already enrolled for this batch." msgid "You are already enrolled for this batch."
msgstr "" msgstr ""
#: lms/lms/api.py:207 #: lms/lms/api.py:209
msgid "You are already enrolled for this course." msgid "You are already enrolled for this course."
msgstr "" msgstr ""
@@ -5530,7 +5630,7 @@ msgstr ""
msgid "You got" msgid "You got"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:234 #: frontend/src/components/Quiz.vue:236
#, python-format #, python-format
msgid "You got {0}% correct answers with a score of {1} out of {2}" msgid "You got {0}% correct answers with a score of {1} out of {2}"
msgstr "" msgstr ""
@@ -5551,7 +5651,7 @@ msgstr ""
msgid "You have been enrolled in this batch" msgid "You have been enrolled in this batch"
msgstr "" msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:162 #: frontend/src/components/CourseCardOverlay.vue:166
msgid "You have been enrolled in this course" msgid "You have been enrolled in this course"
msgstr "" msgstr ""
@@ -5559,6 +5659,10 @@ msgstr ""
msgid "You have got a score of {0} for the quiz {1}" msgid "You have got a score of {0} for the quiz {1}"
msgstr "" msgstr ""
#: frontend/src/pages/Assignments.vue:60
msgid "You have not created any assignments yet. To create a new assignment, click on the \"New\" button above."
msgstr ""
#: frontend/src/pages/Quizzes.vue:65 #: frontend/src/pages/Quizzes.vue:65
msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above." msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above."
msgstr "" msgstr ""
@@ -5571,7 +5675,7 @@ msgstr "Vous avez choisi d'être notifié pour ce cours. Vous recevrez un courri
msgid "You haven't enrolled for any courses" msgid "You haven't enrolled for any courses"
msgstr "" msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:142 #: frontend/src/components/CourseCardOverlay.vue:146
msgid "You need to login first to enroll for this course" msgid "You need to login first to enroll for this course"
msgstr "" msgstr ""
@@ -5584,7 +5688,7 @@ msgstr ""
msgid "You've applied to become a mentor for this course. Your request is currently under review." msgid "You've applied to become a mentor for this course. Your request is currently under review."
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:15 #: frontend/src/components/Assignment.vue:55
msgid "You've successfully submitted the assignment." msgid "You've successfully submitted the assignment."
msgstr "" msgstr ""
@@ -5628,7 +5732,7 @@ msgstr ""
msgid "Your score is" msgid "Your score is"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:227 #: frontend/src/components/Quiz.vue:229
msgid "Your submission has been successfully saved. The instructor will review and grade it shortly, and you'll be notified of your final result." msgid "Your submission has been successfully saved. The instructor will review and grade it shortly, and you'll be notified of your final result."
msgstr "" msgstr ""
@@ -5677,7 +5781,7 @@ msgstr "sur"
msgid "posted by" msgid "posted by"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:390 #: frontend/src/pages/QuizForm.vue:386
msgid "question_detail" msgid "question_detail"
msgstr "" msgstr ""
@@ -5693,7 +5797,7 @@ msgstr ""
msgid "you can" msgid "you can"
msgstr "" msgstr ""
#: lms/lms/api.py:749 lms/lms/api.py:757 #: lms/lms/api.py:751 lms/lms/api.py:759
msgid "{0} Settings not found" msgid "{0} Settings not found"
msgstr "" msgstr ""

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-12-27 16:04+0000\n" "POT-Creation-Date: 2025-01-03 16:04+0000\n"
"PO-Revision-Date: 2024-12-31 03:29\n" "PO-Revision-Date: 2025-01-07 04:09\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"
@@ -156,7 +156,7 @@ msgstr ""
msgid "Add a new question" msgid "Add a new question"
msgstr "" msgstr ""
#: frontend/src/components/QuizPlugin.vue:11 #: frontend/src/components/AssessmentPlugin.vue:11
msgid "Add a quiz to your lesson" msgid "Add a quiz to your lesson"
msgstr "" msgstr ""
@@ -164,6 +164,10 @@ msgstr ""
msgid "Add an assessment" msgid "Add an assessment"
msgstr "" msgstr ""
#: frontend/src/components/AssessmentPlugin.vue:14
msgid "Add an assignment to your lesson"
msgstr ""
#: frontend/src/components/Modals/Question.vue:18 #: frontend/src/components/Modals/Question.vue:18
msgid "Add an existing question" msgid "Add an existing question"
msgstr "" msgstr ""
@@ -176,7 +180,7 @@ msgstr ""
msgid "Add web page to sidebar" msgid "Add web page to sidebar"
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:44 #: frontend/src/components/Assignment.vue:65
msgid "Add your assignment as {0}" msgid "Add your assignment as {0}"
msgstr "" msgstr ""
@@ -393,6 +397,8 @@ msgstr ""
#. Label of the section_break_16 (Section Break) field in DocType 'Course #. Label of the section_break_16 (Section Break) field in DocType 'Course
#. Lesson' #. Lesson'
#. Label of the assignment (Link) field in DocType 'LMS Assignment Submission' #. Label of the assignment (Link) field in DocType 'LMS Assignment Submission'
#: frontend/src/pages/AssignmentSubmissionList.vue:12
#: frontend/src/utils/assignment.js:25
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/templates/assignment.html:3 #: lms/templates/assignment.html:3
@@ -417,15 +423,23 @@ msgstr ""
msgid "Assignment Title" msgid "Assignment Title"
msgstr "" msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:31 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:33
msgid "Assignment for Lesson {0} by {1} already exists." msgid "Assignment for Lesson {0} by {1} already exists."
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentForm.vue:155
msgid "Assignment saved successfully"
msgstr ""
#. Description of the 'Question' (Small Text) field in DocType 'Course Lesson' #. Description of the 'Question' (Small Text) field in DocType 'Course Lesson'
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Assignment will appear at the bottom of the lesson." msgid "Assignment will appear at the bottom of the lesson."
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentForm.vue:174
msgid "Assignments"
msgstr "Feladatok"
#: lms/lms/doctype/lms_question/lms_question.py:43 #: lms/lms/doctype/lms_question/lms_question.py:43
msgid "At least one option must be correct for this question." msgid "At least one option must be correct for this question."
msgstr "" msgstr ""
@@ -746,6 +760,10 @@ msgstr ""
msgid "Change" msgid "Change"
msgstr "" msgstr ""
#: frontend/src/components/Assignment.vue:316
msgid "Changes saved successfully"
msgstr ""
#. Label of the chapter (Link) field in DocType 'Chapter Reference' #. Label of the chapter (Link) field in DocType 'Chapter Reference'
#. Label of the chapter (Link) field in DocType 'LMS Course Progress' #. Label of the chapter (Link) field in DocType 'LMS Course Progress'
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
@@ -774,7 +792,7 @@ msgstr ""
msgid "Chapters" msgid "Chapters"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:201 lms/templates/quiz/quiz.html:120 #: frontend/src/components/Quiz.vue:203 lms/templates/quiz/quiz.html:120
msgid "Check" msgid "Check"
msgstr "" msgstr ""
@@ -797,7 +815,7 @@ msgstr ""
msgid "Choices" msgid "Choices"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:581 lms/templates/quiz/quiz.html:53 #: frontend/src/components/Quiz.vue:587 lms/templates/quiz/quiz.html:53
msgid "Choose all answers that apply" msgid "Choose all answers that apply"
msgstr "" msgstr ""
@@ -805,7 +823,7 @@ msgstr ""
msgid "Choose an icon" msgid "Choose an icon"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:582 lms/templates/quiz/quiz.html:53 #: frontend/src/components/Quiz.vue:588 lms/templates/quiz/quiz.html:53
msgid "Choose one answer" msgid "Choose one answer"
msgstr "" msgstr ""
@@ -814,12 +832,16 @@ msgstr ""
msgid "City" msgid "City"
msgstr "" msgstr ""
#: frontend/src/components/Controls/Link.vue:49
msgid "Clear"
msgstr "Egyértelmű"
#. Option for the 'Role Preference' (Select) field in DocType 'User' #. Option for the 'Role Preference' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
msgid "Clearly Defined Role" msgid "Clearly Defined Role"
msgstr "" msgstr ""
#: frontend/src/components/LessonHelp.vue:15 #: frontend/src/components/LessonHelp.vue:30
msgid "Click on the add icon in the editor and select Quiz from the menu. It opens up a dialog, where you can either select a quiz from the list or create a new quiz. When you select the Create New option it redirects you to the quiz creation page." msgid "Click on the add icon in the editor and select Quiz from the menu. It opens up a dialog, where you can either select a quiz from the list or create a new quiz. When you select the Create New option it redirects you to the quiz creation page."
msgstr "" msgstr ""
@@ -917,6 +939,7 @@ msgstr "Szín"
#. Label of the comments (Small Text) field in DocType 'LMS Assignment #. Label of the comments (Small Text) field in DocType 'LMS Assignment
#. Submission' #. Submission'
#. Label of the comments (Small Text) field in DocType 'LMS Mentor Request' #. Label of the comments (Small Text) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Assignment.vue:161
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
#: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
@@ -924,6 +947,10 @@ msgstr "Szín"
msgid "Comments" msgid "Comments"
msgstr "" msgstr ""
#: frontend/src/components/Assignment.vue:139
msgid "Comments by Evaluator"
msgstr ""
#. Label of the company (Data) field in DocType 'LMS Job Application' #. Label of the company (Data) field in DocType 'LMS Job Application'
#. Label of the company (Data) field in DocType 'Work Experience' #. Label of the company (Data) field in DocType 'Work Experience'
#: lms/job/doctype/lms_job_application/lms_job_application.json #: lms/job/doctype/lms_job_application/lms_job_application.json
@@ -986,7 +1013,7 @@ msgstr ""
msgid "Completed" msgid "Completed"
msgstr "" msgstr ""
#: frontend/src/components/BatchStudents.vue:325 #: frontend/src/components/BatchStudents.vue:353
msgid "Completed by Students" msgid "Completed by Students"
msgstr "" msgstr ""
@@ -1036,7 +1063,7 @@ msgid "Continue Learning"
msgstr "" msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:117 #: frontend/src/pages/Jobs.vue:120
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Contract" msgid "Contract"
msgstr "" msgstr ""
@@ -1045,7 +1072,7 @@ msgstr ""
msgid "Cookie Policy" msgid "Cookie Policy"
msgstr "" msgstr ""
#: frontend/src/components/LessonHelp.vue:53 #: frontend/src/components/LessonHelp.vue:68
msgid "Copy the URL of the video from YouTube and paste it in the editor." msgid "Copy the URL of the video from YouTube and paste it in the editor."
msgstr "" msgstr ""
@@ -1057,7 +1084,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Exercise Latest #. Option for the 'Status' (Select) field in DocType 'Exercise Latest
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'Exercise Submission' #. Option for the 'Status' (Select) field in DocType 'Exercise Submission'
#: frontend/src/components/Quiz.vue:161 #: frontend/src/components/Quiz.vue:163
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
#: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json
msgid "Correct" msgid "Correct"
@@ -1197,7 +1224,7 @@ msgstr ""
msgid "Course Name" msgid "Course Name"
msgstr "" msgstr ""
#: frontend/src/pages/CourseDetail.vue:74 #: frontend/src/pages/CourseDetail.vue:76
msgid "Course Outline" msgid "Course Outline"
msgstr "" msgstr ""
@@ -1322,6 +1349,10 @@ msgstr ""
msgid "Create a new question" msgid "Create a new question"
msgstr "" msgstr ""
#: frontend/src/pages/Assignments.vue:163
msgid "Created"
msgstr "Alkotó"
#. Label of the currency (Link) field in DocType 'Web Form' #. Label of the currency (Link) field in DocType 'Web Form'
#. Label of the currency (Link) field in DocType 'LMS Batch' #. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course' #. Label of the currency (Link) field in DocType 'LMS Course'
@@ -1487,8 +1518,8 @@ msgid "Desk"
msgstr "" msgstr ""
#: frontend/src/components/Modals/DiscussionModal.vue:22 #: frontend/src/components/Modals/DiscussionModal.vue:22
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:28 #: frontend/src/pages/AssignmentForm.vue:27 frontend/src/pages/BatchForm.vue:14
#: frontend/src/pages/QuizForm.vue:42 #: frontend/src/pages/CourseForm.vue:28 frontend/src/pages/QuizForm.vue:42
msgid "Details" msgid "Details"
msgstr "Részletek" msgstr "Részletek"
@@ -1619,6 +1650,10 @@ msgstr ""
msgid "Email Templates" msgid "Email Templates"
msgstr "" msgstr ""
#: frontend/src/components/BatchStudents.vue:409
msgid "Email copied to clipboard"
msgstr ""
#. Label of the show_emails (Check) field in DocType 'LMS Settings' #. Label of the show_emails (Check) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Emails" msgid "Emails"
@@ -1699,8 +1734,8 @@ msgid "Enroll Now"
msgstr "" msgstr ""
#: frontend/src/components/CourseCard.vue:43 #: frontend/src/components/CourseCard.vue:43
#: frontend/src/components/CourseCardOverlay.vue:103 #: frontend/src/components/CourseCardOverlay.vue:104
#: frontend/src/pages/CourseDetail.vue:31 #: frontend/src/pages/CourseDetail.vue:33
msgid "Enrolled Students" msgid "Enrolled Students"
msgstr "" msgstr ""
@@ -1717,7 +1752,7 @@ msgstr ""
msgid "Enrollment Count" msgid "Enrollment Count"
msgstr "" msgstr ""
#: lms/lms/utils.py:1720 #: lms/lms/utils.py:1726
msgid "Enrollment Failed" msgid "Enrollment Failed"
msgstr "" msgstr ""
@@ -1733,7 +1768,7 @@ msgstr ""
msgid "Enter Client Id and Client Secret in Google Settings to send calendar invites for evaluations." msgid "Enter Client Id and Client Secret in Google Settings to send calendar invites for evaluations."
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:96 #: frontend/src/components/Assignment.vue:110
msgid "Enter a URL" msgid "Enter a URL"
msgstr "" msgstr ""
@@ -1745,6 +1780,7 @@ msgstr ""
msgid "Enter the correct answer" msgid "Enter the correct answer"
msgstr "" msgstr ""
#: frontend/src/components/Assignment.vue:268
#: frontend/src/components/Modals/AnnouncementModal.vue:105 #: frontend/src/components/Modals/AnnouncementModal.vue:105
#: frontend/src/components/Modals/BulkCertificates.vue:115 #: frontend/src/components/Modals/BulkCertificates.vue:115
#: frontend/src/components/Modals/ChapterModal.vue:159 #: frontend/src/components/Modals/ChapterModal.vue:159
@@ -1755,8 +1791,9 @@ msgstr ""
#: frontend/src/components/Modals/Question.vue:326 #: frontend/src/components/Modals/Question.vue:326
#: frontend/src/components/Modals/StudentModal.vue:69 #: frontend/src/components/Modals/StudentModal.vue:69
#: frontend/src/components/SettingDetails.vue:62 #: frontend/src/components/SettingDetails.vue:62
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350 #: frontend/src/pages/AssignmentForm.vue:139
#: frontend/src/pages/QuizForm.vue:365 #: frontend/src/pages/AssignmentForm.vue:159 frontend/src/pages/Billing.vue:264
#: frontend/src/pages/QuizForm.vue:346 frontend/src/pages/QuizForm.vue:361
#: frontend/src/pages/QuizSubmission.vue:141 #: frontend/src/pages/QuizSubmission.vue:141
msgid "Error" msgid "Error"
msgstr "" msgstr ""
@@ -1919,7 +1956,7 @@ msgstr "Nem sikerül"
msgid "Featured" msgid "Featured"
msgstr "Kiemelt" msgstr "Kiemelt"
#: frontend/src/pages/AssignmentSubmission.vue:21 #: frontend/src/components/Assignment.vue:61
msgid "Feel free to make edits to your submission if needed." msgid "Feel free to make edits to your submission if needed."
msgstr "" msgstr ""
@@ -1938,6 +1975,10 @@ msgstr ""
msgid "File Type" msgid "File Type"
msgstr "Fájl típusa" msgstr "Fájl típusa"
#: frontend/src/pages/Jobs.vue:47
msgid "Find the perfect job for you"
msgstr ""
#: frontend/src/components/Members.vue:38 #: frontend/src/components/Members.vue:38
#: frontend/src/components/Modals/EditProfile.vue:59 #: frontend/src/components/Modals/EditProfile.vue:59
msgid "First Name" msgid "First Name"
@@ -1953,7 +1994,7 @@ msgstr ""
msgid "Flexible Time" msgid "Flexible Time"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:463 #: frontend/src/pages/QuizForm.vue:459
msgid "Form to create and edit quizzes" msgid "Form to create and edit quizzes"
msgstr "" msgstr ""
@@ -1967,7 +2008,7 @@ msgid "Free"
msgstr "" msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:118 #: frontend/src/pages/Jobs.vue:121
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Freelance" msgid "Freelance"
msgstr "Szabadúszó" msgstr "Szabadúszó"
@@ -2009,7 +2050,7 @@ msgid "Full Name"
msgstr "Teljes név" msgstr "Teljes név"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:115 #: frontend/src/pages/Jobs.vue:118
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Full Time" msgid "Full Time"
msgstr "Teljes munkaidőben" msgstr "Teljes munkaidőben"
@@ -2069,6 +2110,7 @@ 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:154
#: lms/lms/doctype/education_detail/education_detail.json #: lms/lms/doctype/education_detail/education_detail.json
msgid "Grade" msgid "Grade"
msgstr "" msgstr ""
@@ -2083,6 +2125,10 @@ msgstr ""
msgid "Grade Type" msgid "Grade Type"
msgstr "" msgstr ""
#: frontend/src/components/Assignment.vue:149
msgid "Grading"
msgstr ""
#. Label of the grant_only_once (Check) field in DocType 'LMS Badge' #. Label of the grant_only_once (Check) field in DocType 'LMS Badge'
#: lms/lms/doctype/lms_badge/lms_badge.json #: lms/lms/doctype/lms_badge/lms_badge.json
msgid "Grant only once" msgid "Grant only once"
@@ -2146,7 +2192,7 @@ msgstr ""
msgid "Host" msgid "Host"
msgstr "" msgstr ""
#: frontend/src/components/LessonHelp.vue:9 #: frontend/src/components/LessonHelp.vue:24
msgid "How to add a Quiz?" msgid "How to add a Quiz?"
msgstr "" msgstr ""
@@ -2168,7 +2214,7 @@ msgstr ""
msgid "I am unavailable" msgid "I am unavailable"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:384 #: frontend/src/pages/QuizForm.vue:380
msgid "ID" msgid "ID"
msgstr "" msgstr ""
@@ -2178,7 +2224,7 @@ msgstr ""
msgid "Icon" msgid "Icon"
msgstr "Ikon" msgstr "Ikon"
#: frontend/src/components/LessonHelp.vue:68 #: frontend/src/components/LessonHelp.vue:11
msgid "If Include in Preview is enabled for a lesson then the lesson will also be accessible to non logged in users." msgid "If Include in Preview is enabled for a lesson then the lesson will also be accessible to non logged in users."
msgstr "" msgstr ""
@@ -2261,7 +2307,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Exercise Latest #. Option for the 'Status' (Select) field in DocType 'Exercise Latest
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'Exercise Submission' #. Option for the 'Status' (Select) field in DocType 'Exercise Submission'
#: frontend/src/components/Quiz.vue:166 #: frontend/src/components/Quiz.vue:168
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
#: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json
msgid "Incorrect" msgid "Incorrect"
@@ -2469,7 +2515,7 @@ msgstr "Beosztás"
msgid "Jobs" msgid "Jobs"
msgstr "" msgstr ""
#: frontend/src/components/LiveClass.vue:55 #: frontend/src/components/LiveClass.vue:58
#: lms/templates/upcoming_evals.html:15 #: lms/templates/upcoming_evals.html:15
msgid "Join" msgid "Join"
msgstr "" msgstr ""
@@ -2759,7 +2805,7 @@ msgstr ""
#. Group in Course Chapter's connections #. Group in Course Chapter's connections
#. Label of the lessons (Data) field in DocType 'LMS Course' #. Label of the lessons (Data) field in DocType 'LMS Course'
#: frontend/src/components/CourseCard.vue:34 #: frontend/src/components/CourseCard.vue:34
#: frontend/src/components/CourseCardOverlay.vue:96 #: frontend/src/components/CourseCardOverlay.vue:97
#: lms/lms/doctype/course_chapter/course_chapter.json #: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "Lessons" msgid "Lessons"
@@ -2825,6 +2871,7 @@ msgid "LiveCode URL"
msgstr "" msgstr ""
#: frontend/src/components/Members.vue:106 #: frontend/src/components/Members.vue:106
#: frontend/src/pages/Assignments.vue:71
#: frontend/src/pages/QuizSubmissionList.vue:39 #: frontend/src/pages/QuizSubmissionList.vue:39
#: frontend/src/pages/Quizzes.vue:51 #: frontend/src/pages/Quizzes.vue:51
msgid "Load More" msgid "Load More"
@@ -2854,6 +2901,7 @@ msgstr ""
msgid "Location Preference" msgid "Location Preference"
msgstr "" msgstr ""
#: frontend/src/components/AssignmentBlock.vue:13
#: frontend/src/components/NoPermission.vue:28 #: frontend/src/components/NoPermission.vue:28
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:175 #: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:175
#: frontend/src/pages/Lesson.vue:24 #: frontend/src/pages/Lesson.vue:24
@@ -2913,7 +2961,7 @@ msgstr ""
#. Label of the marks (Int) field in DocType 'LMS Quiz Result' #. Label of the marks (Int) field in DocType 'LMS Quiz Result'
#: frontend/src/components/Modals/Question.vue:50 #: frontend/src/components/Modals/Question.vue:50
#: frontend/src/components/Modals/Question.vue:99 #: frontend/src/components/Modals/Question.vue:99
#: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:394 #: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:390
#: frontend/src/pages/QuizSubmission.vue:59 #: frontend/src/pages/QuizSubmission.vue:59
#: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json #: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json
#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json
@@ -2970,6 +3018,7 @@ msgstr "Közepes:"
#. Label of the member (Link) field in DocType 'LMS Payment' #. Label of the member (Link) field in DocType 'LMS Payment'
#. Label of the member (Link) field in DocType 'LMS Program Member' #. Label of the member (Link) field in DocType 'LMS Program Member'
#. Label of the member (Link) field in DocType 'LMS Quiz Submission' #. Label of the member (Link) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/AssignmentSubmissionList.vue:14
#: frontend/src/pages/QuizSubmission.vue:31 #: frontend/src/pages/QuizSubmission.vue:31
#: frontend/src/pages/QuizSubmissionList.vue:86 #: frontend/src/pages/QuizSubmissionList.vue:86
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
@@ -3140,11 +3189,11 @@ msgstr ""
msgid "Modified By" msgid "Modified By"
msgstr "Módosította" msgstr "Módosította"
#: lms/lms/api.py:199 #: lms/lms/api.py:201
msgid "Module Name is incorrect or does not exist." msgid "Module Name is incorrect or does not exist."
msgstr "" msgstr ""
#: lms/lms/api.py:195 #: lms/lms/api.py:197
msgid "Module is incorrect." msgid "Module is incorrect."
msgstr "" msgstr ""
@@ -3173,12 +3222,17 @@ msgid "My calendar"
msgstr "" msgstr ""
#. Option for the 'Event' (Select) field in DocType 'LMS Badge' #. Option for the 'Event' (Select) field in DocType 'LMS Badge'
#: frontend/src/pages/Batches.vue:30 frontend/src/pages/Courses.vue:45 #: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:30
#: frontend/src/pages/Programs.vue:14 lms/lms/doctype/lms_badge/lms_badge.json #: frontend/src/pages/Courses.vue:45 frontend/src/pages/Programs.vue:14
#: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New" msgid "New"
msgstr "" msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:41 #: frontend/src/pages/AssignmentForm.vue:178
msgid "New Assignment"
msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:43
msgid "New Assignment Submission" msgid "New Assignment Submission"
msgstr "" msgstr ""
@@ -3214,7 +3268,7 @@ msgstr ""
msgid "New Question" msgid "New Question"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:454 frontend/src/pages/QuizForm.vue:462 #: frontend/src/pages/QuizForm.vue:450 frontend/src/pages/QuizForm.vue:458
#: frontend/src/pages/Quizzes.vue:18 #: frontend/src/pages/Quizzes.vue:18
msgid "New Quiz" msgid "New Quiz"
msgstr "" msgstr ""
@@ -3236,7 +3290,7 @@ msgstr ""
msgid "New {0}" msgid "New {0}"
msgstr "Új {0}" msgstr "Új {0}"
#: frontend/src/components/Quiz.vue:209 frontend/src/pages/Lesson.vue:84 #: frontend/src/components/Quiz.vue:211 frontend/src/pages/Lesson.vue:84
msgid "Next" msgid "Next"
msgstr "" msgstr ""
@@ -3244,7 +3298,7 @@ msgstr ""
msgid "Next Question" msgid "Next Question"
msgstr "" msgstr ""
#: frontend/src/components/Assessments.vue:66 lms/templates/assessments.html:58 #: frontend/src/components/Assessments.vue:75 lms/templates/assessments.html:58
msgid "No Assessments" msgid "No Assessments"
msgstr "" msgstr ""
@@ -3265,6 +3319,10 @@ msgstr ""
msgid "No announcements" msgid "No announcements"
msgstr "" msgstr ""
#: frontend/src/pages/Assignments.vue:56
msgid "No assignments found"
msgstr ""
#: frontend/src/pages/Batches.vue:125 #: frontend/src/pages/Batches.vue:125
msgid "No batches found" msgid "No batches found"
msgstr "" msgstr ""
@@ -3293,11 +3351,11 @@ msgstr ""
msgid "No introduction" msgid "No introduction"
msgstr "" msgstr ""
#: frontend/src/pages/Jobs.vue:60 #: frontend/src/pages/Jobs.vue:63
msgid "No jobs posted" msgid "No jobs posted"
msgstr "" msgstr ""
#: frontend/src/components/LiveClass.vue:61 #: frontend/src/components/LiveClass.vue:71
msgid "No live classes scheduled" msgid "No live classes scheduled"
msgstr "" msgstr ""
@@ -3313,6 +3371,10 @@ msgstr ""
msgid "No slots available for this date." msgid "No slots available for this date."
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmissionList.vue:67
msgid "No submissions"
msgstr ""
#: frontend/src/components/UpcomingEvaluations.vue:39 #: frontend/src/components/UpcomingEvaluations.vue:39
msgid "No upcoming evaluations." msgid "No upcoming evaluations."
msgstr "" msgstr ""
@@ -3361,6 +3423,7 @@ msgstr ""
msgid "Not Permitted" msgid "Not Permitted"
msgstr "" msgstr ""
#: frontend/src/components/Assignment.vue:33
#: frontend/src/components/BrandSettings.vue:10 #: frontend/src/components/BrandSettings.vue:10
#: frontend/src/components/PaymentSettings.vue:9 #: frontend/src/components/PaymentSettings.vue:9
#: frontend/src/components/SettingDetails.vue:10 #: frontend/src/components/SettingDetails.vue:10
@@ -3404,7 +3467,7 @@ msgstr ""
msgid "Once again, congratulations on this significant accomplishment." msgid "Once again, congratulations on this significant accomplishment."
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:17 #: frontend/src/components/Assignment.vue:57
msgid "Once the moderator grades your submission, you'll find the details here." msgid "Once the moderator grades your submission, you'll find the details here."
msgstr "" msgstr ""
@@ -3421,7 +3484,7 @@ msgstr ""
msgid "Only files of type {0} will be accepted." msgid "Only files of type {0} will be accepted."
msgstr "" msgstr ""
#: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:527 #: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:529
msgid "Only image file is allowed." msgid "Only image file is allowed."
msgstr "" msgstr ""
@@ -3550,7 +3613,7 @@ msgid "Pan Number"
msgstr "" msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:116 #: frontend/src/pages/Jobs.vue:119
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Part Time" msgid "Part Time"
msgstr "Részmunkaidő" msgstr "Részmunkaidő"
@@ -3681,7 +3744,7 @@ msgstr ""
msgid "Phone Number" msgid "Phone Number"
msgstr "" msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:141 #: frontend/src/components/CourseCardOverlay.vue:145
msgid "Please Login" msgid "Please Login"
msgstr "" msgstr ""
@@ -3701,7 +3764,7 @@ msgstr "Kérjük, ellenőrizze e-mail a vizsgálathoz"
msgid "Please click on the following button to set your new password" msgid "Please click on the following button to set your new password"
msgstr "" msgstr ""
#: lms/lms/utils.py:1842 lms/lms/utils.py:1846 #: lms/lms/utils.py:1848 lms/lms/utils.py:1852
msgid "Please complete the previous courses in the program to enroll in this course." msgid "Please complete the previous courses in the program to enroll in this course."
msgstr "" msgstr ""
@@ -3721,8 +3784,8 @@ msgstr ""
msgid "Please enter a title." msgid "Please enter a title."
msgstr "" msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:38 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:40
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:98 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:122
msgid "Please enter a valid URL." msgid "Please enter a valid URL."
msgstr "" msgstr ""
@@ -3730,7 +3793,7 @@ msgstr ""
msgid "Please enter a valid time in the format HH:mm." msgid "Please enter a valid time in the format HH:mm."
msgstr "" msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:92 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:116
msgid "Please enter the URL for assignment submission." msgid "Please enter the URL for assignment submission."
msgstr "" msgstr ""
@@ -3750,6 +3813,10 @@ msgstr ""
msgid "Please let us know where you heard about us from." msgid "Please let us know where you heard about us from."
msgstr "" msgstr ""
#: frontend/src/components/AssignmentBlock.vue:9
msgid "Please login to access the assignment."
msgstr ""
#: frontend/src/components/QuizBlock.vue:5 #: frontend/src/components/QuizBlock.vue:5
msgid "Please login to access the quiz." msgid "Please login to access the quiz."
msgstr "" msgstr ""
@@ -3758,7 +3825,7 @@ msgstr ""
msgid "Please login to access this page." msgid "Please login to access this page."
msgstr "" msgstr ""
#: lms/lms/api.py:191 #: lms/lms/api.py:193
msgid "Please login to continue with payment." msgid "Please login to continue with payment."
msgstr "" msgstr ""
@@ -3795,7 +3862,7 @@ msgstr ""
msgid "Please upload a SCORM package" msgid "Please upload a SCORM package"
msgstr "" msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:95 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:119
msgid "Please upload the assignment file." msgid "Please upload the assignment file."
msgstr "" msgstr ""
@@ -4003,9 +4070,9 @@ msgstr ""
#. Label of the question (Text Editor) field in DocType 'LMS Question' #. Label of the question (Text Editor) field in DocType 'LMS Question'
#. Label of the question (Link) field in DocType 'LMS Quiz Question' #. Label of the question (Link) field in DocType 'LMS Quiz Question'
#. Label of the question (Text) field in DocType 'LMS Quiz Result' #. Label of the question (Text) field in DocType 'LMS Quiz Result'
#: frontend/src/components/Assignment.vue:17
#: frontend/src/components/Modals/Question.vue:38 #: frontend/src/components/Modals/Question.vue:38
#: frontend/src/pages/AssignmentSubmission.vue:26 #: frontend/src/pages/AssignmentForm.vue:45 frontend/src/pages/QuizForm.vue:385
#: frontend/src/pages/QuizForm.vue:389
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment/lms_assignment.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
@@ -4042,7 +4109,7 @@ msgstr ""
msgid "Question {0}" msgid "Question {0}"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:186 #: frontend/src/components/Quiz.vue:188
msgid "Question {0} of {1}" msgid "Question {0} of {1}"
msgstr "" msgstr ""
@@ -4051,7 +4118,7 @@ msgstr ""
msgid "Questions" msgid "Questions"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:431 #: frontend/src/pages/QuizForm.vue:427
msgid "Questions deleted successfully" msgid "Questions deleted successfully"
msgstr "" msgstr ""
@@ -4079,7 +4146,7 @@ msgstr ""
msgid "Quiz Submissions" msgid "Quiz Submissions"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:223 #: frontend/src/components/Quiz.vue:225
msgid "Quiz Summary" msgid "Quiz Summary"
msgstr "" msgstr ""
@@ -4088,7 +4155,7 @@ msgstr ""
msgid "Quiz Title" msgid "Quiz Title"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:343 #: frontend/src/pages/QuizForm.vue:339
msgid "Quiz created successfully" msgid "Quiz created successfully"
msgstr "" msgstr ""
@@ -4096,7 +4163,7 @@ msgstr ""
msgid "Quiz is not available to Guest users. Please login to continue." msgid "Quiz is not available to Guest users. Please login to continue."
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:362 #: frontend/src/pages/QuizForm.vue:358
msgid "Quiz updated successfully" msgid "Quiz updated successfully"
msgstr "" msgstr ""
@@ -4105,7 +4172,7 @@ msgstr ""
msgid "Quiz will appear at the bottom of the lesson." msgid "Quiz will appear at the bottom of the lesson."
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:442 frontend/src/pages/Quizzes.vue:138 #: frontend/src/pages/QuizForm.vue:438 frontend/src/pages/Quizzes.vue:138
#: frontend/src/pages/Quizzes.vue:148 #: frontend/src/pages/Quizzes.vue:148
msgid "Quizzes" msgid "Quizzes"
msgstr "" msgstr ""
@@ -4113,7 +4180,7 @@ msgstr ""
#. Label of the rating (Rating) field in DocType 'LMS Certificate Evaluation' #. Label of the rating (Rating) field in DocType 'LMS Certificate Evaluation'
#. 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:108 #: frontend/src/components/CourseCardOverlay.vue:110
#: frontend/src/components/Modals/Event.vue:86 #: frontend/src/components/Modals/Event.vue:86
#: frontend/src/components/Modals/ReviewModal.vue:20 #: frontend/src/components/Modals/ReviewModal.vue:20
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -4127,10 +4194,6 @@ msgstr "Értékelés"
msgid "Rating cannot be 0" msgid "Rating cannot be 0"
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:30
msgid "Read the question carefully before attempting the assignment."
msgstr ""
#. Option for the 'Stage' (Select) field in DocType 'LMS Batch Old' #. Option for the 'Stage' (Select) field in DocType 'LMS Batch Old'
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
msgid "Ready" msgid "Ready"
@@ -4309,15 +4372,15 @@ msgstr ""
msgid "Saturday" msgid "Saturday"
msgstr "Szombat" msgstr "Szombat"
#: frontend/src/components/AssessmentPlugin.vue:34
#: frontend/src/components/Assignment.vue:43
#: frontend/src/components/Controls/CodeEditor.vue:25 #: frontend/src/components/Controls/CodeEditor.vue:25
#: frontend/src/components/Modals/Event.vue:101 #: frontend/src/components/Modals/Event.vue:101
#: frontend/src/components/Modals/Event.vue:129 #: frontend/src/components/Modals/Event.vue:129
#: frontend/src/components/QuizPlugin.vue:23 #: frontend/src/pages/AssignmentForm.vue:21 frontend/src/pages/BatchForm.vue:8
#: frontend/src/pages/AssignmentSubmission.vue:7 #: frontend/src/pages/CourseForm.vue:20 frontend/src/pages/JobCreation.vue:8
#: frontend/src/pages/BatchForm.vue:8 frontend/src/pages/CourseForm.vue:20 #: frontend/src/pages/LessonForm.vue:14 frontend/src/pages/ProgramForm.vue:7
#: frontend/src/pages/JobCreation.vue:8 frontend/src/pages/LessonForm.vue:14 #: frontend/src/pages/QuizForm.vue:34 frontend/src/pages/QuizSubmission.vue:14
#: frontend/src/pages/ProgramForm.vue:7 frontend/src/pages/QuizForm.vue:34
#: frontend/src/pages/QuizSubmission.vue:14
#: lms/public/js/common_functions.js:405 #: lms/public/js/common_functions.js:405
msgid "Save" msgid "Save"
msgstr "" msgstr ""
@@ -4359,6 +4422,10 @@ msgstr ""
msgid "Search" msgid "Search"
msgstr "" msgstr ""
#: frontend/src/pages/Assignments.vue:25
msgid "Search by title"
msgstr ""
#: frontend/src/components/Controls/IconPicker.vue:36 #: frontend/src/components/Controls/IconPicker.vue:36
msgid "Search for an icon" msgid "Search for an icon"
msgstr "" msgstr ""
@@ -4384,7 +4451,7 @@ msgstr ""
msgid "Select a question" msgid "Select a question"
msgstr "" msgstr ""
#: frontend/src/components/QuizPlugin.vue:17 #: frontend/src/components/AssessmentPlugin.vue:21
msgid "Select a quiz" msgid "Select a quiz"
msgstr "" msgstr ""
@@ -4392,6 +4459,10 @@ msgstr ""
msgid "Select a slot" msgid "Select a slot"
msgstr "" msgstr ""
#: frontend/src/components/AssessmentPlugin.vue:28
msgid "Select an assignment"
msgstr ""
#. Label of the send_calendar_invite_for_evaluations (Check) field in DocType #. Label of the send_calendar_invite_for_evaluations (Check) field in DocType
#. 'LMS Settings' #. 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -4583,7 +4654,7 @@ msgstr ""
msgid "Stage" msgid "Stage"
msgstr "" msgstr ""
#: frontend/src/components/LiveClass.vue:46 frontend/src/components/Quiz.vue:65 #: frontend/src/components/LiveClass.vue:50 frontend/src/components/Quiz.vue:65
#: lms/templates/quiz/quiz.html:39 #: lms/templates/quiz/quiz.html:39
msgid "Start" msgid "Start"
msgstr "" msgstr ""
@@ -4664,6 +4735,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Course Progress' #. Label of the status (Select) field in DocType 'LMS Course Progress'
#. Label of the status (Select) field in DocType 'LMS Mentor Request' #. Label of the status (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:91 #: frontend/src/components/Modals/Event.vue:91
#: frontend/src/pages/AssignmentSubmissionList.vue:19
#: frontend/src/pages/JobCreation.vue:41 #: frontend/src/pages/JobCreation.vue:41
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/cohort/cohort.json
@@ -4724,7 +4796,7 @@ msgstr ""
msgid "Students" msgid "Students"
msgstr "" msgstr ""
#: frontend/src/components/BatchStudents.vue:282 #: frontend/src/components/BatchStudents.vue:310
msgid "Students deleted successfully" msgid "Students deleted successfully"
msgstr "" msgstr ""
@@ -4746,19 +4818,24 @@ msgstr ""
msgid "Subject" msgid "Subject"
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:40 #: frontend/src/components/Assignment.vue:29
msgid "Submission" msgid "Submission"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:30 #: frontend/src/pages/AssignmentForm.vue:17 frontend/src/pages/QuizForm.vue:30
msgid "Submission List" msgid "Submission List"
msgstr "" msgstr ""
#: frontend/src/components/Assignment.vue:10
#: frontend/src/components/Assignment.vue:13
msgid "Submission by"
msgstr ""
#: frontend/src/components/Modals/AssessmentModal.vue:9 #: frontend/src/components/Modals/AssessmentModal.vue:9
#: frontend/src/components/Modals/BatchCourseModal.vue:9 #: frontend/src/components/Modals/BatchCourseModal.vue:9
#: frontend/src/components/Modals/EvaluationModal.vue:9 #: frontend/src/components/Modals/EvaluationModal.vue:9
#: frontend/src/components/Modals/Question.vue:338 #: frontend/src/components/Modals/Question.vue:338
#: frontend/src/components/Quiz.vue:214 lms/templates/assignment.html:9 #: frontend/src/components/Quiz.vue:216 lms/templates/assignment.html:9
#: lms/templates/livecode/extension_footer.html:25 #: lms/templates/livecode/extension_footer.html:25
#: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163 #: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163
#: lms/www/new-sign-up.html:32 #: lms/www/new-sign-up.html:32
@@ -4774,10 +4851,12 @@ msgstr ""
msgid "Submitted {0}" msgid "Submitted {0}"
msgstr "" msgstr ""
#: frontend/src/components/Assignment.vue:316
#: frontend/src/components/BatchCourses.vue:150 #: frontend/src/components/BatchCourses.vue:150
#: frontend/src/components/BatchOverlay.vue:135 #: frontend/src/components/BatchOverlay.vue:135
#: frontend/src/components/BatchStudents.vue:282 #: frontend/src/components/BatchStudents.vue:310
#: frontend/src/components/CourseCardOverlay.vue:161 #: frontend/src/components/BatchStudents.vue:409
#: frontend/src/components/CourseCardOverlay.vue:165
#: frontend/src/components/Modals/AnnouncementModal.vue:99 #: frontend/src/components/Modals/AnnouncementModal.vue:99
#: frontend/src/components/Modals/AssessmentModal.vue:73 #: frontend/src/components/Modals/AssessmentModal.vue:73
#: frontend/src/components/Modals/BulkCertificates.vue:121 #: frontend/src/components/Modals/BulkCertificates.vue:121
@@ -4787,11 +4866,12 @@ msgstr ""
#: frontend/src/components/Modals/Event.vue:310 #: frontend/src/components/Modals/Event.vue:310
#: frontend/src/components/Modals/Question.vue:264 #: frontend/src/components/Modals/Question.vue:264
#: frontend/src/components/Modals/Question.vue:315 #: frontend/src/components/Modals/Question.vue:315
#: frontend/src/pages/AssignmentForm.vue:155
#: frontend/src/pages/CourseForm.vue:461 frontend/src/pages/ProgramForm.vue:229 #: frontend/src/pages/CourseForm.vue:461 frontend/src/pages/ProgramForm.vue:229
#: frontend/src/pages/ProgramForm.vue:251 #: frontend/src/pages/ProgramForm.vue:251
#: frontend/src/pages/ProgramForm.vue:272 #: frontend/src/pages/ProgramForm.vue:272
#: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:343 #: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:339
#: frontend/src/pages/QuizForm.vue:362 frontend/src/pages/QuizForm.vue:431 #: frontend/src/pages/QuizForm.vue:358 frontend/src/pages/QuizForm.vue:427
msgid "Success" msgid "Success"
msgstr "" msgstr ""
@@ -4809,7 +4889,7 @@ msgstr "Összefoglalás"
msgid "Sunday" msgid "Sunday"
msgstr "Vasárnap" msgstr "Vasárnap"
#: lms/lms/api.py:952 #: lms/lms/api.py:954
msgid "Suspicious pattern found in {0}: {1}" msgid "Suspicious pattern found in {0}: {1}"
msgstr "" msgstr ""
@@ -4924,6 +5004,10 @@ msgstr ""
msgid "Thanks and Regards" msgid "Thanks and Regards"
msgstr "" msgstr ""
#: lms/lms/utils.py:1755
msgid "The batch is full. Please contact the Administrator."
msgstr ""
#: lms/templates/emails/lms_course_interest.html:5 #: lms/templates/emails/lms_course_interest.html:5
msgid "The course {0} is now available on {1}." msgid "The course {0} is now available on {1}."
msgstr "" msgstr ""
@@ -4964,14 +5048,22 @@ msgstr ""
msgid "There are no seats available in this batch." msgid "There are no seats available in this batch."
msgstr "" msgstr ""
#: frontend/src/components/BatchStudents.vue:165 #: frontend/src/components/BatchStudents.vue:182
msgid "There are no students in this batch." msgid "There are no students in this batch."
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmissionList.vue:70
msgid "There are no submissions for this assignment."
msgstr ""
#: lms/templates/course_list.html:14 #: lms/templates/course_list.html:14
msgid "There are no {0} on this site." msgid "There are no {0} on this site."
msgstr "" msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:82
msgid "There has been an update on your submission for assignment {0}"
msgstr ""
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:42 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:42
msgid "There has been an update on your submission. You have got a score of {0} for the quiz {1}" msgid "There has been an update on your submission. You have got a score of {0} for the quiz {1}"
msgstr "" msgstr ""
@@ -4991,11 +5083,15 @@ msgstr ""
msgid "This certificate does no expire" msgid "This certificate does no expire"
msgstr "" msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:91 #: frontend/src/components/LiveClass.vue:64
msgid "This class has ended"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:92
msgid "This course has:" msgid "This course has:"
msgstr "" msgstr ""
#: lms/lms/utils.py:1600 #: lms/lms/utils.py:1606
msgid "This course is free." msgid "This course is free."
msgstr "" msgstr ""
@@ -5098,10 +5194,12 @@ msgstr ""
#. Label of the title (Data) field in DocType 'Work Experience' #. Label of the title (Data) field in DocType 'Work Experience'
#: frontend/src/components/Modals/DiscussionModal.vue:18 #: frontend/src/components/Modals/DiscussionModal.vue:18
#: frontend/src/components/Modals/LiveClassModal.vue:23 #: frontend/src/components/Modals/LiveClassModal.vue:23
#: frontend/src/pages/BatchForm.vue:20 frontend/src/pages/CourseForm.vue:32 #: frontend/src/pages/AssignmentForm.vue:32
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/ProgramForm.vue:11 #: frontend/src/pages/Assignments.vue:152 frontend/src/pages/BatchForm.vue:20
#: frontend/src/pages/Programs.vue:118 frontend/src/pages/QuizForm.vue:48 #: frontend/src/pages/CourseForm.vue:32 frontend/src/pages/JobCreation.vue:20
#: frontend/src/pages/Quizzes.vue:116 lms/lms/doctype/cohort/cohort.json #: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:118
#: frontend/src/pages/QuizForm.vue:48 frontend/src/pages/Quizzes.vue:116
#: lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/course_chapter/course_chapter.json #: lms/lms/doctype/course_chapter/course_chapter.json
@@ -5137,11 +5235,11 @@ msgstr ""
msgid "To Date" msgid "To Date"
msgstr "" msgstr ""
#: lms/lms/utils.py:1611 #: lms/lms/utils.py:1617
msgid "To join this batch, please contact the Administrator." msgid "To join this batch, please contact the Administrator."
msgstr "" msgstr ""
#: frontend/src/components/LessonHelp.vue:34 #: frontend/src/components/LessonHelp.vue:49
msgid "To upload Image, Video, Audio or PDF from your system, click on the add icon and select upload from the menu. Then choose the file you want to add to the lesson and it gets added to your lesson." msgid "To upload Image, Video, Audio or PDF from your system, click on the add icon and select upload from the menu. Then choose the file you want to add to the lesson and it gets added to your lesson."
msgstr "" msgstr ""
@@ -5169,7 +5267,7 @@ msgstr ""
msgid "Travel" msgid "Travel"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:252 lms/templates/quiz/quiz.html:131 #: frontend/src/components/Quiz.vue:254 lms/templates/quiz/quiz.html:131
msgid "Try Again" msgid "Try Again"
msgstr "" msgstr ""
@@ -5191,6 +5289,8 @@ msgstr ""
#. Label of the type (Select) field in DocType 'LMS Quiz Question' #. Label of the type (Select) field in DocType 'LMS Quiz Question'
#: frontend/src/components/Modals/AssessmentModal.vue:22 #: frontend/src/components/Modals/AssessmentModal.vue:22
#: frontend/src/components/Modals/Question.vue:54 #: frontend/src/components/Modals/Question.vue:54
#: frontend/src/pages/AssignmentForm.vue:39
#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:157
#: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:16 #: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:16
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment/lms_assignment.json
@@ -5201,7 +5301,7 @@ msgstr ""
msgid "Type" msgid "Type"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:583 #: frontend/src/components/Quiz.vue:589
msgid "Type your answer" msgid "Type your answer"
msgstr "" msgstr ""
@@ -5282,11 +5382,11 @@ msgstr ""
msgid "Upload" msgid "Upload"
msgstr "Feltöltés" msgstr "Feltöltés"
#: frontend/src/pages/AssignmentSubmission.vue:69 #: frontend/src/components/Assignment.vue:78
msgid "Upload File" msgid "Upload File"
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:68 #: frontend/src/components/Assignment.vue:77
msgid "Uploading {0}%" msgid "Uploading {0}%"
msgstr "" msgstr ""
@@ -5404,7 +5504,7 @@ msgstr "Szerda"
msgid "Welcome to {0}!" msgid "Welcome to {0}!"
msgstr "Üdvözöljük itt {0}!" msgstr "Üdvözöljük itt {0}!"
#: frontend/src/components/LessonHelp.vue:63 #: frontend/src/components/LessonHelp.vue:6
msgid "What does include in preview mean?" msgid "What does include in preview mean?"
msgstr "" msgstr ""
@@ -5453,7 +5553,7 @@ msgstr ""
msgid "Write a review" msgid "Write a review"
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:102 #: frontend/src/components/Assignment.vue:120
msgid "Write your answer here" msgid "Write your answer here"
msgstr "" msgstr ""
@@ -5461,11 +5561,11 @@ msgstr ""
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}."
msgstr "" msgstr ""
#: lms/lms/api.py:215 #: lms/lms/api.py:217
msgid "You are already enrolled for this batch." msgid "You are already enrolled for this batch."
msgstr "" msgstr ""
#: lms/lms/api.py:207 #: lms/lms/api.py:209
msgid "You are already enrolled for this course." msgid "You are already enrolled for this course."
msgstr "" msgstr ""
@@ -5530,7 +5630,7 @@ msgstr ""
msgid "You got" msgid "You got"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:234 #: frontend/src/components/Quiz.vue:236
#, python-format #, python-format
msgid "You got {0}% correct answers with a score of {1} out of {2}" msgid "You got {0}% correct answers with a score of {1} out of {2}"
msgstr "" msgstr ""
@@ -5551,7 +5651,7 @@ msgstr ""
msgid "You have been enrolled in this batch" msgid "You have been enrolled in this batch"
msgstr "" msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:162 #: frontend/src/components/CourseCardOverlay.vue:166
msgid "You have been enrolled in this course" msgid "You have been enrolled in this course"
msgstr "" msgstr ""
@@ -5559,6 +5659,10 @@ msgstr ""
msgid "You have got a score of {0} for the quiz {1}" msgid "You have got a score of {0} for the quiz {1}"
msgstr "" msgstr ""
#: frontend/src/pages/Assignments.vue:60
msgid "You have not created any assignments yet. To create a new assignment, click on the \"New\" button above."
msgstr ""
#: frontend/src/pages/Quizzes.vue:65 #: frontend/src/pages/Quizzes.vue:65
msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above." msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above."
msgstr "" msgstr ""
@@ -5571,7 +5675,7 @@ msgstr ""
msgid "You haven't enrolled for any courses" msgid "You haven't enrolled for any courses"
msgstr "" msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:142 #: frontend/src/components/CourseCardOverlay.vue:146
msgid "You need to login first to enroll for this course" msgid "You need to login first to enroll for this course"
msgstr "" msgstr ""
@@ -5584,7 +5688,7 @@ msgstr ""
msgid "You've applied to become a mentor for this course. Your request is currently under review." msgid "You've applied to become a mentor for this course. Your request is currently under review."
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:15 #: frontend/src/components/Assignment.vue:55
msgid "You've successfully submitted the assignment." msgid "You've successfully submitted the assignment."
msgstr "" msgstr ""
@@ -5628,7 +5732,7 @@ msgstr ""
msgid "Your score is" msgid "Your score is"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:227 #: frontend/src/components/Quiz.vue:229
msgid "Your submission has been successfully saved. The instructor will review and grade it shortly, and you'll be notified of your final result." msgid "Your submission has been successfully saved. The instructor will review and grade it shortly, and you'll be notified of your final result."
msgstr "" msgstr ""
@@ -5677,7 +5781,7 @@ msgstr ""
msgid "posted by" msgid "posted by"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:390 #: frontend/src/pages/QuizForm.vue:386
msgid "question_detail" msgid "question_detail"
msgstr "" msgstr ""
@@ -5693,7 +5797,7 @@ msgstr ""
msgid "you can" msgid "you can"
msgstr "" msgstr ""
#: lms/lms/api.py:749 lms/lms/api.py:757 #: lms/lms/api.py:751 lms/lms/api.py:759
msgid "{0} Settings not found" msgid "{0} Settings not found"
msgstr "" msgstr ""

View File

@@ -1,14 +1,14 @@
# Translations template for Frappe LMS. # Translations template for Frappe LMS.
# Copyright (C) 2024 Frappe # Copyright (C) 2025 Frappe
# This file is distributed under the same license as the Frappe LMS project. # This file is distributed under the same license as the Frappe LMS project.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2024. # FIRST AUTHOR <EMAIL@ADDRESS>, 2025.
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Frappe LMS VERSION\n" "Project-Id-Version: Frappe LMS VERSION\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-12-27 16:04+0000\n" "POT-Creation-Date: 2025-01-03 16:04+0000\n"
"PO-Revision-Date: 2024-12-27 16:04+0000\n" "PO-Revision-Date: 2025-01-03 16:04+0000\n"
"Last-Translator: jannat@frappe.io\n" "Last-Translator: jannat@frappe.io\n"
"Language-Team: jannat@frappe.io\n" "Language-Team: jannat@frappe.io\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -154,7 +154,7 @@ msgstr ""
msgid "Add a new question" msgid "Add a new question"
msgstr "" msgstr ""
#: frontend/src/components/QuizPlugin.vue:11 #: frontend/src/components/AssessmentPlugin.vue:11
msgid "Add a quiz to your lesson" msgid "Add a quiz to your lesson"
msgstr "" msgstr ""
@@ -162,6 +162,10 @@ msgstr ""
msgid "Add an assessment" msgid "Add an assessment"
msgstr "" msgstr ""
#: frontend/src/components/AssessmentPlugin.vue:14
msgid "Add an assignment to your lesson"
msgstr ""
#: frontend/src/components/Modals/Question.vue:18 #: frontend/src/components/Modals/Question.vue:18
msgid "Add an existing question" msgid "Add an existing question"
msgstr "" msgstr ""
@@ -174,7 +178,7 @@ msgstr ""
msgid "Add web page to sidebar" msgid "Add web page to sidebar"
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:44 #: frontend/src/components/Assignment.vue:65
msgid "Add your assignment as {0}" msgid "Add your assignment as {0}"
msgstr "" msgstr ""
@@ -391,6 +395,8 @@ msgstr ""
#. Label of the section_break_16 (Section Break) field in DocType 'Course #. Label of the section_break_16 (Section Break) field in DocType 'Course
#. Lesson' #. Lesson'
#. Label of the assignment (Link) field in DocType 'LMS Assignment Submission' #. Label of the assignment (Link) field in DocType 'LMS Assignment Submission'
#: frontend/src/pages/AssignmentSubmissionList.vue:12
#: frontend/src/utils/assignment.js:25
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/templates/assignment.html:3 #: lms/templates/assignment.html:3
@@ -415,15 +421,23 @@ msgstr ""
msgid "Assignment Title" msgid "Assignment Title"
msgstr "" msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:31 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:33
msgid "Assignment for Lesson {0} by {1} already exists." msgid "Assignment for Lesson {0} by {1} already exists."
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentForm.vue:155
msgid "Assignment saved successfully"
msgstr ""
#. Description of the 'Question' (Small Text) field in DocType 'Course Lesson' #. Description of the 'Question' (Small Text) field in DocType 'Course Lesson'
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Assignment will appear at the bottom of the lesson." msgid "Assignment will appear at the bottom of the lesson."
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentForm.vue:174
msgid "Assignments"
msgstr ""
#: lms/lms/doctype/lms_question/lms_question.py:43 #: lms/lms/doctype/lms_question/lms_question.py:43
msgid "At least one option must be correct for this question." msgid "At least one option must be correct for this question."
msgstr "" msgstr ""
@@ -744,6 +758,10 @@ msgstr ""
msgid "Change" msgid "Change"
msgstr "" msgstr ""
#: frontend/src/components/Assignment.vue:316
msgid "Changes saved successfully"
msgstr ""
#. Label of the chapter (Link) field in DocType 'Chapter Reference' #. Label of the chapter (Link) field in DocType 'Chapter Reference'
#. Label of the chapter (Link) field in DocType 'LMS Course Progress' #. Label of the chapter (Link) field in DocType 'LMS Course Progress'
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
@@ -772,7 +790,7 @@ msgstr ""
msgid "Chapters" msgid "Chapters"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:201 lms/templates/quiz/quiz.html:120 #: frontend/src/components/Quiz.vue:203 lms/templates/quiz/quiz.html:120
msgid "Check" msgid "Check"
msgstr "" msgstr ""
@@ -795,7 +813,7 @@ msgstr ""
msgid "Choices" msgid "Choices"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:581 lms/templates/quiz/quiz.html:53 #: frontend/src/components/Quiz.vue:587 lms/templates/quiz/quiz.html:53
msgid "Choose all answers that apply" msgid "Choose all answers that apply"
msgstr "" msgstr ""
@@ -803,7 +821,7 @@ msgstr ""
msgid "Choose an icon" msgid "Choose an icon"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:582 lms/templates/quiz/quiz.html:53 #: frontend/src/components/Quiz.vue:588 lms/templates/quiz/quiz.html:53
msgid "Choose one answer" msgid "Choose one answer"
msgstr "" msgstr ""
@@ -812,12 +830,16 @@ msgstr ""
msgid "City" msgid "City"
msgstr "" msgstr ""
#: frontend/src/components/Controls/Link.vue:49
msgid "Clear"
msgstr ""
#. Option for the 'Role Preference' (Select) field in DocType 'User' #. Option for the 'Role Preference' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
msgid "Clearly Defined Role" msgid "Clearly Defined Role"
msgstr "" msgstr ""
#: frontend/src/components/LessonHelp.vue:15 #: frontend/src/components/LessonHelp.vue:30
msgid "Click on the add icon in the editor and select Quiz from the menu. It opens up a dialog, where you can either select a quiz from the list or create a new quiz. When you select the Create New option it redirects you to the quiz creation page." msgid "Click on the add icon in the editor and select Quiz from the menu. It opens up a dialog, where you can either select a quiz from the list or create a new quiz. When you select the Create New option it redirects you to the quiz creation page."
msgstr "" msgstr ""
@@ -915,6 +937,7 @@ msgstr ""
#. Label of the comments (Small Text) field in DocType 'LMS Assignment #. Label of the comments (Small Text) field in DocType 'LMS Assignment
#. Submission' #. Submission'
#. Label of the comments (Small Text) field in DocType 'LMS Mentor Request' #. Label of the comments (Small Text) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Assignment.vue:161
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
#: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
@@ -922,6 +945,10 @@ msgstr ""
msgid "Comments" msgid "Comments"
msgstr "" msgstr ""
#: frontend/src/components/Assignment.vue:139
msgid "Comments by Evaluator"
msgstr ""
#. Label of the company (Data) field in DocType 'LMS Job Application' #. Label of the company (Data) field in DocType 'LMS Job Application'
#. Label of the company (Data) field in DocType 'Work Experience' #. Label of the company (Data) field in DocType 'Work Experience'
#: lms/job/doctype/lms_job_application/lms_job_application.json #: lms/job/doctype/lms_job_application/lms_job_application.json
@@ -984,7 +1011,7 @@ msgstr ""
msgid "Completed" msgid "Completed"
msgstr "" msgstr ""
#: frontend/src/components/BatchStudents.vue:325 #: frontend/src/components/BatchStudents.vue:353
msgid "Completed by Students" msgid "Completed by Students"
msgstr "" msgstr ""
@@ -1034,7 +1061,7 @@ msgid "Continue Learning"
msgstr "" msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:117 #: frontend/src/pages/Jobs.vue:120
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Contract" msgid "Contract"
msgstr "" msgstr ""
@@ -1043,7 +1070,7 @@ msgstr ""
msgid "Cookie Policy" msgid "Cookie Policy"
msgstr "" msgstr ""
#: frontend/src/components/LessonHelp.vue:53 #: frontend/src/components/LessonHelp.vue:68
msgid "Copy the URL of the video from YouTube and paste it in the editor." msgid "Copy the URL of the video from YouTube and paste it in the editor."
msgstr "" msgstr ""
@@ -1055,7 +1082,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Exercise Latest #. Option for the 'Status' (Select) field in DocType 'Exercise Latest
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'Exercise Submission' #. Option for the 'Status' (Select) field in DocType 'Exercise Submission'
#: frontend/src/components/Quiz.vue:161 #: frontend/src/components/Quiz.vue:163
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
#: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json
msgid "Correct" msgid "Correct"
@@ -1195,7 +1222,7 @@ msgstr ""
msgid "Course Name" msgid "Course Name"
msgstr "" msgstr ""
#: frontend/src/pages/CourseDetail.vue:74 #: frontend/src/pages/CourseDetail.vue:76
msgid "Course Outline" msgid "Course Outline"
msgstr "" msgstr ""
@@ -1320,6 +1347,10 @@ msgstr ""
msgid "Create a new question" msgid "Create a new question"
msgstr "" msgstr ""
#: frontend/src/pages/Assignments.vue:163
msgid "Created"
msgstr ""
#. Label of the currency (Link) field in DocType 'Web Form' #. Label of the currency (Link) field in DocType 'Web Form'
#. Label of the currency (Link) field in DocType 'LMS Batch' #. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course' #. Label of the currency (Link) field in DocType 'LMS Course'
@@ -1485,8 +1516,8 @@ msgid "Desk"
msgstr "" msgstr ""
#: frontend/src/components/Modals/DiscussionModal.vue:22 #: frontend/src/components/Modals/DiscussionModal.vue:22
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:28 #: frontend/src/pages/AssignmentForm.vue:27 frontend/src/pages/BatchForm.vue:14
#: frontend/src/pages/QuizForm.vue:42 #: frontend/src/pages/CourseForm.vue:28 frontend/src/pages/QuizForm.vue:42
msgid "Details" msgid "Details"
msgstr "" msgstr ""
@@ -1617,6 +1648,10 @@ msgstr ""
msgid "Email Templates" msgid "Email Templates"
msgstr "" msgstr ""
#: frontend/src/components/BatchStudents.vue:409
msgid "Email copied to clipboard"
msgstr ""
#. Label of the show_emails (Check) field in DocType 'LMS Settings' #. Label of the show_emails (Check) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Emails" msgid "Emails"
@@ -1697,8 +1732,8 @@ msgid "Enroll Now"
msgstr "" msgstr ""
#: frontend/src/components/CourseCard.vue:43 #: frontend/src/components/CourseCard.vue:43
#: frontend/src/components/CourseCardOverlay.vue:103 #: frontend/src/components/CourseCardOverlay.vue:104
#: frontend/src/pages/CourseDetail.vue:31 #: frontend/src/pages/CourseDetail.vue:33
msgid "Enrolled Students" msgid "Enrolled Students"
msgstr "" msgstr ""
@@ -1715,7 +1750,7 @@ msgstr ""
msgid "Enrollment Count" msgid "Enrollment Count"
msgstr "" msgstr ""
#: lms/lms/utils.py:1720 #: lms/lms/utils.py:1726
msgid "Enrollment Failed" msgid "Enrollment Failed"
msgstr "" msgstr ""
@@ -1731,7 +1766,7 @@ msgstr ""
msgid "Enter Client Id and Client Secret in Google Settings to send calendar invites for evaluations." msgid "Enter Client Id and Client Secret in Google Settings to send calendar invites for evaluations."
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:96 #: frontend/src/components/Assignment.vue:110
msgid "Enter a URL" msgid "Enter a URL"
msgstr "" msgstr ""
@@ -1743,6 +1778,7 @@ msgstr ""
msgid "Enter the correct answer" msgid "Enter the correct answer"
msgstr "" msgstr ""
#: frontend/src/components/Assignment.vue:268
#: frontend/src/components/Modals/AnnouncementModal.vue:105 #: frontend/src/components/Modals/AnnouncementModal.vue:105
#: frontend/src/components/Modals/BulkCertificates.vue:115 #: frontend/src/components/Modals/BulkCertificates.vue:115
#: frontend/src/components/Modals/ChapterModal.vue:159 #: frontend/src/components/Modals/ChapterModal.vue:159
@@ -1753,8 +1789,9 @@ msgstr ""
#: frontend/src/components/Modals/Question.vue:326 #: frontend/src/components/Modals/Question.vue:326
#: frontend/src/components/Modals/StudentModal.vue:69 #: frontend/src/components/Modals/StudentModal.vue:69
#: frontend/src/components/SettingDetails.vue:62 #: frontend/src/components/SettingDetails.vue:62
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350 #: frontend/src/pages/AssignmentForm.vue:139
#: frontend/src/pages/QuizForm.vue:365 #: frontend/src/pages/AssignmentForm.vue:159 frontend/src/pages/Billing.vue:264
#: frontend/src/pages/QuizForm.vue:346 frontend/src/pages/QuizForm.vue:361
#: frontend/src/pages/QuizSubmission.vue:141 #: frontend/src/pages/QuizSubmission.vue:141
msgid "Error" msgid "Error"
msgstr "" msgstr ""
@@ -1917,7 +1954,7 @@ msgstr ""
msgid "Featured" msgid "Featured"
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:21 #: frontend/src/components/Assignment.vue:61
msgid "Feel free to make edits to your submission if needed." msgid "Feel free to make edits to your submission if needed."
msgstr "" msgstr ""
@@ -1936,6 +1973,10 @@ msgstr ""
msgid "File Type" msgid "File Type"
msgstr "" msgstr ""
#: frontend/src/pages/Jobs.vue:47
msgid "Find the perfect job for you"
msgstr ""
#: frontend/src/components/Members.vue:38 #: frontend/src/components/Members.vue:38
#: frontend/src/components/Modals/EditProfile.vue:59 #: frontend/src/components/Modals/EditProfile.vue:59
msgid "First Name" msgid "First Name"
@@ -1951,7 +1992,7 @@ msgstr ""
msgid "Flexible Time" msgid "Flexible Time"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:463 #: frontend/src/pages/QuizForm.vue:459
msgid "Form to create and edit quizzes" msgid "Form to create and edit quizzes"
msgstr "" msgstr ""
@@ -1965,7 +2006,7 @@ msgid "Free"
msgstr "" msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:118 #: frontend/src/pages/Jobs.vue:121
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Freelance" msgid "Freelance"
msgstr "" msgstr ""
@@ -2007,7 +2048,7 @@ msgid "Full Name"
msgstr "" msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:115 #: frontend/src/pages/Jobs.vue:118
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Full Time" msgid "Full Time"
msgstr "" msgstr ""
@@ -2067,6 +2108,7 @@ 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:154
#: lms/lms/doctype/education_detail/education_detail.json #: lms/lms/doctype/education_detail/education_detail.json
msgid "Grade" msgid "Grade"
msgstr "" msgstr ""
@@ -2081,6 +2123,10 @@ msgstr ""
msgid "Grade Type" msgid "Grade Type"
msgstr "" msgstr ""
#: frontend/src/components/Assignment.vue:149
msgid "Grading"
msgstr ""
#. Label of the grant_only_once (Check) field in DocType 'LMS Badge' #. Label of the grant_only_once (Check) field in DocType 'LMS Badge'
#: lms/lms/doctype/lms_badge/lms_badge.json #: lms/lms/doctype/lms_badge/lms_badge.json
msgid "Grant only once" msgid "Grant only once"
@@ -2144,7 +2190,7 @@ msgstr ""
msgid "Host" msgid "Host"
msgstr "" msgstr ""
#: frontend/src/components/LessonHelp.vue:9 #: frontend/src/components/LessonHelp.vue:24
msgid "How to add a Quiz?" msgid "How to add a Quiz?"
msgstr "" msgstr ""
@@ -2166,7 +2212,7 @@ msgstr ""
msgid "I am unavailable" msgid "I am unavailable"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:384 #: frontend/src/pages/QuizForm.vue:380
msgid "ID" msgid "ID"
msgstr "" msgstr ""
@@ -2176,7 +2222,7 @@ msgstr ""
msgid "Icon" msgid "Icon"
msgstr "" msgstr ""
#: frontend/src/components/LessonHelp.vue:68 #: frontend/src/components/LessonHelp.vue:11
msgid "If Include in Preview is enabled for a lesson then the lesson will also be accessible to non logged in users." msgid "If Include in Preview is enabled for a lesson then the lesson will also be accessible to non logged in users."
msgstr "" msgstr ""
@@ -2259,7 +2305,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Exercise Latest #. Option for the 'Status' (Select) field in DocType 'Exercise Latest
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'Exercise Submission' #. Option for the 'Status' (Select) field in DocType 'Exercise Submission'
#: frontend/src/components/Quiz.vue:166 #: frontend/src/components/Quiz.vue:168
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
#: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json
msgid "Incorrect" msgid "Incorrect"
@@ -2467,7 +2513,7 @@ msgstr ""
msgid "Jobs" msgid "Jobs"
msgstr "" msgstr ""
#: frontend/src/components/LiveClass.vue:55 #: frontend/src/components/LiveClass.vue:58
#: lms/templates/upcoming_evals.html:15 #: lms/templates/upcoming_evals.html:15
msgid "Join" msgid "Join"
msgstr "" msgstr ""
@@ -2757,7 +2803,7 @@ msgstr ""
#. Group in Course Chapter's connections #. Group in Course Chapter's connections
#. Label of the lessons (Data) field in DocType 'LMS Course' #. Label of the lessons (Data) field in DocType 'LMS Course'
#: frontend/src/components/CourseCard.vue:34 #: frontend/src/components/CourseCard.vue:34
#: frontend/src/components/CourseCardOverlay.vue:96 #: frontend/src/components/CourseCardOverlay.vue:97
#: lms/lms/doctype/course_chapter/course_chapter.json #: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "Lessons" msgid "Lessons"
@@ -2823,6 +2869,7 @@ msgid "LiveCode URL"
msgstr "" msgstr ""
#: frontend/src/components/Members.vue:106 #: frontend/src/components/Members.vue:106
#: frontend/src/pages/Assignments.vue:71
#: frontend/src/pages/QuizSubmissionList.vue:39 #: frontend/src/pages/QuizSubmissionList.vue:39
#: frontend/src/pages/Quizzes.vue:51 #: frontend/src/pages/Quizzes.vue:51
msgid "Load More" msgid "Load More"
@@ -2852,6 +2899,7 @@ msgstr ""
msgid "Location Preference" msgid "Location Preference"
msgstr "" msgstr ""
#: frontend/src/components/AssignmentBlock.vue:13
#: frontend/src/components/NoPermission.vue:28 #: frontend/src/components/NoPermission.vue:28
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:175 #: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:175
#: frontend/src/pages/Lesson.vue:24 #: frontend/src/pages/Lesson.vue:24
@@ -2911,7 +2959,7 @@ msgstr ""
#. Label of the marks (Int) field in DocType 'LMS Quiz Result' #. Label of the marks (Int) field in DocType 'LMS Quiz Result'
#: frontend/src/components/Modals/Question.vue:50 #: frontend/src/components/Modals/Question.vue:50
#: frontend/src/components/Modals/Question.vue:99 #: frontend/src/components/Modals/Question.vue:99
#: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:394 #: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:390
#: frontend/src/pages/QuizSubmission.vue:59 #: frontend/src/pages/QuizSubmission.vue:59
#: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json #: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json
#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json
@@ -2968,6 +3016,7 @@ msgstr ""
#. Label of the member (Link) field in DocType 'LMS Payment' #. Label of the member (Link) field in DocType 'LMS Payment'
#. Label of the member (Link) field in DocType 'LMS Program Member' #. Label of the member (Link) field in DocType 'LMS Program Member'
#. Label of the member (Link) field in DocType 'LMS Quiz Submission' #. Label of the member (Link) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/AssignmentSubmissionList.vue:14
#: frontend/src/pages/QuizSubmission.vue:31 #: frontend/src/pages/QuizSubmission.vue:31
#: frontend/src/pages/QuizSubmissionList.vue:86 #: frontend/src/pages/QuizSubmissionList.vue:86
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
@@ -3138,11 +3187,11 @@ msgstr ""
msgid "Modified By" msgid "Modified By"
msgstr "" msgstr ""
#: lms/lms/api.py:199 #: lms/lms/api.py:201
msgid "Module Name is incorrect or does not exist." msgid "Module Name is incorrect or does not exist."
msgstr "" msgstr ""
#: lms/lms/api.py:195 #: lms/lms/api.py:197
msgid "Module is incorrect." msgid "Module is incorrect."
msgstr "" msgstr ""
@@ -3171,12 +3220,17 @@ msgid "My calendar"
msgstr "" msgstr ""
#. Option for the 'Event' (Select) field in DocType 'LMS Badge' #. Option for the 'Event' (Select) field in DocType 'LMS Badge'
#: frontend/src/pages/Batches.vue:30 frontend/src/pages/Courses.vue:45 #: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:30
#: frontend/src/pages/Programs.vue:14 lms/lms/doctype/lms_badge/lms_badge.json #: frontend/src/pages/Courses.vue:45 frontend/src/pages/Programs.vue:14
#: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New" msgid "New"
msgstr "" msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:41 #: frontend/src/pages/AssignmentForm.vue:178
msgid "New Assignment"
msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:43
msgid "New Assignment Submission" msgid "New Assignment Submission"
msgstr "" msgstr ""
@@ -3212,7 +3266,7 @@ msgstr ""
msgid "New Question" msgid "New Question"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:454 frontend/src/pages/QuizForm.vue:462 #: frontend/src/pages/QuizForm.vue:450 frontend/src/pages/QuizForm.vue:458
#: frontend/src/pages/Quizzes.vue:18 #: frontend/src/pages/Quizzes.vue:18
msgid "New Quiz" msgid "New Quiz"
msgstr "" msgstr ""
@@ -3234,7 +3288,7 @@ msgstr ""
msgid "New {0}" msgid "New {0}"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:209 frontend/src/pages/Lesson.vue:84 #: frontend/src/components/Quiz.vue:211 frontend/src/pages/Lesson.vue:84
msgid "Next" msgid "Next"
msgstr "" msgstr ""
@@ -3242,7 +3296,7 @@ msgstr ""
msgid "Next Question" msgid "Next Question"
msgstr "" msgstr ""
#: frontend/src/components/Assessments.vue:66 lms/templates/assessments.html:58 #: frontend/src/components/Assessments.vue:75 lms/templates/assessments.html:58
msgid "No Assessments" msgid "No Assessments"
msgstr "" msgstr ""
@@ -3263,6 +3317,10 @@ msgstr ""
msgid "No announcements" msgid "No announcements"
msgstr "" msgstr ""
#: frontend/src/pages/Assignments.vue:56
msgid "No assignments found"
msgstr ""
#: frontend/src/pages/Batches.vue:125 #: frontend/src/pages/Batches.vue:125
msgid "No batches found" msgid "No batches found"
msgstr "" msgstr ""
@@ -3291,11 +3349,11 @@ msgstr ""
msgid "No introduction" msgid "No introduction"
msgstr "" msgstr ""
#: frontend/src/pages/Jobs.vue:60 #: frontend/src/pages/Jobs.vue:63
msgid "No jobs posted" msgid "No jobs posted"
msgstr "" msgstr ""
#: frontend/src/components/LiveClass.vue:61 #: frontend/src/components/LiveClass.vue:71
msgid "No live classes scheduled" msgid "No live classes scheduled"
msgstr "" msgstr ""
@@ -3311,6 +3369,10 @@ msgstr ""
msgid "No slots available for this date." msgid "No slots available for this date."
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmissionList.vue:67
msgid "No submissions"
msgstr ""
#: frontend/src/components/UpcomingEvaluations.vue:39 #: frontend/src/components/UpcomingEvaluations.vue:39
msgid "No upcoming evaluations." msgid "No upcoming evaluations."
msgstr "" msgstr ""
@@ -3359,6 +3421,7 @@ msgstr ""
msgid "Not Permitted" msgid "Not Permitted"
msgstr "" msgstr ""
#: frontend/src/components/Assignment.vue:33
#: frontend/src/components/BrandSettings.vue:10 #: frontend/src/components/BrandSettings.vue:10
#: frontend/src/components/PaymentSettings.vue:9 #: frontend/src/components/PaymentSettings.vue:9
#: frontend/src/components/SettingDetails.vue:10 #: frontend/src/components/SettingDetails.vue:10
@@ -3402,7 +3465,7 @@ msgstr ""
msgid "Once again, congratulations on this significant accomplishment." msgid "Once again, congratulations on this significant accomplishment."
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:17 #: frontend/src/components/Assignment.vue:57
msgid "Once the moderator grades your submission, you'll find the details here." msgid "Once the moderator grades your submission, you'll find the details here."
msgstr "" msgstr ""
@@ -3419,7 +3482,7 @@ msgstr ""
msgid "Only files of type {0} will be accepted." msgid "Only files of type {0} will be accepted."
msgstr "" msgstr ""
#: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:527 #: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:529
msgid "Only image file is allowed." msgid "Only image file is allowed."
msgstr "" msgstr ""
@@ -3548,7 +3611,7 @@ msgid "Pan Number"
msgstr "" msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:116 #: frontend/src/pages/Jobs.vue:119
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Part Time" msgid "Part Time"
msgstr "" msgstr ""
@@ -3679,7 +3742,7 @@ msgstr ""
msgid "Phone Number" msgid "Phone Number"
msgstr "" msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:141 #: frontend/src/components/CourseCardOverlay.vue:145
msgid "Please Login" msgid "Please Login"
msgstr "" msgstr ""
@@ -3699,7 +3762,7 @@ msgstr ""
msgid "Please click on the following button to set your new password" msgid "Please click on the following button to set your new password"
msgstr "" msgstr ""
#: lms/lms/utils.py:1842 lms/lms/utils.py:1846 #: lms/lms/utils.py:1848 lms/lms/utils.py:1852
msgid "Please complete the previous courses in the program to enroll in this course." msgid "Please complete the previous courses in the program to enroll in this course."
msgstr "" msgstr ""
@@ -3719,8 +3782,8 @@ msgstr ""
msgid "Please enter a title." msgid "Please enter a title."
msgstr "" msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:38 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:40
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:98 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:122
msgid "Please enter a valid URL." msgid "Please enter a valid URL."
msgstr "" msgstr ""
@@ -3728,7 +3791,7 @@ msgstr ""
msgid "Please enter a valid time in the format HH:mm." msgid "Please enter a valid time in the format HH:mm."
msgstr "" msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:92 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:116
msgid "Please enter the URL for assignment submission." msgid "Please enter the URL for assignment submission."
msgstr "" msgstr ""
@@ -3748,6 +3811,10 @@ msgstr ""
msgid "Please let us know where you heard about us from." msgid "Please let us know where you heard about us from."
msgstr "" msgstr ""
#: frontend/src/components/AssignmentBlock.vue:9
msgid "Please login to access the assignment."
msgstr ""
#: frontend/src/components/QuizBlock.vue:5 #: frontend/src/components/QuizBlock.vue:5
msgid "Please login to access the quiz." msgid "Please login to access the quiz."
msgstr "" msgstr ""
@@ -3756,7 +3823,7 @@ msgstr ""
msgid "Please login to access this page." msgid "Please login to access this page."
msgstr "" msgstr ""
#: lms/lms/api.py:191 #: lms/lms/api.py:193
msgid "Please login to continue with payment." msgid "Please login to continue with payment."
msgstr "" msgstr ""
@@ -3793,7 +3860,7 @@ msgstr ""
msgid "Please upload a SCORM package" msgid "Please upload a SCORM package"
msgstr "" msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:95 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:119
msgid "Please upload the assignment file." msgid "Please upload the assignment file."
msgstr "" msgstr ""
@@ -4001,9 +4068,9 @@ msgstr ""
#. Label of the question (Text Editor) field in DocType 'LMS Question' #. Label of the question (Text Editor) field in DocType 'LMS Question'
#. Label of the question (Link) field in DocType 'LMS Quiz Question' #. Label of the question (Link) field in DocType 'LMS Quiz Question'
#. Label of the question (Text) field in DocType 'LMS Quiz Result' #. Label of the question (Text) field in DocType 'LMS Quiz Result'
#: frontend/src/components/Assignment.vue:17
#: frontend/src/components/Modals/Question.vue:38 #: frontend/src/components/Modals/Question.vue:38
#: frontend/src/pages/AssignmentSubmission.vue:26 #: frontend/src/pages/AssignmentForm.vue:45 frontend/src/pages/QuizForm.vue:385
#: frontend/src/pages/QuizForm.vue:389
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment/lms_assignment.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
@@ -4040,7 +4107,7 @@ msgstr ""
msgid "Question {0}" msgid "Question {0}"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:186 #: frontend/src/components/Quiz.vue:188
msgid "Question {0} of {1}" msgid "Question {0} of {1}"
msgstr "" msgstr ""
@@ -4049,7 +4116,7 @@ msgstr ""
msgid "Questions" msgid "Questions"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:431 #: frontend/src/pages/QuizForm.vue:427
msgid "Questions deleted successfully" msgid "Questions deleted successfully"
msgstr "" msgstr ""
@@ -4077,7 +4144,7 @@ msgstr ""
msgid "Quiz Submissions" msgid "Quiz Submissions"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:223 #: frontend/src/components/Quiz.vue:225
msgid "Quiz Summary" msgid "Quiz Summary"
msgstr "" msgstr ""
@@ -4086,7 +4153,7 @@ msgstr ""
msgid "Quiz Title" msgid "Quiz Title"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:343 #: frontend/src/pages/QuizForm.vue:339
msgid "Quiz created successfully" msgid "Quiz created successfully"
msgstr "" msgstr ""
@@ -4094,7 +4161,7 @@ msgstr ""
msgid "Quiz is not available to Guest users. Please login to continue." msgid "Quiz is not available to Guest users. Please login to continue."
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:362 #: frontend/src/pages/QuizForm.vue:358
msgid "Quiz updated successfully" msgid "Quiz updated successfully"
msgstr "" msgstr ""
@@ -4103,7 +4170,7 @@ msgstr ""
msgid "Quiz will appear at the bottom of the lesson." msgid "Quiz will appear at the bottom of the lesson."
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:442 frontend/src/pages/Quizzes.vue:138 #: frontend/src/pages/QuizForm.vue:438 frontend/src/pages/Quizzes.vue:138
#: frontend/src/pages/Quizzes.vue:148 #: frontend/src/pages/Quizzes.vue:148
msgid "Quizzes" msgid "Quizzes"
msgstr "" msgstr ""
@@ -4111,7 +4178,7 @@ msgstr ""
#. Label of the rating (Rating) field in DocType 'LMS Certificate Evaluation' #. Label of the rating (Rating) field in DocType 'LMS Certificate Evaluation'
#. 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:108 #: frontend/src/components/CourseCardOverlay.vue:110
#: frontend/src/components/Modals/Event.vue:86 #: frontend/src/components/Modals/Event.vue:86
#: frontend/src/components/Modals/ReviewModal.vue:20 #: frontend/src/components/Modals/ReviewModal.vue:20
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -4125,10 +4192,6 @@ msgstr ""
msgid "Rating cannot be 0" msgid "Rating cannot be 0"
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:30
msgid "Read the question carefully before attempting the assignment."
msgstr ""
#. Option for the 'Stage' (Select) field in DocType 'LMS Batch Old' #. Option for the 'Stage' (Select) field in DocType 'LMS Batch Old'
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
msgid "Ready" msgid "Ready"
@@ -4307,15 +4370,15 @@ msgstr ""
msgid "Saturday" msgid "Saturday"
msgstr "" msgstr ""
#: frontend/src/components/AssessmentPlugin.vue:34
#: frontend/src/components/Assignment.vue:43
#: frontend/src/components/Controls/CodeEditor.vue:25 #: frontend/src/components/Controls/CodeEditor.vue:25
#: frontend/src/components/Modals/Event.vue:101 #: frontend/src/components/Modals/Event.vue:101
#: frontend/src/components/Modals/Event.vue:129 #: frontend/src/components/Modals/Event.vue:129
#: frontend/src/components/QuizPlugin.vue:23 #: frontend/src/pages/AssignmentForm.vue:21 frontend/src/pages/BatchForm.vue:8
#: frontend/src/pages/AssignmentSubmission.vue:7 #: frontend/src/pages/CourseForm.vue:20 frontend/src/pages/JobCreation.vue:8
#: frontend/src/pages/BatchForm.vue:8 frontend/src/pages/CourseForm.vue:20 #: frontend/src/pages/LessonForm.vue:14 frontend/src/pages/ProgramForm.vue:7
#: frontend/src/pages/JobCreation.vue:8 frontend/src/pages/LessonForm.vue:14 #: frontend/src/pages/QuizForm.vue:34 frontend/src/pages/QuizSubmission.vue:14
#: frontend/src/pages/ProgramForm.vue:7 frontend/src/pages/QuizForm.vue:34
#: frontend/src/pages/QuizSubmission.vue:14
#: lms/public/js/common_functions.js:405 #: lms/public/js/common_functions.js:405
msgid "Save" msgid "Save"
msgstr "" msgstr ""
@@ -4357,6 +4420,10 @@ msgstr ""
msgid "Search" msgid "Search"
msgstr "" msgstr ""
#: frontend/src/pages/Assignments.vue:25
msgid "Search by title"
msgstr ""
#: frontend/src/components/Controls/IconPicker.vue:36 #: frontend/src/components/Controls/IconPicker.vue:36
msgid "Search for an icon" msgid "Search for an icon"
msgstr "" msgstr ""
@@ -4382,7 +4449,7 @@ msgstr ""
msgid "Select a question" msgid "Select a question"
msgstr "" msgstr ""
#: frontend/src/components/QuizPlugin.vue:17 #: frontend/src/components/AssessmentPlugin.vue:21
msgid "Select a quiz" msgid "Select a quiz"
msgstr "" msgstr ""
@@ -4390,6 +4457,10 @@ msgstr ""
msgid "Select a slot" msgid "Select a slot"
msgstr "" msgstr ""
#: frontend/src/components/AssessmentPlugin.vue:28
msgid "Select an assignment"
msgstr ""
#. Label of the send_calendar_invite_for_evaluations (Check) field in DocType #. Label of the send_calendar_invite_for_evaluations (Check) field in DocType
#. 'LMS Settings' #. 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -4581,7 +4652,7 @@ msgstr ""
msgid "Stage" msgid "Stage"
msgstr "" msgstr ""
#: frontend/src/components/LiveClass.vue:46 frontend/src/components/Quiz.vue:65 #: frontend/src/components/LiveClass.vue:50 frontend/src/components/Quiz.vue:65
#: lms/templates/quiz/quiz.html:39 #: lms/templates/quiz/quiz.html:39
msgid "Start" msgid "Start"
msgstr "" msgstr ""
@@ -4662,6 +4733,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Course Progress' #. Label of the status (Select) field in DocType 'LMS Course Progress'
#. Label of the status (Select) field in DocType 'LMS Mentor Request' #. Label of the status (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:91 #: frontend/src/components/Modals/Event.vue:91
#: frontend/src/pages/AssignmentSubmissionList.vue:19
#: frontend/src/pages/JobCreation.vue:41 #: frontend/src/pages/JobCreation.vue:41
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/cohort/cohort.json
@@ -4722,7 +4794,7 @@ msgstr ""
msgid "Students" msgid "Students"
msgstr "" msgstr ""
#: frontend/src/components/BatchStudents.vue:282 #: frontend/src/components/BatchStudents.vue:310
msgid "Students deleted successfully" msgid "Students deleted successfully"
msgstr "" msgstr ""
@@ -4744,19 +4816,24 @@ msgstr ""
msgid "Subject" msgid "Subject"
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:40 #: frontend/src/components/Assignment.vue:29
msgid "Submission" msgid "Submission"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:30 #: frontend/src/pages/AssignmentForm.vue:17 frontend/src/pages/QuizForm.vue:30
msgid "Submission List" msgid "Submission List"
msgstr "" msgstr ""
#: frontend/src/components/Assignment.vue:10
#: frontend/src/components/Assignment.vue:13
msgid "Submission by"
msgstr ""
#: frontend/src/components/Modals/AssessmentModal.vue:9 #: frontend/src/components/Modals/AssessmentModal.vue:9
#: frontend/src/components/Modals/BatchCourseModal.vue:9 #: frontend/src/components/Modals/BatchCourseModal.vue:9
#: frontend/src/components/Modals/EvaluationModal.vue:9 #: frontend/src/components/Modals/EvaluationModal.vue:9
#: frontend/src/components/Modals/Question.vue:338 #: frontend/src/components/Modals/Question.vue:338
#: frontend/src/components/Quiz.vue:214 lms/templates/assignment.html:9 #: frontend/src/components/Quiz.vue:216 lms/templates/assignment.html:9
#: lms/templates/livecode/extension_footer.html:25 #: lms/templates/livecode/extension_footer.html:25
#: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163 #: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163
#: lms/www/new-sign-up.html:32 #: lms/www/new-sign-up.html:32
@@ -4772,10 +4849,12 @@ msgstr ""
msgid "Submitted {0}" msgid "Submitted {0}"
msgstr "" msgstr ""
#: frontend/src/components/Assignment.vue:316
#: frontend/src/components/BatchCourses.vue:150 #: frontend/src/components/BatchCourses.vue:150
#: frontend/src/components/BatchOverlay.vue:135 #: frontend/src/components/BatchOverlay.vue:135
#: frontend/src/components/BatchStudents.vue:282 #: frontend/src/components/BatchStudents.vue:310
#: frontend/src/components/CourseCardOverlay.vue:161 #: frontend/src/components/BatchStudents.vue:409
#: frontend/src/components/CourseCardOverlay.vue:165
#: frontend/src/components/Modals/AnnouncementModal.vue:99 #: frontend/src/components/Modals/AnnouncementModal.vue:99
#: frontend/src/components/Modals/AssessmentModal.vue:73 #: frontend/src/components/Modals/AssessmentModal.vue:73
#: frontend/src/components/Modals/BulkCertificates.vue:121 #: frontend/src/components/Modals/BulkCertificates.vue:121
@@ -4785,11 +4864,12 @@ msgstr ""
#: frontend/src/components/Modals/Event.vue:310 #: frontend/src/components/Modals/Event.vue:310
#: frontend/src/components/Modals/Question.vue:264 #: frontend/src/components/Modals/Question.vue:264
#: frontend/src/components/Modals/Question.vue:315 #: frontend/src/components/Modals/Question.vue:315
#: frontend/src/pages/AssignmentForm.vue:155
#: frontend/src/pages/CourseForm.vue:461 frontend/src/pages/ProgramForm.vue:229 #: frontend/src/pages/CourseForm.vue:461 frontend/src/pages/ProgramForm.vue:229
#: frontend/src/pages/ProgramForm.vue:251 #: frontend/src/pages/ProgramForm.vue:251
#: frontend/src/pages/ProgramForm.vue:272 #: frontend/src/pages/ProgramForm.vue:272
#: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:343 #: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:339
#: frontend/src/pages/QuizForm.vue:362 frontend/src/pages/QuizForm.vue:431 #: frontend/src/pages/QuizForm.vue:358 frontend/src/pages/QuizForm.vue:427
msgid "Success" msgid "Success"
msgstr "" msgstr ""
@@ -4807,7 +4887,7 @@ msgstr ""
msgid "Sunday" msgid "Sunday"
msgstr "" msgstr ""
#: lms/lms/api.py:952 #: lms/lms/api.py:954
msgid "Suspicious pattern found in {0}: {1}" msgid "Suspicious pattern found in {0}: {1}"
msgstr "" msgstr ""
@@ -4922,6 +5002,10 @@ msgstr ""
msgid "Thanks and Regards" msgid "Thanks and Regards"
msgstr "" msgstr ""
#: lms/lms/utils.py:1755
msgid "The batch is full. Please contact the Administrator."
msgstr ""
#: lms/templates/emails/lms_course_interest.html:5 #: lms/templates/emails/lms_course_interest.html:5
msgid "The course {0} is now available on {1}." msgid "The course {0} is now available on {1}."
msgstr "" msgstr ""
@@ -4962,14 +5046,22 @@ msgstr ""
msgid "There are no seats available in this batch." msgid "There are no seats available in this batch."
msgstr "" msgstr ""
#: frontend/src/components/BatchStudents.vue:165 #: frontend/src/components/BatchStudents.vue:182
msgid "There are no students in this batch." msgid "There are no students in this batch."
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmissionList.vue:70
msgid "There are no submissions for this assignment."
msgstr ""
#: lms/templates/course_list.html:14 #: lms/templates/course_list.html:14
msgid "There are no {0} on this site." msgid "There are no {0} on this site."
msgstr "" msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:82
msgid "There has been an update on your submission for assignment {0}"
msgstr ""
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:42 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:42
msgid "There has been an update on your submission. You have got a score of {0} for the quiz {1}" msgid "There has been an update on your submission. You have got a score of {0} for the quiz {1}"
msgstr "" msgstr ""
@@ -4989,11 +5081,15 @@ msgstr ""
msgid "This certificate does no expire" msgid "This certificate does no expire"
msgstr "" msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:91 #: frontend/src/components/LiveClass.vue:64
msgid "This class has ended"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:92
msgid "This course has:" msgid "This course has:"
msgstr "" msgstr ""
#: lms/lms/utils.py:1600 #: lms/lms/utils.py:1606
msgid "This course is free." msgid "This course is free."
msgstr "" msgstr ""
@@ -5096,10 +5192,12 @@ msgstr ""
#. Label of the title (Data) field in DocType 'Work Experience' #. Label of the title (Data) field in DocType 'Work Experience'
#: frontend/src/components/Modals/DiscussionModal.vue:18 #: frontend/src/components/Modals/DiscussionModal.vue:18
#: frontend/src/components/Modals/LiveClassModal.vue:23 #: frontend/src/components/Modals/LiveClassModal.vue:23
#: frontend/src/pages/BatchForm.vue:20 frontend/src/pages/CourseForm.vue:32 #: frontend/src/pages/AssignmentForm.vue:32
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/ProgramForm.vue:11 #: frontend/src/pages/Assignments.vue:152 frontend/src/pages/BatchForm.vue:20
#: frontend/src/pages/Programs.vue:118 frontend/src/pages/QuizForm.vue:48 #: frontend/src/pages/CourseForm.vue:32 frontend/src/pages/JobCreation.vue:20
#: frontend/src/pages/Quizzes.vue:116 lms/lms/doctype/cohort/cohort.json #: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:118
#: frontend/src/pages/QuizForm.vue:48 frontend/src/pages/Quizzes.vue:116
#: lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/course_chapter/course_chapter.json #: lms/lms/doctype/course_chapter/course_chapter.json
@@ -5135,11 +5233,11 @@ msgstr ""
msgid "To Date" msgid "To Date"
msgstr "" msgstr ""
#: lms/lms/utils.py:1611 #: lms/lms/utils.py:1617
msgid "To join this batch, please contact the Administrator." msgid "To join this batch, please contact the Administrator."
msgstr "" msgstr ""
#: frontend/src/components/LessonHelp.vue:34 #: frontend/src/components/LessonHelp.vue:49
msgid "To upload Image, Video, Audio or PDF from your system, click on the add icon and select upload from the menu. Then choose the file you want to add to the lesson and it gets added to your lesson." msgid "To upload Image, Video, Audio or PDF from your system, click on the add icon and select upload from the menu. Then choose the file you want to add to the lesson and it gets added to your lesson."
msgstr "" msgstr ""
@@ -5167,7 +5265,7 @@ msgstr ""
msgid "Travel" msgid "Travel"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:252 lms/templates/quiz/quiz.html:131 #: frontend/src/components/Quiz.vue:254 lms/templates/quiz/quiz.html:131
msgid "Try Again" msgid "Try Again"
msgstr "" msgstr ""
@@ -5189,6 +5287,8 @@ msgstr ""
#. Label of the type (Select) field in DocType 'LMS Quiz Question' #. Label of the type (Select) field in DocType 'LMS Quiz Question'
#: frontend/src/components/Modals/AssessmentModal.vue:22 #: frontend/src/components/Modals/AssessmentModal.vue:22
#: frontend/src/components/Modals/Question.vue:54 #: frontend/src/components/Modals/Question.vue:54
#: frontend/src/pages/AssignmentForm.vue:39
#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:157
#: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:16 #: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:16
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment/lms_assignment.json
@@ -5199,7 +5299,7 @@ msgstr ""
msgid "Type" msgid "Type"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:583 #: frontend/src/components/Quiz.vue:589
msgid "Type your answer" msgid "Type your answer"
msgstr "" msgstr ""
@@ -5280,11 +5380,11 @@ msgstr ""
msgid "Upload" msgid "Upload"
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:69 #: frontend/src/components/Assignment.vue:78
msgid "Upload File" msgid "Upload File"
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:68 #: frontend/src/components/Assignment.vue:77
msgid "Uploading {0}%" msgid "Uploading {0}%"
msgstr "" msgstr ""
@@ -5402,7 +5502,7 @@ msgstr ""
msgid "Welcome to {0}!" msgid "Welcome to {0}!"
msgstr "" msgstr ""
#: frontend/src/components/LessonHelp.vue:63 #: frontend/src/components/LessonHelp.vue:6
msgid "What does include in preview mean?" msgid "What does include in preview mean?"
msgstr "" msgstr ""
@@ -5451,7 +5551,7 @@ msgstr ""
msgid "Write a review" msgid "Write a review"
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:102 #: frontend/src/components/Assignment.vue:120
msgid "Write your answer here" msgid "Write your answer here"
msgstr "" msgstr ""
@@ -5459,11 +5559,11 @@ msgstr ""
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}."
msgstr "" msgstr ""
#: lms/lms/api.py:215 #: lms/lms/api.py:217
msgid "You are already enrolled for this batch." msgid "You are already enrolled for this batch."
msgstr "" msgstr ""
#: lms/lms/api.py:207 #: lms/lms/api.py:209
msgid "You are already enrolled for this course." msgid "You are already enrolled for this course."
msgstr "" msgstr ""
@@ -5528,7 +5628,7 @@ msgstr ""
msgid "You got" msgid "You got"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:234 #: frontend/src/components/Quiz.vue:236
#, python-format #, python-format
msgid "You got {0}% correct answers with a score of {1} out of {2}" msgid "You got {0}% correct answers with a score of {1} out of {2}"
msgstr "" msgstr ""
@@ -5549,7 +5649,7 @@ msgstr ""
msgid "You have been enrolled in this batch" msgid "You have been enrolled in this batch"
msgstr "" msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:162 #: frontend/src/components/CourseCardOverlay.vue:166
msgid "You have been enrolled in this course" msgid "You have been enrolled in this course"
msgstr "" msgstr ""
@@ -5557,6 +5657,10 @@ msgstr ""
msgid "You have got a score of {0} for the quiz {1}" msgid "You have got a score of {0} for the quiz {1}"
msgstr "" msgstr ""
#: frontend/src/pages/Assignments.vue:60
msgid "You have not created any assignments yet. To create a new assignment, click on the \"New\" button above."
msgstr ""
#: frontend/src/pages/Quizzes.vue:65 #: frontend/src/pages/Quizzes.vue:65
msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above." msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above."
msgstr "" msgstr ""
@@ -5569,7 +5673,7 @@ msgstr ""
msgid "You haven't enrolled for any courses" msgid "You haven't enrolled for any courses"
msgstr "" msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:142 #: frontend/src/components/CourseCardOverlay.vue:146
msgid "You need to login first to enroll for this course" msgid "You need to login first to enroll for this course"
msgstr "" msgstr ""
@@ -5582,7 +5686,7 @@ msgstr ""
msgid "You've applied to become a mentor for this course. Your request is currently under review." msgid "You've applied to become a mentor for this course. Your request is currently under review."
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:15 #: frontend/src/components/Assignment.vue:55
msgid "You've successfully submitted the assignment." msgid "You've successfully submitted the assignment."
msgstr "" msgstr ""
@@ -5626,7 +5730,7 @@ msgstr ""
msgid "Your score is" msgid "Your score is"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:227 #: frontend/src/components/Quiz.vue:229
msgid "Your submission has been successfully saved. The instructor will review and grade it shortly, and you'll be notified of your final result." msgid "Your submission has been successfully saved. The instructor will review and grade it shortly, and you'll be notified of your final result."
msgstr "" msgstr ""
@@ -5675,7 +5779,7 @@ msgstr ""
msgid "posted by" msgid "posted by"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:390 #: frontend/src/pages/QuizForm.vue:386
msgid "question_detail" msgid "question_detail"
msgstr "" msgstr ""
@@ -5691,7 +5795,7 @@ msgstr ""
msgid "you can" msgid "you can"
msgstr "" msgstr ""
#: lms/lms/api.py:749 lms/lms/api.py:757 #: lms/lms/api.py:751 lms/lms/api.py:759
msgid "{0} Settings not found" msgid "{0} Settings not found"
msgstr "" msgstr ""

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-12-27 16:04+0000\n" "POT-Creation-Date: 2025-01-03 16:04+0000\n"
"PO-Revision-Date: 2024-12-31 03:29\n" "PO-Revision-Date: 2025-01-07 04:09\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"
@@ -156,7 +156,7 @@ msgstr ""
msgid "Add a new question" msgid "Add a new question"
msgstr "" msgstr ""
#: frontend/src/components/QuizPlugin.vue:11 #: frontend/src/components/AssessmentPlugin.vue:11
msgid "Add a quiz to your lesson" msgid "Add a quiz to your lesson"
msgstr "" msgstr ""
@@ -164,6 +164,10 @@ msgstr ""
msgid "Add an assessment" msgid "Add an assessment"
msgstr "" msgstr ""
#: frontend/src/components/AssessmentPlugin.vue:14
msgid "Add an assignment to your lesson"
msgstr ""
#: frontend/src/components/Modals/Question.vue:18 #: frontend/src/components/Modals/Question.vue:18
msgid "Add an existing question" msgid "Add an existing question"
msgstr "" msgstr ""
@@ -176,7 +180,7 @@ msgstr ""
msgid "Add web page to sidebar" msgid "Add web page to sidebar"
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:44 #: frontend/src/components/Assignment.vue:65
msgid "Add your assignment as {0}" msgid "Add your assignment as {0}"
msgstr "" msgstr ""
@@ -393,6 +397,8 @@ msgstr ""
#. Label of the section_break_16 (Section Break) field in DocType 'Course #. Label of the section_break_16 (Section Break) field in DocType 'Course
#. Lesson' #. Lesson'
#. Label of the assignment (Link) field in DocType 'LMS Assignment Submission' #. Label of the assignment (Link) field in DocType 'LMS Assignment Submission'
#: frontend/src/pages/AssignmentSubmissionList.vue:12
#: frontend/src/utils/assignment.js:25
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/templates/assignment.html:3 #: lms/templates/assignment.html:3
@@ -417,15 +423,23 @@ msgstr ""
msgid "Assignment Title" msgid "Assignment Title"
msgstr "" msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:31 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:33
msgid "Assignment for Lesson {0} by {1} already exists." msgid "Assignment for Lesson {0} by {1} already exists."
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentForm.vue:155
msgid "Assignment saved successfully"
msgstr ""
#. Description of the 'Question' (Small Text) field in DocType 'Course Lesson' #. Description of the 'Question' (Small Text) field in DocType 'Course Lesson'
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Assignment will appear at the bottom of the lesson." msgid "Assignment will appear at the bottom of the lesson."
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentForm.vue:174
msgid "Assignments"
msgstr ""
#: lms/lms/doctype/lms_question/lms_question.py:43 #: lms/lms/doctype/lms_question/lms_question.py:43
msgid "At least one option must be correct for this question." msgid "At least one option must be correct for this question."
msgstr "" msgstr ""
@@ -746,6 +760,10 @@ msgstr ""
msgid "Change" msgid "Change"
msgstr "" msgstr ""
#: frontend/src/components/Assignment.vue:316
msgid "Changes saved successfully"
msgstr ""
#. Label of the chapter (Link) field in DocType 'Chapter Reference' #. Label of the chapter (Link) field in DocType 'Chapter Reference'
#. Label of the chapter (Link) field in DocType 'LMS Course Progress' #. Label of the chapter (Link) field in DocType 'LMS Course Progress'
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
@@ -774,7 +792,7 @@ msgstr ""
msgid "Chapters" msgid "Chapters"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:201 lms/templates/quiz/quiz.html:120 #: frontend/src/components/Quiz.vue:203 lms/templates/quiz/quiz.html:120
msgid "Check" msgid "Check"
msgstr "" msgstr ""
@@ -797,7 +815,7 @@ msgstr ""
msgid "Choices" msgid "Choices"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:581 lms/templates/quiz/quiz.html:53 #: frontend/src/components/Quiz.vue:587 lms/templates/quiz/quiz.html:53
msgid "Choose all answers that apply" msgid "Choose all answers that apply"
msgstr "" msgstr ""
@@ -805,7 +823,7 @@ msgstr ""
msgid "Choose an icon" msgid "Choose an icon"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:582 lms/templates/quiz/quiz.html:53 #: frontend/src/components/Quiz.vue:588 lms/templates/quiz/quiz.html:53
msgid "Choose one answer" msgid "Choose one answer"
msgstr "" msgstr ""
@@ -814,12 +832,16 @@ msgstr ""
msgid "City" msgid "City"
msgstr "" msgstr ""
#: frontend/src/components/Controls/Link.vue:49
msgid "Clear"
msgstr ""
#. Option for the 'Role Preference' (Select) field in DocType 'User' #. Option for the 'Role Preference' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
msgid "Clearly Defined Role" msgid "Clearly Defined Role"
msgstr "" msgstr ""
#: frontend/src/components/LessonHelp.vue:15 #: frontend/src/components/LessonHelp.vue:30
msgid "Click on the add icon in the editor and select Quiz from the menu. It opens up a dialog, where you can either select a quiz from the list or create a new quiz. When you select the Create New option it redirects you to the quiz creation page." msgid "Click on the add icon in the editor and select Quiz from the menu. It opens up a dialog, where you can either select a quiz from the list or create a new quiz. When you select the Create New option it redirects you to the quiz creation page."
msgstr "" msgstr ""
@@ -917,6 +939,7 @@ msgstr ""
#. Label of the comments (Small Text) field in DocType 'LMS Assignment #. Label of the comments (Small Text) field in DocType 'LMS Assignment
#. Submission' #. Submission'
#. Label of the comments (Small Text) field in DocType 'LMS Mentor Request' #. Label of the comments (Small Text) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Assignment.vue:161
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
#: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
@@ -924,6 +947,10 @@ msgstr ""
msgid "Comments" msgid "Comments"
msgstr "" msgstr ""
#: frontend/src/components/Assignment.vue:139
msgid "Comments by Evaluator"
msgstr ""
#. Label of the company (Data) field in DocType 'LMS Job Application' #. Label of the company (Data) field in DocType 'LMS Job Application'
#. Label of the company (Data) field in DocType 'Work Experience' #. Label of the company (Data) field in DocType 'Work Experience'
#: lms/job/doctype/lms_job_application/lms_job_application.json #: lms/job/doctype/lms_job_application/lms_job_application.json
@@ -986,7 +1013,7 @@ msgstr ""
msgid "Completed" msgid "Completed"
msgstr "" msgstr ""
#: frontend/src/components/BatchStudents.vue:325 #: frontend/src/components/BatchStudents.vue:353
msgid "Completed by Students" msgid "Completed by Students"
msgstr "" msgstr ""
@@ -1036,7 +1063,7 @@ msgid "Continue Learning"
msgstr "" msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:117 #: frontend/src/pages/Jobs.vue:120
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Contract" msgid "Contract"
msgstr "" msgstr ""
@@ -1045,7 +1072,7 @@ msgstr ""
msgid "Cookie Policy" msgid "Cookie Policy"
msgstr "" msgstr ""
#: frontend/src/components/LessonHelp.vue:53 #: frontend/src/components/LessonHelp.vue:68
msgid "Copy the URL of the video from YouTube and paste it in the editor." msgid "Copy the URL of the video from YouTube and paste it in the editor."
msgstr "" msgstr ""
@@ -1057,7 +1084,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Exercise Latest #. Option for the 'Status' (Select) field in DocType 'Exercise Latest
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'Exercise Submission' #. Option for the 'Status' (Select) field in DocType 'Exercise Submission'
#: frontend/src/components/Quiz.vue:161 #: frontend/src/components/Quiz.vue:163
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
#: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json
msgid "Correct" msgid "Correct"
@@ -1197,7 +1224,7 @@ msgstr ""
msgid "Course Name" msgid "Course Name"
msgstr "" msgstr ""
#: frontend/src/pages/CourseDetail.vue:74 #: frontend/src/pages/CourseDetail.vue:76
msgid "Course Outline" msgid "Course Outline"
msgstr "" msgstr ""
@@ -1322,6 +1349,10 @@ msgstr ""
msgid "Create a new question" msgid "Create a new question"
msgstr "" msgstr ""
#: frontend/src/pages/Assignments.vue:163
msgid "Created"
msgstr ""
#. Label of the currency (Link) field in DocType 'Web Form' #. Label of the currency (Link) field in DocType 'Web Form'
#. Label of the currency (Link) field in DocType 'LMS Batch' #. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course' #. Label of the currency (Link) field in DocType 'LMS Course'
@@ -1487,8 +1518,8 @@ msgid "Desk"
msgstr "" msgstr ""
#: frontend/src/components/Modals/DiscussionModal.vue:22 #: frontend/src/components/Modals/DiscussionModal.vue:22
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:28 #: frontend/src/pages/AssignmentForm.vue:27 frontend/src/pages/BatchForm.vue:14
#: frontend/src/pages/QuizForm.vue:42 #: frontend/src/pages/CourseForm.vue:28 frontend/src/pages/QuizForm.vue:42
msgid "Details" msgid "Details"
msgstr "" msgstr ""
@@ -1619,6 +1650,10 @@ msgstr ""
msgid "Email Templates" msgid "Email Templates"
msgstr "" msgstr ""
#: frontend/src/components/BatchStudents.vue:409
msgid "Email copied to clipboard"
msgstr ""
#. Label of the show_emails (Check) field in DocType 'LMS Settings' #. Label of the show_emails (Check) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Emails" msgid "Emails"
@@ -1699,8 +1734,8 @@ msgid "Enroll Now"
msgstr "" msgstr ""
#: frontend/src/components/CourseCard.vue:43 #: frontend/src/components/CourseCard.vue:43
#: frontend/src/components/CourseCardOverlay.vue:103 #: frontend/src/components/CourseCardOverlay.vue:104
#: frontend/src/pages/CourseDetail.vue:31 #: frontend/src/pages/CourseDetail.vue:33
msgid "Enrolled Students" msgid "Enrolled Students"
msgstr "" msgstr ""
@@ -1717,7 +1752,7 @@ msgstr ""
msgid "Enrollment Count" msgid "Enrollment Count"
msgstr "" msgstr ""
#: lms/lms/utils.py:1720 #: lms/lms/utils.py:1726
msgid "Enrollment Failed" msgid "Enrollment Failed"
msgstr "" msgstr ""
@@ -1733,7 +1768,7 @@ msgstr ""
msgid "Enter Client Id and Client Secret in Google Settings to send calendar invites for evaluations." msgid "Enter Client Id and Client Secret in Google Settings to send calendar invites for evaluations."
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:96 #: frontend/src/components/Assignment.vue:110
msgid "Enter a URL" msgid "Enter a URL"
msgstr "" msgstr ""
@@ -1745,6 +1780,7 @@ msgstr ""
msgid "Enter the correct answer" msgid "Enter the correct answer"
msgstr "" msgstr ""
#: frontend/src/components/Assignment.vue:268
#: frontend/src/components/Modals/AnnouncementModal.vue:105 #: frontend/src/components/Modals/AnnouncementModal.vue:105
#: frontend/src/components/Modals/BulkCertificates.vue:115 #: frontend/src/components/Modals/BulkCertificates.vue:115
#: frontend/src/components/Modals/ChapterModal.vue:159 #: frontend/src/components/Modals/ChapterModal.vue:159
@@ -1755,8 +1791,9 @@ msgstr ""
#: frontend/src/components/Modals/Question.vue:326 #: frontend/src/components/Modals/Question.vue:326
#: frontend/src/components/Modals/StudentModal.vue:69 #: frontend/src/components/Modals/StudentModal.vue:69
#: frontend/src/components/SettingDetails.vue:62 #: frontend/src/components/SettingDetails.vue:62
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350 #: frontend/src/pages/AssignmentForm.vue:139
#: frontend/src/pages/QuizForm.vue:365 #: frontend/src/pages/AssignmentForm.vue:159 frontend/src/pages/Billing.vue:264
#: frontend/src/pages/QuizForm.vue:346 frontend/src/pages/QuizForm.vue:361
#: frontend/src/pages/QuizSubmission.vue:141 #: frontend/src/pages/QuizSubmission.vue:141
msgid "Error" msgid "Error"
msgstr "" msgstr ""
@@ -1919,7 +1956,7 @@ msgstr ""
msgid "Featured" msgid "Featured"
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:21 #: frontend/src/components/Assignment.vue:61
msgid "Feel free to make edits to your submission if needed." msgid "Feel free to make edits to your submission if needed."
msgstr "" msgstr ""
@@ -1938,6 +1975,10 @@ msgstr ""
msgid "File Type" msgid "File Type"
msgstr "" msgstr ""
#: frontend/src/pages/Jobs.vue:47
msgid "Find the perfect job for you"
msgstr ""
#: frontend/src/components/Members.vue:38 #: frontend/src/components/Members.vue:38
#: frontend/src/components/Modals/EditProfile.vue:59 #: frontend/src/components/Modals/EditProfile.vue:59
msgid "First Name" msgid "First Name"
@@ -1953,7 +1994,7 @@ msgstr ""
msgid "Flexible Time" msgid "Flexible Time"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:463 #: frontend/src/pages/QuizForm.vue:459
msgid "Form to create and edit quizzes" msgid "Form to create and edit quizzes"
msgstr "" msgstr ""
@@ -1967,7 +2008,7 @@ msgid "Free"
msgstr "" msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:118 #: frontend/src/pages/Jobs.vue:121
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Freelance" msgid "Freelance"
msgstr "" msgstr ""
@@ -2009,7 +2050,7 @@ msgid "Full Name"
msgstr "" msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:115 #: frontend/src/pages/Jobs.vue:118
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Full Time" msgid "Full Time"
msgstr "" msgstr ""
@@ -2069,6 +2110,7 @@ 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:154
#: lms/lms/doctype/education_detail/education_detail.json #: lms/lms/doctype/education_detail/education_detail.json
msgid "Grade" msgid "Grade"
msgstr "" msgstr ""
@@ -2083,6 +2125,10 @@ msgstr ""
msgid "Grade Type" msgid "Grade Type"
msgstr "" msgstr ""
#: frontend/src/components/Assignment.vue:149
msgid "Grading"
msgstr ""
#. Label of the grant_only_once (Check) field in DocType 'LMS Badge' #. Label of the grant_only_once (Check) field in DocType 'LMS Badge'
#: lms/lms/doctype/lms_badge/lms_badge.json #: lms/lms/doctype/lms_badge/lms_badge.json
msgid "Grant only once" msgid "Grant only once"
@@ -2146,7 +2192,7 @@ msgstr ""
msgid "Host" msgid "Host"
msgstr "" msgstr ""
#: frontend/src/components/LessonHelp.vue:9 #: frontend/src/components/LessonHelp.vue:24
msgid "How to add a Quiz?" msgid "How to add a Quiz?"
msgstr "" msgstr ""
@@ -2168,7 +2214,7 @@ msgstr ""
msgid "I am unavailable" msgid "I am unavailable"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:384 #: frontend/src/pages/QuizForm.vue:380
msgid "ID" msgid "ID"
msgstr "" msgstr ""
@@ -2178,7 +2224,7 @@ msgstr ""
msgid "Icon" msgid "Icon"
msgstr "" msgstr ""
#: frontend/src/components/LessonHelp.vue:68 #: frontend/src/components/LessonHelp.vue:11
msgid "If Include in Preview is enabled for a lesson then the lesson will also be accessible to non logged in users." msgid "If Include in Preview is enabled for a lesson then the lesson will also be accessible to non logged in users."
msgstr "" msgstr ""
@@ -2261,7 +2307,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Exercise Latest #. Option for the 'Status' (Select) field in DocType 'Exercise Latest
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'Exercise Submission' #. Option for the 'Status' (Select) field in DocType 'Exercise Submission'
#: frontend/src/components/Quiz.vue:166 #: frontend/src/components/Quiz.vue:168
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
#: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json
msgid "Incorrect" msgid "Incorrect"
@@ -2469,7 +2515,7 @@ msgstr ""
msgid "Jobs" msgid "Jobs"
msgstr "" msgstr ""
#: frontend/src/components/LiveClass.vue:55 #: frontend/src/components/LiveClass.vue:58
#: lms/templates/upcoming_evals.html:15 #: lms/templates/upcoming_evals.html:15
msgid "Join" msgid "Join"
msgstr "" msgstr ""
@@ -2759,7 +2805,7 @@ msgstr ""
#. Group in Course Chapter's connections #. Group in Course Chapter's connections
#. Label of the lessons (Data) field in DocType 'LMS Course' #. Label of the lessons (Data) field in DocType 'LMS Course'
#: frontend/src/components/CourseCard.vue:34 #: frontend/src/components/CourseCard.vue:34
#: frontend/src/components/CourseCardOverlay.vue:96 #: frontend/src/components/CourseCardOverlay.vue:97
#: lms/lms/doctype/course_chapter/course_chapter.json #: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "Lessons" msgid "Lessons"
@@ -2825,6 +2871,7 @@ msgid "LiveCode URL"
msgstr "" msgstr ""
#: frontend/src/components/Members.vue:106 #: frontend/src/components/Members.vue:106
#: frontend/src/pages/Assignments.vue:71
#: frontend/src/pages/QuizSubmissionList.vue:39 #: frontend/src/pages/QuizSubmissionList.vue:39
#: frontend/src/pages/Quizzes.vue:51 #: frontend/src/pages/Quizzes.vue:51
msgid "Load More" msgid "Load More"
@@ -2854,6 +2901,7 @@ msgstr ""
msgid "Location Preference" msgid "Location Preference"
msgstr "" msgstr ""
#: frontend/src/components/AssignmentBlock.vue:13
#: frontend/src/components/NoPermission.vue:28 #: frontend/src/components/NoPermission.vue:28
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:175 #: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:175
#: frontend/src/pages/Lesson.vue:24 #: frontend/src/pages/Lesson.vue:24
@@ -2913,7 +2961,7 @@ msgstr ""
#. Label of the marks (Int) field in DocType 'LMS Quiz Result' #. Label of the marks (Int) field in DocType 'LMS Quiz Result'
#: frontend/src/components/Modals/Question.vue:50 #: frontend/src/components/Modals/Question.vue:50
#: frontend/src/components/Modals/Question.vue:99 #: frontend/src/components/Modals/Question.vue:99
#: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:394 #: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:390
#: frontend/src/pages/QuizSubmission.vue:59 #: frontend/src/pages/QuizSubmission.vue:59
#: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json #: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json
#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json
@@ -2970,6 +3018,7 @@ msgstr "Średni:"
#. Label of the member (Link) field in DocType 'LMS Payment' #. Label of the member (Link) field in DocType 'LMS Payment'
#. Label of the member (Link) field in DocType 'LMS Program Member' #. Label of the member (Link) field in DocType 'LMS Program Member'
#. Label of the member (Link) field in DocType 'LMS Quiz Submission' #. Label of the member (Link) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/AssignmentSubmissionList.vue:14
#: frontend/src/pages/QuizSubmission.vue:31 #: frontend/src/pages/QuizSubmission.vue:31
#: frontend/src/pages/QuizSubmissionList.vue:86 #: frontend/src/pages/QuizSubmissionList.vue:86
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
@@ -3140,11 +3189,11 @@ msgstr ""
msgid "Modified By" msgid "Modified By"
msgstr "" msgstr ""
#: lms/lms/api.py:199 #: lms/lms/api.py:201
msgid "Module Name is incorrect or does not exist." msgid "Module Name is incorrect or does not exist."
msgstr "" msgstr ""
#: lms/lms/api.py:195 #: lms/lms/api.py:197
msgid "Module is incorrect." msgid "Module is incorrect."
msgstr "" msgstr ""
@@ -3173,12 +3222,17 @@ msgid "My calendar"
msgstr "" msgstr ""
#. Option for the 'Event' (Select) field in DocType 'LMS Badge' #. Option for the 'Event' (Select) field in DocType 'LMS Badge'
#: frontend/src/pages/Batches.vue:30 frontend/src/pages/Courses.vue:45 #: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:30
#: frontend/src/pages/Programs.vue:14 lms/lms/doctype/lms_badge/lms_badge.json #: frontend/src/pages/Courses.vue:45 frontend/src/pages/Programs.vue:14
#: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New" msgid "New"
msgstr "" msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:41 #: frontend/src/pages/AssignmentForm.vue:178
msgid "New Assignment"
msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:43
msgid "New Assignment Submission" msgid "New Assignment Submission"
msgstr "" msgstr ""
@@ -3214,7 +3268,7 @@ msgstr ""
msgid "New Question" msgid "New Question"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:454 frontend/src/pages/QuizForm.vue:462 #: frontend/src/pages/QuizForm.vue:450 frontend/src/pages/QuizForm.vue:458
#: frontend/src/pages/Quizzes.vue:18 #: frontend/src/pages/Quizzes.vue:18
msgid "New Quiz" msgid "New Quiz"
msgstr "" msgstr ""
@@ -3236,7 +3290,7 @@ msgstr ""
msgid "New {0}" msgid "New {0}"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:209 frontend/src/pages/Lesson.vue:84 #: frontend/src/components/Quiz.vue:211 frontend/src/pages/Lesson.vue:84
msgid "Next" msgid "Next"
msgstr "" msgstr ""
@@ -3244,7 +3298,7 @@ msgstr ""
msgid "Next Question" msgid "Next Question"
msgstr "" msgstr ""
#: frontend/src/components/Assessments.vue:66 lms/templates/assessments.html:58 #: frontend/src/components/Assessments.vue:75 lms/templates/assessments.html:58
msgid "No Assessments" msgid "No Assessments"
msgstr "" msgstr ""
@@ -3265,6 +3319,10 @@ msgstr ""
msgid "No announcements" msgid "No announcements"
msgstr "" msgstr ""
#: frontend/src/pages/Assignments.vue:56
msgid "No assignments found"
msgstr ""
#: frontend/src/pages/Batches.vue:125 #: frontend/src/pages/Batches.vue:125
msgid "No batches found" msgid "No batches found"
msgstr "" msgstr ""
@@ -3293,11 +3351,11 @@ msgstr ""
msgid "No introduction" msgid "No introduction"
msgstr "" msgstr ""
#: frontend/src/pages/Jobs.vue:60 #: frontend/src/pages/Jobs.vue:63
msgid "No jobs posted" msgid "No jobs posted"
msgstr "" msgstr ""
#: frontend/src/components/LiveClass.vue:61 #: frontend/src/components/LiveClass.vue:71
msgid "No live classes scheduled" msgid "No live classes scheduled"
msgstr "" msgstr ""
@@ -3313,6 +3371,10 @@ msgstr ""
msgid "No slots available for this date." msgid "No slots available for this date."
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmissionList.vue:67
msgid "No submissions"
msgstr ""
#: frontend/src/components/UpcomingEvaluations.vue:39 #: frontend/src/components/UpcomingEvaluations.vue:39
msgid "No upcoming evaluations." msgid "No upcoming evaluations."
msgstr "" msgstr ""
@@ -3361,6 +3423,7 @@ msgstr ""
msgid "Not Permitted" msgid "Not Permitted"
msgstr "" msgstr ""
#: frontend/src/components/Assignment.vue:33
#: frontend/src/components/BrandSettings.vue:10 #: frontend/src/components/BrandSettings.vue:10
#: frontend/src/components/PaymentSettings.vue:9 #: frontend/src/components/PaymentSettings.vue:9
#: frontend/src/components/SettingDetails.vue:10 #: frontend/src/components/SettingDetails.vue:10
@@ -3404,7 +3467,7 @@ msgstr ""
msgid "Once again, congratulations on this significant accomplishment." msgid "Once again, congratulations on this significant accomplishment."
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:17 #: frontend/src/components/Assignment.vue:57
msgid "Once the moderator grades your submission, you'll find the details here." msgid "Once the moderator grades your submission, you'll find the details here."
msgstr "" msgstr ""
@@ -3421,7 +3484,7 @@ msgstr ""
msgid "Only files of type {0} will be accepted." msgid "Only files of type {0} will be accepted."
msgstr "" msgstr ""
#: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:527 #: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:529
msgid "Only image file is allowed." msgid "Only image file is allowed."
msgstr "" msgstr ""
@@ -3550,7 +3613,7 @@ msgid "Pan Number"
msgstr "" msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:116 #: frontend/src/pages/Jobs.vue:119
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Part Time" msgid "Part Time"
msgstr "" msgstr ""
@@ -3681,7 +3744,7 @@ msgstr ""
msgid "Phone Number" msgid "Phone Number"
msgstr "" msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:141 #: frontend/src/components/CourseCardOverlay.vue:145
msgid "Please Login" msgid "Please Login"
msgstr "" msgstr ""
@@ -3701,7 +3764,7 @@ msgstr ""
msgid "Please click on the following button to set your new password" msgid "Please click on the following button to set your new password"
msgstr "" msgstr ""
#: lms/lms/utils.py:1842 lms/lms/utils.py:1846 #: lms/lms/utils.py:1848 lms/lms/utils.py:1852
msgid "Please complete the previous courses in the program to enroll in this course." msgid "Please complete the previous courses in the program to enroll in this course."
msgstr "" msgstr ""
@@ -3721,8 +3784,8 @@ msgstr ""
msgid "Please enter a title." msgid "Please enter a title."
msgstr "" msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:38 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:40
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:98 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:122
msgid "Please enter a valid URL." msgid "Please enter a valid URL."
msgstr "" msgstr ""
@@ -3730,7 +3793,7 @@ msgstr ""
msgid "Please enter a valid time in the format HH:mm." msgid "Please enter a valid time in the format HH:mm."
msgstr "" msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:92 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:116
msgid "Please enter the URL for assignment submission." msgid "Please enter the URL for assignment submission."
msgstr "" msgstr ""
@@ -3750,6 +3813,10 @@ msgstr ""
msgid "Please let us know where you heard about us from." msgid "Please let us know where you heard about us from."
msgstr "" msgstr ""
#: frontend/src/components/AssignmentBlock.vue:9
msgid "Please login to access the assignment."
msgstr ""
#: frontend/src/components/QuizBlock.vue:5 #: frontend/src/components/QuizBlock.vue:5
msgid "Please login to access the quiz." msgid "Please login to access the quiz."
msgstr "" msgstr ""
@@ -3758,7 +3825,7 @@ msgstr ""
msgid "Please login to access this page." msgid "Please login to access this page."
msgstr "" msgstr ""
#: lms/lms/api.py:191 #: lms/lms/api.py:193
msgid "Please login to continue with payment." msgid "Please login to continue with payment."
msgstr "" msgstr ""
@@ -3795,7 +3862,7 @@ msgstr ""
msgid "Please upload a SCORM package" msgid "Please upload a SCORM package"
msgstr "" msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:95 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:119
msgid "Please upload the assignment file." msgid "Please upload the assignment file."
msgstr "" msgstr ""
@@ -4003,9 +4070,9 @@ msgstr ""
#. Label of the question (Text Editor) field in DocType 'LMS Question' #. Label of the question (Text Editor) field in DocType 'LMS Question'
#. Label of the question (Link) field in DocType 'LMS Quiz Question' #. Label of the question (Link) field in DocType 'LMS Quiz Question'
#. Label of the question (Text) field in DocType 'LMS Quiz Result' #. Label of the question (Text) field in DocType 'LMS Quiz Result'
#: frontend/src/components/Assignment.vue:17
#: frontend/src/components/Modals/Question.vue:38 #: frontend/src/components/Modals/Question.vue:38
#: frontend/src/pages/AssignmentSubmission.vue:26 #: frontend/src/pages/AssignmentForm.vue:45 frontend/src/pages/QuizForm.vue:385
#: frontend/src/pages/QuizForm.vue:389
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment/lms_assignment.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
@@ -4042,7 +4109,7 @@ msgstr ""
msgid "Question {0}" msgid "Question {0}"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:186 #: frontend/src/components/Quiz.vue:188
msgid "Question {0} of {1}" msgid "Question {0} of {1}"
msgstr "" msgstr ""
@@ -4051,7 +4118,7 @@ msgstr ""
msgid "Questions" msgid "Questions"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:431 #: frontend/src/pages/QuizForm.vue:427
msgid "Questions deleted successfully" msgid "Questions deleted successfully"
msgstr "" msgstr ""
@@ -4079,7 +4146,7 @@ msgstr ""
msgid "Quiz Submissions" msgid "Quiz Submissions"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:223 #: frontend/src/components/Quiz.vue:225
msgid "Quiz Summary" msgid "Quiz Summary"
msgstr "" msgstr ""
@@ -4088,7 +4155,7 @@ msgstr ""
msgid "Quiz Title" msgid "Quiz Title"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:343 #: frontend/src/pages/QuizForm.vue:339
msgid "Quiz created successfully" msgid "Quiz created successfully"
msgstr "" msgstr ""
@@ -4096,7 +4163,7 @@ msgstr ""
msgid "Quiz is not available to Guest users. Please login to continue." msgid "Quiz is not available to Guest users. Please login to continue."
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:362 #: frontend/src/pages/QuizForm.vue:358
msgid "Quiz updated successfully" msgid "Quiz updated successfully"
msgstr "" msgstr ""
@@ -4105,7 +4172,7 @@ msgstr ""
msgid "Quiz will appear at the bottom of the lesson." msgid "Quiz will appear at the bottom of the lesson."
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:442 frontend/src/pages/Quizzes.vue:138 #: frontend/src/pages/QuizForm.vue:438 frontend/src/pages/Quizzes.vue:138
#: frontend/src/pages/Quizzes.vue:148 #: frontend/src/pages/Quizzes.vue:148
msgid "Quizzes" msgid "Quizzes"
msgstr "" msgstr ""
@@ -4113,7 +4180,7 @@ msgstr ""
#. Label of the rating (Rating) field in DocType 'LMS Certificate Evaluation' #. Label of the rating (Rating) field in DocType 'LMS Certificate Evaluation'
#. 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:108 #: frontend/src/components/CourseCardOverlay.vue:110
#: frontend/src/components/Modals/Event.vue:86 #: frontend/src/components/Modals/Event.vue:86
#: frontend/src/components/Modals/ReviewModal.vue:20 #: frontend/src/components/Modals/ReviewModal.vue:20
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -4127,10 +4194,6 @@ msgstr ""
msgid "Rating cannot be 0" msgid "Rating cannot be 0"
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:30
msgid "Read the question carefully before attempting the assignment."
msgstr ""
#. Option for the 'Stage' (Select) field in DocType 'LMS Batch Old' #. Option for the 'Stage' (Select) field in DocType 'LMS Batch Old'
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
msgid "Ready" msgid "Ready"
@@ -4309,15 +4372,15 @@ msgstr ""
msgid "Saturday" msgid "Saturday"
msgstr "" msgstr ""
#: frontend/src/components/AssessmentPlugin.vue:34
#: frontend/src/components/Assignment.vue:43
#: frontend/src/components/Controls/CodeEditor.vue:25 #: frontend/src/components/Controls/CodeEditor.vue:25
#: frontend/src/components/Modals/Event.vue:101 #: frontend/src/components/Modals/Event.vue:101
#: frontend/src/components/Modals/Event.vue:129 #: frontend/src/components/Modals/Event.vue:129
#: frontend/src/components/QuizPlugin.vue:23 #: frontend/src/pages/AssignmentForm.vue:21 frontend/src/pages/BatchForm.vue:8
#: frontend/src/pages/AssignmentSubmission.vue:7 #: frontend/src/pages/CourseForm.vue:20 frontend/src/pages/JobCreation.vue:8
#: frontend/src/pages/BatchForm.vue:8 frontend/src/pages/CourseForm.vue:20 #: frontend/src/pages/LessonForm.vue:14 frontend/src/pages/ProgramForm.vue:7
#: frontend/src/pages/JobCreation.vue:8 frontend/src/pages/LessonForm.vue:14 #: frontend/src/pages/QuizForm.vue:34 frontend/src/pages/QuizSubmission.vue:14
#: frontend/src/pages/ProgramForm.vue:7 frontend/src/pages/QuizForm.vue:34
#: frontend/src/pages/QuizSubmission.vue:14
#: lms/public/js/common_functions.js:405 #: lms/public/js/common_functions.js:405
msgid "Save" msgid "Save"
msgstr "" msgstr ""
@@ -4359,6 +4422,10 @@ msgstr ""
msgid "Search" msgid "Search"
msgstr "" msgstr ""
#: frontend/src/pages/Assignments.vue:25
msgid "Search by title"
msgstr ""
#: frontend/src/components/Controls/IconPicker.vue:36 #: frontend/src/components/Controls/IconPicker.vue:36
msgid "Search for an icon" msgid "Search for an icon"
msgstr "" msgstr ""
@@ -4384,7 +4451,7 @@ msgstr ""
msgid "Select a question" msgid "Select a question"
msgstr "" msgstr ""
#: frontend/src/components/QuizPlugin.vue:17 #: frontend/src/components/AssessmentPlugin.vue:21
msgid "Select a quiz" msgid "Select a quiz"
msgstr "" msgstr ""
@@ -4392,6 +4459,10 @@ msgstr ""
msgid "Select a slot" msgid "Select a slot"
msgstr "" msgstr ""
#: frontend/src/components/AssessmentPlugin.vue:28
msgid "Select an assignment"
msgstr ""
#. Label of the send_calendar_invite_for_evaluations (Check) field in DocType #. Label of the send_calendar_invite_for_evaluations (Check) field in DocType
#. 'LMS Settings' #. 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -4583,7 +4654,7 @@ msgstr ""
msgid "Stage" msgid "Stage"
msgstr "" msgstr ""
#: frontend/src/components/LiveClass.vue:46 frontend/src/components/Quiz.vue:65 #: frontend/src/components/LiveClass.vue:50 frontend/src/components/Quiz.vue:65
#: lms/templates/quiz/quiz.html:39 #: lms/templates/quiz/quiz.html:39
msgid "Start" msgid "Start"
msgstr "" msgstr ""
@@ -4664,6 +4735,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Course Progress' #. Label of the status (Select) field in DocType 'LMS Course Progress'
#. Label of the status (Select) field in DocType 'LMS Mentor Request' #. Label of the status (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:91 #: frontend/src/components/Modals/Event.vue:91
#: frontend/src/pages/AssignmentSubmissionList.vue:19
#: frontend/src/pages/JobCreation.vue:41 #: frontend/src/pages/JobCreation.vue:41
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/cohort/cohort.json
@@ -4724,7 +4796,7 @@ msgstr ""
msgid "Students" msgid "Students"
msgstr "" msgstr ""
#: frontend/src/components/BatchStudents.vue:282 #: frontend/src/components/BatchStudents.vue:310
msgid "Students deleted successfully" msgid "Students deleted successfully"
msgstr "" msgstr ""
@@ -4746,19 +4818,24 @@ msgstr ""
msgid "Subject" msgid "Subject"
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:40 #: frontend/src/components/Assignment.vue:29
msgid "Submission" msgid "Submission"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:30 #: frontend/src/pages/AssignmentForm.vue:17 frontend/src/pages/QuizForm.vue:30
msgid "Submission List" msgid "Submission List"
msgstr "" msgstr ""
#: frontend/src/components/Assignment.vue:10
#: frontend/src/components/Assignment.vue:13
msgid "Submission by"
msgstr ""
#: frontend/src/components/Modals/AssessmentModal.vue:9 #: frontend/src/components/Modals/AssessmentModal.vue:9
#: frontend/src/components/Modals/BatchCourseModal.vue:9 #: frontend/src/components/Modals/BatchCourseModal.vue:9
#: frontend/src/components/Modals/EvaluationModal.vue:9 #: frontend/src/components/Modals/EvaluationModal.vue:9
#: frontend/src/components/Modals/Question.vue:338 #: frontend/src/components/Modals/Question.vue:338
#: frontend/src/components/Quiz.vue:214 lms/templates/assignment.html:9 #: frontend/src/components/Quiz.vue:216 lms/templates/assignment.html:9
#: lms/templates/livecode/extension_footer.html:25 #: lms/templates/livecode/extension_footer.html:25
#: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163 #: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163
#: lms/www/new-sign-up.html:32 #: lms/www/new-sign-up.html:32
@@ -4774,10 +4851,12 @@ msgstr ""
msgid "Submitted {0}" msgid "Submitted {0}"
msgstr "" msgstr ""
#: frontend/src/components/Assignment.vue:316
#: frontend/src/components/BatchCourses.vue:150 #: frontend/src/components/BatchCourses.vue:150
#: frontend/src/components/BatchOverlay.vue:135 #: frontend/src/components/BatchOverlay.vue:135
#: frontend/src/components/BatchStudents.vue:282 #: frontend/src/components/BatchStudents.vue:310
#: frontend/src/components/CourseCardOverlay.vue:161 #: frontend/src/components/BatchStudents.vue:409
#: frontend/src/components/CourseCardOverlay.vue:165
#: frontend/src/components/Modals/AnnouncementModal.vue:99 #: frontend/src/components/Modals/AnnouncementModal.vue:99
#: frontend/src/components/Modals/AssessmentModal.vue:73 #: frontend/src/components/Modals/AssessmentModal.vue:73
#: frontend/src/components/Modals/BulkCertificates.vue:121 #: frontend/src/components/Modals/BulkCertificates.vue:121
@@ -4787,11 +4866,12 @@ msgstr ""
#: frontend/src/components/Modals/Event.vue:310 #: frontend/src/components/Modals/Event.vue:310
#: frontend/src/components/Modals/Question.vue:264 #: frontend/src/components/Modals/Question.vue:264
#: frontend/src/components/Modals/Question.vue:315 #: frontend/src/components/Modals/Question.vue:315
#: frontend/src/pages/AssignmentForm.vue:155
#: frontend/src/pages/CourseForm.vue:461 frontend/src/pages/ProgramForm.vue:229 #: frontend/src/pages/CourseForm.vue:461 frontend/src/pages/ProgramForm.vue:229
#: frontend/src/pages/ProgramForm.vue:251 #: frontend/src/pages/ProgramForm.vue:251
#: frontend/src/pages/ProgramForm.vue:272 #: frontend/src/pages/ProgramForm.vue:272
#: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:343 #: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:339
#: frontend/src/pages/QuizForm.vue:362 frontend/src/pages/QuizForm.vue:431 #: frontend/src/pages/QuizForm.vue:358 frontend/src/pages/QuizForm.vue:427
msgid "Success" msgid "Success"
msgstr "" msgstr ""
@@ -4809,7 +4889,7 @@ msgstr "Podsumowanie"
msgid "Sunday" msgid "Sunday"
msgstr "" msgstr ""
#: lms/lms/api.py:952 #: lms/lms/api.py:954
msgid "Suspicious pattern found in {0}: {1}" msgid "Suspicious pattern found in {0}: {1}"
msgstr "" msgstr ""
@@ -4924,6 +5004,10 @@ msgstr ""
msgid "Thanks and Regards" msgid "Thanks and Regards"
msgstr "" msgstr ""
#: lms/lms/utils.py:1755
msgid "The batch is full. Please contact the Administrator."
msgstr ""
#: lms/templates/emails/lms_course_interest.html:5 #: lms/templates/emails/lms_course_interest.html:5
msgid "The course {0} is now available on {1}." msgid "The course {0} is now available on {1}."
msgstr "" msgstr ""
@@ -4964,14 +5048,22 @@ msgstr ""
msgid "There are no seats available in this batch." msgid "There are no seats available in this batch."
msgstr "" msgstr ""
#: frontend/src/components/BatchStudents.vue:165 #: frontend/src/components/BatchStudents.vue:182
msgid "There are no students in this batch." msgid "There are no students in this batch."
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmissionList.vue:70
msgid "There are no submissions for this assignment."
msgstr ""
#: lms/templates/course_list.html:14 #: lms/templates/course_list.html:14
msgid "There are no {0} on this site." msgid "There are no {0} on this site."
msgstr "" msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:82
msgid "There has been an update on your submission for assignment {0}"
msgstr ""
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:42 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:42
msgid "There has been an update on your submission. You have got a score of {0} for the quiz {1}" msgid "There has been an update on your submission. You have got a score of {0} for the quiz {1}"
msgstr "" msgstr ""
@@ -4991,11 +5083,15 @@ msgstr ""
msgid "This certificate does no expire" msgid "This certificate does no expire"
msgstr "" msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:91 #: frontend/src/components/LiveClass.vue:64
msgid "This class has ended"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:92
msgid "This course has:" msgid "This course has:"
msgstr "" msgstr ""
#: lms/lms/utils.py:1600 #: lms/lms/utils.py:1606
msgid "This course is free." msgid "This course is free."
msgstr "" msgstr ""
@@ -5098,10 +5194,12 @@ msgstr ""
#. Label of the title (Data) field in DocType 'Work Experience' #. Label of the title (Data) field in DocType 'Work Experience'
#: frontend/src/components/Modals/DiscussionModal.vue:18 #: frontend/src/components/Modals/DiscussionModal.vue:18
#: frontend/src/components/Modals/LiveClassModal.vue:23 #: frontend/src/components/Modals/LiveClassModal.vue:23
#: frontend/src/pages/BatchForm.vue:20 frontend/src/pages/CourseForm.vue:32 #: frontend/src/pages/AssignmentForm.vue:32
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/ProgramForm.vue:11 #: frontend/src/pages/Assignments.vue:152 frontend/src/pages/BatchForm.vue:20
#: frontend/src/pages/Programs.vue:118 frontend/src/pages/QuizForm.vue:48 #: frontend/src/pages/CourseForm.vue:32 frontend/src/pages/JobCreation.vue:20
#: frontend/src/pages/Quizzes.vue:116 lms/lms/doctype/cohort/cohort.json #: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:118
#: frontend/src/pages/QuizForm.vue:48 frontend/src/pages/Quizzes.vue:116
#: lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/course_chapter/course_chapter.json #: lms/lms/doctype/course_chapter/course_chapter.json
@@ -5137,11 +5235,11 @@ msgstr ""
msgid "To Date" msgid "To Date"
msgstr "" msgstr ""
#: lms/lms/utils.py:1611 #: lms/lms/utils.py:1617
msgid "To join this batch, please contact the Administrator." msgid "To join this batch, please contact the Administrator."
msgstr "" msgstr ""
#: frontend/src/components/LessonHelp.vue:34 #: frontend/src/components/LessonHelp.vue:49
msgid "To upload Image, Video, Audio or PDF from your system, click on the add icon and select upload from the menu. Then choose the file you want to add to the lesson and it gets added to your lesson." msgid "To upload Image, Video, Audio or PDF from your system, click on the add icon and select upload from the menu. Then choose the file you want to add to the lesson and it gets added to your lesson."
msgstr "" msgstr ""
@@ -5169,7 +5267,7 @@ msgstr ""
msgid "Travel" msgid "Travel"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:252 lms/templates/quiz/quiz.html:131 #: frontend/src/components/Quiz.vue:254 lms/templates/quiz/quiz.html:131
msgid "Try Again" msgid "Try Again"
msgstr "" msgstr ""
@@ -5191,6 +5289,8 @@ msgstr ""
#. Label of the type (Select) field in DocType 'LMS Quiz Question' #. Label of the type (Select) field in DocType 'LMS Quiz Question'
#: frontend/src/components/Modals/AssessmentModal.vue:22 #: frontend/src/components/Modals/AssessmentModal.vue:22
#: frontend/src/components/Modals/Question.vue:54 #: frontend/src/components/Modals/Question.vue:54
#: frontend/src/pages/AssignmentForm.vue:39
#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:157
#: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:16 #: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:16
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment/lms_assignment.json
@@ -5201,7 +5301,7 @@ msgstr ""
msgid "Type" msgid "Type"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:583 #: frontend/src/components/Quiz.vue:589
msgid "Type your answer" msgid "Type your answer"
msgstr "" msgstr ""
@@ -5282,11 +5382,11 @@ msgstr ""
msgid "Upload" msgid "Upload"
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:69 #: frontend/src/components/Assignment.vue:78
msgid "Upload File" msgid "Upload File"
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:68 #: frontend/src/components/Assignment.vue:77
msgid "Uploading {0}%" msgid "Uploading {0}%"
msgstr "" msgstr ""
@@ -5404,7 +5504,7 @@ msgstr ""
msgid "Welcome to {0}!" msgid "Welcome to {0}!"
msgstr "Zapraszamy do {0}!" msgstr "Zapraszamy do {0}!"
#: frontend/src/components/LessonHelp.vue:63 #: frontend/src/components/LessonHelp.vue:6
msgid "What does include in preview mean?" msgid "What does include in preview mean?"
msgstr "" msgstr ""
@@ -5453,7 +5553,7 @@ msgstr ""
msgid "Write a review" msgid "Write a review"
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:102 #: frontend/src/components/Assignment.vue:120
msgid "Write your answer here" msgid "Write your answer here"
msgstr "" msgstr ""
@@ -5461,11 +5561,11 @@ msgstr ""
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}."
msgstr "" msgstr ""
#: lms/lms/api.py:215 #: lms/lms/api.py:217
msgid "You are already enrolled for this batch." msgid "You are already enrolled for this batch."
msgstr "" msgstr ""
#: lms/lms/api.py:207 #: lms/lms/api.py:209
msgid "You are already enrolled for this course." msgid "You are already enrolled for this course."
msgstr "" msgstr ""
@@ -5530,7 +5630,7 @@ msgstr ""
msgid "You got" msgid "You got"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:234 #: frontend/src/components/Quiz.vue:236
#, python-format #, python-format
msgid "You got {0}% correct answers with a score of {1} out of {2}" msgid "You got {0}% correct answers with a score of {1} out of {2}"
msgstr "" msgstr ""
@@ -5551,7 +5651,7 @@ msgstr ""
msgid "You have been enrolled in this batch" msgid "You have been enrolled in this batch"
msgstr "" msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:162 #: frontend/src/components/CourseCardOverlay.vue:166
msgid "You have been enrolled in this course" msgid "You have been enrolled in this course"
msgstr "" msgstr ""
@@ -5559,6 +5659,10 @@ msgstr ""
msgid "You have got a score of {0} for the quiz {1}" msgid "You have got a score of {0} for the quiz {1}"
msgstr "" msgstr ""
#: frontend/src/pages/Assignments.vue:60
msgid "You have not created any assignments yet. To create a new assignment, click on the \"New\" button above."
msgstr ""
#: frontend/src/pages/Quizzes.vue:65 #: frontend/src/pages/Quizzes.vue:65
msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above." msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above."
msgstr "" msgstr ""
@@ -5571,7 +5675,7 @@ msgstr ""
msgid "You haven't enrolled for any courses" msgid "You haven't enrolled for any courses"
msgstr "" msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:142 #: frontend/src/components/CourseCardOverlay.vue:146
msgid "You need to login first to enroll for this course" msgid "You need to login first to enroll for this course"
msgstr "" msgstr ""
@@ -5584,7 +5688,7 @@ msgstr ""
msgid "You've applied to become a mentor for this course. Your request is currently under review." msgid "You've applied to become a mentor for this course. Your request is currently under review."
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:15 #: frontend/src/components/Assignment.vue:55
msgid "You've successfully submitted the assignment." msgid "You've successfully submitted the assignment."
msgstr "" msgstr ""
@@ -5628,7 +5732,7 @@ msgstr ""
msgid "Your score is" msgid "Your score is"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:227 #: frontend/src/components/Quiz.vue:229
msgid "Your submission has been successfully saved. The instructor will review and grade it shortly, and you'll be notified of your final result." msgid "Your submission has been successfully saved. The instructor will review and grade it shortly, and you'll be notified of your final result."
msgstr "" msgstr ""
@@ -5677,7 +5781,7 @@ msgstr "spośród"
msgid "posted by" msgid "posted by"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:390 #: frontend/src/pages/QuizForm.vue:386
msgid "question_detail" msgid "question_detail"
msgstr "" msgstr ""
@@ -5693,7 +5797,7 @@ msgstr ""
msgid "you can" msgid "you can"
msgstr "" msgstr ""
#: lms/lms/api.py:749 lms/lms/api.py:757 #: lms/lms/api.py:751 lms/lms/api.py:759
msgid "{0} Settings not found" msgid "{0} Settings not found"
msgstr "" msgstr ""

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-12-27 16:04+0000\n" "POT-Creation-Date: 2025-01-03 16:04+0000\n"
"PO-Revision-Date: 2024-12-31 03:29\n" "PO-Revision-Date: 2025-01-07 04:09\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"
@@ -156,7 +156,7 @@ msgstr ""
msgid "Add a new question" msgid "Add a new question"
msgstr "" msgstr ""
#: frontend/src/components/QuizPlugin.vue:11 #: frontend/src/components/AssessmentPlugin.vue:11
msgid "Add a quiz to your lesson" msgid "Add a quiz to your lesson"
msgstr "" msgstr ""
@@ -164,6 +164,10 @@ msgstr ""
msgid "Add an assessment" msgid "Add an assessment"
msgstr "" msgstr ""
#: frontend/src/components/AssessmentPlugin.vue:14
msgid "Add an assignment to your lesson"
msgstr ""
#: frontend/src/components/Modals/Question.vue:18 #: frontend/src/components/Modals/Question.vue:18
msgid "Add an existing question" msgid "Add an existing question"
msgstr "" msgstr ""
@@ -176,7 +180,7 @@ msgstr "Добавьте хотя бы один возможный ответ н
msgid "Add web page to sidebar" msgid "Add web page to sidebar"
msgstr "Добавить веб страницу на боковую панель" msgstr "Добавить веб страницу на боковую панель"
#: frontend/src/pages/AssignmentSubmission.vue:44 #: frontend/src/components/Assignment.vue:65
msgid "Add your assignment as {0}" msgid "Add your assignment as {0}"
msgstr "Добавьте свое задание как {0}" msgstr "Добавьте свое задание как {0}"
@@ -393,6 +397,8 @@ msgstr "Назначать"
#. Label of the section_break_16 (Section Break) field in DocType 'Course #. Label of the section_break_16 (Section Break) field in DocType 'Course
#. Lesson' #. Lesson'
#. Label of the assignment (Link) field in DocType 'LMS Assignment Submission' #. Label of the assignment (Link) field in DocType 'LMS Assignment Submission'
#: frontend/src/pages/AssignmentSubmissionList.vue:12
#: frontend/src/utils/assignment.js:25
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/templates/assignment.html:3 #: lms/templates/assignment.html:3
@@ -417,15 +423,23 @@ msgstr "Шаблон Отправленного Задания"
msgid "Assignment Title" msgid "Assignment Title"
msgstr "Название задания" msgstr "Название задания"
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:31 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:33
msgid "Assignment for Lesson {0} by {1} already exists." msgid "Assignment for Lesson {0} by {1} already exists."
msgstr "Задание для урока {0} от {1} уже существует." msgstr "Задание для урока {0} от {1} уже существует."
#: frontend/src/pages/AssignmentForm.vue:155
msgid "Assignment saved successfully"
msgstr ""
#. Description of the 'Question' (Small Text) field in DocType 'Course Lesson' #. Description of the 'Question' (Small Text) field in DocType 'Course Lesson'
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Assignment will appear at the bottom of the lesson." msgid "Assignment will appear at the bottom of the lesson."
msgstr "Задание появится в конце урока." msgstr "Задание появится в конце урока."
#: frontend/src/pages/AssignmentForm.vue:174
msgid "Assignments"
msgstr ""
#: lms/lms/doctype/lms_question/lms_question.py:43 #: lms/lms/doctype/lms_question/lms_question.py:43
msgid "At least one option must be correct for this question." msgid "At least one option must be correct for this question."
msgstr "Для этого вопроса должен быть верным хотя бы один вариант." msgstr "Для этого вопроса должен быть верным хотя бы один вариант."
@@ -746,6 +760,10 @@ msgstr "Сертифицированные участники"
msgid "Change" msgid "Change"
msgstr "" msgstr ""
#: frontend/src/components/Assignment.vue:316
msgid "Changes saved successfully"
msgstr ""
#. Label of the chapter (Link) field in DocType 'Chapter Reference' #. Label of the chapter (Link) field in DocType 'Chapter Reference'
#. Label of the chapter (Link) field in DocType 'LMS Course Progress' #. Label of the chapter (Link) field in DocType 'LMS Course Progress'
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
@@ -774,7 +792,7 @@ msgstr ""
msgid "Chapters" msgid "Chapters"
msgstr "Главы" msgstr "Главы"
#: frontend/src/components/Quiz.vue:201 lms/templates/quiz/quiz.html:120 #: frontend/src/components/Quiz.vue:203 lms/templates/quiz/quiz.html:120
msgid "Check" msgid "Check"
msgstr "Проверка" msgstr "Проверка"
@@ -797,7 +815,7 @@ msgstr "Оформить заказ на Курсы"
msgid "Choices" msgid "Choices"
msgstr "Варианты ответов" msgstr "Варианты ответов"
#: frontend/src/components/Quiz.vue:581 lms/templates/quiz/quiz.html:53 #: frontend/src/components/Quiz.vue:587 lms/templates/quiz/quiz.html:53
msgid "Choose all answers that apply" msgid "Choose all answers that apply"
msgstr "Выберите все подходящие ответы" msgstr "Выберите все подходящие ответы"
@@ -805,7 +823,7 @@ msgstr "Выберите все подходящие ответы"
msgid "Choose an icon" msgid "Choose an icon"
msgstr "Выберите иконку" msgstr "Выберите иконку"
#: frontend/src/components/Quiz.vue:582 lms/templates/quiz/quiz.html:53 #: frontend/src/components/Quiz.vue:588 lms/templates/quiz/quiz.html:53
msgid "Choose one answer" msgid "Choose one answer"
msgstr "Выберите один ответ" msgstr "Выберите один ответ"
@@ -814,12 +832,16 @@ msgstr "Выберите один ответ"
msgid "City" msgid "City"
msgstr "" msgstr ""
#: frontend/src/components/Controls/Link.vue:49
msgid "Clear"
msgstr ""
#. Option for the 'Role Preference' (Select) field in DocType 'User' #. Option for the 'Role Preference' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
msgid "Clearly Defined Role" msgid "Clearly Defined Role"
msgstr "" msgstr ""
#: frontend/src/components/LessonHelp.vue:15 #: frontend/src/components/LessonHelp.vue:30
msgid "Click on the add icon in the editor and select Quiz from the menu. It opens up a dialog, where you can either select a quiz from the list or create a new quiz. When you select the Create New option it redirects you to the quiz creation page." msgid "Click on the add icon in the editor and select Quiz from the menu. It opens up a dialog, where you can either select a quiz from the list or create a new quiz. When you select the Create New option it redirects you to the quiz creation page."
msgstr "" msgstr ""
@@ -917,6 +939,7 @@ msgstr "Цвет"
#. Label of the comments (Small Text) field in DocType 'LMS Assignment #. Label of the comments (Small Text) field in DocType 'LMS Assignment
#. Submission' #. Submission'
#. Label of the comments (Small Text) field in DocType 'LMS Mentor Request' #. Label of the comments (Small Text) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Assignment.vue:161
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
#: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
@@ -924,6 +947,10 @@ msgstr "Цвет"
msgid "Comments" msgid "Comments"
msgstr "" msgstr ""
#: frontend/src/components/Assignment.vue:139
msgid "Comments by Evaluator"
msgstr ""
#. Label of the company (Data) field in DocType 'LMS Job Application' #. Label of the company (Data) field in DocType 'LMS Job Application'
#. Label of the company (Data) field in DocType 'Work Experience' #. Label of the company (Data) field in DocType 'Work Experience'
#: lms/job/doctype/lms_job_application/lms_job_application.json #: lms/job/doctype/lms_job_application/lms_job_application.json
@@ -986,7 +1013,7 @@ msgstr "Завершить регистрацию"
msgid "Completed" msgid "Completed"
msgstr "" msgstr ""
#: frontend/src/components/BatchStudents.vue:325 #: frontend/src/components/BatchStudents.vue:353
msgid "Completed by Students" msgid "Completed by Students"
msgstr "" msgstr ""
@@ -1036,7 +1063,7 @@ msgid "Continue Learning"
msgstr "" msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:117 #: frontend/src/pages/Jobs.vue:120
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Contract" msgid "Contract"
msgstr "" msgstr ""
@@ -1045,7 +1072,7 @@ msgstr ""
msgid "Cookie Policy" msgid "Cookie Policy"
msgstr "Политика cookies" msgstr "Политика cookies"
#: frontend/src/components/LessonHelp.vue:53 #: frontend/src/components/LessonHelp.vue:68
msgid "Copy the URL of the video from YouTube and paste it in the editor." msgid "Copy the URL of the video from YouTube and paste it in the editor."
msgstr "" msgstr ""
@@ -1057,7 +1084,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Exercise Latest #. Option for the 'Status' (Select) field in DocType 'Exercise Latest
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'Exercise Submission' #. Option for the 'Status' (Select) field in DocType 'Exercise Submission'
#: frontend/src/components/Quiz.vue:161 #: frontend/src/components/Quiz.vue:163
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
#: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json
msgid "Correct" msgid "Correct"
@@ -1197,7 +1224,7 @@ msgstr "Список курсов"
msgid "Course Name" msgid "Course Name"
msgstr "Название курса" msgstr "Название курса"
#: frontend/src/pages/CourseDetail.vue:74 #: frontend/src/pages/CourseDetail.vue:76
msgid "Course Outline" msgid "Course Outline"
msgstr "" msgstr ""
@@ -1322,6 +1349,10 @@ msgstr ""
msgid "Create a new question" msgid "Create a new question"
msgstr "" msgstr ""
#: frontend/src/pages/Assignments.vue:163
msgid "Created"
msgstr ""
#. Label of the currency (Link) field in DocType 'Web Form' #. Label of the currency (Link) field in DocType 'Web Form'
#. Label of the currency (Link) field in DocType 'LMS Batch' #. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course' #. Label of the currency (Link) field in DocType 'LMS Course'
@@ -1487,8 +1518,8 @@ msgid "Desk"
msgstr "" msgstr ""
#: frontend/src/components/Modals/DiscussionModal.vue:22 #: frontend/src/components/Modals/DiscussionModal.vue:22
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:28 #: frontend/src/pages/AssignmentForm.vue:27 frontend/src/pages/BatchForm.vue:14
#: frontend/src/pages/QuizForm.vue:42 #: frontend/src/pages/CourseForm.vue:28 frontend/src/pages/QuizForm.vue:42
msgid "Details" msgid "Details"
msgstr "Детали" msgstr "Детали"
@@ -1619,6 +1650,10 @@ msgstr "Email отправлен"
msgid "Email Templates" msgid "Email Templates"
msgstr "Шаблоны Email" msgstr "Шаблоны Email"
#: frontend/src/components/BatchStudents.vue:409
msgid "Email copied to clipboard"
msgstr ""
#. Label of the show_emails (Check) field in DocType 'LMS Settings' #. Label of the show_emails (Check) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Emails" msgid "Emails"
@@ -1699,8 +1734,8 @@ msgid "Enroll Now"
msgstr "" msgstr ""
#: frontend/src/components/CourseCard.vue:43 #: frontend/src/components/CourseCard.vue:43
#: frontend/src/components/CourseCardOverlay.vue:103 #: frontend/src/components/CourseCardOverlay.vue:104
#: frontend/src/pages/CourseDetail.vue:31 #: frontend/src/pages/CourseDetail.vue:33
msgid "Enrolled Students" msgid "Enrolled Students"
msgstr "Зачисленные студенты" msgstr "Зачисленные студенты"
@@ -1717,7 +1752,7 @@ msgstr "Подтверждение регистрации на следующу
msgid "Enrollment Count" msgid "Enrollment Count"
msgstr "Количество регистраций" msgstr "Количество регистраций"
#: lms/lms/utils.py:1720 #: lms/lms/utils.py:1726
msgid "Enrollment Failed" msgid "Enrollment Failed"
msgstr "" msgstr ""
@@ -1733,7 +1768,7 @@ msgstr "Зачисления"
msgid "Enter Client Id and Client Secret in Google Settings to send calendar invites for evaluations." msgid "Enter Client Id and Client Secret in Google Settings to send calendar invites for evaluations."
msgstr "Введите идентификатор клиента и секретный код клиента в настройках Google, чтобы отправлять приглашения в календарь для оценки." msgstr "Введите идентификатор клиента и секретный код клиента в настройках Google, чтобы отправлять приглашения в календарь для оценки."
#: frontend/src/pages/AssignmentSubmission.vue:96 #: frontend/src/components/Assignment.vue:110
msgid "Enter a URL" msgid "Enter a URL"
msgstr "Введите ссылку" msgstr "Введите ссылку"
@@ -1745,6 +1780,7 @@ msgstr ""
msgid "Enter the correct answer" msgid "Enter the correct answer"
msgstr "Введите правильный ответ" msgstr "Введите правильный ответ"
#: frontend/src/components/Assignment.vue:268
#: frontend/src/components/Modals/AnnouncementModal.vue:105 #: frontend/src/components/Modals/AnnouncementModal.vue:105
#: frontend/src/components/Modals/BulkCertificates.vue:115 #: frontend/src/components/Modals/BulkCertificates.vue:115
#: frontend/src/components/Modals/ChapterModal.vue:159 #: frontend/src/components/Modals/ChapterModal.vue:159
@@ -1755,8 +1791,9 @@ msgstr "Введите правильный ответ"
#: frontend/src/components/Modals/Question.vue:326 #: frontend/src/components/Modals/Question.vue:326
#: frontend/src/components/Modals/StudentModal.vue:69 #: frontend/src/components/Modals/StudentModal.vue:69
#: frontend/src/components/SettingDetails.vue:62 #: frontend/src/components/SettingDetails.vue:62
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350 #: frontend/src/pages/AssignmentForm.vue:139
#: frontend/src/pages/QuizForm.vue:365 #: frontend/src/pages/AssignmentForm.vue:159 frontend/src/pages/Billing.vue:264
#: frontend/src/pages/QuizForm.vue:346 frontend/src/pages/QuizForm.vue:361
#: frontend/src/pages/QuizSubmission.vue:141 #: frontend/src/pages/QuizSubmission.vue:141
msgid "Error" msgid "Error"
msgstr "" msgstr ""
@@ -1919,7 +1956,7 @@ msgstr "Ошибка"
msgid "Featured" msgid "Featured"
msgstr "Популярные" msgstr "Популярные"
#: frontend/src/pages/AssignmentSubmission.vue:21 #: frontend/src/components/Assignment.vue:61
msgid "Feel free to make edits to your submission if needed." msgid "Feel free to make edits to your submission if needed."
msgstr "При необходимости вы можете вносить изменения в свою заявку." msgstr "При необходимости вы можете вносить изменения в свою заявку."
@@ -1938,6 +1975,10 @@ msgstr "Область специальности/исследования"
msgid "File Type" msgid "File Type"
msgstr "Тип файла" msgstr "Тип файла"
#: frontend/src/pages/Jobs.vue:47
msgid "Find the perfect job for you"
msgstr ""
#: frontend/src/components/Members.vue:38 #: frontend/src/components/Members.vue:38
#: frontend/src/components/Modals/EditProfile.vue:59 #: frontend/src/components/Modals/EditProfile.vue:59
msgid "First Name" msgid "First Name"
@@ -1953,7 +1994,7 @@ msgstr ""
msgid "Flexible Time" msgid "Flexible Time"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:463 #: frontend/src/pages/QuizForm.vue:459
msgid "Form to create and edit quizzes" msgid "Form to create and edit quizzes"
msgstr "" msgstr ""
@@ -1967,7 +2008,7 @@ msgid "Free"
msgstr "" msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:118 #: frontend/src/pages/Jobs.vue:121
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Freelance" msgid "Freelance"
msgstr "Фриланс" msgstr "Фриланс"
@@ -2009,7 +2050,7 @@ msgid "Full Name"
msgstr "Полное имя" msgstr "Полное имя"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:115 #: frontend/src/pages/Jobs.vue:118
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Full Time" msgid "Full Time"
msgstr "Полная занятость" msgstr "Полная занятость"
@@ -2069,6 +2110,7 @@ msgid "Google Meet Link"
msgstr "Ссылка на Google Meet" msgstr "Ссылка на Google Meet"
#. 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:154
#: lms/lms/doctype/education_detail/education_detail.json #: lms/lms/doctype/education_detail/education_detail.json
msgid "Grade" msgid "Grade"
msgstr "Уровень" msgstr "Уровень"
@@ -2083,6 +2125,10 @@ msgstr "Оценить Задание"
msgid "Grade Type" msgid "Grade Type"
msgstr "Шкала оценок" msgstr "Шкала оценок"
#: frontend/src/components/Assignment.vue:149
msgid "Grading"
msgstr ""
#. Label of the grant_only_once (Check) field in DocType 'LMS Badge' #. Label of the grant_only_once (Check) field in DocType 'LMS Badge'
#: lms/lms/doctype/lms_badge/lms_badge.json #: lms/lms/doctype/lms_badge/lms_badge.json
msgid "Grant only once" msgid "Grant only once"
@@ -2146,7 +2192,7 @@ msgstr "Подсказки"
msgid "Host" msgid "Host"
msgstr "Сервер" msgstr "Сервер"
#: frontend/src/components/LessonHelp.vue:9 #: frontend/src/components/LessonHelp.vue:24
msgid "How to add a Quiz?" msgid "How to add a Quiz?"
msgstr "" msgstr ""
@@ -2168,7 +2214,7 @@ msgstr ""
msgid "I am unavailable" msgid "I am unavailable"
msgstr "Я недоступен" msgstr "Я недоступен"
#: frontend/src/pages/QuizForm.vue:384 #: frontend/src/pages/QuizForm.vue:380
msgid "ID" msgid "ID"
msgstr "" msgstr ""
@@ -2178,7 +2224,7 @@ msgstr ""
msgid "Icon" msgid "Icon"
msgstr "Иконка" msgstr "Иконка"
#: frontend/src/components/LessonHelp.vue:68 #: frontend/src/components/LessonHelp.vue:11
msgid "If Include in Preview is enabled for a lesson then the lesson will also be accessible to non logged in users." msgid "If Include in Preview is enabled for a lesson then the lesson will also be accessible to non logged in users."
msgstr "" msgstr ""
@@ -2261,7 +2307,7 @@ msgstr "Не выполнено"
#. Option for the 'Status' (Select) field in DocType 'Exercise Latest #. Option for the 'Status' (Select) field in DocType 'Exercise Latest
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'Exercise Submission' #. Option for the 'Status' (Select) field in DocType 'Exercise Submission'
#: frontend/src/components/Quiz.vue:166 #: frontend/src/components/Quiz.vue:168
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
#: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json
msgid "Incorrect" msgid "Incorrect"
@@ -2469,7 +2515,7 @@ msgstr "Должность"
msgid "Jobs" msgid "Jobs"
msgstr "Вакансии" msgstr "Вакансии"
#: frontend/src/components/LiveClass.vue:55 #: frontend/src/components/LiveClass.vue:58
#: lms/templates/upcoming_evals.html:15 #: lms/templates/upcoming_evals.html:15
msgid "Join" msgid "Join"
msgstr "" msgstr ""
@@ -2759,7 +2805,7 @@ msgstr "Название урока"
#. Group in Course Chapter's connections #. Group in Course Chapter's connections
#. Label of the lessons (Data) field in DocType 'LMS Course' #. Label of the lessons (Data) field in DocType 'LMS Course'
#: frontend/src/components/CourseCard.vue:34 #: frontend/src/components/CourseCard.vue:34
#: frontend/src/components/CourseCardOverlay.vue:96 #: frontend/src/components/CourseCardOverlay.vue:97
#: lms/lms/doctype/course_chapter/course_chapter.json #: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "Lessons" msgid "Lessons"
@@ -2825,6 +2871,7 @@ msgid "LiveCode URL"
msgstr "" msgstr ""
#: frontend/src/components/Members.vue:106 #: frontend/src/components/Members.vue:106
#: frontend/src/pages/Assignments.vue:71
#: frontend/src/pages/QuizSubmissionList.vue:39 #: frontend/src/pages/QuizSubmissionList.vue:39
#: frontend/src/pages/Quizzes.vue:51 #: frontend/src/pages/Quizzes.vue:51
msgid "Load More" msgid "Load More"
@@ -2854,6 +2901,7 @@ msgstr ""
msgid "Location Preference" msgid "Location Preference"
msgstr "" msgstr ""
#: frontend/src/components/AssignmentBlock.vue:13
#: frontend/src/components/NoPermission.vue:28 #: frontend/src/components/NoPermission.vue:28
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:175 #: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:175
#: frontend/src/pages/Lesson.vue:24 #: frontend/src/pages/Lesson.vue:24
@@ -2913,7 +2961,7 @@ msgstr "Отметить как прочитанное"
#. Label of the marks (Int) field in DocType 'LMS Quiz Result' #. Label of the marks (Int) field in DocType 'LMS Quiz Result'
#: frontend/src/components/Modals/Question.vue:50 #: frontend/src/components/Modals/Question.vue:50
#: frontend/src/components/Modals/Question.vue:99 #: frontend/src/components/Modals/Question.vue:99
#: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:394 #: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:390
#: frontend/src/pages/QuizSubmission.vue:59 #: frontend/src/pages/QuizSubmission.vue:59
#: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json #: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json
#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json
@@ -2970,6 +3018,7 @@ msgstr "Средний:"
#. Label of the member (Link) field in DocType 'LMS Payment' #. Label of the member (Link) field in DocType 'LMS Payment'
#. Label of the member (Link) field in DocType 'LMS Program Member' #. Label of the member (Link) field in DocType 'LMS Program Member'
#. Label of the member (Link) field in DocType 'LMS Quiz Submission' #. Label of the member (Link) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/AssignmentSubmissionList.vue:14
#: frontend/src/pages/QuizSubmission.vue:31 #: frontend/src/pages/QuizSubmission.vue:31
#: frontend/src/pages/QuizSubmissionList.vue:86 #: frontend/src/pages/QuizSubmissionList.vue:86
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
@@ -3140,11 +3189,11 @@ msgstr "Модератор"
msgid "Modified By" msgid "Modified By"
msgstr "Изменено" msgstr "Изменено"
#: lms/lms/api.py:199 #: lms/lms/api.py:201
msgid "Module Name is incorrect or does not exist." msgid "Module Name is incorrect or does not exist."
msgstr "Имя модуля неверно или не существует." msgstr "Имя модуля неверно или не существует."
#: lms/lms/api.py:195 #: lms/lms/api.py:197
msgid "Module is incorrect." msgid "Module is incorrect."
msgstr "Модуль неверный." msgstr "Модуль неверный."
@@ -3173,12 +3222,17 @@ msgid "My calendar"
msgstr "Мой календарь" msgstr "Мой календарь"
#. Option for the 'Event' (Select) field in DocType 'LMS Badge' #. Option for the 'Event' (Select) field in DocType 'LMS Badge'
#: frontend/src/pages/Batches.vue:30 frontend/src/pages/Courses.vue:45 #: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:30
#: frontend/src/pages/Programs.vue:14 lms/lms/doctype/lms_badge/lms_badge.json #: frontend/src/pages/Courses.vue:45 frontend/src/pages/Programs.vue:14
#: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New" msgid "New"
msgstr "" msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:41 #: frontend/src/pages/AssignmentForm.vue:178
msgid "New Assignment"
msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:43
msgid "New Assignment Submission" msgid "New Assignment Submission"
msgstr "Подача нового задания" msgstr "Подача нового задания"
@@ -3214,7 +3268,7 @@ msgstr ""
msgid "New Question" msgid "New Question"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:454 frontend/src/pages/QuizForm.vue:462 #: frontend/src/pages/QuizForm.vue:450 frontend/src/pages/QuizForm.vue:458
#: frontend/src/pages/Quizzes.vue:18 #: frontend/src/pages/Quizzes.vue:18
msgid "New Quiz" msgid "New Quiz"
msgstr "" msgstr ""
@@ -3236,7 +3290,7 @@ msgstr "Новый ответ по теме {0} в курсе {1}"
msgid "New {0}" msgid "New {0}"
msgstr "Новый {0}" msgstr "Новый {0}"
#: frontend/src/components/Quiz.vue:209 frontend/src/pages/Lesson.vue:84 #: frontend/src/components/Quiz.vue:211 frontend/src/pages/Lesson.vue:84
msgid "Next" msgid "Next"
msgstr "" msgstr ""
@@ -3244,7 +3298,7 @@ msgstr ""
msgid "Next Question" msgid "Next Question"
msgstr "Следующий вопрос" msgstr "Следующий вопрос"
#: frontend/src/components/Assessments.vue:66 lms/templates/assessments.html:58 #: frontend/src/components/Assessments.vue:75 lms/templates/assessments.html:58
msgid "No Assessments" msgid "No Assessments"
msgstr "Нет оценок" msgstr "Нет оценок"
@@ -3265,6 +3319,10 @@ msgstr "Нет предстоящих оценок"
msgid "No announcements" msgid "No announcements"
msgstr "Нет объявлений" msgstr "Нет объявлений"
#: frontend/src/pages/Assignments.vue:56
msgid "No assignments found"
msgstr ""
#: frontend/src/pages/Batches.vue:125 #: frontend/src/pages/Batches.vue:125
msgid "No batches found" msgid "No batches found"
msgstr "" msgstr ""
@@ -3293,11 +3351,11 @@ msgstr "Нет рассматриваемых курсов"
msgid "No introduction" msgid "No introduction"
msgstr "Без введения" msgstr "Без введения"
#: frontend/src/pages/Jobs.vue:60 #: frontend/src/pages/Jobs.vue:63
msgid "No jobs posted" msgid "No jobs posted"
msgstr "Вакансии не опубликованы" msgstr "Вакансии не опубликованы"
#: frontend/src/components/LiveClass.vue:61 #: frontend/src/components/LiveClass.vue:71
msgid "No live classes scheduled" msgid "No live classes scheduled"
msgstr "Не запланированы онлайн-курсы" msgstr "Не запланированы онлайн-курсы"
@@ -3313,6 +3371,10 @@ msgstr ""
msgid "No slots available for this date." msgid "No slots available for this date."
msgstr "На эту дату свободных мест нет." msgstr "На эту дату свободных мест нет."
#: frontend/src/pages/AssignmentSubmissionList.vue:67
msgid "No submissions"
msgstr ""
#: frontend/src/components/UpcomingEvaluations.vue:39 #: frontend/src/components/UpcomingEvaluations.vue:39
msgid "No upcoming evaluations." msgid "No upcoming evaluations."
msgstr "Нет предстоящих оценок." msgstr "Нет предстоящих оценок."
@@ -3361,6 +3423,7 @@ msgstr "Нет оценки"
msgid "Not Permitted" msgid "Not Permitted"
msgstr "" msgstr ""
#: frontend/src/components/Assignment.vue:33
#: frontend/src/components/BrandSettings.vue:10 #: frontend/src/components/BrandSettings.vue:10
#: frontend/src/components/PaymentSettings.vue:9 #: frontend/src/components/PaymentSettings.vue:9
#: frontend/src/components/SettingDetails.vue:10 #: frontend/src/components/SettingDetails.vue:10
@@ -3404,7 +3467,7 @@ msgstr "Offline"
msgid "Once again, congratulations on this significant accomplishment." msgid "Once again, congratulations on this significant accomplishment."
msgstr "Еще раз поздравляю с этим значительным достижением." msgstr "Еще раз поздравляю с этим значительным достижением."
#: frontend/src/pages/AssignmentSubmission.vue:17 #: frontend/src/components/Assignment.vue:57
msgid "Once the moderator grades your submission, you'll find the details here." msgid "Once the moderator grades your submission, you'll find the details here."
msgstr "Как только модератор оценит вашу заявку, вы найдете подробную информацию здесь." msgstr "Как только модератор оценит вашу заявку, вы найдете подробную информацию здесь."
@@ -3421,7 +3484,7 @@ msgstr ""
msgid "Only files of type {0} will be accepted." msgid "Only files of type {0} will be accepted."
msgstr "Принимаются только файлы типа {0} ." msgstr "Принимаются только файлы типа {0} ."
#: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:527 #: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:529
msgid "Only image file is allowed." msgid "Only image file is allowed."
msgstr "" msgstr ""
@@ -3550,7 +3613,7 @@ msgid "Pan Number"
msgstr "" msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:116 #: frontend/src/pages/Jobs.vue:119
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Part Time" msgid "Part Time"
msgstr "Неполная занятость" msgstr "Неполная занятость"
@@ -3681,7 +3744,7 @@ msgstr "Процент (например, 70%)"
msgid "Phone Number" msgid "Phone Number"
msgstr "" msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:141 #: frontend/src/components/CourseCardOverlay.vue:145
msgid "Please Login" msgid "Please Login"
msgstr "" msgstr ""
@@ -3701,7 +3764,7 @@ msgstr "Пожалуйста, проверьте свой email для подт
msgid "Please click on the following button to set your new password" msgid "Please click on the following button to set your new password"
msgstr "Нажмите на следующую кнопку, чтобы установить новый пароль." msgstr "Нажмите на следующую кнопку, чтобы установить новый пароль."
#: lms/lms/utils.py:1842 lms/lms/utils.py:1846 #: lms/lms/utils.py:1848 lms/lms/utils.py:1852
msgid "Please complete the previous courses in the program to enroll in this course." msgid "Please complete the previous courses in the program to enroll in this course."
msgstr "" msgstr ""
@@ -3721,8 +3784,8 @@ msgstr ""
msgid "Please enter a title." msgid "Please enter a title."
msgstr "" msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:38 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:40
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:98 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:122
msgid "Please enter a valid URL." msgid "Please enter a valid URL."
msgstr "Введите действительный URL-адрес." msgstr "Введите действительный URL-адрес."
@@ -3730,7 +3793,7 @@ msgstr "Введите действительный URL-адрес."
msgid "Please enter a valid time in the format HH:mm." msgid "Please enter a valid time in the format HH:mm."
msgstr "" msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:92 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:116
msgid "Please enter the URL for assignment submission." msgid "Please enter the URL for assignment submission."
msgstr "Введите URL для отправки задания." msgstr "Введите URL для отправки задания."
@@ -3750,6 +3813,10 @@ msgstr ""
msgid "Please let us know where you heard about us from." msgid "Please let us know where you heard about us from."
msgstr "" msgstr ""
#: frontend/src/components/AssignmentBlock.vue:9
msgid "Please login to access the assignment."
msgstr ""
#: frontend/src/components/QuizBlock.vue:5 #: frontend/src/components/QuizBlock.vue:5
msgid "Please login to access the quiz." msgid "Please login to access the quiz."
msgstr "Пожалуйста, войдите в систему, чтобы получить доступ к тесту." msgstr "Пожалуйста, войдите в систему, чтобы получить доступ к тесту."
@@ -3758,7 +3825,7 @@ msgstr "Пожалуйста, войдите в систему, чтобы по
msgid "Please login to access this page." msgid "Please login to access this page."
msgstr "Пожалуйста, войдите в систему, чтобы получить доступ к этой странице." msgstr "Пожалуйста, войдите в систему, чтобы получить доступ к этой странице."
#: lms/lms/api.py:191 #: lms/lms/api.py:193
msgid "Please login to continue with payment." msgid "Please login to continue with payment."
msgstr "Пожалуйста, войдите в систему, чтобы продолжить оплату." msgstr "Пожалуйста, войдите в систему, чтобы продолжить оплату."
@@ -3795,7 +3862,7 @@ msgstr "Пожалуйста, примите соответствующие ме
msgid "Please upload a SCORM package" msgid "Please upload a SCORM package"
msgstr "" msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:95 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:119
msgid "Please upload the assignment file." msgid "Please upload the assignment file."
msgstr "Пожалуйста, загрузите файл задания." msgstr "Пожалуйста, загрузите файл задания."
@@ -4003,9 +4070,9 @@ msgstr "Опубликована"
#. Label of the question (Text Editor) field in DocType 'LMS Question' #. Label of the question (Text Editor) field in DocType 'LMS Question'
#. Label of the question (Link) field in DocType 'LMS Quiz Question' #. Label of the question (Link) field in DocType 'LMS Quiz Question'
#. Label of the question (Text) field in DocType 'LMS Quiz Result' #. Label of the question (Text) field in DocType 'LMS Quiz Result'
#: frontend/src/components/Assignment.vue:17
#: frontend/src/components/Modals/Question.vue:38 #: frontend/src/components/Modals/Question.vue:38
#: frontend/src/pages/AssignmentSubmission.vue:26 #: frontend/src/pages/AssignmentForm.vue:45 frontend/src/pages/QuizForm.vue:385
#: frontend/src/pages/QuizForm.vue:389
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment/lms_assignment.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
@@ -4042,7 +4109,7 @@ msgstr ""
msgid "Question {0}" msgid "Question {0}"
msgstr "Вопрос {0}:" msgstr "Вопрос {0}:"
#: frontend/src/components/Quiz.vue:186 #: frontend/src/components/Quiz.vue:188
msgid "Question {0} of {1}" msgid "Question {0} of {1}"
msgstr "Вопрос {0} из {1}" msgstr "Вопрос {0} из {1}"
@@ -4051,7 +4118,7 @@ msgstr "Вопрос {0} из {1}"
msgid "Questions" msgid "Questions"
msgstr "Вопросы" msgstr "Вопросы"
#: frontend/src/pages/QuizForm.vue:431 #: frontend/src/pages/QuizForm.vue:427
msgid "Questions deleted successfully" msgid "Questions deleted successfully"
msgstr "" msgstr ""
@@ -4079,7 +4146,7 @@ msgstr "Подача теста"
msgid "Quiz Submissions" msgid "Quiz Submissions"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:223 #: frontend/src/components/Quiz.vue:225
msgid "Quiz Summary" msgid "Quiz Summary"
msgstr "Краткое содержание теста" msgstr "Краткое содержание теста"
@@ -4088,7 +4155,7 @@ msgstr "Краткое содержание теста"
msgid "Quiz Title" msgid "Quiz Title"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:343 #: frontend/src/pages/QuizForm.vue:339
msgid "Quiz created successfully" msgid "Quiz created successfully"
msgstr "" msgstr ""
@@ -4096,7 +4163,7 @@ msgstr ""
msgid "Quiz is not available to Guest users. Please login to continue." msgid "Quiz is not available to Guest users. Please login to continue."
msgstr "Тест недоступен для гостевых пользователей. Пожалуйста, войдите, чтобы продолжить." msgstr "Тест недоступен для гостевых пользователей. Пожалуйста, войдите, чтобы продолжить."
#: frontend/src/pages/QuizForm.vue:362 #: frontend/src/pages/QuizForm.vue:358
msgid "Quiz updated successfully" msgid "Quiz updated successfully"
msgstr "" msgstr ""
@@ -4105,7 +4172,7 @@ msgstr ""
msgid "Quiz will appear at the bottom of the lesson." msgid "Quiz will appear at the bottom of the lesson."
msgstr "Тест появится в конце урока." msgstr "Тест появится в конце урока."
#: frontend/src/pages/QuizForm.vue:442 frontend/src/pages/Quizzes.vue:138 #: frontend/src/pages/QuizForm.vue:438 frontend/src/pages/Quizzes.vue:138
#: frontend/src/pages/Quizzes.vue:148 #: frontend/src/pages/Quizzes.vue:148
msgid "Quizzes" msgid "Quizzes"
msgstr "" msgstr ""
@@ -4113,7 +4180,7 @@ msgstr ""
#. Label of the rating (Rating) field in DocType 'LMS Certificate Evaluation' #. Label of the rating (Rating) field in DocType 'LMS Certificate Evaluation'
#. 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:108 #: frontend/src/components/CourseCardOverlay.vue:110
#: frontend/src/components/Modals/Event.vue:86 #: frontend/src/components/Modals/Event.vue:86
#: frontend/src/components/Modals/ReviewModal.vue:20 #: frontend/src/components/Modals/ReviewModal.vue:20
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -4127,10 +4194,6 @@ msgstr "Рейтинг"
msgid "Rating cannot be 0" msgid "Rating cannot be 0"
msgstr "Рейтинг не может быть 0" msgstr "Рейтинг не может быть 0"
#: frontend/src/pages/AssignmentSubmission.vue:30
msgid "Read the question carefully before attempting the assignment."
msgstr "Прежде чем приступить к выполнению задания, внимательно прочитайте вопрос."
#. Option for the 'Stage' (Select) field in DocType 'LMS Batch Old' #. Option for the 'Stage' (Select) field in DocType 'LMS Batch Old'
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
msgid "Ready" msgid "Ready"
@@ -4309,15 +4372,15 @@ msgstr ""
msgid "Saturday" msgid "Saturday"
msgstr "Суббота" msgstr "Суббота"
#: frontend/src/components/AssessmentPlugin.vue:34
#: frontend/src/components/Assignment.vue:43
#: frontend/src/components/Controls/CodeEditor.vue:25 #: frontend/src/components/Controls/CodeEditor.vue:25
#: frontend/src/components/Modals/Event.vue:101 #: frontend/src/components/Modals/Event.vue:101
#: frontend/src/components/Modals/Event.vue:129 #: frontend/src/components/Modals/Event.vue:129
#: frontend/src/components/QuizPlugin.vue:23 #: frontend/src/pages/AssignmentForm.vue:21 frontend/src/pages/BatchForm.vue:8
#: frontend/src/pages/AssignmentSubmission.vue:7 #: frontend/src/pages/CourseForm.vue:20 frontend/src/pages/JobCreation.vue:8
#: frontend/src/pages/BatchForm.vue:8 frontend/src/pages/CourseForm.vue:20 #: frontend/src/pages/LessonForm.vue:14 frontend/src/pages/ProgramForm.vue:7
#: frontend/src/pages/JobCreation.vue:8 frontend/src/pages/LessonForm.vue:14 #: frontend/src/pages/QuizForm.vue:34 frontend/src/pages/QuizSubmission.vue:14
#: frontend/src/pages/ProgramForm.vue:7 frontend/src/pages/QuizForm.vue:34
#: frontend/src/pages/QuizSubmission.vue:14
#: lms/public/js/common_functions.js:405 #: lms/public/js/common_functions.js:405
msgid "Save" msgid "Save"
msgstr "" msgstr ""
@@ -4359,6 +4422,10 @@ msgstr "Оценка из"
msgid "Search" msgid "Search"
msgstr "" msgstr ""
#: frontend/src/pages/Assignments.vue:25
msgid "Search by title"
msgstr ""
#: frontend/src/components/Controls/IconPicker.vue:36 #: frontend/src/components/Controls/IconPicker.vue:36
msgid "Search for an icon" msgid "Search for an icon"
msgstr "Поиск значка" msgstr "Поиск значка"
@@ -4384,7 +4451,7 @@ msgstr "Осталось мест"
msgid "Select a question" msgid "Select a question"
msgstr "" msgstr ""
#: frontend/src/components/QuizPlugin.vue:17 #: frontend/src/components/AssessmentPlugin.vue:21
msgid "Select a quiz" msgid "Select a quiz"
msgstr "" msgstr ""
@@ -4392,6 +4459,10 @@ msgstr ""
msgid "Select a slot" msgid "Select a slot"
msgstr "" msgstr ""
#: frontend/src/components/AssessmentPlugin.vue:28
msgid "Select an assignment"
msgstr ""
#. Label of the send_calendar_invite_for_evaluations (Check) field in DocType #. Label of the send_calendar_invite_for_evaluations (Check) field in DocType
#. 'LMS Settings' #. 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -4583,7 +4654,7 @@ msgstr "Персонал"
msgid "Stage" msgid "Stage"
msgstr "Состояние" msgstr "Состояние"
#: frontend/src/components/LiveClass.vue:46 frontend/src/components/Quiz.vue:65 #: frontend/src/components/LiveClass.vue:50 frontend/src/components/Quiz.vue:65
#: lms/templates/quiz/quiz.html:39 #: lms/templates/quiz/quiz.html:39
msgid "Start" msgid "Start"
msgstr "" msgstr ""
@@ -4664,6 +4735,7 @@ msgstr "Статистика"
#. Label of the status (Select) field in DocType 'LMS Course Progress' #. Label of the status (Select) field in DocType 'LMS Course Progress'
#. Label of the status (Select) field in DocType 'LMS Mentor Request' #. Label of the status (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:91 #: frontend/src/components/Modals/Event.vue:91
#: frontend/src/pages/AssignmentSubmissionList.vue:19
#: frontend/src/pages/JobCreation.vue:41 #: frontend/src/pages/JobCreation.vue:41
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/cohort/cohort.json
@@ -4724,7 +4796,7 @@ msgstr "Курс {0} уже добавлен в группу."
msgid "Students" msgid "Students"
msgstr "Студенты" msgstr "Студенты"
#: frontend/src/components/BatchStudents.vue:282 #: frontend/src/components/BatchStudents.vue:310
msgid "Students deleted successfully" msgid "Students deleted successfully"
msgstr "" msgstr ""
@@ -4746,19 +4818,24 @@ msgstr "Подруппа"
msgid "Subject" msgid "Subject"
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:40 #: frontend/src/components/Assignment.vue:29
msgid "Submission" msgid "Submission"
msgstr "Сданные" msgstr "Сданные"
#: frontend/src/pages/QuizForm.vue:30 #: frontend/src/pages/AssignmentForm.vue:17 frontend/src/pages/QuizForm.vue:30
msgid "Submission List" msgid "Submission List"
msgstr "" msgstr ""
#: frontend/src/components/Assignment.vue:10
#: frontend/src/components/Assignment.vue:13
msgid "Submission by"
msgstr ""
#: frontend/src/components/Modals/AssessmentModal.vue:9 #: frontend/src/components/Modals/AssessmentModal.vue:9
#: frontend/src/components/Modals/BatchCourseModal.vue:9 #: frontend/src/components/Modals/BatchCourseModal.vue:9
#: frontend/src/components/Modals/EvaluationModal.vue:9 #: frontend/src/components/Modals/EvaluationModal.vue:9
#: frontend/src/components/Modals/Question.vue:338 #: frontend/src/components/Modals/Question.vue:338
#: frontend/src/components/Quiz.vue:214 lms/templates/assignment.html:9 #: frontend/src/components/Quiz.vue:216 lms/templates/assignment.html:9
#: lms/templates/livecode/extension_footer.html:25 #: lms/templates/livecode/extension_footer.html:25
#: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163 #: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163
#: lms/www/new-sign-up.html:32 #: lms/www/new-sign-up.html:32
@@ -4774,10 +4851,12 @@ msgstr "Отправьте свое резюме, чтобы продолжит
msgid "Submitted {0}" msgid "Submitted {0}"
msgstr "Отправлено {0}" msgstr "Отправлено {0}"
#: frontend/src/components/Assignment.vue:316
#: frontend/src/components/BatchCourses.vue:150 #: frontend/src/components/BatchCourses.vue:150
#: frontend/src/components/BatchOverlay.vue:135 #: frontend/src/components/BatchOverlay.vue:135
#: frontend/src/components/BatchStudents.vue:282 #: frontend/src/components/BatchStudents.vue:310
#: frontend/src/components/CourseCardOverlay.vue:161 #: frontend/src/components/BatchStudents.vue:409
#: frontend/src/components/CourseCardOverlay.vue:165
#: frontend/src/components/Modals/AnnouncementModal.vue:99 #: frontend/src/components/Modals/AnnouncementModal.vue:99
#: frontend/src/components/Modals/AssessmentModal.vue:73 #: frontend/src/components/Modals/AssessmentModal.vue:73
#: frontend/src/components/Modals/BulkCertificates.vue:121 #: frontend/src/components/Modals/BulkCertificates.vue:121
@@ -4787,11 +4866,12 @@ msgstr "Отправлено {0}"
#: frontend/src/components/Modals/Event.vue:310 #: frontend/src/components/Modals/Event.vue:310
#: frontend/src/components/Modals/Question.vue:264 #: frontend/src/components/Modals/Question.vue:264
#: frontend/src/components/Modals/Question.vue:315 #: frontend/src/components/Modals/Question.vue:315
#: frontend/src/pages/AssignmentForm.vue:155
#: frontend/src/pages/CourseForm.vue:461 frontend/src/pages/ProgramForm.vue:229 #: frontend/src/pages/CourseForm.vue:461 frontend/src/pages/ProgramForm.vue:229
#: frontend/src/pages/ProgramForm.vue:251 #: frontend/src/pages/ProgramForm.vue:251
#: frontend/src/pages/ProgramForm.vue:272 #: frontend/src/pages/ProgramForm.vue:272
#: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:343 #: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:339
#: frontend/src/pages/QuizForm.vue:362 frontend/src/pages/QuizForm.vue:431 #: frontend/src/pages/QuizForm.vue:358 frontend/src/pages/QuizForm.vue:427
msgid "Success" msgid "Success"
msgstr "" msgstr ""
@@ -4809,7 +4889,7 @@ msgstr "Резюме"
msgid "Sunday" msgid "Sunday"
msgstr "Воскресенье" msgstr "Воскресенье"
#: lms/lms/api.py:952 #: lms/lms/api.py:954
msgid "Suspicious pattern found in {0}: {1}" msgid "Suspicious pattern found in {0}: {1}"
msgstr "" msgstr ""
@@ -4924,6 +5004,10 @@ msgstr "Текст"
msgid "Thanks and Regards" msgid "Thanks and Regards"
msgstr "Спасибо и с наилучшими пожеланиями" msgstr "Спасибо и с наилучшими пожеланиями"
#: lms/lms/utils.py:1755
msgid "The batch is full. Please contact the Administrator."
msgstr ""
#: lms/templates/emails/lms_course_interest.html:5 #: lms/templates/emails/lms_course_interest.html:5
msgid "The course {0} is now available on {1}." msgid "The course {0} is now available on {1}."
msgstr "Курс {0} теперь доступен на {1}." msgstr "Курс {0} теперь доступен на {1}."
@@ -4964,14 +5048,22 @@ msgstr ""
msgid "There are no seats available in this batch." msgid "There are no seats available in this batch."
msgstr "В этой группе нет свободных мест." msgstr "В этой группе нет свободных мест."
#: frontend/src/components/BatchStudents.vue:165 #: frontend/src/components/BatchStudents.vue:182
msgid "There are no students in this batch." msgid "There are no students in this batch."
msgstr "В этой группе нет студентов." msgstr "В этой группе нет студентов."
#: frontend/src/pages/AssignmentSubmissionList.vue:70
msgid "There are no submissions for this assignment."
msgstr ""
#: lms/templates/course_list.html:14 #: lms/templates/course_list.html:14
msgid "There are no {0} on this site." msgid "There are no {0} on this site."
msgstr "На этом сайте нет {0} ." msgstr "На этом сайте нет {0} ."
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:82
msgid "There has been an update on your submission for assignment {0}"
msgstr ""
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:42 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:42
msgid "There has been an update on your submission. You have got a score of {0} for the quiz {1}" msgid "There has been an update on your submission. You have got a score of {0} for the quiz {1}"
msgstr "" msgstr ""
@@ -4991,11 +5083,15 @@ msgstr "Этот бейдж был вручен {0} {1}."
msgid "This certificate does no expire" msgid "This certificate does no expire"
msgstr "Этот сертификат является бессрочным" msgstr "Этот сертификат является бессрочным"
#: frontend/src/components/CourseCardOverlay.vue:91 #: frontend/src/components/LiveClass.vue:64
msgid "This class has ended"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:92
msgid "This course has:" msgid "This course has:"
msgstr "" msgstr ""
#: lms/lms/utils.py:1600 #: lms/lms/utils.py:1606
msgid "This course is free." msgid "This course is free."
msgstr "Этот курс бесплатный." msgstr "Этот курс бесплатный."
@@ -5098,10 +5194,12 @@ msgstr "Сроки:"
#. Label of the title (Data) field in DocType 'Work Experience' #. Label of the title (Data) field in DocType 'Work Experience'
#: frontend/src/components/Modals/DiscussionModal.vue:18 #: frontend/src/components/Modals/DiscussionModal.vue:18
#: frontend/src/components/Modals/LiveClassModal.vue:23 #: frontend/src/components/Modals/LiveClassModal.vue:23
#: frontend/src/pages/BatchForm.vue:20 frontend/src/pages/CourseForm.vue:32 #: frontend/src/pages/AssignmentForm.vue:32
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/ProgramForm.vue:11 #: frontend/src/pages/Assignments.vue:152 frontend/src/pages/BatchForm.vue:20
#: frontend/src/pages/Programs.vue:118 frontend/src/pages/QuizForm.vue:48 #: frontend/src/pages/CourseForm.vue:32 frontend/src/pages/JobCreation.vue:20
#: frontend/src/pages/Quizzes.vue:116 lms/lms/doctype/cohort/cohort.json #: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:118
#: frontend/src/pages/QuizForm.vue:48 frontend/src/pages/Quizzes.vue:116
#: lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/course_chapter/course_chapter.json #: lms/lms/doctype/course_chapter/course_chapter.json
@@ -5137,11 +5235,11 @@ msgstr ""
msgid "To Date" msgid "To Date"
msgstr "" msgstr ""
#: lms/lms/utils.py:1611 #: lms/lms/utils.py:1617
msgid "To join this batch, please contact the Administrator." msgid "To join this batch, please contact the Administrator."
msgstr "Чтобы присоединиться к этой группе, свяжитесь с администратором." msgstr "Чтобы присоединиться к этой группе, свяжитесь с администратором."
#: frontend/src/components/LessonHelp.vue:34 #: frontend/src/components/LessonHelp.vue:49
msgid "To upload Image, Video, Audio or PDF from your system, click on the add icon and select upload from the menu. Then choose the file you want to add to the lesson and it gets added to your lesson." msgid "To upload Image, Video, Audio or PDF from your system, click on the add icon and select upload from the menu. Then choose the file you want to add to the lesson and it gets added to your lesson."
msgstr "" msgstr ""
@@ -5169,7 +5267,7 @@ msgstr "Всего регистраций"
msgid "Travel" msgid "Travel"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:252 lms/templates/quiz/quiz.html:131 #: frontend/src/components/Quiz.vue:254 lms/templates/quiz/quiz.html:131
msgid "Try Again" msgid "Try Again"
msgstr "Попробовать снова" msgstr "Попробовать снова"
@@ -5191,6 +5289,8 @@ msgstr "Twitter"
#. Label of the type (Select) field in DocType 'LMS Quiz Question' #. Label of the type (Select) field in DocType 'LMS Quiz Question'
#: frontend/src/components/Modals/AssessmentModal.vue:22 #: frontend/src/components/Modals/AssessmentModal.vue:22
#: frontend/src/components/Modals/Question.vue:54 #: frontend/src/components/Modals/Question.vue:54
#: frontend/src/pages/AssignmentForm.vue:39
#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:157
#: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:16 #: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:16
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment/lms_assignment.json
@@ -5201,7 +5301,7 @@ msgstr "Twitter"
msgid "Type" msgid "Type"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:583 #: frontend/src/components/Quiz.vue:589
msgid "Type your answer" msgid "Type your answer"
msgstr "" msgstr ""
@@ -5282,11 +5382,11 @@ msgstr ""
msgid "Upload" msgid "Upload"
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:69 #: frontend/src/components/Assignment.vue:78
msgid "Upload File" msgid "Upload File"
msgstr "Загрузить файл" msgstr "Загрузить файл"
#: frontend/src/pages/AssignmentSubmission.vue:68 #: frontend/src/components/Assignment.vue:77
msgid "Uploading {0}%" msgid "Uploading {0}%"
msgstr "Загрузка {0}%" msgstr "Загрузка {0}%"
@@ -5404,7 +5504,7 @@ msgstr "Среда"
msgid "Welcome to {0}!" msgid "Welcome to {0}!"
msgstr "Добро пожаловать в {0}!" msgstr "Добро пожаловать в {0}!"
#: frontend/src/components/LessonHelp.vue:63 #: frontend/src/components/LessonHelp.vue:6
msgid "What does include in preview mean?" msgid "What does include in preview mean?"
msgstr "" msgstr ""
@@ -5453,7 +5553,7 @@ msgstr "Написать отзыв"
msgid "Write a review" msgid "Write a review"
msgstr "Написать отзыв" msgstr "Написать отзыв"
#: frontend/src/pages/AssignmentSubmission.vue:102 #: frontend/src/components/Assignment.vue:120
msgid "Write your answer here" msgid "Write your answer here"
msgstr "Напишите свой ответ здесь" msgstr "Напишите свой ответ здесь"
@@ -5461,11 +5561,11 @@ msgstr "Напишите свой ответ здесь"
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}."
msgstr "У вас уже есть оценка {0} в {1} для курса {2}." msgstr "У вас уже есть оценка {0} в {1} для курса {2}."
#: lms/lms/api.py:215 #: lms/lms/api.py:217
msgid "You are already enrolled for this batch." msgid "You are already enrolled for this batch."
msgstr "Вы уже зачислены в эту группу." msgstr "Вы уже зачислены в эту группу."
#: lms/lms/api.py:207 #: lms/lms/api.py:209
msgid "You are already enrolled for this course." msgid "You are already enrolled for this course."
msgstr "Вы уже зачислены на этот курс." msgstr "Вы уже зачислены на этот курс."
@@ -5530,7 +5630,7 @@ msgstr "У вас нет уведомлений."
msgid "You got" msgid "You got"
msgstr "Вы получили" msgstr "Вы получили"
#: frontend/src/components/Quiz.vue:234 #: frontend/src/components/Quiz.vue:236
#, python-format #, python-format
msgid "You got {0}% correct answers with a score of {1} out of {2}" msgid "You got {0}% correct answers with a score of {1} out of {2}"
msgstr "Вы получили {0}% правильных ответов с оценкой {1} из {2}" msgstr "Вы получили {0}% правильных ответов с оценкой {1} из {2}"
@@ -5551,7 +5651,7 @@ msgstr "Вы уже просмотрели этот курс"
msgid "You have been enrolled in this batch" msgid "You have been enrolled in this batch"
msgstr "" msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:162 #: frontend/src/components/CourseCardOverlay.vue:166
msgid "You have been enrolled in this course" msgid "You have been enrolled in this course"
msgstr "" msgstr ""
@@ -5559,6 +5659,10 @@ msgstr ""
msgid "You have got a score of {0} for the quiz {1}" msgid "You have got a score of {0} for the quiz {1}"
msgstr "" msgstr ""
#: frontend/src/pages/Assignments.vue:60
msgid "You have not created any assignments yet. To create a new assignment, click on the \"New\" button above."
msgstr ""
#: frontend/src/pages/Quizzes.vue:65 #: frontend/src/pages/Quizzes.vue:65
msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above." msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above."
msgstr "" msgstr ""
@@ -5571,7 +5675,7 @@ msgstr "Вы выбрали получение уведомлений об эт
msgid "You haven't enrolled for any courses" msgid "You haven't enrolled for any courses"
msgstr "Вы не записались ни на один курс" msgstr "Вы не записались ни на один курс"
#: frontend/src/components/CourseCardOverlay.vue:142 #: frontend/src/components/CourseCardOverlay.vue:146
msgid "You need to login first to enroll for this course" msgid "You need to login first to enroll for this course"
msgstr "" msgstr ""
@@ -5584,7 +5688,7 @@ msgstr "Чтобы пройти тест, вам нужно будет дать
msgid "You've applied to become a mentor for this course. Your request is currently under review." msgid "You've applied to become a mentor for this course. Your request is currently under review."
msgstr "Вы подали заявку на должность наставника этого курса. Ваш запрос в настоящее время находится на рассмотрении." msgstr "Вы подали заявку на должность наставника этого курса. Ваш запрос в настоящее время находится на рассмотрении."
#: frontend/src/pages/AssignmentSubmission.vue:15 #: frontend/src/components/Assignment.vue:55
msgid "You've successfully submitted the assignment." msgid "You've successfully submitted the assignment."
msgstr "Вы успешно отправили задание." msgstr "Вы успешно отправили задание."
@@ -5628,7 +5732,7 @@ msgstr "Ваш запрос на присоединение к нам в кач
msgid "Your score is" msgid "Your score is"
msgstr "Ваш результат:" msgstr "Ваш результат:"
#: frontend/src/components/Quiz.vue:227 #: frontend/src/components/Quiz.vue:229
msgid "Your submission has been successfully saved. The instructor will review and grade it shortly, and you'll be notified of your final result." msgid "Your submission has been successfully saved. The instructor will review and grade it shortly, and you'll be notified of your final result."
msgstr "" msgstr ""
@@ -5677,7 +5781,7 @@ msgstr "из"
msgid "posted by" msgid "posted by"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:390 #: frontend/src/pages/QuizForm.vue:386
msgid "question_detail" msgid "question_detail"
msgstr "" msgstr ""
@@ -5693,7 +5797,7 @@ msgstr "звезды"
msgid "you can" msgid "you can"
msgstr "вы можете" msgstr "вы можете"
#: lms/lms/api.py:749 lms/lms/api.py:757 #: lms/lms/api.py:751 lms/lms/api.py:759
msgid "{0} Settings not found" msgid "{0} Settings not found"
msgstr "" msgstr ""

File diff suppressed because it is too large Load Diff

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-12-27 16:04+0000\n" "POT-Creation-Date: 2025-01-03 16:04+0000\n"
"PO-Revision-Date: 2024-12-31 03:29\n" "PO-Revision-Date: 2025-01-07 04:09\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"
@@ -156,7 +156,7 @@ msgstr ""
msgid "Add a new question" msgid "Add a new question"
msgstr "Yeni Soru Ekle" msgstr "Yeni Soru Ekle"
#: frontend/src/components/QuizPlugin.vue:11 #: frontend/src/components/AssessmentPlugin.vue:11
msgid "Add a quiz to your lesson" msgid "Add a quiz to your lesson"
msgstr "Dersinize bir sınav ekleyin" msgstr "Dersinize bir sınav ekleyin"
@@ -164,6 +164,10 @@ msgstr "Dersinize bir sınav ekleyin"
msgid "Add an assessment" msgid "Add an assessment"
msgstr "Bir değerlendirme ekleyin" msgstr "Bir değerlendirme ekleyin"
#: frontend/src/components/AssessmentPlugin.vue:14
msgid "Add an assignment to your lesson"
msgstr ""
#: frontend/src/components/Modals/Question.vue:18 #: frontend/src/components/Modals/Question.vue:18
msgid "Add an existing question" msgid "Add an existing question"
msgstr "Mevcut bir soruyu ekle" msgstr "Mevcut bir soruyu ekle"
@@ -176,7 +180,7 @@ msgstr "Bu soru için en azından bir olası cevap ekleyin: {0}"
msgid "Add web page to sidebar" msgid "Add web page to sidebar"
msgstr "Web sayfasını kenar çubuğuna ekle" msgstr "Web sayfasını kenar çubuğuna ekle"
#: frontend/src/pages/AssignmentSubmission.vue:44 #: frontend/src/components/Assignment.vue:65
msgid "Add your assignment as {0}" msgid "Add your assignment as {0}"
msgstr "Ödevinizi {0} olarak ekleyin" msgstr "Ödevinizi {0} olarak ekleyin"
@@ -393,6 +397,8 @@ msgstr "Ata"
#. Label of the section_break_16 (Section Break) field in DocType 'Course #. Label of the section_break_16 (Section Break) field in DocType 'Course
#. Lesson' #. Lesson'
#. Label of the assignment (Link) field in DocType 'LMS Assignment Submission' #. Label of the assignment (Link) field in DocType 'LMS Assignment Submission'
#: frontend/src/pages/AssignmentSubmissionList.vue:12
#: frontend/src/utils/assignment.js:25
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/templates/assignment.html:3 #: lms/templates/assignment.html:3
@@ -417,15 +423,23 @@ msgstr "Ödev Gönderim Şablonu"
msgid "Assignment Title" msgid "Assignment Title"
msgstr "Ödev Başlığı" msgstr "Ödev Başlığı"
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:31 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:33
msgid "Assignment for Lesson {0} by {1} already exists." msgid "Assignment for Lesson {0} by {1} already exists."
msgstr "{1} tarafından verilen {0} Dersi için ödev zaten mevcut." msgstr "{1} tarafından verilen {0} Dersi için ödev zaten mevcut."
#: frontend/src/pages/AssignmentForm.vue:155
msgid "Assignment saved successfully"
msgstr ""
#. Description of the 'Question' (Small Text) field in DocType 'Course Lesson' #. Description of the 'Question' (Small Text) field in DocType 'Course Lesson'
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Assignment will appear at the bottom of the lesson." msgid "Assignment will appear at the bottom of the lesson."
msgstr "Ödev dersin alt kısmında görünecektir." msgstr "Ödev dersin alt kısmında görünecektir."
#: frontend/src/pages/AssignmentForm.vue:174
msgid "Assignments"
msgstr "Atamalar"
#: lms/lms/doctype/lms_question/lms_question.py:43 #: lms/lms/doctype/lms_question/lms_question.py:43
msgid "At least one option must be correct for this question." msgid "At least one option must be correct for this question."
msgstr "Bu soruda en az bir seçeneğin doğru olması gerekmektedir." msgstr "Bu soruda en az bir seçeneğin doğru olması gerekmektedir."
@@ -746,6 +760,10 @@ msgstr "Sertifikalı Katılımcılar"
msgid "Change" msgid "Change"
msgstr "Değiştir" msgstr "Değiştir"
#: frontend/src/components/Assignment.vue:316
msgid "Changes saved successfully"
msgstr ""
#. Label of the chapter (Link) field in DocType 'Chapter Reference' #. Label of the chapter (Link) field in DocType 'Chapter Reference'
#. Label of the chapter (Link) field in DocType 'LMS Course Progress' #. Label of the chapter (Link) field in DocType 'LMS Course Progress'
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
@@ -774,7 +792,7 @@ msgstr ""
msgid "Chapters" msgid "Chapters"
msgstr "Bölümler" msgstr "Bölümler"
#: frontend/src/components/Quiz.vue:201 lms/templates/quiz/quiz.html:120 #: frontend/src/components/Quiz.vue:203 lms/templates/quiz/quiz.html:120
msgid "Check" msgid "Check"
msgstr "Kontrol et" msgstr "Kontrol et"
@@ -797,7 +815,7 @@ msgstr "Kursları Kontrol Et"
msgid "Choices" msgid "Choices"
msgstr "Seçimler" msgstr "Seçimler"
#: frontend/src/components/Quiz.vue:581 lms/templates/quiz/quiz.html:53 #: frontend/src/components/Quiz.vue:587 lms/templates/quiz/quiz.html:53
msgid "Choose all answers that apply" msgid "Choose all answers that apply"
msgstr "Uygulanabilir tüm cevapları seçin" msgstr "Uygulanabilir tüm cevapları seçin"
@@ -805,7 +823,7 @@ msgstr "Uygulanabilir tüm cevapları seçin"
msgid "Choose an icon" msgid "Choose an icon"
msgstr "Bir simge seçimi" msgstr "Bir simge seçimi"
#: frontend/src/components/Quiz.vue:582 lms/templates/quiz/quiz.html:53 #: frontend/src/components/Quiz.vue:588 lms/templates/quiz/quiz.html:53
msgid "Choose one answer" msgid "Choose one answer"
msgstr "Bir cevap seçin" msgstr "Bir cevap seçin"
@@ -814,12 +832,16 @@ msgstr "Bir cevap seçin"
msgid "City" msgid "City"
msgstr "Şehir" msgstr "Şehir"
#: frontend/src/components/Controls/Link.vue:49
msgid "Clear"
msgstr "Açık"
#. Option for the 'Role Preference' (Select) field in DocType 'User' #. Option for the 'Role Preference' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
msgid "Clearly Defined Role" msgid "Clearly Defined Role"
msgstr "" msgstr ""
#: frontend/src/components/LessonHelp.vue:15 #: frontend/src/components/LessonHelp.vue:30
msgid "Click on the add icon in the editor and select Quiz from the menu. It opens up a dialog, where you can either select a quiz from the list or create a new quiz. When you select the Create New option it redirects you to the quiz creation page." msgid "Click on the add icon in the editor and select Quiz from the menu. It opens up a dialog, where you can either select a quiz from the list or create a new quiz. When you select the Create New option it redirects you to the quiz creation page."
msgstr "" msgstr ""
@@ -917,6 +939,7 @@ msgstr "Renk"
#. Label of the comments (Small Text) field in DocType 'LMS Assignment #. Label of the comments (Small Text) field in DocType 'LMS Assignment
#. Submission' #. Submission'
#. Label of the comments (Small Text) field in DocType 'LMS Mentor Request' #. Label of the comments (Small Text) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Assignment.vue:161
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
#: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
@@ -924,6 +947,10 @@ msgstr "Renk"
msgid "Comments" msgid "Comments"
msgstr "Yorumlar" msgstr "Yorumlar"
#: frontend/src/components/Assignment.vue:139
msgid "Comments by Evaluator"
msgstr ""
#. Label of the company (Data) field in DocType 'LMS Job Application' #. Label of the company (Data) field in DocType 'LMS Job Application'
#. Label of the company (Data) field in DocType 'Work Experience' #. Label of the company (Data) field in DocType 'Work Experience'
#: lms/job/doctype/lms_job_application/lms_job_application.json #: lms/job/doctype/lms_job_application/lms_job_application.json
@@ -986,7 +1013,7 @@ msgstr "Kayıt İşlemini Tamamlayın"
msgid "Completed" msgid "Completed"
msgstr "Tamamlandı" msgstr "Tamamlandı"
#: frontend/src/components/BatchStudents.vue:325 #: frontend/src/components/BatchStudents.vue:353
msgid "Completed by Students" msgid "Completed by Students"
msgstr "" msgstr ""
@@ -1036,7 +1063,7 @@ msgid "Continue Learning"
msgstr "Öğrenmeye Devam Et" msgstr "Öğrenmeye Devam Et"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:117 #: frontend/src/pages/Jobs.vue:120
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Contract" msgid "Contract"
msgstr "Sözleşme" msgstr "Sözleşme"
@@ -1045,7 +1072,7 @@ msgstr "Sözleşme"
msgid "Cookie Policy" msgid "Cookie Policy"
msgstr "Çerez Politikası" msgstr "Çerez Politikası"
#: frontend/src/components/LessonHelp.vue:53 #: frontend/src/components/LessonHelp.vue:68
msgid "Copy the URL of the video from YouTube and paste it in the editor." msgid "Copy the URL of the video from YouTube and paste it in the editor."
msgstr "" msgstr ""
@@ -1057,7 +1084,7 @@ msgstr "Kurumsal Organizasyon"
#. Option for the 'Status' (Select) field in DocType 'Exercise Latest #. Option for the 'Status' (Select) field in DocType 'Exercise Latest
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'Exercise Submission' #. Option for the 'Status' (Select) field in DocType 'Exercise Submission'
#: frontend/src/components/Quiz.vue:161 #: frontend/src/components/Quiz.vue:163
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
#: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json
msgid "Correct" msgid "Correct"
@@ -1197,7 +1224,7 @@ msgstr "Kurs Listesi"
msgid "Course Name" msgid "Course Name"
msgstr "Kurs Adı" msgstr "Kurs Adı"
#: frontend/src/pages/CourseDetail.vue:74 #: frontend/src/pages/CourseDetail.vue:76
msgid "Course Outline" msgid "Course Outline"
msgstr "" msgstr ""
@@ -1322,6 +1349,10 @@ msgstr ""
msgid "Create a new question" msgid "Create a new question"
msgstr "Yeni bir soru oluştur" msgstr "Yeni bir soru oluştur"
#: frontend/src/pages/Assignments.vue:163
msgid "Created"
msgstr "Oluşturdu"
#. Label of the currency (Link) field in DocType 'Web Form' #. Label of the currency (Link) field in DocType 'Web Form'
#. Label of the currency (Link) field in DocType 'LMS Batch' #. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course' #. Label of the currency (Link) field in DocType 'LMS Course'
@@ -1487,8 +1518,8 @@ msgid "Desk"
msgstr "" msgstr ""
#: frontend/src/components/Modals/DiscussionModal.vue:22 #: frontend/src/components/Modals/DiscussionModal.vue:22
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:28 #: frontend/src/pages/AssignmentForm.vue:27 frontend/src/pages/BatchForm.vue:14
#: frontend/src/pages/QuizForm.vue:42 #: frontend/src/pages/CourseForm.vue:28 frontend/src/pages/QuizForm.vue:42
msgid "Details" msgid "Details"
msgstr "Ayrıntılar" msgstr "Ayrıntılar"
@@ -1619,6 +1650,10 @@ msgstr "E-posta Gönderildi"
msgid "Email Templates" msgid "Email Templates"
msgstr "E-Posta Şablonları" msgstr "E-Posta Şablonları"
#: frontend/src/components/BatchStudents.vue:409
msgid "Email copied to clipboard"
msgstr ""
#. Label of the show_emails (Check) field in DocType 'LMS Settings' #. Label of the show_emails (Check) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Emails" msgid "Emails"
@@ -1699,8 +1734,8 @@ msgid "Enroll Now"
msgstr "Hemen Kaydol" msgstr "Hemen Kaydol"
#: frontend/src/components/CourseCard.vue:43 #: frontend/src/components/CourseCard.vue:43
#: frontend/src/components/CourseCardOverlay.vue:103 #: frontend/src/components/CourseCardOverlay.vue:104
#: frontend/src/pages/CourseDetail.vue:31 #: frontend/src/pages/CourseDetail.vue:33
msgid "Enrolled Students" msgid "Enrolled Students"
msgstr "Kayıtlı Öğrenci" msgstr "Kayıtlı Öğrenci"
@@ -1717,7 +1752,7 @@ msgstr "Sonraki Eğitim Grubu için Kayıt Onayı"
msgid "Enrollment Count" msgid "Enrollment Count"
msgstr "Kayıt Sayısı" msgstr "Kayıt Sayısı"
#: lms/lms/utils.py:1720 #: lms/lms/utils.py:1726
msgid "Enrollment Failed" msgid "Enrollment Failed"
msgstr "Kayıt Başarısız" msgstr "Kayıt Başarısız"
@@ -1733,7 +1768,7 @@ msgstr "Kayıtlar"
msgid "Enter Client Id and Client Secret in Google Settings to send calendar invites for evaluations." msgid "Enter Client Id and Client Secret in Google Settings to send calendar invites for evaluations."
msgstr "Değerlendirmeler için takvim davetleri göndermek üzere Google Ayarları'na İstemci Kimliği ve İstemci Gizli Anahtarını girin." msgstr "Değerlendirmeler için takvim davetleri göndermek üzere Google Ayarları'na İstemci Kimliği ve İstemci Gizli Anahtarını girin."
#: frontend/src/pages/AssignmentSubmission.vue:96 #: frontend/src/components/Assignment.vue:110
msgid "Enter a URL" msgid "Enter a URL"
msgstr "Bir URL girin" msgstr "Bir URL girin"
@@ -1745,6 +1780,7 @@ msgstr ""
msgid "Enter the correct answer" msgid "Enter the correct answer"
msgstr "Doğru cevabı girin" msgstr "Doğru cevabı girin"
#: frontend/src/components/Assignment.vue:268
#: frontend/src/components/Modals/AnnouncementModal.vue:105 #: frontend/src/components/Modals/AnnouncementModal.vue:105
#: frontend/src/components/Modals/BulkCertificates.vue:115 #: frontend/src/components/Modals/BulkCertificates.vue:115
#: frontend/src/components/Modals/ChapterModal.vue:159 #: frontend/src/components/Modals/ChapterModal.vue:159
@@ -1755,8 +1791,9 @@ msgstr "Doğru cevabı girin"
#: frontend/src/components/Modals/Question.vue:326 #: frontend/src/components/Modals/Question.vue:326
#: frontend/src/components/Modals/StudentModal.vue:69 #: frontend/src/components/Modals/StudentModal.vue:69
#: frontend/src/components/SettingDetails.vue:62 #: frontend/src/components/SettingDetails.vue:62
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350 #: frontend/src/pages/AssignmentForm.vue:139
#: frontend/src/pages/QuizForm.vue:365 #: frontend/src/pages/AssignmentForm.vue:159 frontend/src/pages/Billing.vue:264
#: frontend/src/pages/QuizForm.vue:346 frontend/src/pages/QuizForm.vue:361
#: frontend/src/pages/QuizSubmission.vue:141 #: frontend/src/pages/QuizSubmission.vue:141
msgid "Error" msgid "Error"
msgstr "Hata" msgstr "Hata"
@@ -1919,7 +1956,7 @@ msgstr "Başarısız"
msgid "Featured" msgid "Featured"
msgstr "Öne Çıkan" msgstr "Öne Çıkan"
#: frontend/src/pages/AssignmentSubmission.vue:21 #: frontend/src/components/Assignment.vue:61
msgid "Feel free to make edits to your submission if needed." msgid "Feel free to make edits to your submission if needed."
msgstr "Gerektiğinde gönderinizde düzenlemeler yapmaktan çekinmeyin." msgstr "Gerektiğinde gönderinizde düzenlemeler yapmaktan çekinmeyin."
@@ -1938,6 +1975,10 @@ msgstr ""
msgid "File Type" msgid "File Type"
msgstr "Dosya Türü" msgstr "Dosya Türü"
#: frontend/src/pages/Jobs.vue:47
msgid "Find the perfect job for you"
msgstr ""
#: frontend/src/components/Members.vue:38 #: frontend/src/components/Members.vue:38
#: frontend/src/components/Modals/EditProfile.vue:59 #: frontend/src/components/Modals/EditProfile.vue:59
msgid "First Name" msgid "First Name"
@@ -1953,7 +1994,7 @@ msgstr "Sabit 8-5"
msgid "Flexible Time" msgid "Flexible Time"
msgstr "Esnek Zaman" msgstr "Esnek Zaman"
#: frontend/src/pages/QuizForm.vue:463 #: frontend/src/pages/QuizForm.vue:459
msgid "Form to create and edit quizzes" msgid "Form to create and edit quizzes"
msgstr "" msgstr ""
@@ -1967,7 +2008,7 @@ msgid "Free"
msgstr "Serbest" msgstr "Serbest"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:118 #: frontend/src/pages/Jobs.vue:121
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Freelance" msgid "Freelance"
msgstr "Serbest çalışan" msgstr "Serbest çalışan"
@@ -2009,7 +2050,7 @@ msgid "Full Name"
msgstr "Tam Adı" msgstr "Tam Adı"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:115 #: frontend/src/pages/Jobs.vue:118
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Full Time" msgid "Full Time"
msgstr "Tam Zamanlı" msgstr "Tam Zamanlı"
@@ -2069,6 +2110,7 @@ msgid "Google Meet Link"
msgstr "Google Meet Bağlantısı" msgstr "Google Meet Bağlantısı"
#. 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:154
#: lms/lms/doctype/education_detail/education_detail.json #: lms/lms/doctype/education_detail/education_detail.json
msgid "Grade" msgid "Grade"
msgstr "Ünvan" msgstr "Ünvan"
@@ -2083,6 +2125,10 @@ msgstr ""
msgid "Grade Type" msgid "Grade Type"
msgstr "" msgstr ""
#: frontend/src/components/Assignment.vue:149
msgid "Grading"
msgstr ""
#. Label of the grant_only_once (Check) field in DocType 'LMS Badge' #. Label of the grant_only_once (Check) field in DocType 'LMS Badge'
#: lms/lms/doctype/lms_badge/lms_badge.json #: lms/lms/doctype/lms_badge/lms_badge.json
msgid "Grant only once" msgid "Grant only once"
@@ -2146,7 +2192,7 @@ msgstr "İpuçları"
msgid "Host" msgid "Host"
msgstr "" msgstr ""
#: frontend/src/components/LessonHelp.vue:9 #: frontend/src/components/LessonHelp.vue:24
msgid "How to add a Quiz?" msgid "How to add a Quiz?"
msgstr "Sınav nasıl eklenir?" msgstr "Sınav nasıl eklenir?"
@@ -2168,7 +2214,7 @@ msgstr "Bir iş arıyorum"
msgid "I am unavailable" msgid "I am unavailable"
msgstr "Müsait değilim" msgstr "Müsait değilim"
#: frontend/src/pages/QuizForm.vue:384 #: frontend/src/pages/QuizForm.vue:380
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
@@ -2178,7 +2224,7 @@ msgstr "ID"
msgid "Icon" msgid "Icon"
msgstr "Simge" msgstr "Simge"
#: frontend/src/components/LessonHelp.vue:68 #: frontend/src/components/LessonHelp.vue:11
msgid "If Include in Preview is enabled for a lesson then the lesson will also be accessible to non logged in users." msgid "If Include in Preview is enabled for a lesson then the lesson will also be accessible to non logged in users."
msgstr "" msgstr ""
@@ -2261,7 +2307,7 @@ msgstr "Tamamlanmadı"
#. Option for the 'Status' (Select) field in DocType 'Exercise Latest #. Option for the 'Status' (Select) field in DocType 'Exercise Latest
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'Exercise Submission' #. Option for the 'Status' (Select) field in DocType 'Exercise Submission'
#: frontend/src/components/Quiz.vue:166 #: frontend/src/components/Quiz.vue:168
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
#: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json
msgid "Incorrect" msgid "Incorrect"
@@ -2469,7 +2515,7 @@ msgstr "İş İlanı Başlığı"
msgid "Jobs" msgid "Jobs"
msgstr "İşler" msgstr "İşler"
#: frontend/src/components/LiveClass.vue:55 #: frontend/src/components/LiveClass.vue:58
#: lms/templates/upcoming_evals.html:15 #: lms/templates/upcoming_evals.html:15
msgid "Join" msgid "Join"
msgstr "Katıl" msgstr "Katıl"
@@ -2759,7 +2805,7 @@ msgstr "Ders Başlığı"
#. Group in Course Chapter's connections #. Group in Course Chapter's connections
#. Label of the lessons (Data) field in DocType 'LMS Course' #. Label of the lessons (Data) field in DocType 'LMS Course'
#: frontend/src/components/CourseCard.vue:34 #: frontend/src/components/CourseCard.vue:34
#: frontend/src/components/CourseCardOverlay.vue:96 #: frontend/src/components/CourseCardOverlay.vue:97
#: lms/lms/doctype/course_chapter/course_chapter.json #: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "Lessons" msgid "Lessons"
@@ -2825,6 +2871,7 @@ msgid "LiveCode URL"
msgstr "" msgstr ""
#: frontend/src/components/Members.vue:106 #: frontend/src/components/Members.vue:106
#: frontend/src/pages/Assignments.vue:71
#: frontend/src/pages/QuizSubmissionList.vue:39 #: frontend/src/pages/QuizSubmissionList.vue:39
#: frontend/src/pages/Quizzes.vue:51 #: frontend/src/pages/Quizzes.vue:51
msgid "Load More" msgid "Load More"
@@ -2854,6 +2901,7 @@ msgstr "Konum"
msgid "Location Preference" msgid "Location Preference"
msgstr "Konum Tercihi" msgstr "Konum Tercihi"
#: frontend/src/components/AssignmentBlock.vue:13
#: frontend/src/components/NoPermission.vue:28 #: frontend/src/components/NoPermission.vue:28
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:175 #: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:175
#: frontend/src/pages/Lesson.vue:24 #: frontend/src/pages/Lesson.vue:24
@@ -2913,7 +2961,7 @@ msgstr "Okundu olarak İşaretle"
#. Label of the marks (Int) field in DocType 'LMS Quiz Result' #. Label of the marks (Int) field in DocType 'LMS Quiz Result'
#: frontend/src/components/Modals/Question.vue:50 #: frontend/src/components/Modals/Question.vue:50
#: frontend/src/components/Modals/Question.vue:99 #: frontend/src/components/Modals/Question.vue:99
#: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:394 #: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:390
#: frontend/src/pages/QuizSubmission.vue:59 #: frontend/src/pages/QuizSubmission.vue:59
#: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json #: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json
#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json
@@ -2970,6 +3018,7 @@ msgstr "Orta:"
#. Label of the member (Link) field in DocType 'LMS Payment' #. Label of the member (Link) field in DocType 'LMS Payment'
#. Label of the member (Link) field in DocType 'LMS Program Member' #. Label of the member (Link) field in DocType 'LMS Program Member'
#. Label of the member (Link) field in DocType 'LMS Quiz Submission' #. Label of the member (Link) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/AssignmentSubmissionList.vue:14
#: frontend/src/pages/QuizSubmission.vue:31 #: frontend/src/pages/QuizSubmission.vue:31
#: frontend/src/pages/QuizSubmissionList.vue:86 #: frontend/src/pages/QuizSubmissionList.vue:86
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
@@ -3140,11 +3189,11 @@ msgstr "Moderatör"
msgid "Modified By" msgid "Modified By"
msgstr "Değiştiren" msgstr "Değiştiren"
#: lms/lms/api.py:199 #: lms/lms/api.py:201
msgid "Module Name is incorrect or does not exist." msgid "Module Name is incorrect or does not exist."
msgstr "Modül Adı yanlış veya mevcut değil." msgstr "Modül Adı yanlış veya mevcut değil."
#: lms/lms/api.py:195 #: lms/lms/api.py:197
msgid "Module is incorrect." msgid "Module is incorrect."
msgstr "Modül hatalı." msgstr "Modül hatalı."
@@ -3173,12 +3222,17 @@ msgid "My calendar"
msgstr "Takvimim" msgstr "Takvimim"
#. Option for the 'Event' (Select) field in DocType 'LMS Badge' #. Option for the 'Event' (Select) field in DocType 'LMS Badge'
#: frontend/src/pages/Batches.vue:30 frontend/src/pages/Courses.vue:45 #: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:30
#: frontend/src/pages/Programs.vue:14 lms/lms/doctype/lms_badge/lms_badge.json #: frontend/src/pages/Courses.vue:45 frontend/src/pages/Programs.vue:14
#: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New" msgid "New"
msgstr "Yeni" msgstr "Yeni"
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:41 #: frontend/src/pages/AssignmentForm.vue:178
msgid "New Assignment"
msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:43
msgid "New Assignment Submission" msgid "New Assignment Submission"
msgstr "Yeni Ödev Gönderimi" msgstr "Yeni Ödev Gönderimi"
@@ -3214,7 +3268,7 @@ msgstr ""
msgid "New Question" msgid "New Question"
msgstr "Yeni Soru" msgstr "Yeni Soru"
#: frontend/src/pages/QuizForm.vue:454 frontend/src/pages/QuizForm.vue:462 #: frontend/src/pages/QuizForm.vue:450 frontend/src/pages/QuizForm.vue:458
#: frontend/src/pages/Quizzes.vue:18 #: frontend/src/pages/Quizzes.vue:18
msgid "New Quiz" msgid "New Quiz"
msgstr "Yeni Test" msgstr "Yeni Test"
@@ -3236,7 +3290,7 @@ msgstr "{1} dersinde {0} konusuna yeni yanıt"
msgid "New {0}" msgid "New {0}"
msgstr "Yeni {0}" msgstr "Yeni {0}"
#: frontend/src/components/Quiz.vue:209 frontend/src/pages/Lesson.vue:84 #: frontend/src/components/Quiz.vue:211 frontend/src/pages/Lesson.vue:84
msgid "Next" msgid "Next"
msgstr "Sonraki" msgstr "Sonraki"
@@ -3244,7 +3298,7 @@ msgstr "Sonraki"
msgid "Next Question" msgid "Next Question"
msgstr "Sonraki Soru" msgstr "Sonraki Soru"
#: frontend/src/components/Assessments.vue:66 lms/templates/assessments.html:58 #: frontend/src/components/Assessments.vue:75 lms/templates/assessments.html:58
msgid "No Assessments" msgid "No Assessments"
msgstr "Değerlendirme Yok" msgstr "Değerlendirme Yok"
@@ -3265,6 +3319,10 @@ msgstr "Yaklaşan Değerlendirme Yok"
msgid "No announcements" msgid "No announcements"
msgstr "Hiçbir duyuru yok" msgstr "Hiçbir duyuru yok"
#: frontend/src/pages/Assignments.vue:56
msgid "No assignments found"
msgstr ""
#: frontend/src/pages/Batches.vue:125 #: frontend/src/pages/Batches.vue:125
msgid "No batches found" msgid "No batches found"
msgstr "Toplu kurs bulunamadı" msgstr "Toplu kurs bulunamadı"
@@ -3293,11 +3351,11 @@ msgstr "İncelenmekte olan kurs yok"
msgid "No introduction" msgid "No introduction"
msgstr "Tanıtım yok" msgstr "Tanıtım yok"
#: frontend/src/pages/Jobs.vue:60 #: frontend/src/pages/Jobs.vue:63
msgid "No jobs posted" msgid "No jobs posted"
msgstr "Hiçbir iş ilanı yayınlanmadı" msgstr "Hiçbir iş ilanı yayınlanmadı"
#: frontend/src/components/LiveClass.vue:61 #: frontend/src/components/LiveClass.vue:71
msgid "No live classes scheduled" msgid "No live classes scheduled"
msgstr "Planlanmış canlı ders yok" msgstr "Planlanmış canlı ders yok"
@@ -3313,6 +3371,10 @@ msgstr ""
msgid "No slots available for this date." msgid "No slots available for this date."
msgstr "Bu tarih için boş yer bulunmamaktadır." msgstr "Bu tarih için boş yer bulunmamaktadır."
#: frontend/src/pages/AssignmentSubmissionList.vue:67
msgid "No submissions"
msgstr ""
#: frontend/src/components/UpcomingEvaluations.vue:39 #: frontend/src/components/UpcomingEvaluations.vue:39
msgid "No upcoming evaluations." msgid "No upcoming evaluations."
msgstr "Yaklaşan değerlendirme yok." msgstr "Yaklaşan değerlendirme yok."
@@ -3361,6 +3423,7 @@ msgstr "Not Verilmedi"
msgid "Not Permitted" msgid "Not Permitted"
msgstr "İzin Verilmedi" msgstr "İzin Verilmedi"
#: frontend/src/components/Assignment.vue:33
#: frontend/src/components/BrandSettings.vue:10 #: frontend/src/components/BrandSettings.vue:10
#: frontend/src/components/PaymentSettings.vue:9 #: frontend/src/components/PaymentSettings.vue:9
#: frontend/src/components/SettingDetails.vue:10 #: frontend/src/components/SettingDetails.vue:10
@@ -3404,7 +3467,7 @@ msgstr "Çevrimdışı"
msgid "Once again, congratulations on this significant accomplishment." msgid "Once again, congratulations on this significant accomplishment."
msgstr "Bu önemli başarı için bir kez daha tebrikler." msgstr "Bu önemli başarı için bir kez daha tebrikler."
#: frontend/src/pages/AssignmentSubmission.vue:17 #: frontend/src/components/Assignment.vue:57
msgid "Once the moderator grades your submission, you'll find the details here." msgid "Once the moderator grades your submission, you'll find the details here."
msgstr "Moderatör başvurunuzu değerlendirdiğinde, ayrıntıları burada bulabilirsiniz." msgstr "Moderatör başvurunuzu değerlendirdiğinde, ayrıntıları burada bulabilirsiniz."
@@ -3421,7 +3484,7 @@ msgstr ""
msgid "Only files of type {0} will be accepted." msgid "Only files of type {0} will be accepted."
msgstr "Sadece {0} türündeki dosyalar kabul edilecektir." msgstr "Sadece {0} türündeki dosyalar kabul edilecektir."
#: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:527 #: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:529
msgid "Only image file is allowed." msgid "Only image file is allowed."
msgstr "Sadece resim dosyasına izin verilir." msgstr "Sadece resim dosyasına izin verilir."
@@ -3550,7 +3613,7 @@ msgid "Pan Number"
msgstr "" msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:116 #: frontend/src/pages/Jobs.vue:119
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Part Time" msgid "Part Time"
msgstr "Yarı Zamanlı" msgstr "Yarı Zamanlı"
@@ -3681,7 +3744,7 @@ msgstr "Yüzde (örn. %70)"
msgid "Phone Number" msgid "Phone Number"
msgstr "Telefon Numarası" msgstr "Telefon Numarası"
#: frontend/src/components/CourseCardOverlay.vue:141 #: frontend/src/components/CourseCardOverlay.vue:145
msgid "Please Login" msgid "Please Login"
msgstr "Lütfen Giriş Yapın" msgstr "Lütfen Giriş Yapın"
@@ -3701,7 +3764,7 @@ msgstr "Doğrulama için lütfen e-postanızı kontrol edin"
msgid "Please click on the following button to set your new password" msgid "Please click on the following button to set your new password"
msgstr "Yeni şifrenizi belirlemek için lütfen aşağıdaki linke tıklayınız" msgstr "Yeni şifrenizi belirlemek için lütfen aşağıdaki linke tıklayınız"
#: lms/lms/utils.py:1842 lms/lms/utils.py:1846 #: lms/lms/utils.py:1848 lms/lms/utils.py:1852
msgid "Please complete the previous courses in the program to enroll in this course." msgid "Please complete the previous courses in the program to enroll in this course."
msgstr "" msgstr ""
@@ -3721,8 +3784,8 @@ msgstr "Lütfen tüm soruları {0} dakika içinde yanıtladığınızdan emin ol
msgid "Please enter a title." msgid "Please enter a title."
msgstr "" msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:38 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:40
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:98 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:122
msgid "Please enter a valid URL." msgid "Please enter a valid URL."
msgstr "Lütfen geçerli bir URL girin." msgstr "Lütfen geçerli bir URL girin."
@@ -3730,7 +3793,7 @@ msgstr "Lütfen geçerli bir URL girin."
msgid "Please enter a valid time in the format HH:mm." msgid "Please enter a valid time in the format HH:mm."
msgstr "" msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:92 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:116
msgid "Please enter the URL for assignment submission." msgid "Please enter the URL for assignment submission."
msgstr "Lütfen ödev gönderimi için URL'yi girin." msgstr "Lütfen ödev gönderimi için URL'yi girin."
@@ -3750,6 +3813,10 @@ msgstr "Ücretli kurslar oluşturmak için lütfen Ödemeler uygulamasını yük
msgid "Please let us know where you heard about us from." msgid "Please let us know where you heard about us from."
msgstr "Lütfen bizi nereden duyduğunuzu belirtin." msgstr "Lütfen bizi nereden duyduğunuzu belirtin."
#: frontend/src/components/AssignmentBlock.vue:9
msgid "Please login to access the assignment."
msgstr ""
#: frontend/src/components/QuizBlock.vue:5 #: frontend/src/components/QuizBlock.vue:5
msgid "Please login to access the quiz." msgid "Please login to access the quiz."
msgstr "Teste erişmek için lütfen giriş yapın." msgstr "Teste erişmek için lütfen giriş yapın."
@@ -3758,7 +3825,7 @@ msgstr "Teste erişmek için lütfen giriş yapın."
msgid "Please login to access this page." msgid "Please login to access this page."
msgstr "Bu sayfaya erişebilmek için lütfen giriş yapın." msgstr "Bu sayfaya erişebilmek için lütfen giriş yapın."
#: lms/lms/api.py:191 #: lms/lms/api.py:193
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."
@@ -3795,7 +3862,7 @@ msgstr ""
msgid "Please upload a SCORM package" msgid "Please upload a SCORM package"
msgstr "" msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:95 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:119
msgid "Please upload the assignment file." msgid "Please upload the assignment file."
msgstr "Lütfen ödev dosyasını yükleyin." msgstr "Lütfen ödev dosyasını yükleyin."
@@ -4003,9 +4070,9 @@ msgstr "Yayınlanma Zamanı"
#. Label of the question (Text Editor) field in DocType 'LMS Question' #. Label of the question (Text Editor) field in DocType 'LMS Question'
#. Label of the question (Link) field in DocType 'LMS Quiz Question' #. Label of the question (Link) field in DocType 'LMS Quiz Question'
#. Label of the question (Text) field in DocType 'LMS Quiz Result' #. Label of the question (Text) field in DocType 'LMS Quiz Result'
#: frontend/src/components/Assignment.vue:17
#: frontend/src/components/Modals/Question.vue:38 #: frontend/src/components/Modals/Question.vue:38
#: frontend/src/pages/AssignmentSubmission.vue:26 #: frontend/src/pages/AssignmentForm.vue:45 frontend/src/pages/QuizForm.vue:385
#: frontend/src/pages/QuizForm.vue:389
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment/lms_assignment.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
@@ -4042,7 +4109,7 @@ msgstr "Soru başarıyla güncellendi"
msgid "Question {0}" msgid "Question {0}"
msgstr "Soru {0}" msgstr "Soru {0}"
#: frontend/src/components/Quiz.vue:186 #: frontend/src/components/Quiz.vue:188
msgid "Question {0} of {1}" msgid "Question {0} of {1}"
msgstr "Soru {0} / {1}" msgstr "Soru {0} / {1}"
@@ -4051,7 +4118,7 @@ msgstr "Soru {0} / {1}"
msgid "Questions" msgid "Questions"
msgstr "Sorular" msgstr "Sorular"
#: frontend/src/pages/QuizForm.vue:431 #: frontend/src/pages/QuizForm.vue:427
msgid "Questions deleted successfully" msgid "Questions deleted successfully"
msgstr "Sorular başarıyla silindi" msgstr "Sorular başarıyla silindi"
@@ -4079,7 +4146,7 @@ msgstr "Sınav Gönderimi"
msgid "Quiz Submissions" msgid "Quiz Submissions"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:223 #: frontend/src/components/Quiz.vue:225
msgid "Quiz Summary" msgid "Quiz Summary"
msgstr "" msgstr ""
@@ -4088,7 +4155,7 @@ msgstr ""
msgid "Quiz Title" msgid "Quiz Title"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:343 #: frontend/src/pages/QuizForm.vue:339
msgid "Quiz created successfully" msgid "Quiz created successfully"
msgstr "" msgstr ""
@@ -4096,7 +4163,7 @@ msgstr ""
msgid "Quiz is not available to Guest users. Please login to continue." msgid "Quiz is not available to Guest users. Please login to continue."
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:362 #: frontend/src/pages/QuizForm.vue:358
msgid "Quiz updated successfully" msgid "Quiz updated successfully"
msgstr "Sınav başarıyla güncellendi" msgstr "Sınav başarıyla güncellendi"
@@ -4105,7 +4172,7 @@ msgstr "Sınav başarıyla güncellendi"
msgid "Quiz will appear at the bottom of the lesson." msgid "Quiz will appear at the bottom of the lesson."
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:442 frontend/src/pages/Quizzes.vue:138 #: frontend/src/pages/QuizForm.vue:438 frontend/src/pages/Quizzes.vue:138
#: frontend/src/pages/Quizzes.vue:148 #: frontend/src/pages/Quizzes.vue:148
msgid "Quizzes" msgid "Quizzes"
msgstr "" msgstr ""
@@ -4113,7 +4180,7 @@ msgstr ""
#. Label of the rating (Rating) field in DocType 'LMS Certificate Evaluation' #. Label of the rating (Rating) field in DocType 'LMS Certificate Evaluation'
#. 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:108 #: frontend/src/components/CourseCardOverlay.vue:110
#: frontend/src/components/Modals/Event.vue:86 #: frontend/src/components/Modals/Event.vue:86
#: frontend/src/components/Modals/ReviewModal.vue:20 #: frontend/src/components/Modals/ReviewModal.vue:20
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -4127,10 +4194,6 @@ msgstr "Değerlendirme"
msgid "Rating cannot be 0" msgid "Rating cannot be 0"
msgstr "Değerlendirme 0 olamaz" msgstr "Değerlendirme 0 olamaz"
#: frontend/src/pages/AssignmentSubmission.vue:30
msgid "Read the question carefully before attempting the assignment."
msgstr "Ödevi yapmadan önce soruyu dikkatlice okuyun."
#. Option for the 'Stage' (Select) field in DocType 'LMS Batch Old' #. Option for the 'Stage' (Select) field in DocType 'LMS Batch Old'
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
msgid "Ready" msgid "Ready"
@@ -4309,15 +4372,15 @@ msgstr ""
msgid "Saturday" msgid "Saturday"
msgstr "Cumartesi" msgstr "Cumartesi"
#: frontend/src/components/AssessmentPlugin.vue:34
#: frontend/src/components/Assignment.vue:43
#: frontend/src/components/Controls/CodeEditor.vue:25 #: frontend/src/components/Controls/CodeEditor.vue:25
#: frontend/src/components/Modals/Event.vue:101 #: frontend/src/components/Modals/Event.vue:101
#: frontend/src/components/Modals/Event.vue:129 #: frontend/src/components/Modals/Event.vue:129
#: frontend/src/components/QuizPlugin.vue:23 #: frontend/src/pages/AssignmentForm.vue:21 frontend/src/pages/BatchForm.vue:8
#: frontend/src/pages/AssignmentSubmission.vue:7 #: frontend/src/pages/CourseForm.vue:20 frontend/src/pages/JobCreation.vue:8
#: frontend/src/pages/BatchForm.vue:8 frontend/src/pages/CourseForm.vue:20 #: frontend/src/pages/LessonForm.vue:14 frontend/src/pages/ProgramForm.vue:7
#: frontend/src/pages/JobCreation.vue:8 frontend/src/pages/LessonForm.vue:14 #: frontend/src/pages/QuizForm.vue:34 frontend/src/pages/QuizSubmission.vue:14
#: frontend/src/pages/ProgramForm.vue:7 frontend/src/pages/QuizForm.vue:34
#: frontend/src/pages/QuizSubmission.vue:14
#: lms/public/js/common_functions.js:405 #: lms/public/js/common_functions.js:405
msgid "Save" msgid "Save"
msgstr "Kaydet" msgstr "Kaydet"
@@ -4359,6 +4422,10 @@ msgstr ""
msgid "Search" msgid "Search"
msgstr "Arama" msgstr "Arama"
#: frontend/src/pages/Assignments.vue:25
msgid "Search by title"
msgstr ""
#: frontend/src/components/Controls/IconPicker.vue:36 #: frontend/src/components/Controls/IconPicker.vue:36
msgid "Search for an icon" msgid "Search for an icon"
msgstr "Bir simge arayın" msgstr "Bir simge arayın"
@@ -4384,7 +4451,7 @@ msgstr "Kalan Koltuk Sayısı"
msgid "Select a question" msgid "Select a question"
msgstr "Bir soru seçin" msgstr "Bir soru seçin"
#: frontend/src/components/QuizPlugin.vue:17 #: frontend/src/components/AssessmentPlugin.vue:21
msgid "Select a quiz" msgid "Select a quiz"
msgstr "" msgstr ""
@@ -4392,6 +4459,10 @@ msgstr ""
msgid "Select a slot" msgid "Select a slot"
msgstr "" msgstr ""
#: frontend/src/components/AssessmentPlugin.vue:28
msgid "Select an assignment"
msgstr ""
#. Label of the send_calendar_invite_for_evaluations (Check) field in DocType #. Label of the send_calendar_invite_for_evaluations (Check) field in DocType
#. 'LMS Settings' #. 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -4583,7 +4654,7 @@ msgstr "Ekip"
msgid "Stage" msgid "Stage"
msgstr "Aşama" msgstr "Aşama"
#: frontend/src/components/LiveClass.vue:46 frontend/src/components/Quiz.vue:65 #: frontend/src/components/LiveClass.vue:50 frontend/src/components/Quiz.vue:65
#: lms/templates/quiz/quiz.html:39 #: lms/templates/quiz/quiz.html:39
msgid "Start" msgid "Start"
msgstr "Başlangıç" msgstr "Başlangıç"
@@ -4664,6 +4735,7 @@ msgstr "İstatistik"
#. Label of the status (Select) field in DocType 'LMS Course Progress' #. Label of the status (Select) field in DocType 'LMS Course Progress'
#. Label of the status (Select) field in DocType 'LMS Mentor Request' #. Label of the status (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:91 #: frontend/src/components/Modals/Event.vue:91
#: frontend/src/pages/AssignmentSubmissionList.vue:19
#: frontend/src/pages/JobCreation.vue:41 #: frontend/src/pages/JobCreation.vue:41
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/cohort/cohort.json
@@ -4724,7 +4796,7 @@ msgstr "Öğrenci {0} zaten bu gruba eklendi."
msgid "Students" msgid "Students"
msgstr "Öğrenciler" msgstr "Öğrenciler"
#: frontend/src/components/BatchStudents.vue:282 #: frontend/src/components/BatchStudents.vue:310
msgid "Students deleted successfully" msgid "Students deleted successfully"
msgstr "" msgstr ""
@@ -4746,19 +4818,24 @@ msgstr "Alt Grup"
msgid "Subject" msgid "Subject"
msgstr "Konu" msgstr "Konu"
#: frontend/src/pages/AssignmentSubmission.vue:40 #: frontend/src/components/Assignment.vue:29
msgid "Submission" msgid "Submission"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:30 #: frontend/src/pages/AssignmentForm.vue:17 frontend/src/pages/QuizForm.vue:30
msgid "Submission List" msgid "Submission List"
msgstr "" msgstr ""
#: frontend/src/components/Assignment.vue:10
#: frontend/src/components/Assignment.vue:13
msgid "Submission by"
msgstr ""
#: frontend/src/components/Modals/AssessmentModal.vue:9 #: frontend/src/components/Modals/AssessmentModal.vue:9
#: frontend/src/components/Modals/BatchCourseModal.vue:9 #: frontend/src/components/Modals/BatchCourseModal.vue:9
#: frontend/src/components/Modals/EvaluationModal.vue:9 #: frontend/src/components/Modals/EvaluationModal.vue:9
#: frontend/src/components/Modals/Question.vue:338 #: frontend/src/components/Modals/Question.vue:338
#: frontend/src/components/Quiz.vue:214 lms/templates/assignment.html:9 #: frontend/src/components/Quiz.vue:216 lms/templates/assignment.html:9
#: lms/templates/livecode/extension_footer.html:25 #: lms/templates/livecode/extension_footer.html:25
#: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163 #: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163
#: lms/www/new-sign-up.html:32 #: lms/www/new-sign-up.html:32
@@ -4774,10 +4851,12 @@ msgstr ""
msgid "Submitted {0}" msgid "Submitted {0}"
msgstr "Kaydedildi {0}" msgstr "Kaydedildi {0}"
#: frontend/src/components/Assignment.vue:316
#: frontend/src/components/BatchCourses.vue:150 #: frontend/src/components/BatchCourses.vue:150
#: frontend/src/components/BatchOverlay.vue:135 #: frontend/src/components/BatchOverlay.vue:135
#: frontend/src/components/BatchStudents.vue:282 #: frontend/src/components/BatchStudents.vue:310
#: frontend/src/components/CourseCardOverlay.vue:161 #: frontend/src/components/BatchStudents.vue:409
#: frontend/src/components/CourseCardOverlay.vue:165
#: frontend/src/components/Modals/AnnouncementModal.vue:99 #: frontend/src/components/Modals/AnnouncementModal.vue:99
#: frontend/src/components/Modals/AssessmentModal.vue:73 #: frontend/src/components/Modals/AssessmentModal.vue:73
#: frontend/src/components/Modals/BulkCertificates.vue:121 #: frontend/src/components/Modals/BulkCertificates.vue:121
@@ -4787,11 +4866,12 @@ msgstr "Kaydedildi {0}"
#: frontend/src/components/Modals/Event.vue:310 #: frontend/src/components/Modals/Event.vue:310
#: frontend/src/components/Modals/Question.vue:264 #: frontend/src/components/Modals/Question.vue:264
#: frontend/src/components/Modals/Question.vue:315 #: frontend/src/components/Modals/Question.vue:315
#: frontend/src/pages/AssignmentForm.vue:155
#: frontend/src/pages/CourseForm.vue:461 frontend/src/pages/ProgramForm.vue:229 #: frontend/src/pages/CourseForm.vue:461 frontend/src/pages/ProgramForm.vue:229
#: frontend/src/pages/ProgramForm.vue:251 #: frontend/src/pages/ProgramForm.vue:251
#: frontend/src/pages/ProgramForm.vue:272 #: frontend/src/pages/ProgramForm.vue:272
#: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:343 #: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:339
#: frontend/src/pages/QuizForm.vue:362 frontend/src/pages/QuizForm.vue:431 #: frontend/src/pages/QuizForm.vue:358 frontend/src/pages/QuizForm.vue:427
msgid "Success" msgid "Success"
msgstr "Başarılı" msgstr "Başarılı"
@@ -4809,7 +4889,7 @@ msgstr "Özet"
msgid "Sunday" msgid "Sunday"
msgstr "Pazar" msgstr "Pazar"
#: lms/lms/api.py:952 #: lms/lms/api.py:954
msgid "Suspicious pattern found in {0}: {1}" msgid "Suspicious pattern found in {0}: {1}"
msgstr "" msgstr ""
@@ -4924,6 +5004,10 @@ msgstr "Yazı"
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:1755
msgid "The batch is full. Please contact the Administrator."
msgstr ""
#: lms/templates/emails/lms_course_interest.html:5 #: lms/templates/emails/lms_course_interest.html:5
msgid "The course {0} is now available on {1}." msgid "The course {0} is now available on {1}."
msgstr "{0} kursuna artık {1} adresinden erişilebilir." msgstr "{0} kursuna artık {1} adresinden erişilebilir."
@@ -4964,14 +5048,22 @@ msgstr ""
msgid "There are no seats available in this batch." msgid "There are no seats available in this batch."
msgstr "Bu grupta boş yer bulunmamaktadır." msgstr "Bu grupta boş yer bulunmamaktadır."
#: frontend/src/components/BatchStudents.vue:165 #: frontend/src/components/BatchStudents.vue:182
msgid "There are no students in this batch." msgid "There are no students in this batch."
msgstr "Bu grupta hiç öğrenci bulunmamaktadır." msgstr "Bu grupta hiç öğrenci bulunmamaktadır."
#: frontend/src/pages/AssignmentSubmissionList.vue:70
msgid "There are no submissions for this assignment."
msgstr ""
#: lms/templates/course_list.html:14 #: lms/templates/course_list.html:14
msgid "There are no {0} on this site." msgid "There are no {0} on this site."
msgstr "Bu sitede {0} yok." msgstr "Bu sitede {0} yok."
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:82
msgid "There has been an update on your submission for assignment {0}"
msgstr ""
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:42 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:42
msgid "There has been an update on your submission. You have got a score of {0} for the quiz {1}" msgid "There has been an update on your submission. You have got a score of {0} for the quiz {1}"
msgstr "" msgstr ""
@@ -4991,11 +5083,15 @@ msgstr ""
msgid "This certificate does no expire" msgid "This certificate does no expire"
msgstr "" msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:91 #: frontend/src/components/LiveClass.vue:64
msgid "This class has ended"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:92
msgid "This course has:" msgid "This course has:"
msgstr "Bu kursta:" msgstr "Bu kursta:"
#: lms/lms/utils.py:1600 #: lms/lms/utils.py:1606
msgid "This course is free." msgid "This course is free."
msgstr "Bu kurs ücretsizdir." msgstr "Bu kurs ücretsizdir."
@@ -5098,10 +5194,12 @@ msgstr ""
#. Label of the title (Data) field in DocType 'Work Experience' #. Label of the title (Data) field in DocType 'Work Experience'
#: frontend/src/components/Modals/DiscussionModal.vue:18 #: frontend/src/components/Modals/DiscussionModal.vue:18
#: frontend/src/components/Modals/LiveClassModal.vue:23 #: frontend/src/components/Modals/LiveClassModal.vue:23
#: frontend/src/pages/BatchForm.vue:20 frontend/src/pages/CourseForm.vue:32 #: frontend/src/pages/AssignmentForm.vue:32
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/ProgramForm.vue:11 #: frontend/src/pages/Assignments.vue:152 frontend/src/pages/BatchForm.vue:20
#: frontend/src/pages/Programs.vue:118 frontend/src/pages/QuizForm.vue:48 #: frontend/src/pages/CourseForm.vue:32 frontend/src/pages/JobCreation.vue:20
#: frontend/src/pages/Quizzes.vue:116 lms/lms/doctype/cohort/cohort.json #: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:118
#: frontend/src/pages/QuizForm.vue:48 frontend/src/pages/Quizzes.vue:116
#: lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/course_chapter/course_chapter.json #: lms/lms/doctype/course_chapter/course_chapter.json
@@ -5137,11 +5235,11 @@ msgstr "Alıcı"
msgid "To Date" msgid "To Date"
msgstr "Bitiş Tarihi" msgstr "Bitiş Tarihi"
#: lms/lms/utils.py:1611 #: lms/lms/utils.py:1617
msgid "To join this batch, please contact the Administrator." msgid "To join this batch, please contact the Administrator."
msgstr "" msgstr ""
#: frontend/src/components/LessonHelp.vue:34 #: frontend/src/components/LessonHelp.vue:49
msgid "To upload Image, Video, Audio or PDF from your system, click on the add icon and select upload from the menu. Then choose the file you want to add to the lesson and it gets added to your lesson." msgid "To upload Image, Video, Audio or PDF from your system, click on the add icon and select upload from the menu. Then choose the file you want to add to the lesson and it gets added to your lesson."
msgstr "Sisteminizden Resim, Video, Ses veya PDF yüklemek için ekle simgesine tıklayın ve menüden yüklemeyi seçin. Ardından derse eklemek istediğiniz dosyayı seçin ve dersinize eklensin." msgstr "Sisteminizden Resim, Video, Ses veya PDF yüklemek için ekle simgesine tıklayın ve menüden yüklemeyi seçin. Ardından derse eklemek istediğiniz dosyayı seçin ve dersinize eklensin."
@@ -5169,7 +5267,7 @@ msgstr "Toplam Kayıt"
msgid "Travel" msgid "Travel"
msgstr "Gezi" msgstr "Gezi"
#: frontend/src/components/Quiz.vue:252 lms/templates/quiz/quiz.html:131 #: frontend/src/components/Quiz.vue:254 lms/templates/quiz/quiz.html:131
msgid "Try Again" msgid "Try Again"
msgstr "Tekrar Deneyin" msgstr "Tekrar Deneyin"
@@ -5191,6 +5289,8 @@ msgstr ""
#. Label of the type (Select) field in DocType 'LMS Quiz Question' #. Label of the type (Select) field in DocType 'LMS Quiz Question'
#: frontend/src/components/Modals/AssessmentModal.vue:22 #: frontend/src/components/Modals/AssessmentModal.vue:22
#: frontend/src/components/Modals/Question.vue:54 #: frontend/src/components/Modals/Question.vue:54
#: frontend/src/pages/AssignmentForm.vue:39
#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:157
#: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:16 #: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:16
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment/lms_assignment.json
@@ -5201,7 +5301,7 @@ msgstr ""
msgid "Type" msgid "Type"
msgstr "Türü" msgstr "Türü"
#: frontend/src/components/Quiz.vue:583 #: frontend/src/components/Quiz.vue:589
msgid "Type your answer" msgid "Type your answer"
msgstr "Cevabınızı yazın" msgstr "Cevabınızı yazın"
@@ -5282,11 +5382,11 @@ msgstr "Şifreyi Güncelle"
msgid "Upload" msgid "Upload"
msgstr "Yükle" msgstr "Yükle"
#: frontend/src/pages/AssignmentSubmission.vue:69 #: frontend/src/components/Assignment.vue:78
msgid "Upload File" msgid "Upload File"
msgstr "Dosya Yükle" msgstr "Dosya Yükle"
#: frontend/src/pages/AssignmentSubmission.vue:68 #: frontend/src/components/Assignment.vue:77
msgid "Uploading {0}%" msgid "Uploading {0}%"
msgstr "%{0} Yükleniyor" msgstr "%{0} Yükleniyor"
@@ -5404,7 +5504,7 @@ msgstr "Çarşamba"
msgid "Welcome to {0}!" msgid "Welcome to {0}!"
msgstr "{0} Uygulamasına Hoş Geldiniz!" msgstr "{0} Uygulamasına Hoş Geldiniz!"
#: frontend/src/components/LessonHelp.vue:63 #: frontend/src/components/LessonHelp.vue:6
msgid "What does include in preview mean?" msgid "What does include in preview mean?"
msgstr "" msgstr ""
@@ -5453,7 +5553,7 @@ msgstr "Bir İnceleme Yazın"
msgid "Write a review" msgid "Write a review"
msgstr "Bir inceleme yazın" msgstr "Bir inceleme yazın"
#: frontend/src/pages/AssignmentSubmission.vue:102 #: frontend/src/components/Assignment.vue:120
msgid "Write your answer here" msgid "Write your answer here"
msgstr "Cevabınızı buraya yazın" msgstr "Cevabınızı buraya yazın"
@@ -5461,11 +5561,11 @@ msgstr "Cevabınızı buraya yazın"
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}."
msgstr "" msgstr ""
#: lms/lms/api.py:215 #: lms/lms/api.py:217
msgid "You are already enrolled for this batch." msgid "You are already enrolled for this batch."
msgstr "Bu gruba zaten kayıtlısınız." msgstr "Bu gruba zaten kayıtlısınız."
#: lms/lms/api.py:207 #: lms/lms/api.py:209
msgid "You are already enrolled for this course." msgid "You are already enrolled for this course."
msgstr "Bu kursa zaten kayıtlısınız." msgstr "Bu kursa zaten kayıtlısınız."
@@ -5530,7 +5630,7 @@ msgstr "Herhangi bir bildiriminiz yok."
msgid "You got" msgid "You got"
msgstr "Puanın" msgstr "Puanın"
#: frontend/src/components/Quiz.vue:234 #: frontend/src/components/Quiz.vue:236
#, python-format #, python-format
msgid "You got {0}% correct answers with a score of {1} out of {2}" msgid "You got {0}% correct answers with a score of {1} out of {2}"
msgstr "{0}% doğru cevap verdiniz ve {2} üzerinden {1} puan aldınız" msgstr "{0}% doğru cevap verdiniz ve {2} üzerinden {1} puan aldınız"
@@ -5551,7 +5651,7 @@ msgstr "Bu kursa zaten yorum eklediniz"
msgid "You have been enrolled in this batch" msgid "You have been enrolled in this batch"
msgstr "Bu gruba kayıt oldunuz" msgstr "Bu gruba kayıt oldunuz"
#: frontend/src/components/CourseCardOverlay.vue:162 #: frontend/src/components/CourseCardOverlay.vue:166
msgid "You have been enrolled in this course" msgid "You have been enrolled in this course"
msgstr "Bu kursa zaten kayıtlısınız" msgstr "Bu kursa zaten kayıtlısınız"
@@ -5559,6 +5659,10 @@ msgstr "Bu kursa zaten kayıtlısınız"
msgid "You have got a score of {0} for the quiz {1}" msgid "You have got a score of {0} for the quiz {1}"
msgstr "" msgstr ""
#: frontend/src/pages/Assignments.vue:60
msgid "You have not created any assignments yet. To create a new assignment, click on the \"New\" button above."
msgstr ""
#: frontend/src/pages/Quizzes.vue:65 #: frontend/src/pages/Quizzes.vue:65
msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above." msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above."
msgstr "" msgstr ""
@@ -5571,7 +5675,7 @@ msgstr ""
msgid "You haven't enrolled for any courses" msgid "You haven't enrolled for any courses"
msgstr "Herhangi bir kursa kaydolmadınız" msgstr "Herhangi bir kursa kaydolmadınız"
#: frontend/src/components/CourseCardOverlay.vue:142 #: frontend/src/components/CourseCardOverlay.vue:146
msgid "You need to login first to enroll for this course" msgid "You need to login first to enroll for this course"
msgstr "" msgstr ""
@@ -5584,7 +5688,7 @@ msgstr ""
msgid "You've applied to become a mentor for this course. Your request is currently under review." msgid "You've applied to become a mentor for this course. Your request is currently under review."
msgstr "Bu kurs için mentor olmak üzere başvuruda bulundunuz. Talebiniz şu anda inceleme aşamasındadır." msgstr "Bu kurs için mentor olmak üzere başvuruda bulundunuz. Talebiniz şu anda inceleme aşamasındadır."
#: frontend/src/pages/AssignmentSubmission.vue:15 #: frontend/src/components/Assignment.vue:55
msgid "You've successfully submitted the assignment." msgid "You've successfully submitted the assignment."
msgstr "Ödevi başarıyla teslim ettiniz." msgstr "Ödevi başarıyla teslim ettiniz."
@@ -5628,7 +5732,7 @@ msgstr ""
msgid "Your score is" msgid "Your score is"
msgstr "Puanınız" msgstr "Puanınız"
#: frontend/src/components/Quiz.vue:227 #: frontend/src/components/Quiz.vue:229
msgid "Your submission has been successfully saved. The instructor will review and grade it shortly, and you'll be notified of your final result." msgid "Your submission has been successfully saved. The instructor will review and grade it shortly, and you'll be notified of your final result."
msgstr "" msgstr ""
@@ -5677,7 +5781,7 @@ msgstr ""
msgid "posted by" msgid "posted by"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:390 #: frontend/src/pages/QuizForm.vue:386
msgid "question_detail" msgid "question_detail"
msgstr "" msgstr ""
@@ -5693,7 +5797,7 @@ msgstr ""
msgid "you can" msgid "you can"
msgstr "" msgstr ""
#: lms/lms/api.py:749 lms/lms/api.py:757 #: lms/lms/api.py:751 lms/lms/api.py:759
msgid "{0} Settings not found" msgid "{0} Settings not found"
msgstr "{0} Ayarları bulunamadı" msgstr "{0} Ayarları bulunamadı"

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2024-12-27 16:04+0000\n" "POT-Creation-Date: 2025-01-03 16:04+0000\n"
"PO-Revision-Date: 2024-12-31 03:29\n" "PO-Revision-Date: 2025-01-07 04:09\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"
@@ -156,7 +156,7 @@ msgstr ""
msgid "Add a new question" msgid "Add a new question"
msgstr "" msgstr ""
#: frontend/src/components/QuizPlugin.vue:11 #: frontend/src/components/AssessmentPlugin.vue:11
msgid "Add a quiz to your lesson" msgid "Add a quiz to your lesson"
msgstr "" msgstr ""
@@ -164,6 +164,10 @@ msgstr ""
msgid "Add an assessment" msgid "Add an assessment"
msgstr "" msgstr ""
#: frontend/src/components/AssessmentPlugin.vue:14
msgid "Add an assignment to your lesson"
msgstr ""
#: frontend/src/components/Modals/Question.vue:18 #: frontend/src/components/Modals/Question.vue:18
msgid "Add an existing question" msgid "Add an existing question"
msgstr "" msgstr ""
@@ -176,7 +180,7 @@ msgstr ""
msgid "Add web page to sidebar" msgid "Add web page to sidebar"
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:44 #: frontend/src/components/Assignment.vue:65
msgid "Add your assignment as {0}" msgid "Add your assignment as {0}"
msgstr "" msgstr ""
@@ -393,6 +397,8 @@ msgstr ""
#. Label of the section_break_16 (Section Break) field in DocType 'Course #. Label of the section_break_16 (Section Break) field in DocType 'Course
#. Lesson' #. Lesson'
#. Label of the assignment (Link) field in DocType 'LMS Assignment Submission' #. Label of the assignment (Link) field in DocType 'LMS Assignment Submission'
#: frontend/src/pages/AssignmentSubmissionList.vue:12
#: frontend/src/utils/assignment.js:25
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/templates/assignment.html:3 #: lms/templates/assignment.html:3
@@ -417,15 +423,23 @@ msgstr ""
msgid "Assignment Title" msgid "Assignment Title"
msgstr "" msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:31 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:33
msgid "Assignment for Lesson {0} by {1} already exists." msgid "Assignment for Lesson {0} by {1} already exists."
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentForm.vue:155
msgid "Assignment saved successfully"
msgstr ""
#. Description of the 'Question' (Small Text) field in DocType 'Course Lesson' #. Description of the 'Question' (Small Text) field in DocType 'Course Lesson'
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
msgid "Assignment will appear at the bottom of the lesson." msgid "Assignment will appear at the bottom of the lesson."
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentForm.vue:174
msgid "Assignments"
msgstr "作业"
#: lms/lms/doctype/lms_question/lms_question.py:43 #: lms/lms/doctype/lms_question/lms_question.py:43
msgid "At least one option must be correct for this question." msgid "At least one option must be correct for this question."
msgstr "" msgstr ""
@@ -746,6 +760,10 @@ msgstr ""
msgid "Change" msgid "Change"
msgstr "变化" msgstr "变化"
#: frontend/src/components/Assignment.vue:316
msgid "Changes saved successfully"
msgstr ""
#. Label of the chapter (Link) field in DocType 'Chapter Reference' #. Label of the chapter (Link) field in DocType 'Chapter Reference'
#. Label of the chapter (Link) field in DocType 'LMS Course Progress' #. Label of the chapter (Link) field in DocType 'LMS Course Progress'
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
@@ -774,7 +792,7 @@ msgstr ""
msgid "Chapters" msgid "Chapters"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:201 lms/templates/quiz/quiz.html:120 #: frontend/src/components/Quiz.vue:203 lms/templates/quiz/quiz.html:120
msgid "Check" msgid "Check"
msgstr "检查" msgstr "检查"
@@ -797,7 +815,7 @@ msgstr ""
msgid "Choices" msgid "Choices"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:581 lms/templates/quiz/quiz.html:53 #: frontend/src/components/Quiz.vue:587 lms/templates/quiz/quiz.html:53
msgid "Choose all answers that apply" msgid "Choose all answers that apply"
msgstr "" msgstr ""
@@ -805,7 +823,7 @@ msgstr ""
msgid "Choose an icon" msgid "Choose an icon"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:582 lms/templates/quiz/quiz.html:53 #: frontend/src/components/Quiz.vue:588 lms/templates/quiz/quiz.html:53
msgid "Choose one answer" msgid "Choose one answer"
msgstr "" msgstr ""
@@ -814,12 +832,16 @@ msgstr ""
msgid "City" msgid "City"
msgstr "城市" msgstr "城市"
#: frontend/src/components/Controls/Link.vue:49
msgid "Clear"
msgstr "明确"
#. Option for the 'Role Preference' (Select) field in DocType 'User' #. Option for the 'Role Preference' (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
msgid "Clearly Defined Role" msgid "Clearly Defined Role"
msgstr "" msgstr ""
#: frontend/src/components/LessonHelp.vue:15 #: frontend/src/components/LessonHelp.vue:30
msgid "Click on the add icon in the editor and select Quiz from the menu. It opens up a dialog, where you can either select a quiz from the list or create a new quiz. When you select the Create New option it redirects you to the quiz creation page." msgid "Click on the add icon in the editor and select Quiz from the menu. It opens up a dialog, where you can either select a quiz from the list or create a new quiz. When you select the Create New option it redirects you to the quiz creation page."
msgstr "" msgstr ""
@@ -917,6 +939,7 @@ msgstr "颜色"
#. Label of the comments (Small Text) field in DocType 'LMS Assignment #. Label of the comments (Small Text) field in DocType 'LMS Assignment
#. Submission' #. Submission'
#. Label of the comments (Small Text) field in DocType 'LMS Mentor Request' #. Label of the comments (Small Text) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Assignment.vue:161
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
#: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
@@ -924,6 +947,10 @@ msgstr "颜色"
msgid "Comments" msgid "Comments"
msgstr "评论" msgstr "评论"
#: frontend/src/components/Assignment.vue:139
msgid "Comments by Evaluator"
msgstr ""
#. Label of the company (Data) field in DocType 'LMS Job Application' #. Label of the company (Data) field in DocType 'LMS Job Application'
#. Label of the company (Data) field in DocType 'Work Experience' #. Label of the company (Data) field in DocType 'Work Experience'
#: lms/job/doctype/lms_job_application/lms_job_application.json #: lms/job/doctype/lms_job_application/lms_job_application.json
@@ -986,7 +1013,7 @@ msgstr ""
msgid "Completed" msgid "Completed"
msgstr "已完成" msgstr "已完成"
#: frontend/src/components/BatchStudents.vue:325 #: frontend/src/components/BatchStudents.vue:353
msgid "Completed by Students" msgid "Completed by Students"
msgstr "" msgstr ""
@@ -1036,7 +1063,7 @@ msgid "Continue Learning"
msgstr "" msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:117 #: frontend/src/pages/Jobs.vue:120
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Contract" msgid "Contract"
msgstr "合同" msgstr "合同"
@@ -1045,7 +1072,7 @@ msgstr "合同"
msgid "Cookie Policy" msgid "Cookie Policy"
msgstr "" msgstr ""
#: frontend/src/components/LessonHelp.vue:53 #: frontend/src/components/LessonHelp.vue:68
msgid "Copy the URL of the video from YouTube and paste it in the editor." msgid "Copy the URL of the video from YouTube and paste it in the editor."
msgstr "" msgstr ""
@@ -1057,7 +1084,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Exercise Latest #. Option for the 'Status' (Select) field in DocType 'Exercise Latest
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'Exercise Submission' #. Option for the 'Status' (Select) field in DocType 'Exercise Submission'
#: frontend/src/components/Quiz.vue:161 #: frontend/src/components/Quiz.vue:163
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
#: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json
msgid "Correct" msgid "Correct"
@@ -1197,7 +1224,7 @@ msgstr ""
msgid "Course Name" msgid "Course Name"
msgstr "" msgstr ""
#: frontend/src/pages/CourseDetail.vue:74 #: frontend/src/pages/CourseDetail.vue:76
msgid "Course Outline" msgid "Course Outline"
msgstr "" msgstr ""
@@ -1322,6 +1349,10 @@ msgstr ""
msgid "Create a new question" msgid "Create a new question"
msgstr "" msgstr ""
#: frontend/src/pages/Assignments.vue:163
msgid "Created"
msgstr ""
#. Label of the currency (Link) field in DocType 'Web Form' #. Label of the currency (Link) field in DocType 'Web Form'
#. Label of the currency (Link) field in DocType 'LMS Batch' #. Label of the currency (Link) field in DocType 'LMS Batch'
#. Label of the currency (Link) field in DocType 'LMS Course' #. Label of the currency (Link) field in DocType 'LMS Course'
@@ -1487,8 +1518,8 @@ msgid "Desk"
msgstr "" msgstr ""
#: frontend/src/components/Modals/DiscussionModal.vue:22 #: frontend/src/components/Modals/DiscussionModal.vue:22
#: frontend/src/pages/BatchForm.vue:14 frontend/src/pages/CourseForm.vue:28 #: frontend/src/pages/AssignmentForm.vue:27 frontend/src/pages/BatchForm.vue:14
#: frontend/src/pages/QuizForm.vue:42 #: frontend/src/pages/CourseForm.vue:28 frontend/src/pages/QuizForm.vue:42
msgid "Details" msgid "Details"
msgstr "详细信息" msgstr "详细信息"
@@ -1619,6 +1650,10 @@ msgstr "发送电子邮件"
msgid "Email Templates" msgid "Email Templates"
msgstr "" msgstr ""
#: frontend/src/components/BatchStudents.vue:409
msgid "Email copied to clipboard"
msgstr ""
#. Label of the show_emails (Check) field in DocType 'LMS Settings' #. Label of the show_emails (Check) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Emails" msgid "Emails"
@@ -1699,8 +1734,8 @@ msgid "Enroll Now"
msgstr "" msgstr ""
#: frontend/src/components/CourseCard.vue:43 #: frontend/src/components/CourseCard.vue:43
#: frontend/src/components/CourseCardOverlay.vue:103 #: frontend/src/components/CourseCardOverlay.vue:104
#: frontend/src/pages/CourseDetail.vue:31 #: frontend/src/pages/CourseDetail.vue:33
msgid "Enrolled Students" msgid "Enrolled Students"
msgstr "" msgstr ""
@@ -1717,7 +1752,7 @@ msgstr ""
msgid "Enrollment Count" msgid "Enrollment Count"
msgstr "" msgstr ""
#: lms/lms/utils.py:1720 #: lms/lms/utils.py:1726
msgid "Enrollment Failed" msgid "Enrollment Failed"
msgstr "" msgstr ""
@@ -1733,7 +1768,7 @@ msgstr ""
msgid "Enter Client Id and Client Secret in Google Settings to send calendar invites for evaluations." msgid "Enter Client Id and Client Secret in Google Settings to send calendar invites for evaluations."
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:96 #: frontend/src/components/Assignment.vue:110
msgid "Enter a URL" msgid "Enter a URL"
msgstr "" msgstr ""
@@ -1745,6 +1780,7 @@ msgstr ""
msgid "Enter the correct answer" msgid "Enter the correct answer"
msgstr "" msgstr ""
#: frontend/src/components/Assignment.vue:268
#: frontend/src/components/Modals/AnnouncementModal.vue:105 #: frontend/src/components/Modals/AnnouncementModal.vue:105
#: frontend/src/components/Modals/BulkCertificates.vue:115 #: frontend/src/components/Modals/BulkCertificates.vue:115
#: frontend/src/components/Modals/ChapterModal.vue:159 #: frontend/src/components/Modals/ChapterModal.vue:159
@@ -1755,8 +1791,9 @@ msgstr ""
#: frontend/src/components/Modals/Question.vue:326 #: frontend/src/components/Modals/Question.vue:326
#: frontend/src/components/Modals/StudentModal.vue:69 #: frontend/src/components/Modals/StudentModal.vue:69
#: frontend/src/components/SettingDetails.vue:62 #: frontend/src/components/SettingDetails.vue:62
#: frontend/src/pages/Billing.vue:264 frontend/src/pages/QuizForm.vue:350 #: frontend/src/pages/AssignmentForm.vue:139
#: frontend/src/pages/QuizForm.vue:365 #: frontend/src/pages/AssignmentForm.vue:159 frontend/src/pages/Billing.vue:264
#: frontend/src/pages/QuizForm.vue:346 frontend/src/pages/QuizForm.vue:361
#: frontend/src/pages/QuizSubmission.vue:141 #: frontend/src/pages/QuizSubmission.vue:141
msgid "Error" msgid "Error"
msgstr "错误" msgstr "错误"
@@ -1919,7 +1956,7 @@ msgstr ""
msgid "Featured" msgid "Featured"
msgstr "精选" msgstr "精选"
#: frontend/src/pages/AssignmentSubmission.vue:21 #: frontend/src/components/Assignment.vue:61
msgid "Feel free to make edits to your submission if needed." msgid "Feel free to make edits to your submission if needed."
msgstr "" msgstr ""
@@ -1938,6 +1975,10 @@ msgstr ""
msgid "File Type" msgid "File Type"
msgstr "文件类型" msgstr "文件类型"
#: frontend/src/pages/Jobs.vue:47
msgid "Find the perfect job for you"
msgstr ""
#: frontend/src/components/Members.vue:38 #: frontend/src/components/Members.vue:38
#: frontend/src/components/Modals/EditProfile.vue:59 #: frontend/src/components/Modals/EditProfile.vue:59
msgid "First Name" msgid "First Name"
@@ -1953,7 +1994,7 @@ msgstr ""
msgid "Flexible Time" msgid "Flexible Time"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:463 #: frontend/src/pages/QuizForm.vue:459
msgid "Form to create and edit quizzes" msgid "Form to create and edit quizzes"
msgstr "" msgstr ""
@@ -1967,7 +2008,7 @@ msgid "Free"
msgstr "" msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:118 #: frontend/src/pages/Jobs.vue:121
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Freelance" msgid "Freelance"
msgstr "" msgstr ""
@@ -2009,7 +2050,7 @@ msgid "Full Name"
msgstr "全名" msgstr "全名"
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:115 #: frontend/src/pages/Jobs.vue:118
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Full Time" msgid "Full Time"
msgstr "" msgstr ""
@@ -2069,6 +2110,7 @@ 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:154
#: lms/lms/doctype/education_detail/education_detail.json #: lms/lms/doctype/education_detail/education_detail.json
msgid "Grade" msgid "Grade"
msgstr "" msgstr ""
@@ -2083,6 +2125,10 @@ msgstr ""
msgid "Grade Type" msgid "Grade Type"
msgstr "" msgstr ""
#: frontend/src/components/Assignment.vue:149
msgid "Grading"
msgstr ""
#. Label of the grant_only_once (Check) field in DocType 'LMS Badge' #. Label of the grant_only_once (Check) field in DocType 'LMS Badge'
#: lms/lms/doctype/lms_badge/lms_badge.json #: lms/lms/doctype/lms_badge/lms_badge.json
msgid "Grant only once" msgid "Grant only once"
@@ -2146,7 +2192,7 @@ msgstr ""
msgid "Host" msgid "Host"
msgstr "" msgstr ""
#: frontend/src/components/LessonHelp.vue:9 #: frontend/src/components/LessonHelp.vue:24
msgid "How to add a Quiz?" msgid "How to add a Quiz?"
msgstr "" msgstr ""
@@ -2168,7 +2214,7 @@ msgstr ""
msgid "I am unavailable" msgid "I am unavailable"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:384 #: frontend/src/pages/QuizForm.vue:380
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
@@ -2178,7 +2224,7 @@ msgstr "ID"
msgid "Icon" msgid "Icon"
msgstr "图标" msgstr "图标"
#: frontend/src/components/LessonHelp.vue:68 #: frontend/src/components/LessonHelp.vue:11
msgid "If Include in Preview is enabled for a lesson then the lesson will also be accessible to non logged in users." msgid "If Include in Preview is enabled for a lesson then the lesson will also be accessible to non logged in users."
msgstr "" msgstr ""
@@ -2261,7 +2307,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Exercise Latest #. Option for the 'Status' (Select) field in DocType 'Exercise Latest
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'Exercise Submission' #. Option for the 'Status' (Select) field in DocType 'Exercise Submission'
#: frontend/src/components/Quiz.vue:166 #: frontend/src/components/Quiz.vue:168
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
#: lms/lms/doctype/exercise_submission/exercise_submission.json #: lms/lms/doctype/exercise_submission/exercise_submission.json
msgid "Incorrect" msgid "Incorrect"
@@ -2469,7 +2515,7 @@ msgstr ""
msgid "Jobs" msgid "Jobs"
msgstr "工作" msgstr "工作"
#: frontend/src/components/LiveClass.vue:55 #: frontend/src/components/LiveClass.vue:58
#: lms/templates/upcoming_evals.html:15 #: lms/templates/upcoming_evals.html:15
msgid "Join" msgid "Join"
msgstr "加入" msgstr "加入"
@@ -2759,7 +2805,7 @@ msgstr ""
#. Group in Course Chapter's connections #. Group in Course Chapter's connections
#. Label of the lessons (Data) field in DocType 'LMS Course' #. Label of the lessons (Data) field in DocType 'LMS Course'
#: frontend/src/components/CourseCard.vue:34 #: frontend/src/components/CourseCard.vue:34
#: frontend/src/components/CourseCardOverlay.vue:96 #: frontend/src/components/CourseCardOverlay.vue:97
#: lms/lms/doctype/course_chapter/course_chapter.json #: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "Lessons" msgid "Lessons"
@@ -2825,6 +2871,7 @@ msgid "LiveCode URL"
msgstr "" msgstr ""
#: frontend/src/components/Members.vue:106 #: frontend/src/components/Members.vue:106
#: frontend/src/pages/Assignments.vue:71
#: frontend/src/pages/QuizSubmissionList.vue:39 #: frontend/src/pages/QuizSubmissionList.vue:39
#: frontend/src/pages/Quizzes.vue:51 #: frontend/src/pages/Quizzes.vue:51
msgid "Load More" msgid "Load More"
@@ -2854,6 +2901,7 @@ msgstr "位置"
msgid "Location Preference" msgid "Location Preference"
msgstr "" msgstr ""
#: frontend/src/components/AssignmentBlock.vue:13
#: frontend/src/components/NoPermission.vue:28 #: frontend/src/components/NoPermission.vue:28
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:175 #: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:175
#: frontend/src/pages/Lesson.vue:24 #: frontend/src/pages/Lesson.vue:24
@@ -2913,7 +2961,7 @@ msgstr ""
#. Label of the marks (Int) field in DocType 'LMS Quiz Result' #. Label of the marks (Int) field in DocType 'LMS Quiz Result'
#: frontend/src/components/Modals/Question.vue:50 #: frontend/src/components/Modals/Question.vue:50
#: frontend/src/components/Modals/Question.vue:99 #: frontend/src/components/Modals/Question.vue:99
#: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:394 #: frontend/src/components/Quiz.vue:94 frontend/src/pages/QuizForm.vue:390
#: frontend/src/pages/QuizSubmission.vue:59 #: frontend/src/pages/QuizSubmission.vue:59
#: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json #: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json
#: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json #: lms/lms/doctype/lms_quiz_result/lms_quiz_result.json
@@ -2970,6 +3018,7 @@ msgstr "中:"
#. Label of the member (Link) field in DocType 'LMS Payment' #. Label of the member (Link) field in DocType 'LMS Payment'
#. Label of the member (Link) field in DocType 'LMS Program Member' #. Label of the member (Link) field in DocType 'LMS Program Member'
#. Label of the member (Link) field in DocType 'LMS Quiz Submission' #. Label of the member (Link) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/AssignmentSubmissionList.vue:14
#: frontend/src/pages/QuizSubmission.vue:31 #: frontend/src/pages/QuizSubmission.vue:31
#: frontend/src/pages/QuizSubmissionList.vue:86 #: frontend/src/pages/QuizSubmissionList.vue:86
#: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json #: lms/lms/doctype/exercise_latest_submission/exercise_latest_submission.json
@@ -3140,11 +3189,11 @@ msgstr ""
msgid "Modified By" msgid "Modified By"
msgstr "修改者" msgstr "修改者"
#: lms/lms/api.py:199 #: lms/lms/api.py:201
msgid "Module Name is incorrect or does not exist." msgid "Module Name is incorrect or does not exist."
msgstr "" msgstr ""
#: lms/lms/api.py:195 #: lms/lms/api.py:197
msgid "Module is incorrect." msgid "Module is incorrect."
msgstr "" msgstr ""
@@ -3173,12 +3222,17 @@ msgid "My calendar"
msgstr "" msgstr ""
#. Option for the 'Event' (Select) field in DocType 'LMS Badge' #. Option for the 'Event' (Select) field in DocType 'LMS Badge'
#: frontend/src/pages/Batches.vue:30 frontend/src/pages/Courses.vue:45 #: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:30
#: frontend/src/pages/Programs.vue:14 lms/lms/doctype/lms_badge/lms_badge.json #: frontend/src/pages/Courses.vue:45 frontend/src/pages/Programs.vue:14
#: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New" msgid "New"
msgstr "新" msgstr "新"
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:41 #: frontend/src/pages/AssignmentForm.vue:178
msgid "New Assignment"
msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:43
msgid "New Assignment Submission" msgid "New Assignment Submission"
msgstr "" msgstr ""
@@ -3214,7 +3268,7 @@ msgstr ""
msgid "New Question" msgid "New Question"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:454 frontend/src/pages/QuizForm.vue:462 #: frontend/src/pages/QuizForm.vue:450 frontend/src/pages/QuizForm.vue:458
#: frontend/src/pages/Quizzes.vue:18 #: frontend/src/pages/Quizzes.vue:18
msgid "New Quiz" msgid "New Quiz"
msgstr "" msgstr ""
@@ -3236,7 +3290,7 @@ msgstr ""
msgid "New {0}" msgid "New {0}"
msgstr "新建 {0}" msgstr "新建 {0}"
#: frontend/src/components/Quiz.vue:209 frontend/src/pages/Lesson.vue:84 #: frontend/src/components/Quiz.vue:211 frontend/src/pages/Lesson.vue:84
msgid "Next" msgid "Next"
msgstr "下一个" msgstr "下一个"
@@ -3244,7 +3298,7 @@ msgstr "下一个"
msgid "Next Question" msgid "Next Question"
msgstr "" msgstr ""
#: frontend/src/components/Assessments.vue:66 lms/templates/assessments.html:58 #: frontend/src/components/Assessments.vue:75 lms/templates/assessments.html:58
msgid "No Assessments" msgid "No Assessments"
msgstr "" msgstr ""
@@ -3265,6 +3319,10 @@ msgstr ""
msgid "No announcements" msgid "No announcements"
msgstr "" msgstr ""
#: frontend/src/pages/Assignments.vue:56
msgid "No assignments found"
msgstr ""
#: frontend/src/pages/Batches.vue:125 #: frontend/src/pages/Batches.vue:125
msgid "No batches found" msgid "No batches found"
msgstr "" msgstr ""
@@ -3293,11 +3351,11 @@ msgstr ""
msgid "No introduction" msgid "No introduction"
msgstr "" msgstr ""
#: frontend/src/pages/Jobs.vue:60 #: frontend/src/pages/Jobs.vue:63
msgid "No jobs posted" msgid "No jobs posted"
msgstr "" msgstr ""
#: frontend/src/components/LiveClass.vue:61 #: frontend/src/components/LiveClass.vue:71
msgid "No live classes scheduled" msgid "No live classes scheduled"
msgstr "" msgstr ""
@@ -3313,6 +3371,10 @@ msgstr ""
msgid "No slots available for this date." msgid "No slots available for this date."
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmissionList.vue:67
msgid "No submissions"
msgstr ""
#: frontend/src/components/UpcomingEvaluations.vue:39 #: frontend/src/components/UpcomingEvaluations.vue:39
msgid "No upcoming evaluations." msgid "No upcoming evaluations."
msgstr "" msgstr ""
@@ -3361,6 +3423,7 @@ msgstr ""
msgid "Not Permitted" msgid "Not Permitted"
msgstr "不允许" msgstr "不允许"
#: frontend/src/components/Assignment.vue:33
#: frontend/src/components/BrandSettings.vue:10 #: frontend/src/components/BrandSettings.vue:10
#: frontend/src/components/PaymentSettings.vue:9 #: frontend/src/components/PaymentSettings.vue:9
#: frontend/src/components/SettingDetails.vue:10 #: frontend/src/components/SettingDetails.vue:10
@@ -3404,7 +3467,7 @@ msgstr ""
msgid "Once again, congratulations on this significant accomplishment." msgid "Once again, congratulations on this significant accomplishment."
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:17 #: frontend/src/components/Assignment.vue:57
msgid "Once the moderator grades your submission, you'll find the details here." msgid "Once the moderator grades your submission, you'll find the details here."
msgstr "" msgstr ""
@@ -3421,7 +3484,7 @@ msgstr ""
msgid "Only files of type {0} will be accepted." msgid "Only files of type {0} will be accepted."
msgstr "" msgstr ""
#: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:527 #: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:529
msgid "Only image file is allowed." msgid "Only image file is allowed."
msgstr "" msgstr ""
@@ -3550,7 +3613,7 @@ msgid "Pan Number"
msgstr "" msgstr ""
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity' #. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
#: frontend/src/pages/Jobs.vue:116 #: frontend/src/pages/Jobs.vue:119
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Part Time" msgid "Part Time"
msgstr "" msgstr ""
@@ -3681,7 +3744,7 @@ msgstr ""
msgid "Phone Number" msgid "Phone Number"
msgstr "电话号码" msgstr "电话号码"
#: frontend/src/components/CourseCardOverlay.vue:141 #: frontend/src/components/CourseCardOverlay.vue:145
msgid "Please Login" msgid "Please Login"
msgstr "" msgstr ""
@@ -3701,7 +3764,7 @@ msgstr "请检查您的电子邮件验证"
msgid "Please click on the following button to set your new password" msgid "Please click on the following button to set your new password"
msgstr "" msgstr ""
#: lms/lms/utils.py:1842 lms/lms/utils.py:1846 #: lms/lms/utils.py:1848 lms/lms/utils.py:1852
msgid "Please complete the previous courses in the program to enroll in this course." msgid "Please complete the previous courses in the program to enroll in this course."
msgstr "" msgstr ""
@@ -3721,8 +3784,8 @@ msgstr ""
msgid "Please enter a title." msgid "Please enter a title."
msgstr "" msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:38 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:40
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:98 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:122
msgid "Please enter a valid URL." msgid "Please enter a valid URL."
msgstr "" msgstr ""
@@ -3730,7 +3793,7 @@ msgstr ""
msgid "Please enter a valid time in the format HH:mm." msgid "Please enter a valid time in the format HH:mm."
msgstr "" msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:92 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:116
msgid "Please enter the URL for assignment submission." msgid "Please enter the URL for assignment submission."
msgstr "" msgstr ""
@@ -3750,6 +3813,10 @@ msgstr ""
msgid "Please let us know where you heard about us from." msgid "Please let us know where you heard about us from."
msgstr "" msgstr ""
#: frontend/src/components/AssignmentBlock.vue:9
msgid "Please login to access the assignment."
msgstr ""
#: frontend/src/components/QuizBlock.vue:5 #: frontend/src/components/QuizBlock.vue:5
msgid "Please login to access the quiz." msgid "Please login to access the quiz."
msgstr "" msgstr ""
@@ -3758,7 +3825,7 @@ msgstr ""
msgid "Please login to access this page." msgid "Please login to access this page."
msgstr "" msgstr ""
#: lms/lms/api.py:191 #: lms/lms/api.py:193
msgid "Please login to continue with payment." msgid "Please login to continue with payment."
msgstr "" msgstr ""
@@ -3795,7 +3862,7 @@ msgstr ""
msgid "Please upload a SCORM package" msgid "Please upload a SCORM package"
msgstr "" msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:95 #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:119
msgid "Please upload the assignment file." msgid "Please upload the assignment file."
msgstr "" msgstr ""
@@ -4003,9 +4070,9 @@ msgstr ""
#. Label of the question (Text Editor) field in DocType 'LMS Question' #. Label of the question (Text Editor) field in DocType 'LMS Question'
#. Label of the question (Link) field in DocType 'LMS Quiz Question' #. Label of the question (Link) field in DocType 'LMS Quiz Question'
#. Label of the question (Text) field in DocType 'LMS Quiz Result' #. Label of the question (Text) field in DocType 'LMS Quiz Result'
#: frontend/src/components/Assignment.vue:17
#: frontend/src/components/Modals/Question.vue:38 #: frontend/src/components/Modals/Question.vue:38
#: frontend/src/pages/AssignmentSubmission.vue:26 #: frontend/src/pages/AssignmentForm.vue:45 frontend/src/pages/QuizForm.vue:385
#: frontend/src/pages/QuizForm.vue:389
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment/lms_assignment.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
@@ -4042,7 +4109,7 @@ msgstr ""
msgid "Question {0}" msgid "Question {0}"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:186 #: frontend/src/components/Quiz.vue:188
msgid "Question {0} of {1}" msgid "Question {0} of {1}"
msgstr "" msgstr ""
@@ -4051,7 +4118,7 @@ msgstr ""
msgid "Questions" msgid "Questions"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:431 #: frontend/src/pages/QuizForm.vue:427
msgid "Questions deleted successfully" msgid "Questions deleted successfully"
msgstr "" msgstr ""
@@ -4079,7 +4146,7 @@ msgstr ""
msgid "Quiz Submissions" msgid "Quiz Submissions"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:223 #: frontend/src/components/Quiz.vue:225
msgid "Quiz Summary" msgid "Quiz Summary"
msgstr "" msgstr ""
@@ -4088,7 +4155,7 @@ msgstr ""
msgid "Quiz Title" msgid "Quiz Title"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:343 #: frontend/src/pages/QuizForm.vue:339
msgid "Quiz created successfully" msgid "Quiz created successfully"
msgstr "" msgstr ""
@@ -4096,7 +4163,7 @@ msgstr ""
msgid "Quiz is not available to Guest users. Please login to continue." msgid "Quiz is not available to Guest users. Please login to continue."
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:362 #: frontend/src/pages/QuizForm.vue:358
msgid "Quiz updated successfully" msgid "Quiz updated successfully"
msgstr "" msgstr ""
@@ -4105,7 +4172,7 @@ msgstr ""
msgid "Quiz will appear at the bottom of the lesson." msgid "Quiz will appear at the bottom of the lesson."
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:442 frontend/src/pages/Quizzes.vue:138 #: frontend/src/pages/QuizForm.vue:438 frontend/src/pages/Quizzes.vue:138
#: frontend/src/pages/Quizzes.vue:148 #: frontend/src/pages/Quizzes.vue:148
msgid "Quizzes" msgid "Quizzes"
msgstr "" msgstr ""
@@ -4113,7 +4180,7 @@ msgstr ""
#. Label of the rating (Rating) field in DocType 'LMS Certificate Evaluation' #. Label of the rating (Rating) field in DocType 'LMS Certificate Evaluation'
#. 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:108 #: frontend/src/components/CourseCardOverlay.vue:110
#: frontend/src/components/Modals/Event.vue:86 #: frontend/src/components/Modals/Event.vue:86
#: frontend/src/components/Modals/ReviewModal.vue:20 #: frontend/src/components/Modals/ReviewModal.vue:20
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -4127,10 +4194,6 @@ msgstr ""
msgid "Rating cannot be 0" msgid "Rating cannot be 0"
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:30
msgid "Read the question carefully before attempting the assignment."
msgstr ""
#. Option for the 'Stage' (Select) field in DocType 'LMS Batch Old' #. Option for the 'Stage' (Select) field in DocType 'LMS Batch Old'
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
msgid "Ready" msgid "Ready"
@@ -4309,15 +4372,15 @@ msgstr ""
msgid "Saturday" msgid "Saturday"
msgstr "" msgstr ""
#: frontend/src/components/AssessmentPlugin.vue:34
#: frontend/src/components/Assignment.vue:43
#: frontend/src/components/Controls/CodeEditor.vue:25 #: frontend/src/components/Controls/CodeEditor.vue:25
#: frontend/src/components/Modals/Event.vue:101 #: frontend/src/components/Modals/Event.vue:101
#: frontend/src/components/Modals/Event.vue:129 #: frontend/src/components/Modals/Event.vue:129
#: frontend/src/components/QuizPlugin.vue:23 #: frontend/src/pages/AssignmentForm.vue:21 frontend/src/pages/BatchForm.vue:8
#: frontend/src/pages/AssignmentSubmission.vue:7 #: frontend/src/pages/CourseForm.vue:20 frontend/src/pages/JobCreation.vue:8
#: frontend/src/pages/BatchForm.vue:8 frontend/src/pages/CourseForm.vue:20 #: frontend/src/pages/LessonForm.vue:14 frontend/src/pages/ProgramForm.vue:7
#: frontend/src/pages/JobCreation.vue:8 frontend/src/pages/LessonForm.vue:14 #: frontend/src/pages/QuizForm.vue:34 frontend/src/pages/QuizSubmission.vue:14
#: frontend/src/pages/ProgramForm.vue:7 frontend/src/pages/QuizForm.vue:34
#: frontend/src/pages/QuizSubmission.vue:14
#: lms/public/js/common_functions.js:405 #: lms/public/js/common_functions.js:405
msgid "Save" msgid "Save"
msgstr "保存" msgstr "保存"
@@ -4359,6 +4422,10 @@ msgstr ""
msgid "Search" msgid "Search"
msgstr "搜索" msgstr "搜索"
#: frontend/src/pages/Assignments.vue:25
msgid "Search by title"
msgstr ""
#: frontend/src/components/Controls/IconPicker.vue:36 #: frontend/src/components/Controls/IconPicker.vue:36
msgid "Search for an icon" msgid "Search for an icon"
msgstr "" msgstr ""
@@ -4384,7 +4451,7 @@ msgstr ""
msgid "Select a question" msgid "Select a question"
msgstr "" msgstr ""
#: frontend/src/components/QuizPlugin.vue:17 #: frontend/src/components/AssessmentPlugin.vue:21
msgid "Select a quiz" msgid "Select a quiz"
msgstr "" msgstr ""
@@ -4392,6 +4459,10 @@ msgstr ""
msgid "Select a slot" msgid "Select a slot"
msgstr "" msgstr ""
#: frontend/src/components/AssessmentPlugin.vue:28
msgid "Select an assignment"
msgstr ""
#. Label of the send_calendar_invite_for_evaluations (Check) field in DocType #. Label of the send_calendar_invite_for_evaluations (Check) field in DocType
#. 'LMS Settings' #. 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -4583,7 +4654,7 @@ msgstr ""
msgid "Stage" msgid "Stage"
msgstr "" msgstr ""
#: frontend/src/components/LiveClass.vue:46 frontend/src/components/Quiz.vue:65 #: frontend/src/components/LiveClass.vue:50 frontend/src/components/Quiz.vue:65
#: lms/templates/quiz/quiz.html:39 #: lms/templates/quiz/quiz.html:39
msgid "Start" msgid "Start"
msgstr "开始" msgstr "开始"
@@ -4664,6 +4735,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Course Progress' #. Label of the status (Select) field in DocType 'LMS Course Progress'
#. Label of the status (Select) field in DocType 'LMS Mentor Request' #. Label of the status (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:91 #: frontend/src/components/Modals/Event.vue:91
#: frontend/src/pages/AssignmentSubmissionList.vue:19
#: frontend/src/pages/JobCreation.vue:41 #: frontend/src/pages/JobCreation.vue:41
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/cohort/cohort.json #: lms/lms/doctype/cohort/cohort.json
@@ -4724,7 +4796,7 @@ msgstr ""
msgid "Students" msgid "Students"
msgstr "" msgstr ""
#: frontend/src/components/BatchStudents.vue:282 #: frontend/src/components/BatchStudents.vue:310
msgid "Students deleted successfully" msgid "Students deleted successfully"
msgstr "" msgstr ""
@@ -4746,19 +4818,24 @@ msgstr ""
msgid "Subject" msgid "Subject"
msgstr "主题" msgstr "主题"
#: frontend/src/pages/AssignmentSubmission.vue:40 #: frontend/src/components/Assignment.vue:29
msgid "Submission" msgid "Submission"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:30 #: frontend/src/pages/AssignmentForm.vue:17 frontend/src/pages/QuizForm.vue:30
msgid "Submission List" msgid "Submission List"
msgstr "" msgstr ""
#: frontend/src/components/Assignment.vue:10
#: frontend/src/components/Assignment.vue:13
msgid "Submission by"
msgstr ""
#: frontend/src/components/Modals/AssessmentModal.vue:9 #: frontend/src/components/Modals/AssessmentModal.vue:9
#: frontend/src/components/Modals/BatchCourseModal.vue:9 #: frontend/src/components/Modals/BatchCourseModal.vue:9
#: frontend/src/components/Modals/EvaluationModal.vue:9 #: frontend/src/components/Modals/EvaluationModal.vue:9
#: frontend/src/components/Modals/Question.vue:338 #: frontend/src/components/Modals/Question.vue:338
#: frontend/src/components/Quiz.vue:214 lms/templates/assignment.html:9 #: frontend/src/components/Quiz.vue:216 lms/templates/assignment.html:9
#: lms/templates/livecode/extension_footer.html:25 #: lms/templates/livecode/extension_footer.html:25
#: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163 #: lms/templates/quiz/quiz.html:128 lms/templates/reviews.html:163
#: lms/www/new-sign-up.html:32 #: lms/www/new-sign-up.html:32
@@ -4774,10 +4851,12 @@ msgstr ""
msgid "Submitted {0}" msgid "Submitted {0}"
msgstr "" msgstr ""
#: frontend/src/components/Assignment.vue:316
#: frontend/src/components/BatchCourses.vue:150 #: frontend/src/components/BatchCourses.vue:150
#: frontend/src/components/BatchOverlay.vue:135 #: frontend/src/components/BatchOverlay.vue:135
#: frontend/src/components/BatchStudents.vue:282 #: frontend/src/components/BatchStudents.vue:310
#: frontend/src/components/CourseCardOverlay.vue:161 #: frontend/src/components/BatchStudents.vue:409
#: frontend/src/components/CourseCardOverlay.vue:165
#: frontend/src/components/Modals/AnnouncementModal.vue:99 #: frontend/src/components/Modals/AnnouncementModal.vue:99
#: frontend/src/components/Modals/AssessmentModal.vue:73 #: frontend/src/components/Modals/AssessmentModal.vue:73
#: frontend/src/components/Modals/BulkCertificates.vue:121 #: frontend/src/components/Modals/BulkCertificates.vue:121
@@ -4787,11 +4866,12 @@ msgstr ""
#: frontend/src/components/Modals/Event.vue:310 #: frontend/src/components/Modals/Event.vue:310
#: frontend/src/components/Modals/Question.vue:264 #: frontend/src/components/Modals/Question.vue:264
#: frontend/src/components/Modals/Question.vue:315 #: frontend/src/components/Modals/Question.vue:315
#: frontend/src/pages/AssignmentForm.vue:155
#: frontend/src/pages/CourseForm.vue:461 frontend/src/pages/ProgramForm.vue:229 #: frontend/src/pages/CourseForm.vue:461 frontend/src/pages/ProgramForm.vue:229
#: frontend/src/pages/ProgramForm.vue:251 #: frontend/src/pages/ProgramForm.vue:251
#: frontend/src/pages/ProgramForm.vue:272 #: frontend/src/pages/ProgramForm.vue:272
#: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:343 #: frontend/src/pages/ProgramForm.vue:298 frontend/src/pages/QuizForm.vue:339
#: frontend/src/pages/QuizForm.vue:362 frontend/src/pages/QuizForm.vue:431 #: frontend/src/pages/QuizForm.vue:358 frontend/src/pages/QuizForm.vue:427
msgid "Success" msgid "Success"
msgstr "成功" msgstr "成功"
@@ -4809,7 +4889,7 @@ msgstr "概要"
msgid "Sunday" msgid "Sunday"
msgstr "" msgstr ""
#: lms/lms/api.py:952 #: lms/lms/api.py:954
msgid "Suspicious pattern found in {0}: {1}" msgid "Suspicious pattern found in {0}: {1}"
msgstr "" msgstr ""
@@ -4924,6 +5004,10 @@ msgstr ""
msgid "Thanks and Regards" msgid "Thanks and Regards"
msgstr "" msgstr ""
#: lms/lms/utils.py:1755
msgid "The batch is full. Please contact the Administrator."
msgstr ""
#: lms/templates/emails/lms_course_interest.html:5 #: lms/templates/emails/lms_course_interest.html:5
msgid "The course {0} is now available on {1}." msgid "The course {0} is now available on {1}."
msgstr "" msgstr ""
@@ -4964,14 +5048,22 @@ msgstr ""
msgid "There are no seats available in this batch." msgid "There are no seats available in this batch."
msgstr "" msgstr ""
#: frontend/src/components/BatchStudents.vue:165 #: frontend/src/components/BatchStudents.vue:182
msgid "There are no students in this batch." msgid "There are no students in this batch."
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmissionList.vue:70
msgid "There are no submissions for this assignment."
msgstr ""
#: lms/templates/course_list.html:14 #: lms/templates/course_list.html:14
msgid "There are no {0} on this site." msgid "There are no {0} on this site."
msgstr "" msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:82
msgid "There has been an update on your submission for assignment {0}"
msgstr ""
#: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:42 #: lms/lms/doctype/lms_quiz_submission/lms_quiz_submission.py:42
msgid "There has been an update on your submission. You have got a score of {0} for the quiz {1}" msgid "There has been an update on your submission. You have got a score of {0} for the quiz {1}"
msgstr "" msgstr ""
@@ -4991,11 +5083,15 @@ msgstr ""
msgid "This certificate does no expire" msgid "This certificate does no expire"
msgstr "" msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:91 #: frontend/src/components/LiveClass.vue:64
msgid "This class has ended"
msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:92
msgid "This course has:" msgid "This course has:"
msgstr "" msgstr ""
#: lms/lms/utils.py:1600 #: lms/lms/utils.py:1606
msgid "This course is free." msgid "This course is free."
msgstr "" msgstr ""
@@ -5098,10 +5194,12 @@ msgstr ""
#. Label of the title (Data) field in DocType 'Work Experience' #. Label of the title (Data) field in DocType 'Work Experience'
#: frontend/src/components/Modals/DiscussionModal.vue:18 #: frontend/src/components/Modals/DiscussionModal.vue:18
#: frontend/src/components/Modals/LiveClassModal.vue:23 #: frontend/src/components/Modals/LiveClassModal.vue:23
#: frontend/src/pages/BatchForm.vue:20 frontend/src/pages/CourseForm.vue:32 #: frontend/src/pages/AssignmentForm.vue:32
#: frontend/src/pages/JobCreation.vue:20 frontend/src/pages/ProgramForm.vue:11 #: frontend/src/pages/Assignments.vue:152 frontend/src/pages/BatchForm.vue:20
#: frontend/src/pages/Programs.vue:118 frontend/src/pages/QuizForm.vue:48 #: frontend/src/pages/CourseForm.vue:32 frontend/src/pages/JobCreation.vue:20
#: frontend/src/pages/Quizzes.vue:116 lms/lms/doctype/cohort/cohort.json #: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:118
#: frontend/src/pages/QuizForm.vue:48 frontend/src/pages/Quizzes.vue:116
#: lms/lms/doctype/cohort/cohort.json
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/course_chapter/course_chapter.json #: lms/lms/doctype/course_chapter/course_chapter.json
@@ -5137,11 +5235,11 @@ msgstr "至"
msgid "To Date" msgid "To Date"
msgstr "至今" msgstr "至今"
#: lms/lms/utils.py:1611 #: lms/lms/utils.py:1617
msgid "To join this batch, please contact the Administrator." msgid "To join this batch, please contact the Administrator."
msgstr "" msgstr ""
#: frontend/src/components/LessonHelp.vue:34 #: frontend/src/components/LessonHelp.vue:49
msgid "To upload Image, Video, Audio or PDF from your system, click on the add icon and select upload from the menu. Then choose the file you want to add to the lesson and it gets added to your lesson." msgid "To upload Image, Video, Audio or PDF from your system, click on the add icon and select upload from the menu. Then choose the file you want to add to the lesson and it gets added to your lesson."
msgstr "" msgstr ""
@@ -5169,7 +5267,7 @@ msgstr ""
msgid "Travel" msgid "Travel"
msgstr "出差" msgstr "出差"
#: frontend/src/components/Quiz.vue:252 lms/templates/quiz/quiz.html:131 #: frontend/src/components/Quiz.vue:254 lms/templates/quiz/quiz.html:131
msgid "Try Again" msgid "Try Again"
msgstr "" msgstr ""
@@ -5191,6 +5289,8 @@ msgstr ""
#. Label of the type (Select) field in DocType 'LMS Quiz Question' #. Label of the type (Select) field in DocType 'LMS Quiz Question'
#: frontend/src/components/Modals/AssessmentModal.vue:22 #: frontend/src/components/Modals/AssessmentModal.vue:22
#: frontend/src/components/Modals/Question.vue:54 #: frontend/src/components/Modals/Question.vue:54
#: frontend/src/pages/AssignmentForm.vue:39
#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:157
#: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:16 #: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:16
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/lms_assignment/lms_assignment.json #: lms/lms/doctype/lms_assignment/lms_assignment.json
@@ -5201,7 +5301,7 @@ msgstr ""
msgid "Type" msgid "Type"
msgstr "类型" msgstr "类型"
#: frontend/src/components/Quiz.vue:583 #: frontend/src/components/Quiz.vue:589
msgid "Type your answer" msgid "Type your answer"
msgstr "" msgstr ""
@@ -5282,11 +5382,11 @@ msgstr ""
msgid "Upload" msgid "Upload"
msgstr "上传" msgstr "上传"
#: frontend/src/pages/AssignmentSubmission.vue:69 #: frontend/src/components/Assignment.vue:78
msgid "Upload File" msgid "Upload File"
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:68 #: frontend/src/components/Assignment.vue:77
msgid "Uploading {0}%" msgid "Uploading {0}%"
msgstr "" msgstr ""
@@ -5404,7 +5504,7 @@ msgstr ""
msgid "Welcome to {0}!" msgid "Welcome to {0}!"
msgstr "欢迎{0}!" msgstr "欢迎{0}!"
#: frontend/src/components/LessonHelp.vue:63 #: frontend/src/components/LessonHelp.vue:6
msgid "What does include in preview mean?" msgid "What does include in preview mean?"
msgstr "" msgstr ""
@@ -5453,7 +5553,7 @@ msgstr ""
msgid "Write a review" msgid "Write a review"
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:102 #: frontend/src/components/Assignment.vue:120
msgid "Write your answer here" msgid "Write your answer here"
msgstr "" msgstr ""
@@ -5461,11 +5561,11 @@ msgstr ""
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}."
msgstr "" msgstr ""
#: lms/lms/api.py:215 #: lms/lms/api.py:217
msgid "You are already enrolled for this batch." msgid "You are already enrolled for this batch."
msgstr "" msgstr ""
#: lms/lms/api.py:207 #: lms/lms/api.py:209
msgid "You are already enrolled for this course." msgid "You are already enrolled for this course."
msgstr "" msgstr ""
@@ -5530,7 +5630,7 @@ msgstr ""
msgid "You got" msgid "You got"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:234 #: frontend/src/components/Quiz.vue:236
#, python-format #, python-format
msgid "You got {0}% correct answers with a score of {1} out of {2}" msgid "You got {0}% correct answers with a score of {1} out of {2}"
msgstr "" msgstr ""
@@ -5551,7 +5651,7 @@ msgstr ""
msgid "You have been enrolled in this batch" msgid "You have been enrolled in this batch"
msgstr "" msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:162 #: frontend/src/components/CourseCardOverlay.vue:166
msgid "You have been enrolled in this course" msgid "You have been enrolled in this course"
msgstr "" msgstr ""
@@ -5559,6 +5659,10 @@ msgstr ""
msgid "You have got a score of {0} for the quiz {1}" msgid "You have got a score of {0} for the quiz {1}"
msgstr "" msgstr ""
#: frontend/src/pages/Assignments.vue:60
msgid "You have not created any assignments yet. To create a new assignment, click on the \"New\" button above."
msgstr ""
#: frontend/src/pages/Quizzes.vue:65 #: frontend/src/pages/Quizzes.vue:65
msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above." msgid "You have not created any quizzes yet. To create a new quiz, click on the \"New Quiz\" button above."
msgstr "" msgstr ""
@@ -5571,7 +5675,7 @@ msgstr ""
msgid "You haven't enrolled for any courses" msgid "You haven't enrolled for any courses"
msgstr "" msgstr ""
#: frontend/src/components/CourseCardOverlay.vue:142 #: frontend/src/components/CourseCardOverlay.vue:146
msgid "You need to login first to enroll for this course" msgid "You need to login first to enroll for this course"
msgstr "" msgstr ""
@@ -5584,7 +5688,7 @@ msgstr ""
msgid "You've applied to become a mentor for this course. Your request is currently under review." msgid "You've applied to become a mentor for this course. Your request is currently under review."
msgstr "" msgstr ""
#: frontend/src/pages/AssignmentSubmission.vue:15 #: frontend/src/components/Assignment.vue:55
msgid "You've successfully submitted the assignment." msgid "You've successfully submitted the assignment."
msgstr "" msgstr ""
@@ -5628,7 +5732,7 @@ msgstr ""
msgid "Your score is" msgid "Your score is"
msgstr "" msgstr ""
#: frontend/src/components/Quiz.vue:227 #: frontend/src/components/Quiz.vue:229
msgid "Your submission has been successfully saved. The instructor will review and grade it shortly, and you'll be notified of your final result." msgid "Your submission has been successfully saved. The instructor will review and grade it shortly, and you'll be notified of your final result."
msgstr "" msgstr ""
@@ -5677,7 +5781,7 @@ msgstr ""
msgid "posted by" msgid "posted by"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:390 #: frontend/src/pages/QuizForm.vue:386
msgid "question_detail" msgid "question_detail"
msgstr "" msgstr ""
@@ -5693,7 +5797,7 @@ msgstr ""
msgid "you can" msgid "you can"
msgstr "" msgstr ""
#: lms/lms/api.py:749 lms/lms/api.py:757 #: lms/lms/api.py:751 lms/lms/api.py:759
msgid "{0} Settings not found" msgid "{0} Settings not found"
msgstr "" msgstr ""

View File

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

View File

@@ -0,0 +1,10 @@
import frappe
from frappe.utils import ceil, flt
def execute():
quizzes = frappe.get_all(
"LMS Quiz", fields=["name", "duration"], filters={"duration": [">", 0]}
)
for quiz in quizzes:
frappe.db.set_value("LMS Quiz", quiz.name, "duration", ceil(flt(quiz.duration) / 60))