Compare commits
33 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e16101813c | ||
|
|
bbd3ac6451 | ||
|
|
c6a26e5260 | ||
|
|
a87fda6b84 | ||
|
|
b42c635cdb | ||
|
|
a9c6b71e19 | ||
|
|
282441e0e7 | ||
|
|
6020d5f5c2 | ||
|
|
9a395cbda0 | ||
|
|
61e41180dd | ||
|
|
26bde996ac | ||
|
|
6f78ac06c2 | ||
|
|
8e498f4fbe | ||
|
|
8105e606c9 | ||
|
|
7df6e5fe64 | ||
|
|
909c9b446b | ||
|
|
29639d59c3 | ||
|
|
a13dac6dd4 | ||
|
|
31257e588f | ||
|
|
52ab419040 | ||
|
|
7dbc35977f | ||
|
|
ce9aafadd9 | ||
|
|
13da79488f | ||
|
|
2c999e2037 | ||
|
|
c096c176e3 | ||
|
|
8fe0b62bb3 | ||
|
|
e3b53efd2c | ||
|
|
2ecb93e925 | ||
|
|
5d14d6f1aa | ||
|
|
4869bba7bb | ||
|
|
ecc12d783a | ||
|
|
54b7f811f7 | ||
|
|
e45b33a809 |
239
frontend/src/components/BatchFeedback.vue
Normal file
239
frontend/src/components/BatchFeedback.vue
Normal file
@@ -0,0 +1,239 @@
|
||||
<template>
|
||||
<div v-if="user.data?.is_student">
|
||||
<div
|
||||
v-if="feedbackList.data?.length"
|
||||
class="bg-blue-100 text-blue-700 p-2 rounded-md mb-5"
|
||||
>
|
||||
{{ __('Thank you for providing your feedback!') }}
|
||||
</div>
|
||||
<div v-else class="flex justify-between items-center mb-5">
|
||||
<div class="text-lg font-semibold">
|
||||
{{ __('Help Us Improve') }}
|
||||
</div>
|
||||
<Button @click="submitFeedback()">
|
||||
{{ __('Submit') }}
|
||||
</Button>
|
||||
</div>
|
||||
<div class="space-y-8">
|
||||
<div class="flex items-center justify-between">
|
||||
<Rating
|
||||
v-for="key in ratingKeys"
|
||||
v-model="feedback[key]"
|
||||
:label="__(convertToTitleCase(key))"
|
||||
:readonly="readOnly"
|
||||
/>
|
||||
</div>
|
||||
<FormControl
|
||||
v-model="feedback.feedback"
|
||||
type="textarea"
|
||||
:label="__('Feedback')"
|
||||
:rows="7"
|
||||
:readonly="readOnly"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div v-else-if="feedbackList.data?.length">
|
||||
<div class="text-lg font-semibold mb-5">
|
||||
{{ __('Average of Feedback Received') }}
|
||||
</div>
|
||||
|
||||
<div class="flex items-center justify-between mb-10">
|
||||
<Rating
|
||||
v-for="key in ratingKeys"
|
||||
v-model="average[key]"
|
||||
:label="__(convertToTitleCase(key))"
|
||||
:readonly="true"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div class="text-lg font-semibold mb-5">
|
||||
{{ __('All Feedback') }}
|
||||
</div>
|
||||
<ListView
|
||||
:columns="feedbackColumns"
|
||||
:rows="feedbackList.data"
|
||||
row-key="name"
|
||||
:options="{
|
||||
showTooltip: false,
|
||||
rowHeight: 'h-16',
|
||||
selectable: false,
|
||||
}"
|
||||
>
|
||||
<ListHeader
|
||||
class="mb-2 grid items-center space-x-4 rounded bg-gray-100 p-2"
|
||||
></ListHeader>
|
||||
<ListRows>
|
||||
<ListRow
|
||||
:row="row"
|
||||
v-for="row in feedbackList.data"
|
||||
class="group cursor-pointer"
|
||||
>
|
||||
<template #default="{ column, item }">
|
||||
<ListRowItem
|
||||
:item="row[column.key]"
|
||||
:align="column.align"
|
||||
class="text-sm"
|
||||
>
|
||||
<template #prefix>
|
||||
<div v-if="column.key == 'member_name'">
|
||||
<Avatar
|
||||
class="flex items-center"
|
||||
:image="row['member_image']"
|
||||
:label="item"
|
||||
size="sm"
|
||||
/>
|
||||
</div>
|
||||
</template>
|
||||
<div v-if="ratingKeys.includes(column.key)">
|
||||
<Rating v-model="row[column.key]" :readonly="true" />
|
||||
</div>
|
||||
<div v-else class="leading-5">
|
||||
{{ row[column.key] }}
|
||||
</div>
|
||||
</ListRowItem>
|
||||
</template>
|
||||
</ListRow>
|
||||
</ListRows>
|
||||
</ListView>
|
||||
</div>
|
||||
<div v-else class="text-sm italic text-center text-gray-700 mt-5">
|
||||
{{ __('No feedback received yet.') }}
|
||||
</div>
|
||||
</template>
|
||||
<script setup>
|
||||
import { computed, inject, onMounted, reactive, ref, watch } from 'vue'
|
||||
import { convertToTitleCase } from '@/utils'
|
||||
import {
|
||||
Avatar,
|
||||
Button,
|
||||
createListResource,
|
||||
FormControl,
|
||||
ListView,
|
||||
ListHeader,
|
||||
ListHeaderItem,
|
||||
ListRows,
|
||||
ListRow,
|
||||
ListRowItem,
|
||||
Rating,
|
||||
} from 'frappe-ui'
|
||||
|
||||
const user = inject('$user')
|
||||
const ratingKeys = ['content', 'instructors', 'value']
|
||||
const readOnly = ref(false)
|
||||
const average = reactive({})
|
||||
const feedback = reactive({})
|
||||
|
||||
const props = defineProps({
|
||||
batch: {
|
||||
type: String,
|
||||
required: true,
|
||||
},
|
||||
})
|
||||
|
||||
onMounted(() => {
|
||||
let filters = {
|
||||
batch: props.batch,
|
||||
}
|
||||
if (user.data?.is_student) {
|
||||
filters['member'] = user.data?.name
|
||||
}
|
||||
feedbackList.update({
|
||||
filters: filters,
|
||||
})
|
||||
feedbackList.reload()
|
||||
})
|
||||
|
||||
const feedbackList = createListResource({
|
||||
doctype: 'LMS Batch Feedback',
|
||||
filters: {
|
||||
batch: props.batch,
|
||||
},
|
||||
fields: [
|
||||
'content',
|
||||
'instructors',
|
||||
'value',
|
||||
'feedback',
|
||||
'name',
|
||||
'member',
|
||||
'member_name',
|
||||
'member_image',
|
||||
],
|
||||
cache: ['feedbackList', props.batch, user.data?.name],
|
||||
})
|
||||
|
||||
watch(
|
||||
() => feedbackList.data,
|
||||
() => {
|
||||
if (feedbackList.data.length) {
|
||||
let data = feedbackList.data
|
||||
readOnly.value = true
|
||||
|
||||
ratingKeys.forEach((key) => {
|
||||
average[key] = 0
|
||||
})
|
||||
|
||||
data.forEach((row) => {
|
||||
Object.keys(row).forEach((key) => {
|
||||
if (ratingKeys.includes(key)) row[key] = row[key] * 5
|
||||
feedback[key] = row[key]
|
||||
})
|
||||
ratingKeys.forEach((key) => {
|
||||
average[key] += row[key]
|
||||
})
|
||||
})
|
||||
Object.keys(average).forEach((key) => {
|
||||
average[key] = average[key] / data.length
|
||||
})
|
||||
}
|
||||
}
|
||||
)
|
||||
|
||||
const submitFeedback = () => {
|
||||
ratingKeys.forEach((key) => {
|
||||
feedback[key] = feedback[key] / 5
|
||||
})
|
||||
feedbackList.insert.submit(
|
||||
{
|
||||
member: user.data?.name,
|
||||
batch: props.batch,
|
||||
...feedback,
|
||||
},
|
||||
{
|
||||
onSuccess: () => {
|
||||
feedbackList.reload()
|
||||
},
|
||||
}
|
||||
)
|
||||
}
|
||||
|
||||
const feedbackColumns = computed(() => {
|
||||
return [
|
||||
{
|
||||
label: 'Member',
|
||||
key: 'member_name',
|
||||
width: '10rem',
|
||||
},
|
||||
{
|
||||
label: 'Feedback',
|
||||
key: 'feedback',
|
||||
width: '15rem',
|
||||
},
|
||||
{
|
||||
label: 'Content',
|
||||
key: 'content',
|
||||
width: '9rem',
|
||||
},
|
||||
{
|
||||
label: 'Instructors',
|
||||
key: 'instructors',
|
||||
width: '9rem',
|
||||
},
|
||||
{
|
||||
label: 'Value',
|
||||
key: 'value',
|
||||
width: '9rem',
|
||||
},
|
||||
]
|
||||
})
|
||||
</script>
|
||||
@@ -383,7 +383,7 @@ const getChartOptions = (categories) => {
|
||||
},
|
||||
rotate: 0,
|
||||
formatter: function (value) {
|
||||
return value.length > 30 ? `${value.substring(0, 30)}...` : value // Trim long labels
|
||||
return value.length > 30 ? `${value.substring(0, 30)}...` : value
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<div class="flex rounded p-1 lg:px-2 lg:py-2.5 hover:bg-gray-100">
|
||||
<div class="flex rounded p-1 lg:px-2 lg:py-4 hover:bg-gray-100">
|
||||
<div class="flex w-3/5 md:w-2/5">
|
||||
<img
|
||||
:src="job.company_logo"
|
||||
|
||||
@@ -96,7 +96,7 @@ import {
|
||||
} from 'frappe-ui'
|
||||
import { reactive, watch, defineModel } from 'vue'
|
||||
import { FileText, X } from 'lucide-vue-next'
|
||||
import { getFileSize, showToast } from '@/utils'
|
||||
import { getFileSize, showToast, escapeHTML } from '@/utils'
|
||||
|
||||
const reloadProfile = defineModel('reloadProfile')
|
||||
|
||||
@@ -131,6 +131,7 @@ const imageResource = createResource({
|
||||
const updateProfile = createResource({
|
||||
url: 'frappe.client.set_value',
|
||||
makeParams(values) {
|
||||
profile.bio = escapeHTML(profile.bio)
|
||||
return {
|
||||
doctype: 'User',
|
||||
name: props.profile.data.name,
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
</Button>
|
||||
</div>
|
||||
</header>
|
||||
<div v-if="batch.data" class="grid grid-cols-[70%,30%] h-screen">
|
||||
<div v-if="batch.data" class="grid grid-cols-[75%,25%] h-screen">
|
||||
<div class="border-r">
|
||||
<Tabs
|
||||
v-model="tabIndex"
|
||||
@@ -65,7 +65,7 @@
|
||||
<div v-else-if="tab.label == 'Dashboard'">
|
||||
<BatchStudents :batch="batch.data" />
|
||||
</div>
|
||||
<div v-else-if="tab.label == 'Live Class'">
|
||||
<div v-else-if="tab.label == 'Classes'">
|
||||
<LiveClass :batch="batch.data.name" />
|
||||
</div>
|
||||
<div v-else-if="tab.label == 'Assessments'">
|
||||
@@ -81,9 +81,12 @@
|
||||
:title="__('Discussions')"
|
||||
:key="batch.data.name"
|
||||
:singleThread="true"
|
||||
:scrollToBottom="true"
|
||||
:scrollToBottom="false"
|
||||
/>
|
||||
</div>
|
||||
<div v-else-if="tab.label == 'Feedback'">
|
||||
<BatchFeedback :batch="batch.data.name" />
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
</Tabs>
|
||||
@@ -190,12 +193,11 @@ import {
|
||||
BookOpen,
|
||||
Laptop,
|
||||
BookOpenCheck,
|
||||
Contact2,
|
||||
Mail,
|
||||
SendIcon,
|
||||
MessageCircle,
|
||||
Globe,
|
||||
ShieldCheck,
|
||||
ClipboardPen,
|
||||
} from 'lucide-vue-next'
|
||||
import { formatTime, updateDocumentTitle } from '@/utils'
|
||||
import BatchDashboard from '@/components/BatchDashboard.vue'
|
||||
@@ -208,6 +210,7 @@ import AnnouncementModal from '@/components/Modals/AnnouncementModal.vue'
|
||||
import Discussions from '@/components/Discussions.vue'
|
||||
import DateRange from '@/components/Common/DateRange.vue'
|
||||
import BulkCertificates from '@/components/Modals/BulkCertificates.vue'
|
||||
import BatchFeedback from '@/components/BatchFeedback.vue'
|
||||
|
||||
const user = inject('$user')
|
||||
const showAnnouncementModal = ref(false)
|
||||
@@ -271,7 +274,7 @@ const tabs = computed(() => {
|
||||
})
|
||||
|
||||
batchTabs.push({
|
||||
label: 'Live Class',
|
||||
label: 'Classes',
|
||||
icon: Laptop,
|
||||
})
|
||||
|
||||
@@ -291,6 +294,11 @@ const tabs = computed(() => {
|
||||
label: 'Discussions',
|
||||
icon: MessageCircle,
|
||||
})
|
||||
|
||||
batchTabs.push({
|
||||
label: 'Feedback',
|
||||
icon: ClipboardPen,
|
||||
})
|
||||
return batchTabs
|
||||
})
|
||||
|
||||
|
||||
@@ -1,256 +1,267 @@
|
||||
<template>
|
||||
<div class="">
|
||||
<header
|
||||
class="sticky top-0 z-10 flex items-center justify-between border-b bg-white px-3 py-2.5 sm:px-5"
|
||||
<header
|
||||
class="sticky flex items-center justify-between top-0 z-10 border-b bg-white px-3 py-2.5 sm:px-5"
|
||||
>
|
||||
<Breadcrumbs :items="breadcrumbs" />
|
||||
<router-link
|
||||
v-if="user.data?.is_moderator"
|
||||
:to="{
|
||||
name: 'BatchForm',
|
||||
params: { batchName: 'new' },
|
||||
}"
|
||||
>
|
||||
<Breadcrumbs
|
||||
class="h-7"
|
||||
:items="[{ label: __('Batches'), route: { name: 'Batches' } }]"
|
||||
/>
|
||||
<div class="flex space-x-2">
|
||||
<div class="w-44">
|
||||
<Button variant="solid">
|
||||
<template #prefix>
|
||||
<Plus class="h-4 w-4 stroke-1.5" />
|
||||
</template>
|
||||
{{ __('New') }}
|
||||
</Button>
|
||||
</router-link>
|
||||
</header>
|
||||
<div class="p-5 pb-10">
|
||||
<div class="flex items-center justify-between mb-5">
|
||||
<div class="text-lg font-semibold">
|
||||
{{ __('All Batches') }}
|
||||
</div>
|
||||
<div class="flex items-center space-x-2">
|
||||
<TabButtons
|
||||
v-if="user.data && user.data?.is_student"
|
||||
:buttons="batchTabs"
|
||||
v-model="currentTab"
|
||||
/>
|
||||
<FormControl
|
||||
v-model="title"
|
||||
:placeholder="__('Search by Title')"
|
||||
type="text"
|
||||
@input="updateBatches()"
|
||||
/>
|
||||
<div v-if="user.data && !user.data?.is_student" class="w-44">
|
||||
<Select
|
||||
v-if="categories.data?.length"
|
||||
v-model="currentCategory"
|
||||
:options="categories.data"
|
||||
:placeholder="__('Category')"
|
||||
v-model="currentDuration"
|
||||
:options="batchType"
|
||||
:placeholder="__('Type')"
|
||||
@change="updateBatches()"
|
||||
/>
|
||||
</div>
|
||||
<router-link
|
||||
v-if="user.data?.is_moderator"
|
||||
:to="{
|
||||
name: 'BatchForm',
|
||||
params: { batchName: 'new' },
|
||||
}"
|
||||
>
|
||||
<Button variant="solid">
|
||||
<template #prefix>
|
||||
<Plus class="h-4 w-4 stroke-1.5" />
|
||||
</template>
|
||||
{{ __('New') }}
|
||||
</Button>
|
||||
</router-link>
|
||||
</div>
|
||||
</header>
|
||||
<div v-if="batches.data" class="pb-5">
|
||||
<div
|
||||
v-if="batches.data.length == 0 && batches.list.loading"
|
||||
class="p-5 text-base text-gray-700"
|
||||
>
|
||||
{{ __('Loading Batches...') }}
|
||||
</div>
|
||||
<Tabs
|
||||
v-if="hasBatches"
|
||||
v-model="tabIndex"
|
||||
:tabs="makeTabs"
|
||||
tablistClass="overflow-x-visible flex-wrap !gap-3 md:flex-nowrap"
|
||||
>
|
||||
<template #tab="{ tab, selected }">
|
||||
<div>
|
||||
<button
|
||||
class="group -mb-px flex items-center gap-2 border-b border-transparent py-2.5 text-base text-gray-600 duration-300 ease-in-out hover:border-gray-400 hover:text-gray-900"
|
||||
:class="{ 'text-gray-900': selected }"
|
||||
>
|
||||
<component v-if="tab.icon" :is="tab.icon" class="h-5" />
|
||||
{{ __(tab.label) }}
|
||||
<Badge
|
||||
:class="
|
||||
selected
|
||||
? 'text-gray-800 border border-gray-800'
|
||||
: 'border border-gray-500'
|
||||
"
|
||||
variant="subtle"
|
||||
theme="gray"
|
||||
size="sm"
|
||||
>
|
||||
{{ tab.count }}
|
||||
</Badge>
|
||||
</button>
|
||||
</div>
|
||||
</template>
|
||||
<template #default="{ tab }">
|
||||
<div
|
||||
v-if="tab.batches && tab.batches.value.length"
|
||||
class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-5 m-5"
|
||||
>
|
||||
<router-link
|
||||
v-for="batch in tab.batches.value"
|
||||
:to="{ name: 'BatchDetail', params: { batchName: batch.name } }"
|
||||
>
|
||||
<BatchCard :batch="batch" />
|
||||
</router-link>
|
||||
</div>
|
||||
<div v-else class="p-5 italic text-gray-500">
|
||||
{{ __('No {0} batches').format(tab.label.toLowerCase()) }}
|
||||
</div>
|
||||
</template>
|
||||
</Tabs>
|
||||
<div
|
||||
v-else-if="
|
||||
!batches.loading &&
|
||||
!hasBatches &&
|
||||
(user.data?.is_instructor || user.data?.is_moderator)
|
||||
"
|
||||
class="grid grid-cols-3 p-5"
|
||||
>
|
||||
<router-link
|
||||
:to="{
|
||||
name: 'BatchForm',
|
||||
params: {
|
||||
batchName: 'new',
|
||||
},
|
||||
}"
|
||||
>
|
||||
<div class="bg-gray-50 py-32 px-5 rounded-md">
|
||||
<div class="flex flex-col items-center text-center space-y-2">
|
||||
<Plus
|
||||
class="size-10 stroke-1 text-gray-800 p-1 rounded-full border bg-white"
|
||||
/>
|
||||
<div class="font-medium">
|
||||
{{ __('Create a Batch') }}
|
||||
</div>
|
||||
<span class="text-gray-700 text-sm leading-4">
|
||||
{{ __('You can link courses and assessments to it.') }}
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</router-link>
|
||||
</div>
|
||||
<div
|
||||
v-else-if="!batches.loading && !hasBatches"
|
||||
class="text-center p-5 text-gray-600 mt-52 w-3/4 md:w-1/2 mx-auto space-y-2"
|
||||
>
|
||||
<BookOpen class="size-10 mx-auto stroke-1 text-gray-500" />
|
||||
<div class="text-xl font-medium">
|
||||
{{ __('No batches found') }}
|
||||
</div>
|
||||
<div>
|
||||
{{
|
||||
__(
|
||||
'There are no batches available at the moment. Keep an eye out, fresh learning experiences are on the way soon!'
|
||||
)
|
||||
}}
|
||||
<div class="w-44">
|
||||
<Select
|
||||
v-if="categories.length"
|
||||
v-model="currentCategory"
|
||||
:options="categories"
|
||||
:placeholder="__('Category')"
|
||||
@change="updateBatches()"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div v-if="batches.data?.length" class="grid grid-cols-4 gap-5">
|
||||
<router-link
|
||||
v-for="batch in batches.data"
|
||||
:to="{ name: 'BatchDetail', params: { batchName: batch.name } }"
|
||||
>
|
||||
<BatchCard :batch="batch" />
|
||||
</router-link>
|
||||
</div>
|
||||
<div
|
||||
v-else
|
||||
class="flex flex-col items-center justify-center text-sm text-gray-600 italic mt-48"
|
||||
>
|
||||
<BookOpen class="size-10 mx-auto stroke-1.5 text-gray-500" />
|
||||
<div class="text-xl font-medium mb-2">
|
||||
{{ __('No batches found') }}
|
||||
</div>
|
||||
<div class="leading-5 w-2/5 text-center">
|
||||
{{
|
||||
__(
|
||||
'There are no batches matching the criteria. Keep an eye out, fresh learning experiences are on the way soon!'
|
||||
)
|
||||
}}
|
||||
</div>
|
||||
</div>
|
||||
<div
|
||||
v-if="!batches.loading && batches.hasNextPage"
|
||||
class="flex justify-center mt-5"
|
||||
>
|
||||
<Button @click="batches.next()">
|
||||
{{ __('Load More') }}
|
||||
</Button>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
<script setup>
|
||||
import {
|
||||
createResource,
|
||||
Breadcrumbs,
|
||||
Button,
|
||||
Tabs,
|
||||
Badge,
|
||||
createListResource,
|
||||
FormControl,
|
||||
Select,
|
||||
TabButtons,
|
||||
} from 'frappe-ui'
|
||||
import { computed, inject, onMounted, ref, watch } from 'vue'
|
||||
import { BookOpen, Plus } from 'lucide-vue-next'
|
||||
import BatchCard from '@/components/BatchCard.vue'
|
||||
import { inject, ref, computed, onMounted, watch } from 'vue'
|
||||
import { updateDocumentTitle } from '@/utils'
|
||||
|
||||
const user = inject('$user')
|
||||
const dayjs = inject('$dayjs')
|
||||
const start = ref(0)
|
||||
const pageLength = ref(20)
|
||||
const categories = ref([])
|
||||
const currentCategory = ref(null)
|
||||
const hasBatches = ref(false)
|
||||
const title = ref('')
|
||||
const filters = ref({})
|
||||
const currentDuration = ref(null)
|
||||
const currentTab = ref('All')
|
||||
|
||||
onMounted(() => {
|
||||
let queries = new URLSearchParams(location.search)
|
||||
if (queries.has('category')) {
|
||||
currentCategory.value = queries.get('category')
|
||||
}
|
||||
})
|
||||
|
||||
const batches = createResource({
|
||||
doctype: 'LMS Batch',
|
||||
url: 'lms.lms.utils.get_batches',
|
||||
cache: ['batches', user.data?.email],
|
||||
auto: true,
|
||||
})
|
||||
|
||||
const categories = createResource({
|
||||
url: 'lms.lms.api.get_categories',
|
||||
makeParams() {
|
||||
return {
|
||||
doctype: 'LMS Batch',
|
||||
filters: {
|
||||
published: 1,
|
||||
},
|
||||
}
|
||||
},
|
||||
cache: ['batchCategories'],
|
||||
auto: true,
|
||||
transform(data) {
|
||||
data.unshift({
|
||||
setFiltersFromQuery()
|
||||
updateBatches()
|
||||
categories.value = [
|
||||
{
|
||||
label: '',
|
||||
value: null,
|
||||
})
|
||||
},
|
||||
]
|
||||
})
|
||||
|
||||
const setFiltersFromQuery = () => {
|
||||
let queries = new URLSearchParams(location.search)
|
||||
title.value = queries.get('title') || ''
|
||||
currentCategory.value = queries.get('category') || null
|
||||
currentDuration.value = queries.get('type') || null
|
||||
}
|
||||
|
||||
const batches = createListResource({
|
||||
doctype: 'LMS Batch',
|
||||
url: 'lms.lms.utils.get_batches',
|
||||
cache: ['batches', user.data?.name],
|
||||
pageLength: pageLength.value,
|
||||
start: start.value,
|
||||
onSuccess(data) {
|
||||
let allCategories = data.map((batch) => batch.category)
|
||||
allCategories = allCategories.filter(
|
||||
(category, index) => allCategories.indexOf(category) === index && category
|
||||
)
|
||||
if (categories.value.length <= allCategories.length) {
|
||||
updateCategories(data)
|
||||
}
|
||||
},
|
||||
})
|
||||
|
||||
const tabIndex = ref(0)
|
||||
let tabs
|
||||
const updateBatches = () => {
|
||||
updateFilters()
|
||||
batches.update({
|
||||
filters: filters.value,
|
||||
})
|
||||
batches.reload()
|
||||
}
|
||||
|
||||
const makeTabs = computed(() => {
|
||||
tabs = []
|
||||
addToTabs('Upcoming')
|
||||
const updateFilters = () => {
|
||||
if (currentCategory.value) {
|
||||
filters.value['category'] = currentCategory.value
|
||||
} else {
|
||||
delete filters.value['category']
|
||||
}
|
||||
|
||||
if (title.value) {
|
||||
filters.value['title'] = ['like', `%${title.value}%`]
|
||||
} else {
|
||||
delete filters.value['title']
|
||||
}
|
||||
|
||||
if (currentDuration.value) {
|
||||
delete filters.value['start_date']
|
||||
delete filters.value['published']
|
||||
|
||||
if (currentDuration.value == 'Upcoming') {
|
||||
filters.value['start_date'] = ['>=', dayjs().format('YYYY-MM-DD')]
|
||||
} else if (currentDuration.value == 'Archived') {
|
||||
filters.value['start_date'] = ['<', dayjs().format('YYYY-MM-DD')]
|
||||
} else if (currentDuration.value == 'Unpublished') {
|
||||
filters.value['published'] = 0
|
||||
}
|
||||
} else {
|
||||
delete filters.value['start_date']
|
||||
delete filters.value['published']
|
||||
}
|
||||
|
||||
if (currentTab.value == 'Enrolled' && user.data?.is_student) {
|
||||
filters.value['enrolled'] = 1
|
||||
} else {
|
||||
delete filters.value['enrolled']
|
||||
}
|
||||
|
||||
if (!user.data || user.data?.is_student) {
|
||||
filters.value['start_date'] = ['>=', dayjs().format('YYYY-MM-DD')]
|
||||
filters.value['published'] = 1
|
||||
}
|
||||
|
||||
setQueryParams()
|
||||
}
|
||||
|
||||
const setQueryParams = () => {
|
||||
let queries = new URLSearchParams(location.search)
|
||||
let filterKeys = {
|
||||
title: title.value,
|
||||
category: currentCategory.value,
|
||||
type: currentDuration.value,
|
||||
}
|
||||
|
||||
Object.keys(filterKeys).forEach((key) => {
|
||||
if (filterKeys[key]) {
|
||||
queries.set(key, filterKeys[key])
|
||||
} else {
|
||||
queries.delete(key)
|
||||
}
|
||||
})
|
||||
|
||||
history.replaceState({}, '', `${location.pathname}?${queries.toString()}`)
|
||||
}
|
||||
|
||||
const updateCategories = (data) => {
|
||||
data.forEach((batch) => {
|
||||
if (
|
||||
batch.category &&
|
||||
!categories.value.find((category) => category.value === batch.category)
|
||||
)
|
||||
categories.value.push({
|
||||
label: batch.category,
|
||||
value: batch.category,
|
||||
})
|
||||
})
|
||||
}
|
||||
|
||||
watch(currentTab, () => {
|
||||
updateBatches()
|
||||
})
|
||||
|
||||
const batchType = computed(() => {
|
||||
let types = [
|
||||
{ label: __(''), value: null },
|
||||
{ label: __('Upcoming'), value: 'Upcoming' },
|
||||
{ label: __('Archived'), value: 'Archived' },
|
||||
]
|
||||
if (user.data?.is_moderator) {
|
||||
addToTabs('Archived')
|
||||
addToTabs('Private')
|
||||
}
|
||||
|
||||
if (user.data) {
|
||||
addToTabs('Enrolled')
|
||||
types.push({ label: __('Unpublished'), value: 'Unpublished' })
|
||||
}
|
||||
return types
|
||||
})
|
||||
|
||||
const batchTabs = computed(() => {
|
||||
let tabs = [
|
||||
{
|
||||
label: __('All'),
|
||||
},
|
||||
{
|
||||
label: __('Enrolled'),
|
||||
},
|
||||
]
|
||||
return tabs
|
||||
})
|
||||
|
||||
const getBatches = (type) => {
|
||||
if (currentCategory.value && currentCategory.value != '') {
|
||||
return batches.data[type].filter(
|
||||
(batch) => batch.category == currentCategory.value
|
||||
)
|
||||
}
|
||||
return batches.data[type]
|
||||
}
|
||||
|
||||
const addToTabs = (label) => {
|
||||
let batches = getBatches(label.toLowerCase().split(' ').join('_'))
|
||||
tabs.push({
|
||||
label,
|
||||
batches: computed(() => batches),
|
||||
count: computed(() => batches.length),
|
||||
})
|
||||
}
|
||||
|
||||
watch(batches, () => {
|
||||
Object.keys(batches.data).forEach((key) => {
|
||||
if (batches.data[key].length) {
|
||||
hasBatches.value = true
|
||||
}
|
||||
})
|
||||
})
|
||||
|
||||
watch(
|
||||
() => currentCategory.value,
|
||||
() => {
|
||||
let queries = new URLSearchParams(location.search)
|
||||
if (currentCategory.value) {
|
||||
queries.set('category', currentCategory.value)
|
||||
} else {
|
||||
queries.delete('category')
|
||||
}
|
||||
history.pushState(null, '', `${location.pathname}?${queries.toString()}`)
|
||||
}
|
||||
)
|
||||
|
||||
const pageMeta = computed(() => {
|
||||
return {
|
||||
title: 'Batches',
|
||||
description: 'All batches divided by categories',
|
||||
}
|
||||
})
|
||||
|
||||
updateDocumentTitle(pageMeta)
|
||||
const breadcrumbs = computed(() => [
|
||||
{
|
||||
label: __('Batches'),
|
||||
route: { name: 'Batches' },
|
||||
},
|
||||
])
|
||||
</script>
|
||||
|
||||
@@ -71,7 +71,7 @@
|
||||
<template #default="{ tab }">
|
||||
<div
|
||||
v-if="tab.courses && tab.courses.value.length"
|
||||
class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-5 my-5 mx-5"
|
||||
class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 2xl:grid-cols-4 3xl:grid-cols-5 gap-7 my-5 mx-5"
|
||||
>
|
||||
<router-link
|
||||
v-for="course in tab.courses.value"
|
||||
|
||||
@@ -475,7 +475,8 @@ updateDocumentTitle(pageMeta)
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.embed-tool__caption {
|
||||
.embed-tool__caption,
|
||||
.cdx-simple-image__caption {
|
||||
display: none;
|
||||
}
|
||||
|
||||
@@ -585,4 +586,8 @@ iframe {
|
||||
border-top: 3px solid theme('colors.gray.700');
|
||||
border-bottom: 3px solid theme('colors.gray.700');
|
||||
}
|
||||
|
||||
.tc-table {
|
||||
border-left: 1px solid #e8e8eb;
|
||||
}
|
||||
</style>
|
||||
|
||||
@@ -619,4 +619,8 @@ iframe {
|
||||
border-top: 3px solid theme('colors.gray.700');
|
||||
border-bottom: 3px solid theme('colors.gray.700');
|
||||
}
|
||||
|
||||
.tc-table {
|
||||
border-left: 1px solid #e8e8eb;
|
||||
}
|
||||
</style>
|
||||
|
||||
@@ -1,8 +1,10 @@
|
||||
import { defineStore } from 'pinia'
|
||||
import { ref } from 'vue'
|
||||
import { createResource } from 'frappe-ui'
|
||||
import { sessionStore } from './session'
|
||||
|
||||
export const useSettings = defineStore('settings', () => {
|
||||
const { isLoggedIn } = sessionStore()
|
||||
const isSettingsOpen = ref(false)
|
||||
const activeTab = ref(null)
|
||||
const learningPaths = createResource({
|
||||
@@ -13,13 +15,13 @@ export const useSettings = defineStore('settings', () => {
|
||||
field: 'enable_learning_paths',
|
||||
}
|
||||
},
|
||||
auto: true,
|
||||
auto: isLoggedIn ? true : false,
|
||||
cache: ['learningPaths'],
|
||||
})
|
||||
|
||||
const onboardingDetails = createResource({
|
||||
url: 'lms.lms.utils.is_onboarding_complete',
|
||||
auto: true,
|
||||
auto: isLoggedIn ? true : false,
|
||||
cache: ['onboardingDetails'],
|
||||
})
|
||||
|
||||
|
||||
@@ -160,7 +160,10 @@ export function getEditorTools() {
|
||||
upload: Upload,
|
||||
markdown: Markdown,
|
||||
image: SimpleImage,
|
||||
table: Table,
|
||||
table: {
|
||||
class: Table,
|
||||
inlineToolbar: true,
|
||||
},
|
||||
paragraph: {
|
||||
class: Paragraph,
|
||||
inlineToolbar: true,
|
||||
@@ -179,6 +182,7 @@ export function getEditorTools() {
|
||||
},
|
||||
list: {
|
||||
class: NestedList,
|
||||
inlineToolbar: true,
|
||||
config: {
|
||||
defaultStyle: 'ordered',
|
||||
},
|
||||
@@ -529,3 +533,21 @@ export const validateFile = (file) => {
|
||||
return __('Only image file is allowed.')
|
||||
}
|
||||
}
|
||||
|
||||
export const escapeHTML = (text) => {
|
||||
if (!text) return ''
|
||||
let escape_html_mapping = {
|
||||
'&': '&',
|
||||
'<': '<',
|
||||
'>': '>',
|
||||
'"': '"',
|
||||
"'": ''',
|
||||
'`': '`',
|
||||
'=': '=',
|
||||
}
|
||||
|
||||
return String(text).replace(
|
||||
/[&<>"'`=]/g,
|
||||
(char) => escape_html_mapping[char] || char
|
||||
)
|
||||
}
|
||||
|
||||
@@ -11,6 +11,10 @@ module.exports = {
|
||||
strokeWidth: {
|
||||
1.5: '1.5',
|
||||
},
|
||||
screens: {
|
||||
'2xl': '1536px',
|
||||
'3xl': '1920px',
|
||||
},
|
||||
},
|
||||
},
|
||||
plugins: [],
|
||||
|
||||
@@ -1 +1 @@
|
||||
__version__ = "2.19.0"
|
||||
__version__ = "2.20.0"
|
||||
|
||||
@@ -603,9 +603,13 @@ def get_categories(doctype, filters):
|
||||
@frappe.whitelist()
|
||||
def get_members(start=0, search=""):
|
||||
"""Get members for the given search term and start index.
|
||||
Args: start (int): Start index for the query.
|
||||
search (str): Search term to filter the results.
|
||||
Returns: List of members.
|
||||
Args: start (int): Start index for the query.
|
||||
<<<<<<< HEAD
|
||||
search (str): Search term to filter the results.
|
||||
=======
|
||||
search (str): Search term to filter the results.
|
||||
>>>>>>> 4869bba7bbb2fb38477d6fc29fb3b5838e075577
|
||||
Returns: List of members.
|
||||
"""
|
||||
|
||||
filters = {"enabled": 1, "name": ["not in", ["Administrator", "Guest"]]}
|
||||
|
||||
0
lms/lms/doctype/lms_batch_feedback/__init__.py
Normal file
0
lms/lms/doctype/lms_batch_feedback/__init__.py
Normal file
8
lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.js
Normal file
8
lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.js
Normal file
@@ -0,0 +1,8 @@
|
||||
// Copyright (c) 2025, Frappe and contributors
|
||||
// For license information, please see license.txt
|
||||
|
||||
// frappe.ui.form.on("LMS Batch Feedback", {
|
||||
// refresh(frm) {
|
||||
|
||||
// },
|
||||
// });
|
||||
112
lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
Normal file
112
lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
Normal file
@@ -0,0 +1,112 @@
|
||||
{
|
||||
"actions": [],
|
||||
"allow_rename": 1,
|
||||
"creation": "2025-01-07 18:53:22.279844",
|
||||
"doctype": "DocType",
|
||||
"engine": "InnoDB",
|
||||
"field_order": [
|
||||
"member",
|
||||
"member_name",
|
||||
"member_image",
|
||||
"batch",
|
||||
"column_break_swst",
|
||||
"content",
|
||||
"instructors",
|
||||
"value",
|
||||
"feedback"
|
||||
],
|
||||
"fields": [
|
||||
{
|
||||
"fieldname": "member",
|
||||
"fieldtype": "Link",
|
||||
"in_list_view": 1,
|
||||
"label": "Member",
|
||||
"options": "User",
|
||||
"reqd": 1
|
||||
},
|
||||
{
|
||||
"fieldname": "batch",
|
||||
"fieldtype": "Link",
|
||||
"in_list_view": 1,
|
||||
"label": "Batch",
|
||||
"options": "LMS Batch",
|
||||
"reqd": 1
|
||||
},
|
||||
{
|
||||
"fieldname": "feedback",
|
||||
"fieldtype": "Small Text",
|
||||
"in_list_view": 1,
|
||||
"label": "Feedback",
|
||||
"reqd": 1
|
||||
},
|
||||
{
|
||||
"fieldname": "column_break_swst",
|
||||
"fieldtype": "Column Break"
|
||||
},
|
||||
{
|
||||
"fieldname": "content",
|
||||
"fieldtype": "Rating",
|
||||
"label": "Content"
|
||||
},
|
||||
{
|
||||
"fieldname": "instructors",
|
||||
"fieldtype": "Rating",
|
||||
"label": "Instructors"
|
||||
},
|
||||
{
|
||||
"fieldname": "value",
|
||||
"fieldtype": "Rating",
|
||||
"label": "Value"
|
||||
},
|
||||
{
|
||||
"fetch_from": "member.full_name",
|
||||
"fieldname": "member_name",
|
||||
"fieldtype": "Data",
|
||||
"label": "Member Name",
|
||||
"read_only": 1
|
||||
},
|
||||
{
|
||||
"fetch_from": "member.user_image",
|
||||
"fieldname": "member_image",
|
||||
"fieldtype": "Attach Image",
|
||||
"label": "Member Image",
|
||||
"read_only": 1
|
||||
}
|
||||
],
|
||||
"index_web_pages_for_search": 1,
|
||||
"links": [],
|
||||
"modified": "2025-01-13 19:02:58.259908",
|
||||
"modified_by": "Administrator",
|
||||
"module": "LMS",
|
||||
"name": "LMS Batch Feedback",
|
||||
"owner": "Administrator",
|
||||
"permissions": [
|
||||
{
|
||||
"create": 1,
|
||||
"delete": 1,
|
||||
"email": 1,
|
||||
"export": 1,
|
||||
"print": 1,
|
||||
"read": 1,
|
||||
"report": 1,
|
||||
"role": "System Manager",
|
||||
"share": 1,
|
||||
"write": 1
|
||||
},
|
||||
{
|
||||
"create": 1,
|
||||
"email": 1,
|
||||
"export": 1,
|
||||
"if_owner": 1,
|
||||
"print": 1,
|
||||
"read": 1,
|
||||
"report": 1,
|
||||
"role": "LMS Student",
|
||||
"share": 1,
|
||||
"write": 1
|
||||
}
|
||||
],
|
||||
"sort_field": "creation",
|
||||
"sort_order": "DESC",
|
||||
"states": []
|
||||
}
|
||||
9
lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.py
Normal file
9
lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.py
Normal file
@@ -0,0 +1,9 @@
|
||||
# Copyright (c) 2025, Frappe and contributors
|
||||
# For license information, please see license.txt
|
||||
|
||||
# import frappe
|
||||
from frappe.model.document import Document
|
||||
|
||||
|
||||
class LMSBatchFeedback(Document):
|
||||
pass
|
||||
@@ -0,0 +1,30 @@
|
||||
# Copyright (c) 2025, Frappe and Contributors
|
||||
# See license.txt
|
||||
|
||||
# import frappe
|
||||
from frappe.tests import IntegrationTestCase, UnitTestCase
|
||||
|
||||
|
||||
# On IntegrationTestCase, the doctype test records and all
|
||||
# link-field test record dependencies are recursively loaded
|
||||
# Use these module variables to add/remove to/from that list
|
||||
EXTRA_TEST_RECORD_DEPENDENCIES = [] # eg. ["User"]
|
||||
IGNORE_TEST_RECORD_DEPENDENCIES = [] # eg. ["User"]
|
||||
|
||||
|
||||
class UnitTestLMSBatchFeedback(UnitTestCase):
|
||||
"""
|
||||
Unit tests for LMSBatchFeedback.
|
||||
Use this class for testing individual functions and methods.
|
||||
"""
|
||||
|
||||
pass
|
||||
|
||||
|
||||
class IntegrationTestLMSBatchFeedback(IntegrationTestCase):
|
||||
"""
|
||||
Integration tests for LMSBatchFeedback.
|
||||
Use this class for testing interactions between multiple components.
|
||||
"""
|
||||
|
||||
pass
|
||||
110
lms/lms/utils.py
110
lms/lms/utils.py
@@ -935,7 +935,7 @@ def check_multicurrency(amount, currency, country=None, amount_usd=None):
|
||||
|
||||
# Conversion logic starts here. Exchange rate is fetched and amount is converted.
|
||||
exchange_rate = get_current_exchange_rate(currency, "USD")
|
||||
amount = amount * exchange_rate
|
||||
amount = flt(amount * exchange_rate, 2)
|
||||
currency = "USD"
|
||||
|
||||
# Check if the amount should be rounded and then apply rounding
|
||||
@@ -1210,59 +1210,6 @@ def get_neighbour_lesson(course, chapter, lesson):
|
||||
}
|
||||
|
||||
|
||||
@frappe.whitelist(allow_guest=True)
|
||||
def get_batches():
|
||||
batches = []
|
||||
filters = {}
|
||||
if frappe.session.user == "Guest":
|
||||
filters.update({"start_date": [">=", getdate()], "published": 1})
|
||||
batch_list = frappe.get_all("LMS Batch", filters)
|
||||
|
||||
for batch in batch_list:
|
||||
batches.append(get_batch_card_details(batch.name))
|
||||
|
||||
batches = categorize_batches(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)
|
||||
def get_batch_details(batch):
|
||||
batch_details = frappe.db.get_value(
|
||||
@@ -1901,3 +1848,58 @@ def enroll_in_program_course(program, course):
|
||||
)
|
||||
enrollment.save()
|
||||
return enrollment
|
||||
|
||||
|
||||
@frappe.whitelist(allow_guest=True)
|
||||
def get_batches(filters=None, start=0, page_length=20):
|
||||
if not filters:
|
||||
filters = {}
|
||||
|
||||
if filters.get("enrolled"):
|
||||
enrolled_batches = frappe.get_all(
|
||||
"Batch Student", {"student": frappe.session.user}, pluck="parent"
|
||||
)
|
||||
filters.update({"name": ["in", enrolled_batches]})
|
||||
del filters["enrolled"]
|
||||
del filters["published"]
|
||||
del filters["start_date"]
|
||||
|
||||
batches = frappe.get_all(
|
||||
"LMS Batch",
|
||||
filters=filters,
|
||||
fields=[
|
||||
"name",
|
||||
"title",
|
||||
"description",
|
||||
"seat_count",
|
||||
"paid_batch",
|
||||
"amount",
|
||||
"amount_usd",
|
||||
"currency",
|
||||
"start_date",
|
||||
"end_date",
|
||||
"start_time",
|
||||
"end_time",
|
||||
"timezone",
|
||||
"published",
|
||||
"category",
|
||||
],
|
||||
order_by="start_date desc",
|
||||
start=start,
|
||||
page_length=page_length,
|
||||
)
|
||||
|
||||
for batch in batches:
|
||||
batch.instructors = get_instructors(batch.name)
|
||||
students_count = frappe.db.count("Batch Student", {"parent": batch.name})
|
||||
|
||||
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 batches
|
||||
|
||||
118
lms/locale/ar.po
118
lms/locale/ar.po
@@ -2,8 +2,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: frappe\n"
|
||||
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
||||
"POT-Creation-Date: 2025-01-03 16:04+0000\n"
|
||||
"PO-Revision-Date: 2025-01-07 04:09\n"
|
||||
"POT-Creation-Date: 2025-01-10 16:04+0000\n"
|
||||
"PO-Revision-Date: 2025-01-13 06:31\n"
|
||||
"Last-Translator: jannat@frappe.io\n"
|
||||
"Language-Team: Arabic\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -22,7 +22,7 @@ msgstr ""
|
||||
msgid " Please evaluate and grade it."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:41
|
||||
#: frontend/src/pages/Programs.vue:39
|
||||
#, python-format
|
||||
msgid "% completed"
|
||||
msgstr "% أكتمل"
|
||||
@@ -75,6 +75,10 @@ msgstr ""
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batch.vue:93
|
||||
msgid "About this batch"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the verify_terms (Check) field in DocType 'User'
|
||||
#: lms/fixtures/custom_field.json
|
||||
msgid "Acceptance for Terms and/or Policies"
|
||||
@@ -101,7 +105,7 @@ msgstr "نشط"
|
||||
|
||||
#: frontend/src/components/Assessments.vue:11
|
||||
#: frontend/src/components/BatchCourses.vue:11
|
||||
#: frontend/src/components/BatchStudents.vue:90
|
||||
#: frontend/src/components/BatchStudents.vue:95
|
||||
#: frontend/src/components/Categories.vue:26
|
||||
#: frontend/src/components/LiveClass.vue:11
|
||||
#: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30
|
||||
@@ -357,7 +361,7 @@ msgstr ""
|
||||
#. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch'
|
||||
#. Label of the assessment (Table) field in DocType 'LMS Batch'
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:27
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:29
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:32
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11
|
||||
msgid "Assessment"
|
||||
msgstr ""
|
||||
@@ -384,7 +388,7 @@ msgstr ""
|
||||
#. Label of the show_assessments (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/components/Assessments.vue:5
|
||||
#: frontend/src/components/BatchStudents.vue:46
|
||||
#: frontend/src/components/BatchStudents.vue:74
|
||||
#: frontend/src/components/BatchStudents.vue:79
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
#: lms/templates/assessments.html:3
|
||||
msgid "Assessments"
|
||||
@@ -995,7 +999,7 @@ msgid "Company Website"
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Status' (Select) field in DocType 'LMS Course Progress'
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:13
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:18
|
||||
#: lms/lms/doctype/lms_course_progress/lms_course_progress.json
|
||||
#: lms/lms/widgets/CourseCard.html:75 lms/templates/reviews.html:48
|
||||
msgid "Complete"
|
||||
@@ -1013,7 +1017,7 @@ msgstr ""
|
||||
msgid "Completed"
|
||||
msgstr "أكتمل"
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:353
|
||||
#: frontend/src/components/BatchStudents.vue:345
|
||||
msgid "Completed by Students"
|
||||
msgstr ""
|
||||
|
||||
@@ -1289,8 +1293,8 @@ msgstr ""
|
||||
#: frontend/src/components/BatchCourses.vue:5
|
||||
#: frontend/src/components/BatchOverlay.vue:23
|
||||
#: frontend/src/components/BatchStudents.vue:32
|
||||
#: frontend/src/components/BatchStudents.vue:68
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:61
|
||||
#: frontend/src/components/BatchStudents.vue:70
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:60
|
||||
#: frontend/src/pages/BatchDetail.vue:19 frontend/src/pages/BatchDetail.vue:68
|
||||
#: frontend/src/pages/Courses.vue:8 frontend/src/pages/Statistics.vue:19
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
@@ -1317,7 +1321,7 @@ msgid "Cover Image"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:9
|
||||
#: frontend/src/pages/Programs.vue:110
|
||||
#: frontend/src/pages/Programs.vue:108
|
||||
msgid "Create"
|
||||
msgstr "انشاء"
|
||||
|
||||
@@ -1569,16 +1573,15 @@ msgstr ""
|
||||
#. Label of the duration (Data) field in DocType 'Cohort'
|
||||
#. Label of the duration (Data) field in DocType 'LMS Batch Timetable'
|
||||
#. Label of the duration (Int) field in DocType 'LMS Live Class'
|
||||
#. Label of the duration (Duration) field in DocType 'LMS Quiz'
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:62
|
||||
#: lms/lms/doctype/cohort/cohort.json
|
||||
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
msgid "Duration"
|
||||
msgstr "المدة الزمنية"
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:63
|
||||
#. Label of the duration (Data) field in DocType 'LMS Quiz'
|
||||
#: frontend/src/pages/QuizForm.vue:63 lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
msgid "Duration (in minutes)"
|
||||
msgstr ""
|
||||
|
||||
@@ -1600,7 +1603,7 @@ msgstr ""
|
||||
#: frontend/src/components/CourseCardOverlay.vue:86
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:9
|
||||
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:65
|
||||
#: frontend/src/pages/Profile.vue:32 frontend/src/pages/Programs.vue:55
|
||||
#: frontend/src/pages/Profile.vue:32 frontend/src/pages/Programs.vue:53
|
||||
msgid "Edit"
|
||||
msgstr "تصحيح"
|
||||
|
||||
@@ -1650,10 +1653,6 @@ msgstr "إرسال البريد الإلكتروني"
|
||||
msgid "Email Templates"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:409
|
||||
msgid "Email copied to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the show_emails (Check) field in DocType 'LMS Settings'
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Emails"
|
||||
@@ -1752,7 +1751,7 @@ msgstr ""
|
||||
msgid "Enrollment Count"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1726
|
||||
#: lms/lms/utils.py:1765
|
||||
msgid "Enrollment Failed"
|
||||
msgstr ""
|
||||
|
||||
@@ -3051,6 +3050,7 @@ msgid "Member Email"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Assignment Submission'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Badge Assignment'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Certificate'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Certificate
|
||||
#. Evaluation'
|
||||
@@ -3060,6 +3060,7 @@ msgstr ""
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Mentor Request'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Quiz Submission'
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
@@ -3189,11 +3190,11 @@ msgstr ""
|
||||
msgid "Modified By"
|
||||
msgstr "عدل من قبل"
|
||||
|
||||
#: lms/lms/api.py:201
|
||||
#: lms/lms/api.py:211
|
||||
msgid "Module Name is incorrect or does not exist."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:197
|
||||
#: lms/lms/api.py:207
|
||||
msgid "Module is incorrect."
|
||||
msgstr ""
|
||||
|
||||
@@ -3252,7 +3253,7 @@ msgstr ""
|
||||
msgid "New Job Applicant"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:107
|
||||
#: frontend/src/pages/Programs.vue:105
|
||||
msgid "New Program"
|
||||
msgstr ""
|
||||
|
||||
@@ -3339,7 +3340,7 @@ msgstr ""
|
||||
msgid "No courses found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:83
|
||||
#: frontend/src/pages/Programs.vue:81
|
||||
msgid "No courses in this program"
|
||||
msgstr ""
|
||||
|
||||
@@ -3359,7 +3360,7 @@ msgstr ""
|
||||
msgid "No live classes scheduled"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:93
|
||||
#: frontend/src/pages/Programs.vue:91
|
||||
msgid "No programs found"
|
||||
msgstr ""
|
||||
|
||||
@@ -3375,7 +3376,7 @@ msgstr ""
|
||||
msgid "No submissions"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:39
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:41
|
||||
msgid "No upcoming evaluations."
|
||||
msgstr ""
|
||||
|
||||
@@ -3484,7 +3485,7 @@ msgstr ""
|
||||
msgid "Only files of type {0} will be accepted."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:529
|
||||
#: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:533
|
||||
msgid "Only image file is allowed."
|
||||
msgstr ""
|
||||
|
||||
@@ -3764,7 +3765,7 @@ msgstr "يرجى التحقق من بريدك الالكتروني للتحقق"
|
||||
msgid "Please click on the following button to set your new password"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1848 lms/lms/utils.py:1852
|
||||
#: lms/lms/utils.py:1887 lms/lms/utils.py:1891
|
||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||
msgstr ""
|
||||
|
||||
@@ -3825,7 +3826,7 @@ msgstr ""
|
||||
msgid "Please login to access this page."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:193
|
||||
#: lms/lms/api.py:203
|
||||
msgid "Please login to continue with payment."
|
||||
msgstr ""
|
||||
|
||||
@@ -4018,8 +4019,8 @@ msgstr ""
|
||||
#. Label of the progress (Float) field in DocType 'LMS Enrollment'
|
||||
#. Label of the progress (Int) field in DocType 'LMS Program Member'
|
||||
#: frontend/src/components/BatchStudents.vue:53
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:32
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:64
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:35
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:63
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
msgid "Progress"
|
||||
@@ -4391,7 +4392,7 @@ msgid "Schedule"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/EvaluationModal.vue:5
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:4
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:8
|
||||
msgid "Schedule Evaluation"
|
||||
msgstr ""
|
||||
|
||||
@@ -4790,13 +4791,13 @@ msgstr ""
|
||||
#. Label of the students (Table) field in DocType 'LMS Batch'
|
||||
#. Label of the show_students (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/components/BatchStudents.vue:18
|
||||
#: frontend/src/components/BatchStudents.vue:84
|
||||
#: frontend/src/components/BatchStudents.vue:89
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Students"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:310
|
||||
#: frontend/src/components/BatchStudents.vue:302
|
||||
msgid "Students deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -4854,8 +4855,7 @@ msgstr ""
|
||||
#: frontend/src/components/Assignment.vue:316
|
||||
#: frontend/src/components/BatchCourses.vue:150
|
||||
#: frontend/src/components/BatchOverlay.vue:135
|
||||
#: frontend/src/components/BatchStudents.vue:310
|
||||
#: frontend/src/components/BatchStudents.vue:409
|
||||
#: frontend/src/components/BatchStudents.vue:302
|
||||
#: frontend/src/components/CourseCardOverlay.vue:165
|
||||
#: frontend/src/components/Modals/AnnouncementModal.vue:99
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:73
|
||||
@@ -4889,7 +4889,7 @@ msgstr "ملخص"
|
||||
msgid "Sunday"
|
||||
msgstr "الأحد"
|
||||
|
||||
#: lms/lms/api.py:954
|
||||
#: lms/lms/api.py:964
|
||||
msgid "Suspicious pattern found in {0}: {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -5004,7 +5004,7 @@ msgstr "نص"
|
||||
msgid "Thanks and Regards"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1755
|
||||
#: lms/lms/utils.py:1794
|
||||
msgid "The batch is full. Please contact the Administrator."
|
||||
msgstr ""
|
||||
|
||||
@@ -5040,7 +5040,7 @@ msgstr ""
|
||||
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:97
|
||||
#: frontend/src/pages/Programs.vue:95
|
||||
msgid "There are no programs available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr ""
|
||||
|
||||
@@ -5048,7 +5048,7 @@ msgstr ""
|
||||
msgid "There are no seats available in this batch."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:182
|
||||
#: frontend/src/components/BatchStudents.vue:177
|
||||
msgid "There are no students in this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -5074,7 +5074,7 @@ msgstr ""
|
||||
msgid "These customisations will work on the main batch page."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Badge.vue:10
|
||||
#: frontend/src/pages/Badge.vue:14
|
||||
msgid "This badge has been awarded to {0} on {1}."
|
||||
msgstr ""
|
||||
|
||||
@@ -5091,7 +5091,7 @@ msgstr ""
|
||||
msgid "This course has:"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1606
|
||||
#: lms/lms/utils.py:1645
|
||||
msgid "This course is free."
|
||||
msgstr ""
|
||||
|
||||
@@ -5197,7 +5197,7 @@ msgstr ""
|
||||
#: frontend/src/pages/AssignmentForm.vue:32
|
||||
#: frontend/src/pages/Assignments.vue:152 frontend/src/pages/BatchForm.vue:20
|
||||
#: frontend/src/pages/CourseForm.vue:32 frontend/src/pages/JobCreation.vue:20
|
||||
#: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:118
|
||||
#: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:116
|
||||
#: 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
|
||||
@@ -5235,7 +5235,7 @@ msgstr "إلى"
|
||||
msgid "To Date"
|
||||
msgstr "إلى تاريخ"
|
||||
|
||||
#: lms/lms/utils.py:1617
|
||||
#: lms/lms/utils.py:1656
|
||||
msgid "To join this batch, please contact the Administrator."
|
||||
msgstr ""
|
||||
|
||||
@@ -5363,7 +5363,7 @@ msgstr ""
|
||||
msgid "Upcoming Batches"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:7
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:5
|
||||
#: lms/templates/upcoming_evals.html:3
|
||||
msgid "Upcoming Evaluations"
|
||||
msgstr ""
|
||||
@@ -5561,11 +5561,11 @@ msgstr ""
|
||||
msgid "You already have an evaluation on {0} at {1} for the course {2}."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:217
|
||||
#: lms/lms/api.py:227
|
||||
msgid "You are already enrolled for this batch."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:209
|
||||
#: lms/lms/api.py:219
|
||||
msgid "You are already enrolled for this course."
|
||||
msgstr ""
|
||||
|
||||
@@ -5741,6 +5741,14 @@ msgstr ""
|
||||
msgid "Zoom Settings"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/StudentHeatmap.vue:6
|
||||
msgid "activities"
|
||||
msgstr "أنشطة"
|
||||
|
||||
#: frontend/src/components/StudentHeatmap.vue:6
|
||||
msgid "activity"
|
||||
msgstr "نشاط"
|
||||
|
||||
#: lms/templates/emails/mentor_request_creation_email.html:5
|
||||
msgid "cancel your application"
|
||||
msgstr ""
|
||||
@@ -5757,6 +5765,10 @@ msgstr ""
|
||||
msgid "has been"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/StudentHeatmap.vue:8
|
||||
msgid "in the last"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProfileCertificates.vue:17
|
||||
msgid "issued on"
|
||||
msgstr ""
|
||||
@@ -5765,7 +5777,11 @@ msgstr ""
|
||||
msgid "jane@example.com"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:32
|
||||
#: frontend/src/pages/Programs.vue:31
|
||||
msgid "member"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:31
|
||||
msgid "members"
|
||||
msgstr ""
|
||||
|
||||
@@ -5793,11 +5809,15 @@ msgstr ""
|
||||
msgid "stars"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/StudentHeatmap.vue:10
|
||||
msgid "weeks"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/emails/mentor_request_creation_email.html:5
|
||||
msgid "you can"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:751 lms/lms/api.py:759
|
||||
#: lms/lms/api.py:761 lms/lms/api.py:769
|
||||
msgid "{0} Settings not found"
|
||||
msgstr ""
|
||||
|
||||
|
||||
118
lms/locale/bs.po
118
lms/locale/bs.po
@@ -2,8 +2,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: frappe\n"
|
||||
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
||||
"POT-Creation-Date: 2025-01-03 16:04+0000\n"
|
||||
"PO-Revision-Date: 2025-01-07 04:09\n"
|
||||
"POT-Creation-Date: 2025-01-10 16:04+0000\n"
|
||||
"PO-Revision-Date: 2025-01-13 06:31\n"
|
||||
"Last-Translator: jannat@frappe.io\n"
|
||||
"Language-Team: Bosnian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -22,7 +22,7 @@ msgstr ""
|
||||
msgid " Please evaluate and grade it."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:41
|
||||
#: frontend/src/pages/Programs.vue:39
|
||||
#, python-format
|
||||
msgid "% completed"
|
||||
msgstr "% završeno"
|
||||
@@ -75,6 +75,10 @@ msgstr ""
|
||||
msgid "About"
|
||||
msgstr "O"
|
||||
|
||||
#: frontend/src/pages/Batch.vue:93
|
||||
msgid "About this batch"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the verify_terms (Check) field in DocType 'User'
|
||||
#: lms/fixtures/custom_field.json
|
||||
msgid "Acceptance for Terms and/or Policies"
|
||||
@@ -101,7 +105,7 @@ msgstr "Aktivan"
|
||||
|
||||
#: frontend/src/components/Assessments.vue:11
|
||||
#: frontend/src/components/BatchCourses.vue:11
|
||||
#: frontend/src/components/BatchStudents.vue:90
|
||||
#: frontend/src/components/BatchStudents.vue:95
|
||||
#: frontend/src/components/Categories.vue:26
|
||||
#: frontend/src/components/LiveClass.vue:11
|
||||
#: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30
|
||||
@@ -357,7 +361,7 @@ msgstr ""
|
||||
#. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch'
|
||||
#. Label of the assessment (Table) field in DocType 'LMS Batch'
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:27
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:29
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:32
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11
|
||||
msgid "Assessment"
|
||||
msgstr ""
|
||||
@@ -384,7 +388,7 @@ msgstr ""
|
||||
#. Label of the show_assessments (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/components/Assessments.vue:5
|
||||
#: frontend/src/components/BatchStudents.vue:46
|
||||
#: frontend/src/components/BatchStudents.vue:74
|
||||
#: frontend/src/components/BatchStudents.vue:79
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
#: lms/templates/assessments.html:3
|
||||
msgid "Assessments"
|
||||
@@ -995,7 +999,7 @@ msgid "Company Website"
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Status' (Select) field in DocType 'LMS Course Progress'
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:13
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:18
|
||||
#: lms/lms/doctype/lms_course_progress/lms_course_progress.json
|
||||
#: lms/lms/widgets/CourseCard.html:75 lms/templates/reviews.html:48
|
||||
msgid "Complete"
|
||||
@@ -1013,7 +1017,7 @@ msgstr ""
|
||||
msgid "Completed"
|
||||
msgstr "Završeno"
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:353
|
||||
#: frontend/src/components/BatchStudents.vue:345
|
||||
msgid "Completed by Students"
|
||||
msgstr ""
|
||||
|
||||
@@ -1289,8 +1293,8 @@ msgstr ""
|
||||
#: frontend/src/components/BatchCourses.vue:5
|
||||
#: frontend/src/components/BatchOverlay.vue:23
|
||||
#: frontend/src/components/BatchStudents.vue:32
|
||||
#: frontend/src/components/BatchStudents.vue:68
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:61
|
||||
#: frontend/src/components/BatchStudents.vue:70
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:60
|
||||
#: frontend/src/pages/BatchDetail.vue:19 frontend/src/pages/BatchDetail.vue:68
|
||||
#: frontend/src/pages/Courses.vue:8 frontend/src/pages/Statistics.vue:19
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
@@ -1317,7 +1321,7 @@ msgid "Cover Image"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:9
|
||||
#: frontend/src/pages/Programs.vue:110
|
||||
#: frontend/src/pages/Programs.vue:108
|
||||
msgid "Create"
|
||||
msgstr "Kreiraj"
|
||||
|
||||
@@ -1569,16 +1573,15 @@ msgstr ""
|
||||
#. Label of the duration (Data) field in DocType 'Cohort'
|
||||
#. Label of the duration (Data) field in DocType 'LMS Batch Timetable'
|
||||
#. Label of the duration (Int) field in DocType 'LMS Live Class'
|
||||
#. Label of the duration (Duration) field in DocType 'LMS Quiz'
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:62
|
||||
#: lms/lms/doctype/cohort/cohort.json
|
||||
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
msgid "Duration"
|
||||
msgstr "Trajanje"
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:63
|
||||
#. Label of the duration (Data) field in DocType 'LMS Quiz'
|
||||
#: frontend/src/pages/QuizForm.vue:63 lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
msgid "Duration (in minutes)"
|
||||
msgstr ""
|
||||
|
||||
@@ -1600,7 +1603,7 @@ msgstr ""
|
||||
#: frontend/src/components/CourseCardOverlay.vue:86
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:9
|
||||
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:65
|
||||
#: frontend/src/pages/Profile.vue:32 frontend/src/pages/Programs.vue:55
|
||||
#: frontend/src/pages/Profile.vue:32 frontend/src/pages/Programs.vue:53
|
||||
msgid "Edit"
|
||||
msgstr "Uredi"
|
||||
|
||||
@@ -1650,10 +1653,6 @@ msgstr "E-pošta poslana"
|
||||
msgid "Email Templates"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:409
|
||||
msgid "Email copied to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the show_emails (Check) field in DocType 'LMS Settings'
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Emails"
|
||||
@@ -1752,7 +1751,7 @@ msgstr ""
|
||||
msgid "Enrollment Count"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1726
|
||||
#: lms/lms/utils.py:1765
|
||||
msgid "Enrollment Failed"
|
||||
msgstr ""
|
||||
|
||||
@@ -3051,6 +3050,7 @@ msgid "Member Email"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Assignment Submission'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Badge Assignment'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Certificate'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Certificate
|
||||
#. Evaluation'
|
||||
@@ -3060,6 +3060,7 @@ msgstr ""
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Mentor Request'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Quiz Submission'
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
@@ -3189,11 +3190,11 @@ msgstr ""
|
||||
msgid "Modified By"
|
||||
msgstr "Izmijenio"
|
||||
|
||||
#: lms/lms/api.py:201
|
||||
#: lms/lms/api.py:211
|
||||
msgid "Module Name is incorrect or does not exist."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:197
|
||||
#: lms/lms/api.py:207
|
||||
msgid "Module is incorrect."
|
||||
msgstr ""
|
||||
|
||||
@@ -3252,7 +3253,7 @@ msgstr ""
|
||||
msgid "New Job Applicant"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:107
|
||||
#: frontend/src/pages/Programs.vue:105
|
||||
msgid "New Program"
|
||||
msgstr ""
|
||||
|
||||
@@ -3339,7 +3340,7 @@ msgstr ""
|
||||
msgid "No courses found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:83
|
||||
#: frontend/src/pages/Programs.vue:81
|
||||
msgid "No courses in this program"
|
||||
msgstr ""
|
||||
|
||||
@@ -3359,7 +3360,7 @@ msgstr ""
|
||||
msgid "No live classes scheduled"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:93
|
||||
#: frontend/src/pages/Programs.vue:91
|
||||
msgid "No programs found"
|
||||
msgstr ""
|
||||
|
||||
@@ -3375,7 +3376,7 @@ msgstr ""
|
||||
msgid "No submissions"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:39
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:41
|
||||
msgid "No upcoming evaluations."
|
||||
msgstr ""
|
||||
|
||||
@@ -3484,7 +3485,7 @@ msgstr ""
|
||||
msgid "Only files of type {0} will be accepted."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:529
|
||||
#: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:533
|
||||
msgid "Only image file is allowed."
|
||||
msgstr ""
|
||||
|
||||
@@ -3764,7 +3765,7 @@ msgstr "Molimo provjerite svoju e-poštu za potvrdu"
|
||||
msgid "Please click on the following button to set your new password"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1848 lms/lms/utils.py:1852
|
||||
#: lms/lms/utils.py:1887 lms/lms/utils.py:1891
|
||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||
msgstr ""
|
||||
|
||||
@@ -3825,7 +3826,7 @@ msgstr ""
|
||||
msgid "Please login to access this page."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:193
|
||||
#: lms/lms/api.py:203
|
||||
msgid "Please login to continue with payment."
|
||||
msgstr ""
|
||||
|
||||
@@ -4018,8 +4019,8 @@ msgstr ""
|
||||
#. Label of the progress (Float) field in DocType 'LMS Enrollment'
|
||||
#. Label of the progress (Int) field in DocType 'LMS Program Member'
|
||||
#: frontend/src/components/BatchStudents.vue:53
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:32
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:64
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:35
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:63
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
msgid "Progress"
|
||||
@@ -4391,7 +4392,7 @@ msgid "Schedule"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/EvaluationModal.vue:5
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:4
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:8
|
||||
msgid "Schedule Evaluation"
|
||||
msgstr ""
|
||||
|
||||
@@ -4790,13 +4791,13 @@ msgstr ""
|
||||
#. Label of the students (Table) field in DocType 'LMS Batch'
|
||||
#. Label of the show_students (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/components/BatchStudents.vue:18
|
||||
#: frontend/src/components/BatchStudents.vue:84
|
||||
#: frontend/src/components/BatchStudents.vue:89
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Students"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:310
|
||||
#: frontend/src/components/BatchStudents.vue:302
|
||||
msgid "Students deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -4854,8 +4855,7 @@ msgstr ""
|
||||
#: frontend/src/components/Assignment.vue:316
|
||||
#: frontend/src/components/BatchCourses.vue:150
|
||||
#: frontend/src/components/BatchOverlay.vue:135
|
||||
#: frontend/src/components/BatchStudents.vue:310
|
||||
#: frontend/src/components/BatchStudents.vue:409
|
||||
#: frontend/src/components/BatchStudents.vue:302
|
||||
#: frontend/src/components/CourseCardOverlay.vue:165
|
||||
#: frontend/src/components/Modals/AnnouncementModal.vue:99
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:73
|
||||
@@ -4889,7 +4889,7 @@ msgstr ""
|
||||
msgid "Sunday"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:954
|
||||
#: lms/lms/api.py:964
|
||||
msgid "Suspicious pattern found in {0}: {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -5004,7 +5004,7 @@ msgstr "Tekst"
|
||||
msgid "Thanks and Regards"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1755
|
||||
#: lms/lms/utils.py:1794
|
||||
msgid "The batch is full. Please contact the Administrator."
|
||||
msgstr ""
|
||||
|
||||
@@ -5040,7 +5040,7 @@ msgstr ""
|
||||
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:97
|
||||
#: frontend/src/pages/Programs.vue:95
|
||||
msgid "There are no programs available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr ""
|
||||
|
||||
@@ -5048,7 +5048,7 @@ msgstr ""
|
||||
msgid "There are no seats available in this batch."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:182
|
||||
#: frontend/src/components/BatchStudents.vue:177
|
||||
msgid "There are no students in this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -5074,7 +5074,7 @@ msgstr ""
|
||||
msgid "These customisations will work on the main batch page."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Badge.vue:10
|
||||
#: frontend/src/pages/Badge.vue:14
|
||||
msgid "This badge has been awarded to {0} on {1}."
|
||||
msgstr ""
|
||||
|
||||
@@ -5091,7 +5091,7 @@ msgstr ""
|
||||
msgid "This course has:"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1606
|
||||
#: lms/lms/utils.py:1645
|
||||
msgid "This course is free."
|
||||
msgstr ""
|
||||
|
||||
@@ -5197,7 +5197,7 @@ msgstr ""
|
||||
#: frontend/src/pages/AssignmentForm.vue:32
|
||||
#: frontend/src/pages/Assignments.vue:152 frontend/src/pages/BatchForm.vue:20
|
||||
#: frontend/src/pages/CourseForm.vue:32 frontend/src/pages/JobCreation.vue:20
|
||||
#: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:118
|
||||
#: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:116
|
||||
#: 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
|
||||
@@ -5235,7 +5235,7 @@ msgstr ""
|
||||
msgid "To Date"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1617
|
||||
#: lms/lms/utils.py:1656
|
||||
msgid "To join this batch, please contact the Administrator."
|
||||
msgstr ""
|
||||
|
||||
@@ -5363,7 +5363,7 @@ msgstr ""
|
||||
msgid "Upcoming Batches"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:7
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:5
|
||||
#: lms/templates/upcoming_evals.html:3
|
||||
msgid "Upcoming Evaluations"
|
||||
msgstr ""
|
||||
@@ -5561,11 +5561,11 @@ msgstr ""
|
||||
msgid "You already have an evaluation on {0} at {1} for the course {2}."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:217
|
||||
#: lms/lms/api.py:227
|
||||
msgid "You are already enrolled for this batch."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:209
|
||||
#: lms/lms/api.py:219
|
||||
msgid "You are already enrolled for this course."
|
||||
msgstr ""
|
||||
|
||||
@@ -5741,6 +5741,14 @@ msgstr ""
|
||||
msgid "Zoom Settings"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/StudentHeatmap.vue:6
|
||||
msgid "activities"
|
||||
msgstr "aktivnosti"
|
||||
|
||||
#: frontend/src/components/StudentHeatmap.vue:6
|
||||
msgid "activity"
|
||||
msgstr "aktivnost"
|
||||
|
||||
#: lms/templates/emails/mentor_request_creation_email.html:5
|
||||
msgid "cancel your application"
|
||||
msgstr ""
|
||||
@@ -5757,6 +5765,10 @@ msgstr ""
|
||||
msgid "has been"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/StudentHeatmap.vue:8
|
||||
msgid "in the last"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProfileCertificates.vue:17
|
||||
msgid "issued on"
|
||||
msgstr ""
|
||||
@@ -5765,7 +5777,11 @@ msgstr ""
|
||||
msgid "jane@example.com"
|
||||
msgstr "jane@example.com"
|
||||
|
||||
#: frontend/src/pages/Programs.vue:32
|
||||
#: frontend/src/pages/Programs.vue:31
|
||||
msgid "member"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:31
|
||||
msgid "members"
|
||||
msgstr "članovi"
|
||||
|
||||
@@ -5793,11 +5809,15 @@ msgstr ""
|
||||
msgid "stars"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/StudentHeatmap.vue:10
|
||||
msgid "weeks"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/emails/mentor_request_creation_email.html:5
|
||||
msgid "you can"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:751 lms/lms/api.py:759
|
||||
#: lms/lms/api.py:761 lms/lms/api.py:769
|
||||
msgid "{0} Settings not found"
|
||||
msgstr ""
|
||||
|
||||
|
||||
118
lms/locale/de.po
118
lms/locale/de.po
@@ -2,8 +2,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: frappe\n"
|
||||
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
||||
"POT-Creation-Date: 2025-01-03 16:04+0000\n"
|
||||
"PO-Revision-Date: 2025-01-07 04:09\n"
|
||||
"POT-Creation-Date: 2025-01-10 16:04+0000\n"
|
||||
"PO-Revision-Date: 2025-01-13 06:31\n"
|
||||
"Last-Translator: jannat@frappe.io\n"
|
||||
"Language-Team: German\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -22,7 +22,7 @@ msgstr ""
|
||||
msgid " Please evaluate and grade it."
|
||||
msgstr " Bitte bewerten und benoten Sie es."
|
||||
|
||||
#: frontend/src/pages/Programs.vue:41
|
||||
#: frontend/src/pages/Programs.vue:39
|
||||
#, python-format
|
||||
msgid "% completed"
|
||||
msgstr "% abgeschlossen"
|
||||
@@ -75,6 +75,10 @@ msgstr ""
|
||||
msgid "About"
|
||||
msgstr "Über"
|
||||
|
||||
#: frontend/src/pages/Batch.vue:93
|
||||
msgid "About this batch"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the verify_terms (Check) field in DocType 'User'
|
||||
#: lms/fixtures/custom_field.json
|
||||
msgid "Acceptance for Terms and/or Policies"
|
||||
@@ -101,7 +105,7 @@ msgstr "Aktiv"
|
||||
|
||||
#: frontend/src/components/Assessments.vue:11
|
||||
#: frontend/src/components/BatchCourses.vue:11
|
||||
#: frontend/src/components/BatchStudents.vue:90
|
||||
#: frontend/src/components/BatchStudents.vue:95
|
||||
#: frontend/src/components/Categories.vue:26
|
||||
#: frontend/src/components/LiveClass.vue:11
|
||||
#: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30
|
||||
@@ -357,7 +361,7 @@ msgstr "Benutzerkategorie bei der Anmeldung erfragen"
|
||||
#. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch'
|
||||
#. Label of the assessment (Table) field in DocType 'LMS Batch'
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:27
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:29
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:32
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11
|
||||
msgid "Assessment"
|
||||
msgstr "Prüfung"
|
||||
@@ -384,7 +388,7 @@ msgstr ""
|
||||
#. Label of the show_assessments (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/components/Assessments.vue:5
|
||||
#: frontend/src/components/BatchStudents.vue:46
|
||||
#: frontend/src/components/BatchStudents.vue:74
|
||||
#: frontend/src/components/BatchStudents.vue:79
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
#: lms/templates/assessments.html:3
|
||||
msgid "Assessments"
|
||||
@@ -995,7 +999,7 @@ msgid "Company Website"
|
||||
msgstr "Unternehmenswebseite"
|
||||
|
||||
#. Option for the 'Status' (Select) field in DocType 'LMS Course Progress'
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:13
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:18
|
||||
#: lms/lms/doctype/lms_course_progress/lms_course_progress.json
|
||||
#: lms/lms/widgets/CourseCard.html:75 lms/templates/reviews.html:48
|
||||
msgid "Complete"
|
||||
@@ -1013,7 +1017,7 @@ msgstr ""
|
||||
msgid "Completed"
|
||||
msgstr "Abgeschlossen"
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:353
|
||||
#: frontend/src/components/BatchStudents.vue:345
|
||||
msgid "Completed by Students"
|
||||
msgstr ""
|
||||
|
||||
@@ -1289,8 +1293,8 @@ msgstr ""
|
||||
#: frontend/src/components/BatchCourses.vue:5
|
||||
#: frontend/src/components/BatchOverlay.vue:23
|
||||
#: frontend/src/components/BatchStudents.vue:32
|
||||
#: frontend/src/components/BatchStudents.vue:68
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:61
|
||||
#: frontend/src/components/BatchStudents.vue:70
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:60
|
||||
#: frontend/src/pages/BatchDetail.vue:19 frontend/src/pages/BatchDetail.vue:68
|
||||
#: frontend/src/pages/Courses.vue:8 frontend/src/pages/Statistics.vue:19
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
@@ -1317,7 +1321,7 @@ msgid "Cover Image"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:9
|
||||
#: frontend/src/pages/Programs.vue:110
|
||||
#: frontend/src/pages/Programs.vue:108
|
||||
msgid "Create"
|
||||
msgstr "Erstellen"
|
||||
|
||||
@@ -1569,16 +1573,15 @@ msgstr "Doppelte Optionen für diese Frage gefunden."
|
||||
#. Label of the duration (Data) field in DocType 'Cohort'
|
||||
#. Label of the duration (Data) field in DocType 'LMS Batch Timetable'
|
||||
#. Label of the duration (Int) field in DocType 'LMS Live Class'
|
||||
#. Label of the duration (Duration) field in DocType 'LMS Quiz'
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:62
|
||||
#: lms/lms/doctype/cohort/cohort.json
|
||||
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
msgid "Duration"
|
||||
msgstr "Dauer"
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:63
|
||||
#. Label of the duration (Data) field in DocType 'LMS Quiz'
|
||||
#: frontend/src/pages/QuizForm.vue:63 lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
msgid "Duration (in minutes)"
|
||||
msgstr ""
|
||||
|
||||
@@ -1600,7 +1603,7 @@ msgstr "E-Mail"
|
||||
#: frontend/src/components/CourseCardOverlay.vue:86
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:9
|
||||
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:65
|
||||
#: frontend/src/pages/Profile.vue:32 frontend/src/pages/Programs.vue:55
|
||||
#: frontend/src/pages/Profile.vue:32 frontend/src/pages/Programs.vue:53
|
||||
msgid "Edit"
|
||||
msgstr "Bearbeiten"
|
||||
|
||||
@@ -1650,10 +1653,6 @@ msgstr "E-Mail wurde versandt"
|
||||
msgid "Email Templates"
|
||||
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'
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Emails"
|
||||
@@ -1752,7 +1751,7 @@ msgstr ""
|
||||
msgid "Enrollment Count"
|
||||
msgstr "Anzahl der Einschreibungen"
|
||||
|
||||
#: lms/lms/utils.py:1726
|
||||
#: lms/lms/utils.py:1765
|
||||
msgid "Enrollment Failed"
|
||||
msgstr ""
|
||||
|
||||
@@ -3051,6 +3050,7 @@ msgid "Member Email"
|
||||
msgstr "E-Mail des Mitglieds"
|
||||
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Assignment Submission'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Badge Assignment'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Certificate'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Certificate
|
||||
#. Evaluation'
|
||||
@@ -3060,6 +3060,7 @@ msgstr "E-Mail des Mitglieds"
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Mentor Request'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Quiz Submission'
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
@@ -3189,11 +3190,11 @@ msgstr ""
|
||||
msgid "Modified By"
|
||||
msgstr "Geändert von"
|
||||
|
||||
#: lms/lms/api.py:201
|
||||
#: lms/lms/api.py:211
|
||||
msgid "Module Name is incorrect or does not exist."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:197
|
||||
#: lms/lms/api.py:207
|
||||
msgid "Module is incorrect."
|
||||
msgstr ""
|
||||
|
||||
@@ -3252,7 +3253,7 @@ msgstr ""
|
||||
msgid "New Job Applicant"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:107
|
||||
#: frontend/src/pages/Programs.vue:105
|
||||
msgid "New Program"
|
||||
msgstr ""
|
||||
|
||||
@@ -3339,7 +3340,7 @@ msgstr "Keine Kurse erstellt"
|
||||
msgid "No courses found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:83
|
||||
#: frontend/src/pages/Programs.vue:81
|
||||
msgid "No courses in this program"
|
||||
msgstr ""
|
||||
|
||||
@@ -3359,7 +3360,7 @@ msgstr "Keine Stellen ausgeschrieben"
|
||||
msgid "No live classes scheduled"
|
||||
msgstr "Keine Live-Kurse geplant"
|
||||
|
||||
#: frontend/src/pages/Programs.vue:93
|
||||
#: frontend/src/pages/Programs.vue:91
|
||||
msgid "No programs found"
|
||||
msgstr ""
|
||||
|
||||
@@ -3375,7 +3376,7 @@ msgstr "Für dieses Datum sind keine Plätze verfügbar."
|
||||
msgid "No submissions"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:39
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:41
|
||||
msgid "No upcoming evaluations."
|
||||
msgstr "Keine bevorstehenden Bewertungen."
|
||||
|
||||
@@ -3484,7 +3485,7 @@ msgstr ""
|
||||
msgid "Only files of type {0} will be accepted."
|
||||
msgstr "Es werden nur Dateien vom Typ {0} akzeptiert."
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:529
|
||||
#: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:533
|
||||
msgid "Only image file is allowed."
|
||||
msgstr ""
|
||||
|
||||
@@ -3764,7 +3765,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"
|
||||
msgstr "Bitte klicken Sie auf die folgende Schaltfläche, um Ihr neues Passwort festzulegen"
|
||||
|
||||
#: lms/lms/utils.py:1848 lms/lms/utils.py:1852
|
||||
#: lms/lms/utils.py:1887 lms/lms/utils.py:1891
|
||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||
msgstr ""
|
||||
|
||||
@@ -3825,7 +3826,7 @@ msgstr "Bitte melden Sie sich an, um auf das Quiz zuzugreifen."
|
||||
msgid "Please login to access this page."
|
||||
msgstr "Bitte melden Sie sich an, um auf diese Seite zuzugreifen."
|
||||
|
||||
#: lms/lms/api.py:193
|
||||
#: lms/lms/api.py:203
|
||||
msgid "Please login to continue with payment."
|
||||
msgstr "Bitte loggen Sie sich ein, um mit der Zahlung fortzufahren."
|
||||
|
||||
@@ -4018,8 +4019,8 @@ msgstr ""
|
||||
#. Label of the progress (Float) field in DocType 'LMS Enrollment'
|
||||
#. Label of the progress (Int) field in DocType 'LMS Program Member'
|
||||
#: frontend/src/components/BatchStudents.vue:53
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:32
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:64
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:35
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:63
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
msgid "Progress"
|
||||
@@ -4391,7 +4392,7 @@ msgid "Schedule"
|
||||
msgstr "Planen"
|
||||
|
||||
#: frontend/src/components/Modals/EvaluationModal.vue:5
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:4
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:8
|
||||
msgid "Schedule Evaluation"
|
||||
msgstr ""
|
||||
|
||||
@@ -4790,13 +4791,13 @@ msgstr ""
|
||||
#. Label of the students (Table) field in DocType 'LMS Batch'
|
||||
#. Label of the show_students (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/components/BatchStudents.vue:18
|
||||
#: frontend/src/components/BatchStudents.vue:84
|
||||
#: frontend/src/components/BatchStudents.vue:89
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Students"
|
||||
msgstr "Schüler"
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:310
|
||||
#: frontend/src/components/BatchStudents.vue:302
|
||||
msgid "Students deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -4854,8 +4855,7 @@ msgstr ""
|
||||
#: frontend/src/components/Assignment.vue:316
|
||||
#: frontend/src/components/BatchCourses.vue:150
|
||||
#: frontend/src/components/BatchOverlay.vue:135
|
||||
#: frontend/src/components/BatchStudents.vue:310
|
||||
#: frontend/src/components/BatchStudents.vue:409
|
||||
#: frontend/src/components/BatchStudents.vue:302
|
||||
#: frontend/src/components/CourseCardOverlay.vue:165
|
||||
#: frontend/src/components/Modals/AnnouncementModal.vue:99
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:73
|
||||
@@ -4889,7 +4889,7 @@ msgstr "Zusammenfassung"
|
||||
msgid "Sunday"
|
||||
msgstr "Sonntag"
|
||||
|
||||
#: lms/lms/api.py:954
|
||||
#: lms/lms/api.py:964
|
||||
msgid "Suspicious pattern found in {0}: {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -5004,7 +5004,7 @@ msgstr "Text"
|
||||
msgid "Thanks and Regards"
|
||||
msgstr "Danke und Grüße"
|
||||
|
||||
#: lms/lms/utils.py:1755
|
||||
#: lms/lms/utils.py:1794
|
||||
msgid "The batch is full. Please contact the Administrator."
|
||||
msgstr ""
|
||||
|
||||
@@ -5040,7 +5040,7 @@ msgstr ""
|
||||
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:97
|
||||
#: frontend/src/pages/Programs.vue:95
|
||||
msgid "There are no programs available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr ""
|
||||
|
||||
@@ -5048,7 +5048,7 @@ msgstr ""
|
||||
msgid "There are no seats available in this batch."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:182
|
||||
#: frontend/src/components/BatchStudents.vue:177
|
||||
msgid "There are no students in this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -5074,7 +5074,7 @@ msgstr ""
|
||||
msgid "These customisations will work on the main batch page."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Badge.vue:10
|
||||
#: frontend/src/pages/Badge.vue:14
|
||||
msgid "This badge has been awarded to {0} on {1}."
|
||||
msgstr ""
|
||||
|
||||
@@ -5091,7 +5091,7 @@ msgstr ""
|
||||
msgid "This course has:"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1606
|
||||
#: lms/lms/utils.py:1645
|
||||
msgid "This course is free."
|
||||
msgstr "Dieser Kurs ist kostenlos."
|
||||
|
||||
@@ -5197,7 +5197,7 @@ msgstr ""
|
||||
#: frontend/src/pages/AssignmentForm.vue:32
|
||||
#: frontend/src/pages/Assignments.vue:152 frontend/src/pages/BatchForm.vue:20
|
||||
#: frontend/src/pages/CourseForm.vue:32 frontend/src/pages/JobCreation.vue:20
|
||||
#: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:118
|
||||
#: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:116
|
||||
#: 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
|
||||
@@ -5235,7 +5235,7 @@ msgstr "An"
|
||||
msgid "To Date"
|
||||
msgstr "Bis-Datum"
|
||||
|
||||
#: lms/lms/utils.py:1617
|
||||
#: lms/lms/utils.py:1656
|
||||
msgid "To join this batch, please contact the Administrator."
|
||||
msgstr "Um dieser Gruppe beizutreten, wenden Sie sich bitte an den Administrator."
|
||||
|
||||
@@ -5363,7 +5363,7 @@ msgstr ""
|
||||
msgid "Upcoming Batches"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:7
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:5
|
||||
#: lms/templates/upcoming_evals.html:3
|
||||
msgid "Upcoming Evaluations"
|
||||
msgstr "Bevorstehenden Bewertungen"
|
||||
@@ -5561,11 +5561,11 @@ msgstr "Schreiben Sie hier Ihre Antwort"
|
||||
msgid "You already have an evaluation on {0} at {1} for the course {2}."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:217
|
||||
#: lms/lms/api.py:227
|
||||
msgid "You are already enrolled for this batch."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:209
|
||||
#: lms/lms/api.py:219
|
||||
msgid "You are already enrolled for this course."
|
||||
msgstr "Sie sind bereits in diesem Kurs eingeschrieben."
|
||||
|
||||
@@ -5741,6 +5741,14 @@ msgstr ""
|
||||
msgid "Zoom Settings"
|
||||
msgstr "Zoom-Einstellungen"
|
||||
|
||||
#: frontend/src/components/StudentHeatmap.vue:6
|
||||
msgid "activities"
|
||||
msgstr "aktivitäten"
|
||||
|
||||
#: frontend/src/components/StudentHeatmap.vue:6
|
||||
msgid "activity"
|
||||
msgstr "aktivität"
|
||||
|
||||
#: lms/templates/emails/mentor_request_creation_email.html:5
|
||||
msgid "cancel your application"
|
||||
msgstr "stornieren Sie Ihre Bewerbung"
|
||||
@@ -5757,6 +5765,10 @@ msgstr "korrekte Antworten"
|
||||
msgid "has been"
|
||||
msgstr "wurde"
|
||||
|
||||
#: frontend/src/components/StudentHeatmap.vue:8
|
||||
msgid "in the last"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProfileCertificates.vue:17
|
||||
msgid "issued on"
|
||||
msgstr "ausgestellt am"
|
||||
@@ -5765,7 +5777,11 @@ msgstr "ausgestellt am"
|
||||
msgid "jane@example.com"
|
||||
msgstr "beate@beispiel.de"
|
||||
|
||||
#: frontend/src/pages/Programs.vue:32
|
||||
#: frontend/src/pages/Programs.vue:31
|
||||
msgid "member"
|
||||
msgstr "mitglied"
|
||||
|
||||
#: frontend/src/pages/Programs.vue:31
|
||||
msgid "members"
|
||||
msgstr "mitglieder"
|
||||
|
||||
@@ -5793,11 +5809,15 @@ msgstr "bewertungen"
|
||||
msgid "stars"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/StudentHeatmap.vue:10
|
||||
msgid "weeks"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/emails/mentor_request_creation_email.html:5
|
||||
msgid "you can"
|
||||
msgstr "Sie können"
|
||||
|
||||
#: lms/lms/api.py:751 lms/lms/api.py:759
|
||||
#: lms/lms/api.py:761 lms/lms/api.py:769
|
||||
msgid "{0} Settings not found"
|
||||
msgstr ""
|
||||
|
||||
|
||||
118
lms/locale/eo.po
118
lms/locale/eo.po
@@ -2,8 +2,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: frappe\n"
|
||||
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
||||
"POT-Creation-Date: 2025-01-03 16:04+0000\n"
|
||||
"PO-Revision-Date: 2025-01-07 04:09\n"
|
||||
"POT-Creation-Date: 2025-01-10 16:04+0000\n"
|
||||
"PO-Revision-Date: 2025-01-13 06:31\n"
|
||||
"Last-Translator: jannat@frappe.io\n"
|
||||
"Language-Team: Esperanto\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -22,7 +22,7 @@ msgstr ""
|
||||
msgid " Please evaluate and grade it."
|
||||
msgstr "crwdns149182:0crwdne149182:0"
|
||||
|
||||
#: frontend/src/pages/Programs.vue:41
|
||||
#: frontend/src/pages/Programs.vue:39
|
||||
#, python-format
|
||||
msgid "% completed"
|
||||
msgstr "crwdns151724:0crwdne151724:0"
|
||||
@@ -75,6 +75,10 @@ msgstr "crwdns151462:0crwdne151462:0"
|
||||
msgid "About"
|
||||
msgstr "crwdns149200:0crwdne149200:0"
|
||||
|
||||
#: frontend/src/pages/Batch.vue:93
|
||||
msgid "About this batch"
|
||||
msgstr "crwdns152174:0crwdne152174:0"
|
||||
|
||||
#. Label of the verify_terms (Check) field in DocType 'User'
|
||||
#: lms/fixtures/custom_field.json
|
||||
msgid "Acceptance for Terms and/or Policies"
|
||||
@@ -101,7 +105,7 @@ msgstr "crwdns149210:0crwdne149210:0"
|
||||
|
||||
#: frontend/src/components/Assessments.vue:11
|
||||
#: frontend/src/components/BatchCourses.vue:11
|
||||
#: frontend/src/components/BatchStudents.vue:90
|
||||
#: frontend/src/components/BatchStudents.vue:95
|
||||
#: frontend/src/components/Categories.vue:26
|
||||
#: frontend/src/components/LiveClass.vue:11
|
||||
#: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30
|
||||
@@ -357,7 +361,7 @@ msgstr "crwdns149298:0crwdne149298:0"
|
||||
#. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch'
|
||||
#. Label of the assessment (Table) field in DocType 'LMS Batch'
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:27
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:29
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:32
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11
|
||||
msgid "Assessment"
|
||||
msgstr "crwdns149300:0crwdne149300:0"
|
||||
@@ -384,7 +388,7 @@ msgstr "crwdns149308:0{0}crwdne149308:0"
|
||||
#. Label of the show_assessments (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/components/Assessments.vue:5
|
||||
#: frontend/src/components/BatchStudents.vue:46
|
||||
#: frontend/src/components/BatchStudents.vue:74
|
||||
#: frontend/src/components/BatchStudents.vue:79
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
#: lms/templates/assessments.html:3
|
||||
msgid "Assessments"
|
||||
@@ -995,7 +999,7 @@ msgid "Company Website"
|
||||
msgstr "crwdns149514:0crwdne149514:0"
|
||||
|
||||
#. Option for the 'Status' (Select) field in DocType 'LMS Course Progress'
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:13
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:18
|
||||
#: lms/lms/doctype/lms_course_progress/lms_course_progress.json
|
||||
#: lms/lms/widgets/CourseCard.html:75 lms/templates/reviews.html:48
|
||||
msgid "Complete"
|
||||
@@ -1013,7 +1017,7 @@ msgstr "crwdns149518:0crwdne149518:0"
|
||||
msgid "Completed"
|
||||
msgstr "crwdns149520:0crwdne149520:0"
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:353
|
||||
#: frontend/src/components/BatchStudents.vue:345
|
||||
msgid "Completed by Students"
|
||||
msgstr "crwdns152082:0crwdne152082:0"
|
||||
|
||||
@@ -1289,8 +1293,8 @@ msgstr "crwdns149596:0{0}crwdne149596:0"
|
||||
#: frontend/src/components/BatchCourses.vue:5
|
||||
#: frontend/src/components/BatchOverlay.vue:23
|
||||
#: frontend/src/components/BatchStudents.vue:32
|
||||
#: frontend/src/components/BatchStudents.vue:68
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:61
|
||||
#: frontend/src/components/BatchStudents.vue:70
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:60
|
||||
#: frontend/src/pages/BatchDetail.vue:19 frontend/src/pages/BatchDetail.vue:68
|
||||
#: frontend/src/pages/Courses.vue:8 frontend/src/pages/Statistics.vue:19
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
@@ -1317,7 +1321,7 @@ msgid "Cover Image"
|
||||
msgstr "crwdns149606:0crwdne149606:0"
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:9
|
||||
#: frontend/src/pages/Programs.vue:110
|
||||
#: frontend/src/pages/Programs.vue:108
|
||||
msgid "Create"
|
||||
msgstr "crwdns151468:0crwdne151468:0"
|
||||
|
||||
@@ -1569,16 +1573,15 @@ msgstr "crwdns149670:0crwdne149670:0"
|
||||
#. Label of the duration (Data) field in DocType 'Cohort'
|
||||
#. Label of the duration (Data) field in DocType 'LMS Batch Timetable'
|
||||
#. Label of the duration (Int) field in DocType 'LMS Live Class'
|
||||
#. Label of the duration (Duration) field in DocType 'LMS Quiz'
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:62
|
||||
#: lms/lms/doctype/cohort/cohort.json
|
||||
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
msgid "Duration"
|
||||
msgstr "crwdns149672:0crwdne149672:0"
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:63
|
||||
#. Label of the duration (Data) field in DocType 'LMS Quiz'
|
||||
#: frontend/src/pages/QuizForm.vue:63 lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
msgid "Duration (in minutes)"
|
||||
msgstr "crwdns149674:0crwdne149674:0"
|
||||
|
||||
@@ -1600,7 +1603,7 @@ msgstr "crwdns149680:0crwdne149680:0"
|
||||
#: frontend/src/components/CourseCardOverlay.vue:86
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:9
|
||||
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:65
|
||||
#: frontend/src/pages/Profile.vue:32 frontend/src/pages/Programs.vue:55
|
||||
#: frontend/src/pages/Profile.vue:32 frontend/src/pages/Programs.vue:53
|
||||
msgid "Edit"
|
||||
msgstr "crwdns149682:0crwdne149682:0"
|
||||
|
||||
@@ -1650,10 +1653,6 @@ msgstr "crwdns149700:0crwdne149700:0"
|
||||
msgid "Email Templates"
|
||||
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'
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Emails"
|
||||
@@ -1752,7 +1751,7 @@ msgstr "crwdns149728:0crwdne149728:0"
|
||||
msgid "Enrollment Count"
|
||||
msgstr "crwdns149730:0crwdne149730:0"
|
||||
|
||||
#: lms/lms/utils.py:1726
|
||||
#: lms/lms/utils.py:1765
|
||||
msgid "Enrollment Failed"
|
||||
msgstr "crwdns149732:0crwdne149732:0"
|
||||
|
||||
@@ -3051,6 +3050,7 @@ msgid "Member Email"
|
||||
msgstr "crwdns150164:0crwdne150164:0"
|
||||
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Assignment Submission'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Badge Assignment'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Certificate'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Certificate
|
||||
#. Evaluation'
|
||||
@@ -3060,6 +3060,7 @@ msgstr "crwdns150164:0crwdne150164:0"
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Mentor Request'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Quiz Submission'
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
@@ -3189,11 +3190,11 @@ msgstr "crwdns150196:0crwdne150196:0"
|
||||
msgid "Modified By"
|
||||
msgstr "crwdns150198:0crwdne150198:0"
|
||||
|
||||
#: lms/lms/api.py:201
|
||||
#: lms/lms/api.py:211
|
||||
msgid "Module Name is incorrect or does not exist."
|
||||
msgstr "crwdns150200:0crwdne150200:0"
|
||||
|
||||
#: lms/lms/api.py:197
|
||||
#: lms/lms/api.py:207
|
||||
msgid "Module is incorrect."
|
||||
msgstr "crwdns150202:0crwdne150202:0"
|
||||
|
||||
@@ -3252,7 +3253,7 @@ msgstr "crwdns150222:0crwdne150222:0"
|
||||
msgid "New Job Applicant"
|
||||
msgstr "crwdns150224:0crwdne150224:0"
|
||||
|
||||
#: frontend/src/pages/Programs.vue:107
|
||||
#: frontend/src/pages/Programs.vue:105
|
||||
msgid "New Program"
|
||||
msgstr "crwdns151760:0crwdne151760:0"
|
||||
|
||||
@@ -3339,7 +3340,7 @@ msgstr "crwdns150254:0crwdne150254:0"
|
||||
msgid "No courses found"
|
||||
msgstr "crwdns151480:0crwdne151480:0"
|
||||
|
||||
#: frontend/src/pages/Programs.vue:83
|
||||
#: frontend/src/pages/Programs.vue:81
|
||||
msgid "No courses in this program"
|
||||
msgstr "crwdns151766:0crwdne151766:0"
|
||||
|
||||
@@ -3359,7 +3360,7 @@ msgstr "crwdns150260:0crwdne150260:0"
|
||||
msgid "No live classes scheduled"
|
||||
msgstr "crwdns150262:0crwdne150262:0"
|
||||
|
||||
#: frontend/src/pages/Programs.vue:93
|
||||
#: frontend/src/pages/Programs.vue:91
|
||||
msgid "No programs found"
|
||||
msgstr "crwdns151768:0crwdne151768:0"
|
||||
|
||||
@@ -3375,7 +3376,7 @@ msgstr "crwdns150264:0crwdne150264:0"
|
||||
msgid "No submissions"
|
||||
msgstr "crwdns152128:0crwdne152128:0"
|
||||
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:39
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:41
|
||||
msgid "No upcoming evaluations."
|
||||
msgstr "crwdns150266:0crwdne150266:0"
|
||||
|
||||
@@ -3484,7 +3485,7 @@ msgstr "crwdns151770:0crwdne151770:0"
|
||||
msgid "Only files of type {0} will be accepted."
|
||||
msgstr "crwdns150308:0{0}crwdne150308:0"
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:529
|
||||
#: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:533
|
||||
msgid "Only image file is allowed."
|
||||
msgstr "crwdns150310:0crwdne150310:0"
|
||||
|
||||
@@ -3764,7 +3765,7 @@ msgstr "crwdns150404:0crwdne150404:0"
|
||||
msgid "Please click on the following button to set your new password"
|
||||
msgstr "crwdns150406:0crwdne150406:0"
|
||||
|
||||
#: lms/lms/utils.py:1848 lms/lms/utils.py:1852
|
||||
#: lms/lms/utils.py:1887 lms/lms/utils.py:1891
|
||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||
msgstr "crwdns151772:0crwdne151772:0"
|
||||
|
||||
@@ -3825,7 +3826,7 @@ msgstr "crwdns150424:0crwdne150424:0"
|
||||
msgid "Please login to access this page."
|
||||
msgstr "crwdns150426:0crwdne150426:0"
|
||||
|
||||
#: lms/lms/api.py:193
|
||||
#: lms/lms/api.py:203
|
||||
msgid "Please login to continue with payment."
|
||||
msgstr "crwdns150428:0crwdne150428:0"
|
||||
|
||||
@@ -4018,8 +4019,8 @@ msgstr "crwdns151794:0crwdne151794:0"
|
||||
#. Label of the progress (Float) field in DocType 'LMS Enrollment'
|
||||
#. Label of the progress (Int) field in DocType 'LMS Program Member'
|
||||
#: frontend/src/components/BatchStudents.vue:53
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:32
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:64
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:35
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:63
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
msgid "Progress"
|
||||
@@ -4391,7 +4392,7 @@ msgid "Schedule"
|
||||
msgstr "crwdns150614:0crwdne150614:0"
|
||||
|
||||
#: frontend/src/components/Modals/EvaluationModal.vue:5
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:4
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:8
|
||||
msgid "Schedule Evaluation"
|
||||
msgstr "crwdns150616:0crwdne150616:0"
|
||||
|
||||
@@ -4790,13 +4791,13 @@ msgstr "crwdns150746:0{0}crwdne150746:0"
|
||||
#. Label of the students (Table) field in DocType 'LMS Batch'
|
||||
#. Label of the show_students (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/components/BatchStudents.vue:18
|
||||
#: frontend/src/components/BatchStudents.vue:84
|
||||
#: frontend/src/components/BatchStudents.vue:89
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Students"
|
||||
msgstr "crwdns150748:0crwdne150748:0"
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:310
|
||||
#: frontend/src/components/BatchStudents.vue:302
|
||||
msgid "Students deleted successfully"
|
||||
msgstr "crwdns150750:0crwdne150750:0"
|
||||
|
||||
@@ -4854,8 +4855,7 @@ msgstr "crwdns150766:0{0}crwdne150766:0"
|
||||
#: frontend/src/components/Assignment.vue:316
|
||||
#: frontend/src/components/BatchCourses.vue:150
|
||||
#: frontend/src/components/BatchOverlay.vue:135
|
||||
#: frontend/src/components/BatchStudents.vue:310
|
||||
#: frontend/src/components/BatchStudents.vue:409
|
||||
#: frontend/src/components/BatchStudents.vue:302
|
||||
#: frontend/src/components/CourseCardOverlay.vue:165
|
||||
#: frontend/src/components/Modals/AnnouncementModal.vue:99
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:73
|
||||
@@ -4889,7 +4889,7 @@ msgstr "crwdns150770:0crwdne150770:0"
|
||||
msgid "Sunday"
|
||||
msgstr "crwdns150772:0crwdne150772:0"
|
||||
|
||||
#: lms/lms/api.py:954
|
||||
#: lms/lms/api.py:964
|
||||
msgid "Suspicious pattern found in {0}: {1}"
|
||||
msgstr "crwdns151930:0{0}crwdnd151930:0{1}crwdne151930:0"
|
||||
|
||||
@@ -5004,7 +5004,7 @@ msgstr "crwdns150792:0crwdne150792:0"
|
||||
msgid "Thanks and Regards"
|
||||
msgstr "crwdns150794:0crwdne150794:0"
|
||||
|
||||
#: lms/lms/utils.py:1755
|
||||
#: lms/lms/utils.py:1794
|
||||
msgid "The batch is full. Please contact the Administrator."
|
||||
msgstr "crwdns152138:0crwdne152138:0"
|
||||
|
||||
@@ -5040,7 +5040,7 @@ msgstr "crwdns150806:0crwdne150806:0"
|
||||
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr "crwdns151496:0crwdne151496:0"
|
||||
|
||||
#: frontend/src/pages/Programs.vue:97
|
||||
#: frontend/src/pages/Programs.vue:95
|
||||
msgid "There are no programs available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr "crwdns151798:0crwdne151798:0"
|
||||
|
||||
@@ -5048,7 +5048,7 @@ msgstr "crwdns151798:0crwdne151798:0"
|
||||
msgid "There are no seats available in this batch."
|
||||
msgstr "crwdns150808:0crwdne150808:0"
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:182
|
||||
#: frontend/src/components/BatchStudents.vue:177
|
||||
msgid "There are no students in this batch."
|
||||
msgstr "crwdns150810:0crwdne150810:0"
|
||||
|
||||
@@ -5074,7 +5074,7 @@ msgstr "crwdns151850:0{0}crwdnd151850:0{1}crwdne151850:0"
|
||||
msgid "These customisations will work on the main batch page."
|
||||
msgstr "crwdns150814:0crwdne150814:0"
|
||||
|
||||
#: frontend/src/pages/Badge.vue:10
|
||||
#: frontend/src/pages/Badge.vue:14
|
||||
msgid "This badge has been awarded to {0} on {1}."
|
||||
msgstr "crwdns150816:0{0}crwdnd150816:0{1}crwdne150816:0"
|
||||
|
||||
@@ -5091,7 +5091,7 @@ msgstr "crwdns152144:0crwdne152144:0"
|
||||
msgid "This course has:"
|
||||
msgstr "crwdns150820:0crwdne150820:0"
|
||||
|
||||
#: lms/lms/utils.py:1606
|
||||
#: lms/lms/utils.py:1645
|
||||
msgid "This course is free."
|
||||
msgstr "crwdns150822:0crwdne150822:0"
|
||||
|
||||
@@ -5197,7 +5197,7 @@ msgstr "crwdns150848:0crwdne150848:0"
|
||||
#: frontend/src/pages/AssignmentForm.vue:32
|
||||
#: frontend/src/pages/Assignments.vue:152 frontend/src/pages/BatchForm.vue:20
|
||||
#: frontend/src/pages/CourseForm.vue:32 frontend/src/pages/JobCreation.vue:20
|
||||
#: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:118
|
||||
#: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:116
|
||||
#: 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
|
||||
@@ -5235,7 +5235,7 @@ msgstr "crwdns150852:0crwdne150852:0"
|
||||
msgid "To Date"
|
||||
msgstr "crwdns150854:0crwdne150854:0"
|
||||
|
||||
#: lms/lms/utils.py:1617
|
||||
#: lms/lms/utils.py:1656
|
||||
msgid "To join this batch, please contact the Administrator."
|
||||
msgstr "crwdns150858:0crwdne150858:0"
|
||||
|
||||
@@ -5363,7 +5363,7 @@ msgstr "crwdns150900:0crwdne150900:0"
|
||||
msgid "Upcoming Batches"
|
||||
msgstr "crwdns150902:0crwdne150902:0"
|
||||
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:7
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:5
|
||||
#: lms/templates/upcoming_evals.html:3
|
||||
msgid "Upcoming Evaluations"
|
||||
msgstr "crwdns150904:0crwdne150904:0"
|
||||
@@ -5561,11 +5561,11 @@ msgstr "crwdns150976:0crwdne150976:0"
|
||||
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"
|
||||
|
||||
#: lms/lms/api.py:217
|
||||
#: lms/lms/api.py:227
|
||||
msgid "You are already enrolled for this batch."
|
||||
msgstr "crwdns150980:0crwdne150980:0"
|
||||
|
||||
#: lms/lms/api.py:209
|
||||
#: lms/lms/api.py:219
|
||||
msgid "You are already enrolled for this course."
|
||||
msgstr "crwdns150982:0crwdne150982:0"
|
||||
|
||||
@@ -5741,6 +5741,14 @@ msgstr "crwdns151048:0crwdne151048:0"
|
||||
msgid "Zoom Settings"
|
||||
msgstr "crwdns151050:0crwdne151050:0"
|
||||
|
||||
#: frontend/src/components/StudentHeatmap.vue:6
|
||||
msgid "activities"
|
||||
msgstr "crwdns152176:0crwdne152176:0"
|
||||
|
||||
#: frontend/src/components/StudentHeatmap.vue:6
|
||||
msgid "activity"
|
||||
msgstr "crwdns152178:0crwdne152178:0"
|
||||
|
||||
#: lms/templates/emails/mentor_request_creation_email.html:5
|
||||
msgid "cancel your application"
|
||||
msgstr "crwdns151052:0crwdne151052:0"
|
||||
@@ -5757,6 +5765,10 @@ msgstr "crwdns151056:0crwdne151056:0"
|
||||
msgid "has been"
|
||||
msgstr "crwdns151058:0crwdne151058:0"
|
||||
|
||||
#: frontend/src/components/StudentHeatmap.vue:8
|
||||
msgid "in the last"
|
||||
msgstr "crwdns152180:0crwdne152180:0"
|
||||
|
||||
#: frontend/src/pages/ProfileCertificates.vue:17
|
||||
msgid "issued on"
|
||||
msgstr "crwdns151060:0crwdne151060:0"
|
||||
@@ -5765,7 +5777,11 @@ msgstr "crwdns151060:0crwdne151060:0"
|
||||
msgid "jane@example.com"
|
||||
msgstr "crwdns151062:0crwdne151062:0"
|
||||
|
||||
#: frontend/src/pages/Programs.vue:32
|
||||
#: frontend/src/pages/Programs.vue:31
|
||||
msgid "member"
|
||||
msgstr "crwdns152182:0crwdne152182:0"
|
||||
|
||||
#: frontend/src/pages/Programs.vue:31
|
||||
msgid "members"
|
||||
msgstr "crwdns151800:0crwdne151800:0"
|
||||
|
||||
@@ -5793,11 +5809,15 @@ msgstr "crwdns151072:0crwdne151072:0"
|
||||
msgid "stars"
|
||||
msgstr "crwdns151074:0crwdne151074:0"
|
||||
|
||||
#: frontend/src/components/StudentHeatmap.vue:10
|
||||
msgid "weeks"
|
||||
msgstr "crwdns152184:0crwdne152184:0"
|
||||
|
||||
#: lms/templates/emails/mentor_request_creation_email.html:5
|
||||
msgid "you can"
|
||||
msgstr "crwdns151076:0crwdne151076:0"
|
||||
|
||||
#: lms/lms/api.py:751 lms/lms/api.py:759
|
||||
#: lms/lms/api.py:761 lms/lms/api.py:769
|
||||
msgid "{0} Settings not found"
|
||||
msgstr "crwdns151078:0{0}crwdne151078:0"
|
||||
|
||||
|
||||
118
lms/locale/es.po
118
lms/locale/es.po
@@ -2,8 +2,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: frappe\n"
|
||||
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
||||
"POT-Creation-Date: 2025-01-03 16:04+0000\n"
|
||||
"PO-Revision-Date: 2025-01-07 04:09\n"
|
||||
"POT-Creation-Date: 2025-01-10 16:04+0000\n"
|
||||
"PO-Revision-Date: 2025-01-13 06:31\n"
|
||||
"Last-Translator: jannat@frappe.io\n"
|
||||
"Language-Team: Spanish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -22,7 +22,7 @@ msgstr ""
|
||||
msgid " Please evaluate and grade it."
|
||||
msgstr " Por favor evalúelo y califíquelo."
|
||||
|
||||
#: frontend/src/pages/Programs.vue:41
|
||||
#: frontend/src/pages/Programs.vue:39
|
||||
#, python-format
|
||||
msgid "% completed"
|
||||
msgstr "% completado"
|
||||
@@ -75,6 +75,10 @@ msgstr "Una introducción de una línea al curso que aparece en la tarjeta del c
|
||||
msgid "About"
|
||||
msgstr "Acerca de"
|
||||
|
||||
#: frontend/src/pages/Batch.vue:93
|
||||
msgid "About this batch"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the verify_terms (Check) field in DocType 'User'
|
||||
#: lms/fixtures/custom_field.json
|
||||
msgid "Acceptance for Terms and/or Policies"
|
||||
@@ -101,7 +105,7 @@ msgstr "Activo"
|
||||
|
||||
#: frontend/src/components/Assessments.vue:11
|
||||
#: frontend/src/components/BatchCourses.vue:11
|
||||
#: frontend/src/components/BatchStudents.vue:90
|
||||
#: frontend/src/components/BatchStudents.vue:95
|
||||
#: frontend/src/components/Categories.vue:26
|
||||
#: frontend/src/components/LiveClass.vue:11
|
||||
#: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30
|
||||
@@ -357,7 +361,7 @@ msgstr "Preguntar categoría de usuario durante el registro"
|
||||
#. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch'
|
||||
#. Label of the assessment (Table) field in DocType 'LMS Batch'
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:27
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:29
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:32
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11
|
||||
msgid "Assessment"
|
||||
msgstr "Evaluación"
|
||||
@@ -384,7 +388,7 @@ msgstr "La evaluación {0} ya se ha agregado a este lote."
|
||||
#. Label of the show_assessments (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/components/Assessments.vue:5
|
||||
#: frontend/src/components/BatchStudents.vue:46
|
||||
#: frontend/src/components/BatchStudents.vue:74
|
||||
#: frontend/src/components/BatchStudents.vue:79
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
#: lms/templates/assessments.html:3
|
||||
msgid "Assessments"
|
||||
@@ -995,7 +999,7 @@ msgid "Company Website"
|
||||
msgstr "Página Web de la empresa"
|
||||
|
||||
#. Option for the 'Status' (Select) field in DocType 'LMS Course Progress'
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:13
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:18
|
||||
#: lms/lms/doctype/lms_course_progress/lms_course_progress.json
|
||||
#: lms/lms/widgets/CourseCard.html:75 lms/templates/reviews.html:48
|
||||
msgid "Complete"
|
||||
@@ -1013,7 +1017,7 @@ msgstr "Completar registro"
|
||||
msgid "Completed"
|
||||
msgstr "Completado"
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:353
|
||||
#: frontend/src/components/BatchStudents.vue:345
|
||||
msgid "Completed by Students"
|
||||
msgstr ""
|
||||
|
||||
@@ -1289,8 +1293,8 @@ msgstr "El curso {0} ya se ha agregado a este lote."
|
||||
#: frontend/src/components/BatchCourses.vue:5
|
||||
#: frontend/src/components/BatchOverlay.vue:23
|
||||
#: frontend/src/components/BatchStudents.vue:32
|
||||
#: frontend/src/components/BatchStudents.vue:68
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:61
|
||||
#: frontend/src/components/BatchStudents.vue:70
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:60
|
||||
#: frontend/src/pages/BatchDetail.vue:19 frontend/src/pages/BatchDetail.vue:68
|
||||
#: frontend/src/pages/Courses.vue:8 frontend/src/pages/Statistics.vue:19
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
@@ -1317,7 +1321,7 @@ msgid "Cover Image"
|
||||
msgstr "Imagen de portada"
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:9
|
||||
#: frontend/src/pages/Programs.vue:110
|
||||
#: frontend/src/pages/Programs.vue:108
|
||||
msgid "Create"
|
||||
msgstr "Crear"
|
||||
|
||||
@@ -1569,16 +1573,15 @@ msgstr "Se encontraron opciones duplicadas para esta pregunta."
|
||||
#. Label of the duration (Data) field in DocType 'Cohort'
|
||||
#. Label of the duration (Data) field in DocType 'LMS Batch Timetable'
|
||||
#. Label of the duration (Int) field in DocType 'LMS Live Class'
|
||||
#. Label of the duration (Duration) field in DocType 'LMS Quiz'
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:62
|
||||
#: lms/lms/doctype/cohort/cohort.json
|
||||
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
msgid "Duration"
|
||||
msgstr "Duración"
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:63
|
||||
#. Label of the duration (Data) field in DocType 'LMS Quiz'
|
||||
#: frontend/src/pages/QuizForm.vue:63 lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
msgid "Duration (in minutes)"
|
||||
msgstr "Duración (en minutos)"
|
||||
|
||||
@@ -1600,7 +1603,7 @@ msgstr "Correo Electrónico"
|
||||
#: frontend/src/components/CourseCardOverlay.vue:86
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:9
|
||||
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:65
|
||||
#: frontend/src/pages/Profile.vue:32 frontend/src/pages/Programs.vue:55
|
||||
#: frontend/src/pages/Profile.vue:32 frontend/src/pages/Programs.vue:53
|
||||
msgid "Edit"
|
||||
msgstr "Editar"
|
||||
|
||||
@@ -1650,10 +1653,6 @@ msgstr "Correo Electrónico Enviado"
|
||||
msgid "Email Templates"
|
||||
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'
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Emails"
|
||||
@@ -1752,7 +1751,7 @@ msgstr "Confirmación de inscripción para el próximo Lote de Entrenamiento"
|
||||
msgid "Enrollment Count"
|
||||
msgstr "Recuento de inscripciones"
|
||||
|
||||
#: lms/lms/utils.py:1726
|
||||
#: lms/lms/utils.py:1765
|
||||
msgid "Enrollment Failed"
|
||||
msgstr "Error al inscribirse"
|
||||
|
||||
@@ -3051,6 +3050,7 @@ msgid "Member Email"
|
||||
msgstr "Correo electrónico del miembro"
|
||||
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Assignment Submission'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Badge Assignment'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Certificate'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Certificate
|
||||
#. Evaluation'
|
||||
@@ -3060,6 +3060,7 @@ msgstr "Correo electrónico del miembro"
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Mentor Request'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Quiz Submission'
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
@@ -3189,11 +3190,11 @@ msgstr "Moderador"
|
||||
msgid "Modified By"
|
||||
msgstr "Modificado por"
|
||||
|
||||
#: lms/lms/api.py:201
|
||||
#: lms/lms/api.py:211
|
||||
msgid "Module Name is incorrect or does not exist."
|
||||
msgstr "El nombre del módulo es incorrecto o no existe."
|
||||
|
||||
#: lms/lms/api.py:197
|
||||
#: lms/lms/api.py:207
|
||||
msgid "Module is incorrect."
|
||||
msgstr "Módulo incorrecto."
|
||||
|
||||
@@ -3252,7 +3253,7 @@ msgstr "Nuevo trabajo"
|
||||
msgid "New Job Applicant"
|
||||
msgstr "Nuevo solicitante de trabajo"
|
||||
|
||||
#: frontend/src/pages/Programs.vue:107
|
||||
#: frontend/src/pages/Programs.vue:105
|
||||
msgid "New Program"
|
||||
msgstr ""
|
||||
|
||||
@@ -3339,7 +3340,7 @@ msgstr "No hay cursos creados"
|
||||
msgid "No courses found"
|
||||
msgstr "No se encontraron cursos"
|
||||
|
||||
#: frontend/src/pages/Programs.vue:83
|
||||
#: frontend/src/pages/Programs.vue:81
|
||||
msgid "No courses in this program"
|
||||
msgstr ""
|
||||
|
||||
@@ -3359,7 +3360,7 @@ msgstr "No hay trabajos publicados"
|
||||
msgid "No live classes scheduled"
|
||||
msgstr "No hay clases en vivo programadas"
|
||||
|
||||
#: frontend/src/pages/Programs.vue:93
|
||||
#: frontend/src/pages/Programs.vue:91
|
||||
msgid "No programs found"
|
||||
msgstr ""
|
||||
|
||||
@@ -3375,7 +3376,7 @@ msgstr "No hay cupos disponibles para esta fecha."
|
||||
msgid "No submissions"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:39
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:41
|
||||
msgid "No upcoming evaluations."
|
||||
msgstr "No hay próximas evaluaciones."
|
||||
|
||||
@@ -3484,7 +3485,7 @@ msgstr ""
|
||||
msgid "Only files of type {0} will be accepted."
|
||||
msgstr "Sólo se aceptarán archivos del tipo {0}."
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:529
|
||||
#: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:533
|
||||
msgid "Only image file is allowed."
|
||||
msgstr "Sólo se permiten archivos de imagen."
|
||||
|
||||
@@ -3764,7 +3765,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"
|
||||
msgstr "Haga clic en el siguiente botón para establecer su nueva contraseña"
|
||||
|
||||
#: lms/lms/utils.py:1848 lms/lms/utils.py:1852
|
||||
#: lms/lms/utils.py:1887 lms/lms/utils.py:1891
|
||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||
msgstr ""
|
||||
|
||||
@@ -3825,7 +3826,7 @@ msgstr "Inicie sesión para acceder al cuestionario."
|
||||
msgid "Please login to access this page."
|
||||
msgstr "Por favor inicie sesión para acceder a esta página."
|
||||
|
||||
#: lms/lms/api.py:193
|
||||
#: lms/lms/api.py:203
|
||||
msgid "Please login to continue with payment."
|
||||
msgstr "Por favor inicie sesión para continuar con el pago."
|
||||
|
||||
@@ -4018,8 +4019,8 @@ msgstr ""
|
||||
#. Label of the progress (Float) field in DocType 'LMS Enrollment'
|
||||
#. Label of the progress (Int) field in DocType 'LMS Program Member'
|
||||
#: frontend/src/components/BatchStudents.vue:53
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:32
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:64
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:35
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:63
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
msgid "Progress"
|
||||
@@ -4391,7 +4392,7 @@ msgid "Schedule"
|
||||
msgstr "Calendario"
|
||||
|
||||
#: frontend/src/components/Modals/EvaluationModal.vue:5
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:4
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:8
|
||||
msgid "Schedule Evaluation"
|
||||
msgstr "Programar evaluación"
|
||||
|
||||
@@ -4790,13 +4791,13 @@ msgstr "El estudiante {0} ya ha sido añadido a este lote."
|
||||
#. Label of the students (Table) field in DocType 'LMS Batch'
|
||||
#. Label of the show_students (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/components/BatchStudents.vue:18
|
||||
#: frontend/src/components/BatchStudents.vue:84
|
||||
#: frontend/src/components/BatchStudents.vue:89
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Students"
|
||||
msgstr "Estudiantes"
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:310
|
||||
#: frontend/src/components/BatchStudents.vue:302
|
||||
msgid "Students deleted successfully"
|
||||
msgstr "Estudiantes eliminados correctamente"
|
||||
|
||||
@@ -4854,8 +4855,7 @@ msgstr "Enviado {0}"
|
||||
#: frontend/src/components/Assignment.vue:316
|
||||
#: frontend/src/components/BatchCourses.vue:150
|
||||
#: frontend/src/components/BatchOverlay.vue:135
|
||||
#: frontend/src/components/BatchStudents.vue:310
|
||||
#: frontend/src/components/BatchStudents.vue:409
|
||||
#: frontend/src/components/BatchStudents.vue:302
|
||||
#: frontend/src/components/CourseCardOverlay.vue:165
|
||||
#: frontend/src/components/Modals/AnnouncementModal.vue:99
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:73
|
||||
@@ -4889,7 +4889,7 @@ msgstr "Resumen"
|
||||
msgid "Sunday"
|
||||
msgstr "Domingo"
|
||||
|
||||
#: lms/lms/api.py:954
|
||||
#: lms/lms/api.py:964
|
||||
msgid "Suspicious pattern found in {0}: {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -5004,7 +5004,7 @@ msgstr "Texto"
|
||||
msgid "Thanks and Regards"
|
||||
msgstr "Gracias y saludos"
|
||||
|
||||
#: lms/lms/utils.py:1755
|
||||
#: lms/lms/utils.py:1794
|
||||
msgid "The batch is full. Please contact the Administrator."
|
||||
msgstr ""
|
||||
|
||||
@@ -5040,7 +5040,7 @@ msgstr "No hay capítulos en este curso. Crea y administra capítulos desde aqu
|
||||
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr "No hay cursos disponibles en este momento. ¡Esté atento, pronto habrá nuevas experiencias de aprendizaje!"
|
||||
|
||||
#: frontend/src/pages/Programs.vue:97
|
||||
#: frontend/src/pages/Programs.vue:95
|
||||
msgid "There are no programs available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr ""
|
||||
|
||||
@@ -5048,7 +5048,7 @@ msgstr ""
|
||||
msgid "There are no seats available in this batch."
|
||||
msgstr "No hay asientos disponibles en este lote."
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:182
|
||||
#: frontend/src/components/BatchStudents.vue:177
|
||||
msgid "There are no students in this batch."
|
||||
msgstr "No hay estudiantes en este lote."
|
||||
|
||||
@@ -5074,7 +5074,7 @@ msgstr ""
|
||||
msgid "These customisations will work on the main batch page."
|
||||
msgstr "Estas personalizaciones funcionarán en la página principal de lotes."
|
||||
|
||||
#: frontend/src/pages/Badge.vue:10
|
||||
#: frontend/src/pages/Badge.vue:14
|
||||
msgid "This badge has been awarded to {0} on {1}."
|
||||
msgstr "Esta insignia se otorgó a {0} el {1}."
|
||||
|
||||
@@ -5091,7 +5091,7 @@ msgstr ""
|
||||
msgid "This course has:"
|
||||
msgstr "Este curso tiene:"
|
||||
|
||||
#: lms/lms/utils.py:1606
|
||||
#: lms/lms/utils.py:1645
|
||||
msgid "This course is free."
|
||||
msgstr "Este curso es gratuito."
|
||||
|
||||
@@ -5197,7 +5197,7 @@ msgstr "Horarios:"
|
||||
#: frontend/src/pages/AssignmentForm.vue:32
|
||||
#: frontend/src/pages/Assignments.vue:152 frontend/src/pages/BatchForm.vue:20
|
||||
#: frontend/src/pages/CourseForm.vue:32 frontend/src/pages/JobCreation.vue:20
|
||||
#: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:118
|
||||
#: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:116
|
||||
#: 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
|
||||
@@ -5235,7 +5235,7 @@ msgstr "A"
|
||||
msgid "To Date"
|
||||
msgstr "Hasta la fecha"
|
||||
|
||||
#: lms/lms/utils.py:1617
|
||||
#: lms/lms/utils.py:1656
|
||||
msgid "To join this batch, please contact the Administrator."
|
||||
msgstr "Para unirse a este lote, comuníquese con el Administrador."
|
||||
|
||||
@@ -5363,7 +5363,7 @@ msgstr "Próximamente"
|
||||
msgid "Upcoming Batches"
|
||||
msgstr "Próximos lotes"
|
||||
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:7
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:5
|
||||
#: lms/templates/upcoming_evals.html:3
|
||||
msgid "Upcoming Evaluations"
|
||||
msgstr "Próximas evaluaciones"
|
||||
@@ -5561,11 +5561,11 @@ msgstr "Escriba su respuesta aquí"
|
||||
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}."
|
||||
|
||||
#: lms/lms/api.py:217
|
||||
#: lms/lms/api.py:227
|
||||
msgid "You are already enrolled for this batch."
|
||||
msgstr "Ya estás inscrito en este lote."
|
||||
|
||||
#: lms/lms/api.py:209
|
||||
#: lms/lms/api.py:219
|
||||
msgid "You are already enrolled for this course."
|
||||
msgstr "Ya estás inscrito en este curso."
|
||||
|
||||
@@ -5741,6 +5741,14 @@ msgstr "Tu envío se ha guardado correctamente. El instructor lo revisará y cal
|
||||
msgid "Zoom Settings"
|
||||
msgstr "Configuración de Zoom"
|
||||
|
||||
#: frontend/src/components/StudentHeatmap.vue:6
|
||||
msgid "activities"
|
||||
msgstr "actividades"
|
||||
|
||||
#: frontend/src/components/StudentHeatmap.vue:6
|
||||
msgid "activity"
|
||||
msgstr "actividad"
|
||||
|
||||
#: lms/templates/emails/mentor_request_creation_email.html:5
|
||||
msgid "cancel your application"
|
||||
msgstr "cancelar su solicitud"
|
||||
@@ -5757,6 +5765,10 @@ msgstr "respuestas correctas"
|
||||
msgid "has been"
|
||||
msgstr "ha sido"
|
||||
|
||||
#: frontend/src/components/StudentHeatmap.vue:8
|
||||
msgid "in the last"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProfileCertificates.vue:17
|
||||
msgid "issued on"
|
||||
msgstr "emitido el"
|
||||
@@ -5765,7 +5777,11 @@ msgstr "emitido el"
|
||||
msgid "jane@example.com"
|
||||
msgstr "juan@example.com"
|
||||
|
||||
#: frontend/src/pages/Programs.vue:32
|
||||
#: frontend/src/pages/Programs.vue:31
|
||||
msgid "member"
|
||||
msgstr "miembro"
|
||||
|
||||
#: frontend/src/pages/Programs.vue:31
|
||||
msgid "members"
|
||||
msgstr "miembros"
|
||||
|
||||
@@ -5793,11 +5809,15 @@ msgstr "calificaciones"
|
||||
msgid "stars"
|
||||
msgstr "estrellas"
|
||||
|
||||
#: frontend/src/components/StudentHeatmap.vue:10
|
||||
msgid "weeks"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/emails/mentor_request_creation_email.html:5
|
||||
msgid "you can"
|
||||
msgstr "puedes"
|
||||
|
||||
#: lms/lms/api.py:751 lms/lms/api.py:759
|
||||
#: lms/lms/api.py:761 lms/lms/api.py:769
|
||||
msgid "{0} Settings not found"
|
||||
msgstr "Configuraciones {0} no encontradas"
|
||||
|
||||
|
||||
118
lms/locale/fa.po
118
lms/locale/fa.po
@@ -2,8 +2,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: frappe\n"
|
||||
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
||||
"POT-Creation-Date: 2025-01-03 16:04+0000\n"
|
||||
"PO-Revision-Date: 2025-01-07 04:09\n"
|
||||
"POT-Creation-Date: 2025-01-10 16:04+0000\n"
|
||||
"PO-Revision-Date: 2025-01-14 06:35\n"
|
||||
"Last-Translator: jannat@frappe.io\n"
|
||||
"Language-Team: Persian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -22,7 +22,7 @@ msgstr ""
|
||||
msgid " Please evaluate and grade it."
|
||||
msgstr " لطفا آن را ارزیابی و نمره دهید."
|
||||
|
||||
#: frontend/src/pages/Programs.vue:41
|
||||
#: frontend/src/pages/Programs.vue:39
|
||||
#, python-format
|
||||
msgid "% completed"
|
||||
msgstr "% تکمیل شده"
|
||||
@@ -75,6 +75,10 @@ msgstr ""
|
||||
msgid "About"
|
||||
msgstr "درباره"
|
||||
|
||||
#: frontend/src/pages/Batch.vue:93
|
||||
msgid "About this batch"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the verify_terms (Check) field in DocType 'User'
|
||||
#: lms/fixtures/custom_field.json
|
||||
msgid "Acceptance for Terms and/or Policies"
|
||||
@@ -101,7 +105,7 @@ msgstr "فعال"
|
||||
|
||||
#: frontend/src/components/Assessments.vue:11
|
||||
#: frontend/src/components/BatchCourses.vue:11
|
||||
#: frontend/src/components/BatchStudents.vue:90
|
||||
#: frontend/src/components/BatchStudents.vue:95
|
||||
#: frontend/src/components/Categories.vue:26
|
||||
#: frontend/src/components/LiveClass.vue:11
|
||||
#: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30
|
||||
@@ -357,7 +361,7 @@ msgstr "هنگام ثبت نام از نوع کاربری بپرسید"
|
||||
#. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch'
|
||||
#. Label of the assessment (Table) field in DocType 'LMS Batch'
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:27
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:29
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:32
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11
|
||||
msgid "Assessment"
|
||||
msgstr "ارزیابی"
|
||||
@@ -384,7 +388,7 @@ msgstr "ارزیابی {0} قبلاً به این دسته اضافه شده ا
|
||||
#. Label of the show_assessments (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/components/Assessments.vue:5
|
||||
#: frontend/src/components/BatchStudents.vue:46
|
||||
#: frontend/src/components/BatchStudents.vue:74
|
||||
#: frontend/src/components/BatchStudents.vue:79
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
#: lms/templates/assessments.html:3
|
||||
msgid "Assessments"
|
||||
@@ -995,7 +999,7 @@ msgid "Company Website"
|
||||
msgstr "وب سایت شرکت"
|
||||
|
||||
#. Option for the 'Status' (Select) field in DocType 'LMS Course Progress'
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:13
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:18
|
||||
#: lms/lms/doctype/lms_course_progress/lms_course_progress.json
|
||||
#: lms/lms/widgets/CourseCard.html:75 lms/templates/reviews.html:48
|
||||
msgid "Complete"
|
||||
@@ -1013,7 +1017,7 @@ msgstr ""
|
||||
msgid "Completed"
|
||||
msgstr "تکمیل شد"
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:353
|
||||
#: frontend/src/components/BatchStudents.vue:345
|
||||
msgid "Completed by Students"
|
||||
msgstr ""
|
||||
|
||||
@@ -1289,8 +1293,8 @@ msgstr "دوره {0} قبلاً به این دسته اضافه شده است."
|
||||
#: frontend/src/components/BatchCourses.vue:5
|
||||
#: frontend/src/components/BatchOverlay.vue:23
|
||||
#: frontend/src/components/BatchStudents.vue:32
|
||||
#: frontend/src/components/BatchStudents.vue:68
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:61
|
||||
#: frontend/src/components/BatchStudents.vue:70
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:60
|
||||
#: frontend/src/pages/BatchDetail.vue:19 frontend/src/pages/BatchDetail.vue:68
|
||||
#: frontend/src/pages/Courses.vue:8 frontend/src/pages/Statistics.vue:19
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
@@ -1317,7 +1321,7 @@ msgid "Cover Image"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:9
|
||||
#: frontend/src/pages/Programs.vue:110
|
||||
#: frontend/src/pages/Programs.vue:108
|
||||
msgid "Create"
|
||||
msgstr "ایجاد کردن"
|
||||
|
||||
@@ -1569,16 +1573,15 @@ msgstr "گزینه های تکراری برای این سوال پیدا شد."
|
||||
#. Label of the duration (Data) field in DocType 'Cohort'
|
||||
#. Label of the duration (Data) field in DocType 'LMS Batch Timetable'
|
||||
#. Label of the duration (Int) field in DocType 'LMS Live Class'
|
||||
#. Label of the duration (Duration) field in DocType 'LMS Quiz'
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:62
|
||||
#: lms/lms/doctype/cohort/cohort.json
|
||||
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
msgid "Duration"
|
||||
msgstr "مدت زمان"
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:63
|
||||
#. Label of the duration (Data) field in DocType 'LMS Quiz'
|
||||
#: frontend/src/pages/QuizForm.vue:63 lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
msgid "Duration (in minutes)"
|
||||
msgstr "مدت زمان (بر حسب دقیقه)"
|
||||
|
||||
@@ -1600,7 +1603,7 @@ msgstr "ایمیل"
|
||||
#: frontend/src/components/CourseCardOverlay.vue:86
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:9
|
||||
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:65
|
||||
#: frontend/src/pages/Profile.vue:32 frontend/src/pages/Programs.vue:55
|
||||
#: frontend/src/pages/Profile.vue:32 frontend/src/pages/Programs.vue:53
|
||||
msgid "Edit"
|
||||
msgstr "ویرایش"
|
||||
|
||||
@@ -1650,10 +1653,6 @@ msgstr "ایمیل ارسال شد"
|
||||
msgid "Email Templates"
|
||||
msgstr "قالبهای ایمیل"
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:409
|
||||
msgid "Email copied to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the show_emails (Check) field in DocType 'LMS Settings'
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Emails"
|
||||
@@ -1752,7 +1751,7 @@ msgstr ""
|
||||
msgid "Enrollment Count"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1726
|
||||
#: lms/lms/utils.py:1765
|
||||
msgid "Enrollment Failed"
|
||||
msgstr ""
|
||||
|
||||
@@ -3051,6 +3050,7 @@ msgid "Member Email"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Assignment Submission'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Badge Assignment'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Certificate'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Certificate
|
||||
#. Evaluation'
|
||||
@@ -3060,6 +3060,7 @@ msgstr ""
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Mentor Request'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Quiz Submission'
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
@@ -3189,11 +3190,11 @@ msgstr ""
|
||||
msgid "Modified By"
|
||||
msgstr "تغییر داده شده توسط"
|
||||
|
||||
#: lms/lms/api.py:201
|
||||
#: lms/lms/api.py:211
|
||||
msgid "Module Name is incorrect or does not exist."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:197
|
||||
#: lms/lms/api.py:207
|
||||
msgid "Module is incorrect."
|
||||
msgstr ""
|
||||
|
||||
@@ -3252,7 +3253,7 @@ msgstr "شغل جدید"
|
||||
msgid "New Job Applicant"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:107
|
||||
#: frontend/src/pages/Programs.vue:105
|
||||
msgid "New Program"
|
||||
msgstr ""
|
||||
|
||||
@@ -3339,7 +3340,7 @@ msgstr ""
|
||||
msgid "No courses found"
|
||||
msgstr "هیچ دوره ای پیدا نشد"
|
||||
|
||||
#: frontend/src/pages/Programs.vue:83
|
||||
#: frontend/src/pages/Programs.vue:81
|
||||
msgid "No courses in this program"
|
||||
msgstr ""
|
||||
|
||||
@@ -3359,7 +3360,7 @@ msgstr ""
|
||||
msgid "No live classes scheduled"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:93
|
||||
#: frontend/src/pages/Programs.vue:91
|
||||
msgid "No programs found"
|
||||
msgstr ""
|
||||
|
||||
@@ -3375,7 +3376,7 @@ msgstr ""
|
||||
msgid "No submissions"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:39
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:41
|
||||
msgid "No upcoming evaluations."
|
||||
msgstr ""
|
||||
|
||||
@@ -3484,7 +3485,7 @@ msgstr ""
|
||||
msgid "Only files of type {0} will be accepted."
|
||||
msgstr "فقط فایل هایی از نوع {0} پذیرفته می شوند."
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:529
|
||||
#: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:533
|
||||
msgid "Only image file is allowed."
|
||||
msgstr ""
|
||||
|
||||
@@ -3764,7 +3765,7 @@ msgstr "لطفا ایمیل خود را برای تایید بررسی کنید"
|
||||
msgid "Please click on the following button to set your new password"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1848 lms/lms/utils.py:1852
|
||||
#: lms/lms/utils.py:1887 lms/lms/utils.py:1891
|
||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||
msgstr ""
|
||||
|
||||
@@ -3825,7 +3826,7 @@ msgstr ""
|
||||
msgid "Please login to access this page."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:193
|
||||
#: lms/lms/api.py:203
|
||||
msgid "Please login to continue with payment."
|
||||
msgstr ""
|
||||
|
||||
@@ -4018,8 +4019,8 @@ msgstr ""
|
||||
#. Label of the progress (Float) field in DocType 'LMS Enrollment'
|
||||
#. Label of the progress (Int) field in DocType 'LMS Program Member'
|
||||
#: frontend/src/components/BatchStudents.vue:53
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:32
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:64
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:35
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:63
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
msgid "Progress"
|
||||
@@ -4391,7 +4392,7 @@ msgid "Schedule"
|
||||
msgstr "برنامه"
|
||||
|
||||
#: frontend/src/components/Modals/EvaluationModal.vue:5
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:4
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:8
|
||||
msgid "Schedule Evaluation"
|
||||
msgstr ""
|
||||
|
||||
@@ -4790,13 +4791,13 @@ msgstr "دانشآموز {0} قبلاً به این دسته اضافه شد
|
||||
#. Label of the students (Table) field in DocType 'LMS Batch'
|
||||
#. Label of the show_students (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/components/BatchStudents.vue:18
|
||||
#: frontend/src/components/BatchStudents.vue:84
|
||||
#: frontend/src/components/BatchStudents.vue:89
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Students"
|
||||
msgstr "دانشآموزان"
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:310
|
||||
#: frontend/src/components/BatchStudents.vue:302
|
||||
msgid "Students deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -4854,8 +4855,7 @@ msgstr ""
|
||||
#: frontend/src/components/Assignment.vue:316
|
||||
#: frontend/src/components/BatchCourses.vue:150
|
||||
#: frontend/src/components/BatchOverlay.vue:135
|
||||
#: frontend/src/components/BatchStudents.vue:310
|
||||
#: frontend/src/components/BatchStudents.vue:409
|
||||
#: frontend/src/components/BatchStudents.vue:302
|
||||
#: frontend/src/components/CourseCardOverlay.vue:165
|
||||
#: frontend/src/components/Modals/AnnouncementModal.vue:99
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:73
|
||||
@@ -4889,7 +4889,7 @@ msgstr "خلاصه"
|
||||
msgid "Sunday"
|
||||
msgstr "یکشنبه"
|
||||
|
||||
#: lms/lms/api.py:954
|
||||
#: lms/lms/api.py:964
|
||||
msgid "Suspicious pattern found in {0}: {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -5004,7 +5004,7 @@ msgstr "متن"
|
||||
msgid "Thanks and Regards"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1755
|
||||
#: lms/lms/utils.py:1794
|
||||
msgid "The batch is full. Please contact the Administrator."
|
||||
msgstr ""
|
||||
|
||||
@@ -5040,7 +5040,7 @@ msgstr ""
|
||||
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:97
|
||||
#: frontend/src/pages/Programs.vue:95
|
||||
msgid "There are no programs available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr ""
|
||||
|
||||
@@ -5048,7 +5048,7 @@ msgstr ""
|
||||
msgid "There are no seats available in this batch."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:182
|
||||
#: frontend/src/components/BatchStudents.vue:177
|
||||
msgid "There are no students in this batch."
|
||||
msgstr "هیچ دانشآموزی در این گروه وجود ندارد."
|
||||
|
||||
@@ -5074,7 +5074,7 @@ msgstr ""
|
||||
msgid "These customisations will work on the main batch page."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Badge.vue:10
|
||||
#: frontend/src/pages/Badge.vue:14
|
||||
msgid "This badge has been awarded to {0} on {1}."
|
||||
msgstr ""
|
||||
|
||||
@@ -5091,7 +5091,7 @@ msgstr "این کلاس به پایان رسید"
|
||||
msgid "This course has:"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1606
|
||||
#: lms/lms/utils.py:1645
|
||||
msgid "This course is free."
|
||||
msgstr ""
|
||||
|
||||
@@ -5197,7 +5197,7 @@ msgstr ""
|
||||
#: frontend/src/pages/AssignmentForm.vue:32
|
||||
#: frontend/src/pages/Assignments.vue:152 frontend/src/pages/BatchForm.vue:20
|
||||
#: frontend/src/pages/CourseForm.vue:32 frontend/src/pages/JobCreation.vue:20
|
||||
#: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:118
|
||||
#: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:116
|
||||
#: 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
|
||||
@@ -5235,7 +5235,7 @@ msgstr "به"
|
||||
msgid "To Date"
|
||||
msgstr "تا تاریخ"
|
||||
|
||||
#: lms/lms/utils.py:1617
|
||||
#: lms/lms/utils.py:1656
|
||||
msgid "To join this batch, please contact the Administrator."
|
||||
msgstr ""
|
||||
|
||||
@@ -5363,7 +5363,7 @@ msgstr ""
|
||||
msgid "Upcoming Batches"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:7
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:5
|
||||
#: lms/templates/upcoming_evals.html:3
|
||||
msgid "Upcoming Evaluations"
|
||||
msgstr ""
|
||||
@@ -5561,11 +5561,11 @@ msgstr ""
|
||||
msgid "You already have an evaluation on {0} at {1} for the course {2}."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:217
|
||||
#: lms/lms/api.py:227
|
||||
msgid "You are already enrolled for this batch."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:209
|
||||
#: lms/lms/api.py:219
|
||||
msgid "You are already enrolled for this course."
|
||||
msgstr ""
|
||||
|
||||
@@ -5741,6 +5741,14 @@ msgstr ""
|
||||
msgid "Zoom Settings"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/StudentHeatmap.vue:6
|
||||
msgid "activities"
|
||||
msgstr "فعالیت ها"
|
||||
|
||||
#: frontend/src/components/StudentHeatmap.vue:6
|
||||
msgid "activity"
|
||||
msgstr "فعالیت"
|
||||
|
||||
#: lms/templates/emails/mentor_request_creation_email.html:5
|
||||
msgid "cancel your application"
|
||||
msgstr ""
|
||||
@@ -5757,6 +5765,10 @@ msgstr ""
|
||||
msgid "has been"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/StudentHeatmap.vue:8
|
||||
msgid "in the last"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProfileCertificates.vue:17
|
||||
msgid "issued on"
|
||||
msgstr "صادر شده در"
|
||||
@@ -5765,7 +5777,11 @@ msgstr "صادر شده در"
|
||||
msgid "jane@example.com"
|
||||
msgstr "jane@example.com"
|
||||
|
||||
#: frontend/src/pages/Programs.vue:32
|
||||
#: frontend/src/pages/Programs.vue:31
|
||||
msgid "member"
|
||||
msgstr "عضو"
|
||||
|
||||
#: frontend/src/pages/Programs.vue:31
|
||||
msgid "members"
|
||||
msgstr "اعضا"
|
||||
|
||||
@@ -5793,11 +5809,15 @@ msgstr "رتبه بندی ها"
|
||||
msgid "stars"
|
||||
msgstr "ستاره ها"
|
||||
|
||||
#: frontend/src/components/StudentHeatmap.vue:10
|
||||
msgid "weeks"
|
||||
msgstr "هفته ها"
|
||||
|
||||
#: lms/templates/emails/mentor_request_creation_email.html:5
|
||||
msgid "you can"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:751 lms/lms/api.py:759
|
||||
#: lms/lms/api.py:761 lms/lms/api.py:769
|
||||
msgid "{0} Settings not found"
|
||||
msgstr ""
|
||||
|
||||
|
||||
118
lms/locale/fr.po
118
lms/locale/fr.po
@@ -2,8 +2,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: frappe\n"
|
||||
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
||||
"POT-Creation-Date: 2025-01-03 16:04+0000\n"
|
||||
"PO-Revision-Date: 2025-01-07 04:09\n"
|
||||
"POT-Creation-Date: 2025-01-10 16:04+0000\n"
|
||||
"PO-Revision-Date: 2025-01-13 06:31\n"
|
||||
"Last-Translator: jannat@frappe.io\n"
|
||||
"Language-Team: French\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -22,7 +22,7 @@ msgstr ""
|
||||
msgid " Please evaluate and grade it."
|
||||
msgstr " Veuillez l'évaluer et le noter."
|
||||
|
||||
#: frontend/src/pages/Programs.vue:41
|
||||
#: frontend/src/pages/Programs.vue:39
|
||||
#, python-format
|
||||
msgid "% completed"
|
||||
msgstr "% complété"
|
||||
@@ -75,6 +75,10 @@ msgstr ""
|
||||
msgid "About"
|
||||
msgstr "A Propos"
|
||||
|
||||
#: frontend/src/pages/Batch.vue:93
|
||||
msgid "About this batch"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the verify_terms (Check) field in DocType 'User'
|
||||
#: lms/fixtures/custom_field.json
|
||||
msgid "Acceptance for Terms and/or Policies"
|
||||
@@ -101,7 +105,7 @@ msgstr "actif"
|
||||
|
||||
#: frontend/src/components/Assessments.vue:11
|
||||
#: frontend/src/components/BatchCourses.vue:11
|
||||
#: frontend/src/components/BatchStudents.vue:90
|
||||
#: frontend/src/components/BatchStudents.vue:95
|
||||
#: frontend/src/components/Categories.vue:26
|
||||
#: frontend/src/components/LiveClass.vue:11
|
||||
#: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30
|
||||
@@ -357,7 +361,7 @@ msgstr "Demandez la catégorie de l'utilisateur lors de l'inscription"
|
||||
#. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch'
|
||||
#. Label of the assessment (Table) field in DocType 'LMS Batch'
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:27
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:29
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:32
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11
|
||||
msgid "Assessment"
|
||||
msgstr "Évaluation"
|
||||
@@ -384,7 +388,7 @@ msgstr "L'évaluation {0} a déjà été ajoutée à ce lot."
|
||||
#. Label of the show_assessments (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/components/Assessments.vue:5
|
||||
#: frontend/src/components/BatchStudents.vue:46
|
||||
#: frontend/src/components/BatchStudents.vue:74
|
||||
#: frontend/src/components/BatchStudents.vue:79
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
#: lms/templates/assessments.html:3
|
||||
msgid "Assessments"
|
||||
@@ -995,7 +999,7 @@ msgid "Company Website"
|
||||
msgstr "Site Web de l'entreprise"
|
||||
|
||||
#. Option for the 'Status' (Select) field in DocType 'LMS Course Progress'
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:13
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:18
|
||||
#: lms/lms/doctype/lms_course_progress/lms_course_progress.json
|
||||
#: lms/lms/widgets/CourseCard.html:75 lms/templates/reviews.html:48
|
||||
msgid "Complete"
|
||||
@@ -1013,7 +1017,7 @@ msgstr "Terminer l'inscription"
|
||||
msgid "Completed"
|
||||
msgstr "Terminé"
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:353
|
||||
#: frontend/src/components/BatchStudents.vue:345
|
||||
msgid "Completed by Students"
|
||||
msgstr ""
|
||||
|
||||
@@ -1289,8 +1293,8 @@ msgstr "Le cours {0} a déjà été ajouté à ce lot."
|
||||
#: frontend/src/components/BatchCourses.vue:5
|
||||
#: frontend/src/components/BatchOverlay.vue:23
|
||||
#: frontend/src/components/BatchStudents.vue:32
|
||||
#: frontend/src/components/BatchStudents.vue:68
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:61
|
||||
#: frontend/src/components/BatchStudents.vue:70
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:60
|
||||
#: frontend/src/pages/BatchDetail.vue:19 frontend/src/pages/BatchDetail.vue:68
|
||||
#: frontend/src/pages/Courses.vue:8 frontend/src/pages/Statistics.vue:19
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
@@ -1317,7 +1321,7 @@ msgid "Cover Image"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:9
|
||||
#: frontend/src/pages/Programs.vue:110
|
||||
#: frontend/src/pages/Programs.vue:108
|
||||
msgid "Create"
|
||||
msgstr "Créer"
|
||||
|
||||
@@ -1569,16 +1573,15 @@ msgstr ""
|
||||
#. Label of the duration (Data) field in DocType 'Cohort'
|
||||
#. Label of the duration (Data) field in DocType 'LMS Batch Timetable'
|
||||
#. Label of the duration (Int) field in DocType 'LMS Live Class'
|
||||
#. Label of the duration (Duration) field in DocType 'LMS Quiz'
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:62
|
||||
#: lms/lms/doctype/cohort/cohort.json
|
||||
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
msgid "Duration"
|
||||
msgstr "Durée"
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:63
|
||||
#. Label of the duration (Data) field in DocType 'LMS Quiz'
|
||||
#: frontend/src/pages/QuizForm.vue:63 lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
msgid "Duration (in minutes)"
|
||||
msgstr ""
|
||||
|
||||
@@ -1600,7 +1603,7 @@ msgstr ""
|
||||
#: frontend/src/components/CourseCardOverlay.vue:86
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:9
|
||||
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:65
|
||||
#: frontend/src/pages/Profile.vue:32 frontend/src/pages/Programs.vue:55
|
||||
#: frontend/src/pages/Profile.vue:32 frontend/src/pages/Programs.vue:53
|
||||
msgid "Edit"
|
||||
msgstr "modifier"
|
||||
|
||||
@@ -1650,10 +1653,6 @@ msgstr "Email Envoyé"
|
||||
msgid "Email Templates"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:409
|
||||
msgid "Email copied to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the show_emails (Check) field in DocType 'LMS Settings'
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Emails"
|
||||
@@ -1752,7 +1751,7 @@ msgstr ""
|
||||
msgid "Enrollment Count"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1726
|
||||
#: lms/lms/utils.py:1765
|
||||
msgid "Enrollment Failed"
|
||||
msgstr ""
|
||||
|
||||
@@ -3051,6 +3050,7 @@ msgid "Member Email"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Assignment Submission'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Badge Assignment'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Certificate'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Certificate
|
||||
#. Evaluation'
|
||||
@@ -3060,6 +3060,7 @@ msgstr ""
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Mentor Request'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Quiz Submission'
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
@@ -3189,11 +3190,11 @@ msgstr ""
|
||||
msgid "Modified By"
|
||||
msgstr "Modifié Par"
|
||||
|
||||
#: lms/lms/api.py:201
|
||||
#: lms/lms/api.py:211
|
||||
msgid "Module Name is incorrect or does not exist."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:197
|
||||
#: lms/lms/api.py:207
|
||||
msgid "Module is incorrect."
|
||||
msgstr ""
|
||||
|
||||
@@ -3252,7 +3253,7 @@ msgstr ""
|
||||
msgid "New Job Applicant"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:107
|
||||
#: frontend/src/pages/Programs.vue:105
|
||||
msgid "New Program"
|
||||
msgstr ""
|
||||
|
||||
@@ -3339,7 +3340,7 @@ msgstr ""
|
||||
msgid "No courses found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:83
|
||||
#: frontend/src/pages/Programs.vue:81
|
||||
msgid "No courses in this program"
|
||||
msgstr ""
|
||||
|
||||
@@ -3359,7 +3360,7 @@ msgstr ""
|
||||
msgid "No live classes scheduled"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:93
|
||||
#: frontend/src/pages/Programs.vue:91
|
||||
msgid "No programs found"
|
||||
msgstr ""
|
||||
|
||||
@@ -3375,7 +3376,7 @@ msgstr ""
|
||||
msgid "No submissions"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:39
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:41
|
||||
msgid "No upcoming evaluations."
|
||||
msgstr ""
|
||||
|
||||
@@ -3484,7 +3485,7 @@ msgstr ""
|
||||
msgid "Only files of type {0} will be accepted."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:529
|
||||
#: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:533
|
||||
msgid "Only image file is allowed."
|
||||
msgstr ""
|
||||
|
||||
@@ -3764,7 +3765,7 @@ msgstr "Veuillez vérifier votre email pour validation"
|
||||
msgid "Please click on the following button to set your new password"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1848 lms/lms/utils.py:1852
|
||||
#: lms/lms/utils.py:1887 lms/lms/utils.py:1891
|
||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||
msgstr ""
|
||||
|
||||
@@ -3825,7 +3826,7 @@ msgstr ""
|
||||
msgid "Please login to access this page."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:193
|
||||
#: lms/lms/api.py:203
|
||||
msgid "Please login to continue with payment."
|
||||
msgstr ""
|
||||
|
||||
@@ -4018,8 +4019,8 @@ msgstr ""
|
||||
#. Label of the progress (Float) field in DocType 'LMS Enrollment'
|
||||
#. Label of the progress (Int) field in DocType 'LMS Program Member'
|
||||
#: frontend/src/components/BatchStudents.vue:53
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:32
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:64
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:35
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:63
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
msgid "Progress"
|
||||
@@ -4391,7 +4392,7 @@ msgid "Schedule"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/EvaluationModal.vue:5
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:4
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:8
|
||||
msgid "Schedule Evaluation"
|
||||
msgstr ""
|
||||
|
||||
@@ -4790,13 +4791,13 @@ msgstr ""
|
||||
#. Label of the students (Table) field in DocType 'LMS Batch'
|
||||
#. Label of the show_students (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/components/BatchStudents.vue:18
|
||||
#: frontend/src/components/BatchStudents.vue:84
|
||||
#: frontend/src/components/BatchStudents.vue:89
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Students"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:310
|
||||
#: frontend/src/components/BatchStudents.vue:302
|
||||
msgid "Students deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -4854,8 +4855,7 @@ msgstr ""
|
||||
#: frontend/src/components/Assignment.vue:316
|
||||
#: frontend/src/components/BatchCourses.vue:150
|
||||
#: frontend/src/components/BatchOverlay.vue:135
|
||||
#: frontend/src/components/BatchStudents.vue:310
|
||||
#: frontend/src/components/BatchStudents.vue:409
|
||||
#: frontend/src/components/BatchStudents.vue:302
|
||||
#: frontend/src/components/CourseCardOverlay.vue:165
|
||||
#: frontend/src/components/Modals/AnnouncementModal.vue:99
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:73
|
||||
@@ -4889,7 +4889,7 @@ msgstr "Résumé"
|
||||
msgid "Sunday"
|
||||
msgstr "Dimanche"
|
||||
|
||||
#: lms/lms/api.py:954
|
||||
#: lms/lms/api.py:964
|
||||
msgid "Suspicious pattern found in {0}: {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -5004,7 +5004,7 @@ msgstr "Texte"
|
||||
msgid "Thanks and Regards"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1755
|
||||
#: lms/lms/utils.py:1794
|
||||
msgid "The batch is full. Please contact the Administrator."
|
||||
msgstr ""
|
||||
|
||||
@@ -5040,7 +5040,7 @@ msgstr ""
|
||||
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:97
|
||||
#: frontend/src/pages/Programs.vue:95
|
||||
msgid "There are no programs available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr ""
|
||||
|
||||
@@ -5048,7 +5048,7 @@ msgstr ""
|
||||
msgid "There are no seats available in this batch."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:182
|
||||
#: frontend/src/components/BatchStudents.vue:177
|
||||
msgid "There are no students in this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -5074,7 +5074,7 @@ msgstr ""
|
||||
msgid "These customisations will work on the main batch page."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Badge.vue:10
|
||||
#: frontend/src/pages/Badge.vue:14
|
||||
msgid "This badge has been awarded to {0} on {1}."
|
||||
msgstr ""
|
||||
|
||||
@@ -5091,7 +5091,7 @@ msgstr ""
|
||||
msgid "This course has:"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1606
|
||||
#: lms/lms/utils.py:1645
|
||||
msgid "This course is free."
|
||||
msgstr ""
|
||||
|
||||
@@ -5197,7 +5197,7 @@ msgstr ""
|
||||
#: frontend/src/pages/AssignmentForm.vue:32
|
||||
#: frontend/src/pages/Assignments.vue:152 frontend/src/pages/BatchForm.vue:20
|
||||
#: frontend/src/pages/CourseForm.vue:32 frontend/src/pages/JobCreation.vue:20
|
||||
#: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:118
|
||||
#: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:116
|
||||
#: 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
|
||||
@@ -5235,7 +5235,7 @@ msgstr "À"
|
||||
msgid "To Date"
|
||||
msgstr "Jusqu'au"
|
||||
|
||||
#: lms/lms/utils.py:1617
|
||||
#: lms/lms/utils.py:1656
|
||||
msgid "To join this batch, please contact the Administrator."
|
||||
msgstr ""
|
||||
|
||||
@@ -5363,7 +5363,7 @@ msgstr ""
|
||||
msgid "Upcoming Batches"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:7
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:5
|
||||
#: lms/templates/upcoming_evals.html:3
|
||||
msgid "Upcoming Evaluations"
|
||||
msgstr ""
|
||||
@@ -5561,11 +5561,11 @@ msgstr ""
|
||||
msgid "You already have an evaluation on {0} at {1} for the course {2}."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:217
|
||||
#: lms/lms/api.py:227
|
||||
msgid "You are already enrolled for this batch."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:209
|
||||
#: lms/lms/api.py:219
|
||||
msgid "You are already enrolled for this course."
|
||||
msgstr ""
|
||||
|
||||
@@ -5741,6 +5741,14 @@ msgstr ""
|
||||
msgid "Zoom Settings"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/StudentHeatmap.vue:6
|
||||
msgid "activities"
|
||||
msgstr "activités"
|
||||
|
||||
#: frontend/src/components/StudentHeatmap.vue:6
|
||||
msgid "activity"
|
||||
msgstr "historique"
|
||||
|
||||
#: lms/templates/emails/mentor_request_creation_email.html:5
|
||||
msgid "cancel your application"
|
||||
msgstr ""
|
||||
@@ -5757,6 +5765,10 @@ msgstr ""
|
||||
msgid "has been"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/StudentHeatmap.vue:8
|
||||
msgid "in the last"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProfileCertificates.vue:17
|
||||
msgid "issued on"
|
||||
msgstr ""
|
||||
@@ -5765,7 +5777,11 @@ msgstr ""
|
||||
msgid "jane@example.com"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:32
|
||||
#: frontend/src/pages/Programs.vue:31
|
||||
msgid "member"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:31
|
||||
msgid "members"
|
||||
msgstr ""
|
||||
|
||||
@@ -5793,11 +5809,15 @@ msgstr ""
|
||||
msgid "stars"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/StudentHeatmap.vue:10
|
||||
msgid "weeks"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/emails/mentor_request_creation_email.html:5
|
||||
msgid "you can"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:751 lms/lms/api.py:759
|
||||
#: lms/lms/api.py:761 lms/lms/api.py:769
|
||||
msgid "{0} Settings not found"
|
||||
msgstr ""
|
||||
|
||||
|
||||
118
lms/locale/hu.po
118
lms/locale/hu.po
@@ -2,8 +2,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: frappe\n"
|
||||
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
||||
"POT-Creation-Date: 2025-01-03 16:04+0000\n"
|
||||
"PO-Revision-Date: 2025-01-07 04:09\n"
|
||||
"POT-Creation-Date: 2025-01-10 16:04+0000\n"
|
||||
"PO-Revision-Date: 2025-01-13 06:31\n"
|
||||
"Last-Translator: jannat@frappe.io\n"
|
||||
"Language-Team: Hungarian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -22,7 +22,7 @@ msgstr ""
|
||||
msgid " Please evaluate and grade it."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:41
|
||||
#: frontend/src/pages/Programs.vue:39
|
||||
#, python-format
|
||||
msgid "% completed"
|
||||
msgstr "% befejezve"
|
||||
@@ -75,6 +75,10 @@ msgstr ""
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batch.vue:93
|
||||
msgid "About this batch"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the verify_terms (Check) field in DocType 'User'
|
||||
#: lms/fixtures/custom_field.json
|
||||
msgid "Acceptance for Terms and/or Policies"
|
||||
@@ -101,7 +105,7 @@ msgstr ""
|
||||
|
||||
#: frontend/src/components/Assessments.vue:11
|
||||
#: frontend/src/components/BatchCourses.vue:11
|
||||
#: frontend/src/components/BatchStudents.vue:90
|
||||
#: frontend/src/components/BatchStudents.vue:95
|
||||
#: frontend/src/components/Categories.vue:26
|
||||
#: frontend/src/components/LiveClass.vue:11
|
||||
#: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30
|
||||
@@ -357,7 +361,7 @@ msgstr ""
|
||||
#. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch'
|
||||
#. Label of the assessment (Table) field in DocType 'LMS Batch'
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:27
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:29
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:32
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11
|
||||
msgid "Assessment"
|
||||
msgstr ""
|
||||
@@ -384,7 +388,7 @@ msgstr ""
|
||||
#. Label of the show_assessments (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/components/Assessments.vue:5
|
||||
#: frontend/src/components/BatchStudents.vue:46
|
||||
#: frontend/src/components/BatchStudents.vue:74
|
||||
#: frontend/src/components/BatchStudents.vue:79
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
#: lms/templates/assessments.html:3
|
||||
msgid "Assessments"
|
||||
@@ -995,7 +999,7 @@ msgid "Company Website"
|
||||
msgstr "Cég honlapja"
|
||||
|
||||
#. Option for the 'Status' (Select) field in DocType 'LMS Course Progress'
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:13
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:18
|
||||
#: lms/lms/doctype/lms_course_progress/lms_course_progress.json
|
||||
#: lms/lms/widgets/CourseCard.html:75 lms/templates/reviews.html:48
|
||||
msgid "Complete"
|
||||
@@ -1013,7 +1017,7 @@ msgstr ""
|
||||
msgid "Completed"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:353
|
||||
#: frontend/src/components/BatchStudents.vue:345
|
||||
msgid "Completed by Students"
|
||||
msgstr ""
|
||||
|
||||
@@ -1289,8 +1293,8 @@ msgstr ""
|
||||
#: frontend/src/components/BatchCourses.vue:5
|
||||
#: frontend/src/components/BatchOverlay.vue:23
|
||||
#: frontend/src/components/BatchStudents.vue:32
|
||||
#: frontend/src/components/BatchStudents.vue:68
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:61
|
||||
#: frontend/src/components/BatchStudents.vue:70
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:60
|
||||
#: frontend/src/pages/BatchDetail.vue:19 frontend/src/pages/BatchDetail.vue:68
|
||||
#: frontend/src/pages/Courses.vue:8 frontend/src/pages/Statistics.vue:19
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
@@ -1317,7 +1321,7 @@ msgid "Cover Image"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:9
|
||||
#: frontend/src/pages/Programs.vue:110
|
||||
#: frontend/src/pages/Programs.vue:108
|
||||
msgid "Create"
|
||||
msgstr ""
|
||||
|
||||
@@ -1569,16 +1573,15 @@ msgstr ""
|
||||
#. Label of the duration (Data) field in DocType 'Cohort'
|
||||
#. Label of the duration (Data) field in DocType 'LMS Batch Timetable'
|
||||
#. Label of the duration (Int) field in DocType 'LMS Live Class'
|
||||
#. Label of the duration (Duration) field in DocType 'LMS Quiz'
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:62
|
||||
#: lms/lms/doctype/cohort/cohort.json
|
||||
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
msgid "Duration"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:63
|
||||
#. Label of the duration (Data) field in DocType 'LMS Quiz'
|
||||
#: frontend/src/pages/QuizForm.vue:63 lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
msgid "Duration (in minutes)"
|
||||
msgstr ""
|
||||
|
||||
@@ -1600,7 +1603,7 @@ msgstr ""
|
||||
#: frontend/src/components/CourseCardOverlay.vue:86
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:9
|
||||
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:65
|
||||
#: frontend/src/pages/Profile.vue:32 frontend/src/pages/Programs.vue:55
|
||||
#: frontend/src/pages/Profile.vue:32 frontend/src/pages/Programs.vue:53
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
@@ -1650,10 +1653,6 @@ msgstr ""
|
||||
msgid "Email Templates"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:409
|
||||
msgid "Email copied to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the show_emails (Check) field in DocType 'LMS Settings'
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Emails"
|
||||
@@ -1752,7 +1751,7 @@ msgstr ""
|
||||
msgid "Enrollment Count"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1726
|
||||
#: lms/lms/utils.py:1765
|
||||
msgid "Enrollment Failed"
|
||||
msgstr ""
|
||||
|
||||
@@ -3051,6 +3050,7 @@ msgid "Member Email"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Assignment Submission'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Badge Assignment'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Certificate'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Certificate
|
||||
#. Evaluation'
|
||||
@@ -3060,6 +3060,7 @@ msgstr ""
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Mentor Request'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Quiz Submission'
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
@@ -3189,11 +3190,11 @@ msgstr ""
|
||||
msgid "Modified By"
|
||||
msgstr "Módosította"
|
||||
|
||||
#: lms/lms/api.py:201
|
||||
#: lms/lms/api.py:211
|
||||
msgid "Module Name is incorrect or does not exist."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:197
|
||||
#: lms/lms/api.py:207
|
||||
msgid "Module is incorrect."
|
||||
msgstr ""
|
||||
|
||||
@@ -3252,7 +3253,7 @@ msgstr ""
|
||||
msgid "New Job Applicant"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:107
|
||||
#: frontend/src/pages/Programs.vue:105
|
||||
msgid "New Program"
|
||||
msgstr ""
|
||||
|
||||
@@ -3339,7 +3340,7 @@ msgstr ""
|
||||
msgid "No courses found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:83
|
||||
#: frontend/src/pages/Programs.vue:81
|
||||
msgid "No courses in this program"
|
||||
msgstr ""
|
||||
|
||||
@@ -3359,7 +3360,7 @@ msgstr ""
|
||||
msgid "No live classes scheduled"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:93
|
||||
#: frontend/src/pages/Programs.vue:91
|
||||
msgid "No programs found"
|
||||
msgstr ""
|
||||
|
||||
@@ -3375,7 +3376,7 @@ msgstr ""
|
||||
msgid "No submissions"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:39
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:41
|
||||
msgid "No upcoming evaluations."
|
||||
msgstr ""
|
||||
|
||||
@@ -3484,7 +3485,7 @@ msgstr ""
|
||||
msgid "Only files of type {0} will be accepted."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:529
|
||||
#: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:533
|
||||
msgid "Only image file is allowed."
|
||||
msgstr ""
|
||||
|
||||
@@ -3764,7 +3765,7 @@ msgstr "Kérjük, ellenőrizze e-mail a vizsgálathoz"
|
||||
msgid "Please click on the following button to set your new password"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1848 lms/lms/utils.py:1852
|
||||
#: lms/lms/utils.py:1887 lms/lms/utils.py:1891
|
||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||
msgstr ""
|
||||
|
||||
@@ -3825,7 +3826,7 @@ msgstr ""
|
||||
msgid "Please login to access this page."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:193
|
||||
#: lms/lms/api.py:203
|
||||
msgid "Please login to continue with payment."
|
||||
msgstr ""
|
||||
|
||||
@@ -4018,8 +4019,8 @@ msgstr ""
|
||||
#. Label of the progress (Float) field in DocType 'LMS Enrollment'
|
||||
#. Label of the progress (Int) field in DocType 'LMS Program Member'
|
||||
#: frontend/src/components/BatchStudents.vue:53
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:32
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:64
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:35
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:63
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
msgid "Progress"
|
||||
@@ -4391,7 +4392,7 @@ msgid "Schedule"
|
||||
msgstr "Ütemezés"
|
||||
|
||||
#: frontend/src/components/Modals/EvaluationModal.vue:5
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:4
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:8
|
||||
msgid "Schedule Evaluation"
|
||||
msgstr ""
|
||||
|
||||
@@ -4790,13 +4791,13 @@ msgstr ""
|
||||
#. Label of the students (Table) field in DocType 'LMS Batch'
|
||||
#. Label of the show_students (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/components/BatchStudents.vue:18
|
||||
#: frontend/src/components/BatchStudents.vue:84
|
||||
#: frontend/src/components/BatchStudents.vue:89
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Students"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:310
|
||||
#: frontend/src/components/BatchStudents.vue:302
|
||||
msgid "Students deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -4854,8 +4855,7 @@ msgstr ""
|
||||
#: frontend/src/components/Assignment.vue:316
|
||||
#: frontend/src/components/BatchCourses.vue:150
|
||||
#: frontend/src/components/BatchOverlay.vue:135
|
||||
#: frontend/src/components/BatchStudents.vue:310
|
||||
#: frontend/src/components/BatchStudents.vue:409
|
||||
#: frontend/src/components/BatchStudents.vue:302
|
||||
#: frontend/src/components/CourseCardOverlay.vue:165
|
||||
#: frontend/src/components/Modals/AnnouncementModal.vue:99
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:73
|
||||
@@ -4889,7 +4889,7 @@ msgstr "Összefoglalás"
|
||||
msgid "Sunday"
|
||||
msgstr "Vasárnap"
|
||||
|
||||
#: lms/lms/api.py:954
|
||||
#: lms/lms/api.py:964
|
||||
msgid "Suspicious pattern found in {0}: {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -5004,7 +5004,7 @@ msgstr ""
|
||||
msgid "Thanks and Regards"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1755
|
||||
#: lms/lms/utils.py:1794
|
||||
msgid "The batch is full. Please contact the Administrator."
|
||||
msgstr ""
|
||||
|
||||
@@ -5040,7 +5040,7 @@ msgstr ""
|
||||
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:97
|
||||
#: frontend/src/pages/Programs.vue:95
|
||||
msgid "There are no programs available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr ""
|
||||
|
||||
@@ -5048,7 +5048,7 @@ msgstr ""
|
||||
msgid "There are no seats available in this batch."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:182
|
||||
#: frontend/src/components/BatchStudents.vue:177
|
||||
msgid "There are no students in this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -5074,7 +5074,7 @@ msgstr ""
|
||||
msgid "These customisations will work on the main batch page."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Badge.vue:10
|
||||
#: frontend/src/pages/Badge.vue:14
|
||||
msgid "This badge has been awarded to {0} on {1}."
|
||||
msgstr ""
|
||||
|
||||
@@ -5091,7 +5091,7 @@ msgstr ""
|
||||
msgid "This course has:"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1606
|
||||
#: lms/lms/utils.py:1645
|
||||
msgid "This course is free."
|
||||
msgstr ""
|
||||
|
||||
@@ -5197,7 +5197,7 @@ msgstr ""
|
||||
#: frontend/src/pages/AssignmentForm.vue:32
|
||||
#: frontend/src/pages/Assignments.vue:152 frontend/src/pages/BatchForm.vue:20
|
||||
#: frontend/src/pages/CourseForm.vue:32 frontend/src/pages/JobCreation.vue:20
|
||||
#: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:118
|
||||
#: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:116
|
||||
#: 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
|
||||
@@ -5235,7 +5235,7 @@ msgstr ""
|
||||
msgid "To Date"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1617
|
||||
#: lms/lms/utils.py:1656
|
||||
msgid "To join this batch, please contact the Administrator."
|
||||
msgstr ""
|
||||
|
||||
@@ -5363,7 +5363,7 @@ msgstr ""
|
||||
msgid "Upcoming Batches"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:7
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:5
|
||||
#: lms/templates/upcoming_evals.html:3
|
||||
msgid "Upcoming Evaluations"
|
||||
msgstr ""
|
||||
@@ -5561,11 +5561,11 @@ msgstr ""
|
||||
msgid "You already have an evaluation on {0} at {1} for the course {2}."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:217
|
||||
#: lms/lms/api.py:227
|
||||
msgid "You are already enrolled for this batch."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:209
|
||||
#: lms/lms/api.py:219
|
||||
msgid "You are already enrolled for this course."
|
||||
msgstr ""
|
||||
|
||||
@@ -5741,6 +5741,14 @@ msgstr ""
|
||||
msgid "Zoom Settings"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/StudentHeatmap.vue:6
|
||||
msgid "activities"
|
||||
msgstr "tevékenységek"
|
||||
|
||||
#: frontend/src/components/StudentHeatmap.vue:6
|
||||
msgid "activity"
|
||||
msgstr "tevékenység"
|
||||
|
||||
#: lms/templates/emails/mentor_request_creation_email.html:5
|
||||
msgid "cancel your application"
|
||||
msgstr ""
|
||||
@@ -5757,6 +5765,10 @@ msgstr ""
|
||||
msgid "has been"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/StudentHeatmap.vue:8
|
||||
msgid "in the last"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProfileCertificates.vue:17
|
||||
msgid "issued on"
|
||||
msgstr ""
|
||||
@@ -5765,7 +5777,11 @@ msgstr ""
|
||||
msgid "jane@example.com"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:32
|
||||
#: frontend/src/pages/Programs.vue:31
|
||||
msgid "member"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:31
|
||||
msgid "members"
|
||||
msgstr ""
|
||||
|
||||
@@ -5793,11 +5809,15 @@ msgstr ""
|
||||
msgid "stars"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/StudentHeatmap.vue:10
|
||||
msgid "weeks"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/emails/mentor_request_creation_email.html:5
|
||||
msgid "you can"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:751 lms/lms/api.py:759
|
||||
#: lms/lms/api.py:761 lms/lms/api.py:769
|
||||
msgid "{0} Settings not found"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Frappe LMS VERSION\n"
|
||||
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
||||
"POT-Creation-Date: 2025-01-03 16:04+0000\n"
|
||||
"PO-Revision-Date: 2025-01-03 16:04+0000\n"
|
||||
"POT-Creation-Date: 2025-01-10 16:04+0000\n"
|
||||
"PO-Revision-Date: 2025-01-10 16:04+0000\n"
|
||||
"Last-Translator: jannat@frappe.io\n"
|
||||
"Language-Team: jannat@frappe.io\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -20,7 +20,7 @@ msgstr ""
|
||||
msgid " Please evaluate and grade it."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:41
|
||||
#: frontend/src/pages/Programs.vue:39
|
||||
#, python-format
|
||||
msgid "% completed"
|
||||
msgstr ""
|
||||
@@ -73,6 +73,10 @@ msgstr ""
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batch.vue:93
|
||||
msgid "About this batch"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the verify_terms (Check) field in DocType 'User'
|
||||
#: lms/fixtures/custom_field.json
|
||||
msgid "Acceptance for Terms and/or Policies"
|
||||
@@ -99,7 +103,7 @@ msgstr ""
|
||||
|
||||
#: frontend/src/components/Assessments.vue:11
|
||||
#: frontend/src/components/BatchCourses.vue:11
|
||||
#: frontend/src/components/BatchStudents.vue:90
|
||||
#: frontend/src/components/BatchStudents.vue:95
|
||||
#: frontend/src/components/Categories.vue:26
|
||||
#: frontend/src/components/LiveClass.vue:11
|
||||
#: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30
|
||||
@@ -355,7 +359,7 @@ msgstr ""
|
||||
#. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch'
|
||||
#. Label of the assessment (Table) field in DocType 'LMS Batch'
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:27
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:29
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:32
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11
|
||||
msgid "Assessment"
|
||||
msgstr ""
|
||||
@@ -382,7 +386,7 @@ msgstr ""
|
||||
#. Label of the show_assessments (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/components/Assessments.vue:5
|
||||
#: frontend/src/components/BatchStudents.vue:46
|
||||
#: frontend/src/components/BatchStudents.vue:74
|
||||
#: frontend/src/components/BatchStudents.vue:79
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
#: lms/templates/assessments.html:3
|
||||
msgid "Assessments"
|
||||
@@ -993,7 +997,7 @@ msgid "Company Website"
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Status' (Select) field in DocType 'LMS Course Progress'
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:13
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:18
|
||||
#: lms/lms/doctype/lms_course_progress/lms_course_progress.json
|
||||
#: lms/lms/widgets/CourseCard.html:75 lms/templates/reviews.html:48
|
||||
msgid "Complete"
|
||||
@@ -1011,7 +1015,7 @@ msgstr ""
|
||||
msgid "Completed"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:353
|
||||
#: frontend/src/components/BatchStudents.vue:345
|
||||
msgid "Completed by Students"
|
||||
msgstr ""
|
||||
|
||||
@@ -1287,8 +1291,8 @@ msgstr ""
|
||||
#: frontend/src/components/BatchCourses.vue:5
|
||||
#: frontend/src/components/BatchOverlay.vue:23
|
||||
#: frontend/src/components/BatchStudents.vue:32
|
||||
#: frontend/src/components/BatchStudents.vue:68
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:61
|
||||
#: frontend/src/components/BatchStudents.vue:70
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:60
|
||||
#: frontend/src/pages/BatchDetail.vue:19 frontend/src/pages/BatchDetail.vue:68
|
||||
#: frontend/src/pages/Courses.vue:8 frontend/src/pages/Statistics.vue:19
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
@@ -1315,7 +1319,7 @@ msgid "Cover Image"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:9
|
||||
#: frontend/src/pages/Programs.vue:110
|
||||
#: frontend/src/pages/Programs.vue:108
|
||||
msgid "Create"
|
||||
msgstr ""
|
||||
|
||||
@@ -1567,16 +1571,15 @@ msgstr ""
|
||||
#. Label of the duration (Data) field in DocType 'Cohort'
|
||||
#. Label of the duration (Data) field in DocType 'LMS Batch Timetable'
|
||||
#. Label of the duration (Int) field in DocType 'LMS Live Class'
|
||||
#. Label of the duration (Duration) field in DocType 'LMS Quiz'
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:62
|
||||
#: lms/lms/doctype/cohort/cohort.json
|
||||
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
msgid "Duration"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:63
|
||||
#. Label of the duration (Data) field in DocType 'LMS Quiz'
|
||||
#: frontend/src/pages/QuizForm.vue:63 lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
msgid "Duration (in minutes)"
|
||||
msgstr ""
|
||||
|
||||
@@ -1598,7 +1601,7 @@ msgstr ""
|
||||
#: frontend/src/components/CourseCardOverlay.vue:86
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:9
|
||||
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:65
|
||||
#: frontend/src/pages/Profile.vue:32 frontend/src/pages/Programs.vue:55
|
||||
#: frontend/src/pages/Profile.vue:32 frontend/src/pages/Programs.vue:53
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
@@ -1648,10 +1651,6 @@ msgstr ""
|
||||
msgid "Email Templates"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:409
|
||||
msgid "Email copied to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the show_emails (Check) field in DocType 'LMS Settings'
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Emails"
|
||||
@@ -1750,7 +1749,7 @@ msgstr ""
|
||||
msgid "Enrollment Count"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1726
|
||||
#: lms/lms/utils.py:1765
|
||||
msgid "Enrollment Failed"
|
||||
msgstr ""
|
||||
|
||||
@@ -3049,6 +3048,7 @@ msgid "Member Email"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Assignment Submission'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Badge Assignment'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Certificate'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Certificate
|
||||
#. Evaluation'
|
||||
@@ -3058,6 +3058,7 @@ msgstr ""
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Mentor Request'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Quiz Submission'
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
@@ -3187,11 +3188,11 @@ msgstr ""
|
||||
msgid "Modified By"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:201
|
||||
#: lms/lms/api.py:211
|
||||
msgid "Module Name is incorrect or does not exist."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:197
|
||||
#: lms/lms/api.py:207
|
||||
msgid "Module is incorrect."
|
||||
msgstr ""
|
||||
|
||||
@@ -3250,7 +3251,7 @@ msgstr ""
|
||||
msgid "New Job Applicant"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:107
|
||||
#: frontend/src/pages/Programs.vue:105
|
||||
msgid "New Program"
|
||||
msgstr ""
|
||||
|
||||
@@ -3337,7 +3338,7 @@ msgstr ""
|
||||
msgid "No courses found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:83
|
||||
#: frontend/src/pages/Programs.vue:81
|
||||
msgid "No courses in this program"
|
||||
msgstr ""
|
||||
|
||||
@@ -3357,7 +3358,7 @@ msgstr ""
|
||||
msgid "No live classes scheduled"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:93
|
||||
#: frontend/src/pages/Programs.vue:91
|
||||
msgid "No programs found"
|
||||
msgstr ""
|
||||
|
||||
@@ -3373,7 +3374,7 @@ msgstr ""
|
||||
msgid "No submissions"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:39
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:41
|
||||
msgid "No upcoming evaluations."
|
||||
msgstr ""
|
||||
|
||||
@@ -3482,7 +3483,7 @@ msgstr ""
|
||||
msgid "Only files of type {0} will be accepted."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:529
|
||||
#: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:533
|
||||
msgid "Only image file is allowed."
|
||||
msgstr ""
|
||||
|
||||
@@ -3762,7 +3763,7 @@ msgstr ""
|
||||
msgid "Please click on the following button to set your new password"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1848 lms/lms/utils.py:1852
|
||||
#: lms/lms/utils.py:1887 lms/lms/utils.py:1891
|
||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||
msgstr ""
|
||||
|
||||
@@ -3823,7 +3824,7 @@ msgstr ""
|
||||
msgid "Please login to access this page."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:193
|
||||
#: lms/lms/api.py:203
|
||||
msgid "Please login to continue with payment."
|
||||
msgstr ""
|
||||
|
||||
@@ -4016,8 +4017,8 @@ msgstr ""
|
||||
#. Label of the progress (Float) field in DocType 'LMS Enrollment'
|
||||
#. Label of the progress (Int) field in DocType 'LMS Program Member'
|
||||
#: frontend/src/components/BatchStudents.vue:53
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:32
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:64
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:35
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:63
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
msgid "Progress"
|
||||
@@ -4389,7 +4390,7 @@ msgid "Schedule"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/EvaluationModal.vue:5
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:4
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:8
|
||||
msgid "Schedule Evaluation"
|
||||
msgstr ""
|
||||
|
||||
@@ -4788,13 +4789,13 @@ msgstr ""
|
||||
#. Label of the students (Table) field in DocType 'LMS Batch'
|
||||
#. Label of the show_students (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/components/BatchStudents.vue:18
|
||||
#: frontend/src/components/BatchStudents.vue:84
|
||||
#: frontend/src/components/BatchStudents.vue:89
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Students"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:310
|
||||
#: frontend/src/components/BatchStudents.vue:302
|
||||
msgid "Students deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -4852,8 +4853,7 @@ msgstr ""
|
||||
#: frontend/src/components/Assignment.vue:316
|
||||
#: frontend/src/components/BatchCourses.vue:150
|
||||
#: frontend/src/components/BatchOverlay.vue:135
|
||||
#: frontend/src/components/BatchStudents.vue:310
|
||||
#: frontend/src/components/BatchStudents.vue:409
|
||||
#: frontend/src/components/BatchStudents.vue:302
|
||||
#: frontend/src/components/CourseCardOverlay.vue:165
|
||||
#: frontend/src/components/Modals/AnnouncementModal.vue:99
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:73
|
||||
@@ -4887,7 +4887,7 @@ msgstr ""
|
||||
msgid "Sunday"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:954
|
||||
#: lms/lms/api.py:964
|
||||
msgid "Suspicious pattern found in {0}: {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -5002,7 +5002,7 @@ msgstr ""
|
||||
msgid "Thanks and Regards"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1755
|
||||
#: lms/lms/utils.py:1794
|
||||
msgid "The batch is full. Please contact the Administrator."
|
||||
msgstr ""
|
||||
|
||||
@@ -5038,7 +5038,7 @@ msgstr ""
|
||||
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:97
|
||||
#: frontend/src/pages/Programs.vue:95
|
||||
msgid "There are no programs available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr ""
|
||||
|
||||
@@ -5046,7 +5046,7 @@ msgstr ""
|
||||
msgid "There are no seats available in this batch."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:182
|
||||
#: frontend/src/components/BatchStudents.vue:177
|
||||
msgid "There are no students in this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -5072,7 +5072,7 @@ msgstr ""
|
||||
msgid "These customisations will work on the main batch page."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Badge.vue:10
|
||||
#: frontend/src/pages/Badge.vue:14
|
||||
msgid "This badge has been awarded to {0} on {1}."
|
||||
msgstr ""
|
||||
|
||||
@@ -5089,7 +5089,7 @@ msgstr ""
|
||||
msgid "This course has:"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1606
|
||||
#: lms/lms/utils.py:1645
|
||||
msgid "This course is free."
|
||||
msgstr ""
|
||||
|
||||
@@ -5195,7 +5195,7 @@ msgstr ""
|
||||
#: frontend/src/pages/AssignmentForm.vue:32
|
||||
#: frontend/src/pages/Assignments.vue:152 frontend/src/pages/BatchForm.vue:20
|
||||
#: frontend/src/pages/CourseForm.vue:32 frontend/src/pages/JobCreation.vue:20
|
||||
#: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:118
|
||||
#: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:116
|
||||
#: 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
|
||||
@@ -5233,7 +5233,7 @@ msgstr ""
|
||||
msgid "To Date"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1617
|
||||
#: lms/lms/utils.py:1656
|
||||
msgid "To join this batch, please contact the Administrator."
|
||||
msgstr ""
|
||||
|
||||
@@ -5361,7 +5361,7 @@ msgstr ""
|
||||
msgid "Upcoming Batches"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:7
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:5
|
||||
#: lms/templates/upcoming_evals.html:3
|
||||
msgid "Upcoming Evaluations"
|
||||
msgstr ""
|
||||
@@ -5559,11 +5559,11 @@ msgstr ""
|
||||
msgid "You already have an evaluation on {0} at {1} for the course {2}."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:217
|
||||
#: lms/lms/api.py:227
|
||||
msgid "You are already enrolled for this batch."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:209
|
||||
#: lms/lms/api.py:219
|
||||
msgid "You are already enrolled for this course."
|
||||
msgstr ""
|
||||
|
||||
@@ -5739,6 +5739,14 @@ msgstr ""
|
||||
msgid "Zoom Settings"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/StudentHeatmap.vue:6
|
||||
msgid "activities"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/StudentHeatmap.vue:6
|
||||
msgid "activity"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/emails/mentor_request_creation_email.html:5
|
||||
msgid "cancel your application"
|
||||
msgstr ""
|
||||
@@ -5755,6 +5763,10 @@ msgstr ""
|
||||
msgid "has been"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/StudentHeatmap.vue:8
|
||||
msgid "in the last"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProfileCertificates.vue:17
|
||||
msgid "issued on"
|
||||
msgstr ""
|
||||
@@ -5763,7 +5775,11 @@ msgstr ""
|
||||
msgid "jane@example.com"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:32
|
||||
#: frontend/src/pages/Programs.vue:31
|
||||
msgid "member"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:31
|
||||
msgid "members"
|
||||
msgstr ""
|
||||
|
||||
@@ -5791,11 +5807,15 @@ msgstr ""
|
||||
msgid "stars"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/StudentHeatmap.vue:10
|
||||
msgid "weeks"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/emails/mentor_request_creation_email.html:5
|
||||
msgid "you can"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:751 lms/lms/api.py:759
|
||||
#: lms/lms/api.py:761 lms/lms/api.py:769
|
||||
msgid "{0} Settings not found"
|
||||
msgstr ""
|
||||
|
||||
|
||||
118
lms/locale/pl.po
118
lms/locale/pl.po
@@ -2,8 +2,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: frappe\n"
|
||||
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
||||
"POT-Creation-Date: 2025-01-03 16:04+0000\n"
|
||||
"PO-Revision-Date: 2025-01-07 04:09\n"
|
||||
"POT-Creation-Date: 2025-01-10 16:04+0000\n"
|
||||
"PO-Revision-Date: 2025-01-13 06:31\n"
|
||||
"Last-Translator: jannat@frappe.io\n"
|
||||
"Language-Team: Polish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -22,7 +22,7 @@ msgstr ""
|
||||
msgid " Please evaluate and grade it."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:41
|
||||
#: frontend/src/pages/Programs.vue:39
|
||||
#, python-format
|
||||
msgid "% completed"
|
||||
msgstr "% zakończono"
|
||||
@@ -75,6 +75,10 @@ msgstr ""
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batch.vue:93
|
||||
msgid "About this batch"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the verify_terms (Check) field in DocType 'User'
|
||||
#: lms/fixtures/custom_field.json
|
||||
msgid "Acceptance for Terms and/or Policies"
|
||||
@@ -101,7 +105,7 @@ msgstr ""
|
||||
|
||||
#: frontend/src/components/Assessments.vue:11
|
||||
#: frontend/src/components/BatchCourses.vue:11
|
||||
#: frontend/src/components/BatchStudents.vue:90
|
||||
#: frontend/src/components/BatchStudents.vue:95
|
||||
#: frontend/src/components/Categories.vue:26
|
||||
#: frontend/src/components/LiveClass.vue:11
|
||||
#: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30
|
||||
@@ -357,7 +361,7 @@ msgstr ""
|
||||
#. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch'
|
||||
#. Label of the assessment (Table) field in DocType 'LMS Batch'
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:27
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:29
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:32
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11
|
||||
msgid "Assessment"
|
||||
msgstr ""
|
||||
@@ -384,7 +388,7 @@ msgstr ""
|
||||
#. Label of the show_assessments (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/components/Assessments.vue:5
|
||||
#: frontend/src/components/BatchStudents.vue:46
|
||||
#: frontend/src/components/BatchStudents.vue:74
|
||||
#: frontend/src/components/BatchStudents.vue:79
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
#: lms/templates/assessments.html:3
|
||||
msgid "Assessments"
|
||||
@@ -995,7 +999,7 @@ msgid "Company Website"
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Status' (Select) field in DocType 'LMS Course Progress'
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:13
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:18
|
||||
#: lms/lms/doctype/lms_course_progress/lms_course_progress.json
|
||||
#: lms/lms/widgets/CourseCard.html:75 lms/templates/reviews.html:48
|
||||
msgid "Complete"
|
||||
@@ -1013,7 +1017,7 @@ msgstr ""
|
||||
msgid "Completed"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:353
|
||||
#: frontend/src/components/BatchStudents.vue:345
|
||||
msgid "Completed by Students"
|
||||
msgstr ""
|
||||
|
||||
@@ -1289,8 +1293,8 @@ msgstr ""
|
||||
#: frontend/src/components/BatchCourses.vue:5
|
||||
#: frontend/src/components/BatchOverlay.vue:23
|
||||
#: frontend/src/components/BatchStudents.vue:32
|
||||
#: frontend/src/components/BatchStudents.vue:68
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:61
|
||||
#: frontend/src/components/BatchStudents.vue:70
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:60
|
||||
#: frontend/src/pages/BatchDetail.vue:19 frontend/src/pages/BatchDetail.vue:68
|
||||
#: frontend/src/pages/Courses.vue:8 frontend/src/pages/Statistics.vue:19
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
@@ -1317,7 +1321,7 @@ msgid "Cover Image"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:9
|
||||
#: frontend/src/pages/Programs.vue:110
|
||||
#: frontend/src/pages/Programs.vue:108
|
||||
msgid "Create"
|
||||
msgstr ""
|
||||
|
||||
@@ -1569,16 +1573,15 @@ msgstr ""
|
||||
#. Label of the duration (Data) field in DocType 'Cohort'
|
||||
#. Label of the duration (Data) field in DocType 'LMS Batch Timetable'
|
||||
#. Label of the duration (Int) field in DocType 'LMS Live Class'
|
||||
#. Label of the duration (Duration) field in DocType 'LMS Quiz'
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:62
|
||||
#: lms/lms/doctype/cohort/cohort.json
|
||||
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
msgid "Duration"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:63
|
||||
#. Label of the duration (Data) field in DocType 'LMS Quiz'
|
||||
#: frontend/src/pages/QuizForm.vue:63 lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
msgid "Duration (in minutes)"
|
||||
msgstr ""
|
||||
|
||||
@@ -1600,7 +1603,7 @@ msgstr ""
|
||||
#: frontend/src/components/CourseCardOverlay.vue:86
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:9
|
||||
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:65
|
||||
#: frontend/src/pages/Profile.vue:32 frontend/src/pages/Programs.vue:55
|
||||
#: frontend/src/pages/Profile.vue:32 frontend/src/pages/Programs.vue:53
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
@@ -1650,10 +1653,6 @@ msgstr ""
|
||||
msgid "Email Templates"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:409
|
||||
msgid "Email copied to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the show_emails (Check) field in DocType 'LMS Settings'
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Emails"
|
||||
@@ -1752,7 +1751,7 @@ msgstr ""
|
||||
msgid "Enrollment Count"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1726
|
||||
#: lms/lms/utils.py:1765
|
||||
msgid "Enrollment Failed"
|
||||
msgstr ""
|
||||
|
||||
@@ -3051,6 +3050,7 @@ msgid "Member Email"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Assignment Submission'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Badge Assignment'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Certificate'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Certificate
|
||||
#. Evaluation'
|
||||
@@ -3060,6 +3060,7 @@ msgstr ""
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Mentor Request'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Quiz Submission'
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
@@ -3189,11 +3190,11 @@ msgstr ""
|
||||
msgid "Modified By"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:201
|
||||
#: lms/lms/api.py:211
|
||||
msgid "Module Name is incorrect or does not exist."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:197
|
||||
#: lms/lms/api.py:207
|
||||
msgid "Module is incorrect."
|
||||
msgstr ""
|
||||
|
||||
@@ -3252,7 +3253,7 @@ msgstr ""
|
||||
msgid "New Job Applicant"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:107
|
||||
#: frontend/src/pages/Programs.vue:105
|
||||
msgid "New Program"
|
||||
msgstr ""
|
||||
|
||||
@@ -3339,7 +3340,7 @@ msgstr ""
|
||||
msgid "No courses found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:83
|
||||
#: frontend/src/pages/Programs.vue:81
|
||||
msgid "No courses in this program"
|
||||
msgstr ""
|
||||
|
||||
@@ -3359,7 +3360,7 @@ msgstr ""
|
||||
msgid "No live classes scheduled"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:93
|
||||
#: frontend/src/pages/Programs.vue:91
|
||||
msgid "No programs found"
|
||||
msgstr ""
|
||||
|
||||
@@ -3375,7 +3376,7 @@ msgstr ""
|
||||
msgid "No submissions"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:39
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:41
|
||||
msgid "No upcoming evaluations."
|
||||
msgstr ""
|
||||
|
||||
@@ -3484,7 +3485,7 @@ msgstr ""
|
||||
msgid "Only files of type {0} will be accepted."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:529
|
||||
#: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:533
|
||||
msgid "Only image file is allowed."
|
||||
msgstr ""
|
||||
|
||||
@@ -3764,7 +3765,7 @@ msgstr ""
|
||||
msgid "Please click on the following button to set your new password"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1848 lms/lms/utils.py:1852
|
||||
#: lms/lms/utils.py:1887 lms/lms/utils.py:1891
|
||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||
msgstr ""
|
||||
|
||||
@@ -3825,7 +3826,7 @@ msgstr ""
|
||||
msgid "Please login to access this page."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:193
|
||||
#: lms/lms/api.py:203
|
||||
msgid "Please login to continue with payment."
|
||||
msgstr ""
|
||||
|
||||
@@ -4018,8 +4019,8 @@ msgstr ""
|
||||
#. Label of the progress (Float) field in DocType 'LMS Enrollment'
|
||||
#. Label of the progress (Int) field in DocType 'LMS Program Member'
|
||||
#: frontend/src/components/BatchStudents.vue:53
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:32
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:64
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:35
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:63
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
msgid "Progress"
|
||||
@@ -4391,7 +4392,7 @@ msgid "Schedule"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/EvaluationModal.vue:5
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:4
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:8
|
||||
msgid "Schedule Evaluation"
|
||||
msgstr ""
|
||||
|
||||
@@ -4790,13 +4791,13 @@ msgstr ""
|
||||
#. Label of the students (Table) field in DocType 'LMS Batch'
|
||||
#. Label of the show_students (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/components/BatchStudents.vue:18
|
||||
#: frontend/src/components/BatchStudents.vue:84
|
||||
#: frontend/src/components/BatchStudents.vue:89
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Students"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:310
|
||||
#: frontend/src/components/BatchStudents.vue:302
|
||||
msgid "Students deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -4854,8 +4855,7 @@ msgstr ""
|
||||
#: frontend/src/components/Assignment.vue:316
|
||||
#: frontend/src/components/BatchCourses.vue:150
|
||||
#: frontend/src/components/BatchOverlay.vue:135
|
||||
#: frontend/src/components/BatchStudents.vue:310
|
||||
#: frontend/src/components/BatchStudents.vue:409
|
||||
#: frontend/src/components/BatchStudents.vue:302
|
||||
#: frontend/src/components/CourseCardOverlay.vue:165
|
||||
#: frontend/src/components/Modals/AnnouncementModal.vue:99
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:73
|
||||
@@ -4889,7 +4889,7 @@ msgstr "Podsumowanie"
|
||||
msgid "Sunday"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:954
|
||||
#: lms/lms/api.py:964
|
||||
msgid "Suspicious pattern found in {0}: {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -5004,7 +5004,7 @@ msgstr ""
|
||||
msgid "Thanks and Regards"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1755
|
||||
#: lms/lms/utils.py:1794
|
||||
msgid "The batch is full. Please contact the Administrator."
|
||||
msgstr ""
|
||||
|
||||
@@ -5040,7 +5040,7 @@ msgstr ""
|
||||
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:97
|
||||
#: frontend/src/pages/Programs.vue:95
|
||||
msgid "There are no programs available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr ""
|
||||
|
||||
@@ -5048,7 +5048,7 @@ msgstr ""
|
||||
msgid "There are no seats available in this batch."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:182
|
||||
#: frontend/src/components/BatchStudents.vue:177
|
||||
msgid "There are no students in this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -5074,7 +5074,7 @@ msgstr ""
|
||||
msgid "These customisations will work on the main batch page."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Badge.vue:10
|
||||
#: frontend/src/pages/Badge.vue:14
|
||||
msgid "This badge has been awarded to {0} on {1}."
|
||||
msgstr ""
|
||||
|
||||
@@ -5091,7 +5091,7 @@ msgstr ""
|
||||
msgid "This course has:"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1606
|
||||
#: lms/lms/utils.py:1645
|
||||
msgid "This course is free."
|
||||
msgstr ""
|
||||
|
||||
@@ -5197,7 +5197,7 @@ msgstr ""
|
||||
#: frontend/src/pages/AssignmentForm.vue:32
|
||||
#: frontend/src/pages/Assignments.vue:152 frontend/src/pages/BatchForm.vue:20
|
||||
#: frontend/src/pages/CourseForm.vue:32 frontend/src/pages/JobCreation.vue:20
|
||||
#: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:118
|
||||
#: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:116
|
||||
#: 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
|
||||
@@ -5235,7 +5235,7 @@ msgstr ""
|
||||
msgid "To Date"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1617
|
||||
#: lms/lms/utils.py:1656
|
||||
msgid "To join this batch, please contact the Administrator."
|
||||
msgstr ""
|
||||
|
||||
@@ -5363,7 +5363,7 @@ msgstr ""
|
||||
msgid "Upcoming Batches"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:7
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:5
|
||||
#: lms/templates/upcoming_evals.html:3
|
||||
msgid "Upcoming Evaluations"
|
||||
msgstr ""
|
||||
@@ -5561,11 +5561,11 @@ msgstr ""
|
||||
msgid "You already have an evaluation on {0} at {1} for the course {2}."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:217
|
||||
#: lms/lms/api.py:227
|
||||
msgid "You are already enrolled for this batch."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:209
|
||||
#: lms/lms/api.py:219
|
||||
msgid "You are already enrolled for this course."
|
||||
msgstr ""
|
||||
|
||||
@@ -5741,6 +5741,14 @@ msgstr ""
|
||||
msgid "Zoom Settings"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/StudentHeatmap.vue:6
|
||||
msgid "activities"
|
||||
msgstr "aktywności"
|
||||
|
||||
#: frontend/src/components/StudentHeatmap.vue:6
|
||||
msgid "activity"
|
||||
msgstr "aktywność"
|
||||
|
||||
#: lms/templates/emails/mentor_request_creation_email.html:5
|
||||
msgid "cancel your application"
|
||||
msgstr ""
|
||||
@@ -5757,6 +5765,10 @@ msgstr ""
|
||||
msgid "has been"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/StudentHeatmap.vue:8
|
||||
msgid "in the last"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProfileCertificates.vue:17
|
||||
msgid "issued on"
|
||||
msgstr ""
|
||||
@@ -5765,7 +5777,11 @@ msgstr ""
|
||||
msgid "jane@example.com"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:32
|
||||
#: frontend/src/pages/Programs.vue:31
|
||||
msgid "member"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:31
|
||||
msgid "members"
|
||||
msgstr ""
|
||||
|
||||
@@ -5793,11 +5809,15 @@ msgstr ""
|
||||
msgid "stars"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/StudentHeatmap.vue:10
|
||||
msgid "weeks"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/emails/mentor_request_creation_email.html:5
|
||||
msgid "you can"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:751 lms/lms/api.py:759
|
||||
#: lms/lms/api.py:761 lms/lms/api.py:769
|
||||
msgid "{0} Settings not found"
|
||||
msgstr ""
|
||||
|
||||
|
||||
118
lms/locale/ru.po
118
lms/locale/ru.po
@@ -2,8 +2,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: frappe\n"
|
||||
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
||||
"POT-Creation-Date: 2025-01-03 16:04+0000\n"
|
||||
"PO-Revision-Date: 2025-01-07 04:09\n"
|
||||
"POT-Creation-Date: 2025-01-10 16:04+0000\n"
|
||||
"PO-Revision-Date: 2025-01-13 06:31\n"
|
||||
"Last-Translator: jannat@frappe.io\n"
|
||||
"Language-Team: Russian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -22,7 +22,7 @@ msgstr ""
|
||||
msgid " Please evaluate and grade it."
|
||||
msgstr " Пожалуйста, оцените и поставьте оценку."
|
||||
|
||||
#: frontend/src/pages/Programs.vue:41
|
||||
#: frontend/src/pages/Programs.vue:39
|
||||
#, python-format
|
||||
msgid "% completed"
|
||||
msgstr "% завершено"
|
||||
@@ -75,6 +75,10 @@ msgstr ""
|
||||
msgid "About"
|
||||
msgstr "О"
|
||||
|
||||
#: frontend/src/pages/Batch.vue:93
|
||||
msgid "About this batch"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the verify_terms (Check) field in DocType 'User'
|
||||
#: lms/fixtures/custom_field.json
|
||||
msgid "Acceptance for Terms and/or Policies"
|
||||
@@ -101,7 +105,7 @@ msgstr ""
|
||||
|
||||
#: frontend/src/components/Assessments.vue:11
|
||||
#: frontend/src/components/BatchCourses.vue:11
|
||||
#: frontend/src/components/BatchStudents.vue:90
|
||||
#: frontend/src/components/BatchStudents.vue:95
|
||||
#: frontend/src/components/Categories.vue:26
|
||||
#: frontend/src/components/LiveClass.vue:11
|
||||
#: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30
|
||||
@@ -357,7 +361,7 @@ msgstr "Спрашивать категорию пользователя при
|
||||
#. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch'
|
||||
#. Label of the assessment (Table) field in DocType 'LMS Batch'
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:27
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:29
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:32
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11
|
||||
msgid "Assessment"
|
||||
msgstr "Оценка"
|
||||
@@ -384,7 +388,7 @@ msgstr "Оценка {0} уже добавлена в этот пакет."
|
||||
#. Label of the show_assessments (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/components/Assessments.vue:5
|
||||
#: frontend/src/components/BatchStudents.vue:46
|
||||
#: frontend/src/components/BatchStudents.vue:74
|
||||
#: frontend/src/components/BatchStudents.vue:79
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
#: lms/templates/assessments.html:3
|
||||
msgid "Assessments"
|
||||
@@ -995,7 +999,7 @@ msgid "Company Website"
|
||||
msgstr "Вебсайт Компании"
|
||||
|
||||
#. Option for the 'Status' (Select) field in DocType 'LMS Course Progress'
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:13
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:18
|
||||
#: lms/lms/doctype/lms_course_progress/lms_course_progress.json
|
||||
#: lms/lms/widgets/CourseCard.html:75 lms/templates/reviews.html:48
|
||||
msgid "Complete"
|
||||
@@ -1013,7 +1017,7 @@ msgstr "Завершить регистрацию"
|
||||
msgid "Completed"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:353
|
||||
#: frontend/src/components/BatchStudents.vue:345
|
||||
msgid "Completed by Students"
|
||||
msgstr ""
|
||||
|
||||
@@ -1289,8 +1293,8 @@ msgstr "Курс {0} уже добавлен в группу."
|
||||
#: frontend/src/components/BatchCourses.vue:5
|
||||
#: frontend/src/components/BatchOverlay.vue:23
|
||||
#: frontend/src/components/BatchStudents.vue:32
|
||||
#: frontend/src/components/BatchStudents.vue:68
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:61
|
||||
#: frontend/src/components/BatchStudents.vue:70
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:60
|
||||
#: frontend/src/pages/BatchDetail.vue:19 frontend/src/pages/BatchDetail.vue:68
|
||||
#: frontend/src/pages/Courses.vue:8 frontend/src/pages/Statistics.vue:19
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
@@ -1317,7 +1321,7 @@ msgid "Cover Image"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:9
|
||||
#: frontend/src/pages/Programs.vue:110
|
||||
#: frontend/src/pages/Programs.vue:108
|
||||
msgid "Create"
|
||||
msgstr ""
|
||||
|
||||
@@ -1569,16 +1573,15 @@ msgstr "Для этого вопроса найдены дубликаты ва
|
||||
#. Label of the duration (Data) field in DocType 'Cohort'
|
||||
#. Label of the duration (Data) field in DocType 'LMS Batch Timetable'
|
||||
#. Label of the duration (Int) field in DocType 'LMS Live Class'
|
||||
#. Label of the duration (Duration) field in DocType 'LMS Quiz'
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:62
|
||||
#: lms/lms/doctype/cohort/cohort.json
|
||||
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
msgid "Duration"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:63
|
||||
#. Label of the duration (Data) field in DocType 'LMS Quiz'
|
||||
#: frontend/src/pages/QuizForm.vue:63 lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
msgid "Duration (in minutes)"
|
||||
msgstr ""
|
||||
|
||||
@@ -1600,7 +1603,7 @@ msgstr "E-mail"
|
||||
#: frontend/src/components/CourseCardOverlay.vue:86
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:9
|
||||
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:65
|
||||
#: frontend/src/pages/Profile.vue:32 frontend/src/pages/Programs.vue:55
|
||||
#: frontend/src/pages/Profile.vue:32 frontend/src/pages/Programs.vue:53
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
@@ -1650,10 +1653,6 @@ msgstr "Email отправлен"
|
||||
msgid "Email Templates"
|
||||
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'
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Emails"
|
||||
@@ -1752,7 +1751,7 @@ msgstr "Подтверждение регистрации на следующу
|
||||
msgid "Enrollment Count"
|
||||
msgstr "Количество регистраций"
|
||||
|
||||
#: lms/lms/utils.py:1726
|
||||
#: lms/lms/utils.py:1765
|
||||
msgid "Enrollment Failed"
|
||||
msgstr ""
|
||||
|
||||
@@ -3051,6 +3050,7 @@ msgid "Member Email"
|
||||
msgstr "Email участника"
|
||||
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Assignment Submission'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Badge Assignment'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Certificate'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Certificate
|
||||
#. Evaluation'
|
||||
@@ -3060,6 +3060,7 @@ msgstr "Email участника"
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Mentor Request'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Quiz Submission'
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
@@ -3189,11 +3190,11 @@ msgstr "Модератор"
|
||||
msgid "Modified By"
|
||||
msgstr "Изменено"
|
||||
|
||||
#: lms/lms/api.py:201
|
||||
#: lms/lms/api.py:211
|
||||
msgid "Module Name is incorrect or does not exist."
|
||||
msgstr "Имя модуля неверно или не существует."
|
||||
|
||||
#: lms/lms/api.py:197
|
||||
#: lms/lms/api.py:207
|
||||
msgid "Module is incorrect."
|
||||
msgstr "Модуль неверный."
|
||||
|
||||
@@ -3252,7 +3253,7 @@ msgstr "Новая Вакансия"
|
||||
msgid "New Job Applicant"
|
||||
msgstr "Новый соискатель работы"
|
||||
|
||||
#: frontend/src/pages/Programs.vue:107
|
||||
#: frontend/src/pages/Programs.vue:105
|
||||
msgid "New Program"
|
||||
msgstr ""
|
||||
|
||||
@@ -3339,7 +3340,7 @@ msgstr "Курсы не созданы"
|
||||
msgid "No courses found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:83
|
||||
#: frontend/src/pages/Programs.vue:81
|
||||
msgid "No courses in this program"
|
||||
msgstr ""
|
||||
|
||||
@@ -3359,7 +3360,7 @@ msgstr "Вакансии не опубликованы"
|
||||
msgid "No live classes scheduled"
|
||||
msgstr "Не запланированы онлайн-курсы"
|
||||
|
||||
#: frontend/src/pages/Programs.vue:93
|
||||
#: frontend/src/pages/Programs.vue:91
|
||||
msgid "No programs found"
|
||||
msgstr ""
|
||||
|
||||
@@ -3375,7 +3376,7 @@ msgstr "На эту дату свободных мест нет."
|
||||
msgid "No submissions"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:39
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:41
|
||||
msgid "No upcoming evaluations."
|
||||
msgstr "Нет предстоящих оценок."
|
||||
|
||||
@@ -3484,7 +3485,7 @@ msgstr ""
|
||||
msgid "Only files of type {0} will be accepted."
|
||||
msgstr "Принимаются только файлы типа {0} ."
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:529
|
||||
#: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:533
|
||||
msgid "Only image file is allowed."
|
||||
msgstr ""
|
||||
|
||||
@@ -3764,7 +3765,7 @@ msgstr "Пожалуйста, проверьте свой email для подт
|
||||
msgid "Please click on the following button to set your new password"
|
||||
msgstr "Нажмите на следующую кнопку, чтобы установить новый пароль."
|
||||
|
||||
#: lms/lms/utils.py:1848 lms/lms/utils.py:1852
|
||||
#: lms/lms/utils.py:1887 lms/lms/utils.py:1891
|
||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||
msgstr ""
|
||||
|
||||
@@ -3825,7 +3826,7 @@ msgstr "Пожалуйста, войдите в систему, чтобы по
|
||||
msgid "Please login to access this page."
|
||||
msgstr "Пожалуйста, войдите в систему, чтобы получить доступ к этой странице."
|
||||
|
||||
#: lms/lms/api.py:193
|
||||
#: lms/lms/api.py:203
|
||||
msgid "Please login to continue with payment."
|
||||
msgstr "Пожалуйста, войдите в систему, чтобы продолжить оплату."
|
||||
|
||||
@@ -4018,8 +4019,8 @@ msgstr ""
|
||||
#. Label of the progress (Float) field in DocType 'LMS Enrollment'
|
||||
#. Label of the progress (Int) field in DocType 'LMS Program Member'
|
||||
#: frontend/src/components/BatchStudents.vue:53
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:32
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:64
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:35
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:63
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
msgid "Progress"
|
||||
@@ -4391,7 +4392,7 @@ msgid "Schedule"
|
||||
msgstr "Расписание"
|
||||
|
||||
#: frontend/src/components/Modals/EvaluationModal.vue:5
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:4
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:8
|
||||
msgid "Schedule Evaluation"
|
||||
msgstr "Оценка графика"
|
||||
|
||||
@@ -4790,13 +4791,13 @@ msgstr "Курс {0} уже добавлен в группу."
|
||||
#. Label of the students (Table) field in DocType 'LMS Batch'
|
||||
#. Label of the show_students (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/components/BatchStudents.vue:18
|
||||
#: frontend/src/components/BatchStudents.vue:84
|
||||
#: frontend/src/components/BatchStudents.vue:89
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Students"
|
||||
msgstr "Студенты"
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:310
|
||||
#: frontend/src/components/BatchStudents.vue:302
|
||||
msgid "Students deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -4854,8 +4855,7 @@ msgstr "Отправлено {0}"
|
||||
#: frontend/src/components/Assignment.vue:316
|
||||
#: frontend/src/components/BatchCourses.vue:150
|
||||
#: frontend/src/components/BatchOverlay.vue:135
|
||||
#: frontend/src/components/BatchStudents.vue:310
|
||||
#: frontend/src/components/BatchStudents.vue:409
|
||||
#: frontend/src/components/BatchStudents.vue:302
|
||||
#: frontend/src/components/CourseCardOverlay.vue:165
|
||||
#: frontend/src/components/Modals/AnnouncementModal.vue:99
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:73
|
||||
@@ -4889,7 +4889,7 @@ msgstr "Резюме"
|
||||
msgid "Sunday"
|
||||
msgstr "Воскресенье"
|
||||
|
||||
#: lms/lms/api.py:954
|
||||
#: lms/lms/api.py:964
|
||||
msgid "Suspicious pattern found in {0}: {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -5004,7 +5004,7 @@ msgstr "Текст"
|
||||
msgid "Thanks and Regards"
|
||||
msgstr "Спасибо и с наилучшими пожеланиями"
|
||||
|
||||
#: lms/lms/utils.py:1755
|
||||
#: lms/lms/utils.py:1794
|
||||
msgid "The batch is full. Please contact the Administrator."
|
||||
msgstr ""
|
||||
|
||||
@@ -5040,7 +5040,7 @@ msgstr ""
|
||||
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:97
|
||||
#: frontend/src/pages/Programs.vue:95
|
||||
msgid "There are no programs available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr ""
|
||||
|
||||
@@ -5048,7 +5048,7 @@ msgstr ""
|
||||
msgid "There are no seats available in this batch."
|
||||
msgstr "В этой группе нет свободных мест."
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:182
|
||||
#: frontend/src/components/BatchStudents.vue:177
|
||||
msgid "There are no students in this batch."
|
||||
msgstr "В этой группе нет студентов."
|
||||
|
||||
@@ -5074,7 +5074,7 @@ msgstr ""
|
||||
msgid "These customisations will work on the main batch page."
|
||||
msgstr "Эти настройки будут работать на главной странице пакета."
|
||||
|
||||
#: frontend/src/pages/Badge.vue:10
|
||||
#: frontend/src/pages/Badge.vue:14
|
||||
msgid "This badge has been awarded to {0} on {1}."
|
||||
msgstr "Этот бейдж был вручен {0} {1}."
|
||||
|
||||
@@ -5091,7 +5091,7 @@ msgstr ""
|
||||
msgid "This course has:"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1606
|
||||
#: lms/lms/utils.py:1645
|
||||
msgid "This course is free."
|
||||
msgstr "Этот курс бесплатный."
|
||||
|
||||
@@ -5197,7 +5197,7 @@ msgstr "Сроки:"
|
||||
#: frontend/src/pages/AssignmentForm.vue:32
|
||||
#: frontend/src/pages/Assignments.vue:152 frontend/src/pages/BatchForm.vue:20
|
||||
#: frontend/src/pages/CourseForm.vue:32 frontend/src/pages/JobCreation.vue:20
|
||||
#: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:118
|
||||
#: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:116
|
||||
#: 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
|
||||
@@ -5235,7 +5235,7 @@ msgstr ""
|
||||
msgid "To Date"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1617
|
||||
#: lms/lms/utils.py:1656
|
||||
msgid "To join this batch, please contact the Administrator."
|
||||
msgstr "Чтобы присоединиться к этой группе, свяжитесь с администратором."
|
||||
|
||||
@@ -5363,7 +5363,7 @@ msgstr "Предстоящие"
|
||||
msgid "Upcoming Batches"
|
||||
msgstr "Предстоящие группы"
|
||||
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:7
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:5
|
||||
#: lms/templates/upcoming_evals.html:3
|
||||
msgid "Upcoming Evaluations"
|
||||
msgstr "Предстоящие оценки"
|
||||
@@ -5561,11 +5561,11 @@ msgstr "Напишите свой ответ здесь"
|
||||
msgid "You already have an evaluation on {0} at {1} for the course {2}."
|
||||
msgstr "У вас уже есть оценка {0} в {1} для курса {2}."
|
||||
|
||||
#: lms/lms/api.py:217
|
||||
#: lms/lms/api.py:227
|
||||
msgid "You are already enrolled for this batch."
|
||||
msgstr "Вы уже зачислены в эту группу."
|
||||
|
||||
#: lms/lms/api.py:209
|
||||
#: lms/lms/api.py:219
|
||||
msgid "You are already enrolled for this course."
|
||||
msgstr "Вы уже зачислены на этот курс."
|
||||
|
||||
@@ -5741,6 +5741,14 @@ msgstr ""
|
||||
msgid "Zoom Settings"
|
||||
msgstr "Настройки Zoom"
|
||||
|
||||
#: frontend/src/components/StudentHeatmap.vue:6
|
||||
msgid "activities"
|
||||
msgstr "действия"
|
||||
|
||||
#: frontend/src/components/StudentHeatmap.vue:6
|
||||
msgid "activity"
|
||||
msgstr "активность"
|
||||
|
||||
#: lms/templates/emails/mentor_request_creation_email.html:5
|
||||
msgid "cancel your application"
|
||||
msgstr "отменить заявку"
|
||||
@@ -5757,6 +5765,10 @@ msgstr "Правильные ответы"
|
||||
msgid "has been"
|
||||
msgstr "был"
|
||||
|
||||
#: frontend/src/components/StudentHeatmap.vue:8
|
||||
msgid "in the last"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProfileCertificates.vue:17
|
||||
msgid "issued on"
|
||||
msgstr "дата выпуска:"
|
||||
@@ -5765,7 +5777,11 @@ msgstr "дата выпуска:"
|
||||
msgid "jane@example.com"
|
||||
msgstr "ivan@example.com"
|
||||
|
||||
#: frontend/src/pages/Programs.vue:32
|
||||
#: frontend/src/pages/Programs.vue:31
|
||||
msgid "member"
|
||||
msgstr "участник"
|
||||
|
||||
#: frontend/src/pages/Programs.vue:31
|
||||
msgid "members"
|
||||
msgstr "участники"
|
||||
|
||||
@@ -5793,11 +5809,15 @@ msgstr "рейтинг"
|
||||
msgid "stars"
|
||||
msgstr "звезды"
|
||||
|
||||
#: frontend/src/components/StudentHeatmap.vue:10
|
||||
msgid "weeks"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/emails/mentor_request_creation_email.html:5
|
||||
msgid "you can"
|
||||
msgstr "вы можете"
|
||||
|
||||
#: lms/lms/api.py:751 lms/lms/api.py:759
|
||||
#: lms/lms/api.py:761 lms/lms/api.py:769
|
||||
msgid "{0} Settings not found"
|
||||
msgstr ""
|
||||
|
||||
|
||||
118
lms/locale/sv.po
118
lms/locale/sv.po
@@ -2,8 +2,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: frappe\n"
|
||||
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
||||
"POT-Creation-Date: 2025-01-03 16:04+0000\n"
|
||||
"PO-Revision-Date: 2025-01-07 04:09\n"
|
||||
"POT-Creation-Date: 2025-01-10 16:04+0000\n"
|
||||
"PO-Revision-Date: 2025-01-14 06:35\n"
|
||||
"Last-Translator: jannat@frappe.io\n"
|
||||
"Language-Team: Swedish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -22,7 +22,7 @@ msgstr ""
|
||||
msgid " Please evaluate and grade it."
|
||||
msgstr " Utvärdera och betygsätt."
|
||||
|
||||
#: frontend/src/pages/Programs.vue:41
|
||||
#: frontend/src/pages/Programs.vue:39
|
||||
#, python-format
|
||||
msgid "% completed"
|
||||
msgstr "% klar"
|
||||
@@ -75,6 +75,10 @@ msgstr "En rad introduktion till kurs som finns på kurskortet"
|
||||
msgid "About"
|
||||
msgstr "Om"
|
||||
|
||||
#: frontend/src/pages/Batch.vue:93
|
||||
msgid "About this batch"
|
||||
msgstr "Om denna grupp"
|
||||
|
||||
#. Label of the verify_terms (Check) field in DocType 'User'
|
||||
#: lms/fixtures/custom_field.json
|
||||
msgid "Acceptance for Terms and/or Policies"
|
||||
@@ -101,7 +105,7 @@ msgstr "Aktiv"
|
||||
|
||||
#: frontend/src/components/Assessments.vue:11
|
||||
#: frontend/src/components/BatchCourses.vue:11
|
||||
#: frontend/src/components/BatchStudents.vue:90
|
||||
#: frontend/src/components/BatchStudents.vue:95
|
||||
#: frontend/src/components/Categories.vue:26
|
||||
#: frontend/src/components/LiveClass.vue:11
|
||||
#: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30
|
||||
@@ -357,7 +361,7 @@ msgstr "Fråga efter Användare Kategori under Registrering"
|
||||
#. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch'
|
||||
#. Label of the assessment (Table) field in DocType 'LMS Batch'
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:27
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:29
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:32
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11
|
||||
msgid "Assessment"
|
||||
msgstr "Bedömning"
|
||||
@@ -384,7 +388,7 @@ msgstr "Bedömning {0} har redan lagts till i denna grupp."
|
||||
#. Label of the show_assessments (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/components/Assessments.vue:5
|
||||
#: frontend/src/components/BatchStudents.vue:46
|
||||
#: frontend/src/components/BatchStudents.vue:74
|
||||
#: frontend/src/components/BatchStudents.vue:79
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
#: lms/templates/assessments.html:3
|
||||
msgid "Assessments"
|
||||
@@ -995,7 +999,7 @@ msgid "Company Website"
|
||||
msgstr "Bolag Webbplats"
|
||||
|
||||
#. Option for the 'Status' (Select) field in DocType 'LMS Course Progress'
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:13
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:18
|
||||
#: lms/lms/doctype/lms_course_progress/lms_course_progress.json
|
||||
#: lms/lms/widgets/CourseCard.html:75 lms/templates/reviews.html:48
|
||||
msgid "Complete"
|
||||
@@ -1013,7 +1017,7 @@ msgstr "Slutför Registrering"
|
||||
msgid "Completed"
|
||||
msgstr "Klar"
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:353
|
||||
#: frontend/src/components/BatchStudents.vue:345
|
||||
msgid "Completed by Students"
|
||||
msgstr "Klart av Studenter"
|
||||
|
||||
@@ -1289,8 +1293,8 @@ msgstr "Kurs {0} har redan lagts till i denna omgång."
|
||||
#: frontend/src/components/BatchCourses.vue:5
|
||||
#: frontend/src/components/BatchOverlay.vue:23
|
||||
#: frontend/src/components/BatchStudents.vue:32
|
||||
#: frontend/src/components/BatchStudents.vue:68
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:61
|
||||
#: frontend/src/components/BatchStudents.vue:70
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:60
|
||||
#: frontend/src/pages/BatchDetail.vue:19 frontend/src/pages/BatchDetail.vue:68
|
||||
#: frontend/src/pages/Courses.vue:8 frontend/src/pages/Statistics.vue:19
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
@@ -1317,7 +1321,7 @@ msgid "Cover Image"
|
||||
msgstr "Omslagsbild"
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:9
|
||||
#: frontend/src/pages/Programs.vue:110
|
||||
#: frontend/src/pages/Programs.vue:108
|
||||
msgid "Create"
|
||||
msgstr "Skapa"
|
||||
|
||||
@@ -1569,16 +1573,15 @@ msgstr "Duplicerade alternativ hittades för denna fråga."
|
||||
#. Label of the duration (Data) field in DocType 'Cohort'
|
||||
#. Label of the duration (Data) field in DocType 'LMS Batch Timetable'
|
||||
#. Label of the duration (Int) field in DocType 'LMS Live Class'
|
||||
#. Label of the duration (Duration) field in DocType 'LMS Quiz'
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:62
|
||||
#: lms/lms/doctype/cohort/cohort.json
|
||||
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
msgid "Duration"
|
||||
msgstr "Varaktighet"
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:63
|
||||
#. Label of the duration (Data) field in DocType 'LMS Quiz'
|
||||
#: frontend/src/pages/QuizForm.vue:63 lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
msgid "Duration (in minutes)"
|
||||
msgstr "Varaktighet (i minuter)"
|
||||
|
||||
@@ -1600,7 +1603,7 @@ msgstr "E-post"
|
||||
#: frontend/src/components/CourseCardOverlay.vue:86
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:9
|
||||
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:65
|
||||
#: frontend/src/pages/Profile.vue:32 frontend/src/pages/Programs.vue:55
|
||||
#: frontend/src/pages/Profile.vue:32 frontend/src/pages/Programs.vue:53
|
||||
msgid "Edit"
|
||||
msgstr "Redigera"
|
||||
|
||||
@@ -1650,10 +1653,6 @@ msgstr "E-post Skickad"
|
||||
msgid "Email Templates"
|
||||
msgstr "E-Post Mallar"
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:409
|
||||
msgid "Email copied to clipboard"
|
||||
msgstr "E-post kopierad till urklipp"
|
||||
|
||||
#. Label of the show_emails (Check) field in DocType 'LMS Settings'
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Emails"
|
||||
@@ -1752,7 +1751,7 @@ msgstr "Inskrivning bekräftelse för nästa grupp utbildning"
|
||||
msgid "Enrollment Count"
|
||||
msgstr "Antal Inskrivna"
|
||||
|
||||
#: lms/lms/utils.py:1726
|
||||
#: lms/lms/utils.py:1765
|
||||
msgid "Enrollment Failed"
|
||||
msgstr "Registrering Misslyckad"
|
||||
|
||||
@@ -3051,6 +3050,7 @@ msgid "Member Email"
|
||||
msgstr "Medlem E-post"
|
||||
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Assignment Submission'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Badge Assignment'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Certificate'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Certificate
|
||||
#. Evaluation'
|
||||
@@ -3060,6 +3060,7 @@ msgstr "Medlem E-post"
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Mentor Request'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Quiz Submission'
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
@@ -3189,11 +3190,11 @@ msgstr "Moderator"
|
||||
msgid "Modified By"
|
||||
msgstr "Modifierad Av"
|
||||
|
||||
#: lms/lms/api.py:201
|
||||
#: lms/lms/api.py:211
|
||||
msgid "Module Name is incorrect or does not exist."
|
||||
msgstr "Modul Namn är felaktigt eller existerar inte."
|
||||
|
||||
#: lms/lms/api.py:197
|
||||
#: lms/lms/api.py:207
|
||||
msgid "Module is incorrect."
|
||||
msgstr "Modul är felaktig."
|
||||
|
||||
@@ -3252,7 +3253,7 @@ msgstr "Nya Jobb"
|
||||
msgid "New Job Applicant"
|
||||
msgstr "Ny Jobb Sökande"
|
||||
|
||||
#: frontend/src/pages/Programs.vue:107
|
||||
#: frontend/src/pages/Programs.vue:105
|
||||
msgid "New Program"
|
||||
msgstr "Ny Program"
|
||||
|
||||
@@ -3339,7 +3340,7 @@ msgstr "Inga kurser skapade"
|
||||
msgid "No courses found"
|
||||
msgstr "Inga kurser hittades"
|
||||
|
||||
#: frontend/src/pages/Programs.vue:83
|
||||
#: frontend/src/pages/Programs.vue:81
|
||||
msgid "No courses in this program"
|
||||
msgstr "Inga kurser i detta program"
|
||||
|
||||
@@ -3359,7 +3360,7 @@ msgstr "Inga jobb utannonserade"
|
||||
msgid "No live classes scheduled"
|
||||
msgstr "Inga live lektioner schemalagda"
|
||||
|
||||
#: frontend/src/pages/Programs.vue:93
|
||||
#: frontend/src/pages/Programs.vue:91
|
||||
msgid "No programs found"
|
||||
msgstr "Inga program hittades"
|
||||
|
||||
@@ -3375,7 +3376,7 @@ msgstr "Inga lediga tider för detta datum."
|
||||
msgid "No submissions"
|
||||
msgstr "Inga inlämningar"
|
||||
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:39
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:41
|
||||
msgid "No upcoming evaluations."
|
||||
msgstr "Inga kommande utvärderingar."
|
||||
|
||||
@@ -3484,7 +3485,7 @@ msgstr "Endast kurser för vilka självinlärning är inaktiverat kan läggas ti
|
||||
msgid "Only files of type {0} will be accepted."
|
||||
msgstr "Endast filer av typ {0} kommer att accepteras."
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:529
|
||||
#: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:533
|
||||
msgid "Only image file is allowed."
|
||||
msgstr "Endast bildfiler är tillåtna."
|
||||
|
||||
@@ -3764,7 +3765,7 @@ msgstr "Kontrollera din E-post för verifiering"
|
||||
msgid "Please click on the following button to set your new password"
|
||||
msgstr "Klicka på följande knapp för att ange ditt nya lösenord"
|
||||
|
||||
#: lms/lms/utils.py:1848 lms/lms/utils.py:1852
|
||||
#: lms/lms/utils.py:1887 lms/lms/utils.py:1891
|
||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||
msgstr "Slutför tidigare kurser i program för att anmäla dig till denna kurs."
|
||||
|
||||
@@ -3825,7 +3826,7 @@ msgstr "Logga in för att komma åt frågesport."
|
||||
msgid "Please login to access this page."
|
||||
msgstr "Logga in för att komma till denna sida."
|
||||
|
||||
#: lms/lms/api.py:193
|
||||
#: lms/lms/api.py:203
|
||||
msgid "Please login to continue with payment."
|
||||
msgstr "Logga in för att fortsätta med betalning."
|
||||
|
||||
@@ -4018,8 +4019,8 @@ msgstr "Program Medlemmar"
|
||||
#. Label of the progress (Float) field in DocType 'LMS Enrollment'
|
||||
#. Label of the progress (Int) field in DocType 'LMS Program Member'
|
||||
#: frontend/src/components/BatchStudents.vue:53
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:32
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:64
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:35
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:63
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
msgid "Progress"
|
||||
@@ -4391,7 +4392,7 @@ msgid "Schedule"
|
||||
msgstr "Schema"
|
||||
|
||||
#: frontend/src/components/Modals/EvaluationModal.vue:5
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:4
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:8
|
||||
msgid "Schedule Evaluation"
|
||||
msgstr "Schemalägg Utvärdering"
|
||||
|
||||
@@ -4790,13 +4791,13 @@ msgstr "Student {0} har redan lagts till denna grupp."
|
||||
#. Label of the students (Table) field in DocType 'LMS Batch'
|
||||
#. Label of the show_students (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/components/BatchStudents.vue:18
|
||||
#: frontend/src/components/BatchStudents.vue:84
|
||||
#: frontend/src/components/BatchStudents.vue:89
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Students"
|
||||
msgstr "Studenter"
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:310
|
||||
#: frontend/src/components/BatchStudents.vue:302
|
||||
msgid "Students deleted successfully"
|
||||
msgstr "Studenter borttagna"
|
||||
|
||||
@@ -4854,8 +4855,7 @@ msgstr "Inskickad {0}"
|
||||
#: frontend/src/components/Assignment.vue:316
|
||||
#: frontend/src/components/BatchCourses.vue:150
|
||||
#: frontend/src/components/BatchOverlay.vue:135
|
||||
#: frontend/src/components/BatchStudents.vue:310
|
||||
#: frontend/src/components/BatchStudents.vue:409
|
||||
#: frontend/src/components/BatchStudents.vue:302
|
||||
#: frontend/src/components/CourseCardOverlay.vue:165
|
||||
#: frontend/src/components/Modals/AnnouncementModal.vue:99
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:73
|
||||
@@ -4889,7 +4889,7 @@ msgstr "Översikt"
|
||||
msgid "Sunday"
|
||||
msgstr "Söndag"
|
||||
|
||||
#: lms/lms/api.py:954
|
||||
#: lms/lms/api.py:964
|
||||
msgid "Suspicious pattern found in {0}: {1}"
|
||||
msgstr "Misstänkt mönster hittat i {0}: {1}"
|
||||
|
||||
@@ -5004,7 +5004,7 @@ msgstr "Text"
|
||||
msgid "Thanks and Regards"
|
||||
msgstr "Tack och Hälsningar"
|
||||
|
||||
#: lms/lms/utils.py:1755
|
||||
#: lms/lms/utils.py:1794
|
||||
msgid "The batch is full. Please contact the Administrator."
|
||||
msgstr "Gruppen är full. Kontakta administratör."
|
||||
|
||||
@@ -5040,7 +5040,7 @@ msgstr "Det finns inga kapitel i denna kurs. Skapa och hantera kapitel härifrå
|
||||
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr "Det finns inga kurser tillgängliga just nu. Håll utkik, färska inlärningsupplevelser är på väg snart!"
|
||||
|
||||
#: frontend/src/pages/Programs.vue:97
|
||||
#: frontend/src/pages/Programs.vue:95
|
||||
msgid "There are no programs available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr "Det finns inga program tillgängliga för tillfället. Håll utkik, nya inlärningsupplevelser är på väg snart!"
|
||||
|
||||
@@ -5048,7 +5048,7 @@ msgstr "Det finns inga program tillgängliga för tillfället. Håll utkik, nya
|
||||
msgid "There are no seats available in this batch."
|
||||
msgstr "Det finns inga platser tillgängliga i denna grupp."
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:182
|
||||
#: frontend/src/components/BatchStudents.vue:177
|
||||
msgid "There are no students in this batch."
|
||||
msgstr "Det finns inga studenter i denna grupp."
|
||||
|
||||
@@ -5074,7 +5074,7 @@ msgstr "Det har skett uppdatering av din inlämning. Du har fått resultat av {0
|
||||
msgid "These customisations will work on the main batch page."
|
||||
msgstr "Dessa anpassningar kommer att fungera på huvudgrupp sida."
|
||||
|
||||
#: frontend/src/pages/Badge.vue:10
|
||||
#: frontend/src/pages/Badge.vue:14
|
||||
msgid "This badge has been awarded to {0} on {1}."
|
||||
msgstr "Detta emblem är tilldelad {0} {1}."
|
||||
|
||||
@@ -5091,7 +5091,7 @@ msgstr "Denna klass har avslutats"
|
||||
msgid "This course has:"
|
||||
msgstr "Denna kurs har:"
|
||||
|
||||
#: lms/lms/utils.py:1606
|
||||
#: lms/lms/utils.py:1645
|
||||
msgid "This course is free."
|
||||
msgstr "Denna kurs är gratis."
|
||||
|
||||
@@ -5197,7 +5197,7 @@ msgstr "Tidpunkter:"
|
||||
#: frontend/src/pages/AssignmentForm.vue:32
|
||||
#: frontend/src/pages/Assignments.vue:152 frontend/src/pages/BatchForm.vue:20
|
||||
#: frontend/src/pages/CourseForm.vue:32 frontend/src/pages/JobCreation.vue:20
|
||||
#: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:118
|
||||
#: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:116
|
||||
#: 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
|
||||
@@ -5235,7 +5235,7 @@ msgstr "Till"
|
||||
msgid "To Date"
|
||||
msgstr "Till Datum"
|
||||
|
||||
#: lms/lms/utils.py:1617
|
||||
#: lms/lms/utils.py:1656
|
||||
msgid "To join this batch, please contact the Administrator."
|
||||
msgstr "För att gå med i denna grupp, kontakta Administratör."
|
||||
|
||||
@@ -5363,7 +5363,7 @@ msgstr "Kommande"
|
||||
msgid "Upcoming Batches"
|
||||
msgstr "Kommande grupper"
|
||||
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:7
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:5
|
||||
#: lms/templates/upcoming_evals.html:3
|
||||
msgid "Upcoming Evaluations"
|
||||
msgstr "Kommande utvärderingar"
|
||||
@@ -5561,11 +5561,11 @@ msgstr "Skriv ditt svar här"
|
||||
msgid "You already have an evaluation on {0} at {1} for the course {2}."
|
||||
msgstr "Du har redan utvärdering {0} kl. {1} för kurs {2}."
|
||||
|
||||
#: lms/lms/api.py:217
|
||||
#: lms/lms/api.py:227
|
||||
msgid "You are already enrolled for this batch."
|
||||
msgstr "Du är redan inskriven för denna grupp."
|
||||
|
||||
#: lms/lms/api.py:209
|
||||
#: lms/lms/api.py:219
|
||||
msgid "You are already enrolled for this course."
|
||||
msgstr "Du är redan inskriven på denna kurs."
|
||||
|
||||
@@ -5741,6 +5741,14 @@ msgstr "Din inlämning är sparad. Lärare kommer att granska och betygsätta de
|
||||
msgid "Zoom Settings"
|
||||
msgstr "Zoom Inställningar"
|
||||
|
||||
#: frontend/src/components/StudentHeatmap.vue:6
|
||||
msgid "activities"
|
||||
msgstr "aktiviteter"
|
||||
|
||||
#: frontend/src/components/StudentHeatmap.vue:6
|
||||
msgid "activity"
|
||||
msgstr "aktivitet"
|
||||
|
||||
#: lms/templates/emails/mentor_request_creation_email.html:5
|
||||
msgid "cancel your application"
|
||||
msgstr "avbryt din ansökan"
|
||||
@@ -5757,6 +5765,10 @@ msgstr "korrekta svar"
|
||||
msgid "has been"
|
||||
msgstr "har varit"
|
||||
|
||||
#: frontend/src/components/StudentHeatmap.vue:8
|
||||
msgid "in the last"
|
||||
msgstr "i sista"
|
||||
|
||||
#: frontend/src/pages/ProfileCertificates.vue:17
|
||||
msgid "issued on"
|
||||
msgstr "utfärdad"
|
||||
@@ -5765,7 +5777,11 @@ msgstr "utfärdad"
|
||||
msgid "jane@example.com"
|
||||
msgstr "användare@bolag"
|
||||
|
||||
#: frontend/src/pages/Programs.vue:32
|
||||
#: frontend/src/pages/Programs.vue:31
|
||||
msgid "member"
|
||||
msgstr "medlem"
|
||||
|
||||
#: frontend/src/pages/Programs.vue:31
|
||||
msgid "members"
|
||||
msgstr "medlemmar"
|
||||
|
||||
@@ -5793,11 +5809,15 @@ msgstr "Bedömningar"
|
||||
msgid "stars"
|
||||
msgstr "stjärnor"
|
||||
|
||||
#: frontend/src/components/StudentHeatmap.vue:10
|
||||
msgid "weeks"
|
||||
msgstr "veckor"
|
||||
|
||||
#: lms/templates/emails/mentor_request_creation_email.html:5
|
||||
msgid "you can"
|
||||
msgstr "du kan"
|
||||
|
||||
#: lms/lms/api.py:751 lms/lms/api.py:759
|
||||
#: lms/lms/api.py:761 lms/lms/api.py:769
|
||||
msgid "{0} Settings not found"
|
||||
msgstr "{0} Inställningar hittades inte"
|
||||
|
||||
|
||||
118
lms/locale/tr.po
118
lms/locale/tr.po
@@ -2,8 +2,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: frappe\n"
|
||||
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
||||
"POT-Creation-Date: 2025-01-03 16:04+0000\n"
|
||||
"PO-Revision-Date: 2025-01-07 04:09\n"
|
||||
"POT-Creation-Date: 2025-01-10 16:04+0000\n"
|
||||
"PO-Revision-Date: 2025-01-13 06:31\n"
|
||||
"Last-Translator: jannat@frappe.io\n"
|
||||
"Language-Team: Turkish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -22,7 +22,7 @@ msgstr ""
|
||||
msgid " Please evaluate and grade it."
|
||||
msgstr " Lütfen değerlendirin ve not verin."
|
||||
|
||||
#: frontend/src/pages/Programs.vue:41
|
||||
#: frontend/src/pages/Programs.vue:39
|
||||
#, python-format
|
||||
msgid "% completed"
|
||||
msgstr "% tamamlandı"
|
||||
@@ -75,6 +75,10 @@ msgstr ""
|
||||
msgid "About"
|
||||
msgstr "Hakkında"
|
||||
|
||||
#: frontend/src/pages/Batch.vue:93
|
||||
msgid "About this batch"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the verify_terms (Check) field in DocType 'User'
|
||||
#: lms/fixtures/custom_field.json
|
||||
msgid "Acceptance for Terms and/or Policies"
|
||||
@@ -101,7 +105,7 @@ msgstr "Aktif"
|
||||
|
||||
#: frontend/src/components/Assessments.vue:11
|
||||
#: frontend/src/components/BatchCourses.vue:11
|
||||
#: frontend/src/components/BatchStudents.vue:90
|
||||
#: frontend/src/components/BatchStudents.vue:95
|
||||
#: frontend/src/components/Categories.vue:26
|
||||
#: frontend/src/components/LiveClass.vue:11
|
||||
#: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30
|
||||
@@ -357,7 +361,7 @@ msgstr "Kayıt sırasında Kullanıcı Kategorisini Sor"
|
||||
#. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch'
|
||||
#. Label of the assessment (Table) field in DocType 'LMS Batch'
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:27
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:29
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:32
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11
|
||||
msgid "Assessment"
|
||||
msgstr "Değerlendirme"
|
||||
@@ -384,7 +388,7 @@ msgstr "Değerlendirme {0} bu gruba zaten eklendi."
|
||||
#. Label of the show_assessments (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/components/Assessments.vue:5
|
||||
#: frontend/src/components/BatchStudents.vue:46
|
||||
#: frontend/src/components/BatchStudents.vue:74
|
||||
#: frontend/src/components/BatchStudents.vue:79
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
#: lms/templates/assessments.html:3
|
||||
msgid "Assessments"
|
||||
@@ -995,7 +999,7 @@ msgid "Company Website"
|
||||
msgstr "Şirket Web Sitesi"
|
||||
|
||||
#. Option for the 'Status' (Select) field in DocType 'LMS Course Progress'
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:13
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:18
|
||||
#: lms/lms/doctype/lms_course_progress/lms_course_progress.json
|
||||
#: lms/lms/widgets/CourseCard.html:75 lms/templates/reviews.html:48
|
||||
msgid "Complete"
|
||||
@@ -1013,7 +1017,7 @@ msgstr "Kayıt İşlemini Tamamlayın"
|
||||
msgid "Completed"
|
||||
msgstr "Tamamlandı"
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:353
|
||||
#: frontend/src/components/BatchStudents.vue:345
|
||||
msgid "Completed by Students"
|
||||
msgstr ""
|
||||
|
||||
@@ -1289,8 +1293,8 @@ msgstr "Kurs {0} bu gruba zaten eklenmiştir."
|
||||
#: frontend/src/components/BatchCourses.vue:5
|
||||
#: frontend/src/components/BatchOverlay.vue:23
|
||||
#: frontend/src/components/BatchStudents.vue:32
|
||||
#: frontend/src/components/BatchStudents.vue:68
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:61
|
||||
#: frontend/src/components/BatchStudents.vue:70
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:60
|
||||
#: frontend/src/pages/BatchDetail.vue:19 frontend/src/pages/BatchDetail.vue:68
|
||||
#: frontend/src/pages/Courses.vue:8 frontend/src/pages/Statistics.vue:19
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
@@ -1317,7 +1321,7 @@ msgid "Cover Image"
|
||||
msgstr "Kapak Resmi"
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:9
|
||||
#: frontend/src/pages/Programs.vue:110
|
||||
#: frontend/src/pages/Programs.vue:108
|
||||
msgid "Create"
|
||||
msgstr "Oluştur"
|
||||
|
||||
@@ -1569,16 +1573,15 @@ msgstr "Bu soru için yinelenen seçenekler bulundu."
|
||||
#. Label of the duration (Data) field in DocType 'Cohort'
|
||||
#. Label of the duration (Data) field in DocType 'LMS Batch Timetable'
|
||||
#. Label of the duration (Int) field in DocType 'LMS Live Class'
|
||||
#. Label of the duration (Duration) field in DocType 'LMS Quiz'
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:62
|
||||
#: lms/lms/doctype/cohort/cohort.json
|
||||
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
msgid "Duration"
|
||||
msgstr "Süre"
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:63
|
||||
#. Label of the duration (Data) field in DocType 'LMS Quiz'
|
||||
#: frontend/src/pages/QuizForm.vue:63 lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
msgid "Duration (in minutes)"
|
||||
msgstr "Süre (dk)"
|
||||
|
||||
@@ -1600,7 +1603,7 @@ msgstr "E-Posta"
|
||||
#: frontend/src/components/CourseCardOverlay.vue:86
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:9
|
||||
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:65
|
||||
#: frontend/src/pages/Profile.vue:32 frontend/src/pages/Programs.vue:55
|
||||
#: frontend/src/pages/Profile.vue:32 frontend/src/pages/Programs.vue:53
|
||||
msgid "Edit"
|
||||
msgstr "Düzenle"
|
||||
|
||||
@@ -1650,10 +1653,6 @@ msgstr "E-posta Gönderildi"
|
||||
msgid "Email Templates"
|
||||
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'
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Emails"
|
||||
@@ -1752,7 +1751,7 @@ msgstr "Sonraki Eğitim Grubu için Kayıt Onayı"
|
||||
msgid "Enrollment Count"
|
||||
msgstr "Kayıt Sayısı"
|
||||
|
||||
#: lms/lms/utils.py:1726
|
||||
#: lms/lms/utils.py:1765
|
||||
msgid "Enrollment Failed"
|
||||
msgstr "Kayıt Başarısız"
|
||||
|
||||
@@ -3051,6 +3050,7 @@ msgid "Member Email"
|
||||
msgstr "Üye E-postası"
|
||||
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Assignment Submission'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Badge Assignment'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Certificate'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Certificate
|
||||
#. Evaluation'
|
||||
@@ -3060,6 +3060,7 @@ msgstr "Üye E-postası"
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Mentor Request'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Quiz Submission'
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
@@ -3189,11 +3190,11 @@ msgstr "Moderatör"
|
||||
msgid "Modified By"
|
||||
msgstr "Değiştiren"
|
||||
|
||||
#: lms/lms/api.py:201
|
||||
#: lms/lms/api.py:211
|
||||
msgid "Module Name is incorrect or does not exist."
|
||||
msgstr "Modül Adı yanlış veya mevcut değil."
|
||||
|
||||
#: lms/lms/api.py:197
|
||||
#: lms/lms/api.py:207
|
||||
msgid "Module is incorrect."
|
||||
msgstr "Modül hatalı."
|
||||
|
||||
@@ -3252,7 +3253,7 @@ msgstr "Yeni İş"
|
||||
msgid "New Job Applicant"
|
||||
msgstr "Yeni İş Başvurusu"
|
||||
|
||||
#: frontend/src/pages/Programs.vue:107
|
||||
#: frontend/src/pages/Programs.vue:105
|
||||
msgid "New Program"
|
||||
msgstr ""
|
||||
|
||||
@@ -3339,7 +3340,7 @@ msgstr "Hiçbir kurs oluşturulmadı"
|
||||
msgid "No courses found"
|
||||
msgstr "Hiçbir kurs bulunamadı"
|
||||
|
||||
#: frontend/src/pages/Programs.vue:83
|
||||
#: frontend/src/pages/Programs.vue:81
|
||||
msgid "No courses in this program"
|
||||
msgstr ""
|
||||
|
||||
@@ -3359,7 +3360,7 @@ msgstr "Hiçbir iş ilanı yayınlanmadı"
|
||||
msgid "No live classes scheduled"
|
||||
msgstr "Planlanmış canlı ders yok"
|
||||
|
||||
#: frontend/src/pages/Programs.vue:93
|
||||
#: frontend/src/pages/Programs.vue:91
|
||||
msgid "No programs found"
|
||||
msgstr ""
|
||||
|
||||
@@ -3375,7 +3376,7 @@ msgstr "Bu tarih için boş yer bulunmamaktadır."
|
||||
msgid "No submissions"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:39
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:41
|
||||
msgid "No upcoming evaluations."
|
||||
msgstr "Yaklaşan değerlendirme yok."
|
||||
|
||||
@@ -3484,7 +3485,7 @@ msgstr ""
|
||||
msgid "Only files of type {0} will be accepted."
|
||||
msgstr "Sadece {0} türündeki dosyalar kabul edilecektir."
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:529
|
||||
#: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:533
|
||||
msgid "Only image file is allowed."
|
||||
msgstr "Sadece resim dosyasına izin verilir."
|
||||
|
||||
@@ -3764,7 +3765,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"
|
||||
msgstr "Yeni şifrenizi belirlemek için lütfen aşağıdaki linke tıklayınız"
|
||||
|
||||
#: lms/lms/utils.py:1848 lms/lms/utils.py:1852
|
||||
#: lms/lms/utils.py:1887 lms/lms/utils.py:1891
|
||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||
msgstr ""
|
||||
|
||||
@@ -3825,7 +3826,7 @@ msgstr "Teste erişmek için lütfen giriş yapın."
|
||||
msgid "Please login to access this page."
|
||||
msgstr "Bu sayfaya erişebilmek için lütfen giriş yapın."
|
||||
|
||||
#: lms/lms/api.py:193
|
||||
#: lms/lms/api.py:203
|
||||
msgid "Please login to continue with payment."
|
||||
msgstr "Ödeme işlemine devam etmek için lütfen giriş yapın."
|
||||
|
||||
@@ -4018,8 +4019,8 @@ msgstr ""
|
||||
#. Label of the progress (Float) field in DocType 'LMS Enrollment'
|
||||
#. Label of the progress (Int) field in DocType 'LMS Program Member'
|
||||
#: frontend/src/components/BatchStudents.vue:53
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:32
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:64
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:35
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:63
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
msgid "Progress"
|
||||
@@ -4391,7 +4392,7 @@ msgid "Schedule"
|
||||
msgstr "Planla"
|
||||
|
||||
#: frontend/src/components/Modals/EvaluationModal.vue:5
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:4
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:8
|
||||
msgid "Schedule Evaluation"
|
||||
msgstr ""
|
||||
|
||||
@@ -4790,13 +4791,13 @@ msgstr "Öğrenci {0} zaten bu gruba eklendi."
|
||||
#. Label of the students (Table) field in DocType 'LMS Batch'
|
||||
#. Label of the show_students (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/components/BatchStudents.vue:18
|
||||
#: frontend/src/components/BatchStudents.vue:84
|
||||
#: frontend/src/components/BatchStudents.vue:89
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Students"
|
||||
msgstr "Öğrenciler"
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:310
|
||||
#: frontend/src/components/BatchStudents.vue:302
|
||||
msgid "Students deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -4854,8 +4855,7 @@ msgstr "Kaydedildi {0}"
|
||||
#: frontend/src/components/Assignment.vue:316
|
||||
#: frontend/src/components/BatchCourses.vue:150
|
||||
#: frontend/src/components/BatchOverlay.vue:135
|
||||
#: frontend/src/components/BatchStudents.vue:310
|
||||
#: frontend/src/components/BatchStudents.vue:409
|
||||
#: frontend/src/components/BatchStudents.vue:302
|
||||
#: frontend/src/components/CourseCardOverlay.vue:165
|
||||
#: frontend/src/components/Modals/AnnouncementModal.vue:99
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:73
|
||||
@@ -4889,7 +4889,7 @@ msgstr "Özet"
|
||||
msgid "Sunday"
|
||||
msgstr "Pazar"
|
||||
|
||||
#: lms/lms/api.py:954
|
||||
#: lms/lms/api.py:964
|
||||
msgid "Suspicious pattern found in {0}: {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -5004,7 +5004,7 @@ msgstr "Yazı"
|
||||
msgid "Thanks and Regards"
|
||||
msgstr "Teşekkürler ve Saygılar"
|
||||
|
||||
#: lms/lms/utils.py:1755
|
||||
#: lms/lms/utils.py:1794
|
||||
msgid "The batch is full. Please contact the Administrator."
|
||||
msgstr ""
|
||||
|
||||
@@ -5040,7 +5040,7 @@ msgstr "Bu kursta bölüm bulunmamaktadır. Bölümleri buradan oluşturun ve y
|
||||
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr "Şu anda mevcut toplu ders bulunmamaktadır. Gözünüzü dört açın, yeni öğrenme deneyimleri yakında yolda!"
|
||||
|
||||
#: frontend/src/pages/Programs.vue:97
|
||||
#: frontend/src/pages/Programs.vue:95
|
||||
msgid "There are no programs available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr ""
|
||||
|
||||
@@ -5048,7 +5048,7 @@ msgstr ""
|
||||
msgid "There are no seats available in this batch."
|
||||
msgstr "Bu grupta boş yer bulunmamaktadır."
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:182
|
||||
#: frontend/src/components/BatchStudents.vue:177
|
||||
msgid "There are no students in this batch."
|
||||
msgstr "Bu grupta hiç öğrenci bulunmamaktadır."
|
||||
|
||||
@@ -5074,7 +5074,7 @@ msgstr ""
|
||||
msgid "These customisations will work on the main batch page."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Badge.vue:10
|
||||
#: frontend/src/pages/Badge.vue:14
|
||||
msgid "This badge has been awarded to {0} on {1}."
|
||||
msgstr ""
|
||||
|
||||
@@ -5091,7 +5091,7 @@ msgstr ""
|
||||
msgid "This course has:"
|
||||
msgstr "Bu kursta:"
|
||||
|
||||
#: lms/lms/utils.py:1606
|
||||
#: lms/lms/utils.py:1645
|
||||
msgid "This course is free."
|
||||
msgstr "Bu kurs ücretsizdir."
|
||||
|
||||
@@ -5197,7 +5197,7 @@ msgstr ""
|
||||
#: frontend/src/pages/AssignmentForm.vue:32
|
||||
#: frontend/src/pages/Assignments.vue:152 frontend/src/pages/BatchForm.vue:20
|
||||
#: frontend/src/pages/CourseForm.vue:32 frontend/src/pages/JobCreation.vue:20
|
||||
#: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:118
|
||||
#: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:116
|
||||
#: 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
|
||||
@@ -5235,7 +5235,7 @@ msgstr "Alıcı"
|
||||
msgid "To Date"
|
||||
msgstr "Bitiş Tarihi"
|
||||
|
||||
#: lms/lms/utils.py:1617
|
||||
#: lms/lms/utils.py:1656
|
||||
msgid "To join this batch, please contact the Administrator."
|
||||
msgstr ""
|
||||
|
||||
@@ -5363,7 +5363,7 @@ msgstr "Yaklaşanlar"
|
||||
msgid "Upcoming Batches"
|
||||
msgstr "Yaklaşan Sınıflar"
|
||||
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:7
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:5
|
||||
#: lms/templates/upcoming_evals.html:3
|
||||
msgid "Upcoming Evaluations"
|
||||
msgstr "Yaklaşan Değerlendirmeler"
|
||||
@@ -5561,11 +5561,11 @@ msgstr "Cevabınızı buraya yazın"
|
||||
msgid "You already have an evaluation on {0} at {1} for the course {2}."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:217
|
||||
#: lms/lms/api.py:227
|
||||
msgid "You are already enrolled for this batch."
|
||||
msgstr "Bu gruba zaten kayıtlısınız."
|
||||
|
||||
#: lms/lms/api.py:209
|
||||
#: lms/lms/api.py:219
|
||||
msgid "You are already enrolled for this course."
|
||||
msgstr "Bu kursa zaten kayıtlısınız."
|
||||
|
||||
@@ -5741,6 +5741,14 @@ msgstr ""
|
||||
msgid "Zoom Settings"
|
||||
msgstr "Zoom Ayarları"
|
||||
|
||||
#: frontend/src/components/StudentHeatmap.vue:6
|
||||
msgid "activities"
|
||||
msgstr "aktiviteler"
|
||||
|
||||
#: frontend/src/components/StudentHeatmap.vue:6
|
||||
msgid "activity"
|
||||
msgstr "aktivite"
|
||||
|
||||
#: lms/templates/emails/mentor_request_creation_email.html:5
|
||||
msgid "cancel your application"
|
||||
msgstr "başvurunuzu iptal edin"
|
||||
@@ -5757,6 +5765,10 @@ msgstr "doğru cevap"
|
||||
msgid "has been"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/StudentHeatmap.vue:8
|
||||
msgid "in the last"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProfileCertificates.vue:17
|
||||
msgid "issued on"
|
||||
msgstr "yayınlanma Tarihi"
|
||||
@@ -5765,7 +5777,11 @@ msgstr "yayınlanma Tarihi"
|
||||
msgid "jane@example.com"
|
||||
msgstr "eposta@ornek.com.tr"
|
||||
|
||||
#: frontend/src/pages/Programs.vue:32
|
||||
#: frontend/src/pages/Programs.vue:31
|
||||
msgid "member"
|
||||
msgstr "üyeler"
|
||||
|
||||
#: frontend/src/pages/Programs.vue:31
|
||||
msgid "members"
|
||||
msgstr "üyeler"
|
||||
|
||||
@@ -5793,11 +5809,15 @@ msgstr ""
|
||||
msgid "stars"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/StudentHeatmap.vue:10
|
||||
msgid "weeks"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/emails/mentor_request_creation_email.html:5
|
||||
msgid "you can"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:751 lms/lms/api.py:759
|
||||
#: lms/lms/api.py:761 lms/lms/api.py:769
|
||||
msgid "{0} Settings not found"
|
||||
msgstr "{0} Ayarları bulunamadı"
|
||||
|
||||
|
||||
118
lms/locale/zh.po
118
lms/locale/zh.po
@@ -2,8 +2,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: frappe\n"
|
||||
"Report-Msgid-Bugs-To: jannat@frappe.io\n"
|
||||
"POT-Creation-Date: 2025-01-03 16:04+0000\n"
|
||||
"PO-Revision-Date: 2025-01-07 04:09\n"
|
||||
"POT-Creation-Date: 2025-01-10 16:04+0000\n"
|
||||
"PO-Revision-Date: 2025-01-13 06:31\n"
|
||||
"Last-Translator: jannat@frappe.io\n"
|
||||
"Language-Team: Chinese Simplified\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -22,7 +22,7 @@ msgstr ""
|
||||
msgid " Please evaluate and grade it."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:41
|
||||
#: frontend/src/pages/Programs.vue:39
|
||||
#, python-format
|
||||
msgid "% completed"
|
||||
msgstr "% 已完成"
|
||||
@@ -75,6 +75,10 @@ msgstr ""
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batch.vue:93
|
||||
msgid "About this batch"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the verify_terms (Check) field in DocType 'User'
|
||||
#: lms/fixtures/custom_field.json
|
||||
msgid "Acceptance for Terms and/or Policies"
|
||||
@@ -101,7 +105,7 @@ msgstr "活动"
|
||||
|
||||
#: frontend/src/components/Assessments.vue:11
|
||||
#: frontend/src/components/BatchCourses.vue:11
|
||||
#: frontend/src/components/BatchStudents.vue:90
|
||||
#: frontend/src/components/BatchStudents.vue:95
|
||||
#: frontend/src/components/Categories.vue:26
|
||||
#: frontend/src/components/LiveClass.vue:11
|
||||
#: frontend/src/components/Members.vue:43 frontend/src/pages/ProgramForm.vue:30
|
||||
@@ -357,7 +361,7 @@ msgstr ""
|
||||
#. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch'
|
||||
#. Label of the assessment (Table) field in DocType 'LMS Batch'
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:27
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:29
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:32
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11
|
||||
msgid "Assessment"
|
||||
msgstr ""
|
||||
@@ -384,7 +388,7 @@ msgstr ""
|
||||
#. Label of the show_assessments (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/components/Assessments.vue:5
|
||||
#: frontend/src/components/BatchStudents.vue:46
|
||||
#: frontend/src/components/BatchStudents.vue:74
|
||||
#: frontend/src/components/BatchStudents.vue:79
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
#: lms/templates/assessments.html:3
|
||||
msgid "Assessments"
|
||||
@@ -995,7 +999,7 @@ msgid "Company Website"
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Status' (Select) field in DocType 'LMS Course Progress'
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:13
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:18
|
||||
#: lms/lms/doctype/lms_course_progress/lms_course_progress.json
|
||||
#: lms/lms/widgets/CourseCard.html:75 lms/templates/reviews.html:48
|
||||
msgid "Complete"
|
||||
@@ -1013,7 +1017,7 @@ msgstr ""
|
||||
msgid "Completed"
|
||||
msgstr "已完成"
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:353
|
||||
#: frontend/src/components/BatchStudents.vue:345
|
||||
msgid "Completed by Students"
|
||||
msgstr ""
|
||||
|
||||
@@ -1289,8 +1293,8 @@ msgstr ""
|
||||
#: frontend/src/components/BatchCourses.vue:5
|
||||
#: frontend/src/components/BatchOverlay.vue:23
|
||||
#: frontend/src/components/BatchStudents.vue:32
|
||||
#: frontend/src/components/BatchStudents.vue:68
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:61
|
||||
#: frontend/src/components/BatchStudents.vue:70
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:60
|
||||
#: frontend/src/pages/BatchDetail.vue:19 frontend/src/pages/BatchDetail.vue:68
|
||||
#: frontend/src/pages/Courses.vue:8 frontend/src/pages/Statistics.vue:19
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
@@ -1317,7 +1321,7 @@ msgid "Cover Image"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:9
|
||||
#: frontend/src/pages/Programs.vue:110
|
||||
#: frontend/src/pages/Programs.vue:108
|
||||
msgid "Create"
|
||||
msgstr "创建"
|
||||
|
||||
@@ -1569,16 +1573,15 @@ msgstr ""
|
||||
#. Label of the duration (Data) field in DocType 'Cohort'
|
||||
#. Label of the duration (Data) field in DocType 'LMS Batch Timetable'
|
||||
#. Label of the duration (Int) field in DocType 'LMS Live Class'
|
||||
#. Label of the duration (Duration) field in DocType 'LMS Quiz'
|
||||
#: frontend/src/components/Modals/LiveClassModal.vue:62
|
||||
#: lms/lms/doctype/cohort/cohort.json
|
||||
#: lms/lms/doctype/lms_batch_timetable/lms_batch_timetable.json
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
#: lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
msgid "Duration"
|
||||
msgstr "持续时间"
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:63
|
||||
#. Label of the duration (Data) field in DocType 'LMS Quiz'
|
||||
#: frontend/src/pages/QuizForm.vue:63 lms/lms/doctype/lms_quiz/lms_quiz.json
|
||||
msgid "Duration (in minutes)"
|
||||
msgstr ""
|
||||
|
||||
@@ -1600,7 +1603,7 @@ msgstr ""
|
||||
#: frontend/src/components/CourseCardOverlay.vue:86
|
||||
#: frontend/src/components/Modals/ChapterModal.vue:9
|
||||
#: frontend/src/pages/JobDetail.vue:31 frontend/src/pages/Lesson.vue:65
|
||||
#: frontend/src/pages/Profile.vue:32 frontend/src/pages/Programs.vue:55
|
||||
#: frontend/src/pages/Profile.vue:32 frontend/src/pages/Programs.vue:53
|
||||
msgid "Edit"
|
||||
msgstr "编辑"
|
||||
|
||||
@@ -1650,10 +1653,6 @@ msgstr "发送电子邮件"
|
||||
msgid "Email Templates"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:409
|
||||
msgid "Email copied to clipboard"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the show_emails (Check) field in DocType 'LMS Settings'
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Emails"
|
||||
@@ -1752,7 +1751,7 @@ msgstr ""
|
||||
msgid "Enrollment Count"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1726
|
||||
#: lms/lms/utils.py:1765
|
||||
msgid "Enrollment Failed"
|
||||
msgstr ""
|
||||
|
||||
@@ -3051,6 +3050,7 @@ msgid "Member Email"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Assignment Submission'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Badge Assignment'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Certificate'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Certificate
|
||||
#. Evaluation'
|
||||
@@ -3060,6 +3060,7 @@ msgstr ""
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Mentor Request'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Quiz Submission'
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
@@ -3189,11 +3190,11 @@ msgstr ""
|
||||
msgid "Modified By"
|
||||
msgstr "修改者"
|
||||
|
||||
#: lms/lms/api.py:201
|
||||
#: lms/lms/api.py:211
|
||||
msgid "Module Name is incorrect or does not exist."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:197
|
||||
#: lms/lms/api.py:207
|
||||
msgid "Module is incorrect."
|
||||
msgstr ""
|
||||
|
||||
@@ -3252,7 +3253,7 @@ msgstr ""
|
||||
msgid "New Job Applicant"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:107
|
||||
#: frontend/src/pages/Programs.vue:105
|
||||
msgid "New Program"
|
||||
msgstr ""
|
||||
|
||||
@@ -3339,7 +3340,7 @@ msgstr ""
|
||||
msgid "No courses found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:83
|
||||
#: frontend/src/pages/Programs.vue:81
|
||||
msgid "No courses in this program"
|
||||
msgstr ""
|
||||
|
||||
@@ -3359,7 +3360,7 @@ msgstr ""
|
||||
msgid "No live classes scheduled"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:93
|
||||
#: frontend/src/pages/Programs.vue:91
|
||||
msgid "No programs found"
|
||||
msgstr ""
|
||||
|
||||
@@ -3375,7 +3376,7 @@ msgstr ""
|
||||
msgid "No submissions"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:39
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:41
|
||||
msgid "No upcoming evaluations."
|
||||
msgstr ""
|
||||
|
||||
@@ -3484,7 +3485,7 @@ msgstr ""
|
||||
msgid "Only files of type {0} will be accepted."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:529
|
||||
#: frontend/src/pages/CourseForm.vue:498 frontend/src/utils/index.js:533
|
||||
msgid "Only image file is allowed."
|
||||
msgstr ""
|
||||
|
||||
@@ -3764,7 +3765,7 @@ msgstr "请检查您的电子邮件验证"
|
||||
msgid "Please click on the following button to set your new password"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1848 lms/lms/utils.py:1852
|
||||
#: lms/lms/utils.py:1887 lms/lms/utils.py:1891
|
||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||
msgstr ""
|
||||
|
||||
@@ -3825,7 +3826,7 @@ msgstr ""
|
||||
msgid "Please login to access this page."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:193
|
||||
#: lms/lms/api.py:203
|
||||
msgid "Please login to continue with payment."
|
||||
msgstr ""
|
||||
|
||||
@@ -4018,8 +4019,8 @@ msgstr ""
|
||||
#. Label of the progress (Float) field in DocType 'LMS Enrollment'
|
||||
#. Label of the progress (Int) field in DocType 'LMS Program Member'
|
||||
#: frontend/src/components/BatchStudents.vue:53
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:32
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:64
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:35
|
||||
#: frontend/src/components/Modals/BatchStudentProgress.vue:63
|
||||
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json
|
||||
#: lms/lms/doctype/lms_program_member/lms_program_member.json
|
||||
msgid "Progress"
|
||||
@@ -4391,7 +4392,7 @@ msgid "Schedule"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/EvaluationModal.vue:5
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:4
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:8
|
||||
msgid "Schedule Evaluation"
|
||||
msgstr ""
|
||||
|
||||
@@ -4790,13 +4791,13 @@ msgstr ""
|
||||
#. Label of the students (Table) field in DocType 'LMS Batch'
|
||||
#. Label of the show_students (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/components/BatchStudents.vue:18
|
||||
#: frontend/src/components/BatchStudents.vue:84
|
||||
#: frontend/src/components/BatchStudents.vue:89
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Students"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:310
|
||||
#: frontend/src/components/BatchStudents.vue:302
|
||||
msgid "Students deleted successfully"
|
||||
msgstr ""
|
||||
|
||||
@@ -4854,8 +4855,7 @@ msgstr ""
|
||||
#: frontend/src/components/Assignment.vue:316
|
||||
#: frontend/src/components/BatchCourses.vue:150
|
||||
#: frontend/src/components/BatchOverlay.vue:135
|
||||
#: frontend/src/components/BatchStudents.vue:310
|
||||
#: frontend/src/components/BatchStudents.vue:409
|
||||
#: frontend/src/components/BatchStudents.vue:302
|
||||
#: frontend/src/components/CourseCardOverlay.vue:165
|
||||
#: frontend/src/components/Modals/AnnouncementModal.vue:99
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:73
|
||||
@@ -4889,7 +4889,7 @@ msgstr "概要"
|
||||
msgid "Sunday"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:954
|
||||
#: lms/lms/api.py:964
|
||||
msgid "Suspicious pattern found in {0}: {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -5004,7 +5004,7 @@ msgstr ""
|
||||
msgid "Thanks and Regards"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1755
|
||||
#: lms/lms/utils.py:1794
|
||||
msgid "The batch is full. Please contact the Administrator."
|
||||
msgstr ""
|
||||
|
||||
@@ -5040,7 +5040,7 @@ msgstr ""
|
||||
msgid "There are no courses available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:97
|
||||
#: frontend/src/pages/Programs.vue:95
|
||||
msgid "There are no programs available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr ""
|
||||
|
||||
@@ -5048,7 +5048,7 @@ msgstr ""
|
||||
msgid "There are no seats available in this batch."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchStudents.vue:182
|
||||
#: frontend/src/components/BatchStudents.vue:177
|
||||
msgid "There are no students in this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -5074,7 +5074,7 @@ msgstr ""
|
||||
msgid "These customisations will work on the main batch page."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Badge.vue:10
|
||||
#: frontend/src/pages/Badge.vue:14
|
||||
msgid "This badge has been awarded to {0} on {1}."
|
||||
msgstr ""
|
||||
|
||||
@@ -5091,7 +5091,7 @@ msgstr ""
|
||||
msgid "This course has:"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1606
|
||||
#: lms/lms/utils.py:1645
|
||||
msgid "This course is free."
|
||||
msgstr ""
|
||||
|
||||
@@ -5197,7 +5197,7 @@ msgstr ""
|
||||
#: frontend/src/pages/AssignmentForm.vue:32
|
||||
#: frontend/src/pages/Assignments.vue:152 frontend/src/pages/BatchForm.vue:20
|
||||
#: frontend/src/pages/CourseForm.vue:32 frontend/src/pages/JobCreation.vue:20
|
||||
#: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:118
|
||||
#: frontend/src/pages/ProgramForm.vue:11 frontend/src/pages/Programs.vue:116
|
||||
#: 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
|
||||
@@ -5235,7 +5235,7 @@ msgstr "至"
|
||||
msgid "To Date"
|
||||
msgstr "至今"
|
||||
|
||||
#: lms/lms/utils.py:1617
|
||||
#: lms/lms/utils.py:1656
|
||||
msgid "To join this batch, please contact the Administrator."
|
||||
msgstr ""
|
||||
|
||||
@@ -5363,7 +5363,7 @@ msgstr ""
|
||||
msgid "Upcoming Batches"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:7
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:5
|
||||
#: lms/templates/upcoming_evals.html:3
|
||||
msgid "Upcoming Evaluations"
|
||||
msgstr ""
|
||||
@@ -5561,11 +5561,11 @@ msgstr ""
|
||||
msgid "You already have an evaluation on {0} at {1} for the course {2}."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:217
|
||||
#: lms/lms/api.py:227
|
||||
msgid "You are already enrolled for this batch."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:209
|
||||
#: lms/lms/api.py:219
|
||||
msgid "You are already enrolled for this course."
|
||||
msgstr ""
|
||||
|
||||
@@ -5741,6 +5741,14 @@ msgstr ""
|
||||
msgid "Zoom Settings"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/StudentHeatmap.vue:6
|
||||
msgid "activities"
|
||||
msgstr "活动"
|
||||
|
||||
#: frontend/src/components/StudentHeatmap.vue:6
|
||||
msgid "activity"
|
||||
msgstr "活动"
|
||||
|
||||
#: lms/templates/emails/mentor_request_creation_email.html:5
|
||||
msgid "cancel your application"
|
||||
msgstr ""
|
||||
@@ -5757,6 +5765,10 @@ msgstr ""
|
||||
msgid "has been"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/StudentHeatmap.vue:8
|
||||
msgid "in the last"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProfileCertificates.vue:17
|
||||
msgid "issued on"
|
||||
msgstr ""
|
||||
@@ -5765,7 +5777,11 @@ msgstr ""
|
||||
msgid "jane@example.com"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:32
|
||||
#: frontend/src/pages/Programs.vue:31
|
||||
msgid "member"
|
||||
msgstr "成员"
|
||||
|
||||
#: frontend/src/pages/Programs.vue:31
|
||||
msgid "members"
|
||||
msgstr "成员"
|
||||
|
||||
@@ -5793,11 +5809,15 @@ msgstr ""
|
||||
msgid "stars"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/StudentHeatmap.vue:10
|
||||
msgid "weeks"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/emails/mentor_request_creation_email.html:5
|
||||
msgid "you can"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:751 lms/lms/api.py:759
|
||||
#: lms/lms/api.py:761 lms/lms/api.py:769
|
||||
msgid "{0} Settings not found"
|
||||
msgstr ""
|
||||
|
||||
|
||||
Reference in New Issue
Block a user