Compare commits
44 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ed8baf3327 | ||
|
|
15dd4c4350 | ||
|
|
c986089e77 | ||
|
|
17dc77f061 | ||
|
|
189f353de0 | ||
|
|
845e7174f0 | ||
|
|
8c6e4ad3ee | ||
|
|
5dfddc890c | ||
|
|
1ebabc23d3 | ||
|
|
1bf8c1c763 | ||
|
|
c5a59b6370 | ||
|
|
4a5a777478 | ||
|
|
4fd7dcd5b2 | ||
|
|
55920d9e3f | ||
|
|
6d0c3c9cd8 | ||
|
|
7b20c3fe03 | ||
|
|
efbe35c836 | ||
|
|
e591cd74ab | ||
|
|
669b9c73be | ||
|
|
52e1dd6d33 | ||
|
|
828e195b81 | ||
|
|
145342bb72 | ||
|
|
58abfd004d | ||
|
|
9dc8322270 | ||
|
|
4f0a6a7d57 | ||
|
|
2fb8ae00b9 | ||
|
|
63da1e384d | ||
|
|
34685ebdb2 | ||
|
|
215ae941e1 | ||
|
|
9d1211e872 | ||
|
|
cd4f2b1039 | ||
|
|
9881b7b498 | ||
|
|
28a687f6bf | ||
|
|
bd43ed0e88 | ||
|
|
17b59ce4e5 | ||
|
|
7acc1864c8 | ||
|
|
5a6fdfcbc3 | ||
|
|
23d465d4a1 | ||
|
|
27ae014fcb | ||
|
|
b4c7338b76 | ||
|
|
0d1464c5e9 | ||
|
|
f4421d362c | ||
|
|
5c8378f2d4 | ||
|
|
8401e86acb |
@@ -2,7 +2,7 @@
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<link rel="icon" href="/favicon.png" />
|
||||
<link rel="icon" href="{{ favicon or '/assets/lms/frontend/favicon.png' }}" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Frappe Learning</title>
|
||||
<meta name="title" content="{{ meta.title }}" />
|
||||
|
||||
@@ -71,6 +71,7 @@
|
||||
</div>
|
||||
|
||||
<TextEditor
|
||||
v-if="renderEditor"
|
||||
class="mt-5"
|
||||
:content="newReply"
|
||||
:mentions="mentionUsers"
|
||||
@@ -94,7 +95,7 @@ import { createResource, TextEditor, Button, Dropdown } from 'frappe-ui'
|
||||
import { timeAgo } from '../utils'
|
||||
import UserAvatar from '@/components/UserAvatar.vue'
|
||||
import { ChevronLeft, MoreHorizontal } from 'lucide-vue-next'
|
||||
import { ref, inject, onMounted, computed } from 'vue'
|
||||
import { ref, inject, onMounted } from 'vue'
|
||||
import { createToast } from '../utils'
|
||||
|
||||
const showTopics = defineModel('showTopics')
|
||||
@@ -102,6 +103,8 @@ const newReply = ref('')
|
||||
const socket = inject('$socket')
|
||||
const user = inject('$user')
|
||||
const allUsers = inject('$allUsers')
|
||||
const mentionUsers = ref([])
|
||||
const renderEditor = ref(false)
|
||||
|
||||
const props = defineProps({
|
||||
topic: {
|
||||
@@ -124,6 +127,7 @@ onMounted(() => {
|
||||
socket.on('delete_message', (data) => {
|
||||
replies.reload()
|
||||
})
|
||||
fetchMentionUsers()
|
||||
})
|
||||
|
||||
const replies = createResource({
|
||||
@@ -150,15 +154,26 @@ const newReplyResource = createResource({
|
||||
},
|
||||
})
|
||||
|
||||
const mentionUsers = computed(() => {
|
||||
let users = Object.values(allUsers.data).map((user) => {
|
||||
return {
|
||||
value: user.name,
|
||||
label: user.full_name,
|
||||
}
|
||||
})
|
||||
return users
|
||||
})
|
||||
const fetchMentionUsers = () => {
|
||||
if (user.data?.is_student) {
|
||||
renderEditor.value = true
|
||||
} else {
|
||||
allUsers.reload(
|
||||
{},
|
||||
{
|
||||
onSuccess(data) {
|
||||
mentionUsers.value = Object.values(data).map((user) => {
|
||||
return {
|
||||
value: user.name,
|
||||
label: user.full_name,
|
||||
}
|
||||
})
|
||||
renderEditor.value = true
|
||||
},
|
||||
}
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
const postReply = () => {
|
||||
newReplyResource.submit(
|
||||
|
||||
@@ -1,71 +1,41 @@
|
||||
<template>
|
||||
<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"
|
||||
class="w-12 h-12 rounded-lg object-contain mr-4"
|
||||
:alt="job.company_name"
|
||||
/>
|
||||
<div>
|
||||
<div class="font-medium mb-1">
|
||||
<div class="flex space-x-4 border rounded-md p-2">
|
||||
<Avatar :image="job.company_logo" :label="job.job_title" size="2xl" />
|
||||
<div class="flex flex-col space-y-2 flex-1">
|
||||
<div class="flex items-center justify-between">
|
||||
<span class="font-semibold">
|
||||
{{ job.job_title }}
|
||||
</div>
|
||||
<div class="text-gray-700">
|
||||
{{ job.company_name }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="flex justify-end w-1/5 text-gray-700">
|
||||
{{ job.location.replace(',', '').split(' ')[0] }}
|
||||
</div>
|
||||
<div
|
||||
class="flex justify-end w-1/5 text-gray-700 text-right hidden md:block"
|
||||
>
|
||||
{{ job.type }}
|
||||
</div>
|
||||
<div class="flex justify-end w-1/5 text-sm text-gray-700 text-right">
|
||||
{{ dayjs(job.creation).format('DD MMM YYYY') }}
|
||||
</div>
|
||||
</div>
|
||||
<!-- <div class="flex flex-col shadow rounded-md p-4 h-full">
|
||||
<div class="flex justify-between">
|
||||
<div>
|
||||
<div class="text-xl font-semibold mb-2">
|
||||
{{ job.job_title }}
|
||||
</div>
|
||||
<div>
|
||||
{{ __("posted by") }}
|
||||
<span class="font-medium">
|
||||
{{ job.company_name }}
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
<img
|
||||
:src="job.company_logo"
|
||||
class="w-12 h-12 rounded-lg object-contain"
|
||||
/>
|
||||
</div>
|
||||
<div class="flex justify-between mt-8">
|
||||
<div class="flex items-center">
|
||||
<Badge :label="job.type" theme="green" size="lg" class="mr-4"/>
|
||||
<Badge :label="job.location" theme="gray" size="lg">
|
||||
<template #prefix>
|
||||
<MapPin class="h-4 w-4 stroke-1.5" />
|
||||
</template>
|
||||
</Badge>
|
||||
</div>
|
||||
<div>
|
||||
<span class="font-medium">
|
||||
{{ dayjs(job.creation).format('DD MMM YYYY') }}
|
||||
</span>
|
||||
</div>
|
||||
<div class="flex items-center space-x-2">
|
||||
<Building2 class="w-4 h-4 stroke-1.5 text-gray-600" />
|
||||
<span>
|
||||
{{ job.company_name }}
|
||||
</span>
|
||||
</div>
|
||||
<div class="flex items-center space-x-2">
|
||||
<MapPin class="w-4 h-4 stroke-1.5 text-gray-600" />
|
||||
<span>
|
||||
{{ job.location }}
|
||||
</span>
|
||||
</div>
|
||||
<div class="flex items-center space-x-2">
|
||||
<Shapes class="w-4 h-4 stroke-1.5 text-gray-600" />
|
||||
<span>
|
||||
{{ job.type }}
|
||||
</span>
|
||||
</div>
|
||||
<div class="flex items-center space-x-2">
|
||||
<Calendar class="w-4 h-4 stroke-1.5 text-gray-600" />
|
||||
<span> {{ __('posted') }} {{ dayjs(job.creation).fromNow() }} </span>
|
||||
</div>
|
||||
</div>
|
||||
</div> -->
|
||||
</div>
|
||||
</template>
|
||||
<script setup>
|
||||
import { MapPin } from 'lucide-vue-next'
|
||||
import { Badge } from 'frappe-ui'
|
||||
import { Building2, Calendar, MapPin, Shapes } from 'lucide-vue-next'
|
||||
import { inject } from 'vue'
|
||||
import { Avatar } from 'frappe-ui'
|
||||
|
||||
const dayjs = inject('$dayjs')
|
||||
const props = defineProps({
|
||||
|
||||
@@ -17,12 +17,6 @@
|
||||
>
|
||||
<template #body-content>
|
||||
<div class="space-y-4">
|
||||
<FormControl
|
||||
type="select"
|
||||
v-model="details.course"
|
||||
:label="__('Course')"
|
||||
:options="getCourses()"
|
||||
/>
|
||||
<Link
|
||||
v-model="details.evaluator"
|
||||
:label="__('Evaluator')"
|
||||
@@ -38,6 +32,12 @@
|
||||
v-model="details.expiry_date"
|
||||
:label="__('Expiry Date')"
|
||||
/>
|
||||
<FormControl
|
||||
type="select"
|
||||
v-model="details.course"
|
||||
:label="__('Course')"
|
||||
:options="getCourses()"
|
||||
/>
|
||||
<Link
|
||||
v-model="details.template"
|
||||
:label="__('Template')"
|
||||
@@ -94,7 +94,7 @@ const createCertificate = createResource({
|
||||
template: details.template,
|
||||
published: details.published,
|
||||
course: values.course,
|
||||
batch: values.batch,
|
||||
batch_name: values.batch,
|
||||
member: values.member,
|
||||
evaluator: details.evaluator,
|
||||
},
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
import './index.css'
|
||||
|
||||
import { createApp } from 'vue'
|
||||
import router from './router'
|
||||
import App from './App.vue'
|
||||
@@ -8,15 +7,8 @@ import dayjs from '@/utils/dayjs'
|
||||
import { createDialog } from '@/utils/dialogs'
|
||||
import translationPlugin from './translation'
|
||||
import { usersStore } from './stores/user'
|
||||
import { sessionStore } from './stores/session'
|
||||
import { initSocket } from './socket'
|
||||
import {
|
||||
FrappeUI,
|
||||
setConfig,
|
||||
frappeRequest,
|
||||
resourcesPlugin,
|
||||
pageMetaPlugin,
|
||||
} from 'frappe-ui'
|
||||
import { FrappeUI, setConfig, frappeRequest, pageMetaPlugin } from 'frappe-ui'
|
||||
|
||||
let pinia = createPinia()
|
||||
let app = createApp(App)
|
||||
@@ -32,8 +24,6 @@ app.provide('$socket', initSocket())
|
||||
app.mount('#app')
|
||||
|
||||
const { userResource, allUsers } = usersStore()
|
||||
let { isLoggedIn } = sessionStore()
|
||||
|
||||
app.provide('$user', userResource)
|
||||
app.provide('$allUsers', allUsers)
|
||||
app.config.globalProperties.$user = userResource
|
||||
|
||||
@@ -19,42 +19,44 @@
|
||||
</router-link>
|
||||
</header>
|
||||
<div class="p-5 pb-10">
|
||||
<div class="flex items-center justify-between mb-5">
|
||||
<div
|
||||
class="flex flex-col lg:flex-row space-y-4 lg:space-y-0 lg:items-center justify-between mb-5"
|
||||
>
|
||||
<div class="text-lg font-semibold">
|
||||
{{ __('All Batches') }}
|
||||
</div>
|
||||
<div class="flex items-center space-x-2">
|
||||
<div
|
||||
class="flex flex-col space-y-2 lg:space-y-0 lg:flex-row lg:items-center lg:space-x-2"
|
||||
>
|
||||
<TabButtons
|
||||
v-if="user.data && user.data?.is_student"
|
||||
v-if="user.data"
|
||||
: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-model="currentDuration"
|
||||
:options="batchType"
|
||||
:placeholder="__('Type')"
|
||||
@change="updateBatches()"
|
||||
/>
|
||||
</div>
|
||||
<div class="w-44">
|
||||
<Select
|
||||
v-if="categories.length"
|
||||
v-model="currentCategory"
|
||||
:options="categories"
|
||||
:placeholder="__('Category')"
|
||||
@change="updateBatches()"
|
||||
<div class="grid grid-cols-2 gap-2">
|
||||
<FormControl
|
||||
v-model="title"
|
||||
:placeholder="__('Search by Title')"
|
||||
type="text"
|
||||
class="min-w-40 lg:min-w-0 lg:w-32 xl:w-40"
|
||||
@input="updateBatches()"
|
||||
/>
|
||||
<div class="min-w-40 lg:min-w-0 lg:w-32 xl:w-40">
|
||||
<Select
|
||||
v-if="categories.length"
|
||||
v-model="currentCategory"
|
||||
:options="categories"
|
||||
:placeholder="__('Category')"
|
||||
@change="updateBatches()"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div v-if="batches.data?.length" class="grid grid-cols-4 gap-5">
|
||||
<div
|
||||
v-if="batches.data?.length"
|
||||
class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4 gap-5"
|
||||
>
|
||||
<router-link
|
||||
v-for="batch in batches.data"
|
||||
:to="{ name: 'BatchDetail', params: { batchName: batch.name } }"
|
||||
@@ -63,11 +65,11 @@
|
||||
</router-link>
|
||||
</div>
|
||||
<div
|
||||
v-else
|
||||
v-else-if="!batches.list.loading"
|
||||
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">
|
||||
<BookOpen class="size-10 mx-auto stroke-1 text-gray-500" />
|
||||
<div class="text-lg font-medium mb-1">
|
||||
{{ __('No batches found') }}
|
||||
</div>
|
||||
<div class="leading-5 w-2/5 text-center">
|
||||
@@ -79,7 +81,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div
|
||||
v-if="!batches.loading && batches.hasNextPage"
|
||||
v-if="!batches.list.loading && batches.hasNextPage"
|
||||
class="flex justify-center mt-5"
|
||||
>
|
||||
<Button @click="batches.next()">
|
||||
@@ -99,6 +101,7 @@ import {
|
||||
} from 'frappe-ui'
|
||||
import { computed, inject, onMounted, ref, watch } from 'vue'
|
||||
import { BookOpen, Plus } from 'lucide-vue-next'
|
||||
import { updateDocumentTitle } from '@/utils'
|
||||
import BatchCard from '@/components/BatchCard.vue'
|
||||
|
||||
const user = inject('$user')
|
||||
@@ -109,8 +112,8 @@ const categories = ref([])
|
||||
const currentCategory = ref(null)
|
||||
const title = ref('')
|
||||
const filters = ref({})
|
||||
const currentDuration = ref(null)
|
||||
const currentTab = ref('All')
|
||||
const currentTab = ref(user.data?.is_student ? 'All' : 'Upcoming')
|
||||
const orderBy = ref('start_date')
|
||||
|
||||
onMounted(() => {
|
||||
setFiltersFromQuery()
|
||||
@@ -127,7 +130,6 @@ 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({
|
||||
@@ -151,51 +153,68 @@ const updateBatches = () => {
|
||||
updateFilters()
|
||||
batches.update({
|
||||
filters: filters.value,
|
||||
orderBy: orderBy.value,
|
||||
})
|
||||
batches.reload()
|
||||
}
|
||||
|
||||
const updateFilters = () => {
|
||||
updateCategoryFilter()
|
||||
updateTitleFilter()
|
||||
updateTabFilter()
|
||||
updateStudentFilter()
|
||||
setQueryParams()
|
||||
}
|
||||
|
||||
const updateCategoryFilter = () => {
|
||||
if (currentCategory.value) {
|
||||
filters.value['category'] = currentCategory.value
|
||||
} else {
|
||||
delete filters.value['category']
|
||||
}
|
||||
}
|
||||
|
||||
const updateTitleFilter = () => {
|
||||
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']
|
||||
const updateTabFilter = () => {
|
||||
orderBy.value = 'start_date'
|
||||
if (!user.data) {
|
||||
return
|
||||
}
|
||||
|
||||
if (currentTab.value == 'Enrolled' && user.data?.is_student) {
|
||||
filters.value['enrolled'] = 1
|
||||
} else {
|
||||
delete filters.value['start_date']
|
||||
delete filters.value['published']
|
||||
orderBy.value = 'start_date desc'
|
||||
} else if (user.data?.is_student) {
|
||||
delete filters.value['enrolled']
|
||||
} else {
|
||||
delete filters.value['start_date']
|
||||
delete filters.value['published']
|
||||
orderBy.value = 'start_date desc'
|
||||
if (currentTab.value == 'Upcoming') {
|
||||
filters.value['start_date'] = ['>=', dayjs().format('YYYY-MM-DD')]
|
||||
filters.value['published'] = 1
|
||||
orderBy.value = 'start_date'
|
||||
} else if (currentTab.value == 'Archived') {
|
||||
filters.value['start_date'] = ['<=', dayjs().format('YYYY-MM-DD')]
|
||||
} else if (currentTab.value == 'Unpublished') {
|
||||
filters.value['published'] = 0
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (!user.data || user.data?.is_student) {
|
||||
const updateStudentFilter = () => {
|
||||
if (!user.data || (user.data?.is_student && currentTab.value != 'Enrolled')) {
|
||||
filters.value['start_date'] = ['>=', dayjs().format('YYYY-MM-DD')]
|
||||
filters.value['published'] = 1
|
||||
}
|
||||
|
||||
setQueryParams()
|
||||
}
|
||||
|
||||
const setQueryParams = () => {
|
||||
@@ -203,7 +222,6 @@ const setQueryParams = () => {
|
||||
let filterKeys = {
|
||||
title: title.value,
|
||||
category: currentCategory.value,
|
||||
type: currentDuration.value,
|
||||
}
|
||||
|
||||
Object.keys(filterKeys).forEach((key) => {
|
||||
@@ -251,10 +269,14 @@ const batchTabs = computed(() => {
|
||||
{
|
||||
label: __('All'),
|
||||
},
|
||||
{
|
||||
label: __('Enrolled'),
|
||||
},
|
||||
]
|
||||
if (user.data?.is_student) {
|
||||
tabs.push({ label: __('Enrolled') })
|
||||
} else {
|
||||
tabs.push({ label: __('Upcoming') })
|
||||
tabs.push({ label: __('Archived') })
|
||||
tabs.push({ label: __('Unpublished') })
|
||||
}
|
||||
return tabs
|
||||
})
|
||||
|
||||
@@ -264,4 +286,13 @@ const breadcrumbs = computed(() => [
|
||||
route: { name: 'Batches' },
|
||||
},
|
||||
])
|
||||
|
||||
const pageMeta = computed(() => {
|
||||
return {
|
||||
title: 'Batches',
|
||||
description: 'All upcoming batches.',
|
||||
}
|
||||
})
|
||||
|
||||
updateDocumentTitle(pageMeta)
|
||||
</script>
|
||||
|
||||
@@ -1,93 +1,175 @@
|
||||
<template>
|
||||
<header
|
||||
class="sticky top-0 z-10 flex items-center justify-between border-b bg-white px-3 py-2.5 sm:px-5"
|
||||
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" />
|
||||
<div>
|
||||
<FormControl
|
||||
type="text"
|
||||
placeholder="Search"
|
||||
v-model="searchQuery"
|
||||
@input="participants.reload()"
|
||||
class="w-40"
|
||||
>
|
||||
<template #prefix>
|
||||
<Search class="w-4 stroke-1.5 text-gray-600" name="search" />
|
||||
</template>
|
||||
</FormControl>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4 m-5">
|
||||
<div class="p-5 lg:w-3/4 mx-auto">
|
||||
<div
|
||||
v-if="participants.data?.length"
|
||||
v-for="participant in participantsList"
|
||||
class="flex flex-col lg:flex-row lg:items-center space-y-4 lg:space-y-0 justify-between mb-5"
|
||||
>
|
||||
<router-link
|
||||
:to="{
|
||||
name: 'Profile',
|
||||
params: { username: participant.username },
|
||||
}"
|
||||
>
|
||||
<div class="flex shadow rounded-md h-full p-2">
|
||||
<UserAvatar :user="participant" size="3xl" class="mr-2" />
|
||||
<div>
|
||||
<router-link
|
||||
:to="{
|
||||
name: 'Profile',
|
||||
params: { username: participant.username },
|
||||
}"
|
||||
>
|
||||
<div class="text-lg font-semibold mb-2">
|
||||
<div class="text-lg font-semibold">
|
||||
{{ __('All Certified Participants') }}
|
||||
</div>
|
||||
<div class="grid grid-cols-2 gap-2">
|
||||
<FormControl
|
||||
v-model="nameFilter"
|
||||
:placeholder="__('Search by Name')"
|
||||
type="text"
|
||||
class="min-w-40 lg:min-w-0 lg:w-32 xl:w-40"
|
||||
@input="updateParticipants()"
|
||||
/>
|
||||
<div
|
||||
v-if="categories.data?.length"
|
||||
class="min-w-40 lg:min-w-0 lg:w-32 xl:w-40"
|
||||
>
|
||||
<Select
|
||||
v-model="currentCategory"
|
||||
:options="categories.data"
|
||||
:placeholder="__('Category')"
|
||||
@change="updateParticipants()"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div v-if="participants.data?.length">
|
||||
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-5">
|
||||
<router-link
|
||||
v-for="participant in participants.data"
|
||||
:to="{
|
||||
name: 'ProfileCertificates',
|
||||
params: { username: participant.username },
|
||||
}"
|
||||
>
|
||||
<div
|
||||
class="flex items-center space-x-2 border rounded-md hover:bg-gray-50 p-2"
|
||||
>
|
||||
<Avatar
|
||||
:image="participant.user_image"
|
||||
:label="participant.full_name"
|
||||
size="2xl"
|
||||
/>
|
||||
<div class="flex flex-col space-y-2">
|
||||
<div class="font-medium">
|
||||
{{ participant.full_name }}
|
||||
</div>
|
||||
</router-link>
|
||||
<div class="leading-5" v-for="course in participant.courses">
|
||||
{{ course }}
|
||||
<div
|
||||
v-if="participant.headline"
|
||||
class="headline text-sm text-gray-700"
|
||||
>
|
||||
{{ participant.headline }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</router-link>
|
||||
</router-link>
|
||||
</div>
|
||||
<div
|
||||
v-if="!participants.list.loading && participants.hasNextPage"
|
||||
class="flex justify-center mt-5"
|
||||
>
|
||||
<Button @click="participants.next()">
|
||||
{{ __('Load More') }}
|
||||
</Button>
|
||||
</div>
|
||||
</div>
|
||||
<div
|
||||
v-else-if="!participants.list.loading"
|
||||
class="flex flex-col items-center justify-center text-sm text-gray-600 italic mt-48"
|
||||
>
|
||||
<BookOpen class="size-10 mx-auto stroke-1 text-gray-500" />
|
||||
<div class="text-lg font-medium mb-1">
|
||||
{{ __('No participants found') }}
|
||||
</div>
|
||||
<div class="leading-5 w-2/5 text-center">
|
||||
{{ __('There are no participants matching this criteria.') }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
<script setup>
|
||||
import { Breadcrumbs, FormControl, createResource } from 'frappe-ui'
|
||||
import { ref, computed } from 'vue'
|
||||
import UserAvatar from '@/components/UserAvatar.vue'
|
||||
import { Search } from 'lucide-vue-next'
|
||||
import {
|
||||
Avatar,
|
||||
Breadcrumbs,
|
||||
Button,
|
||||
createListResource,
|
||||
FormControl,
|
||||
Select,
|
||||
} from 'frappe-ui'
|
||||
import { computed, onMounted, ref } from 'vue'
|
||||
import { updateDocumentTitle } from '@/utils'
|
||||
import { BookOpen } from 'lucide-vue-next'
|
||||
|
||||
const searchQuery = ref('')
|
||||
const currentCategory = ref('')
|
||||
const filters = ref({})
|
||||
const nameFilter = ref('')
|
||||
|
||||
const participants = createResource({
|
||||
onMounted(() => {
|
||||
updateParticipants()
|
||||
})
|
||||
|
||||
const participants = createListResource({
|
||||
doctype: 'LMS Certificate',
|
||||
url: 'lms.lms.api.get_certified_participants',
|
||||
method: 'GET',
|
||||
cache: 'certified-participants',
|
||||
auto: true,
|
||||
cache: ['certified_participants'],
|
||||
start: 0,
|
||||
pageLength: 30,
|
||||
})
|
||||
|
||||
const breadcrumbs = computed(() => {
|
||||
return [{ label: 'Certified Participants', to: '/certified-participants' }]
|
||||
const categories = createListResource({
|
||||
doctype: 'LMS Certificate',
|
||||
url: 'lms.lms.api.get_certification_categories',
|
||||
cache: ['certification_categories'],
|
||||
auto: true,
|
||||
transform(data) {
|
||||
data.unshift({ label: __(''), value: '' })
|
||||
return data
|
||||
},
|
||||
})
|
||||
|
||||
const updateParticipants = () => {
|
||||
updateFilters()
|
||||
participants.update({
|
||||
filters: filters.value,
|
||||
})
|
||||
participants.reload()
|
||||
}
|
||||
|
||||
const updateFilters = () => {
|
||||
if (currentCategory.value) {
|
||||
filters.value.category = currentCategory.value
|
||||
} else {
|
||||
delete filters.value.category
|
||||
}
|
||||
|
||||
if (nameFilter.value) {
|
||||
filters.value.member_name = ['like', `%${nameFilter.value}%`]
|
||||
} else {
|
||||
delete filters.value.member_name
|
||||
}
|
||||
}
|
||||
|
||||
const breadcrumbs = computed(() => [
|
||||
{
|
||||
label: __('Certified Participants'),
|
||||
route: { name: 'CertifiedParticipants' },
|
||||
},
|
||||
])
|
||||
|
||||
const pageMeta = computed(() => {
|
||||
return {
|
||||
title: 'Certified Participants',
|
||||
description: 'All participants that have been certified.',
|
||||
}
|
||||
})
|
||||
|
||||
const participantsList = computed(() => {
|
||||
if (searchQuery.value) {
|
||||
return participants.data.filter((participant) => {
|
||||
return participant.full_name
|
||||
.toLowerCase()
|
||||
.includes(searchQuery.value.toLowerCase())
|
||||
})
|
||||
}
|
||||
return participants.data
|
||||
})
|
||||
|
||||
updateDocumentTitle(pageMeta)
|
||||
</script>
|
||||
<style>
|
||||
.headline {
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 1;
|
||||
-webkit-box-orient: vertical;
|
||||
text-overflow: ellipsis;
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
}
|
||||
</style>
|
||||
|
||||
@@ -7,47 +7,63 @@
|
||||
class="h-7"
|
||||
:items="[{ label: __('Jobs'), route: { name: 'Jobs' } }]"
|
||||
/>
|
||||
<div class="flex space-x-2">
|
||||
<div class="w-40 md:w-44">
|
||||
<FormControl
|
||||
v-model="jobType"
|
||||
type="select"
|
||||
:options="jobTypes"
|
||||
:placeholder="__('Type')"
|
||||
/>
|
||||
</div>
|
||||
<div class="w-28 md:w-36">
|
||||
<FormControl type="text" placeholder="Search" v-model="searchQuery">
|
||||
<template #prefix>
|
||||
<Search class="w-4 h-4 stroke-1.5 text-gray-600" name="search" />
|
||||
</template>
|
||||
</FormControl>
|
||||
</div>
|
||||
<router-link
|
||||
v-if="user.data?.name"
|
||||
:to="{
|
||||
name: 'JobCreation',
|
||||
params: {
|
||||
jobName: 'new',
|
||||
},
|
||||
}"
|
||||
>
|
||||
<Button variant="solid">
|
||||
<template #prefix>
|
||||
<Plus class="h-4 w-4" />
|
||||
</template>
|
||||
{{ __('New Job') }}
|
||||
</Button>
|
||||
</router-link>
|
||||
</div>
|
||||
<router-link
|
||||
v-if="user.data?.name"
|
||||
:to="{
|
||||
name: 'JobCreation',
|
||||
params: {
|
||||
jobName: 'new',
|
||||
},
|
||||
}"
|
||||
>
|
||||
<Button variant="solid">
|
||||
<template #prefix>
|
||||
<Plus class="h-4 w-4" />
|
||||
</template>
|
||||
{{ __('New Job') }}
|
||||
</Button>
|
||||
</router-link>
|
||||
</header>
|
||||
<div v-if="jobsList?.length">
|
||||
<div>
|
||||
<div class="lg:w-3/4 mx-auto p-5">
|
||||
<div class="text-xl font-semibold mb-5">
|
||||
{{ __('Find the perfect job for you') }}
|
||||
<div
|
||||
class="flex flex-col lg:flex-row space-y-4 lg:space-y-0 lg:items-center justify-between mb-5"
|
||||
>
|
||||
<div class="text-xl font-semibold">
|
||||
{{ __('Find the perfect job for you') }}
|
||||
</div>
|
||||
<div class="grid grid-cols-2 gap-2">
|
||||
<FormControl
|
||||
type="text"
|
||||
:placeholder="__('Search')"
|
||||
v-model="searchQuery"
|
||||
class="min-w-40 lg:min-w-0 lg:w-32 xl:w-40"
|
||||
@input="updateJobs"
|
||||
>
|
||||
<template #prefix>
|
||||
<Search
|
||||
class="w-4 h-4 stroke-1.5 text-gray-600"
|
||||
name="search"
|
||||
/>
|
||||
</template>
|
||||
</FormControl>
|
||||
<FormControl
|
||||
v-model="jobType"
|
||||
type="select"
|
||||
:options="jobTypes"
|
||||
class="min-w-40 lg:min-w-0 lg:w-32 xl:w-40"
|
||||
:placeholder="__('Type')"
|
||||
@change="updateJobs"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<div v-for="job in jobsList" class="divide-y">
|
||||
|
||||
<div
|
||||
v-if="jobs.data?.length"
|
||||
class="grid grid-cols-1 lg:grid-cols-2 gap-5"
|
||||
>
|
||||
<router-link
|
||||
v-for="job in jobs.data"
|
||||
:to="{
|
||||
name: 'JobDetail',
|
||||
params: { job: job.name },
|
||||
@@ -57,15 +73,15 @@
|
||||
<JobCard :job="job" />
|
||||
</router-link>
|
||||
</div>
|
||||
<div v-else class="text-gray-700 italic p-5 w-fit mx-auto">
|
||||
{{ __('No jobs posted') }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div v-else class="text-gray-700 italic p-5 w-fit mx-auto">
|
||||
{{ __('No jobs posted') }}
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
<script setup>
|
||||
import { Button, Breadcrumbs, createResource, FormControl } from 'frappe-ui'
|
||||
import { Button, Breadcrumbs, createListResource, FormControl } from 'frappe-ui'
|
||||
import { Plus, Search } from 'lucide-vue-next'
|
||||
import { inject, computed, ref, onMounted } from 'vue'
|
||||
import JobCard from '@/components/JobCard.vue'
|
||||
@@ -74,43 +90,59 @@ import { updateDocumentTitle } from '@/utils'
|
||||
const user = inject('$user')
|
||||
const jobType = ref(null)
|
||||
const searchQuery = ref('')
|
||||
const filters = ref({})
|
||||
const orFilters = ref({})
|
||||
|
||||
onMounted(() => {
|
||||
let queries = new URLSearchParams(location.search)
|
||||
if (queries.has('type')) {
|
||||
jobType.value = queries.get('type')
|
||||
}
|
||||
updateJobs()
|
||||
})
|
||||
|
||||
const jobs = createResource({
|
||||
url: 'lms.lms.api.get_job_opportunities',
|
||||
cache: ['jobs'],
|
||||
auto: true,
|
||||
const jobs = createListResource({
|
||||
doctype: 'Job Opportunity',
|
||||
fields: [
|
||||
'name',
|
||||
'job_title',
|
||||
'company_name',
|
||||
'company_logo',
|
||||
'location',
|
||||
'type',
|
||||
'creation',
|
||||
],
|
||||
start: 0,
|
||||
pageLength: 20,
|
||||
cache: ['jobOpportunities'],
|
||||
})
|
||||
|
||||
const pageMeta = computed(() => {
|
||||
return {
|
||||
title: 'Jobs',
|
||||
description: 'An open job board for the community',
|
||||
const updateJobs = () => {
|
||||
updateFilters()
|
||||
jobs.update({
|
||||
filters: filters.value,
|
||||
orFilters: orFilters.value,
|
||||
})
|
||||
jobs.reload()
|
||||
}
|
||||
|
||||
const updateFilters = () => {
|
||||
if (jobType.value) {
|
||||
filters.value.type = jobType.value
|
||||
} else {
|
||||
delete filters.value.type
|
||||
}
|
||||
})
|
||||
|
||||
const jobsList = computed(() => {
|
||||
let jobData = jobs.data
|
||||
if (jobType.value && jobType.value != '') {
|
||||
jobData = jobData.filter((job) => job.type == jobType.value)
|
||||
}
|
||||
if (searchQuery.value) {
|
||||
let query = searchQuery.value.toLowerCase()
|
||||
jobData = jobData.filter(
|
||||
(job) =>
|
||||
job.job_title.toLowerCase().includes(query) ||
|
||||
job.company_name.toLowerCase().includes(query) ||
|
||||
job.location.toLowerCase().includes(query)
|
||||
)
|
||||
orFilters.value = {
|
||||
job_title: ['like', `%${searchQuery.value}%`],
|
||||
company_name: ['like', `%${searchQuery.value}%`],
|
||||
location: ['like', `%${searchQuery.value}%`],
|
||||
}
|
||||
} else {
|
||||
orFilters.value = {}
|
||||
}
|
||||
return jobData
|
||||
})
|
||||
}
|
||||
|
||||
const jobTypes = computed(() => {
|
||||
return [
|
||||
@@ -121,6 +153,12 @@ const jobTypes = computed(() => {
|
||||
{ label: __('Freelance'), value: 'Freelance' },
|
||||
]
|
||||
})
|
||||
const pageMeta = computed(() => {
|
||||
return {
|
||||
title: 'Jobs',
|
||||
description: 'An open job board for the community',
|
||||
}
|
||||
})
|
||||
|
||||
updateDocumentTitle(pageMeta)
|
||||
</script>
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
class="flex items-center py-2 justify-between"
|
||||
>
|
||||
<div class="flex items-center">
|
||||
<UserAvatar :user="allUsers.data[log.from_user]" class="mr-2" />
|
||||
<Avatar :image="log.user_image" :label="log.full_name" class="mr-2" />
|
||||
<div class="notification" v-html="log.subject"></div>
|
||||
</div>
|
||||
<div class="flex items-center space-x-2">
|
||||
@@ -57,6 +57,7 @@
|
||||
</template>
|
||||
<script setup>
|
||||
import {
|
||||
Avatar,
|
||||
createListResource,
|
||||
createResource,
|
||||
Breadcrumbs,
|
||||
@@ -66,14 +67,12 @@ import {
|
||||
Tooltip,
|
||||
} from 'frappe-ui'
|
||||
import { computed, inject, ref, onMounted } from 'vue'
|
||||
import UserAvatar from '@/components/UserAvatar.vue'
|
||||
import { useRouter } from 'vue-router'
|
||||
import { X } from 'lucide-vue-next'
|
||||
import { updateDocumentTitle } from '@/utils'
|
||||
|
||||
const user = inject('$user')
|
||||
const socket = inject('$socket')
|
||||
const allUsers = inject('$allUsers')
|
||||
const activeTab = ref('Unread')
|
||||
const router = useRouter()
|
||||
|
||||
@@ -93,24 +92,22 @@ const notifications = computed(() => {
|
||||
|
||||
const unReadNotifications = createListResource({
|
||||
doctype: 'Notification Log',
|
||||
fields: ['subject', 'from_user', 'link', 'read', 'name'],
|
||||
url: 'lms.lms.api.get_notifications',
|
||||
filters: {
|
||||
for_user: user.data?.name,
|
||||
read: 0,
|
||||
},
|
||||
orderBy: 'creation desc',
|
||||
auto: true,
|
||||
cache: 'Unread Notifications',
|
||||
})
|
||||
|
||||
const readNotifications = createListResource({
|
||||
doctype: 'Notification Log',
|
||||
fields: ['subject', 'from_user', 'link', 'read', 'name'],
|
||||
url: 'lms.lms.api.get_notifications',
|
||||
filters: {
|
||||
for_user: user.data?.name,
|
||||
read: 1,
|
||||
},
|
||||
orderBy: 'creation desc',
|
||||
auto: true,
|
||||
cache: 'Read Notifications',
|
||||
})
|
||||
|
||||
@@ -7,14 +7,14 @@
|
||||
<div
|
||||
v-for="certificate in certificates.data"
|
||||
:key="certificate.name"
|
||||
class="bg-white shadow rounded-lg p-3 cursor-pointer"
|
||||
class="flex flex-col bg-white shadow rounded-lg p-3 cursor-pointer hover:bg-gray-50"
|
||||
@click="openCertificate(certificate)"
|
||||
>
|
||||
<div class="font-medium leading-5">
|
||||
{{ certificate.course_title }}
|
||||
<div class="font-medium leading-5 mb-2">
|
||||
{{ certificate.course_title || certificate.batch_title }}
|
||||
</div>
|
||||
<div class="mt-2">
|
||||
<span class="text-xs text-gray-700"> {{ __('issued on') }}: </span>
|
||||
<div class="text-sm text-gray-700 font-medium mt-auto">
|
||||
<span> {{ __('Issued on') }}: </span>
|
||||
{{ dayjs(certificate.issue_date).format('DD MMM YYYY') }}
|
||||
</div>
|
||||
</div>
|
||||
@@ -22,8 +22,8 @@
|
||||
</div>
|
||||
</template>
|
||||
<script setup>
|
||||
import { createResource } from 'frappe-ui'
|
||||
import { inject } from 'vue'
|
||||
import { createListResource } from 'frappe-ui'
|
||||
import { inject, onMounted } from 'vue'
|
||||
|
||||
const dayjs = inject('$dayjs')
|
||||
const props = defineProps({
|
||||
@@ -33,12 +33,19 @@ const props = defineProps({
|
||||
},
|
||||
})
|
||||
|
||||
const certificates = createResource({
|
||||
url: 'lms.lms.api.get_certificates',
|
||||
params: {
|
||||
member: props.profile.data.name,
|
||||
onMounted(() => {
|
||||
if (props.profile.data?.name) {
|
||||
certificates.reload()
|
||||
}
|
||||
})
|
||||
|
||||
const certificates = createListResource({
|
||||
doctype: 'LMS Certificate',
|
||||
filters: {
|
||||
member: props.profile.data?.name,
|
||||
},
|
||||
auto: true,
|
||||
fields: ['name', 'course_title', 'batch_title', 'issue_date'],
|
||||
cache: ['certificates', props.profile.data?.name],
|
||||
})
|
||||
|
||||
const openCertificate = (certificate) => {
|
||||
|
||||
@@ -217,21 +217,13 @@ let router = createRouter({
|
||||
})
|
||||
|
||||
router.beforeEach(async (to, from, next) => {
|
||||
const { userResource, allUsers } = usersStore()
|
||||
const { userResource } = usersStore()
|
||||
let { isLoggedIn } = sessionStore()
|
||||
|
||||
try {
|
||||
if (isLoggedIn) {
|
||||
await userResource.promise
|
||||
}
|
||||
if (
|
||||
isLoggedIn &&
|
||||
(to.name == 'Lesson' ||
|
||||
to.name == 'Batch' ||
|
||||
to.name == 'Notifications')
|
||||
) {
|
||||
await allUsers.promise
|
||||
}
|
||||
} catch (error) {
|
||||
isLoggedIn = false
|
||||
}
|
||||
|
||||
@@ -5,7 +5,7 @@ import router from '@/router'
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
export const sessionStore = defineStore('lms-session', () => {
|
||||
let { userResource, allUsers } = usersStore()
|
||||
let { userResource } = usersStore()
|
||||
|
||||
function sessionUser() {
|
||||
let cookies = new URLSearchParams(document.cookie.split('; ').join('&'))
|
||||
@@ -17,9 +17,6 @@ export const sessionStore = defineStore('lms-session', () => {
|
||||
}
|
||||
|
||||
let user = ref(sessionUser())
|
||||
if (user.value) {
|
||||
allUsers.reload()
|
||||
}
|
||||
const isLoggedIn = computed(() => !!user.value)
|
||||
|
||||
const login = createResource({
|
||||
|
||||
@@ -1 +1 @@
|
||||
__version__ = "2.20.0"
|
||||
__version__ = "2.21.0"
|
||||
|
||||
@@ -4,6 +4,9 @@
|
||||
frappe.ui.form.on("Job Opportunity", {
|
||||
refresh: (frm) => {
|
||||
if (frm.doc.name)
|
||||
frm.add_web_link(`/job-openings/${frm.doc.name}`, "See on Website");
|
||||
frm.add_web_link(
|
||||
`/lms/job-openings/${frm.doc.name}`,
|
||||
"See on Website"
|
||||
);
|
||||
},
|
||||
});
|
||||
|
||||
@@ -2,7 +2,6 @@
|
||||
"actions": [],
|
||||
"allow_import": 1,
|
||||
"allow_rename": 1,
|
||||
"autoname": "format: JOB-{#####}",
|
||||
"creation": "2022-02-07 12:01:41.074418",
|
||||
"doctype": "DocType",
|
||||
"editable_grid": 1,
|
||||
@@ -117,11 +116,10 @@
|
||||
"index_web_pages_for_search": 1,
|
||||
"links": [],
|
||||
"make_attachments_public": 1,
|
||||
"modified": "2024-02-07 23:02:06.102120",
|
||||
"modified": "2025-01-17 12:38:57.134919",
|
||||
"modified_by": "Administrator",
|
||||
"module": "Job",
|
||||
"name": "Job Opportunity",
|
||||
"naming_rule": "Expression",
|
||||
"owner": "Administrator",
|
||||
"permissions": [
|
||||
{
|
||||
|
||||
@@ -6,8 +6,7 @@ from frappe import _
|
||||
from frappe.model.document import Document
|
||||
from frappe.utils import get_link_to_form, add_months, getdate
|
||||
from frappe.utils.user import get_system_managers
|
||||
|
||||
from lms.lms.utils import validate_image
|
||||
from lms.lms.utils import validate_image, generate_slug
|
||||
|
||||
|
||||
class JobOpportunity(Document):
|
||||
@@ -18,6 +17,10 @@ class JobOpportunity(Document):
|
||||
def validate_urls(self):
|
||||
frappe.utils.validate_url(self.company_website, True)
|
||||
|
||||
def autoname(self):
|
||||
if not self.name:
|
||||
self.name = generate_slug(f"{self.job_title}-${self.company_name}", "LMS Course")
|
||||
|
||||
|
||||
def update_job_openings():
|
||||
old_jobs = frappe.get_all(
|
||||
|
||||
@@ -361,34 +361,59 @@ def get_evaluator_details(evaluator):
|
||||
|
||||
|
||||
@frappe.whitelist(allow_guest=True)
|
||||
def get_certified_participants():
|
||||
LMSCertificate = DocType("LMS Certificate")
|
||||
participants = (
|
||||
frappe.qb.from_(LMSCertificate)
|
||||
.select(LMSCertificate.member)
|
||||
.distinct()
|
||||
.where(LMSCertificate.published == 1)
|
||||
.orderby(LMSCertificate.creation, order=frappe.qb.desc)
|
||||
.run(as_dict=1)
|
||||
def get_certified_participants(filters=None, start=0, page_length=30, search=None):
|
||||
or_filters = {}
|
||||
if not filters:
|
||||
filters = {}
|
||||
|
||||
filters.update({"published": 1})
|
||||
|
||||
category = filters.get("category")
|
||||
if category:
|
||||
del filters["category"]
|
||||
or_filters["course_title"] = ["like", f"%{category}%"]
|
||||
or_filters["batch_title"] = ["like", f"%{category}%"]
|
||||
|
||||
participants = frappe.get_all(
|
||||
"LMS Certificate",
|
||||
filters=filters,
|
||||
or_filters=or_filters,
|
||||
fields=["member"],
|
||||
group_by="member",
|
||||
order_by="creation desc",
|
||||
start=start,
|
||||
page_length=page_length,
|
||||
)
|
||||
|
||||
participant_details = []
|
||||
for participant in participants:
|
||||
details = frappe.db.get_value(
|
||||
"User",
|
||||
participant.member,
|
||||
["name", "full_name", "username", "user_image"],
|
||||
as_dict=True,
|
||||
["full_name", "user_image", "username", "country", "headline"],
|
||||
as_dict=1,
|
||||
)
|
||||
course_names = frappe.get_all(
|
||||
"LMS Certificate", {"member": participant.member}, pluck="course"
|
||||
)
|
||||
courses = []
|
||||
for course in course_names:
|
||||
courses.append(frappe.db.get_value("LMS Course", course, "title"))
|
||||
details["courses"] = courses
|
||||
participant_details.append(details)
|
||||
return participant_details
|
||||
participant.update(details)
|
||||
|
||||
return participants
|
||||
|
||||
|
||||
@frappe.whitelist()
|
||||
def get_certification_categories():
|
||||
categories = []
|
||||
docs = frappe.get_all(
|
||||
"LMS Certificate",
|
||||
filters={
|
||||
"published": 1,
|
||||
},
|
||||
fields=["course_title", "batch_title"],
|
||||
)
|
||||
|
||||
for doc in docs:
|
||||
category = doc.course_title if doc.course_title else doc.batch_title
|
||||
if category not in categories:
|
||||
categories.append(category)
|
||||
|
||||
return categories
|
||||
|
||||
|
||||
@frappe.whitelist()
|
||||
@@ -407,19 +432,9 @@ def get_assigned_badges(member):
|
||||
return assigned_badges
|
||||
|
||||
|
||||
@frappe.whitelist()
|
||||
def get_certificates(member):
|
||||
"""Get certificates for a member."""
|
||||
return frappe.get_all(
|
||||
"LMS Certificate",
|
||||
filters={"member": member},
|
||||
fields=["name", "course", "course_title", "issue_date", "template"],
|
||||
order_by="creation desc",
|
||||
)
|
||||
|
||||
|
||||
@frappe.whitelist()
|
||||
def get_all_users():
|
||||
frappe.only_for(["Moderator", "Course Creator", "Batch Evaluator"])
|
||||
users = frappe.get_all(
|
||||
"User",
|
||||
{
|
||||
@@ -1175,3 +1190,21 @@ def prepare_heatmap_data(start_date, number_of_days, date_count):
|
||||
def get_week_difference(start_date, current_date):
|
||||
diff_in_days = date_diff(current_date, start_date)
|
||||
return diff_in_days // 7
|
||||
|
||||
|
||||
@frappe.whitelist()
|
||||
def get_notifications(filters):
|
||||
notifications = frappe.get_all(
|
||||
"Notification Log",
|
||||
filters,
|
||||
["subject", "from_user", "link", "read", "name"],
|
||||
order_by="creation desc",
|
||||
)
|
||||
|
||||
for notification in notifications:
|
||||
from_user_details = frappe.db.get_value(
|
||||
"User", notification.from_user, ["full_name", "user_image"], as_dict=1
|
||||
)
|
||||
notification.update(from_user_details)
|
||||
|
||||
return notifications
|
||||
|
||||
@@ -72,16 +72,6 @@ class CourseLesson(Document):
|
||||
exercises = [value for name, value in macros if name == "Exercise"]
|
||||
return [frappe.get_doc("LMS Exercise", name) for name in exercises]
|
||||
|
||||
def get_progress(self):
|
||||
return frappe.db.get_value(
|
||||
"LMS Course Progress", {"lesson": self.name, "owner": frappe.session.user}, "status"
|
||||
)
|
||||
|
||||
def get_slugified_class(self):
|
||||
if self.get_progress():
|
||||
return ("").join([s for s in self.get_progress().lower().split()])
|
||||
return
|
||||
|
||||
|
||||
@frappe.whitelist()
|
||||
def save_progress(lesson, course):
|
||||
|
||||
@@ -72,9 +72,12 @@ class LMSAssignmentSubmission(Document):
|
||||
)
|
||||
|
||||
def validate_status(self):
|
||||
doc_before_save = self.get_doc_before_save()
|
||||
if doc_before_save.status != self.status or doc_before_save.comments != self.comments:
|
||||
self.trigger_update_notification()
|
||||
if not self.is_new():
|
||||
doc_before_save = self.get_doc_before_save()
|
||||
if (
|
||||
doc_before_save.status != self.status or doc_before_save.comments != self.comments
|
||||
):
|
||||
self.trigger_update_notification()
|
||||
|
||||
def trigger_update_notification(self):
|
||||
notification = frappe._dict(
|
||||
|
||||
@@ -48,7 +48,10 @@ frappe.ui.form.on("LMS Batch", {
|
||||
},
|
||||
|
||||
refresh: (frm) => {
|
||||
frm.add_web_link(`/batches/details/${frm.doc.name}`, "See on website");
|
||||
frm.add_web_link(
|
||||
`/lms/batches/details/${frm.doc.name}`,
|
||||
"See on website"
|
||||
);
|
||||
},
|
||||
});
|
||||
|
||||
|
||||
@@ -2,7 +2,6 @@
|
||||
"actions": [],
|
||||
"allow_import": 1,
|
||||
"allow_rename": 1,
|
||||
"autoname": "format: CLS-{#####}",
|
||||
"creation": "2022-11-09 16:14:05.876933",
|
||||
"default_view": "List",
|
||||
"doctype": "DocType",
|
||||
@@ -330,11 +329,10 @@
|
||||
],
|
||||
"index_web_pages_for_search": 1,
|
||||
"links": [],
|
||||
"modified": "2024-11-18 16:28:41.336928",
|
||||
"modified": "2025-01-17 10:23:10.580311",
|
||||
"modified_by": "Administrator",
|
||||
"module": "LMS",
|
||||
"name": "LMS Batch",
|
||||
"naming_rule": "Expression (old style)",
|
||||
"owner": "Administrator",
|
||||
"permissions": [
|
||||
{
|
||||
|
||||
@@ -16,6 +16,7 @@ from lms.lms.utils import (
|
||||
get_quiz_details,
|
||||
get_assignment_details,
|
||||
update_payment_record,
|
||||
generate_slug,
|
||||
)
|
||||
from frappe.email.doctype.email_template.email_template import get_email_template
|
||||
|
||||
@@ -36,6 +37,10 @@ class LMSBatch(Document):
|
||||
self.validate_evaluation_end_date()
|
||||
self.add_students_to_live_class()
|
||||
|
||||
def autoname(self):
|
||||
if not self.name:
|
||||
self.name = generate_slug(self.title, "LMS Batch")
|
||||
|
||||
def validate_batch_end_date(self):
|
||||
if self.end_date < self.start_date:
|
||||
frappe.throw(_("Batch end date cannot be before the batch start date"))
|
||||
|
||||
@@ -6,20 +6,21 @@
|
||||
"editable_grid": 1,
|
||||
"engine": "InnoDB",
|
||||
"field_order": [
|
||||
"course",
|
||||
"course_title",
|
||||
"member",
|
||||
"member_name",
|
||||
"column_break_vwbn",
|
||||
"issue_date",
|
||||
"template",
|
||||
"published",
|
||||
"section_break_scyf",
|
||||
"evaluator",
|
||||
"evaluator_name",
|
||||
"column_break_slaw",
|
||||
"column_break_vwbn",
|
||||
"issue_date",
|
||||
"expiry_date",
|
||||
"batch_name"
|
||||
"template",
|
||||
"published",
|
||||
"section_break_unwn",
|
||||
"course",
|
||||
"course_title",
|
||||
"column_break_ywee",
|
||||
"batch_name",
|
||||
"batch_title"
|
||||
],
|
||||
"fields": [
|
||||
{
|
||||
@@ -32,11 +33,9 @@
|
||||
{
|
||||
"fieldname": "course",
|
||||
"fieldtype": "Link",
|
||||
"in_list_view": 1,
|
||||
"in_standard_filter": 1,
|
||||
"label": "Course",
|
||||
"options": "LMS Course",
|
||||
"reqd": 1
|
||||
"options": "LMS Course"
|
||||
},
|
||||
{
|
||||
"fieldname": "expiry_date",
|
||||
@@ -46,7 +45,6 @@
|
||||
{
|
||||
"fieldname": "member",
|
||||
"fieldtype": "Link",
|
||||
"in_list_view": 1,
|
||||
"in_standard_filter": 1,
|
||||
"label": "Member",
|
||||
"options": "User",
|
||||
@@ -56,6 +54,8 @@
|
||||
"fetch_from": "member.full_name",
|
||||
"fieldname": "member_name",
|
||||
"fieldtype": "Data",
|
||||
"in_list_view": 1,
|
||||
"in_standard_filter": 1,
|
||||
"label": "Member Name",
|
||||
"read_only": 1
|
||||
},
|
||||
@@ -90,14 +90,6 @@
|
||||
"fieldname": "column_break_vwbn",
|
||||
"fieldtype": "Column Break"
|
||||
},
|
||||
{
|
||||
"fieldname": "section_break_scyf",
|
||||
"fieldtype": "Section Break"
|
||||
},
|
||||
{
|
||||
"fieldname": "column_break_slaw",
|
||||
"fieldtype": "Column Break"
|
||||
},
|
||||
{
|
||||
"fieldname": "evaluator",
|
||||
"fieldtype": "Link",
|
||||
@@ -108,13 +100,29 @@
|
||||
"fetch_from": "evaluator.full_name",
|
||||
"fieldname": "evaluator_name",
|
||||
"fieldtype": "Data",
|
||||
"in_list_view": 1,
|
||||
"label": "Evaluator Name",
|
||||
"read_only": 1
|
||||
},
|
||||
{
|
||||
"fieldname": "section_break_unwn",
|
||||
"fieldtype": "Section Break"
|
||||
},
|
||||
{
|
||||
"fieldname": "column_break_ywee",
|
||||
"fieldtype": "Column Break"
|
||||
},
|
||||
{
|
||||
"fetch_from": "batch_name.title",
|
||||
"fieldname": "batch_title",
|
||||
"fieldtype": "Data",
|
||||
"label": "Batch Title",
|
||||
"read_only": 1
|
||||
}
|
||||
],
|
||||
"index_web_pages_for_search": 1,
|
||||
"links": [],
|
||||
"modified": "2024-09-11 11:37:20.419956",
|
||||
"modified": "2025-01-17 11:57:02.859109",
|
||||
"modified_by": "Administrator",
|
||||
"module": "LMS",
|
||||
"name": "LMS Certificate",
|
||||
|
||||
@@ -7,12 +7,16 @@ from frappe.model.document import Document
|
||||
from frappe.utils import add_years, nowdate
|
||||
from lms.lms.utils import is_certified
|
||||
from frappe.email.doctype.email_template.email_template import get_email_template
|
||||
from frappe.model.naming import make_autoname
|
||||
|
||||
|
||||
class LMSCertificate(Document):
|
||||
def validate(self):
|
||||
self.validate_duplicate_certificate()
|
||||
|
||||
def autoname(self):
|
||||
self.name = make_autoname("hash", self.doctype)
|
||||
|
||||
def after_insert(self):
|
||||
if not frappe.flags.in_test:
|
||||
outgoing_email_account = frappe.get_cached_value(
|
||||
@@ -48,16 +52,46 @@ class LMSCertificate(Document):
|
||||
)
|
||||
|
||||
def validate_duplicate_certificate(self):
|
||||
certificates = frappe.get_all(
|
||||
"LMS Certificate",
|
||||
{"member": self.member, "course": self.course, "name": ["!=", self.name]},
|
||||
)
|
||||
if len(certificates):
|
||||
full_name = frappe.db.get_value("User", self.member, "full_name")
|
||||
course_name = frappe.db.get_value("LMS Course", self.course, "title")
|
||||
frappe.throw(
|
||||
_("{0} is already certified for the course {1}").format(full_name, course_name)
|
||||
self.validate_course_duplicates()
|
||||
self.validate_batch_duplicates()
|
||||
|
||||
def validate_course_duplicates(self):
|
||||
if self.course:
|
||||
course_duplicates = frappe.get_all(
|
||||
"LMS Certificate",
|
||||
filters={
|
||||
"member": self.member,
|
||||
"name": ["!=", self.name],
|
||||
"course": self.course,
|
||||
},
|
||||
fields=["name", "course", "course_title"],
|
||||
)
|
||||
if len(course_duplicates):
|
||||
full_name = frappe.db.get_value("User", self.member, "full_name")
|
||||
frappe.throw(
|
||||
_("{0} is already certified for the course {1}").format(
|
||||
full_name, course_duplicates[0].course_title
|
||||
)
|
||||
)
|
||||
|
||||
def validate_batch_duplicates(self):
|
||||
if self.batch_name:
|
||||
batch_duplicates = frappe.get_all(
|
||||
"LMS Certificate",
|
||||
filters={
|
||||
"member": self.member,
|
||||
"name": ["!=", self.name],
|
||||
"batch_name": self.batch_name,
|
||||
},
|
||||
fields=["name", "batch_name", "batch_title"],
|
||||
)
|
||||
if len(batch_duplicates):
|
||||
full_name = frappe.db.get_value("User", self.member, "full_name")
|
||||
frappe.throw(
|
||||
_("{0} is already certified for the batch {1}").format(
|
||||
full_name, batch_duplicates[0].batch_title
|
||||
)
|
||||
)
|
||||
|
||||
def on_update(self):
|
||||
frappe.share.add_docshare(
|
||||
|
||||
@@ -93,10 +93,7 @@ class LMSCourse(Document):
|
||||
|
||||
def autoname(self):
|
||||
if not self.name:
|
||||
title = self.title
|
||||
if self.title == "New Course":
|
||||
title = self.title + str(random.randint(0, 99))
|
||||
self.name = generate_slug(title, "LMS Course")
|
||||
self.name = generate_slug(self.title, "LMS Course")
|
||||
|
||||
def __repr__(self):
|
||||
return f"<Course#{self.name}>"
|
||||
|
||||
@@ -22,7 +22,8 @@
|
||||
"in_standard_filter": 1,
|
||||
"label": "Course",
|
||||
"options": "LMS Course",
|
||||
"read_only": 1
|
||||
"read_only": 1,
|
||||
"search_index": 1
|
||||
},
|
||||
{
|
||||
"fetch_from": "lesson.chapter",
|
||||
@@ -30,14 +31,16 @@
|
||||
"fieldtype": "Link",
|
||||
"label": "Chapter",
|
||||
"options": "Course Chapter",
|
||||
"read_only": 1
|
||||
"read_only": 1,
|
||||
"search_index": 1
|
||||
},
|
||||
{
|
||||
"fieldname": "lesson",
|
||||
"fieldtype": "Link",
|
||||
"in_list_view": 1,
|
||||
"label": "Lesson",
|
||||
"options": "Course Lesson"
|
||||
"options": "Course Lesson",
|
||||
"search_index": 1
|
||||
},
|
||||
{
|
||||
"fieldname": "status",
|
||||
@@ -45,7 +48,8 @@
|
||||
"in_list_view": 1,
|
||||
"in_standard_filter": 1,
|
||||
"label": "Status",
|
||||
"options": "Complete\nPartially Complete\nIncomplete"
|
||||
"options": "Complete\nPartially Complete\nIncomplete",
|
||||
"search_index": 1
|
||||
},
|
||||
{
|
||||
"fieldname": "column_break_3",
|
||||
@@ -55,7 +59,8 @@
|
||||
"fieldname": "member",
|
||||
"fieldtype": "Link",
|
||||
"label": "Member",
|
||||
"options": "User"
|
||||
"options": "User",
|
||||
"search_index": 1
|
||||
},
|
||||
{
|
||||
"fetch_from": "member.full_name",
|
||||
@@ -67,7 +72,7 @@
|
||||
],
|
||||
"index_web_pages_for_search": 1,
|
||||
"links": [],
|
||||
"modified": "2024-02-27 11:43:08.326886",
|
||||
"modified": "2025-01-17 15:54:34.040621",
|
||||
"modified_by": "Administrator",
|
||||
"module": "LMS",
|
||||
"name": "LMS Course Progress",
|
||||
|
||||
@@ -450,24 +450,6 @@ def get_signup_optin_checks():
|
||||
return (", ").join(links)
|
||||
|
||||
|
||||
def get_popular_courses():
|
||||
courses = frappe.get_all("LMS Course", {"published": 1, "upcoming": 0})
|
||||
course_membership = []
|
||||
|
||||
for course in courses:
|
||||
course_membership.append(
|
||||
{
|
||||
"course": course.name,
|
||||
"members": cint(frappe.db.count("LMS Enrollment", {"course": course.name})),
|
||||
}
|
||||
)
|
||||
|
||||
course_membership = sorted(
|
||||
course_membership, key=lambda x: x.get("members"), reverse=True
|
||||
)
|
||||
return course_membership[:3]
|
||||
|
||||
|
||||
def format_amount(amount, currency):
|
||||
amount_reduced = amount / 1000
|
||||
if amount_reduced < 1:
|
||||
@@ -1851,7 +1833,7 @@ def enroll_in_program_course(program, course):
|
||||
|
||||
|
||||
@frappe.whitelist(allow_guest=True)
|
||||
def get_batches(filters=None, start=0, page_length=20):
|
||||
def get_batches(filters=None, start=0, page_length=20, order_by="start_date"):
|
||||
if not filters:
|
||||
filters = {}
|
||||
|
||||
@@ -1861,8 +1843,6 @@ def get_batches(filters=None, start=0, page_length=20):
|
||||
)
|
||||
filters.update({"name": ["in", enrolled_batches]})
|
||||
del filters["enrolled"]
|
||||
del filters["published"]
|
||||
del filters["start_date"]
|
||||
|
||||
batches = frappe.get_all(
|
||||
"LMS Batch",
|
||||
@@ -1884,11 +1864,51 @@ def get_batches(filters=None, start=0, page_length=20):
|
||||
"published",
|
||||
"category",
|
||||
],
|
||||
order_by="start_date desc",
|
||||
order_by=order_by,
|
||||
start=start,
|
||||
page_length=page_length,
|
||||
)
|
||||
|
||||
batches = filter_batches_based_on_start_time(batches, filters)
|
||||
batches = get_batch_card_details(batches)
|
||||
return batches
|
||||
|
||||
|
||||
def filter_batches_based_on_start_time(batches, filters):
|
||||
batchType = get_batch_type(filters)
|
||||
if batchType == "upcoming":
|
||||
batches_to_remove = [
|
||||
batch
|
||||
for batch in batches
|
||||
if getdate(batch.start_date) == getdate()
|
||||
and get_time_str(batch.start_time) < nowtime()
|
||||
]
|
||||
batches = [batch for batch in batches if batch not in batches_to_remove]
|
||||
elif batchType == "archived":
|
||||
batches_to_remove = [
|
||||
batch
|
||||
for batch in batches
|
||||
if getdate(batch.start_date) == getdate()
|
||||
and get_time_str(batch.start_time) >= nowtime()
|
||||
]
|
||||
batches = [batch for batch in batches if batch not in batches_to_remove]
|
||||
return batches
|
||||
|
||||
|
||||
def get_batch_type(filters):
|
||||
start_date_filter = filters.get("start_date")
|
||||
batchType = None
|
||||
if start_date_filter:
|
||||
sign = start_date_filter[0]
|
||||
if ">" in sign:
|
||||
batchType = "upcoming"
|
||||
elif "<" in sign:
|
||||
batchType = "archived"
|
||||
|
||||
return batchType
|
||||
|
||||
|
||||
def get_batch_card_details(batches):
|
||||
for batch in batches:
|
||||
batch.instructors = get_instructors(batch.name)
|
||||
students_count = frappe.db.count("Batch Student", {"parent": batch.name})
|
||||
|
||||
@@ -1,31 +1,9 @@
|
||||
{% set enrolled = get_enrolled_courses().in_progress + get_enrolled_courses().completed %}
|
||||
|
||||
|
||||
{% if enrolled | length %}
|
||||
<div class="cards-parent">
|
||||
{% for course in enrolled %}
|
||||
{{ widgets.CourseCard(course=course) }}
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
||||
|
||||
{% else %}
|
||||
{% set site_name = frappe.db.get_single_value("System Settings", "app_name") %}
|
||||
<div class="empty-state p-5">
|
||||
<div style="text-align: left; flex: 1;">
|
||||
<div class="text-center">
|
||||
<div class="empty-state-heading">{{ _("You haven't enrolled for any courses") }}</div>
|
||||
<div class="course-meta mb-6">{{ _("Here are a few courses we recommend for you to get started with {0}").format(site_name) }}</div>
|
||||
</div>
|
||||
{% set recommended_courses = get_popular_courses() %}
|
||||
<div class="cards-parent">
|
||||
{% for course in recommended_courses %}
|
||||
{% if course %}
|
||||
{% set course_details = frappe.get_doc("LMS Course", course.course) %}
|
||||
{{ widgets.CourseCard(course=course_details) }}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
275
lms/locale/ar.po
275
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-10 16:04+0000\n"
|
||||
"PO-Revision-Date: 2025-01-13 06:31\n"
|
||||
"POT-Creation-Date: 2025-01-17 16:04+0000\n"
|
||||
"PO-Revision-Date: 2025-01-20 11:13\n"
|
||||
"Last-Translator: jannat@frappe.io\n"
|
||||
"Language-Team: Arabic\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -75,7 +75,7 @@ msgstr ""
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batch.vue:93
|
||||
#: frontend/src/pages/Batch.vue:96
|
||||
msgid "About this batch"
|
||||
msgstr ""
|
||||
|
||||
@@ -212,14 +212,26 @@ msgid "Admin"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a role
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
#: frontend/src/pages/Batches.vue:270 lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "All"
|
||||
msgstr "الكل"
|
||||
|
||||
#: frontend/src/pages/Batches.vue:26
|
||||
msgid "All Batches"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:12
|
||||
msgid "All Certified Participants"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/widgets/BreadCrumb.html:3
|
||||
msgid "All Courses"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:51
|
||||
msgid "All Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/quiz/quiz.html:141
|
||||
msgid "All Submissions"
|
||||
msgstr ""
|
||||
@@ -279,7 +291,7 @@ msgstr ""
|
||||
msgid "Amount Field"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:70
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:75
|
||||
msgid "Amount and currency are required for paid batches."
|
||||
msgstr ""
|
||||
|
||||
@@ -353,6 +365,10 @@ msgstr ""
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:259 frontend/src/pages/Batches.vue:277
|
||||
msgid "Archived"
|
||||
msgstr "أرشفة"
|
||||
|
||||
#. Label of the user_category (Check) field in DocType 'LMS Settings'
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Ask User Category during Signup"
|
||||
@@ -381,7 +397,7 @@ msgstr ""
|
||||
msgid "Assessment added successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:80
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:85
|
||||
msgid "Assessment {0} has already been added to this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -473,6 +489,10 @@ msgstr ""
|
||||
msgid "Average Rating"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:38
|
||||
msgid "Average of Feedback Received"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Lesson.vue:96
|
||||
msgid "Back to Course"
|
||||
msgstr ""
|
||||
@@ -493,10 +513,12 @@ msgstr ""
|
||||
msgid "Badge Image"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the batch (Link) field in DocType 'LMS Batch Feedback'
|
||||
#. Label of the batch_name (Link) field in DocType 'LMS Certificate'
|
||||
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
|
||||
#. Label of the batch_name (Link) field in DocType 'LMS Live Class'
|
||||
#: frontend/src/components/Modals/Event.vue:32
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
@@ -578,7 +600,9 @@ msgstr ""
|
||||
msgid "Batch Student"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the batch_title (Data) field in DocType 'LMS Certificate'
|
||||
#. Label of the batch_title (Data) field in DocType 'LMS Certificate Request'
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
msgid "Batch Title"
|
||||
msgstr ""
|
||||
@@ -587,14 +611,15 @@ msgstr ""
|
||||
msgid "Batch Updated"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:41
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:46
|
||||
msgid "Batch end date cannot be before the batch start date"
|
||||
msgstr ""
|
||||
|
||||
#. Group in LMS Course's connections
|
||||
#. Label of the batches (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/pages/Batches.vue:8 lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:60
|
||||
#: frontend/src/pages/Batches.vue:285
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:61
|
||||
msgid "Batches"
|
||||
msgstr ""
|
||||
|
||||
@@ -689,7 +714,8 @@ msgstr ""
|
||||
#. Label of the category (Link) field in DocType 'LMS Batch'
|
||||
#. Label of the category (Data) field in DocType 'LMS Category'
|
||||
#. Label of the category (Link) field in DocType 'LMS Course'
|
||||
#: frontend/src/pages/BatchForm.vue:202 frontend/src/pages/Batches.vue:16
|
||||
#: frontend/src/pages/BatchForm.vue:202 frontend/src/pages/Batches.vue:49
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:29
|
||||
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:17
|
||||
#: frontend/src/pages/JobDetail.vue:102
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
@@ -756,6 +782,7 @@ msgid "Certification Name"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the certified_participants (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:153
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Certified Participants"
|
||||
msgstr ""
|
||||
@@ -1048,7 +1075,7 @@ msgstr ""
|
||||
msgid "Confirmation Email Sent"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:25
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:29
|
||||
msgid "Congratulations on getting certified!"
|
||||
msgstr ""
|
||||
|
||||
@@ -1057,8 +1084,10 @@ msgid "Contact the Administrator to enroll for this course."
|
||||
msgstr ""
|
||||
|
||||
#. Label of the content (Text) field in DocType 'Course Lesson'
|
||||
#. Label of the content (Rating) field in DocType 'LMS Batch Feedback'
|
||||
#: frontend/src/pages/LessonForm.vue:62
|
||||
#: lms/lms/doctype/course_lesson/course_lesson.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "Content"
|
||||
msgstr "محتوى"
|
||||
|
||||
@@ -1067,7 +1096,7 @@ msgid "Continue Learning"
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
|
||||
#: frontend/src/pages/Jobs.vue:120
|
||||
#: frontend/src/pages/Jobs.vue:152
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
msgid "Contract"
|
||||
msgstr "عقد"
|
||||
@@ -1133,7 +1162,7 @@ msgstr "الدولة"
|
||||
#. Label of a Link in the LMS Workspace
|
||||
#. Label of a shortcut in the LMS Workspace
|
||||
#: frontend/src/components/Modals/BatchCourseModal.vue:20
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:23
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:38
|
||||
#: frontend/src/components/Modals/EvaluationModal.vue:20
|
||||
#: frontend/src/components/Modals/Event.vue:24
|
||||
#: lms/lms/doctype/batch_course/batch_course.json
|
||||
@@ -1220,7 +1249,7 @@ msgstr ""
|
||||
msgid "Course Lesson"
|
||||
msgstr ""
|
||||
|
||||
#: lms/www/lms.py:27
|
||||
#: lms/www/lms.py:28
|
||||
msgid "Course List"
|
||||
msgstr ""
|
||||
|
||||
@@ -1270,7 +1299,7 @@ msgstr ""
|
||||
msgid "Course added to program"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:345
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:350
|
||||
msgid "Course already added to the batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -1282,7 +1311,7 @@ msgstr ""
|
||||
msgid "Course moved successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:59
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:64
|
||||
#: lms/lms/doctype/lms_program/lms_program.py:19
|
||||
msgid "Course {0} has already been added to this batch."
|
||||
msgstr ""
|
||||
@@ -1333,10 +1362,6 @@ msgstr ""
|
||||
msgid "Create LMS Certificate Evaluation"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:110
|
||||
msgid "Create a Batch"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:132 lms/templates/onboarding_header.html:19
|
||||
msgid "Create a Course"
|
||||
msgstr ""
|
||||
@@ -1732,6 +1757,10 @@ msgstr "وقت الانتهاء"
|
||||
msgid "Enroll Now"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:274
|
||||
msgid "Enrolled"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/CourseCard.vue:43
|
||||
#: frontend/src/components/CourseCardOverlay.vue:104
|
||||
#: frontend/src/pages/CourseDetail.vue:33
|
||||
@@ -1742,7 +1771,7 @@ msgstr ""
|
||||
msgid "Enrolled successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:103
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:108
|
||||
msgid "Enrollment Confirmation for the Next Training Batch"
|
||||
msgstr ""
|
||||
|
||||
@@ -1751,7 +1780,7 @@ msgstr ""
|
||||
msgid "Enrollment Count"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1765
|
||||
#: lms/lms/utils.py:1693
|
||||
msgid "Enrollment Failed"
|
||||
msgstr ""
|
||||
|
||||
@@ -1821,7 +1850,7 @@ msgstr ""
|
||||
msgid "Evaluation Request"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:87
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:92
|
||||
msgid "Evaluation end date cannot be less than the batch end date."
|
||||
msgstr ""
|
||||
|
||||
@@ -1836,7 +1865,7 @@ msgstr ""
|
||||
#. Label of the evaluator (Link) field in DocType 'LMS Certificate Evaluation'
|
||||
#. Label of the evaluator (Link) field in DocType 'LMS Certificate Request'
|
||||
#: frontend/src/components/Modals/BatchCourseModal.vue:26
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:28
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:22
|
||||
#: frontend/src/pages/ProfileRoles.vue:22
|
||||
#: lms/lms/doctype/batch_course/batch_course.json
|
||||
#: lms/lms/doctype/course_evaluator/course_evaluator.json
|
||||
@@ -1914,7 +1943,7 @@ msgid "Expiration Date"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:39
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:33
|
||||
#: frontend/src/components/Modals/Event.vue:126
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
msgid "Expiry Date"
|
||||
@@ -1955,6 +1984,12 @@ msgstr ""
|
||||
msgid "Featured"
|
||||
msgstr "متميز"
|
||||
|
||||
#. Label of the feedback (Small Text) field in DocType 'LMS Batch Feedback'
|
||||
#: frontend/src/components/BatchFeedback.vue:29
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "Feedback"
|
||||
msgstr "الملاحظات"
|
||||
|
||||
#: frontend/src/components/Assignment.vue:61
|
||||
msgid "Feel free to make edits to your submission if needed."
|
||||
msgstr ""
|
||||
@@ -1974,7 +2009,7 @@ msgstr ""
|
||||
msgid "File Type"
|
||||
msgstr "نوع الملف"
|
||||
|
||||
#: frontend/src/pages/Jobs.vue:47
|
||||
#: frontend/src/pages/Jobs.vue:33
|
||||
msgid "Find the perfect job for you"
|
||||
msgstr ""
|
||||
|
||||
@@ -2007,7 +2042,7 @@ msgid "Free"
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
|
||||
#: frontend/src/pages/Jobs.vue:121
|
||||
#: frontend/src/pages/Jobs.vue:153
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
msgid "Freelance"
|
||||
msgstr ""
|
||||
@@ -2049,7 +2084,7 @@ msgid "Full Name"
|
||||
msgstr "الاسم الكامل"
|
||||
|
||||
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
|
||||
#: frontend/src/pages/Jobs.vue:118
|
||||
#: frontend/src/pages/Jobs.vue:150
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
msgid "Full Time"
|
||||
msgstr ""
|
||||
@@ -2147,6 +2182,10 @@ msgstr ""
|
||||
msgid "Hello"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:11
|
||||
msgid "Help Us Improve"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/courses_created.html:15
|
||||
msgid "Help others learn something new by creating a course."
|
||||
msgstr ""
|
||||
@@ -2155,10 +2194,6 @@ msgstr ""
|
||||
msgid "Help us improve our course material."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/web_template/courses_enrolled/courses_enrolled.html:18
|
||||
msgid "Here are a few courses we recommend for you to get started with {0}"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/notification/certificate_request_reminder/certificate_request_reminder.html:1
|
||||
#: lms/templates/emails/certificate_request_notification.html:1
|
||||
msgid "Hey {0}"
|
||||
@@ -2360,9 +2395,11 @@ msgid "Instructor Notes"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch'
|
||||
#. Label of the instructors (Rating) field in DocType 'LMS Batch Feedback'
|
||||
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course'
|
||||
#: frontend/src/pages/BatchForm.vue:89 frontend/src/pages/CourseForm.vue:154
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
msgid "Instructors"
|
||||
msgstr ""
|
||||
@@ -2437,7 +2474,7 @@ msgstr ""
|
||||
|
||||
#. Label of the issue_date (Date) field in DocType 'Certification'
|
||||
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:34
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:28
|
||||
#: frontend/src/components/Modals/Event.vue:121
|
||||
#: lms/lms/doctype/certification/certification.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
@@ -2450,6 +2487,7 @@ msgid "Issued On"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProfileAbout.vue:56
|
||||
#: frontend/src/pages/ProfileCertificates.vue:17
|
||||
#: lms/templates/certificates_section.html:11
|
||||
msgid "Issued on"
|
||||
msgstr ""
|
||||
@@ -2487,7 +2525,7 @@ msgstr ""
|
||||
msgid "Job Details"
|
||||
msgstr ""
|
||||
|
||||
#: lms/www/lms.py:108
|
||||
#: lms/www/lms.py:109
|
||||
msgid "Job Openings"
|
||||
msgstr ""
|
||||
|
||||
@@ -2566,6 +2604,11 @@ msgstr ""
|
||||
msgid "LMS Batch"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "LMS Batch Feedback"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
||||
msgid "LMS Batch Old"
|
||||
@@ -2725,6 +2768,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_assignment/lms_assignment.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
#: lms/lms/doctype/lms_course_progress/lms_course_progress.json
|
||||
@@ -2870,16 +2914,13 @@ msgid "LiveCode URL"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Members.vue:106
|
||||
#: frontend/src/pages/Assignments.vue:71
|
||||
#: frontend/src/pages/Assignments.vue:71 frontend/src/pages/Batches.vue:88
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:71
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:39
|
||||
#: frontend/src/pages/Quizzes.vue:51
|
||||
msgid "Load More"
|
||||
msgstr "تحميل المزيد"
|
||||
|
||||
#: frontend/src/pages/Batches.vue:40
|
||||
msgid "Loading Batches..."
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Auto Recording' (Select) field in DocType 'LMS Live Class'
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
msgid "Local"
|
||||
@@ -2902,7 +2943,7 @@ msgstr ""
|
||||
|
||||
#: frontend/src/components/AssignmentBlock.vue:13
|
||||
#: frontend/src/components/NoPermission.vue:28
|
||||
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:175
|
||||
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:178
|
||||
#: frontend/src/pages/Lesson.vue:24
|
||||
msgid "Login"
|
||||
msgstr "دخول"
|
||||
@@ -3007,6 +3048,7 @@ msgstr "متوسط:"
|
||||
#. Label of the member (Link) field in DocType 'Exercise Submission'
|
||||
#. Label of the member (Link) field in DocType 'LMS Assignment Submission'
|
||||
#. Label of the member (Link) field in DocType 'LMS Badge Assignment'
|
||||
#. Label of the member (Link) field in DocType 'LMS Batch Feedback'
|
||||
#. Label of the member (Link) field in DocType 'LMS Certificate'
|
||||
#. Label of the member (Link) field in DocType 'LMS Certificate Evaluation'
|
||||
#. Label of the member (Link) field in DocType 'LMS Certificate Request'
|
||||
@@ -3024,6 +3066,7 @@ msgstr "متوسط:"
|
||||
#: lms/lms/doctype/exercise_submission/exercise_submission.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.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
|
||||
@@ -3049,8 +3092,15 @@ msgstr ""
|
||||
msgid "Member Email"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the member_image (Attach Image) field in DocType 'LMS Batch
|
||||
#. Feedback'
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "Member Image"
|
||||
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 Batch Feedback'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Certificate'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Certificate
|
||||
#. Evaluation'
|
||||
@@ -3061,6 +3111,7 @@ msgstr ""
|
||||
#. 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_batch_feedback/lms_batch_feedback.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
|
||||
@@ -3223,7 +3274,7 @@ msgid "My calendar"
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
||||
#: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:30
|
||||
#: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:17
|
||||
#: frontend/src/pages/Courses.vue:45 frontend/src/pages/Programs.vue:14
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "New"
|
||||
@@ -3237,15 +3288,15 @@ msgstr ""
|
||||
msgid "New Assignment Submission"
|
||||
msgstr ""
|
||||
|
||||
#: lms/public/js/common_functions.js:255 lms/www/lms.py:86
|
||||
#: lms/public/js/common_functions.js:255 lms/www/lms.py:87
|
||||
msgid "New Batch"
|
||||
msgstr ""
|
||||
|
||||
#: lms/www/lms.py:37
|
||||
#: lms/www/lms.py:38
|
||||
msgid "New Course"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Jobs.vue:39
|
||||
#: frontend/src/pages/Jobs.vue:23
|
||||
msgid "New Job"
|
||||
msgstr ""
|
||||
|
||||
@@ -3278,11 +3329,11 @@ msgstr ""
|
||||
msgid "New Sign Up"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:623
|
||||
#: lms/lms/utils.py:605
|
||||
msgid "New comment in batch {0}"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:616
|
||||
#: lms/lms/utils.py:598
|
||||
msgid "New reply on the topic {0} in course {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -3324,7 +3375,7 @@ msgstr ""
|
||||
msgid "No assignments found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:125
|
||||
#: frontend/src/pages/Batches.vue:73
|
||||
msgid "No batches found"
|
||||
msgstr ""
|
||||
|
||||
@@ -3348,11 +3399,15 @@ msgstr ""
|
||||
msgid "No courses under review"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:101
|
||||
msgid "No feedback received yet."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProfileAbout.vue:12
|
||||
msgid "No introduction"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Jobs.vue:63
|
||||
#: frontend/src/pages/Jobs.vue:77
|
||||
msgid "No jobs posted"
|
||||
msgstr ""
|
||||
|
||||
@@ -3360,6 +3415,10 @@ msgstr ""
|
||||
msgid "No live classes scheduled"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:81
|
||||
msgid "No participants found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:91
|
||||
msgid "No programs found"
|
||||
msgstr ""
|
||||
@@ -3384,10 +3443,6 @@ msgstr ""
|
||||
msgid "No {0}"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:84
|
||||
msgid "No {0} batches"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:107
|
||||
msgid "No {0} courses"
|
||||
msgstr ""
|
||||
@@ -3420,7 +3475,7 @@ msgstr ""
|
||||
msgid "Not Graded"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:143
|
||||
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:146
|
||||
msgid "Not Permitted"
|
||||
msgstr "لا يسمح"
|
||||
|
||||
@@ -3614,7 +3669,7 @@ msgid "Pan Number"
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
|
||||
#: frontend/src/pages/Jobs.vue:119
|
||||
#: frontend/src/pages/Jobs.vue:151
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
msgid "Part Time"
|
||||
msgstr ""
|
||||
@@ -3765,11 +3820,11 @@ msgstr "يرجى التحقق من بريدك الالكتروني للتحقق"
|
||||
msgid "Please click on the following button to set your new password"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1887 lms/lms/utils.py:1891
|
||||
#: lms/lms/utils.py:1815 lms/lms/utils.py:1819
|
||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:256
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:261
|
||||
msgid "Please enable Zoom Settings to use this feature."
|
||||
msgstr ""
|
||||
|
||||
@@ -3786,7 +3841,7 @@ msgid "Please enter a title."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:40
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:122
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:125
|
||||
msgid "Please enter a valid URL."
|
||||
msgstr ""
|
||||
|
||||
@@ -3794,7 +3849,7 @@ msgstr ""
|
||||
msgid "Please enter a valid time in the format HH:mm."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:116
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:119
|
||||
msgid "Please enter the URL for assignment submission."
|
||||
msgstr ""
|
||||
|
||||
@@ -3802,7 +3857,7 @@ msgstr ""
|
||||
msgid "Please enter your answer"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:66
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:71
|
||||
msgid "Please install the Payments app to create a paid batches."
|
||||
msgstr ""
|
||||
|
||||
@@ -3822,7 +3877,7 @@ msgstr ""
|
||||
msgid "Please login to access the quiz."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/NoPermission.vue:25 frontend/src/pages/Batch.vue:154
|
||||
#: frontend/src/components/NoPermission.vue:25 frontend/src/pages/Batch.vue:157
|
||||
msgid "Please login to access this page."
|
||||
msgstr ""
|
||||
|
||||
@@ -3863,7 +3918,7 @@ msgstr ""
|
||||
msgid "Please upload a SCORM package"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:119
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:122
|
||||
msgid "Please upload the assignment file."
|
||||
msgstr ""
|
||||
|
||||
@@ -3897,7 +3952,7 @@ msgid "Possible Answer 4"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/DiscussionReplies.vue:52
|
||||
#: frontend/src/components/DiscussionReplies.vue:86
|
||||
#: frontend/src/components/DiscussionReplies.vue:87
|
||||
msgid "Post"
|
||||
msgstr "بعد"
|
||||
|
||||
@@ -4326,19 +4381,19 @@ msgstr ""
|
||||
msgid "Route"
|
||||
msgstr "مسار"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:199
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:204
|
||||
msgid "Row #{0} Date cannot be outside the batch duration."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:194
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:199
|
||||
msgid "Row #{0} End time cannot be outside the batch duration."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:176
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:181
|
||||
msgid "Row #{0} Start time cannot be greater than or equal to end time."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:185
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:190
|
||||
msgid "Row #{0} Start time cannot be outside the batch duration."
|
||||
msgstr ""
|
||||
|
||||
@@ -4419,10 +4474,18 @@ msgstr "أحرز هدفاً"
|
||||
msgid "Score Out Of"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Members.vue:15
|
||||
#: frontend/src/components/Members.vue:15 frontend/src/pages/Jobs.vue:38
|
||||
msgid "Search"
|
||||
msgstr "البحث"
|
||||
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:17
|
||||
msgid "Search by Name"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:39
|
||||
msgid "Search by Title"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Assignments.vue:25
|
||||
msgid "Search by title"
|
||||
msgstr ""
|
||||
@@ -4719,7 +4782,7 @@ msgstr "حالة"
|
||||
#. Label of the statistics (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/components/BatchStudents.vue:5
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:133
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:134
|
||||
msgid "Statistics"
|
||||
msgstr ""
|
||||
|
||||
@@ -4784,7 +4847,7 @@ msgstr ""
|
||||
msgid "Student Reviews"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:48
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:53
|
||||
msgid "Student {0} has already been added to this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -4832,6 +4895,7 @@ msgstr ""
|
||||
msgid "Submission by"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:14
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:9
|
||||
#: frontend/src/components/Modals/BatchCourseModal.vue:9
|
||||
#: frontend/src/components/Modals/EvaluationModal.vue:9
|
||||
@@ -4889,7 +4953,7 @@ msgstr "ملخص"
|
||||
msgid "Sunday"
|
||||
msgstr "الأحد"
|
||||
|
||||
#: lms/lms/api.py:964
|
||||
#: lms/lms/api.py:983
|
||||
msgid "Suspicious pattern found in {0}: {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -4915,6 +4979,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
||||
#: lms/lms/doctype/lms_category/lms_category.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
@@ -4997,6 +5062,10 @@ msgstr ""
|
||||
msgid "Text"
|
||||
msgstr "نص"
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:7
|
||||
msgid "Thank you for providing your feedback!"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/emails/lms_course_interest.html:17
|
||||
#: lms/templates/emails/lms_invite_request_approved.html:15
|
||||
#: lms/templates/emails/mentor_request_creation_email.html:7
|
||||
@@ -5004,7 +5073,7 @@ msgstr "نص"
|
||||
msgid "Thanks and Regards"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1794
|
||||
#: lms/lms/utils.py:1722
|
||||
msgid "The batch is full. Please contact the Administrator."
|
||||
msgstr ""
|
||||
|
||||
@@ -5028,8 +5097,8 @@ msgstr ""
|
||||
msgid "The status of your application has changed."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:129
|
||||
msgid "There are no batches available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
#: frontend/src/pages/Batches.vue:77
|
||||
msgid "There are no batches matching the criteria. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/CreateOutline.vue:12
|
||||
@@ -5040,11 +5109,15 @@ 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/CertifiedParticipants.vue:84
|
||||
msgid "There are no participants matching this criteria."
|
||||
msgstr ""
|
||||
|
||||
#: 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 ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:146
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:151
|
||||
msgid "There are no seats available in this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -5060,7 +5133,7 @@ msgstr ""
|
||||
msgid "There are no {0} on this site."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:82
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:85
|
||||
msgid "There has been an update on your submission for assignment {0}"
|
||||
msgstr ""
|
||||
|
||||
@@ -5091,7 +5164,7 @@ msgstr ""
|
||||
msgid "This course has:"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1645
|
||||
#: lms/lms/utils.py:1573
|
||||
msgid "This course is free."
|
||||
msgstr ""
|
||||
|
||||
@@ -5235,7 +5308,7 @@ msgstr "إلى"
|
||||
msgid "To Date"
|
||||
msgstr "إلى تاريخ"
|
||||
|
||||
#: lms/lms/utils.py:1656
|
||||
#: lms/lms/utils.py:1584
|
||||
msgid "To join this batch, please contact the Administrator."
|
||||
msgstr ""
|
||||
|
||||
@@ -5291,7 +5364,7 @@ msgstr ""
|
||||
#: frontend/src/components/Modals/Question.vue:54
|
||||
#: frontend/src/pages/AssignmentForm.vue:39
|
||||
#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:157
|
||||
#: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:16
|
||||
#: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:55
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
#: lms/lms/doctype/lms_assignment/lms_assignment.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
@@ -5337,6 +5410,10 @@ msgstr ""
|
||||
msgid "Unlisted"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:262 frontend/src/pages/Batches.vue:278
|
||||
msgid "Unpublished"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/EditCoverImage.vue:60
|
||||
#: frontend/src/components/UnsplashImageBrowser.vue:54
|
||||
msgid "Unsplash"
|
||||
@@ -5354,12 +5431,13 @@ msgstr ""
|
||||
|
||||
#. Option for the 'Status' (Select) field in DocType 'Cohort'
|
||||
#. Label of the upcoming (Check) field in DocType 'LMS Course'
|
||||
#: frontend/src/pages/Batches.vue:258 frontend/src/pages/Batches.vue:276
|
||||
#: frontend/src/pages/CourseForm.vue:184 lms/lms/doctype/cohort/cohort.json
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
msgid "Upcoming"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batch.vue:166
|
||||
#: frontend/src/pages/Batch.vue:169
|
||||
msgid "Upcoming Batches"
|
||||
msgstr ""
|
||||
|
||||
@@ -5421,7 +5499,7 @@ msgstr ""
|
||||
msgid "User Skill"
|
||||
msgstr ""
|
||||
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.py:37
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.py:40
|
||||
msgid "User {0} has reported the job post {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -5446,6 +5524,11 @@ msgstr ""
|
||||
msgid "Valid email and name required"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the value (Rating) field in DocType 'LMS Batch Feedback'
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "Value"
|
||||
msgstr "القيمة"
|
||||
|
||||
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "Value Change"
|
||||
@@ -5569,7 +5652,7 @@ msgstr ""
|
||||
msgid "You are already enrolled for this course."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batch.vue:148
|
||||
#: frontend/src/pages/Batch.vue:151
|
||||
msgid "You are not a member of this batch. Please checkout our upcoming batches."
|
||||
msgstr ""
|
||||
|
||||
@@ -5606,10 +5689,6 @@ msgstr ""
|
||||
msgid "You can find their resume attached to this email."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:113
|
||||
msgid "You can link courses and assessments to it."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:115
|
||||
msgid "You cannot schedule evaluations after {0}."
|
||||
msgstr ""
|
||||
@@ -5671,10 +5750,6 @@ msgstr ""
|
||||
msgid "You have opted to be notified for this course. You will receive an email when the course becomes available."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/web_template/courses_enrolled/courses_enrolled.html:17
|
||||
msgid "You haven't enrolled for any courses"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/CourseCardOverlay.vue:146
|
||||
msgid "You need to login first to enroll for this course"
|
||||
msgstr ""
|
||||
@@ -5769,10 +5844,6 @@ msgstr ""
|
||||
msgid "in the last"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProfileCertificates.vue:17
|
||||
msgid "issued on"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/signup-form.html:12
|
||||
msgid "jane@example.com"
|
||||
msgstr ""
|
||||
@@ -5793,8 +5864,8 @@ msgstr ""
|
||||
msgid "out of"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/JobCard.vue:37
|
||||
msgid "posted by"
|
||||
#: frontend/src/components/JobCard.vue:30
|
||||
msgid "posted"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:386
|
||||
@@ -5817,7 +5888,7 @@ msgstr ""
|
||||
msgid "you can"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:761 lms/lms/api.py:769
|
||||
#: lms/lms/api.py:780 lms/lms/api.py:788
|
||||
msgid "{0} Settings not found"
|
||||
msgstr ""
|
||||
|
||||
@@ -5845,7 +5916,11 @@ msgstr ""
|
||||
msgid "{0} is already a {1} of the course {2}"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:59
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:91
|
||||
msgid "{0} is already certified for the batch {1}"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:72
|
||||
msgid "{0} is already certified for the course {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -5853,7 +5928,7 @@ msgstr ""
|
||||
msgid "{0} is your evaluator"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:700
|
||||
#: lms/lms/utils.py:682
|
||||
msgid "{0} mentioned you in a comment"
|
||||
msgstr ""
|
||||
|
||||
@@ -5861,11 +5936,11 @@ msgstr ""
|
||||
msgid "{0} mentioned you in a comment in your batch."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:653 lms/lms/utils.py:659
|
||||
#: lms/lms/utils.py:635 lms/lms/utils.py:641
|
||||
msgid "{0} mentioned you in a comment in {1}"
|
||||
msgstr "{0} ذكرتك في تعليق في {1}"
|
||||
|
||||
#: lms/lms/utils.py:476
|
||||
#: lms/lms/utils.py:458
|
||||
msgid "{0}k"
|
||||
msgstr ""
|
||||
|
||||
|
||||
275
lms/locale/bs.po
275
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-10 16:04+0000\n"
|
||||
"PO-Revision-Date: 2025-01-13 06:31\n"
|
||||
"POT-Creation-Date: 2025-01-17 16:04+0000\n"
|
||||
"PO-Revision-Date: 2025-01-20 11:13\n"
|
||||
"Last-Translator: jannat@frappe.io\n"
|
||||
"Language-Team: Bosnian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -75,7 +75,7 @@ msgstr ""
|
||||
msgid "About"
|
||||
msgstr "O"
|
||||
|
||||
#: frontend/src/pages/Batch.vue:93
|
||||
#: frontend/src/pages/Batch.vue:96
|
||||
msgid "About this batch"
|
||||
msgstr ""
|
||||
|
||||
@@ -212,14 +212,26 @@ msgid "Admin"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a role
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
#: frontend/src/pages/Batches.vue:270 lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "All"
|
||||
msgstr "Sve"
|
||||
|
||||
#: frontend/src/pages/Batches.vue:26
|
||||
msgid "All Batches"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:12
|
||||
msgid "All Certified Participants"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/widgets/BreadCrumb.html:3
|
||||
msgid "All Courses"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:51
|
||||
msgid "All Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/quiz/quiz.html:141
|
||||
msgid "All Submissions"
|
||||
msgstr "Svi podnesci"
|
||||
@@ -279,7 +291,7 @@ msgstr ""
|
||||
msgid "Amount Field"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:70
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:75
|
||||
msgid "Amount and currency are required for paid batches."
|
||||
msgstr ""
|
||||
|
||||
@@ -353,6 +365,10 @@ msgstr ""
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:259 frontend/src/pages/Batches.vue:277
|
||||
msgid "Archived"
|
||||
msgstr "Arhivirano"
|
||||
|
||||
#. Label of the user_category (Check) field in DocType 'LMS Settings'
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Ask User Category during Signup"
|
||||
@@ -381,7 +397,7 @@ msgstr ""
|
||||
msgid "Assessment added successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:80
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:85
|
||||
msgid "Assessment {0} has already been added to this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -473,6 +489,10 @@ msgstr ""
|
||||
msgid "Average Rating"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:38
|
||||
msgid "Average of Feedback Received"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Lesson.vue:96
|
||||
msgid "Back to Course"
|
||||
msgstr ""
|
||||
@@ -493,10 +513,12 @@ msgstr ""
|
||||
msgid "Badge Image"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the batch (Link) field in DocType 'LMS Batch Feedback'
|
||||
#. Label of the batch_name (Link) field in DocType 'LMS Certificate'
|
||||
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
|
||||
#. Label of the batch_name (Link) field in DocType 'LMS Live Class'
|
||||
#: frontend/src/components/Modals/Event.vue:32
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
@@ -578,7 +600,9 @@ msgstr ""
|
||||
msgid "Batch Student"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the batch_title (Data) field in DocType 'LMS Certificate'
|
||||
#. Label of the batch_title (Data) field in DocType 'LMS Certificate Request'
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
msgid "Batch Title"
|
||||
msgstr ""
|
||||
@@ -587,14 +611,15 @@ msgstr ""
|
||||
msgid "Batch Updated"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:41
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:46
|
||||
msgid "Batch end date cannot be before the batch start date"
|
||||
msgstr ""
|
||||
|
||||
#. Group in LMS Course's connections
|
||||
#. Label of the batches (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/pages/Batches.vue:8 lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:60
|
||||
#: frontend/src/pages/Batches.vue:285
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:61
|
||||
msgid "Batches"
|
||||
msgstr ""
|
||||
|
||||
@@ -689,7 +714,8 @@ msgstr ""
|
||||
#. Label of the category (Link) field in DocType 'LMS Batch'
|
||||
#. Label of the category (Data) field in DocType 'LMS Category'
|
||||
#. Label of the category (Link) field in DocType 'LMS Course'
|
||||
#: frontend/src/pages/BatchForm.vue:202 frontend/src/pages/Batches.vue:16
|
||||
#: frontend/src/pages/BatchForm.vue:202 frontend/src/pages/Batches.vue:49
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:29
|
||||
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:17
|
||||
#: frontend/src/pages/JobDetail.vue:102
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
@@ -756,6 +782,7 @@ msgid "Certification Name"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the certified_participants (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:153
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Certified Participants"
|
||||
msgstr ""
|
||||
@@ -1048,7 +1075,7 @@ msgstr ""
|
||||
msgid "Confirmation Email Sent"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:25
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:29
|
||||
msgid "Congratulations on getting certified!"
|
||||
msgstr ""
|
||||
|
||||
@@ -1057,8 +1084,10 @@ msgid "Contact the Administrator to enroll for this course."
|
||||
msgstr ""
|
||||
|
||||
#. Label of the content (Text) field in DocType 'Course Lesson'
|
||||
#. Label of the content (Rating) field in DocType 'LMS Batch Feedback'
|
||||
#: frontend/src/pages/LessonForm.vue:62
|
||||
#: lms/lms/doctype/course_lesson/course_lesson.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "Content"
|
||||
msgstr "Sadržaj"
|
||||
|
||||
@@ -1067,7 +1096,7 @@ msgid "Continue Learning"
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
|
||||
#: frontend/src/pages/Jobs.vue:120
|
||||
#: frontend/src/pages/Jobs.vue:152
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
msgid "Contract"
|
||||
msgstr ""
|
||||
@@ -1133,7 +1162,7 @@ msgstr "Država"
|
||||
#. Label of a Link in the LMS Workspace
|
||||
#. Label of a shortcut in the LMS Workspace
|
||||
#: frontend/src/components/Modals/BatchCourseModal.vue:20
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:23
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:38
|
||||
#: frontend/src/components/Modals/EvaluationModal.vue:20
|
||||
#: frontend/src/components/Modals/Event.vue:24
|
||||
#: lms/lms/doctype/batch_course/batch_course.json
|
||||
@@ -1220,7 +1249,7 @@ msgstr ""
|
||||
msgid "Course Lesson"
|
||||
msgstr ""
|
||||
|
||||
#: lms/www/lms.py:27
|
||||
#: lms/www/lms.py:28
|
||||
msgid "Course List"
|
||||
msgstr ""
|
||||
|
||||
@@ -1270,7 +1299,7 @@ msgstr ""
|
||||
msgid "Course added to program"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:345
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:350
|
||||
msgid "Course already added to the batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -1282,7 +1311,7 @@ msgstr ""
|
||||
msgid "Course moved successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:59
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:64
|
||||
#: lms/lms/doctype/lms_program/lms_program.py:19
|
||||
msgid "Course {0} has already been added to this batch."
|
||||
msgstr ""
|
||||
@@ -1333,10 +1362,6 @@ msgstr ""
|
||||
msgid "Create LMS Certificate Evaluation"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:110
|
||||
msgid "Create a Batch"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:132 lms/templates/onboarding_header.html:19
|
||||
msgid "Create a Course"
|
||||
msgstr ""
|
||||
@@ -1732,6 +1757,10 @@ msgstr ""
|
||||
msgid "Enroll Now"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:274
|
||||
msgid "Enrolled"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/CourseCard.vue:43
|
||||
#: frontend/src/components/CourseCardOverlay.vue:104
|
||||
#: frontend/src/pages/CourseDetail.vue:33
|
||||
@@ -1742,7 +1771,7 @@ msgstr ""
|
||||
msgid "Enrolled successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:103
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:108
|
||||
msgid "Enrollment Confirmation for the Next Training Batch"
|
||||
msgstr ""
|
||||
|
||||
@@ -1751,7 +1780,7 @@ msgstr ""
|
||||
msgid "Enrollment Count"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1765
|
||||
#: lms/lms/utils.py:1693
|
||||
msgid "Enrollment Failed"
|
||||
msgstr ""
|
||||
|
||||
@@ -1821,7 +1850,7 @@ msgstr ""
|
||||
msgid "Evaluation Request"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:87
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:92
|
||||
msgid "Evaluation end date cannot be less than the batch end date."
|
||||
msgstr ""
|
||||
|
||||
@@ -1836,7 +1865,7 @@ msgstr ""
|
||||
#. Label of the evaluator (Link) field in DocType 'LMS Certificate Evaluation'
|
||||
#. Label of the evaluator (Link) field in DocType 'LMS Certificate Request'
|
||||
#: frontend/src/components/Modals/BatchCourseModal.vue:26
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:28
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:22
|
||||
#: frontend/src/pages/ProfileRoles.vue:22
|
||||
#: lms/lms/doctype/batch_course/batch_course.json
|
||||
#: lms/lms/doctype/course_evaluator/course_evaluator.json
|
||||
@@ -1914,7 +1943,7 @@ msgid "Expiration Date"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:39
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:33
|
||||
#: frontend/src/components/Modals/Event.vue:126
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
msgid "Expiry Date"
|
||||
@@ -1955,6 +1984,12 @@ msgstr "Neuspjeh"
|
||||
msgid "Featured"
|
||||
msgstr "Istaknuto"
|
||||
|
||||
#. Label of the feedback (Small Text) field in DocType 'LMS Batch Feedback'
|
||||
#: frontend/src/components/BatchFeedback.vue:29
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "Feedback"
|
||||
msgstr "Povratne informacije"
|
||||
|
||||
#: frontend/src/components/Assignment.vue:61
|
||||
msgid "Feel free to make edits to your submission if needed."
|
||||
msgstr ""
|
||||
@@ -1974,7 +2009,7 @@ msgstr ""
|
||||
msgid "File Type"
|
||||
msgstr "Vrsta datoteke"
|
||||
|
||||
#: frontend/src/pages/Jobs.vue:47
|
||||
#: frontend/src/pages/Jobs.vue:33
|
||||
msgid "Find the perfect job for you"
|
||||
msgstr ""
|
||||
|
||||
@@ -2007,7 +2042,7 @@ msgid "Free"
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
|
||||
#: frontend/src/pages/Jobs.vue:121
|
||||
#: frontend/src/pages/Jobs.vue:153
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
msgid "Freelance"
|
||||
msgstr ""
|
||||
@@ -2049,7 +2084,7 @@ msgid "Full Name"
|
||||
msgstr "Puno ime"
|
||||
|
||||
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
|
||||
#: frontend/src/pages/Jobs.vue:118
|
||||
#: frontend/src/pages/Jobs.vue:150
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
msgid "Full Time"
|
||||
msgstr ""
|
||||
@@ -2147,6 +2182,10 @@ msgstr ""
|
||||
msgid "Hello"
|
||||
msgstr "Zdravo"
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:11
|
||||
msgid "Help Us Improve"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/courses_created.html:15
|
||||
msgid "Help others learn something new by creating a course."
|
||||
msgstr ""
|
||||
@@ -2155,10 +2194,6 @@ msgstr ""
|
||||
msgid "Help us improve our course material."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/web_template/courses_enrolled/courses_enrolled.html:18
|
||||
msgid "Here are a few courses we recommend for you to get started with {0}"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/notification/certificate_request_reminder/certificate_request_reminder.html:1
|
||||
#: lms/templates/emails/certificate_request_notification.html:1
|
||||
msgid "Hey {0}"
|
||||
@@ -2360,9 +2395,11 @@ msgid "Instructor Notes"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch'
|
||||
#. Label of the instructors (Rating) field in DocType 'LMS Batch Feedback'
|
||||
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course'
|
||||
#: frontend/src/pages/BatchForm.vue:89 frontend/src/pages/CourseForm.vue:154
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
msgid "Instructors"
|
||||
msgstr ""
|
||||
@@ -2437,7 +2474,7 @@ msgstr ""
|
||||
|
||||
#. Label of the issue_date (Date) field in DocType 'Certification'
|
||||
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:34
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:28
|
||||
#: frontend/src/components/Modals/Event.vue:121
|
||||
#: lms/lms/doctype/certification/certification.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
@@ -2450,6 +2487,7 @@ msgid "Issued On"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProfileAbout.vue:56
|
||||
#: frontend/src/pages/ProfileCertificates.vue:17
|
||||
#: lms/templates/certificates_section.html:11
|
||||
msgid "Issued on"
|
||||
msgstr ""
|
||||
@@ -2487,7 +2525,7 @@ msgstr ""
|
||||
msgid "Job Details"
|
||||
msgstr ""
|
||||
|
||||
#: lms/www/lms.py:108
|
||||
#: lms/www/lms.py:109
|
||||
msgid "Job Openings"
|
||||
msgstr ""
|
||||
|
||||
@@ -2566,6 +2604,11 @@ msgstr ""
|
||||
msgid "LMS Batch"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "LMS Batch Feedback"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
||||
msgid "LMS Batch Old"
|
||||
@@ -2725,6 +2768,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_assignment/lms_assignment.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
#: lms/lms/doctype/lms_course_progress/lms_course_progress.json
|
||||
@@ -2870,16 +2914,13 @@ msgid "LiveCode URL"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Members.vue:106
|
||||
#: frontend/src/pages/Assignments.vue:71
|
||||
#: frontend/src/pages/Assignments.vue:71 frontend/src/pages/Batches.vue:88
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:71
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:39
|
||||
#: frontend/src/pages/Quizzes.vue:51
|
||||
msgid "Load More"
|
||||
msgstr "Učitaj još"
|
||||
|
||||
#: frontend/src/pages/Batches.vue:40
|
||||
msgid "Loading Batches..."
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Auto Recording' (Select) field in DocType 'LMS Live Class'
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
msgid "Local"
|
||||
@@ -2902,7 +2943,7 @@ msgstr ""
|
||||
|
||||
#: frontend/src/components/AssignmentBlock.vue:13
|
||||
#: frontend/src/components/NoPermission.vue:28
|
||||
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:175
|
||||
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:178
|
||||
#: frontend/src/pages/Lesson.vue:24
|
||||
msgid "Login"
|
||||
msgstr "Prijava"
|
||||
@@ -3007,6 +3048,7 @@ msgstr "Srednje:"
|
||||
#. Label of the member (Link) field in DocType 'Exercise Submission'
|
||||
#. Label of the member (Link) field in DocType 'LMS Assignment Submission'
|
||||
#. Label of the member (Link) field in DocType 'LMS Badge Assignment'
|
||||
#. Label of the member (Link) field in DocType 'LMS Batch Feedback'
|
||||
#. Label of the member (Link) field in DocType 'LMS Certificate'
|
||||
#. Label of the member (Link) field in DocType 'LMS Certificate Evaluation'
|
||||
#. Label of the member (Link) field in DocType 'LMS Certificate Request'
|
||||
@@ -3024,6 +3066,7 @@ msgstr "Srednje:"
|
||||
#: lms/lms/doctype/exercise_submission/exercise_submission.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.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
|
||||
@@ -3049,8 +3092,15 @@ msgstr ""
|
||||
msgid "Member Email"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the member_image (Attach Image) field in DocType 'LMS Batch
|
||||
#. Feedback'
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "Member Image"
|
||||
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 Batch Feedback'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Certificate'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Certificate
|
||||
#. Evaluation'
|
||||
@@ -3061,6 +3111,7 @@ msgstr ""
|
||||
#. 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_batch_feedback/lms_batch_feedback.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
|
||||
@@ -3223,7 +3274,7 @@ msgid "My calendar"
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
||||
#: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:30
|
||||
#: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:17
|
||||
#: frontend/src/pages/Courses.vue:45 frontend/src/pages/Programs.vue:14
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "New"
|
||||
@@ -3237,15 +3288,15 @@ msgstr ""
|
||||
msgid "New Assignment Submission"
|
||||
msgstr ""
|
||||
|
||||
#: lms/public/js/common_functions.js:255 lms/www/lms.py:86
|
||||
#: lms/public/js/common_functions.js:255 lms/www/lms.py:87
|
||||
msgid "New Batch"
|
||||
msgstr ""
|
||||
|
||||
#: lms/www/lms.py:37
|
||||
#: lms/www/lms.py:38
|
||||
msgid "New Course"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Jobs.vue:39
|
||||
#: frontend/src/pages/Jobs.vue:23
|
||||
msgid "New Job"
|
||||
msgstr ""
|
||||
|
||||
@@ -3278,11 +3329,11 @@ msgstr ""
|
||||
msgid "New Sign Up"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:623
|
||||
#: lms/lms/utils.py:605
|
||||
msgid "New comment in batch {0}"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:616
|
||||
#: lms/lms/utils.py:598
|
||||
msgid "New reply on the topic {0} in course {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -3324,7 +3375,7 @@ msgstr ""
|
||||
msgid "No assignments found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:125
|
||||
#: frontend/src/pages/Batches.vue:73
|
||||
msgid "No batches found"
|
||||
msgstr ""
|
||||
|
||||
@@ -3348,11 +3399,15 @@ msgstr ""
|
||||
msgid "No courses under review"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:101
|
||||
msgid "No feedback received yet."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProfileAbout.vue:12
|
||||
msgid "No introduction"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Jobs.vue:63
|
||||
#: frontend/src/pages/Jobs.vue:77
|
||||
msgid "No jobs posted"
|
||||
msgstr ""
|
||||
|
||||
@@ -3360,6 +3415,10 @@ msgstr ""
|
||||
msgid "No live classes scheduled"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:81
|
||||
msgid "No participants found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:91
|
||||
msgid "No programs found"
|
||||
msgstr ""
|
||||
@@ -3384,10 +3443,6 @@ msgstr ""
|
||||
msgid "No {0}"
|
||||
msgstr "Bez {0}"
|
||||
|
||||
#: frontend/src/pages/Batches.vue:84
|
||||
msgid "No {0} batches"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:107
|
||||
msgid "No {0} courses"
|
||||
msgstr ""
|
||||
@@ -3420,7 +3475,7 @@ msgstr ""
|
||||
msgid "Not Graded"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:143
|
||||
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:146
|
||||
msgid "Not Permitted"
|
||||
msgstr "Nije dozvoljeno"
|
||||
|
||||
@@ -3614,7 +3669,7 @@ msgid "Pan Number"
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
|
||||
#: frontend/src/pages/Jobs.vue:119
|
||||
#: frontend/src/pages/Jobs.vue:151
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
msgid "Part Time"
|
||||
msgstr ""
|
||||
@@ -3765,11 +3820,11 @@ msgstr "Molimo provjerite svoju e-poštu za potvrdu"
|
||||
msgid "Please click on the following button to set your new password"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1887 lms/lms/utils.py:1891
|
||||
#: lms/lms/utils.py:1815 lms/lms/utils.py:1819
|
||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:256
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:261
|
||||
msgid "Please enable Zoom Settings to use this feature."
|
||||
msgstr ""
|
||||
|
||||
@@ -3786,7 +3841,7 @@ msgid "Please enter a title."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:40
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:122
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:125
|
||||
msgid "Please enter a valid URL."
|
||||
msgstr ""
|
||||
|
||||
@@ -3794,7 +3849,7 @@ msgstr ""
|
||||
msgid "Please enter a valid time in the format HH:mm."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:116
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:119
|
||||
msgid "Please enter the URL for assignment submission."
|
||||
msgstr ""
|
||||
|
||||
@@ -3802,7 +3857,7 @@ msgstr ""
|
||||
msgid "Please enter your answer"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:66
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:71
|
||||
msgid "Please install the Payments app to create a paid batches."
|
||||
msgstr ""
|
||||
|
||||
@@ -3822,7 +3877,7 @@ msgstr ""
|
||||
msgid "Please login to access the quiz."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/NoPermission.vue:25 frontend/src/pages/Batch.vue:154
|
||||
#: frontend/src/components/NoPermission.vue:25 frontend/src/pages/Batch.vue:157
|
||||
msgid "Please login to access this page."
|
||||
msgstr ""
|
||||
|
||||
@@ -3863,7 +3918,7 @@ msgstr ""
|
||||
msgid "Please upload a SCORM package"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:119
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:122
|
||||
msgid "Please upload the assignment file."
|
||||
msgstr ""
|
||||
|
||||
@@ -3897,7 +3952,7 @@ msgid "Possible Answer 4"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/DiscussionReplies.vue:52
|
||||
#: frontend/src/components/DiscussionReplies.vue:86
|
||||
#: frontend/src/components/DiscussionReplies.vue:87
|
||||
msgid "Post"
|
||||
msgstr "Objava"
|
||||
|
||||
@@ -4326,19 +4381,19 @@ msgstr ""
|
||||
msgid "Route"
|
||||
msgstr "Ruta"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:199
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:204
|
||||
msgid "Row #{0} Date cannot be outside the batch duration."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:194
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:199
|
||||
msgid "Row #{0} End time cannot be outside the batch duration."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:176
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:181
|
||||
msgid "Row #{0} Start time cannot be greater than or equal to end time."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:185
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:190
|
||||
msgid "Row #{0} Start time cannot be outside the batch duration."
|
||||
msgstr ""
|
||||
|
||||
@@ -4419,10 +4474,18 @@ msgstr ""
|
||||
msgid "Score Out Of"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Members.vue:15
|
||||
#: frontend/src/components/Members.vue:15 frontend/src/pages/Jobs.vue:38
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:17
|
||||
msgid "Search by Name"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:39
|
||||
msgid "Search by Title"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Assignments.vue:25
|
||||
msgid "Search by title"
|
||||
msgstr ""
|
||||
@@ -4719,7 +4782,7 @@ msgstr ""
|
||||
#. Label of the statistics (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/components/BatchStudents.vue:5
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:133
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:134
|
||||
msgid "Statistics"
|
||||
msgstr "Statistika"
|
||||
|
||||
@@ -4784,7 +4847,7 @@ msgstr ""
|
||||
msgid "Student Reviews"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:48
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:53
|
||||
msgid "Student {0} has already been added to this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -4832,6 +4895,7 @@ msgstr ""
|
||||
msgid "Submission by"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:14
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:9
|
||||
#: frontend/src/components/Modals/BatchCourseModal.vue:9
|
||||
#: frontend/src/components/Modals/EvaluationModal.vue:9
|
||||
@@ -4889,7 +4953,7 @@ msgstr ""
|
||||
msgid "Sunday"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:964
|
||||
#: lms/lms/api.py:983
|
||||
msgid "Suspicious pattern found in {0}: {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -4915,6 +4979,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
||||
#: lms/lms/doctype/lms_category/lms_category.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
@@ -4997,6 +5062,10 @@ msgstr ""
|
||||
msgid "Text"
|
||||
msgstr "Tekst"
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:7
|
||||
msgid "Thank you for providing your feedback!"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/emails/lms_course_interest.html:17
|
||||
#: lms/templates/emails/lms_invite_request_approved.html:15
|
||||
#: lms/templates/emails/mentor_request_creation_email.html:7
|
||||
@@ -5004,7 +5073,7 @@ msgstr "Tekst"
|
||||
msgid "Thanks and Regards"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1794
|
||||
#: lms/lms/utils.py:1722
|
||||
msgid "The batch is full. Please contact the Administrator."
|
||||
msgstr ""
|
||||
|
||||
@@ -5028,8 +5097,8 @@ msgstr ""
|
||||
msgid "The status of your application has changed."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:129
|
||||
msgid "There are no batches available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
#: frontend/src/pages/Batches.vue:77
|
||||
msgid "There are no batches matching the criteria. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/CreateOutline.vue:12
|
||||
@@ -5040,11 +5109,15 @@ 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/CertifiedParticipants.vue:84
|
||||
msgid "There are no participants matching this criteria."
|
||||
msgstr ""
|
||||
|
||||
#: 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 ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:146
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:151
|
||||
msgid "There are no seats available in this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -5060,7 +5133,7 @@ msgstr ""
|
||||
msgid "There are no {0} on this site."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:82
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:85
|
||||
msgid "There has been an update on your submission for assignment {0}"
|
||||
msgstr ""
|
||||
|
||||
@@ -5091,7 +5164,7 @@ msgstr ""
|
||||
msgid "This course has:"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1645
|
||||
#: lms/lms/utils.py:1573
|
||||
msgid "This course is free."
|
||||
msgstr ""
|
||||
|
||||
@@ -5235,7 +5308,7 @@ msgstr ""
|
||||
msgid "To Date"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1656
|
||||
#: lms/lms/utils.py:1584
|
||||
msgid "To join this batch, please contact the Administrator."
|
||||
msgstr ""
|
||||
|
||||
@@ -5291,7 +5364,7 @@ msgstr ""
|
||||
#: frontend/src/components/Modals/Question.vue:54
|
||||
#: frontend/src/pages/AssignmentForm.vue:39
|
||||
#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:157
|
||||
#: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:16
|
||||
#: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:55
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
#: lms/lms/doctype/lms_assignment/lms_assignment.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
@@ -5337,6 +5410,10 @@ msgstr ""
|
||||
msgid "Unlisted"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:262 frontend/src/pages/Batches.vue:278
|
||||
msgid "Unpublished"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/EditCoverImage.vue:60
|
||||
#: frontend/src/components/UnsplashImageBrowser.vue:54
|
||||
msgid "Unsplash"
|
||||
@@ -5354,12 +5431,13 @@ msgstr ""
|
||||
|
||||
#. Option for the 'Status' (Select) field in DocType 'Cohort'
|
||||
#. Label of the upcoming (Check) field in DocType 'LMS Course'
|
||||
#: frontend/src/pages/Batches.vue:258 frontend/src/pages/Batches.vue:276
|
||||
#: frontend/src/pages/CourseForm.vue:184 lms/lms/doctype/cohort/cohort.json
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
msgid "Upcoming"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batch.vue:166
|
||||
#: frontend/src/pages/Batch.vue:169
|
||||
msgid "Upcoming Batches"
|
||||
msgstr ""
|
||||
|
||||
@@ -5421,7 +5499,7 @@ msgstr ""
|
||||
msgid "User Skill"
|
||||
msgstr ""
|
||||
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.py:37
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.py:40
|
||||
msgid "User {0} has reported the job post {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -5446,6 +5524,11 @@ msgstr ""
|
||||
msgid "Valid email and name required"
|
||||
msgstr "Potrebna je valjana adresa e-pošte i ime"
|
||||
|
||||
#. Label of the value (Rating) field in DocType 'LMS Batch Feedback'
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "Value"
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "Value Change"
|
||||
@@ -5569,7 +5652,7 @@ msgstr ""
|
||||
msgid "You are already enrolled for this course."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batch.vue:148
|
||||
#: frontend/src/pages/Batch.vue:151
|
||||
msgid "You are not a member of this batch. Please checkout our upcoming batches."
|
||||
msgstr ""
|
||||
|
||||
@@ -5606,10 +5689,6 @@ msgstr ""
|
||||
msgid "You can find their resume attached to this email."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:113
|
||||
msgid "You can link courses and assessments to it."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:115
|
||||
msgid "You cannot schedule evaluations after {0}."
|
||||
msgstr ""
|
||||
@@ -5671,10 +5750,6 @@ msgstr ""
|
||||
msgid "You have opted to be notified for this course. You will receive an email when the course becomes available."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/web_template/courses_enrolled/courses_enrolled.html:17
|
||||
msgid "You haven't enrolled for any courses"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/CourseCardOverlay.vue:146
|
||||
msgid "You need to login first to enroll for this course"
|
||||
msgstr ""
|
||||
@@ -5769,10 +5844,6 @@ msgstr ""
|
||||
msgid "in the last"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProfileCertificates.vue:17
|
||||
msgid "issued on"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/signup-form.html:12
|
||||
msgid "jane@example.com"
|
||||
msgstr "jane@example.com"
|
||||
@@ -5793,8 +5864,8 @@ msgstr "od"
|
||||
msgid "out of"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/JobCard.vue:37
|
||||
msgid "posted by"
|
||||
#: frontend/src/components/JobCard.vue:30
|
||||
msgid "posted"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:386
|
||||
@@ -5817,7 +5888,7 @@ msgstr ""
|
||||
msgid "you can"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:761 lms/lms/api.py:769
|
||||
#: lms/lms/api.py:780 lms/lms/api.py:788
|
||||
msgid "{0} Settings not found"
|
||||
msgstr ""
|
||||
|
||||
@@ -5845,7 +5916,11 @@ msgstr ""
|
||||
msgid "{0} is already a {1} of the course {2}"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:59
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:91
|
||||
msgid "{0} is already certified for the batch {1}"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:72
|
||||
msgid "{0} is already certified for the course {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -5853,7 +5928,7 @@ msgstr ""
|
||||
msgid "{0} is your evaluator"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:700
|
||||
#: lms/lms/utils.py:682
|
||||
msgid "{0} mentioned you in a comment"
|
||||
msgstr ""
|
||||
|
||||
@@ -5861,11 +5936,11 @@ msgstr ""
|
||||
msgid "{0} mentioned you in a comment in your batch."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:653 lms/lms/utils.py:659
|
||||
#: lms/lms/utils.py:635 lms/lms/utils.py:641
|
||||
msgid "{0} mentioned you in a comment in {1}"
|
||||
msgstr "{0} vas je spomenuo u komentaru u {1}"
|
||||
|
||||
#: lms/lms/utils.py:476
|
||||
#: lms/lms/utils.py:458
|
||||
msgid "{0}k"
|
||||
msgstr ""
|
||||
|
||||
|
||||
275
lms/locale/de.po
275
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-10 16:04+0000\n"
|
||||
"PO-Revision-Date: 2025-01-13 06:31\n"
|
||||
"POT-Creation-Date: 2025-01-17 16:04+0000\n"
|
||||
"PO-Revision-Date: 2025-01-20 11:13\n"
|
||||
"Last-Translator: jannat@frappe.io\n"
|
||||
"Language-Team: German\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -75,7 +75,7 @@ msgstr ""
|
||||
msgid "About"
|
||||
msgstr "Über"
|
||||
|
||||
#: frontend/src/pages/Batch.vue:93
|
||||
#: frontend/src/pages/Batch.vue:96
|
||||
msgid "About this batch"
|
||||
msgstr ""
|
||||
|
||||
@@ -212,14 +212,26 @@ msgid "Admin"
|
||||
msgstr "Admin"
|
||||
|
||||
#. Name of a role
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
#: frontend/src/pages/Batches.vue:270 lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "All"
|
||||
msgstr "Alle"
|
||||
|
||||
#: frontend/src/pages/Batches.vue:26
|
||||
msgid "All Batches"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:12
|
||||
msgid "All Certified Participants"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/widgets/BreadCrumb.html:3
|
||||
msgid "All Courses"
|
||||
msgstr "Alle Kurse"
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:51
|
||||
msgid "All Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/quiz/quiz.html:141
|
||||
msgid "All Submissions"
|
||||
msgstr "Alle Einsendungen"
|
||||
@@ -279,7 +291,7 @@ msgstr ""
|
||||
msgid "Amount Field"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:70
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:75
|
||||
msgid "Amount and currency are required for paid batches."
|
||||
msgstr ""
|
||||
|
||||
@@ -353,6 +365,10 @@ msgstr "Genehmigt"
|
||||
msgid "Apps"
|
||||
msgstr "Apps"
|
||||
|
||||
#: frontend/src/pages/Batches.vue:259 frontend/src/pages/Batches.vue:277
|
||||
msgid "Archived"
|
||||
msgstr "Archiviert"
|
||||
|
||||
#. Label of the user_category (Check) field in DocType 'LMS Settings'
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Ask User Category during Signup"
|
||||
@@ -381,7 +397,7 @@ msgstr "Prüfungstyp"
|
||||
msgid "Assessment added successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:80
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:85
|
||||
msgid "Assessment {0} has already been added to this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -473,6 +489,10 @@ msgstr ""
|
||||
msgid "Average Rating"
|
||||
msgstr "Durchschnittliche Bewertung"
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:38
|
||||
msgid "Average of Feedback Received"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Lesson.vue:96
|
||||
msgid "Back to Course"
|
||||
msgstr ""
|
||||
@@ -493,10 +513,12 @@ msgstr "Abzeichen Beschreibung"
|
||||
msgid "Badge Image"
|
||||
msgstr "Abzeichen Bild"
|
||||
|
||||
#. Label of the batch (Link) field in DocType 'LMS Batch Feedback'
|
||||
#. Label of the batch_name (Link) field in DocType 'LMS Certificate'
|
||||
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
|
||||
#. Label of the batch_name (Link) field in DocType 'LMS Live Class'
|
||||
#: frontend/src/components/Modals/Event.vue:32
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
@@ -578,7 +600,9 @@ msgstr ""
|
||||
msgid "Batch Student"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the batch_title (Data) field in DocType 'LMS Certificate'
|
||||
#. Label of the batch_title (Data) field in DocType 'LMS Certificate Request'
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
msgid "Batch Title"
|
||||
msgstr ""
|
||||
@@ -587,14 +611,15 @@ msgstr ""
|
||||
msgid "Batch Updated"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:41
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:46
|
||||
msgid "Batch end date cannot be before the batch start date"
|
||||
msgstr ""
|
||||
|
||||
#. Group in LMS Course's connections
|
||||
#. Label of the batches (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/pages/Batches.vue:8 lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:60
|
||||
#: frontend/src/pages/Batches.vue:285
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:61
|
||||
msgid "Batches"
|
||||
msgstr ""
|
||||
|
||||
@@ -689,7 +714,8 @@ msgstr ""
|
||||
#. Label of the category (Link) field in DocType 'LMS Batch'
|
||||
#. Label of the category (Data) field in DocType 'LMS Category'
|
||||
#. Label of the category (Link) field in DocType 'LMS Course'
|
||||
#: frontend/src/pages/BatchForm.vue:202 frontend/src/pages/Batches.vue:16
|
||||
#: frontend/src/pages/BatchForm.vue:202 frontend/src/pages/Batches.vue:49
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:29
|
||||
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:17
|
||||
#: frontend/src/pages/JobDetail.vue:102
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
@@ -756,6 +782,7 @@ msgid "Certification Name"
|
||||
msgstr "Zertifizierungsname"
|
||||
|
||||
#. Label of the certified_participants (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:153
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Certified Participants"
|
||||
msgstr "Zertifizierte Teilnehmer"
|
||||
@@ -1048,7 +1075,7 @@ msgstr ""
|
||||
msgid "Confirmation Email Sent"
|
||||
msgstr "Bestätigungs-E-Mail gesendet"
|
||||
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:25
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:29
|
||||
msgid "Congratulations on getting certified!"
|
||||
msgstr "Herzlichen Glückwunsch zur Zertifizierung!"
|
||||
|
||||
@@ -1057,8 +1084,10 @@ msgid "Contact the Administrator to enroll for this course."
|
||||
msgstr ""
|
||||
|
||||
#. Label of the content (Text) field in DocType 'Course Lesson'
|
||||
#. Label of the content (Rating) field in DocType 'LMS Batch Feedback'
|
||||
#: frontend/src/pages/LessonForm.vue:62
|
||||
#: lms/lms/doctype/course_lesson/course_lesson.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "Content"
|
||||
msgstr "Inhalt"
|
||||
|
||||
@@ -1067,7 +1096,7 @@ msgid "Continue Learning"
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
|
||||
#: frontend/src/pages/Jobs.vue:120
|
||||
#: frontend/src/pages/Jobs.vue:152
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
msgid "Contract"
|
||||
msgstr "Vertrag"
|
||||
@@ -1133,7 +1162,7 @@ msgstr "Land"
|
||||
#. Label of a Link in the LMS Workspace
|
||||
#. Label of a shortcut in the LMS Workspace
|
||||
#: frontend/src/components/Modals/BatchCourseModal.vue:20
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:23
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:38
|
||||
#: frontend/src/components/Modals/EvaluationModal.vue:20
|
||||
#: frontend/src/components/Modals/Event.vue:24
|
||||
#: lms/lms/doctype/batch_course/batch_course.json
|
||||
@@ -1220,7 +1249,7 @@ msgstr "Kursleiter"
|
||||
msgid "Course Lesson"
|
||||
msgstr "Kurslektion"
|
||||
|
||||
#: lms/www/lms.py:27
|
||||
#: lms/www/lms.py:28
|
||||
msgid "Course List"
|
||||
msgstr "Kursliste"
|
||||
|
||||
@@ -1270,7 +1299,7 @@ msgstr "Kurstitel"
|
||||
msgid "Course added to program"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:345
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:350
|
||||
msgid "Course already added to the batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -1282,7 +1311,7 @@ msgstr ""
|
||||
msgid "Course moved successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:59
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:64
|
||||
#: lms/lms/doctype/lms_program/lms_program.py:19
|
||||
msgid "Course {0} has already been added to this batch."
|
||||
msgstr ""
|
||||
@@ -1333,10 +1362,6 @@ msgstr ""
|
||||
msgid "Create LMS Certificate Evaluation"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:110
|
||||
msgid "Create a Batch"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:132 lms/templates/onboarding_header.html:19
|
||||
msgid "Create a Course"
|
||||
msgstr "Einen Kurs erstellen"
|
||||
@@ -1732,6 +1757,10 @@ msgstr "Endzeit"
|
||||
msgid "Enroll Now"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:274
|
||||
msgid "Enrolled"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/CourseCard.vue:43
|
||||
#: frontend/src/components/CourseCardOverlay.vue:104
|
||||
#: frontend/src/pages/CourseDetail.vue:33
|
||||
@@ -1742,7 +1771,7 @@ msgstr "Eingeschriebene Studenten"
|
||||
msgid "Enrolled successfully"
|
||||
msgstr "Erfolgreich eingeschrieben"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:103
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:108
|
||||
msgid "Enrollment Confirmation for the Next Training Batch"
|
||||
msgstr ""
|
||||
|
||||
@@ -1751,7 +1780,7 @@ msgstr ""
|
||||
msgid "Enrollment Count"
|
||||
msgstr "Anzahl der Einschreibungen"
|
||||
|
||||
#: lms/lms/utils.py:1765
|
||||
#: lms/lms/utils.py:1693
|
||||
msgid "Enrollment Failed"
|
||||
msgstr ""
|
||||
|
||||
@@ -1821,7 +1850,7 @@ msgstr ""
|
||||
msgid "Evaluation Request"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:87
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:92
|
||||
msgid "Evaluation end date cannot be less than the batch end date."
|
||||
msgstr ""
|
||||
|
||||
@@ -1836,7 +1865,7 @@ msgstr ""
|
||||
#. Label of the evaluator (Link) field in DocType 'LMS Certificate Evaluation'
|
||||
#. Label of the evaluator (Link) field in DocType 'LMS Certificate Request'
|
||||
#: frontend/src/components/Modals/BatchCourseModal.vue:26
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:28
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:22
|
||||
#: frontend/src/pages/ProfileRoles.vue:22
|
||||
#: lms/lms/doctype/batch_course/batch_course.json
|
||||
#: lms/lms/doctype/course_evaluator/course_evaluator.json
|
||||
@@ -1914,7 +1943,7 @@ msgid "Expiration Date"
|
||||
msgstr "Ablaufdatum"
|
||||
|
||||
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:39
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:33
|
||||
#: frontend/src/components/Modals/Event.vue:126
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
msgid "Expiry Date"
|
||||
@@ -1955,6 +1984,12 @@ msgstr "Fehler"
|
||||
msgid "Featured"
|
||||
msgstr "Vorgestellt"
|
||||
|
||||
#. Label of the feedback (Small Text) field in DocType 'LMS Batch Feedback'
|
||||
#: frontend/src/components/BatchFeedback.vue:29
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "Feedback"
|
||||
msgstr "Rückmeldung"
|
||||
|
||||
#: frontend/src/components/Assignment.vue:61
|
||||
msgid "Feel free to make edits to your submission if needed."
|
||||
msgstr "Bei Bedarf können Sie Änderungen an Ihrer Einreichung vornehmen."
|
||||
@@ -1974,7 +2009,7 @@ msgstr ""
|
||||
msgid "File Type"
|
||||
msgstr "Dateityp"
|
||||
|
||||
#: frontend/src/pages/Jobs.vue:47
|
||||
#: frontend/src/pages/Jobs.vue:33
|
||||
msgid "Find the perfect job for you"
|
||||
msgstr ""
|
||||
|
||||
@@ -2007,7 +2042,7 @@ msgid "Free"
|
||||
msgstr "Frei"
|
||||
|
||||
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
|
||||
#: frontend/src/pages/Jobs.vue:121
|
||||
#: frontend/src/pages/Jobs.vue:153
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
msgid "Freelance"
|
||||
msgstr ""
|
||||
@@ -2049,7 +2084,7 @@ msgid "Full Name"
|
||||
msgstr "Vollständiger Name"
|
||||
|
||||
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
|
||||
#: frontend/src/pages/Jobs.vue:118
|
||||
#: frontend/src/pages/Jobs.vue:150
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
msgid "Full Time"
|
||||
msgstr "Vollzeit"
|
||||
@@ -2147,6 +2182,10 @@ msgstr "Überschrift"
|
||||
msgid "Hello"
|
||||
msgstr "Hallo"
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:11
|
||||
msgid "Help Us Improve"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/courses_created.html:15
|
||||
msgid "Help others learn something new by creating a course."
|
||||
msgstr "Helfen Sie anderen, etwas Neues zu lernen, indem Sie einen Kurs erstellen."
|
||||
@@ -2155,10 +2194,6 @@ msgstr "Helfen Sie anderen, etwas Neues zu lernen, indem Sie einen Kurs erstelle
|
||||
msgid "Help us improve our course material."
|
||||
msgstr "Helfen Sie uns, unser Kursmaterial zu verbessern."
|
||||
|
||||
#: lms/lms/web_template/courses_enrolled/courses_enrolled.html:18
|
||||
msgid "Here are a few courses we recommend for you to get started with {0}"
|
||||
msgstr "Hier sind ein paar Kurse, die wir Ihnen für den Einstieg in {0} empfehlen"
|
||||
|
||||
#: lms/lms/notification/certificate_request_reminder/certificate_request_reminder.html:1
|
||||
#: lms/templates/emails/certificate_request_notification.html:1
|
||||
msgid "Hey {0}"
|
||||
@@ -2360,9 +2395,11 @@ msgid "Instructor Notes"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch'
|
||||
#. Label of the instructors (Rating) field in DocType 'LMS Batch Feedback'
|
||||
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course'
|
||||
#: frontend/src/pages/BatchForm.vue:89 frontend/src/pages/CourseForm.vue:154
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
msgid "Instructors"
|
||||
msgstr "Dozenten"
|
||||
@@ -2437,7 +2474,7 @@ msgstr ""
|
||||
|
||||
#. Label of the issue_date (Date) field in DocType 'Certification'
|
||||
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:34
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:28
|
||||
#: frontend/src/components/Modals/Event.vue:121
|
||||
#: lms/lms/doctype/certification/certification.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
@@ -2450,6 +2487,7 @@ msgid "Issued On"
|
||||
msgstr "Ausgestellt am"
|
||||
|
||||
#: frontend/src/pages/ProfileAbout.vue:56
|
||||
#: frontend/src/pages/ProfileCertificates.vue:17
|
||||
#: lms/templates/certificates_section.html:11
|
||||
msgid "Issued on"
|
||||
msgstr "Ausgestellt am"
|
||||
@@ -2487,7 +2525,7 @@ msgstr ""
|
||||
msgid "Job Details"
|
||||
msgstr ""
|
||||
|
||||
#: lms/www/lms.py:108
|
||||
#: lms/www/lms.py:109
|
||||
msgid "Job Openings"
|
||||
msgstr "Stellenausschreibungen"
|
||||
|
||||
@@ -2566,6 +2604,11 @@ msgstr ""
|
||||
msgid "LMS Batch"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "LMS Batch Feedback"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
||||
msgid "LMS Batch Old"
|
||||
@@ -2725,6 +2768,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_assignment/lms_assignment.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
#: lms/lms/doctype/lms_course_progress/lms_course_progress.json
|
||||
@@ -2870,16 +2914,13 @@ msgid "LiveCode URL"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Members.vue:106
|
||||
#: frontend/src/pages/Assignments.vue:71
|
||||
#: frontend/src/pages/Assignments.vue:71 frontend/src/pages/Batches.vue:88
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:71
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:39
|
||||
#: frontend/src/pages/Quizzes.vue:51
|
||||
msgid "Load More"
|
||||
msgstr "Mehr laden"
|
||||
|
||||
#: frontend/src/pages/Batches.vue:40
|
||||
msgid "Loading Batches..."
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Auto Recording' (Select) field in DocType 'LMS Live Class'
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
msgid "Local"
|
||||
@@ -2902,7 +2943,7 @@ msgstr ""
|
||||
|
||||
#: frontend/src/components/AssignmentBlock.vue:13
|
||||
#: frontend/src/components/NoPermission.vue:28
|
||||
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:175
|
||||
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:178
|
||||
#: frontend/src/pages/Lesson.vue:24
|
||||
msgid "Login"
|
||||
msgstr "Anmelden"
|
||||
@@ -3007,6 +3048,7 @@ msgstr "Mittel:"
|
||||
#. Label of the member (Link) field in DocType 'Exercise Submission'
|
||||
#. Label of the member (Link) field in DocType 'LMS Assignment Submission'
|
||||
#. Label of the member (Link) field in DocType 'LMS Badge Assignment'
|
||||
#. Label of the member (Link) field in DocType 'LMS Batch Feedback'
|
||||
#. Label of the member (Link) field in DocType 'LMS Certificate'
|
||||
#. Label of the member (Link) field in DocType 'LMS Certificate Evaluation'
|
||||
#. Label of the member (Link) field in DocType 'LMS Certificate Request'
|
||||
@@ -3024,6 +3066,7 @@ msgstr "Mittel:"
|
||||
#: lms/lms/doctype/exercise_submission/exercise_submission.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.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
|
||||
@@ -3049,8 +3092,15 @@ msgstr ""
|
||||
msgid "Member Email"
|
||||
msgstr "E-Mail des Mitglieds"
|
||||
|
||||
#. Label of the member_image (Attach Image) field in DocType 'LMS Batch
|
||||
#. Feedback'
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "Member Image"
|
||||
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 Batch Feedback'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Certificate'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Certificate
|
||||
#. Evaluation'
|
||||
@@ -3061,6 +3111,7 @@ msgstr "E-Mail des Mitglieds"
|
||||
#. 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_batch_feedback/lms_batch_feedback.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
|
||||
@@ -3223,7 +3274,7 @@ msgid "My calendar"
|
||||
msgstr "Mein Kalender"
|
||||
|
||||
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
||||
#: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:30
|
||||
#: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:17
|
||||
#: frontend/src/pages/Courses.vue:45 frontend/src/pages/Programs.vue:14
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "New"
|
||||
@@ -3237,15 +3288,15 @@ msgstr ""
|
||||
msgid "New Assignment Submission"
|
||||
msgstr ""
|
||||
|
||||
#: lms/public/js/common_functions.js:255 lms/www/lms.py:86
|
||||
#: lms/public/js/common_functions.js:255 lms/www/lms.py:87
|
||||
msgid "New Batch"
|
||||
msgstr ""
|
||||
|
||||
#: lms/www/lms.py:37
|
||||
#: lms/www/lms.py:38
|
||||
msgid "New Course"
|
||||
msgstr "Neuer Kurs"
|
||||
|
||||
#: frontend/src/pages/Jobs.vue:39
|
||||
#: frontend/src/pages/Jobs.vue:23
|
||||
msgid "New Job"
|
||||
msgstr ""
|
||||
|
||||
@@ -3278,11 +3329,11 @@ msgstr ""
|
||||
msgid "New Sign Up"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:623
|
||||
#: lms/lms/utils.py:605
|
||||
msgid "New comment in batch {0}"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:616
|
||||
#: lms/lms/utils.py:598
|
||||
msgid "New reply on the topic {0} in course {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -3324,7 +3375,7 @@ msgstr "Keine Ankündigungen"
|
||||
msgid "No assignments found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:125
|
||||
#: frontend/src/pages/Batches.vue:73
|
||||
msgid "No batches found"
|
||||
msgstr ""
|
||||
|
||||
@@ -3348,11 +3399,15 @@ msgstr ""
|
||||
msgid "No courses under review"
|
||||
msgstr "Keine Kurse in Überprüfung"
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:101
|
||||
msgid "No feedback received yet."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProfileAbout.vue:12
|
||||
msgid "No introduction"
|
||||
msgstr "Keine Einführung"
|
||||
|
||||
#: frontend/src/pages/Jobs.vue:63
|
||||
#: frontend/src/pages/Jobs.vue:77
|
||||
msgid "No jobs posted"
|
||||
msgstr "Keine Stellen ausgeschrieben"
|
||||
|
||||
@@ -3360,6 +3415,10 @@ msgstr "Keine Stellen ausgeschrieben"
|
||||
msgid "No live classes scheduled"
|
||||
msgstr "Keine Live-Kurse geplant"
|
||||
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:81
|
||||
msgid "No participants found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:91
|
||||
msgid "No programs found"
|
||||
msgstr ""
|
||||
@@ -3384,10 +3443,6 @@ msgstr "Keine bevorstehenden Bewertungen."
|
||||
msgid "No {0}"
|
||||
msgstr "Keine {0}"
|
||||
|
||||
#: frontend/src/pages/Batches.vue:84
|
||||
msgid "No {0} batches"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:107
|
||||
msgid "No {0} courses"
|
||||
msgstr ""
|
||||
@@ -3420,7 +3475,7 @@ msgstr "Nicht für die Vorschau verfügbar"
|
||||
msgid "Not Graded"
|
||||
msgstr "Nicht bewertet"
|
||||
|
||||
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:143
|
||||
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:146
|
||||
msgid "Not Permitted"
|
||||
msgstr "Nicht zulässig"
|
||||
|
||||
@@ -3614,7 +3669,7 @@ msgid "Pan Number"
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
|
||||
#: frontend/src/pages/Jobs.vue:119
|
||||
#: frontend/src/pages/Jobs.vue:151
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
msgid "Part Time"
|
||||
msgstr "Teilzeit"
|
||||
@@ -3765,11 +3820,11 @@ msgstr "Bitte überprüfen Sie Ihren Posteingang. Wir haben Ihnen eine E-Mail mi
|
||||
msgid "Please click on the following button to set your new password"
|
||||
msgstr "Bitte klicken Sie auf die folgende Schaltfläche, um Ihr neues Passwort festzulegen"
|
||||
|
||||
#: lms/lms/utils.py:1887 lms/lms/utils.py:1891
|
||||
#: lms/lms/utils.py:1815 lms/lms/utils.py:1819
|
||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:256
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:261
|
||||
msgid "Please enable Zoom Settings to use this feature."
|
||||
msgstr "Bitte aktivieren Sie die Zoom-Einstellungen, um diese Funktion zu nutzen."
|
||||
|
||||
@@ -3786,7 +3841,7 @@ msgid "Please enter a title."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:40
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:122
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:125
|
||||
msgid "Please enter a valid URL."
|
||||
msgstr "Bitte geben Sie eine gültige URL ein."
|
||||
|
||||
@@ -3794,7 +3849,7 @@ msgstr "Bitte geben Sie eine gültige URL ein."
|
||||
msgid "Please enter a valid time in the format HH:mm."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:116
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:119
|
||||
msgid "Please enter the URL for assignment submission."
|
||||
msgstr "Bitte geben Sie die URL zur Aufgabeneinreichung ein."
|
||||
|
||||
@@ -3802,7 +3857,7 @@ msgstr "Bitte geben Sie die URL zur Aufgabeneinreichung ein."
|
||||
msgid "Please enter your answer"
|
||||
msgstr "Bitte geben Sie Ihre Antwort ein"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:66
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:71
|
||||
msgid "Please install the Payments app to create a paid batches."
|
||||
msgstr ""
|
||||
|
||||
@@ -3822,7 +3877,7 @@ msgstr ""
|
||||
msgid "Please login to access the quiz."
|
||||
msgstr "Bitte melden Sie sich an, um auf das Quiz zuzugreifen."
|
||||
|
||||
#: frontend/src/components/NoPermission.vue:25 frontend/src/pages/Batch.vue:154
|
||||
#: frontend/src/components/NoPermission.vue:25 frontend/src/pages/Batch.vue:157
|
||||
msgid "Please login to access this page."
|
||||
msgstr "Bitte melden Sie sich an, um auf diese Seite zuzugreifen."
|
||||
|
||||
@@ -3863,7 +3918,7 @@ msgstr ""
|
||||
msgid "Please upload a SCORM package"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:119
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:122
|
||||
msgid "Please upload the assignment file."
|
||||
msgstr ""
|
||||
|
||||
@@ -3897,7 +3952,7 @@ msgid "Possible Answer 4"
|
||||
msgstr "Mögliche Antwort 4"
|
||||
|
||||
#: frontend/src/components/DiscussionReplies.vue:52
|
||||
#: frontend/src/components/DiscussionReplies.vue:86
|
||||
#: frontend/src/components/DiscussionReplies.vue:87
|
||||
msgid "Post"
|
||||
msgstr "Absenden"
|
||||
|
||||
@@ -4326,19 +4381,19 @@ msgstr ""
|
||||
msgid "Route"
|
||||
msgstr "Pfad"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:199
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:204
|
||||
msgid "Row #{0} Date cannot be outside the batch duration."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:194
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:199
|
||||
msgid "Row #{0} End time cannot be outside the batch duration."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:176
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:181
|
||||
msgid "Row #{0} Start time cannot be greater than or equal to end time."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:185
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:190
|
||||
msgid "Row #{0} Start time cannot be outside the batch duration."
|
||||
msgstr ""
|
||||
|
||||
@@ -4419,10 +4474,18 @@ msgstr "Ergebnis"
|
||||
msgid "Score Out Of"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Members.vue:15
|
||||
#: frontend/src/components/Members.vue:15 frontend/src/pages/Jobs.vue:38
|
||||
msgid "Search"
|
||||
msgstr "Suchen"
|
||||
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:17
|
||||
msgid "Search by Name"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:39
|
||||
msgid "Search by Title"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Assignments.vue:25
|
||||
msgid "Search by title"
|
||||
msgstr ""
|
||||
@@ -4719,7 +4782,7 @@ msgstr "Bundesland"
|
||||
#. Label of the statistics (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/components/BatchStudents.vue:5
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:133
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:134
|
||||
msgid "Statistics"
|
||||
msgstr "Statistiken"
|
||||
|
||||
@@ -4784,7 +4847,7 @@ msgstr ""
|
||||
msgid "Student Reviews"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:48
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:53
|
||||
msgid "Student {0} has already been added to this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -4832,6 +4895,7 @@ msgstr ""
|
||||
msgid "Submission by"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:14
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:9
|
||||
#: frontend/src/components/Modals/BatchCourseModal.vue:9
|
||||
#: frontend/src/components/Modals/EvaluationModal.vue:9
|
||||
@@ -4889,7 +4953,7 @@ msgstr "Zusammenfassung"
|
||||
msgid "Sunday"
|
||||
msgstr "Sonntag"
|
||||
|
||||
#: lms/lms/api.py:964
|
||||
#: lms/lms/api.py:983
|
||||
msgid "Suspicious pattern found in {0}: {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -4915,6 +4979,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
||||
#: lms/lms/doctype/lms_category/lms_category.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
@@ -4997,6 +5062,10 @@ msgstr ""
|
||||
msgid "Text"
|
||||
msgstr "Text"
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:7
|
||||
msgid "Thank you for providing your feedback!"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/emails/lms_course_interest.html:17
|
||||
#: lms/templates/emails/lms_invite_request_approved.html:15
|
||||
#: lms/templates/emails/mentor_request_creation_email.html:7
|
||||
@@ -5004,7 +5073,7 @@ msgstr "Text"
|
||||
msgid "Thanks and Regards"
|
||||
msgstr "Danke und Grüße"
|
||||
|
||||
#: lms/lms/utils.py:1794
|
||||
#: lms/lms/utils.py:1722
|
||||
msgid "The batch is full. Please contact the Administrator."
|
||||
msgstr ""
|
||||
|
||||
@@ -5028,8 +5097,8 @@ msgstr "Der Platz ist bereits von einem anderen Teilnehmer gebucht."
|
||||
msgid "The status of your application has changed."
|
||||
msgstr "Der Status Ihrer Bewerbung hat sich geändert."
|
||||
|
||||
#: frontend/src/pages/Batches.vue:129
|
||||
msgid "There are no batches available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
#: frontend/src/pages/Batches.vue:77
|
||||
msgid "There are no batches matching the criteria. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/CreateOutline.vue:12
|
||||
@@ -5040,11 +5109,15 @@ 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/CertifiedParticipants.vue:84
|
||||
msgid "There are no participants matching this criteria."
|
||||
msgstr ""
|
||||
|
||||
#: 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 ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:146
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:151
|
||||
msgid "There are no seats available in this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -5060,7 +5133,7 @@ msgstr ""
|
||||
msgid "There are no {0} on this site."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:82
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:85
|
||||
msgid "There has been an update on your submission for assignment {0}"
|
||||
msgstr ""
|
||||
|
||||
@@ -5091,7 +5164,7 @@ msgstr ""
|
||||
msgid "This course has:"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1645
|
||||
#: lms/lms/utils.py:1573
|
||||
msgid "This course is free."
|
||||
msgstr "Dieser Kurs ist kostenlos."
|
||||
|
||||
@@ -5235,7 +5308,7 @@ msgstr "An"
|
||||
msgid "To Date"
|
||||
msgstr "Bis-Datum"
|
||||
|
||||
#: lms/lms/utils.py:1656
|
||||
#: lms/lms/utils.py:1584
|
||||
msgid "To join this batch, please contact the Administrator."
|
||||
msgstr "Um dieser Gruppe beizutreten, wenden Sie sich bitte an den Administrator."
|
||||
|
||||
@@ -5291,7 +5364,7 @@ msgstr "Twitter"
|
||||
#: frontend/src/components/Modals/Question.vue:54
|
||||
#: frontend/src/pages/AssignmentForm.vue:39
|
||||
#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:157
|
||||
#: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:16
|
||||
#: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:55
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
#: lms/lms/doctype/lms_assignment/lms_assignment.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
@@ -5337,6 +5410,10 @@ msgstr "Wird überprüft"
|
||||
msgid "Unlisted"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:262 frontend/src/pages/Batches.vue:278
|
||||
msgid "Unpublished"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/EditCoverImage.vue:60
|
||||
#: frontend/src/components/UnsplashImageBrowser.vue:54
|
||||
msgid "Unsplash"
|
||||
@@ -5354,12 +5431,13 @@ msgstr ""
|
||||
|
||||
#. Option for the 'Status' (Select) field in DocType 'Cohort'
|
||||
#. Label of the upcoming (Check) field in DocType 'LMS Course'
|
||||
#: frontend/src/pages/Batches.vue:258 frontend/src/pages/Batches.vue:276
|
||||
#: frontend/src/pages/CourseForm.vue:184 lms/lms/doctype/cohort/cohort.json
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
msgid "Upcoming"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batch.vue:166
|
||||
#: frontend/src/pages/Batch.vue:169
|
||||
msgid "Upcoming Batches"
|
||||
msgstr ""
|
||||
|
||||
@@ -5421,7 +5499,7 @@ msgstr "Benutzereingabe"
|
||||
msgid "User Skill"
|
||||
msgstr ""
|
||||
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.py:37
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.py:40
|
||||
msgid "User {0} has reported the job post {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -5446,6 +5524,11 @@ msgstr "Benutzerantwort"
|
||||
msgid "Valid email and name required"
|
||||
msgstr "Gültige E-Mail und Name erforderlich"
|
||||
|
||||
#. Label of the value (Rating) field in DocType 'LMS Batch Feedback'
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "Value"
|
||||
msgstr "Wert"
|
||||
|
||||
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "Value Change"
|
||||
@@ -5569,7 +5652,7 @@ msgstr ""
|
||||
msgid "You are already enrolled for this course."
|
||||
msgstr "Sie sind bereits in diesem Kurs eingeschrieben."
|
||||
|
||||
#: frontend/src/pages/Batch.vue:148
|
||||
#: frontend/src/pages/Batch.vue:151
|
||||
msgid "You are not a member of this batch. Please checkout our upcoming batches."
|
||||
msgstr ""
|
||||
|
||||
@@ -5606,10 +5689,6 @@ msgstr ""
|
||||
msgid "You can find their resume attached to this email."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:113
|
||||
msgid "You can link courses and assessments to it."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:115
|
||||
msgid "You cannot schedule evaluations after {0}."
|
||||
msgstr ""
|
||||
@@ -5671,10 +5750,6 @@ msgstr ""
|
||||
msgid "You have opted to be notified for this course. You will receive an email when the course becomes available."
|
||||
msgstr "Sie haben sich für eine Benachrichtigung zu diesem Kurs entschieden. Sie erhalten eine E-Mail, sobald der Kurs verfügbar ist."
|
||||
|
||||
#: lms/lms/web_template/courses_enrolled/courses_enrolled.html:17
|
||||
msgid "You haven't enrolled for any courses"
|
||||
msgstr "Sie haben sich für keinen Kurs angemeldet"
|
||||
|
||||
#: frontend/src/components/CourseCardOverlay.vue:146
|
||||
msgid "You need to login first to enroll for this course"
|
||||
msgstr ""
|
||||
@@ -5769,10 +5844,6 @@ msgstr "wurde"
|
||||
msgid "in the last"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProfileCertificates.vue:17
|
||||
msgid "issued on"
|
||||
msgstr "ausgestellt am"
|
||||
|
||||
#: lms/templates/signup-form.html:12
|
||||
msgid "jane@example.com"
|
||||
msgstr "beate@beispiel.de"
|
||||
@@ -5793,8 +5864,8 @@ msgstr "von"
|
||||
msgid "out of"
|
||||
msgstr "von"
|
||||
|
||||
#: frontend/src/components/JobCard.vue:37
|
||||
msgid "posted by"
|
||||
#: frontend/src/components/JobCard.vue:30
|
||||
msgid "posted"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:386
|
||||
@@ -5817,7 +5888,7 @@ msgstr ""
|
||||
msgid "you can"
|
||||
msgstr "Sie können"
|
||||
|
||||
#: lms/lms/api.py:761 lms/lms/api.py:769
|
||||
#: lms/lms/api.py:780 lms/lms/api.py:788
|
||||
msgid "{0} Settings not found"
|
||||
msgstr ""
|
||||
|
||||
@@ -5845,7 +5916,11 @@ msgstr "{0} ist bereits Mentor für Kurs {1}"
|
||||
msgid "{0} is already a {1} of the course {2}"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:59
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:91
|
||||
msgid "{0} is already certified for the batch {1}"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:72
|
||||
msgid "{0} is already certified for the course {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -5853,7 +5928,7 @@ msgstr ""
|
||||
msgid "{0} is your evaluator"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:700
|
||||
#: lms/lms/utils.py:682
|
||||
msgid "{0} mentioned you in a comment"
|
||||
msgstr "{0} hat Sie in einem Kommentar erwähnt"
|
||||
|
||||
@@ -5861,11 +5936,11 @@ msgstr "{0} hat Sie in einem Kommentar erwähnt"
|
||||
msgid "{0} mentioned you in a comment in your batch."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:653 lms/lms/utils.py:659
|
||||
#: lms/lms/utils.py:635 lms/lms/utils.py:641
|
||||
msgid "{0} mentioned you in a comment in {1}"
|
||||
msgstr "{0} erwähnte Sie in einem Kommentar in {1}"
|
||||
|
||||
#: lms/lms/utils.py:476
|
||||
#: lms/lms/utils.py:458
|
||||
msgid "{0}k"
|
||||
msgstr ""
|
||||
|
||||
|
||||
279
lms/locale/eo.po
279
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-10 16:04+0000\n"
|
||||
"PO-Revision-Date: 2025-01-13 06:31\n"
|
||||
"POT-Creation-Date: 2025-01-17 16:04+0000\n"
|
||||
"PO-Revision-Date: 2025-01-20 11:13\n"
|
||||
"Last-Translator: jannat@frappe.io\n"
|
||||
"Language-Team: Esperanto\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -75,7 +75,7 @@ msgstr "crwdns151462:0crwdne151462:0"
|
||||
msgid "About"
|
||||
msgstr "crwdns149200:0crwdne149200:0"
|
||||
|
||||
#: frontend/src/pages/Batch.vue:93
|
||||
#: frontend/src/pages/Batch.vue:96
|
||||
msgid "About this batch"
|
||||
msgstr "crwdns152174:0crwdne152174:0"
|
||||
|
||||
@@ -212,14 +212,26 @@ msgid "Admin"
|
||||
msgstr "crwdns149248:0crwdne149248:0"
|
||||
|
||||
#. Name of a role
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
#: frontend/src/pages/Batches.vue:270 lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "All"
|
||||
msgstr "crwdns149250:0crwdne149250:0"
|
||||
|
||||
#: frontend/src/pages/Batches.vue:26
|
||||
msgid "All Batches"
|
||||
msgstr "crwdns152262:0crwdne152262:0"
|
||||
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:12
|
||||
msgid "All Certified Participants"
|
||||
msgstr "crwdns152264:0crwdne152264:0"
|
||||
|
||||
#: lms/lms/widgets/BreadCrumb.html:3
|
||||
msgid "All Courses"
|
||||
msgstr "crwdns149252:0crwdne149252:0"
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:51
|
||||
msgid "All Feedback"
|
||||
msgstr "crwdns152266:0crwdne152266:0"
|
||||
|
||||
#: lms/templates/quiz/quiz.html:141
|
||||
msgid "All Submissions"
|
||||
msgstr "crwdns149254:0crwdne149254:0"
|
||||
@@ -279,7 +291,7 @@ msgstr "crwdns149272:0crwdne149272:0"
|
||||
msgid "Amount Field"
|
||||
msgstr "crwdns149274:0crwdne149274:0"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:70
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:75
|
||||
msgid "Amount and currency are required for paid batches."
|
||||
msgstr "crwdns151730:0crwdne151730:0"
|
||||
|
||||
@@ -353,6 +365,10 @@ msgstr "crwdns149292:0crwdne149292:0"
|
||||
msgid "Apps"
|
||||
msgstr "crwdns149294:0crwdne149294:0"
|
||||
|
||||
#: frontend/src/pages/Batches.vue:259 frontend/src/pages/Batches.vue:277
|
||||
msgid "Archived"
|
||||
msgstr "crwdns152268:0crwdne152268:0"
|
||||
|
||||
#. Label of the user_category (Check) field in DocType 'LMS Settings'
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Ask User Category during Signup"
|
||||
@@ -381,7 +397,7 @@ msgstr "crwdns149304:0crwdne149304:0"
|
||||
msgid "Assessment added successfully"
|
||||
msgstr "crwdns149306:0crwdne149306:0"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:80
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:85
|
||||
msgid "Assessment {0} has already been added to this batch."
|
||||
msgstr "crwdns149308:0{0}crwdne149308:0"
|
||||
|
||||
@@ -473,6 +489,10 @@ msgstr "crwdns149334:0crwdne149334:0"
|
||||
msgid "Average Rating"
|
||||
msgstr "crwdns149336:0crwdne149336:0"
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:38
|
||||
msgid "Average of Feedback Received"
|
||||
msgstr "crwdns152270:0crwdne152270:0"
|
||||
|
||||
#: frontend/src/pages/Lesson.vue:96
|
||||
msgid "Back to Course"
|
||||
msgstr "crwdns149338:0crwdne149338:0"
|
||||
@@ -493,10 +513,12 @@ msgstr "crwdns149342:0crwdne149342:0"
|
||||
msgid "Badge Image"
|
||||
msgstr "crwdns149344:0crwdne149344:0"
|
||||
|
||||
#. Label of the batch (Link) field in DocType 'LMS Batch Feedback'
|
||||
#. Label of the batch_name (Link) field in DocType 'LMS Certificate'
|
||||
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
|
||||
#. Label of the batch_name (Link) field in DocType 'LMS Live Class'
|
||||
#: frontend/src/components/Modals/Event.vue:32
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
@@ -578,7 +600,9 @@ msgstr "crwdns149368:0crwdne149368:0"
|
||||
msgid "Batch Student"
|
||||
msgstr "crwdns149370:0crwdne149370:0"
|
||||
|
||||
#. Label of the batch_title (Data) field in DocType 'LMS Certificate'
|
||||
#. Label of the batch_title (Data) field in DocType 'LMS Certificate Request'
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
msgid "Batch Title"
|
||||
msgstr "crwdns149372:0crwdne149372:0"
|
||||
@@ -587,14 +611,15 @@ msgstr "crwdns149372:0crwdne149372:0"
|
||||
msgid "Batch Updated"
|
||||
msgstr "crwdns149374:0crwdne149374:0"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:41
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:46
|
||||
msgid "Batch end date cannot be before the batch start date"
|
||||
msgstr "crwdns149376:0crwdne149376:0"
|
||||
|
||||
#. Group in LMS Course's connections
|
||||
#. Label of the batches (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/pages/Batches.vue:8 lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:60
|
||||
#: frontend/src/pages/Batches.vue:285
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:61
|
||||
msgid "Batches"
|
||||
msgstr "crwdns149380:0crwdne149380:0"
|
||||
|
||||
@@ -689,7 +714,8 @@ msgstr "crwdns149414:0crwdne149414:0"
|
||||
#. Label of the category (Link) field in DocType 'LMS Batch'
|
||||
#. Label of the category (Data) field in DocType 'LMS Category'
|
||||
#. Label of the category (Link) field in DocType 'LMS Course'
|
||||
#: frontend/src/pages/BatchForm.vue:202 frontend/src/pages/Batches.vue:16
|
||||
#: frontend/src/pages/BatchForm.vue:202 frontend/src/pages/Batches.vue:49
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:29
|
||||
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:17
|
||||
#: frontend/src/pages/JobDetail.vue:102
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
@@ -756,6 +782,7 @@ msgid "Certification Name"
|
||||
msgstr "crwdns149436:0crwdne149436:0"
|
||||
|
||||
#. Label of the certified_participants (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:153
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Certified Participants"
|
||||
msgstr "crwdns149438:0crwdne149438:0"
|
||||
@@ -1048,7 +1075,7 @@ msgstr "crwdns149530:0crwdne149530:0"
|
||||
msgid "Confirmation Email Sent"
|
||||
msgstr "crwdns149532:0crwdne149532:0"
|
||||
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:25
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:29
|
||||
msgid "Congratulations on getting certified!"
|
||||
msgstr "crwdns149534:0crwdne149534:0"
|
||||
|
||||
@@ -1057,8 +1084,10 @@ msgid "Contact the Administrator to enroll for this course."
|
||||
msgstr "crwdns149536:0crwdne149536:0"
|
||||
|
||||
#. Label of the content (Text) field in DocType 'Course Lesson'
|
||||
#. Label of the content (Rating) field in DocType 'LMS Batch Feedback'
|
||||
#: frontend/src/pages/LessonForm.vue:62
|
||||
#: lms/lms/doctype/course_lesson/course_lesson.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "Content"
|
||||
msgstr "crwdns149538:0crwdne149538:0"
|
||||
|
||||
@@ -1067,7 +1096,7 @@ msgid "Continue Learning"
|
||||
msgstr "crwdns149540:0crwdne149540:0"
|
||||
|
||||
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
|
||||
#: frontend/src/pages/Jobs.vue:120
|
||||
#: frontend/src/pages/Jobs.vue:152
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
msgid "Contract"
|
||||
msgstr "crwdns149542:0crwdne149542:0"
|
||||
@@ -1133,7 +1162,7 @@ msgstr "crwdns149554:0crwdne149554:0"
|
||||
#. Label of a Link in the LMS Workspace
|
||||
#. Label of a shortcut in the LMS Workspace
|
||||
#: frontend/src/components/Modals/BatchCourseModal.vue:20
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:23
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:38
|
||||
#: frontend/src/components/Modals/EvaluationModal.vue:20
|
||||
#: frontend/src/components/Modals/Event.vue:24
|
||||
#: lms/lms/doctype/batch_course/batch_course.json
|
||||
@@ -1220,7 +1249,7 @@ msgstr "crwdns149574:0crwdne149574:0"
|
||||
msgid "Course Lesson"
|
||||
msgstr "crwdns149576:0crwdne149576:0"
|
||||
|
||||
#: lms/www/lms.py:27
|
||||
#: lms/www/lms.py:28
|
||||
msgid "Course List"
|
||||
msgstr "crwdns149578:0crwdne149578:0"
|
||||
|
||||
@@ -1270,7 +1299,7 @@ msgstr "crwdns149590:0crwdne149590:0"
|
||||
msgid "Course added to program"
|
||||
msgstr "crwdns151734:0crwdne151734:0"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:345
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:350
|
||||
msgid "Course already added to the batch."
|
||||
msgstr "crwdns149592:0crwdne149592:0"
|
||||
|
||||
@@ -1282,7 +1311,7 @@ msgstr "crwdns151586:0crwdne151586:0"
|
||||
msgid "Course moved successfully"
|
||||
msgstr "crwdns151736:0crwdne151736:0"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:59
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:64
|
||||
#: lms/lms/doctype/lms_program/lms_program.py:19
|
||||
msgid "Course {0} has already been added to this batch."
|
||||
msgstr "crwdns149596:0{0}crwdne149596:0"
|
||||
@@ -1333,10 +1362,6 @@ msgstr "crwdns149608:0crwdne149608:0"
|
||||
msgid "Create LMS Certificate Evaluation"
|
||||
msgstr "crwdns149610:0crwdne149610:0"
|
||||
|
||||
#: frontend/src/pages/Batches.vue:110
|
||||
msgid "Create a Batch"
|
||||
msgstr "crwdns151470:0crwdne151470:0"
|
||||
|
||||
#: frontend/src/pages/Courses.vue:132 lms/templates/onboarding_header.html:19
|
||||
msgid "Create a Course"
|
||||
msgstr "crwdns149612:0crwdne149612:0"
|
||||
@@ -1732,6 +1757,10 @@ msgstr "crwdns149720:0crwdne149720:0"
|
||||
msgid "Enroll Now"
|
||||
msgstr "crwdns149722:0crwdne149722:0"
|
||||
|
||||
#: frontend/src/pages/Batches.vue:274
|
||||
msgid "Enrolled"
|
||||
msgstr "crwdns152272:0crwdne152272:0"
|
||||
|
||||
#: frontend/src/components/CourseCard.vue:43
|
||||
#: frontend/src/components/CourseCardOverlay.vue:104
|
||||
#: frontend/src/pages/CourseDetail.vue:33
|
||||
@@ -1742,7 +1771,7 @@ msgstr "crwdns149724:0crwdne149724:0"
|
||||
msgid "Enrolled successfully"
|
||||
msgstr "crwdns149726:0crwdne149726:0"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:103
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:108
|
||||
msgid "Enrollment Confirmation for the Next Training Batch"
|
||||
msgstr "crwdns149728:0crwdne149728:0"
|
||||
|
||||
@@ -1751,7 +1780,7 @@ msgstr "crwdns149728:0crwdne149728:0"
|
||||
msgid "Enrollment Count"
|
||||
msgstr "crwdns149730:0crwdne149730:0"
|
||||
|
||||
#: lms/lms/utils.py:1765
|
||||
#: lms/lms/utils.py:1693
|
||||
msgid "Enrollment Failed"
|
||||
msgstr "crwdns149732:0crwdne149732:0"
|
||||
|
||||
@@ -1821,7 +1850,7 @@ msgstr "crwdns149750:0crwdne149750:0"
|
||||
msgid "Evaluation Request"
|
||||
msgstr "crwdns149752:0crwdne149752:0"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:87
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:92
|
||||
msgid "Evaluation end date cannot be less than the batch end date."
|
||||
msgstr "crwdns149754:0crwdne149754:0"
|
||||
|
||||
@@ -1836,7 +1865,7 @@ msgstr "crwdns149756:0crwdne149756:0"
|
||||
#. Label of the evaluator (Link) field in DocType 'LMS Certificate Evaluation'
|
||||
#. Label of the evaluator (Link) field in DocType 'LMS Certificate Request'
|
||||
#: frontend/src/components/Modals/BatchCourseModal.vue:26
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:28
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:22
|
||||
#: frontend/src/pages/ProfileRoles.vue:22
|
||||
#: lms/lms/doctype/batch_course/batch_course.json
|
||||
#: lms/lms/doctype/course_evaluator/course_evaluator.json
|
||||
@@ -1914,7 +1943,7 @@ msgid "Expiration Date"
|
||||
msgstr "crwdns149778:0crwdne149778:0"
|
||||
|
||||
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:39
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:33
|
||||
#: frontend/src/components/Modals/Event.vue:126
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
msgid "Expiry Date"
|
||||
@@ -1955,6 +1984,12 @@ msgstr "crwdns149788:0crwdne149788:0"
|
||||
msgid "Featured"
|
||||
msgstr "crwdns149790:0crwdne149790:0"
|
||||
|
||||
#. Label of the feedback (Small Text) field in DocType 'LMS Batch Feedback'
|
||||
#: frontend/src/components/BatchFeedback.vue:29
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "Feedback"
|
||||
msgstr "crwdns152274:0crwdne152274:0"
|
||||
|
||||
#: frontend/src/components/Assignment.vue:61
|
||||
msgid "Feel free to make edits to your submission if needed."
|
||||
msgstr "crwdns149792:0crwdne149792:0"
|
||||
@@ -1974,7 +2009,7 @@ msgstr "crwdns149796:0crwdne149796:0"
|
||||
msgid "File Type"
|
||||
msgstr "crwdns149798:0crwdne149798:0"
|
||||
|
||||
#: frontend/src/pages/Jobs.vue:47
|
||||
#: frontend/src/pages/Jobs.vue:33
|
||||
msgid "Find the perfect job for you"
|
||||
msgstr "crwdns152120:0crwdne152120:0"
|
||||
|
||||
@@ -2007,7 +2042,7 @@ msgid "Free"
|
||||
msgstr "crwdns149810:0crwdne149810:0"
|
||||
|
||||
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
|
||||
#: frontend/src/pages/Jobs.vue:121
|
||||
#: frontend/src/pages/Jobs.vue:153
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
msgid "Freelance"
|
||||
msgstr "crwdns149812:0crwdne149812:0"
|
||||
@@ -2049,7 +2084,7 @@ msgid "Full Name"
|
||||
msgstr "crwdns149824:0crwdne149824:0"
|
||||
|
||||
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
|
||||
#: frontend/src/pages/Jobs.vue:118
|
||||
#: frontend/src/pages/Jobs.vue:150
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
msgid "Full Time"
|
||||
msgstr "crwdns149826:0crwdne149826:0"
|
||||
@@ -2147,6 +2182,10 @@ msgstr "crwdns149856:0crwdne149856:0"
|
||||
msgid "Hello"
|
||||
msgstr "crwdns149858:0crwdne149858:0"
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:11
|
||||
msgid "Help Us Improve"
|
||||
msgstr "crwdns152276:0crwdne152276:0"
|
||||
|
||||
#: lms/templates/courses_created.html:15
|
||||
msgid "Help others learn something new by creating a course."
|
||||
msgstr "crwdns149862:0crwdne149862:0"
|
||||
@@ -2155,10 +2194,6 @@ msgstr "crwdns149862:0crwdne149862:0"
|
||||
msgid "Help us improve our course material."
|
||||
msgstr "crwdns149864:0crwdne149864:0"
|
||||
|
||||
#: lms/lms/web_template/courses_enrolled/courses_enrolled.html:18
|
||||
msgid "Here are a few courses we recommend for you to get started with {0}"
|
||||
msgstr "crwdns149866:0{0}crwdne149866:0"
|
||||
|
||||
#: lms/lms/notification/certificate_request_reminder/certificate_request_reminder.html:1
|
||||
#: lms/templates/emails/certificate_request_notification.html:1
|
||||
msgid "Hey {0}"
|
||||
@@ -2360,9 +2395,11 @@ msgid "Instructor Notes"
|
||||
msgstr "crwdns149940:0crwdne149940:0"
|
||||
|
||||
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch'
|
||||
#. Label of the instructors (Rating) field in DocType 'LMS Batch Feedback'
|
||||
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course'
|
||||
#: frontend/src/pages/BatchForm.vue:89 frontend/src/pages/CourseForm.vue:154
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
msgid "Instructors"
|
||||
msgstr "crwdns149942:0crwdne149942:0"
|
||||
@@ -2437,7 +2474,7 @@ msgstr "crwdns151636:0crwdne151636:0"
|
||||
|
||||
#. Label of the issue_date (Date) field in DocType 'Certification'
|
||||
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:34
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:28
|
||||
#: frontend/src/components/Modals/Event.vue:121
|
||||
#: lms/lms/doctype/certification/certification.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
@@ -2450,6 +2487,7 @@ msgid "Issued On"
|
||||
msgstr "crwdns149970:0crwdne149970:0"
|
||||
|
||||
#: frontend/src/pages/ProfileAbout.vue:56
|
||||
#: frontend/src/pages/ProfileCertificates.vue:17
|
||||
#: lms/templates/certificates_section.html:11
|
||||
msgid "Issued on"
|
||||
msgstr "crwdns149972:0crwdne149972:0"
|
||||
@@ -2487,7 +2525,7 @@ msgstr "crwdns149982:0crwdne149982:0"
|
||||
msgid "Job Details"
|
||||
msgstr "crwdns149984:0crwdne149984:0"
|
||||
|
||||
#: lms/www/lms.py:108
|
||||
#: lms/www/lms.py:109
|
||||
msgid "Job Openings"
|
||||
msgstr "crwdns149986:0crwdne149986:0"
|
||||
|
||||
@@ -2566,6 +2604,11 @@ msgstr "crwdns150012:0crwdne150012:0"
|
||||
msgid "LMS Batch"
|
||||
msgstr "crwdns150014:0crwdne150014:0"
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "LMS Batch Feedback"
|
||||
msgstr "crwdns152278:0crwdne152278:0"
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
||||
msgid "LMS Batch Old"
|
||||
@@ -2725,6 +2768,7 @@ msgstr "crwdns150066:0crwdne150066:0"
|
||||
#: lms/lms/doctype/lms_assignment/lms_assignment.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
#: lms/lms/doctype/lms_course_progress/lms_course_progress.json
|
||||
@@ -2870,16 +2914,13 @@ msgid "LiveCode URL"
|
||||
msgstr "crwdns150110:0crwdne150110:0"
|
||||
|
||||
#: frontend/src/components/Members.vue:106
|
||||
#: frontend/src/pages/Assignments.vue:71
|
||||
#: frontend/src/pages/Assignments.vue:71 frontend/src/pages/Batches.vue:88
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:71
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:39
|
||||
#: frontend/src/pages/Quizzes.vue:51
|
||||
msgid "Load More"
|
||||
msgstr "crwdns150112:0crwdne150112:0"
|
||||
|
||||
#: frontend/src/pages/Batches.vue:40
|
||||
msgid "Loading Batches..."
|
||||
msgstr "crwdns150114:0crwdne150114:0"
|
||||
|
||||
#. Option for the 'Auto Recording' (Select) field in DocType 'LMS Live Class'
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
msgid "Local"
|
||||
@@ -2902,7 +2943,7 @@ msgstr "crwdns150120:0crwdne150120:0"
|
||||
|
||||
#: frontend/src/components/AssignmentBlock.vue:13
|
||||
#: frontend/src/components/NoPermission.vue:28
|
||||
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:175
|
||||
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:178
|
||||
#: frontend/src/pages/Lesson.vue:24
|
||||
msgid "Login"
|
||||
msgstr "crwdns150122:0crwdne150122:0"
|
||||
@@ -3007,6 +3048,7 @@ msgstr "crwdns150158:0crwdne150158:0"
|
||||
#. Label of the member (Link) field in DocType 'Exercise Submission'
|
||||
#. Label of the member (Link) field in DocType 'LMS Assignment Submission'
|
||||
#. Label of the member (Link) field in DocType 'LMS Badge Assignment'
|
||||
#. Label of the member (Link) field in DocType 'LMS Batch Feedback'
|
||||
#. Label of the member (Link) field in DocType 'LMS Certificate'
|
||||
#. Label of the member (Link) field in DocType 'LMS Certificate Evaluation'
|
||||
#. Label of the member (Link) field in DocType 'LMS Certificate Request'
|
||||
@@ -3024,6 +3066,7 @@ msgstr "crwdns150158:0crwdne150158:0"
|
||||
#: lms/lms/doctype/exercise_submission/exercise_submission.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.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
|
||||
@@ -3049,8 +3092,15 @@ msgstr "crwdns150162:0crwdne150162:0"
|
||||
msgid "Member Email"
|
||||
msgstr "crwdns150164:0crwdne150164:0"
|
||||
|
||||
#. Label of the member_image (Attach Image) field in DocType 'LMS Batch
|
||||
#. Feedback'
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "Member Image"
|
||||
msgstr "crwdns152280:0crwdne152280: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 Batch Feedback'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Certificate'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Certificate
|
||||
#. Evaluation'
|
||||
@@ -3061,6 +3111,7 @@ msgstr "crwdns150164:0crwdne150164:0"
|
||||
#. 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_batch_feedback/lms_batch_feedback.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
|
||||
@@ -3223,7 +3274,7 @@ msgid "My calendar"
|
||||
msgstr "crwdns150212:0crwdne150212:0"
|
||||
|
||||
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
||||
#: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:30
|
||||
#: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:17
|
||||
#: frontend/src/pages/Courses.vue:45 frontend/src/pages/Programs.vue:14
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "New"
|
||||
@@ -3237,15 +3288,15 @@ msgstr "crwdns152124:0crwdne152124:0"
|
||||
msgid "New Assignment Submission"
|
||||
msgstr "crwdns150216:0crwdne150216:0"
|
||||
|
||||
#: lms/public/js/common_functions.js:255 lms/www/lms.py:86
|
||||
#: lms/public/js/common_functions.js:255 lms/www/lms.py:87
|
||||
msgid "New Batch"
|
||||
msgstr "crwdns150218:0crwdne150218:0"
|
||||
|
||||
#: lms/www/lms.py:37
|
||||
#: lms/www/lms.py:38
|
||||
msgid "New Course"
|
||||
msgstr "crwdns150220:0crwdne150220:0"
|
||||
|
||||
#: frontend/src/pages/Jobs.vue:39
|
||||
#: frontend/src/pages/Jobs.vue:23
|
||||
msgid "New Job"
|
||||
msgstr "crwdns150222:0crwdne150222:0"
|
||||
|
||||
@@ -3278,11 +3329,11 @@ msgstr "crwdns150228:0crwdne150228:0"
|
||||
msgid "New Sign Up"
|
||||
msgstr "crwdns150230:0crwdne150230:0"
|
||||
|
||||
#: lms/lms/utils.py:623
|
||||
#: lms/lms/utils.py:605
|
||||
msgid "New comment in batch {0}"
|
||||
msgstr "crwdns150232:0{0}crwdne150232:0"
|
||||
|
||||
#: lms/lms/utils.py:616
|
||||
#: lms/lms/utils.py:598
|
||||
msgid "New reply on the topic {0} in course {1}"
|
||||
msgstr "crwdns150234:0{0}crwdnd150234:0{1}crwdne150234:0"
|
||||
|
||||
@@ -3324,7 +3375,7 @@ msgstr "crwdns150250:0crwdne150250:0"
|
||||
msgid "No assignments found"
|
||||
msgstr "crwdns152126:0crwdne152126:0"
|
||||
|
||||
#: frontend/src/pages/Batches.vue:125
|
||||
#: frontend/src/pages/Batches.vue:73
|
||||
msgid "No batches found"
|
||||
msgstr "crwdns151478:0crwdne151478:0"
|
||||
|
||||
@@ -3348,11 +3399,15 @@ msgstr "crwdns151766:0crwdne151766:0"
|
||||
msgid "No courses under review"
|
||||
msgstr "crwdns150256:0crwdne150256:0"
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:101
|
||||
msgid "No feedback received yet."
|
||||
msgstr "crwdns152282:0crwdne152282:0"
|
||||
|
||||
#: frontend/src/pages/ProfileAbout.vue:12
|
||||
msgid "No introduction"
|
||||
msgstr "crwdns150258:0crwdne150258:0"
|
||||
|
||||
#: frontend/src/pages/Jobs.vue:63
|
||||
#: frontend/src/pages/Jobs.vue:77
|
||||
msgid "No jobs posted"
|
||||
msgstr "crwdns150260:0crwdne150260:0"
|
||||
|
||||
@@ -3360,6 +3415,10 @@ msgstr "crwdns150260:0crwdne150260:0"
|
||||
msgid "No live classes scheduled"
|
||||
msgstr "crwdns150262:0crwdne150262:0"
|
||||
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:81
|
||||
msgid "No participants found"
|
||||
msgstr "crwdns152284:0crwdne152284:0"
|
||||
|
||||
#: frontend/src/pages/Programs.vue:91
|
||||
msgid "No programs found"
|
||||
msgstr "crwdns151768:0crwdne151768:0"
|
||||
@@ -3384,10 +3443,6 @@ msgstr "crwdns150266:0crwdne150266:0"
|
||||
msgid "No {0}"
|
||||
msgstr "crwdns150268:0{0}crwdne150268:0"
|
||||
|
||||
#: frontend/src/pages/Batches.vue:84
|
||||
msgid "No {0} batches"
|
||||
msgstr "crwdns151482:0{0}crwdne151482:0"
|
||||
|
||||
#: frontend/src/pages/Courses.vue:107
|
||||
msgid "No {0} courses"
|
||||
msgstr "crwdns151484:0{0}crwdne151484:0"
|
||||
@@ -3420,7 +3475,7 @@ msgstr "crwdns150282:0crwdne150282:0"
|
||||
msgid "Not Graded"
|
||||
msgstr "crwdns150284:0crwdne150284:0"
|
||||
|
||||
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:143
|
||||
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:146
|
||||
msgid "Not Permitted"
|
||||
msgstr "crwdns150286:0crwdne150286:0"
|
||||
|
||||
@@ -3614,7 +3669,7 @@ msgid "Pan Number"
|
||||
msgstr "crwdns150356:0crwdne150356:0"
|
||||
|
||||
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
|
||||
#: frontend/src/pages/Jobs.vue:119
|
||||
#: frontend/src/pages/Jobs.vue:151
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
msgid "Part Time"
|
||||
msgstr "crwdns150358:0crwdne150358:0"
|
||||
@@ -3765,11 +3820,11 @@ msgstr "crwdns150404:0crwdne150404:0"
|
||||
msgid "Please click on the following button to set your new password"
|
||||
msgstr "crwdns150406:0crwdne150406:0"
|
||||
|
||||
#: lms/lms/utils.py:1887 lms/lms/utils.py:1891
|
||||
#: lms/lms/utils.py:1815 lms/lms/utils.py:1819
|
||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||
msgstr "crwdns151772:0crwdne151772:0"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:256
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:261
|
||||
msgid "Please enable Zoom Settings to use this feature."
|
||||
msgstr "crwdns150408:0crwdne150408:0"
|
||||
|
||||
@@ -3786,7 +3841,7 @@ msgid "Please enter a title."
|
||||
msgstr "crwdns151774:0crwdne151774:0"
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:40
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:122
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:125
|
||||
msgid "Please enter a valid URL."
|
||||
msgstr "crwdns150412:0crwdne150412:0"
|
||||
|
||||
@@ -3794,7 +3849,7 @@ msgstr "crwdns150412:0crwdne150412:0"
|
||||
msgid "Please enter a valid time in the format HH:mm."
|
||||
msgstr "crwdns151776:0crwdne151776:0"
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:116
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:119
|
||||
msgid "Please enter the URL for assignment submission."
|
||||
msgstr "crwdns150414:0crwdne150414:0"
|
||||
|
||||
@@ -3802,7 +3857,7 @@ msgstr "crwdns150414:0crwdne150414:0"
|
||||
msgid "Please enter your answer"
|
||||
msgstr "crwdns150416:0crwdne150416:0"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:66
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:71
|
||||
msgid "Please install the Payments app to create a paid batches."
|
||||
msgstr "crwdns150418:0crwdne150418:0"
|
||||
|
||||
@@ -3822,7 +3877,7 @@ msgstr "crwdns152130:0crwdne152130:0"
|
||||
msgid "Please login to access the quiz."
|
||||
msgstr "crwdns150424:0crwdne150424:0"
|
||||
|
||||
#: frontend/src/components/NoPermission.vue:25 frontend/src/pages/Batch.vue:154
|
||||
#: frontend/src/components/NoPermission.vue:25 frontend/src/pages/Batch.vue:157
|
||||
msgid "Please login to access this page."
|
||||
msgstr "crwdns150426:0crwdne150426:0"
|
||||
|
||||
@@ -3863,7 +3918,7 @@ msgstr "crwdns150432:0{0}crwdne150432:0"
|
||||
msgid "Please upload a SCORM package"
|
||||
msgstr "crwdns151646:0crwdne151646:0"
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:119
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:122
|
||||
msgid "Please upload the assignment file."
|
||||
msgstr "crwdns150434:0crwdne150434:0"
|
||||
|
||||
@@ -3897,7 +3952,7 @@ msgid "Possible Answer 4"
|
||||
msgstr "crwdns150446:0crwdne150446:0"
|
||||
|
||||
#: frontend/src/components/DiscussionReplies.vue:52
|
||||
#: frontend/src/components/DiscussionReplies.vue:86
|
||||
#: frontend/src/components/DiscussionReplies.vue:87
|
||||
msgid "Post"
|
||||
msgstr "crwdns150448:0crwdne150448:0"
|
||||
|
||||
@@ -4326,19 +4381,19 @@ msgstr "crwdns150594:0crwdne150594:0"
|
||||
msgid "Route"
|
||||
msgstr "crwdns150596:0crwdne150596:0"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:199
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:204
|
||||
msgid "Row #{0} Date cannot be outside the batch duration."
|
||||
msgstr "crwdns150598:0#{0}crwdne150598:0"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:194
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:199
|
||||
msgid "Row #{0} End time cannot be outside the batch duration."
|
||||
msgstr "crwdns150600:0#{0}crwdne150600:0"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:176
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:181
|
||||
msgid "Row #{0} Start time cannot be greater than or equal to end time."
|
||||
msgstr "crwdns150602:0#{0}crwdne150602:0"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:185
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:190
|
||||
msgid "Row #{0} Start time cannot be outside the batch duration."
|
||||
msgstr "crwdns150604:0#{0}crwdne150604:0"
|
||||
|
||||
@@ -4419,10 +4474,18 @@ msgstr "crwdns150622:0crwdne150622:0"
|
||||
msgid "Score Out Of"
|
||||
msgstr "crwdns150624:0crwdne150624:0"
|
||||
|
||||
#: frontend/src/components/Members.vue:15
|
||||
#: frontend/src/components/Members.vue:15 frontend/src/pages/Jobs.vue:38
|
||||
msgid "Search"
|
||||
msgstr "crwdns150626:0crwdne150626:0"
|
||||
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:17
|
||||
msgid "Search by Name"
|
||||
msgstr "crwdns152286:0crwdne152286:0"
|
||||
|
||||
#: frontend/src/pages/Batches.vue:39
|
||||
msgid "Search by Title"
|
||||
msgstr "crwdns152288:0crwdne152288:0"
|
||||
|
||||
#: frontend/src/pages/Assignments.vue:25
|
||||
msgid "Search by title"
|
||||
msgstr "crwdns152132:0crwdne152132:0"
|
||||
@@ -4719,7 +4782,7 @@ msgstr "crwdns150730:0crwdne150730:0"
|
||||
#. Label of the statistics (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/components/BatchStudents.vue:5
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:133
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:134
|
||||
msgid "Statistics"
|
||||
msgstr "crwdns150732:0crwdne150732:0"
|
||||
|
||||
@@ -4784,7 +4847,7 @@ msgstr "crwdns150742:0crwdne150742:0"
|
||||
msgid "Student Reviews"
|
||||
msgstr "crwdns150744:0crwdne150744:0"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:48
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:53
|
||||
msgid "Student {0} has already been added to this batch."
|
||||
msgstr "crwdns150746:0{0}crwdne150746:0"
|
||||
|
||||
@@ -4832,6 +4895,7 @@ msgstr "crwdns150760:0crwdne150760:0"
|
||||
msgid "Submission by"
|
||||
msgstr "crwdns152136:0crwdne152136:0"
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:14
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:9
|
||||
#: frontend/src/components/Modals/BatchCourseModal.vue:9
|
||||
#: frontend/src/components/Modals/EvaluationModal.vue:9
|
||||
@@ -4889,7 +4953,7 @@ msgstr "crwdns150770:0crwdne150770:0"
|
||||
msgid "Sunday"
|
||||
msgstr "crwdns150772:0crwdne150772:0"
|
||||
|
||||
#: lms/lms/api.py:964
|
||||
#: lms/lms/api.py:983
|
||||
msgid "Suspicious pattern found in {0}: {1}"
|
||||
msgstr "crwdns151930:0{0}crwdnd151930:0{1}crwdne151930:0"
|
||||
|
||||
@@ -4915,6 +4979,7 @@ msgstr "crwdns151930:0{0}crwdnd151930:0{1}crwdne151930:0"
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
||||
#: lms/lms/doctype/lms_category/lms_category.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
@@ -4997,6 +5062,10 @@ msgstr "crwdns150790:0crwdne150790:0"
|
||||
msgid "Text"
|
||||
msgstr "crwdns150792:0crwdne150792:0"
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:7
|
||||
msgid "Thank you for providing your feedback!"
|
||||
msgstr "crwdns152290:0crwdne152290:0"
|
||||
|
||||
#: lms/templates/emails/lms_course_interest.html:17
|
||||
#: lms/templates/emails/lms_invite_request_approved.html:15
|
||||
#: lms/templates/emails/mentor_request_creation_email.html:7
|
||||
@@ -5004,7 +5073,7 @@ msgstr "crwdns150792:0crwdne150792:0"
|
||||
msgid "Thanks and Regards"
|
||||
msgstr "crwdns150794:0crwdne150794:0"
|
||||
|
||||
#: lms/lms/utils.py:1794
|
||||
#: lms/lms/utils.py:1722
|
||||
msgid "The batch is full. Please contact the Administrator."
|
||||
msgstr "crwdns152138:0crwdne152138:0"
|
||||
|
||||
@@ -5028,9 +5097,9 @@ msgstr "crwdns150802:0crwdne150802:0"
|
||||
msgid "The status of your application has changed."
|
||||
msgstr "crwdns150804:0crwdne150804:0"
|
||||
|
||||
#: frontend/src/pages/Batches.vue:129
|
||||
msgid "There are no batches available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr "crwdns151494:0crwdne151494:0"
|
||||
#: frontend/src/pages/Batches.vue:77
|
||||
msgid "There are no batches matching the criteria. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr "crwdns152292:0crwdne152292:0"
|
||||
|
||||
#: frontend/src/components/CreateOutline.vue:12
|
||||
msgid "There are no chapters in this course. Create and manage chapters from here."
|
||||
@@ -5040,11 +5109,15 @@ 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/CertifiedParticipants.vue:84
|
||||
msgid "There are no participants matching this criteria."
|
||||
msgstr "crwdns152294:0crwdne152294:0"
|
||||
|
||||
#: 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"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:146
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:151
|
||||
msgid "There are no seats available in this batch."
|
||||
msgstr "crwdns150808:0crwdne150808:0"
|
||||
|
||||
@@ -5060,7 +5133,7 @@ msgstr "crwdns152140:0crwdne152140:0"
|
||||
msgid "There are no {0} on this site."
|
||||
msgstr "crwdns150812:0{0}crwdne150812:0"
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:82
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:85
|
||||
msgid "There has been an update on your submission for assignment {0}"
|
||||
msgstr "crwdns152142:0{0}crwdne152142:0"
|
||||
|
||||
@@ -5091,7 +5164,7 @@ msgstr "crwdns152144:0crwdne152144:0"
|
||||
msgid "This course has:"
|
||||
msgstr "crwdns150820:0crwdne150820:0"
|
||||
|
||||
#: lms/lms/utils.py:1645
|
||||
#: lms/lms/utils.py:1573
|
||||
msgid "This course is free."
|
||||
msgstr "crwdns150822:0crwdne150822:0"
|
||||
|
||||
@@ -5235,7 +5308,7 @@ msgstr "crwdns150852:0crwdne150852:0"
|
||||
msgid "To Date"
|
||||
msgstr "crwdns150854:0crwdne150854:0"
|
||||
|
||||
#: lms/lms/utils.py:1656
|
||||
#: lms/lms/utils.py:1584
|
||||
msgid "To join this batch, please contact the Administrator."
|
||||
msgstr "crwdns150858:0crwdne150858:0"
|
||||
|
||||
@@ -5291,7 +5364,7 @@ msgstr "crwdns150876:0crwdne150876:0"
|
||||
#: frontend/src/components/Modals/Question.vue:54
|
||||
#: frontend/src/pages/AssignmentForm.vue:39
|
||||
#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:157
|
||||
#: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:16
|
||||
#: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:55
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
#: lms/lms/doctype/lms_assignment/lms_assignment.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
@@ -5337,6 +5410,10 @@ msgstr "crwdns150890:0crwdne150890:0"
|
||||
msgid "Unlisted"
|
||||
msgstr "crwdns150892:0crwdne150892:0"
|
||||
|
||||
#: frontend/src/pages/Batches.vue:262 frontend/src/pages/Batches.vue:278
|
||||
msgid "Unpublished"
|
||||
msgstr "crwdns152296:0crwdne152296:0"
|
||||
|
||||
#: frontend/src/components/Modals/EditCoverImage.vue:60
|
||||
#: frontend/src/components/UnsplashImageBrowser.vue:54
|
||||
msgid "Unsplash"
|
||||
@@ -5354,12 +5431,13 @@ msgstr "crwdns150898:0crwdne150898:0"
|
||||
|
||||
#. Option for the 'Status' (Select) field in DocType 'Cohort'
|
||||
#. Label of the upcoming (Check) field in DocType 'LMS Course'
|
||||
#: frontend/src/pages/Batches.vue:258 frontend/src/pages/Batches.vue:276
|
||||
#: frontend/src/pages/CourseForm.vue:184 lms/lms/doctype/cohort/cohort.json
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
msgid "Upcoming"
|
||||
msgstr "crwdns150900:0crwdne150900:0"
|
||||
|
||||
#: frontend/src/pages/Batch.vue:166
|
||||
#: frontend/src/pages/Batch.vue:169
|
||||
msgid "Upcoming Batches"
|
||||
msgstr "crwdns150902:0crwdne150902:0"
|
||||
|
||||
@@ -5421,7 +5499,7 @@ msgstr "crwdns150920:0crwdne150920:0"
|
||||
msgid "User Skill"
|
||||
msgstr "crwdns150922:0crwdne150922:0"
|
||||
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.py:37
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.py:40
|
||||
msgid "User {0} has reported the job post {1}"
|
||||
msgstr "crwdns150924:0{0}crwdnd150924:0{1}crwdne150924:0"
|
||||
|
||||
@@ -5446,6 +5524,11 @@ msgstr "crwdns150930:0crwdne150930:0"
|
||||
msgid "Valid email and name required"
|
||||
msgstr "crwdns150932:0crwdne150932:0"
|
||||
|
||||
#. Label of the value (Rating) field in DocType 'LMS Batch Feedback'
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "Value"
|
||||
msgstr "crwdns152298:0crwdne152298:0"
|
||||
|
||||
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "Value Change"
|
||||
@@ -5569,7 +5652,7 @@ msgstr "crwdns150980:0crwdne150980:0"
|
||||
msgid "You are already enrolled for this course."
|
||||
msgstr "crwdns150982:0crwdne150982:0"
|
||||
|
||||
#: frontend/src/pages/Batch.vue:148
|
||||
#: frontend/src/pages/Batch.vue:151
|
||||
msgid "You are not a member of this batch. Please checkout our upcoming batches."
|
||||
msgstr "crwdns150984:0crwdne150984:0"
|
||||
|
||||
@@ -5606,10 +5689,6 @@ msgstr "crwdns150992:0{0}crwdne150992:0"
|
||||
msgid "You can find their resume attached to this email."
|
||||
msgstr "crwdns150994:0crwdne150994:0"
|
||||
|
||||
#: frontend/src/pages/Batches.vue:113
|
||||
msgid "You can link courses and assessments to it."
|
||||
msgstr "crwdns151504:0crwdne151504:0"
|
||||
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:115
|
||||
msgid "You cannot schedule evaluations after {0}."
|
||||
msgstr "crwdns150996:0{0}crwdne150996:0"
|
||||
@@ -5671,10 +5750,6 @@ msgstr "crwdns151594:0crwdne151594:0"
|
||||
msgid "You have opted to be notified for this course. You will receive an email when the course becomes available."
|
||||
msgstr "crwdns151018:0crwdne151018:0"
|
||||
|
||||
#: lms/lms/web_template/courses_enrolled/courses_enrolled.html:17
|
||||
msgid "You haven't enrolled for any courses"
|
||||
msgstr "crwdns151020:0crwdne151020:0"
|
||||
|
||||
#: frontend/src/components/CourseCardOverlay.vue:146
|
||||
msgid "You need to login first to enroll for this course"
|
||||
msgstr "crwdns151022:0crwdne151022:0"
|
||||
@@ -5769,10 +5844,6 @@ msgstr "crwdns151058:0crwdne151058:0"
|
||||
msgid "in the last"
|
||||
msgstr "crwdns152180:0crwdne152180:0"
|
||||
|
||||
#: frontend/src/pages/ProfileCertificates.vue:17
|
||||
msgid "issued on"
|
||||
msgstr "crwdns151060:0crwdne151060:0"
|
||||
|
||||
#: lms/templates/signup-form.html:12
|
||||
msgid "jane@example.com"
|
||||
msgstr "crwdns151062:0crwdne151062:0"
|
||||
@@ -5793,9 +5864,9 @@ msgstr "crwdns151064:0crwdne151064:0"
|
||||
msgid "out of"
|
||||
msgstr "crwdns151066:0crwdne151066:0"
|
||||
|
||||
#: frontend/src/components/JobCard.vue:37
|
||||
msgid "posted by"
|
||||
msgstr "crwdns151068:0crwdne151068:0"
|
||||
#: frontend/src/components/JobCard.vue:30
|
||||
msgid "posted"
|
||||
msgstr "crwdns152300:0crwdne152300:0"
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:386
|
||||
msgid "question_detail"
|
||||
@@ -5817,7 +5888,7 @@ msgstr "crwdns152184:0crwdne152184:0"
|
||||
msgid "you can"
|
||||
msgstr "crwdns151076:0crwdne151076:0"
|
||||
|
||||
#: lms/lms/api.py:761 lms/lms/api.py:769
|
||||
#: lms/lms/api.py:780 lms/lms/api.py:788
|
||||
msgid "{0} Settings not found"
|
||||
msgstr "crwdns151078:0{0}crwdne151078:0"
|
||||
|
||||
@@ -5845,7 +5916,11 @@ msgstr "crwdns151088:0{0}crwdnd151088:0{1}crwdne151088:0"
|
||||
msgid "{0} is already a {1} of the course {2}"
|
||||
msgstr "crwdns151090:0{0}crwdnd151090:0{1}crwdnd151090:0{2}crwdne151090:0"
|
||||
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:59
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:91
|
||||
msgid "{0} is already certified for the batch {1}"
|
||||
msgstr "crwdns152302:0{0}crwdnd152302:0{1}crwdne152302:0"
|
||||
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:72
|
||||
msgid "{0} is already certified for the course {1}"
|
||||
msgstr "crwdns151092:0{0}crwdnd151092:0{1}crwdne151092:0"
|
||||
|
||||
@@ -5853,7 +5928,7 @@ msgstr "crwdns151092:0{0}crwdnd151092:0{1}crwdne151092:0"
|
||||
msgid "{0} is your evaluator"
|
||||
msgstr "crwdns151094:0{0}crwdne151094:0"
|
||||
|
||||
#: lms/lms/utils.py:700
|
||||
#: lms/lms/utils.py:682
|
||||
msgid "{0} mentioned you in a comment"
|
||||
msgstr "crwdns151096:0{0}crwdne151096:0"
|
||||
|
||||
@@ -5861,11 +5936,11 @@ msgstr "crwdns151096:0{0}crwdne151096:0"
|
||||
msgid "{0} mentioned you in a comment in your batch."
|
||||
msgstr "crwdns151098:0{0}crwdne151098:0"
|
||||
|
||||
#: lms/lms/utils.py:653 lms/lms/utils.py:659
|
||||
#: lms/lms/utils.py:635 lms/lms/utils.py:641
|
||||
msgid "{0} mentioned you in a comment in {1}"
|
||||
msgstr "crwdns151100:0{0}crwdnd151100:0{1}crwdne151100:0"
|
||||
|
||||
#: lms/lms/utils.py:476
|
||||
#: lms/lms/utils.py:458
|
||||
msgid "{0}k"
|
||||
msgstr "crwdns151102:0{0}crwdne151102:0"
|
||||
|
||||
|
||||
279
lms/locale/es.po
279
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-10 16:04+0000\n"
|
||||
"PO-Revision-Date: 2025-01-13 06:31\n"
|
||||
"POT-Creation-Date: 2025-01-17 16:04+0000\n"
|
||||
"PO-Revision-Date: 2025-01-20 11:13\n"
|
||||
"Last-Translator: jannat@frappe.io\n"
|
||||
"Language-Team: Spanish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -75,7 +75,7 @@ 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
|
||||
#: frontend/src/pages/Batch.vue:96
|
||||
msgid "About this batch"
|
||||
msgstr ""
|
||||
|
||||
@@ -212,14 +212,26 @@ msgid "Admin"
|
||||
msgstr "Admin"
|
||||
|
||||
#. Name of a role
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
#: frontend/src/pages/Batches.vue:270 lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "All"
|
||||
msgstr "Todos"
|
||||
|
||||
#: frontend/src/pages/Batches.vue:26
|
||||
msgid "All Batches"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:12
|
||||
msgid "All Certified Participants"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/widgets/BreadCrumb.html:3
|
||||
msgid "All Courses"
|
||||
msgstr "Todos los Cursos"
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:51
|
||||
msgid "All Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/quiz/quiz.html:141
|
||||
msgid "All Submissions"
|
||||
msgstr "Todas las entregas"
|
||||
@@ -279,7 +291,7 @@ msgstr "Cantidad basada en el campo"
|
||||
msgid "Amount Field"
|
||||
msgstr "Campo cantidad"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:70
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:75
|
||||
msgid "Amount and currency are required for paid batches."
|
||||
msgstr ""
|
||||
|
||||
@@ -353,6 +365,10 @@ msgstr "Aprobado"
|
||||
msgid "Apps"
|
||||
msgstr "Apps"
|
||||
|
||||
#: frontend/src/pages/Batches.vue:259 frontend/src/pages/Batches.vue:277
|
||||
msgid "Archived"
|
||||
msgstr "Archivado"
|
||||
|
||||
#. Label of the user_category (Check) field in DocType 'LMS Settings'
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Ask User Category during Signup"
|
||||
@@ -381,7 +397,7 @@ msgstr "Tipo de evaluación"
|
||||
msgid "Assessment added successfully"
|
||||
msgstr "Examen añadido correctamente"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:80
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:85
|
||||
msgid "Assessment {0} has already been added to this batch."
|
||||
msgstr "La evaluación {0} ya se ha agregado a este lote."
|
||||
|
||||
@@ -473,6 +489,10 @@ msgstr "Grabación Automática"
|
||||
msgid "Average Rating"
|
||||
msgstr "Puntuación media"
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:38
|
||||
msgid "Average of Feedback Received"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Lesson.vue:96
|
||||
msgid "Back to Course"
|
||||
msgstr "Volver al curso"
|
||||
@@ -493,10 +513,12 @@ msgstr "Descripción de la Insignia"
|
||||
msgid "Badge Image"
|
||||
msgstr "Imagen de la Insignia"
|
||||
|
||||
#. Label of the batch (Link) field in DocType 'LMS Batch Feedback'
|
||||
#. Label of the batch_name (Link) field in DocType 'LMS Certificate'
|
||||
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
|
||||
#. Label of the batch_name (Link) field in DocType 'LMS Live Class'
|
||||
#: frontend/src/components/Modals/Event.vue:32
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
@@ -578,7 +600,9 @@ msgstr "Fecha de inicio del lote:"
|
||||
msgid "Batch Student"
|
||||
msgstr "Estudiante por lotes"
|
||||
|
||||
#. Label of the batch_title (Data) field in DocType 'LMS Certificate'
|
||||
#. Label of the batch_title (Data) field in DocType 'LMS Certificate Request'
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
msgid "Batch Title"
|
||||
msgstr "Título del grupo"
|
||||
@@ -587,14 +611,15 @@ msgstr "Título del grupo"
|
||||
msgid "Batch Updated"
|
||||
msgstr "Lote actualizado"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:41
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:46
|
||||
msgid "Batch end date cannot be before the batch start date"
|
||||
msgstr "La fecha de finalización del grupo no puede ser anterior a la fecha de inicio del lote"
|
||||
|
||||
#. Group in LMS Course's connections
|
||||
#. Label of the batches (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/pages/Batches.vue:8 lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:60
|
||||
#: frontend/src/pages/Batches.vue:285
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:61
|
||||
msgid "Batches"
|
||||
msgstr "Lotes"
|
||||
|
||||
@@ -689,7 +714,8 @@ msgstr "Ropa casual"
|
||||
#. Label of the category (Link) field in DocType 'LMS Batch'
|
||||
#. Label of the category (Data) field in DocType 'LMS Category'
|
||||
#. Label of the category (Link) field in DocType 'LMS Course'
|
||||
#: frontend/src/pages/BatchForm.vue:202 frontend/src/pages/Batches.vue:16
|
||||
#: frontend/src/pages/BatchForm.vue:202 frontend/src/pages/Batches.vue:49
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:29
|
||||
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:17
|
||||
#: frontend/src/pages/JobDetail.vue:102
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
@@ -756,6 +782,7 @@ msgid "Certification Name"
|
||||
msgstr "Nombre de la certificación"
|
||||
|
||||
#. Label of the certified_participants (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:153
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Certified Participants"
|
||||
msgstr "Participantes certificados"
|
||||
@@ -1048,7 +1075,7 @@ msgstr "La condición debe ser un código Python válido."
|
||||
msgid "Confirmation Email Sent"
|
||||
msgstr "Correo de confirmación enviado"
|
||||
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:25
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:29
|
||||
msgid "Congratulations on getting certified!"
|
||||
msgstr "¡Felicidades por obtener la certificación!"
|
||||
|
||||
@@ -1057,8 +1084,10 @@ msgid "Contact the Administrator to enroll for this course."
|
||||
msgstr "Póngase en contacto con el administrador para inscribirse en este curso."
|
||||
|
||||
#. Label of the content (Text) field in DocType 'Course Lesson'
|
||||
#. Label of the content (Rating) field in DocType 'LMS Batch Feedback'
|
||||
#: frontend/src/pages/LessonForm.vue:62
|
||||
#: lms/lms/doctype/course_lesson/course_lesson.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "Content"
|
||||
msgstr "Contenido"
|
||||
|
||||
@@ -1067,7 +1096,7 @@ msgid "Continue Learning"
|
||||
msgstr "Continuar aprendiendo"
|
||||
|
||||
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
|
||||
#: frontend/src/pages/Jobs.vue:120
|
||||
#: frontend/src/pages/Jobs.vue:152
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
msgid "Contract"
|
||||
msgstr "Contrato"
|
||||
@@ -1133,7 +1162,7 @@ msgstr "País"
|
||||
#. Label of a Link in the LMS Workspace
|
||||
#. Label of a shortcut in the LMS Workspace
|
||||
#: frontend/src/components/Modals/BatchCourseModal.vue:20
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:23
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:38
|
||||
#: frontend/src/components/Modals/EvaluationModal.vue:20
|
||||
#: frontend/src/components/Modals/Event.vue:24
|
||||
#: lms/lms/doctype/batch_course/batch_course.json
|
||||
@@ -1220,7 +1249,7 @@ msgstr "Instructor del curso"
|
||||
msgid "Course Lesson"
|
||||
msgstr "Lección del curso"
|
||||
|
||||
#: lms/www/lms.py:27
|
||||
#: lms/www/lms.py:28
|
||||
msgid "Course List"
|
||||
msgstr "Lista de Cursos"
|
||||
|
||||
@@ -1270,7 +1299,7 @@ msgstr "Título del curso"
|
||||
msgid "Course added to program"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:345
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:350
|
||||
msgid "Course already added to the batch."
|
||||
msgstr "Curso ya agregado al lote."
|
||||
|
||||
@@ -1282,7 +1311,7 @@ msgstr ""
|
||||
msgid "Course moved successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:59
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:64
|
||||
#: lms/lms/doctype/lms_program/lms_program.py:19
|
||||
msgid "Course {0} has already been added to this batch."
|
||||
msgstr "El curso {0} ya se ha agregado a este lote."
|
||||
@@ -1333,10 +1362,6 @@ msgstr "Crear certificado LMS"
|
||||
msgid "Create LMS Certificate Evaluation"
|
||||
msgstr "Crear evaluación de certificados LMS"
|
||||
|
||||
#: frontend/src/pages/Batches.vue:110
|
||||
msgid "Create a Batch"
|
||||
msgstr "Crear un grupo"
|
||||
|
||||
#: frontend/src/pages/Courses.vue:132 lms/templates/onboarding_header.html:19
|
||||
msgid "Create a Course"
|
||||
msgstr "Crear un curso"
|
||||
@@ -1732,6 +1757,10 @@ msgstr "Hora de finalización"
|
||||
msgid "Enroll Now"
|
||||
msgstr "Inscribirse ahora"
|
||||
|
||||
#: frontend/src/pages/Batches.vue:274
|
||||
msgid "Enrolled"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/CourseCard.vue:43
|
||||
#: frontend/src/components/CourseCardOverlay.vue:104
|
||||
#: frontend/src/pages/CourseDetail.vue:33
|
||||
@@ -1742,7 +1771,7 @@ msgstr "Estudiantes inscritos"
|
||||
msgid "Enrolled successfully"
|
||||
msgstr "Inscrito exitosamente"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:103
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:108
|
||||
msgid "Enrollment Confirmation for the Next Training Batch"
|
||||
msgstr "Confirmación de inscripción para el próximo Lote de Entrenamiento"
|
||||
|
||||
@@ -1751,7 +1780,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:1765
|
||||
#: lms/lms/utils.py:1693
|
||||
msgid "Enrollment Failed"
|
||||
msgstr "Error al inscribirse"
|
||||
|
||||
@@ -1821,7 +1850,7 @@ msgstr "Fecha de finalización de la evaluación"
|
||||
msgid "Evaluation Request"
|
||||
msgstr "Solicitud de evaluación"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:87
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:92
|
||||
msgid "Evaluation end date cannot be less than the batch end date."
|
||||
msgstr "La fecha de finalización de la evaluación no puede ser inferior a la fecha de finalización"
|
||||
|
||||
@@ -1836,7 +1865,7 @@ msgstr "La evaluación se guardó correctamente"
|
||||
#. Label of the evaluator (Link) field in DocType 'LMS Certificate Evaluation'
|
||||
#. Label of the evaluator (Link) field in DocType 'LMS Certificate Request'
|
||||
#: frontend/src/components/Modals/BatchCourseModal.vue:26
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:28
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:22
|
||||
#: frontend/src/pages/ProfileRoles.vue:22
|
||||
#: lms/lms/doctype/batch_course/batch_course.json
|
||||
#: lms/lms/doctype/course_evaluator/course_evaluator.json
|
||||
@@ -1914,7 +1943,7 @@ msgid "Expiration Date"
|
||||
msgstr "Fecha de caducidad"
|
||||
|
||||
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:39
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:33
|
||||
#: frontend/src/components/Modals/Event.vue:126
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
msgid "Expiry Date"
|
||||
@@ -1955,6 +1984,12 @@ msgstr "Falla"
|
||||
msgid "Featured"
|
||||
msgstr "Destacados"
|
||||
|
||||
#. Label of the feedback (Small Text) field in DocType 'LMS Batch Feedback'
|
||||
#: frontend/src/components/BatchFeedback.vue:29
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "Feedback"
|
||||
msgstr "Retroalimentación"
|
||||
|
||||
#: frontend/src/components/Assignment.vue:61
|
||||
msgid "Feel free to make edits to your submission if needed."
|
||||
msgstr "Siéntase libre de realizar modificaciones en su envío si es necesario."
|
||||
@@ -1974,7 +2009,7 @@ msgstr "Campo de especialización/estudio"
|
||||
msgid "File Type"
|
||||
msgstr "Tipo de Archivo"
|
||||
|
||||
#: frontend/src/pages/Jobs.vue:47
|
||||
#: frontend/src/pages/Jobs.vue:33
|
||||
msgid "Find the perfect job for you"
|
||||
msgstr ""
|
||||
|
||||
@@ -2007,7 +2042,7 @@ msgid "Free"
|
||||
msgstr "Gratis"
|
||||
|
||||
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
|
||||
#: frontend/src/pages/Jobs.vue:121
|
||||
#: frontend/src/pages/Jobs.vue:153
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
msgid "Freelance"
|
||||
msgstr "Freelance"
|
||||
@@ -2049,7 +2084,7 @@ msgid "Full Name"
|
||||
msgstr "Nombre completo"
|
||||
|
||||
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
|
||||
#: frontend/src/pages/Jobs.vue:118
|
||||
#: frontend/src/pages/Jobs.vue:150
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
msgid "Full Time"
|
||||
msgstr "Tiempo completo"
|
||||
@@ -2147,6 +2182,10 @@ msgstr "Titular"
|
||||
msgid "Hello"
|
||||
msgstr "Hola"
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:11
|
||||
msgid "Help Us Improve"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/courses_created.html:15
|
||||
msgid "Help others learn something new by creating a course."
|
||||
msgstr "Ayude a otros a aprender algo nuevo creando un curso."
|
||||
@@ -2155,10 +2194,6 @@ msgstr "Ayude a otros a aprender algo nuevo creando un curso."
|
||||
msgid "Help us improve our course material."
|
||||
msgstr "Ayúdanos a mejorar el material de nuestro curso."
|
||||
|
||||
#: lms/lms/web_template/courses_enrolled/courses_enrolled.html:18
|
||||
msgid "Here are a few courses we recommend for you to get started with {0}"
|
||||
msgstr "Aquí hay algunos cursos que le recomendamos para comenzar {0}"
|
||||
|
||||
#: lms/lms/notification/certificate_request_reminder/certificate_request_reminder.html:1
|
||||
#: lms/templates/emails/certificate_request_notification.html:1
|
||||
msgid "Hey {0}"
|
||||
@@ -2360,9 +2395,11 @@ msgid "Instructor Notes"
|
||||
msgstr "Notas del instructor"
|
||||
|
||||
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch'
|
||||
#. Label of the instructors (Rating) field in DocType 'LMS Batch Feedback'
|
||||
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course'
|
||||
#: frontend/src/pages/BatchForm.vue:89 frontend/src/pages/CourseForm.vue:154
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
msgid "Instructors"
|
||||
msgstr "Instructores"
|
||||
@@ -2437,7 +2474,7 @@ msgstr ""
|
||||
|
||||
#. Label of the issue_date (Date) field in DocType 'Certification'
|
||||
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:34
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:28
|
||||
#: frontend/src/components/Modals/Event.vue:121
|
||||
#: lms/lms/doctype/certification/certification.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
@@ -2450,6 +2487,7 @@ msgid "Issued On"
|
||||
msgstr "Emitido el"
|
||||
|
||||
#: frontend/src/pages/ProfileAbout.vue:56
|
||||
#: frontend/src/pages/ProfileCertificates.vue:17
|
||||
#: lms/templates/certificates_section.html:11
|
||||
msgid "Issued on"
|
||||
msgstr "Emitido el"
|
||||
@@ -2487,7 +2525,7 @@ msgstr "Título de la bolsa de trabajo"
|
||||
msgid "Job Details"
|
||||
msgstr "Detalles del Puesto"
|
||||
|
||||
#: lms/www/lms.py:108
|
||||
#: lms/www/lms.py:109
|
||||
msgid "Job Openings"
|
||||
msgstr "Vacantes abiertas"
|
||||
|
||||
@@ -2566,6 +2604,11 @@ msgstr "Asignación de insignias de LMS"
|
||||
msgid "LMS Batch"
|
||||
msgstr "Lote LMS"
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "LMS Batch Feedback"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
||||
msgid "LMS Batch Old"
|
||||
@@ -2725,6 +2768,7 @@ msgstr "Fuente LMS"
|
||||
#: lms/lms/doctype/lms_assignment/lms_assignment.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
#: lms/lms/doctype/lms_course_progress/lms_course_progress.json
|
||||
@@ -2870,16 +2914,13 @@ msgid "LiveCode URL"
|
||||
msgstr "URL LiveCode"
|
||||
|
||||
#: frontend/src/components/Members.vue:106
|
||||
#: frontend/src/pages/Assignments.vue:71
|
||||
#: frontend/src/pages/Assignments.vue:71 frontend/src/pages/Batches.vue:88
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:71
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:39
|
||||
#: frontend/src/pages/Quizzes.vue:51
|
||||
msgid "Load More"
|
||||
msgstr "Carga más"
|
||||
|
||||
#: frontend/src/pages/Batches.vue:40
|
||||
msgid "Loading Batches..."
|
||||
msgstr "Cargando grupos..."
|
||||
|
||||
#. Option for the 'Auto Recording' (Select) field in DocType 'LMS Live Class'
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
msgid "Local"
|
||||
@@ -2902,7 +2943,7 @@ msgstr "Preferencia de ubicación"
|
||||
|
||||
#: frontend/src/components/AssignmentBlock.vue:13
|
||||
#: frontend/src/components/NoPermission.vue:28
|
||||
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:175
|
||||
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:178
|
||||
#: frontend/src/pages/Lesson.vue:24
|
||||
msgid "Login"
|
||||
msgstr "Iniciar sesión"
|
||||
@@ -3007,6 +3048,7 @@ msgstr "Medio:"
|
||||
#. Label of the member (Link) field in DocType 'Exercise Submission'
|
||||
#. Label of the member (Link) field in DocType 'LMS Assignment Submission'
|
||||
#. Label of the member (Link) field in DocType 'LMS Badge Assignment'
|
||||
#. Label of the member (Link) field in DocType 'LMS Batch Feedback'
|
||||
#. Label of the member (Link) field in DocType 'LMS Certificate'
|
||||
#. Label of the member (Link) field in DocType 'LMS Certificate Evaluation'
|
||||
#. Label of the member (Link) field in DocType 'LMS Certificate Request'
|
||||
@@ -3024,6 +3066,7 @@ msgstr "Medio:"
|
||||
#: lms/lms/doctype/exercise_submission/exercise_submission.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.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
|
||||
@@ -3049,8 +3092,15 @@ msgstr "Miembro Cohorte"
|
||||
msgid "Member Email"
|
||||
msgstr "Correo electrónico del miembro"
|
||||
|
||||
#. Label of the member_image (Attach Image) field in DocType 'LMS Batch
|
||||
#. Feedback'
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "Member Image"
|
||||
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 Batch Feedback'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Certificate'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Certificate
|
||||
#. Evaluation'
|
||||
@@ -3061,6 +3111,7 @@ msgstr "Correo electrónico del miembro"
|
||||
#. 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_batch_feedback/lms_batch_feedback.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
|
||||
@@ -3223,7 +3274,7 @@ msgid "My calendar"
|
||||
msgstr "Mi calendario"
|
||||
|
||||
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
||||
#: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:30
|
||||
#: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:17
|
||||
#: frontend/src/pages/Courses.vue:45 frontend/src/pages/Programs.vue:14
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "New"
|
||||
@@ -3237,15 +3288,15 @@ msgstr ""
|
||||
msgid "New Assignment Submission"
|
||||
msgstr "Nuevo envío de la tarea"
|
||||
|
||||
#: lms/public/js/common_functions.js:255 lms/www/lms.py:86
|
||||
#: lms/public/js/common_functions.js:255 lms/www/lms.py:87
|
||||
msgid "New Batch"
|
||||
msgstr "Nuevo lote"
|
||||
|
||||
#: lms/www/lms.py:37
|
||||
#: lms/www/lms.py:38
|
||||
msgid "New Course"
|
||||
msgstr "Nuevo curso"
|
||||
|
||||
#: frontend/src/pages/Jobs.vue:39
|
||||
#: frontend/src/pages/Jobs.vue:23
|
||||
msgid "New Job"
|
||||
msgstr "Nuevo trabajo"
|
||||
|
||||
@@ -3278,11 +3329,11 @@ msgstr "Nuevo cuestionario"
|
||||
msgid "New Sign Up"
|
||||
msgstr "Nueva inscripción"
|
||||
|
||||
#: lms/lms/utils.py:623
|
||||
#: lms/lms/utils.py:605
|
||||
msgid "New comment in batch {0}"
|
||||
msgstr "Nuevo comentario en lote {0}"
|
||||
|
||||
#: lms/lms/utils.py:616
|
||||
#: lms/lms/utils.py:598
|
||||
msgid "New reply on the topic {0} in course {1}"
|
||||
msgstr "Nueva respuesta sobre el tema {0} en curso {1}"
|
||||
|
||||
@@ -3324,7 +3375,7 @@ msgstr "Sin anuncios"
|
||||
msgid "No assignments found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:125
|
||||
#: frontend/src/pages/Batches.vue:73
|
||||
msgid "No batches found"
|
||||
msgstr "No se encontraron grupos"
|
||||
|
||||
@@ -3348,11 +3399,15 @@ msgstr ""
|
||||
msgid "No courses under review"
|
||||
msgstr "No hay cursos en revisión"
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:101
|
||||
msgid "No feedback received yet."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProfileAbout.vue:12
|
||||
msgid "No introduction"
|
||||
msgstr "No hay introducción"
|
||||
|
||||
#: frontend/src/pages/Jobs.vue:63
|
||||
#: frontend/src/pages/Jobs.vue:77
|
||||
msgid "No jobs posted"
|
||||
msgstr "No hay trabajos publicados"
|
||||
|
||||
@@ -3360,6 +3415,10 @@ msgstr "No hay trabajos publicados"
|
||||
msgid "No live classes scheduled"
|
||||
msgstr "No hay clases en vivo programadas"
|
||||
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:81
|
||||
msgid "No participants found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:91
|
||||
msgid "No programs found"
|
||||
msgstr ""
|
||||
@@ -3384,10 +3443,6 @@ msgstr "No hay próximas evaluaciones."
|
||||
msgid "No {0}"
|
||||
msgstr "No {0}"
|
||||
|
||||
#: frontend/src/pages/Batches.vue:84
|
||||
msgid "No {0} batches"
|
||||
msgstr "Grupos {0} inexistentes"
|
||||
|
||||
#: frontend/src/pages/Courses.vue:107
|
||||
msgid "No {0} courses"
|
||||
msgstr "Cursos {0} inexistentes"
|
||||
@@ -3420,7 +3475,7 @@ msgstr "No disponible para vista previa"
|
||||
msgid "Not Graded"
|
||||
msgstr "Sin calificar"
|
||||
|
||||
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:143
|
||||
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:146
|
||||
msgid "Not Permitted"
|
||||
msgstr "No permitido"
|
||||
|
||||
@@ -3614,7 +3669,7 @@ msgid "Pan Number"
|
||||
msgstr "Número NIF"
|
||||
|
||||
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
|
||||
#: frontend/src/pages/Jobs.vue:119
|
||||
#: frontend/src/pages/Jobs.vue:151
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
msgid "Part Time"
|
||||
msgstr "Tiempo parcial"
|
||||
@@ -3765,11 +3820,11 @@ msgstr "Por favor, consultar su correo electrónico para la verificación"
|
||||
msgid "Please click on the following button to set your new password"
|
||||
msgstr "Haga clic en el siguiente botón para establecer su nueva contraseña"
|
||||
|
||||
#: lms/lms/utils.py:1887 lms/lms/utils.py:1891
|
||||
#: lms/lms/utils.py:1815 lms/lms/utils.py:1819
|
||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:256
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:261
|
||||
msgid "Please enable Zoom Settings to use this feature."
|
||||
msgstr "Habilite la configuración de Zoom para utilizar esta funcionalidad."
|
||||
|
||||
@@ -3786,7 +3841,7 @@ msgid "Please enter a title."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:40
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:122
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:125
|
||||
msgid "Please enter a valid URL."
|
||||
msgstr "Introduce una URL válida."
|
||||
|
||||
@@ -3794,7 +3849,7 @@ msgstr "Introduce una URL válida."
|
||||
msgid "Please enter a valid time in the format HH:mm."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:116
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:119
|
||||
msgid "Please enter the URL for assignment submission."
|
||||
msgstr "Por favor, introduzca la URL para el envío de la tarea."
|
||||
|
||||
@@ -3802,7 +3857,7 @@ msgstr "Por favor, introduzca la URL para el envío de la tarea."
|
||||
msgid "Please enter your answer"
|
||||
msgstr "Por favor escriba su respuesta"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:66
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:71
|
||||
msgid "Please install the Payments app to create a paid batches."
|
||||
msgstr "Por favor, instale la aplicación de pagos para crear un grupo de pagos."
|
||||
|
||||
@@ -3822,7 +3877,7 @@ msgstr ""
|
||||
msgid "Please login to access the quiz."
|
||||
msgstr "Inicie sesión para acceder al cuestionario."
|
||||
|
||||
#: frontend/src/components/NoPermission.vue:25 frontend/src/pages/Batch.vue:154
|
||||
#: frontend/src/components/NoPermission.vue:25 frontend/src/pages/Batch.vue:157
|
||||
msgid "Please login to access this page."
|
||||
msgstr "Por favor inicie sesión para acceder a esta página."
|
||||
|
||||
@@ -3863,7 +3918,7 @@ msgstr "Tome las medidas adecuadas en {0}"
|
||||
msgid "Please upload a SCORM package"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:119
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:122
|
||||
msgid "Please upload the assignment file."
|
||||
msgstr "Por favor, suba el archivo de la tarea."
|
||||
|
||||
@@ -3897,7 +3952,7 @@ msgid "Possible Answer 4"
|
||||
msgstr "Posible respuesta 4"
|
||||
|
||||
#: frontend/src/components/DiscussionReplies.vue:52
|
||||
#: frontend/src/components/DiscussionReplies.vue:86
|
||||
#: frontend/src/components/DiscussionReplies.vue:87
|
||||
msgid "Post"
|
||||
msgstr "Publicar"
|
||||
|
||||
@@ -4326,19 +4381,19 @@ msgstr "Preferencia de rol"
|
||||
msgid "Route"
|
||||
msgstr "Ruta"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:199
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:204
|
||||
msgid "Row #{0} Date cannot be outside the batch duration."
|
||||
msgstr "Fila #{0} La fecha no puede estar fuera de la duración del lote."
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:194
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:199
|
||||
msgid "Row #{0} End time cannot be outside the batch duration."
|
||||
msgstr "Fila #{0} La hora de finalización no puede estar fuera de la duración del lote."
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:176
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:181
|
||||
msgid "Row #{0} Start time cannot be greater than or equal to end time."
|
||||
msgstr "Fila #{0} La hora de inicio no puede ser mayor o igual que la hora final."
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:185
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:190
|
||||
msgid "Row #{0} Start time cannot be outside the batch duration."
|
||||
msgstr "Fila #{0} La hora de inicio no puede estar fuera de la duración del lote."
|
||||
|
||||
@@ -4419,10 +4474,18 @@ msgstr "Puntuación"
|
||||
msgid "Score Out Of"
|
||||
msgstr "Puntuación fuera de"
|
||||
|
||||
#: frontend/src/components/Members.vue:15
|
||||
#: frontend/src/components/Members.vue:15 frontend/src/pages/Jobs.vue:38
|
||||
msgid "Search"
|
||||
msgstr "Buscar"
|
||||
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:17
|
||||
msgid "Search by Name"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:39
|
||||
msgid "Search by Title"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Assignments.vue:25
|
||||
msgid "Search by title"
|
||||
msgstr ""
|
||||
@@ -4719,7 +4782,7 @@ msgstr "Estado"
|
||||
#. Label of the statistics (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/components/BatchStudents.vue:5
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:133
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:134
|
||||
msgid "Statistics"
|
||||
msgstr "Estadísticas"
|
||||
|
||||
@@ -4784,7 +4847,7 @@ msgstr "Nombre del Estudiante"
|
||||
msgid "Student Reviews"
|
||||
msgstr "Reseñas de estudiantes"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:48
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:53
|
||||
msgid "Student {0} has already been added to this batch."
|
||||
msgstr "El estudiante {0} ya ha sido añadido a este lote."
|
||||
|
||||
@@ -4832,6 +4895,7 @@ msgstr "Lista de entregas"
|
||||
msgid "Submission by"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:14
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:9
|
||||
#: frontend/src/components/Modals/BatchCourseModal.vue:9
|
||||
#: frontend/src/components/Modals/EvaluationModal.vue:9
|
||||
@@ -4889,7 +4953,7 @@ msgstr "Resumen"
|
||||
msgid "Sunday"
|
||||
msgstr "Domingo"
|
||||
|
||||
#: lms/lms/api.py:964
|
||||
#: lms/lms/api.py:983
|
||||
msgid "Suspicious pattern found in {0}: {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -4915,6 +4979,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
||||
#: lms/lms/doctype/lms_category/lms_category.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
@@ -4997,6 +5062,10 @@ msgstr "Pruebas"
|
||||
msgid "Text"
|
||||
msgstr "Texto"
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:7
|
||||
msgid "Thank you for providing your feedback!"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/emails/lms_course_interest.html:17
|
||||
#: lms/templates/emails/lms_invite_request_approved.html:15
|
||||
#: lms/templates/emails/mentor_request_creation_email.html:7
|
||||
@@ -5004,7 +5073,7 @@ msgstr "Texto"
|
||||
msgid "Thanks and Regards"
|
||||
msgstr "Gracias y saludos"
|
||||
|
||||
#: lms/lms/utils.py:1794
|
||||
#: lms/lms/utils.py:1722
|
||||
msgid "The batch is full. Please contact the Administrator."
|
||||
msgstr ""
|
||||
|
||||
@@ -5028,9 +5097,9 @@ msgstr "La plaza ya está reservada por otro participante."
|
||||
msgid "The status of your application has changed."
|
||||
msgstr "El estado de su solicitud ha cambiado."
|
||||
|
||||
#: frontend/src/pages/Batches.vue:129
|
||||
msgid "There are no batches available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr "No hay grupos disponibles en este momento. ¡Esté atento, pronto habrá nuevas experiencias de aprendizaje en camino!"
|
||||
#: frontend/src/pages/Batches.vue:77
|
||||
msgid "There are no batches matching the criteria. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/CreateOutline.vue:12
|
||||
msgid "There are no chapters in this course. Create and manage chapters from here."
|
||||
@@ -5040,11 +5109,15 @@ 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/CertifiedParticipants.vue:84
|
||||
msgid "There are no participants matching this criteria."
|
||||
msgstr ""
|
||||
|
||||
#: 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 ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:146
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:151
|
||||
msgid "There are no seats available in this batch."
|
||||
msgstr "No hay asientos disponibles en este lote."
|
||||
|
||||
@@ -5060,7 +5133,7 @@ msgstr ""
|
||||
msgid "There are no {0} on this site."
|
||||
msgstr "No hay {0} en este sitio."
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:82
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:85
|
||||
msgid "There has been an update on your submission for assignment {0}"
|
||||
msgstr ""
|
||||
|
||||
@@ -5091,7 +5164,7 @@ msgstr ""
|
||||
msgid "This course has:"
|
||||
msgstr "Este curso tiene:"
|
||||
|
||||
#: lms/lms/utils.py:1645
|
||||
#: lms/lms/utils.py:1573
|
||||
msgid "This course is free."
|
||||
msgstr "Este curso es gratuito."
|
||||
|
||||
@@ -5235,7 +5308,7 @@ msgstr "A"
|
||||
msgid "To Date"
|
||||
msgstr "Hasta la fecha"
|
||||
|
||||
#: lms/lms/utils.py:1656
|
||||
#: lms/lms/utils.py:1584
|
||||
msgid "To join this batch, please contact the Administrator."
|
||||
msgstr "Para unirse a este lote, comuníquese con el Administrador."
|
||||
|
||||
@@ -5291,7 +5364,7 @@ msgstr "Twitter"
|
||||
#: frontend/src/components/Modals/Question.vue:54
|
||||
#: frontend/src/pages/AssignmentForm.vue:39
|
||||
#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:157
|
||||
#: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:16
|
||||
#: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:55
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
#: lms/lms/doctype/lms_assignment/lms_assignment.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
@@ -5337,6 +5410,10 @@ msgstr "En Revisión"
|
||||
msgid "Unlisted"
|
||||
msgstr "No listado"
|
||||
|
||||
#: frontend/src/pages/Batches.vue:262 frontend/src/pages/Batches.vue:278
|
||||
msgid "Unpublished"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/EditCoverImage.vue:60
|
||||
#: frontend/src/components/UnsplashImageBrowser.vue:54
|
||||
msgid "Unsplash"
|
||||
@@ -5354,12 +5431,13 @@ msgstr "Rol no estructurado"
|
||||
|
||||
#. Option for the 'Status' (Select) field in DocType 'Cohort'
|
||||
#. Label of the upcoming (Check) field in DocType 'LMS Course'
|
||||
#: frontend/src/pages/Batches.vue:258 frontend/src/pages/Batches.vue:276
|
||||
#: frontend/src/pages/CourseForm.vue:184 lms/lms/doctype/cohort/cohort.json
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
msgid "Upcoming"
|
||||
msgstr "Próximamente"
|
||||
|
||||
#: frontend/src/pages/Batch.vue:166
|
||||
#: frontend/src/pages/Batch.vue:169
|
||||
msgid "Upcoming Batches"
|
||||
msgstr "Próximos lotes"
|
||||
|
||||
@@ -5421,7 +5499,7 @@ msgstr "Entrada del usuario"
|
||||
msgid "User Skill"
|
||||
msgstr "Habilidad del usuario"
|
||||
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.py:37
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.py:40
|
||||
msgid "User {0} has reported the job post {1}"
|
||||
msgstr "El usuario {0} ha reportado el puesto de trabajo {1}"
|
||||
|
||||
@@ -5446,6 +5524,11 @@ msgstr "Respuesta del usuario"
|
||||
msgid "Valid email and name required"
|
||||
msgstr "Se requiere un correo electrónico y un nombre válidos"
|
||||
|
||||
#. Label of the value (Rating) field in DocType 'LMS Batch Feedback'
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "Value"
|
||||
msgstr "Valor"
|
||||
|
||||
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "Value Change"
|
||||
@@ -5569,7 +5652,7 @@ msgstr "Ya estás inscrito en este lote."
|
||||
msgid "You are already enrolled for this course."
|
||||
msgstr "Ya estás inscrito en este curso."
|
||||
|
||||
#: frontend/src/pages/Batch.vue:148
|
||||
#: frontend/src/pages/Batch.vue:151
|
||||
msgid "You are not a member of this batch. Please checkout our upcoming batches."
|
||||
msgstr "No eres miembro de este lote. Consulte nuestros próximos lotes."
|
||||
|
||||
@@ -5606,10 +5689,6 @@ msgstr "Puedes intentar este cuestionario {0}."
|
||||
msgid "You can find their resume attached to this email."
|
||||
msgstr "Puede encontrar su currículum vitae adjunto a este correo electrónico."
|
||||
|
||||
#: frontend/src/pages/Batches.vue:113
|
||||
msgid "You can link courses and assessments to it."
|
||||
msgstr "Puedes vincularle cursos y evaluaciones."
|
||||
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:115
|
||||
msgid "You cannot schedule evaluations after {0}."
|
||||
msgstr "No puede programar evaluaciones después de {0}."
|
||||
@@ -5671,10 +5750,6 @@ msgstr ""
|
||||
msgid "You have opted to be notified for this course. You will receive an email when the course becomes available."
|
||||
msgstr "Has optado por recibir notificaciones sobre este curso. Recibirás un correo electrónico cuando el curso esté disponible."
|
||||
|
||||
#: lms/lms/web_template/courses_enrolled/courses_enrolled.html:17
|
||||
msgid "You haven't enrolled for any courses"
|
||||
msgstr "No te has inscrito en ningún curso"
|
||||
|
||||
#: frontend/src/components/CourseCardOverlay.vue:146
|
||||
msgid "You need to login first to enroll for this course"
|
||||
msgstr "Debes iniciar sesión primero para inscribirte en este curso."
|
||||
@@ -5769,10 +5844,6 @@ msgstr "ha sido"
|
||||
msgid "in the last"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProfileCertificates.vue:17
|
||||
msgid "issued on"
|
||||
msgstr "emitido el"
|
||||
|
||||
#: lms/templates/signup-form.html:12
|
||||
msgid "jane@example.com"
|
||||
msgstr "juan@example.com"
|
||||
@@ -5793,9 +5864,9 @@ msgstr "de"
|
||||
msgid "out of"
|
||||
msgstr "fuera de"
|
||||
|
||||
#: frontend/src/components/JobCard.vue:37
|
||||
msgid "posted by"
|
||||
msgstr "publicado por"
|
||||
#: frontend/src/components/JobCard.vue:30
|
||||
msgid "posted"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:386
|
||||
msgid "question_detail"
|
||||
@@ -5817,7 +5888,7 @@ msgstr ""
|
||||
msgid "you can"
|
||||
msgstr "puedes"
|
||||
|
||||
#: lms/lms/api.py:761 lms/lms/api.py:769
|
||||
#: lms/lms/api.py:780 lms/lms/api.py:788
|
||||
msgid "{0} Settings not found"
|
||||
msgstr "Configuraciones {0} no encontradas"
|
||||
|
||||
@@ -5845,7 +5916,11 @@ msgstr "{0} ya es mentor del curso {1}"
|
||||
msgid "{0} is already a {1} of the course {2}"
|
||||
msgstr "{0} ya es un {1} del curso {2}"
|
||||
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:59
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:91
|
||||
msgid "{0} is already certified for the batch {1}"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:72
|
||||
msgid "{0} is already certified for the course {1}"
|
||||
msgstr "{0} ya está certificado para el curso {1}"
|
||||
|
||||
@@ -5853,7 +5928,7 @@ msgstr "{0} ya está certificado para el curso {1}"
|
||||
msgid "{0} is your evaluator"
|
||||
msgstr "{0} es tu evaluador"
|
||||
|
||||
#: lms/lms/utils.py:700
|
||||
#: lms/lms/utils.py:682
|
||||
msgid "{0} mentioned you in a comment"
|
||||
msgstr "{0} te mencionó en un comentario"
|
||||
|
||||
@@ -5861,11 +5936,11 @@ msgstr "{0} te mencionó en un comentario"
|
||||
msgid "{0} mentioned you in a comment in your batch."
|
||||
msgstr "{0} te mencionó en un comentario en tu lote."
|
||||
|
||||
#: lms/lms/utils.py:653 lms/lms/utils.py:659
|
||||
#: lms/lms/utils.py:635 lms/lms/utils.py:641
|
||||
msgid "{0} mentioned you in a comment in {1}"
|
||||
msgstr "{0} te mencionó en un comentario en {1}"
|
||||
|
||||
#: lms/lms/utils.py:476
|
||||
#: lms/lms/utils.py:458
|
||||
msgid "{0}k"
|
||||
msgstr "{0}k"
|
||||
|
||||
|
||||
281
lms/locale/fa.po
281
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-10 16:04+0000\n"
|
||||
"PO-Revision-Date: 2025-01-14 06:35\n"
|
||||
"POT-Creation-Date: 2025-01-17 16:04+0000\n"
|
||||
"PO-Revision-Date: 2025-01-21 11:11\n"
|
||||
"Last-Translator: jannat@frappe.io\n"
|
||||
"Language-Team: Persian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -75,7 +75,7 @@ msgstr ""
|
||||
msgid "About"
|
||||
msgstr "درباره"
|
||||
|
||||
#: frontend/src/pages/Batch.vue:93
|
||||
#: frontend/src/pages/Batch.vue:96
|
||||
msgid "About this batch"
|
||||
msgstr ""
|
||||
|
||||
@@ -212,14 +212,26 @@ msgid "Admin"
|
||||
msgstr "ادمین"
|
||||
|
||||
#. Name of a role
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
#: frontend/src/pages/Batches.vue:270 lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "All"
|
||||
msgstr "همه"
|
||||
|
||||
#: frontend/src/pages/Batches.vue:26
|
||||
msgid "All Batches"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:12
|
||||
msgid "All Certified Participants"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/widgets/BreadCrumb.html:3
|
||||
msgid "All Courses"
|
||||
msgstr "همه دوره ها"
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:51
|
||||
msgid "All Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/quiz/quiz.html:141
|
||||
msgid "All Submissions"
|
||||
msgstr "همه موارد ارسالی"
|
||||
@@ -279,7 +291,7 @@ msgstr ""
|
||||
msgid "Amount Field"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:70
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:75
|
||||
msgid "Amount and currency are required for paid batches."
|
||||
msgstr ""
|
||||
|
||||
@@ -353,6 +365,10 @@ msgstr "تایید شده"
|
||||
msgid "Apps"
|
||||
msgstr "برنامه ها"
|
||||
|
||||
#: frontend/src/pages/Batches.vue:259 frontend/src/pages/Batches.vue:277
|
||||
msgid "Archived"
|
||||
msgstr "بایگانی شد"
|
||||
|
||||
#. Label of the user_category (Check) field in DocType 'LMS Settings'
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Ask User Category during Signup"
|
||||
@@ -381,7 +397,7 @@ msgstr "نوع ارزیابی"
|
||||
msgid "Assessment added successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:80
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:85
|
||||
msgid "Assessment {0} has already been added to this batch."
|
||||
msgstr "ارزیابی {0} قبلاً به این دسته اضافه شده است."
|
||||
|
||||
@@ -473,6 +489,10 @@ msgstr ""
|
||||
msgid "Average Rating"
|
||||
msgstr "میانگین امتیاز"
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:38
|
||||
msgid "Average of Feedback Received"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Lesson.vue:96
|
||||
msgid "Back to Course"
|
||||
msgstr ""
|
||||
@@ -493,10 +513,12 @@ msgstr "توضیحات نشان"
|
||||
msgid "Badge Image"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the batch (Link) field in DocType 'LMS Batch Feedback'
|
||||
#. Label of the batch_name (Link) field in DocType 'LMS Certificate'
|
||||
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
|
||||
#. Label of the batch_name (Link) field in DocType 'LMS Live Class'
|
||||
#: frontend/src/components/Modals/Event.vue:32
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
@@ -578,7 +600,9 @@ msgstr "تاریخ شروع دسته:"
|
||||
msgid "Batch Student"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the batch_title (Data) field in DocType 'LMS Certificate'
|
||||
#. Label of the batch_title (Data) field in DocType 'LMS Certificate Request'
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
msgid "Batch Title"
|
||||
msgstr ""
|
||||
@@ -587,14 +611,15 @@ msgstr ""
|
||||
msgid "Batch Updated"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:41
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:46
|
||||
msgid "Batch end date cannot be before the batch start date"
|
||||
msgstr ""
|
||||
|
||||
#. Group in LMS Course's connections
|
||||
#. Label of the batches (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/pages/Batches.vue:8 lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:60
|
||||
#: frontend/src/pages/Batches.vue:285
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:61
|
||||
msgid "Batches"
|
||||
msgstr ""
|
||||
|
||||
@@ -689,7 +714,8 @@ msgstr ""
|
||||
#. Label of the category (Link) field in DocType 'LMS Batch'
|
||||
#. Label of the category (Data) field in DocType 'LMS Category'
|
||||
#. Label of the category (Link) field in DocType 'LMS Course'
|
||||
#: frontend/src/pages/BatchForm.vue:202 frontend/src/pages/Batches.vue:16
|
||||
#: frontend/src/pages/BatchForm.vue:202 frontend/src/pages/Batches.vue:49
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:29
|
||||
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:17
|
||||
#: frontend/src/pages/JobDetail.vue:102
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
@@ -756,6 +782,7 @@ msgid "Certification Name"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the certified_participants (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:153
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Certified Participants"
|
||||
msgstr ""
|
||||
@@ -1048,7 +1075,7 @@ msgstr ""
|
||||
msgid "Confirmation Email Sent"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:25
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:29
|
||||
msgid "Congratulations on getting certified!"
|
||||
msgstr "تبریک برای دریافت گواهینامه!"
|
||||
|
||||
@@ -1057,8 +1084,10 @@ msgid "Contact the Administrator to enroll for this course."
|
||||
msgstr ""
|
||||
|
||||
#. Label of the content (Text) field in DocType 'Course Lesson'
|
||||
#. Label of the content (Rating) field in DocType 'LMS Batch Feedback'
|
||||
#: frontend/src/pages/LessonForm.vue:62
|
||||
#: lms/lms/doctype/course_lesson/course_lesson.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "Content"
|
||||
msgstr "محتوا"
|
||||
|
||||
@@ -1067,7 +1096,7 @@ msgid "Continue Learning"
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
|
||||
#: frontend/src/pages/Jobs.vue:120
|
||||
#: frontend/src/pages/Jobs.vue:152
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
msgid "Contract"
|
||||
msgstr "قرارداد"
|
||||
@@ -1133,7 +1162,7 @@ msgstr "کشور"
|
||||
#. Label of a Link in the LMS Workspace
|
||||
#. Label of a shortcut in the LMS Workspace
|
||||
#: frontend/src/components/Modals/BatchCourseModal.vue:20
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:23
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:38
|
||||
#: frontend/src/components/Modals/EvaluationModal.vue:20
|
||||
#: frontend/src/components/Modals/Event.vue:24
|
||||
#: lms/lms/doctype/batch_course/batch_course.json
|
||||
@@ -1220,7 +1249,7 @@ msgstr "مدرس دوره"
|
||||
msgid "Course Lesson"
|
||||
msgstr "درس دوره"
|
||||
|
||||
#: lms/www/lms.py:27
|
||||
#: lms/www/lms.py:28
|
||||
msgid "Course List"
|
||||
msgstr ""
|
||||
|
||||
@@ -1270,7 +1299,7 @@ msgstr "عنوان دوره"
|
||||
msgid "Course added to program"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:345
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:350
|
||||
msgid "Course already added to the batch."
|
||||
msgstr "دوره قبلاً به دسته اضافه شده است."
|
||||
|
||||
@@ -1282,7 +1311,7 @@ msgstr "دوره با موفقیت حذف شد"
|
||||
msgid "Course moved successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:59
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:64
|
||||
#: lms/lms/doctype/lms_program/lms_program.py:19
|
||||
msgid "Course {0} has already been added to this batch."
|
||||
msgstr "دوره {0} قبلاً به این دسته اضافه شده است."
|
||||
@@ -1333,10 +1362,6 @@ msgstr ""
|
||||
msgid "Create LMS Certificate Evaluation"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:110
|
||||
msgid "Create a Batch"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:132 lms/templates/onboarding_header.html:19
|
||||
msgid "Create a Course"
|
||||
msgstr "ایجاد دوره"
|
||||
@@ -1732,6 +1757,10 @@ msgstr "زمان پایان"
|
||||
msgid "Enroll Now"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:274
|
||||
msgid "Enrolled"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/CourseCard.vue:43
|
||||
#: frontend/src/components/CourseCardOverlay.vue:104
|
||||
#: frontend/src/pages/CourseDetail.vue:33
|
||||
@@ -1742,7 +1771,7 @@ msgstr "دانش آموزان ثبت نام شده"
|
||||
msgid "Enrolled successfully"
|
||||
msgstr "با موفقیت ثبت نام شد"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:103
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:108
|
||||
msgid "Enrollment Confirmation for the Next Training Batch"
|
||||
msgstr ""
|
||||
|
||||
@@ -1751,7 +1780,7 @@ msgstr ""
|
||||
msgid "Enrollment Count"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1765
|
||||
#: lms/lms/utils.py:1693
|
||||
msgid "Enrollment Failed"
|
||||
msgstr ""
|
||||
|
||||
@@ -1821,7 +1850,7 @@ msgstr ""
|
||||
msgid "Evaluation Request"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:87
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:92
|
||||
msgid "Evaluation end date cannot be less than the batch end date."
|
||||
msgstr ""
|
||||
|
||||
@@ -1836,7 +1865,7 @@ msgstr ""
|
||||
#. Label of the evaluator (Link) field in DocType 'LMS Certificate Evaluation'
|
||||
#. Label of the evaluator (Link) field in DocType 'LMS Certificate Request'
|
||||
#: frontend/src/components/Modals/BatchCourseModal.vue:26
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:28
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:22
|
||||
#: frontend/src/pages/ProfileRoles.vue:22
|
||||
#: lms/lms/doctype/batch_course/batch_course.json
|
||||
#: lms/lms/doctype/course_evaluator/course_evaluator.json
|
||||
@@ -1914,7 +1943,7 @@ msgid "Expiration Date"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:39
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:33
|
||||
#: frontend/src/components/Modals/Event.vue:126
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
msgid "Expiry Date"
|
||||
@@ -1955,6 +1984,12 @@ msgstr ""
|
||||
msgid "Featured"
|
||||
msgstr "ویژه"
|
||||
|
||||
#. Label of the feedback (Small Text) field in DocType 'LMS Batch Feedback'
|
||||
#: frontend/src/components/BatchFeedback.vue:29
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "Feedback"
|
||||
msgstr "بازخورد"
|
||||
|
||||
#: frontend/src/components/Assignment.vue:61
|
||||
msgid "Feel free to make edits to your submission if needed."
|
||||
msgstr ""
|
||||
@@ -1974,7 +2009,7 @@ msgstr ""
|
||||
msgid "File Type"
|
||||
msgstr "نوع فایل"
|
||||
|
||||
#: frontend/src/pages/Jobs.vue:47
|
||||
#: frontend/src/pages/Jobs.vue:33
|
||||
msgid "Find the perfect job for you"
|
||||
msgstr ""
|
||||
|
||||
@@ -2007,7 +2042,7 @@ msgid "Free"
|
||||
msgstr "رایگان"
|
||||
|
||||
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
|
||||
#: frontend/src/pages/Jobs.vue:121
|
||||
#: frontend/src/pages/Jobs.vue:153
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
msgid "Freelance"
|
||||
msgstr ""
|
||||
@@ -2049,7 +2084,7 @@ msgid "Full Name"
|
||||
msgstr "نام و نام خانوادگی"
|
||||
|
||||
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
|
||||
#: frontend/src/pages/Jobs.vue:118
|
||||
#: frontend/src/pages/Jobs.vue:150
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
msgid "Full Time"
|
||||
msgstr "تمام وقت"
|
||||
@@ -2147,6 +2182,10 @@ msgstr ""
|
||||
msgid "Hello"
|
||||
msgstr "سلام"
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:11
|
||||
msgid "Help Us Improve"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/courses_created.html:15
|
||||
msgid "Help others learn something new by creating a course."
|
||||
msgstr "با ایجاد دوره آموزشی به دیگران کمک کنید چیز جدیدی یاد بگیرند."
|
||||
@@ -2155,10 +2194,6 @@ msgstr "با ایجاد دوره آموزشی به دیگران کمک کنید
|
||||
msgid "Help us improve our course material."
|
||||
msgstr "به ما در بهبود مطالب درسی کمک کنید."
|
||||
|
||||
#: lms/lms/web_template/courses_enrolled/courses_enrolled.html:18
|
||||
msgid "Here are a few courses we recommend for you to get started with {0}"
|
||||
msgstr "در اینجا چند دوره برای شروع با {0} به شما توصیه می کنیم"
|
||||
|
||||
#: lms/lms/notification/certificate_request_reminder/certificate_request_reminder.html:1
|
||||
#: lms/templates/emails/certificate_request_notification.html:1
|
||||
msgid "Hey {0}"
|
||||
@@ -2360,9 +2395,11 @@ msgid "Instructor Notes"
|
||||
msgstr "یادداشت های مدرس"
|
||||
|
||||
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch'
|
||||
#. Label of the instructors (Rating) field in DocType 'LMS Batch Feedback'
|
||||
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course'
|
||||
#: frontend/src/pages/BatchForm.vue:89 frontend/src/pages/CourseForm.vue:154
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
msgid "Instructors"
|
||||
msgstr "مدرس ها"
|
||||
@@ -2437,7 +2474,7 @@ msgstr ""
|
||||
|
||||
#. Label of the issue_date (Date) field in DocType 'Certification'
|
||||
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:34
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:28
|
||||
#: frontend/src/components/Modals/Event.vue:121
|
||||
#: lms/lms/doctype/certification/certification.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
@@ -2450,6 +2487,7 @@ msgid "Issued On"
|
||||
msgstr "صادر شده در"
|
||||
|
||||
#: frontend/src/pages/ProfileAbout.vue:56
|
||||
#: frontend/src/pages/ProfileCertificates.vue:17
|
||||
#: lms/templates/certificates_section.html:11
|
||||
msgid "Issued on"
|
||||
msgstr "صادر شده در"
|
||||
@@ -2487,7 +2525,7 @@ msgstr ""
|
||||
msgid "Job Details"
|
||||
msgstr ""
|
||||
|
||||
#: lms/www/lms.py:108
|
||||
#: lms/www/lms.py:109
|
||||
msgid "Job Openings"
|
||||
msgstr "فرصت های شغلی"
|
||||
|
||||
@@ -2566,6 +2604,11 @@ msgstr ""
|
||||
msgid "LMS Batch"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "LMS Batch Feedback"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
||||
msgid "LMS Batch Old"
|
||||
@@ -2725,6 +2768,7 @@ msgstr "منبع LMS"
|
||||
#: lms/lms/doctype/lms_assignment/lms_assignment.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
#: lms/lms/doctype/lms_course_progress/lms_course_progress.json
|
||||
@@ -2870,16 +2914,13 @@ msgid "LiveCode URL"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Members.vue:106
|
||||
#: frontend/src/pages/Assignments.vue:71
|
||||
#: frontend/src/pages/Assignments.vue:71 frontend/src/pages/Batches.vue:88
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:71
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:39
|
||||
#: frontend/src/pages/Quizzes.vue:51
|
||||
msgid "Load More"
|
||||
msgstr "بارگذاری بیشتر"
|
||||
|
||||
#: frontend/src/pages/Batches.vue:40
|
||||
msgid "Loading Batches..."
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Auto Recording' (Select) field in DocType 'LMS Live Class'
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
msgid "Local"
|
||||
@@ -2902,7 +2943,7 @@ msgstr ""
|
||||
|
||||
#: frontend/src/components/AssignmentBlock.vue:13
|
||||
#: frontend/src/components/NoPermission.vue:28
|
||||
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:175
|
||||
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:178
|
||||
#: frontend/src/pages/Lesson.vue:24
|
||||
msgid "Login"
|
||||
msgstr "وارد شدن"
|
||||
@@ -3007,6 +3048,7 @@ msgstr "متوسط:"
|
||||
#. Label of the member (Link) field in DocType 'Exercise Submission'
|
||||
#. Label of the member (Link) field in DocType 'LMS Assignment Submission'
|
||||
#. Label of the member (Link) field in DocType 'LMS Badge Assignment'
|
||||
#. Label of the member (Link) field in DocType 'LMS Batch Feedback'
|
||||
#. Label of the member (Link) field in DocType 'LMS Certificate'
|
||||
#. Label of the member (Link) field in DocType 'LMS Certificate Evaluation'
|
||||
#. Label of the member (Link) field in DocType 'LMS Certificate Request'
|
||||
@@ -3024,6 +3066,7 @@ msgstr "متوسط:"
|
||||
#: lms/lms/doctype/exercise_submission/exercise_submission.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.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
|
||||
@@ -3049,8 +3092,15 @@ msgstr ""
|
||||
msgid "Member Email"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the member_image (Attach Image) field in DocType 'LMS Batch
|
||||
#. Feedback'
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "Member Image"
|
||||
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 Batch Feedback'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Certificate'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Certificate
|
||||
#. Evaluation'
|
||||
@@ -3061,6 +3111,7 @@ msgstr ""
|
||||
#. 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_batch_feedback/lms_batch_feedback.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
|
||||
@@ -3223,7 +3274,7 @@ msgid "My calendar"
|
||||
msgstr "تقویم من"
|
||||
|
||||
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
||||
#: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:30
|
||||
#: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:17
|
||||
#: frontend/src/pages/Courses.vue:45 frontend/src/pages/Programs.vue:14
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "New"
|
||||
@@ -3237,15 +3288,15 @@ msgstr ""
|
||||
msgid "New Assignment Submission"
|
||||
msgstr ""
|
||||
|
||||
#: lms/public/js/common_functions.js:255 lms/www/lms.py:86
|
||||
#: lms/public/js/common_functions.js:255 lms/www/lms.py:87
|
||||
msgid "New Batch"
|
||||
msgstr "دسته جدید"
|
||||
|
||||
#: lms/www/lms.py:37
|
||||
#: lms/www/lms.py:38
|
||||
msgid "New Course"
|
||||
msgstr "دوره جدید"
|
||||
|
||||
#: frontend/src/pages/Jobs.vue:39
|
||||
#: frontend/src/pages/Jobs.vue:23
|
||||
msgid "New Job"
|
||||
msgstr "شغل جدید"
|
||||
|
||||
@@ -3278,11 +3329,11 @@ msgstr ""
|
||||
msgid "New Sign Up"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:623
|
||||
#: lms/lms/utils.py:605
|
||||
msgid "New comment in batch {0}"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:616
|
||||
#: lms/lms/utils.py:598
|
||||
msgid "New reply on the topic {0} in course {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -3324,7 +3375,7 @@ msgstr ""
|
||||
msgid "No assignments found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:125
|
||||
#: frontend/src/pages/Batches.vue:73
|
||||
msgid "No batches found"
|
||||
msgstr ""
|
||||
|
||||
@@ -3348,11 +3399,15 @@ msgstr ""
|
||||
msgid "No courses under review"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:101
|
||||
msgid "No feedback received yet."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProfileAbout.vue:12
|
||||
msgid "No introduction"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Jobs.vue:63
|
||||
#: frontend/src/pages/Jobs.vue:77
|
||||
msgid "No jobs posted"
|
||||
msgstr ""
|
||||
|
||||
@@ -3360,6 +3415,10 @@ msgstr ""
|
||||
msgid "No live classes scheduled"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:81
|
||||
msgid "No participants found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:91
|
||||
msgid "No programs found"
|
||||
msgstr ""
|
||||
@@ -3384,10 +3443,6 @@ msgstr ""
|
||||
msgid "No {0}"
|
||||
msgstr "نه {0}"
|
||||
|
||||
#: frontend/src/pages/Batches.vue:84
|
||||
msgid "No {0} batches"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:107
|
||||
msgid "No {0} courses"
|
||||
msgstr ""
|
||||
@@ -3420,7 +3475,7 @@ msgstr ""
|
||||
msgid "Not Graded"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:143
|
||||
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:146
|
||||
msgid "Not Permitted"
|
||||
msgstr "غیر مجاز"
|
||||
|
||||
@@ -3614,7 +3669,7 @@ msgid "Pan Number"
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
|
||||
#: frontend/src/pages/Jobs.vue:119
|
||||
#: frontend/src/pages/Jobs.vue:151
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
msgid "Part Time"
|
||||
msgstr "پاره وقت"
|
||||
@@ -3739,7 +3794,7 @@ msgstr "درصد"
|
||||
#. Option for the 'Grade Type' (Select) field in DocType 'Education Detail'
|
||||
#: lms/lms/doctype/education_detail/education_detail.json
|
||||
msgid "Percentage (e.g. 70%)"
|
||||
msgstr ""
|
||||
msgstr "درصد (به عنوان مثال 70%)"
|
||||
|
||||
#: frontend/src/pages/Billing.vue:104
|
||||
msgid "Phone Number"
|
||||
@@ -3765,11 +3820,11 @@ msgstr "لطفا ایمیل خود را برای تایید بررسی کنید"
|
||||
msgid "Please click on the following button to set your new password"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1887 lms/lms/utils.py:1891
|
||||
#: lms/lms/utils.py:1815 lms/lms/utils.py:1819
|
||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:256
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:261
|
||||
msgid "Please enable Zoom Settings to use this feature."
|
||||
msgstr ""
|
||||
|
||||
@@ -3786,7 +3841,7 @@ msgid "Please enter a title."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:40
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:122
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:125
|
||||
msgid "Please enter a valid URL."
|
||||
msgstr ""
|
||||
|
||||
@@ -3794,7 +3849,7 @@ msgstr ""
|
||||
msgid "Please enter a valid time in the format HH:mm."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:116
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:119
|
||||
msgid "Please enter the URL for assignment submission."
|
||||
msgstr ""
|
||||
|
||||
@@ -3802,7 +3857,7 @@ msgstr ""
|
||||
msgid "Please enter your answer"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:66
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:71
|
||||
msgid "Please install the Payments app to create a paid batches."
|
||||
msgstr ""
|
||||
|
||||
@@ -3822,7 +3877,7 @@ msgstr ""
|
||||
msgid "Please login to access the quiz."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/NoPermission.vue:25 frontend/src/pages/Batch.vue:154
|
||||
#: frontend/src/components/NoPermission.vue:25 frontend/src/pages/Batch.vue:157
|
||||
msgid "Please login to access this page."
|
||||
msgstr ""
|
||||
|
||||
@@ -3863,7 +3918,7 @@ msgstr ""
|
||||
msgid "Please upload a SCORM package"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:119
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:122
|
||||
msgid "Please upload the assignment file."
|
||||
msgstr "لطفا فایل تکلیف را آپلود کنید."
|
||||
|
||||
@@ -3897,7 +3952,7 @@ msgid "Possible Answer 4"
|
||||
msgstr "پاسخ ممکن ۴"
|
||||
|
||||
#: frontend/src/components/DiscussionReplies.vue:52
|
||||
#: frontend/src/components/DiscussionReplies.vue:86
|
||||
#: frontend/src/components/DiscussionReplies.vue:87
|
||||
msgid "Post"
|
||||
msgstr "پست"
|
||||
|
||||
@@ -4326,19 +4381,19 @@ msgstr ""
|
||||
msgid "Route"
|
||||
msgstr "مسیر"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:199
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:204
|
||||
msgid "Row #{0} Date cannot be outside the batch duration."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:194
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:199
|
||||
msgid "Row #{0} End time cannot be outside the batch duration."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:176
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:181
|
||||
msgid "Row #{0} Start time cannot be greater than or equal to end time."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:185
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:190
|
||||
msgid "Row #{0} Start time cannot be outside the batch duration."
|
||||
msgstr ""
|
||||
|
||||
@@ -4389,7 +4444,7 @@ msgstr "ذخیره"
|
||||
#. Label of the schedule (Table) field in DocType 'Course Evaluator'
|
||||
#: lms/lms/doctype/course_evaluator/course_evaluator.json
|
||||
msgid "Schedule"
|
||||
msgstr "برنامه"
|
||||
msgstr "زمانبندی"
|
||||
|
||||
#: frontend/src/components/Modals/EvaluationModal.vue:5
|
||||
#: frontend/src/components/UpcomingEvaluations.vue:8
|
||||
@@ -4419,10 +4474,18 @@ msgstr "نمره"
|
||||
msgid "Score Out Of"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Members.vue:15
|
||||
#: frontend/src/components/Members.vue:15 frontend/src/pages/Jobs.vue:38
|
||||
msgid "Search"
|
||||
msgstr "جستجو کردن"
|
||||
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:17
|
||||
msgid "Search by Name"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:39
|
||||
msgid "Search by Title"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Assignments.vue:25
|
||||
msgid "Search by title"
|
||||
msgstr ""
|
||||
@@ -4719,7 +4782,7 @@ msgstr "حالت"
|
||||
#. Label of the statistics (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/components/BatchStudents.vue:5
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:133
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:134
|
||||
msgid "Statistics"
|
||||
msgstr "آمار"
|
||||
|
||||
@@ -4784,7 +4847,7 @@ msgstr "اسم دانشآموز"
|
||||
msgid "Student Reviews"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:48
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:53
|
||||
msgid "Student {0} has already been added to this batch."
|
||||
msgstr "دانشآموز {0} قبلاً به این دسته اضافه شده است."
|
||||
|
||||
@@ -4832,6 +4895,7 @@ msgstr ""
|
||||
msgid "Submission by"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:14
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:9
|
||||
#: frontend/src/components/Modals/BatchCourseModal.vue:9
|
||||
#: frontend/src/components/Modals/EvaluationModal.vue:9
|
||||
@@ -4889,7 +4953,7 @@ msgstr "خلاصه"
|
||||
msgid "Sunday"
|
||||
msgstr "یکشنبه"
|
||||
|
||||
#: lms/lms/api.py:964
|
||||
#: lms/lms/api.py:983
|
||||
msgid "Suspicious pattern found in {0}: {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -4915,6 +4979,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
||||
#: lms/lms/doctype/lms_category/lms_category.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
@@ -4946,7 +5011,7 @@ msgstr "مدیر سیستم"
|
||||
#: frontend/src/pages/CourseForm.vue:120
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
msgid "Tags"
|
||||
msgstr "برچسب ها"
|
||||
msgstr "تگها"
|
||||
|
||||
#: lms/templates/emails/community_course_membership.html:18
|
||||
#: lms/templates/emails/mentor_request_creation_email.html:8
|
||||
@@ -4997,6 +5062,10 @@ msgstr ""
|
||||
msgid "Text"
|
||||
msgstr "متن"
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:7
|
||||
msgid "Thank you for providing your feedback!"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/emails/lms_course_interest.html:17
|
||||
#: lms/templates/emails/lms_invite_request_approved.html:15
|
||||
#: lms/templates/emails/mentor_request_creation_email.html:7
|
||||
@@ -5004,7 +5073,7 @@ msgstr "متن"
|
||||
msgid "Thanks and Regards"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1794
|
||||
#: lms/lms/utils.py:1722
|
||||
msgid "The batch is full. Please contact the Administrator."
|
||||
msgstr ""
|
||||
|
||||
@@ -5028,8 +5097,8 @@ msgstr ""
|
||||
msgid "The status of your application has changed."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:129
|
||||
msgid "There are no batches available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
#: frontend/src/pages/Batches.vue:77
|
||||
msgid "There are no batches matching the criteria. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/CreateOutline.vue:12
|
||||
@@ -5040,11 +5109,15 @@ 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/CertifiedParticipants.vue:84
|
||||
msgid "There are no participants matching this criteria."
|
||||
msgstr ""
|
||||
|
||||
#: 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 ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:146
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:151
|
||||
msgid "There are no seats available in this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -5060,7 +5133,7 @@ msgstr ""
|
||||
msgid "There are no {0} on this site."
|
||||
msgstr "هیچ {0} در این سایت وجود ندارد."
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:82
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:85
|
||||
msgid "There has been an update on your submission for assignment {0}"
|
||||
msgstr ""
|
||||
|
||||
@@ -5091,7 +5164,7 @@ msgstr "این کلاس به پایان رسید"
|
||||
msgid "This course has:"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1645
|
||||
#: lms/lms/utils.py:1573
|
||||
msgid "This course is free."
|
||||
msgstr ""
|
||||
|
||||
@@ -5235,7 +5308,7 @@ msgstr "به"
|
||||
msgid "To Date"
|
||||
msgstr "تا تاریخ"
|
||||
|
||||
#: lms/lms/utils.py:1656
|
||||
#: lms/lms/utils.py:1584
|
||||
msgid "To join this batch, please contact the Administrator."
|
||||
msgstr ""
|
||||
|
||||
@@ -5291,7 +5364,7 @@ msgstr "توییتر"
|
||||
#: frontend/src/components/Modals/Question.vue:54
|
||||
#: frontend/src/pages/AssignmentForm.vue:39
|
||||
#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:157
|
||||
#: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:16
|
||||
#: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:55
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
#: lms/lms/doctype/lms_assignment/lms_assignment.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
@@ -5337,6 +5410,10 @@ msgstr "تحت بررسی"
|
||||
msgid "Unlisted"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:262 frontend/src/pages/Batches.vue:278
|
||||
msgid "Unpublished"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/EditCoverImage.vue:60
|
||||
#: frontend/src/components/UnsplashImageBrowser.vue:54
|
||||
msgid "Unsplash"
|
||||
@@ -5354,12 +5431,13 @@ msgstr ""
|
||||
|
||||
#. Option for the 'Status' (Select) field in DocType 'Cohort'
|
||||
#. Label of the upcoming (Check) field in DocType 'LMS Course'
|
||||
#: frontend/src/pages/Batches.vue:258 frontend/src/pages/Batches.vue:276
|
||||
#: frontend/src/pages/CourseForm.vue:184 lms/lms/doctype/cohort/cohort.json
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
msgid "Upcoming"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batch.vue:166
|
||||
#: frontend/src/pages/Batch.vue:169
|
||||
msgid "Upcoming Batches"
|
||||
msgstr ""
|
||||
|
||||
@@ -5421,7 +5499,7 @@ msgstr "ورودی کاربر"
|
||||
msgid "User Skill"
|
||||
msgstr "مهارت کاربر"
|
||||
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.py:37
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.py:40
|
||||
msgid "User {0} has reported the job post {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -5446,6 +5524,11 @@ msgstr ""
|
||||
msgid "Valid email and name required"
|
||||
msgstr "ایمیل و نام معتبر مورد نیاز است"
|
||||
|
||||
#. Label of the value (Rating) field in DocType 'LMS Batch Feedback'
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "Value"
|
||||
msgstr "ارزش"
|
||||
|
||||
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "Value Change"
|
||||
@@ -5569,7 +5652,7 @@ msgstr ""
|
||||
msgid "You are already enrolled for this course."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batch.vue:148
|
||||
#: frontend/src/pages/Batch.vue:151
|
||||
msgid "You are not a member of this batch. Please checkout our upcoming batches."
|
||||
msgstr ""
|
||||
|
||||
@@ -5606,10 +5689,6 @@ msgstr ""
|
||||
msgid "You can find their resume attached to this email."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:113
|
||||
msgid "You can link courses and assessments to it."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:115
|
||||
msgid "You cannot schedule evaluations after {0}."
|
||||
msgstr ""
|
||||
@@ -5671,10 +5750,6 @@ msgstr ""
|
||||
msgid "You have opted to be notified for this course. You will receive an email when the course becomes available."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/web_template/courses_enrolled/courses_enrolled.html:17
|
||||
msgid "You haven't enrolled for any courses"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/CourseCardOverlay.vue:146
|
||||
msgid "You need to login first to enroll for this course"
|
||||
msgstr ""
|
||||
@@ -5769,10 +5844,6 @@ msgstr ""
|
||||
msgid "in the last"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProfileCertificates.vue:17
|
||||
msgid "issued on"
|
||||
msgstr "صادر شده در"
|
||||
|
||||
#: lms/templates/signup-form.html:12
|
||||
msgid "jane@example.com"
|
||||
msgstr "jane@example.com"
|
||||
@@ -5793,8 +5864,8 @@ msgstr "از"
|
||||
msgid "out of"
|
||||
msgstr "از"
|
||||
|
||||
#: frontend/src/components/JobCard.vue:37
|
||||
msgid "posted by"
|
||||
#: frontend/src/components/JobCard.vue:30
|
||||
msgid "posted"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:386
|
||||
@@ -5817,7 +5888,7 @@ msgstr "هفته ها"
|
||||
msgid "you can"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:761 lms/lms/api.py:769
|
||||
#: lms/lms/api.py:780 lms/lms/api.py:788
|
||||
msgid "{0} Settings not found"
|
||||
msgstr ""
|
||||
|
||||
@@ -5845,7 +5916,11 @@ msgstr ""
|
||||
msgid "{0} is already a {1} of the course {2}"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:59
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:91
|
||||
msgid "{0} is already certified for the batch {1}"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:72
|
||||
msgid "{0} is already certified for the course {1}"
|
||||
msgstr "{0} قبلاً برای دوره {1} تایید شده است"
|
||||
|
||||
@@ -5853,7 +5928,7 @@ msgstr "{0} قبلاً برای دوره {1} تایید شده است"
|
||||
msgid "{0} is your evaluator"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:700
|
||||
#: lms/lms/utils.py:682
|
||||
msgid "{0} mentioned you in a comment"
|
||||
msgstr ""
|
||||
|
||||
@@ -5861,11 +5936,11 @@ msgstr ""
|
||||
msgid "{0} mentioned you in a comment in your batch."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:653 lms/lms/utils.py:659
|
||||
#: lms/lms/utils.py:635 lms/lms/utils.py:641
|
||||
msgid "{0} mentioned you in a comment in {1}"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:476
|
||||
#: lms/lms/utils.py:458
|
||||
msgid "{0}k"
|
||||
msgstr ""
|
||||
|
||||
|
||||
275
lms/locale/fr.po
275
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-10 16:04+0000\n"
|
||||
"PO-Revision-Date: 2025-01-13 06:31\n"
|
||||
"POT-Creation-Date: 2025-01-17 16:04+0000\n"
|
||||
"PO-Revision-Date: 2025-01-20 11:13\n"
|
||||
"Last-Translator: jannat@frappe.io\n"
|
||||
"Language-Team: French\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -75,7 +75,7 @@ msgstr ""
|
||||
msgid "About"
|
||||
msgstr "A Propos"
|
||||
|
||||
#: frontend/src/pages/Batch.vue:93
|
||||
#: frontend/src/pages/Batch.vue:96
|
||||
msgid "About this batch"
|
||||
msgstr ""
|
||||
|
||||
@@ -212,14 +212,26 @@ msgid "Admin"
|
||||
msgstr "Administrateur"
|
||||
|
||||
#. Name of a role
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
#: frontend/src/pages/Batches.vue:270 lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "All"
|
||||
msgstr "Tout"
|
||||
|
||||
#: frontend/src/pages/Batches.vue:26
|
||||
msgid "All Batches"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:12
|
||||
msgid "All Certified Participants"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/widgets/BreadCrumb.html:3
|
||||
msgid "All Courses"
|
||||
msgstr "Tous les cours"
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:51
|
||||
msgid "All Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/quiz/quiz.html:141
|
||||
msgid "All Submissions"
|
||||
msgstr "Tous les envois"
|
||||
@@ -279,7 +291,7 @@ msgstr ""
|
||||
msgid "Amount Field"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:70
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:75
|
||||
msgid "Amount and currency are required for paid batches."
|
||||
msgstr ""
|
||||
|
||||
@@ -353,6 +365,10 @@ msgstr "Approuvé"
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:259 frontend/src/pages/Batches.vue:277
|
||||
msgid "Archived"
|
||||
msgstr "Archivé"
|
||||
|
||||
#. Label of the user_category (Check) field in DocType 'LMS Settings'
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Ask User Category during Signup"
|
||||
@@ -381,7 +397,7 @@ msgstr "Type d'évaluation"
|
||||
msgid "Assessment added successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:80
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:85
|
||||
msgid "Assessment {0} has already been added to this batch."
|
||||
msgstr "L'évaluation {0} a déjà été ajoutée à ce lot."
|
||||
|
||||
@@ -473,6 +489,10 @@ msgstr "Enregistrement automatique"
|
||||
msgid "Average Rating"
|
||||
msgstr "Notation moyenne"
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:38
|
||||
msgid "Average of Feedback Received"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Lesson.vue:96
|
||||
msgid "Back to Course"
|
||||
msgstr ""
|
||||
@@ -493,10 +513,12 @@ msgstr "Description de Badge"
|
||||
msgid "Badge Image"
|
||||
msgstr "Image du badge"
|
||||
|
||||
#. Label of the batch (Link) field in DocType 'LMS Batch Feedback'
|
||||
#. Label of the batch_name (Link) field in DocType 'LMS Certificate'
|
||||
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
|
||||
#. Label of the batch_name (Link) field in DocType 'LMS Live Class'
|
||||
#: frontend/src/components/Modals/Event.vue:32
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
@@ -578,7 +600,9 @@ msgstr "Date de début du lot :"
|
||||
msgid "Batch Student"
|
||||
msgstr "Étudiant de la promotion"
|
||||
|
||||
#. Label of the batch_title (Data) field in DocType 'LMS Certificate'
|
||||
#. Label of the batch_title (Data) field in DocType 'LMS Certificate Request'
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
msgid "Batch Title"
|
||||
msgstr ""
|
||||
@@ -587,14 +611,15 @@ msgstr ""
|
||||
msgid "Batch Updated"
|
||||
msgstr "Lot mis à jour"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:41
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:46
|
||||
msgid "Batch end date cannot be before the batch start date"
|
||||
msgstr ""
|
||||
|
||||
#. Group in LMS Course's connections
|
||||
#. Label of the batches (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/pages/Batches.vue:8 lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:60
|
||||
#: frontend/src/pages/Batches.vue:285
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:61
|
||||
msgid "Batches"
|
||||
msgstr "Lots"
|
||||
|
||||
@@ -689,7 +714,8 @@ msgstr ""
|
||||
#. Label of the category (Link) field in DocType 'LMS Batch'
|
||||
#. Label of the category (Data) field in DocType 'LMS Category'
|
||||
#. Label of the category (Link) field in DocType 'LMS Course'
|
||||
#: frontend/src/pages/BatchForm.vue:202 frontend/src/pages/Batches.vue:16
|
||||
#: frontend/src/pages/BatchForm.vue:202 frontend/src/pages/Batches.vue:49
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:29
|
||||
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:17
|
||||
#: frontend/src/pages/JobDetail.vue:102
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
@@ -756,6 +782,7 @@ msgid "Certification Name"
|
||||
msgstr "Nom de la certification"
|
||||
|
||||
#. Label of the certified_participants (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:153
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Certified Participants"
|
||||
msgstr "Participants certifiés"
|
||||
@@ -1048,7 +1075,7 @@ msgstr ""
|
||||
msgid "Confirmation Email Sent"
|
||||
msgstr "Courriel de confirmation envoyé"
|
||||
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:25
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:29
|
||||
msgid "Congratulations on getting certified!"
|
||||
msgstr "Félicitations pour votre certification !"
|
||||
|
||||
@@ -1057,8 +1084,10 @@ msgid "Contact the Administrator to enroll for this course."
|
||||
msgstr ""
|
||||
|
||||
#. Label of the content (Text) field in DocType 'Course Lesson'
|
||||
#. Label of the content (Rating) field in DocType 'LMS Batch Feedback'
|
||||
#: frontend/src/pages/LessonForm.vue:62
|
||||
#: lms/lms/doctype/course_lesson/course_lesson.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "Content"
|
||||
msgstr "Contenu"
|
||||
|
||||
@@ -1067,7 +1096,7 @@ msgid "Continue Learning"
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
|
||||
#: frontend/src/pages/Jobs.vue:120
|
||||
#: frontend/src/pages/Jobs.vue:152
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
msgid "Contract"
|
||||
msgstr "Contrat"
|
||||
@@ -1133,7 +1162,7 @@ msgstr "Pays"
|
||||
#. Label of a Link in the LMS Workspace
|
||||
#. Label of a shortcut in the LMS Workspace
|
||||
#: frontend/src/components/Modals/BatchCourseModal.vue:20
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:23
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:38
|
||||
#: frontend/src/components/Modals/EvaluationModal.vue:20
|
||||
#: frontend/src/components/Modals/Event.vue:24
|
||||
#: lms/lms/doctype/batch_course/batch_course.json
|
||||
@@ -1220,7 +1249,7 @@ msgstr "Enseignant du cours"
|
||||
msgid "Course Lesson"
|
||||
msgstr "Leçon de cours"
|
||||
|
||||
#: lms/www/lms.py:27
|
||||
#: lms/www/lms.py:28
|
||||
msgid "Course List"
|
||||
msgstr "Liste de cours"
|
||||
|
||||
@@ -1270,7 +1299,7 @@ msgstr "Titre du cours"
|
||||
msgid "Course added to program"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:345
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:350
|
||||
msgid "Course already added to the batch."
|
||||
msgstr "Cours déjà ajouté au lot."
|
||||
|
||||
@@ -1282,7 +1311,7 @@ msgstr ""
|
||||
msgid "Course moved successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:59
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:64
|
||||
#: lms/lms/doctype/lms_program/lms_program.py:19
|
||||
msgid "Course {0} has already been added to this batch."
|
||||
msgstr "Le cours {0} a déjà été ajouté à ce lot."
|
||||
@@ -1333,10 +1362,6 @@ msgstr "Créer un certificat LMS"
|
||||
msgid "Create LMS Certificate Evaluation"
|
||||
msgstr "Créer une évaluation de certificat LMS"
|
||||
|
||||
#: frontend/src/pages/Batches.vue:110
|
||||
msgid "Create a Batch"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:132 lms/templates/onboarding_header.html:19
|
||||
msgid "Create a Course"
|
||||
msgstr "Créer un cours"
|
||||
@@ -1732,6 +1757,10 @@ msgstr "Heure de Fin"
|
||||
msgid "Enroll Now"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:274
|
||||
msgid "Enrolled"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/CourseCard.vue:43
|
||||
#: frontend/src/components/CourseCardOverlay.vue:104
|
||||
#: frontend/src/pages/CourseDetail.vue:33
|
||||
@@ -1742,7 +1771,7 @@ msgstr ""
|
||||
msgid "Enrolled successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:103
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:108
|
||||
msgid "Enrollment Confirmation for the Next Training Batch"
|
||||
msgstr ""
|
||||
|
||||
@@ -1751,7 +1780,7 @@ msgstr ""
|
||||
msgid "Enrollment Count"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1765
|
||||
#: lms/lms/utils.py:1693
|
||||
msgid "Enrollment Failed"
|
||||
msgstr ""
|
||||
|
||||
@@ -1821,7 +1850,7 @@ msgstr ""
|
||||
msgid "Evaluation Request"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:87
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:92
|
||||
msgid "Evaluation end date cannot be less than the batch end date."
|
||||
msgstr ""
|
||||
|
||||
@@ -1836,7 +1865,7 @@ msgstr ""
|
||||
#. Label of the evaluator (Link) field in DocType 'LMS Certificate Evaluation'
|
||||
#. Label of the evaluator (Link) field in DocType 'LMS Certificate Request'
|
||||
#: frontend/src/components/Modals/BatchCourseModal.vue:26
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:28
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:22
|
||||
#: frontend/src/pages/ProfileRoles.vue:22
|
||||
#: lms/lms/doctype/batch_course/batch_course.json
|
||||
#: lms/lms/doctype/course_evaluator/course_evaluator.json
|
||||
@@ -1914,7 +1943,7 @@ msgid "Expiration Date"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:39
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:33
|
||||
#: frontend/src/components/Modals/Event.vue:126
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
msgid "Expiry Date"
|
||||
@@ -1955,6 +1984,12 @@ msgstr ""
|
||||
msgid "Featured"
|
||||
msgstr "En vedette"
|
||||
|
||||
#. Label of the feedback (Small Text) field in DocType 'LMS Batch Feedback'
|
||||
#: frontend/src/components/BatchFeedback.vue:29
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "Feedback"
|
||||
msgstr "Retour d’Expérience"
|
||||
|
||||
#: frontend/src/components/Assignment.vue:61
|
||||
msgid "Feel free to make edits to your submission if needed."
|
||||
msgstr ""
|
||||
@@ -1974,7 +2009,7 @@ msgstr ""
|
||||
msgid "File Type"
|
||||
msgstr "Type de fichier"
|
||||
|
||||
#: frontend/src/pages/Jobs.vue:47
|
||||
#: frontend/src/pages/Jobs.vue:33
|
||||
msgid "Find the perfect job for you"
|
||||
msgstr ""
|
||||
|
||||
@@ -2007,7 +2042,7 @@ msgid "Free"
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
|
||||
#: frontend/src/pages/Jobs.vue:121
|
||||
#: frontend/src/pages/Jobs.vue:153
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
msgid "Freelance"
|
||||
msgstr ""
|
||||
@@ -2049,7 +2084,7 @@ msgid "Full Name"
|
||||
msgstr "Nom Complet"
|
||||
|
||||
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
|
||||
#: frontend/src/pages/Jobs.vue:118
|
||||
#: frontend/src/pages/Jobs.vue:150
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
msgid "Full Time"
|
||||
msgstr ""
|
||||
@@ -2147,6 +2182,10 @@ msgstr ""
|
||||
msgid "Hello"
|
||||
msgstr "Bonjour"
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:11
|
||||
msgid "Help Us Improve"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/courses_created.html:15
|
||||
msgid "Help others learn something new by creating a course."
|
||||
msgstr ""
|
||||
@@ -2155,10 +2194,6 @@ msgstr ""
|
||||
msgid "Help us improve our course material."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/web_template/courses_enrolled/courses_enrolled.html:18
|
||||
msgid "Here are a few courses we recommend for you to get started with {0}"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/notification/certificate_request_reminder/certificate_request_reminder.html:1
|
||||
#: lms/templates/emails/certificate_request_notification.html:1
|
||||
msgid "Hey {0}"
|
||||
@@ -2360,9 +2395,11 @@ msgid "Instructor Notes"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch'
|
||||
#. Label of the instructors (Rating) field in DocType 'LMS Batch Feedback'
|
||||
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course'
|
||||
#: frontend/src/pages/BatchForm.vue:89 frontend/src/pages/CourseForm.vue:154
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
msgid "Instructors"
|
||||
msgstr ""
|
||||
@@ -2437,7 +2474,7 @@ msgstr ""
|
||||
|
||||
#. Label of the issue_date (Date) field in DocType 'Certification'
|
||||
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:34
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:28
|
||||
#: frontend/src/components/Modals/Event.vue:121
|
||||
#: lms/lms/doctype/certification/certification.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
@@ -2450,6 +2487,7 @@ msgid "Issued On"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProfileAbout.vue:56
|
||||
#: frontend/src/pages/ProfileCertificates.vue:17
|
||||
#: lms/templates/certificates_section.html:11
|
||||
msgid "Issued on"
|
||||
msgstr ""
|
||||
@@ -2487,7 +2525,7 @@ msgstr ""
|
||||
msgid "Job Details"
|
||||
msgstr ""
|
||||
|
||||
#: lms/www/lms.py:108
|
||||
#: lms/www/lms.py:109
|
||||
msgid "Job Openings"
|
||||
msgstr "Offres d'emploi"
|
||||
|
||||
@@ -2566,6 +2604,11 @@ msgstr ""
|
||||
msgid "LMS Batch"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "LMS Batch Feedback"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
||||
msgid "LMS Batch Old"
|
||||
@@ -2725,6 +2768,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_assignment/lms_assignment.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
#: lms/lms/doctype/lms_course_progress/lms_course_progress.json
|
||||
@@ -2870,16 +2914,13 @@ msgid "LiveCode URL"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Members.vue:106
|
||||
#: frontend/src/pages/Assignments.vue:71
|
||||
#: frontend/src/pages/Assignments.vue:71 frontend/src/pages/Batches.vue:88
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:71
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:39
|
||||
#: frontend/src/pages/Quizzes.vue:51
|
||||
msgid "Load More"
|
||||
msgstr "Charger plus"
|
||||
|
||||
#: frontend/src/pages/Batches.vue:40
|
||||
msgid "Loading Batches..."
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Auto Recording' (Select) field in DocType 'LMS Live Class'
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
msgid "Local"
|
||||
@@ -2902,7 +2943,7 @@ msgstr ""
|
||||
|
||||
#: frontend/src/components/AssignmentBlock.vue:13
|
||||
#: frontend/src/components/NoPermission.vue:28
|
||||
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:175
|
||||
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:178
|
||||
#: frontend/src/pages/Lesson.vue:24
|
||||
msgid "Login"
|
||||
msgstr "Connexion"
|
||||
@@ -3007,6 +3048,7 @@ msgstr "Moyen:"
|
||||
#. Label of the member (Link) field in DocType 'Exercise Submission'
|
||||
#. Label of the member (Link) field in DocType 'LMS Assignment Submission'
|
||||
#. Label of the member (Link) field in DocType 'LMS Badge Assignment'
|
||||
#. Label of the member (Link) field in DocType 'LMS Batch Feedback'
|
||||
#. Label of the member (Link) field in DocType 'LMS Certificate'
|
||||
#. Label of the member (Link) field in DocType 'LMS Certificate Evaluation'
|
||||
#. Label of the member (Link) field in DocType 'LMS Certificate Request'
|
||||
@@ -3024,6 +3066,7 @@ msgstr "Moyen:"
|
||||
#: lms/lms/doctype/exercise_submission/exercise_submission.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.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
|
||||
@@ -3049,8 +3092,15 @@ msgstr ""
|
||||
msgid "Member Email"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the member_image (Attach Image) field in DocType 'LMS Batch
|
||||
#. Feedback'
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "Member Image"
|
||||
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 Batch Feedback'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Certificate'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Certificate
|
||||
#. Evaluation'
|
||||
@@ -3061,6 +3111,7 @@ msgstr ""
|
||||
#. 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_batch_feedback/lms_batch_feedback.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
|
||||
@@ -3223,7 +3274,7 @@ msgid "My calendar"
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
||||
#: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:30
|
||||
#: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:17
|
||||
#: frontend/src/pages/Courses.vue:45 frontend/src/pages/Programs.vue:14
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "New"
|
||||
@@ -3237,15 +3288,15 @@ msgstr ""
|
||||
msgid "New Assignment Submission"
|
||||
msgstr ""
|
||||
|
||||
#: lms/public/js/common_functions.js:255 lms/www/lms.py:86
|
||||
#: lms/public/js/common_functions.js:255 lms/www/lms.py:87
|
||||
msgid "New Batch"
|
||||
msgstr ""
|
||||
|
||||
#: lms/www/lms.py:37
|
||||
#: lms/www/lms.py:38
|
||||
msgid "New Course"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Jobs.vue:39
|
||||
#: frontend/src/pages/Jobs.vue:23
|
||||
msgid "New Job"
|
||||
msgstr ""
|
||||
|
||||
@@ -3278,11 +3329,11 @@ msgstr ""
|
||||
msgid "New Sign Up"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:623
|
||||
#: lms/lms/utils.py:605
|
||||
msgid "New comment in batch {0}"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:616
|
||||
#: lms/lms/utils.py:598
|
||||
msgid "New reply on the topic {0} in course {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -3324,7 +3375,7 @@ msgstr ""
|
||||
msgid "No assignments found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:125
|
||||
#: frontend/src/pages/Batches.vue:73
|
||||
msgid "No batches found"
|
||||
msgstr ""
|
||||
|
||||
@@ -3348,11 +3399,15 @@ msgstr ""
|
||||
msgid "No courses under review"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:101
|
||||
msgid "No feedback received yet."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProfileAbout.vue:12
|
||||
msgid "No introduction"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Jobs.vue:63
|
||||
#: frontend/src/pages/Jobs.vue:77
|
||||
msgid "No jobs posted"
|
||||
msgstr ""
|
||||
|
||||
@@ -3360,6 +3415,10 @@ msgstr ""
|
||||
msgid "No live classes scheduled"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:81
|
||||
msgid "No participants found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:91
|
||||
msgid "No programs found"
|
||||
msgstr ""
|
||||
@@ -3384,10 +3443,6 @@ msgstr ""
|
||||
msgid "No {0}"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:84
|
||||
msgid "No {0} batches"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:107
|
||||
msgid "No {0} courses"
|
||||
msgstr ""
|
||||
@@ -3420,7 +3475,7 @@ msgstr "Non disponible pour l'aperçu"
|
||||
msgid "Not Graded"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:143
|
||||
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:146
|
||||
msgid "Not Permitted"
|
||||
msgstr "Non Autorisé"
|
||||
|
||||
@@ -3614,7 +3669,7 @@ msgid "Pan Number"
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
|
||||
#: frontend/src/pages/Jobs.vue:119
|
||||
#: frontend/src/pages/Jobs.vue:151
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
msgid "Part Time"
|
||||
msgstr ""
|
||||
@@ -3765,11 +3820,11 @@ 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:1887 lms/lms/utils.py:1891
|
||||
#: lms/lms/utils.py:1815 lms/lms/utils.py:1819
|
||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:256
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:261
|
||||
msgid "Please enable Zoom Settings to use this feature."
|
||||
msgstr ""
|
||||
|
||||
@@ -3786,7 +3841,7 @@ msgid "Please enter a title."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:40
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:122
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:125
|
||||
msgid "Please enter a valid URL."
|
||||
msgstr ""
|
||||
|
||||
@@ -3794,7 +3849,7 @@ msgstr ""
|
||||
msgid "Please enter a valid time in the format HH:mm."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:116
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:119
|
||||
msgid "Please enter the URL for assignment submission."
|
||||
msgstr ""
|
||||
|
||||
@@ -3802,7 +3857,7 @@ msgstr ""
|
||||
msgid "Please enter your answer"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:66
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:71
|
||||
msgid "Please install the Payments app to create a paid batches."
|
||||
msgstr ""
|
||||
|
||||
@@ -3822,7 +3877,7 @@ msgstr ""
|
||||
msgid "Please login to access the quiz."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/NoPermission.vue:25 frontend/src/pages/Batch.vue:154
|
||||
#: frontend/src/components/NoPermission.vue:25 frontend/src/pages/Batch.vue:157
|
||||
msgid "Please login to access this page."
|
||||
msgstr ""
|
||||
|
||||
@@ -3863,7 +3918,7 @@ msgstr ""
|
||||
msgid "Please upload a SCORM package"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:119
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:122
|
||||
msgid "Please upload the assignment file."
|
||||
msgstr ""
|
||||
|
||||
@@ -3897,7 +3952,7 @@ msgid "Possible Answer 4"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/DiscussionReplies.vue:52
|
||||
#: frontend/src/components/DiscussionReplies.vue:86
|
||||
#: frontend/src/components/DiscussionReplies.vue:87
|
||||
msgid "Post"
|
||||
msgstr "Poster"
|
||||
|
||||
@@ -4326,19 +4381,19 @@ msgstr ""
|
||||
msgid "Route"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:199
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:204
|
||||
msgid "Row #{0} Date cannot be outside the batch duration."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:194
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:199
|
||||
msgid "Row #{0} End time cannot be outside the batch duration."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:176
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:181
|
||||
msgid "Row #{0} Start time cannot be greater than or equal to end time."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:185
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:190
|
||||
msgid "Row #{0} Start time cannot be outside the batch duration."
|
||||
msgstr ""
|
||||
|
||||
@@ -4419,10 +4474,18 @@ msgstr ""
|
||||
msgid "Score Out Of"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Members.vue:15
|
||||
#: frontend/src/components/Members.vue:15 frontend/src/pages/Jobs.vue:38
|
||||
msgid "Search"
|
||||
msgstr "Rechercher"
|
||||
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:17
|
||||
msgid "Search by Name"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:39
|
||||
msgid "Search by Title"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Assignments.vue:25
|
||||
msgid "Search by title"
|
||||
msgstr ""
|
||||
@@ -4719,7 +4782,7 @@ msgstr "Etat"
|
||||
#. Label of the statistics (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/components/BatchStudents.vue:5
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:133
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:134
|
||||
msgid "Statistics"
|
||||
msgstr ""
|
||||
|
||||
@@ -4784,7 +4847,7 @@ msgstr ""
|
||||
msgid "Student Reviews"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:48
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:53
|
||||
msgid "Student {0} has already been added to this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -4832,6 +4895,7 @@ msgstr ""
|
||||
msgid "Submission by"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:14
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:9
|
||||
#: frontend/src/components/Modals/BatchCourseModal.vue:9
|
||||
#: frontend/src/components/Modals/EvaluationModal.vue:9
|
||||
@@ -4889,7 +4953,7 @@ msgstr "Résumé"
|
||||
msgid "Sunday"
|
||||
msgstr "Dimanche"
|
||||
|
||||
#: lms/lms/api.py:964
|
||||
#: lms/lms/api.py:983
|
||||
msgid "Suspicious pattern found in {0}: {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -4915,6 +4979,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
||||
#: lms/lms/doctype/lms_category/lms_category.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
@@ -4997,6 +5062,10 @@ msgstr ""
|
||||
msgid "Text"
|
||||
msgstr "Texte"
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:7
|
||||
msgid "Thank you for providing your feedback!"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/emails/lms_course_interest.html:17
|
||||
#: lms/templates/emails/lms_invite_request_approved.html:15
|
||||
#: lms/templates/emails/mentor_request_creation_email.html:7
|
||||
@@ -5004,7 +5073,7 @@ msgstr "Texte"
|
||||
msgid "Thanks and Regards"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1794
|
||||
#: lms/lms/utils.py:1722
|
||||
msgid "The batch is full. Please contact the Administrator."
|
||||
msgstr ""
|
||||
|
||||
@@ -5028,8 +5097,8 @@ msgstr ""
|
||||
msgid "The status of your application has changed."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:129
|
||||
msgid "There are no batches available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
#: frontend/src/pages/Batches.vue:77
|
||||
msgid "There are no batches matching the criteria. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/CreateOutline.vue:12
|
||||
@@ -5040,11 +5109,15 @@ 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/CertifiedParticipants.vue:84
|
||||
msgid "There are no participants matching this criteria."
|
||||
msgstr ""
|
||||
|
||||
#: 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 ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:146
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:151
|
||||
msgid "There are no seats available in this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -5060,7 +5133,7 @@ msgstr ""
|
||||
msgid "There are no {0} on this site."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:82
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:85
|
||||
msgid "There has been an update on your submission for assignment {0}"
|
||||
msgstr ""
|
||||
|
||||
@@ -5091,7 +5164,7 @@ msgstr ""
|
||||
msgid "This course has:"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1645
|
||||
#: lms/lms/utils.py:1573
|
||||
msgid "This course is free."
|
||||
msgstr ""
|
||||
|
||||
@@ -5235,7 +5308,7 @@ msgstr "À"
|
||||
msgid "To Date"
|
||||
msgstr "Jusqu'au"
|
||||
|
||||
#: lms/lms/utils.py:1656
|
||||
#: lms/lms/utils.py:1584
|
||||
msgid "To join this batch, please contact the Administrator."
|
||||
msgstr ""
|
||||
|
||||
@@ -5291,7 +5364,7 @@ msgstr ""
|
||||
#: frontend/src/components/Modals/Question.vue:54
|
||||
#: frontend/src/pages/AssignmentForm.vue:39
|
||||
#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:157
|
||||
#: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:16
|
||||
#: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:55
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
#: lms/lms/doctype/lms_assignment/lms_assignment.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
@@ -5337,6 +5410,10 @@ msgstr "En cours de révision"
|
||||
msgid "Unlisted"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:262 frontend/src/pages/Batches.vue:278
|
||||
msgid "Unpublished"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/EditCoverImage.vue:60
|
||||
#: frontend/src/components/UnsplashImageBrowser.vue:54
|
||||
msgid "Unsplash"
|
||||
@@ -5354,12 +5431,13 @@ msgstr ""
|
||||
|
||||
#. Option for the 'Status' (Select) field in DocType 'Cohort'
|
||||
#. Label of the upcoming (Check) field in DocType 'LMS Course'
|
||||
#: frontend/src/pages/Batches.vue:258 frontend/src/pages/Batches.vue:276
|
||||
#: frontend/src/pages/CourseForm.vue:184 lms/lms/doctype/cohort/cohort.json
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
msgid "Upcoming"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batch.vue:166
|
||||
#: frontend/src/pages/Batch.vue:169
|
||||
msgid "Upcoming Batches"
|
||||
msgstr ""
|
||||
|
||||
@@ -5421,7 +5499,7 @@ msgstr ""
|
||||
msgid "User Skill"
|
||||
msgstr ""
|
||||
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.py:37
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.py:40
|
||||
msgid "User {0} has reported the job post {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -5446,6 +5524,11 @@ msgstr ""
|
||||
msgid "Valid email and name required"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the value (Rating) field in DocType 'LMS Batch Feedback'
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "Value"
|
||||
msgstr "Valeur"
|
||||
|
||||
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "Value Change"
|
||||
@@ -5569,7 +5652,7 @@ msgstr ""
|
||||
msgid "You are already enrolled for this course."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batch.vue:148
|
||||
#: frontend/src/pages/Batch.vue:151
|
||||
msgid "You are not a member of this batch. Please checkout our upcoming batches."
|
||||
msgstr ""
|
||||
|
||||
@@ -5606,10 +5689,6 @@ msgstr ""
|
||||
msgid "You can find their resume attached to this email."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:113
|
||||
msgid "You can link courses and assessments to it."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:115
|
||||
msgid "You cannot schedule evaluations after {0}."
|
||||
msgstr ""
|
||||
@@ -5671,10 +5750,6 @@ msgstr ""
|
||||
msgid "You have opted to be notified for this course. You will receive an email when the course becomes available."
|
||||
msgstr "Vous avez choisi d'être notifié pour ce cours. Vous recevrez un courriel lorsque le cours sera disponible."
|
||||
|
||||
#: lms/lms/web_template/courses_enrolled/courses_enrolled.html:17
|
||||
msgid "You haven't enrolled for any courses"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/CourseCardOverlay.vue:146
|
||||
msgid "You need to login first to enroll for this course"
|
||||
msgstr ""
|
||||
@@ -5769,10 +5844,6 @@ msgstr ""
|
||||
msgid "in the last"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProfileCertificates.vue:17
|
||||
msgid "issued on"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/signup-form.html:12
|
||||
msgid "jane@example.com"
|
||||
msgstr ""
|
||||
@@ -5793,8 +5864,8 @@ msgstr ""
|
||||
msgid "out of"
|
||||
msgstr "sur"
|
||||
|
||||
#: frontend/src/components/JobCard.vue:37
|
||||
msgid "posted by"
|
||||
#: frontend/src/components/JobCard.vue:30
|
||||
msgid "posted"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:386
|
||||
@@ -5817,7 +5888,7 @@ msgstr ""
|
||||
msgid "you can"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:761 lms/lms/api.py:769
|
||||
#: lms/lms/api.py:780 lms/lms/api.py:788
|
||||
msgid "{0} Settings not found"
|
||||
msgstr ""
|
||||
|
||||
@@ -5845,7 +5916,11 @@ msgstr ""
|
||||
msgid "{0} is already a {1} of the course {2}"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:59
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:91
|
||||
msgid "{0} is already certified for the batch {1}"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:72
|
||||
msgid "{0} is already certified for the course {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -5853,7 +5928,7 @@ msgstr ""
|
||||
msgid "{0} is your evaluator"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:700
|
||||
#: lms/lms/utils.py:682
|
||||
msgid "{0} mentioned you in a comment"
|
||||
msgstr ""
|
||||
|
||||
@@ -5861,11 +5936,11 @@ msgstr ""
|
||||
msgid "{0} mentioned you in a comment in your batch."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:653 lms/lms/utils.py:659
|
||||
#: lms/lms/utils.py:635 lms/lms/utils.py:641
|
||||
msgid "{0} mentioned you in a comment in {1}"
|
||||
msgstr "{0} vous a mentionné dans un commentaire dans {1}"
|
||||
|
||||
#: lms/lms/utils.py:476
|
||||
#: lms/lms/utils.py:458
|
||||
msgid "{0}k"
|
||||
msgstr ""
|
||||
|
||||
|
||||
275
lms/locale/hu.po
275
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-10 16:04+0000\n"
|
||||
"PO-Revision-Date: 2025-01-13 06:31\n"
|
||||
"POT-Creation-Date: 2025-01-17 16:04+0000\n"
|
||||
"PO-Revision-Date: 2025-01-20 11:13\n"
|
||||
"Last-Translator: jannat@frappe.io\n"
|
||||
"Language-Team: Hungarian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -75,7 +75,7 @@ msgstr ""
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batch.vue:93
|
||||
#: frontend/src/pages/Batch.vue:96
|
||||
msgid "About this batch"
|
||||
msgstr ""
|
||||
|
||||
@@ -212,14 +212,26 @@ msgid "Admin"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a role
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
#: frontend/src/pages/Batches.vue:270 lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:26
|
||||
msgid "All Batches"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:12
|
||||
msgid "All Certified Participants"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/widgets/BreadCrumb.html:3
|
||||
msgid "All Courses"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:51
|
||||
msgid "All Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/quiz/quiz.html:141
|
||||
msgid "All Submissions"
|
||||
msgstr ""
|
||||
@@ -279,7 +291,7 @@ msgstr ""
|
||||
msgid "Amount Field"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:70
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:75
|
||||
msgid "Amount and currency are required for paid batches."
|
||||
msgstr ""
|
||||
|
||||
@@ -353,6 +365,10 @@ msgstr ""
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:259 frontend/src/pages/Batches.vue:277
|
||||
msgid "Archived"
|
||||
msgstr "Archivált"
|
||||
|
||||
#. Label of the user_category (Check) field in DocType 'LMS Settings'
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Ask User Category during Signup"
|
||||
@@ -381,7 +397,7 @@ msgstr ""
|
||||
msgid "Assessment added successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:80
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:85
|
||||
msgid "Assessment {0} has already been added to this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -473,6 +489,10 @@ msgstr ""
|
||||
msgid "Average Rating"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:38
|
||||
msgid "Average of Feedback Received"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Lesson.vue:96
|
||||
msgid "Back to Course"
|
||||
msgstr ""
|
||||
@@ -493,10 +513,12 @@ msgstr ""
|
||||
msgid "Badge Image"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the batch (Link) field in DocType 'LMS Batch Feedback'
|
||||
#. Label of the batch_name (Link) field in DocType 'LMS Certificate'
|
||||
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
|
||||
#. Label of the batch_name (Link) field in DocType 'LMS Live Class'
|
||||
#: frontend/src/components/Modals/Event.vue:32
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
@@ -578,7 +600,9 @@ msgstr ""
|
||||
msgid "Batch Student"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the batch_title (Data) field in DocType 'LMS Certificate'
|
||||
#. Label of the batch_title (Data) field in DocType 'LMS Certificate Request'
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
msgid "Batch Title"
|
||||
msgstr ""
|
||||
@@ -587,14 +611,15 @@ msgstr ""
|
||||
msgid "Batch Updated"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:41
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:46
|
||||
msgid "Batch end date cannot be before the batch start date"
|
||||
msgstr ""
|
||||
|
||||
#. Group in LMS Course's connections
|
||||
#. Label of the batches (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/pages/Batches.vue:8 lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:60
|
||||
#: frontend/src/pages/Batches.vue:285
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:61
|
||||
msgid "Batches"
|
||||
msgstr ""
|
||||
|
||||
@@ -689,7 +714,8 @@ msgstr ""
|
||||
#. Label of the category (Link) field in DocType 'LMS Batch'
|
||||
#. Label of the category (Data) field in DocType 'LMS Category'
|
||||
#. Label of the category (Link) field in DocType 'LMS Course'
|
||||
#: frontend/src/pages/BatchForm.vue:202 frontend/src/pages/Batches.vue:16
|
||||
#: frontend/src/pages/BatchForm.vue:202 frontend/src/pages/Batches.vue:49
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:29
|
||||
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:17
|
||||
#: frontend/src/pages/JobDetail.vue:102
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
@@ -756,6 +782,7 @@ msgid "Certification Name"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the certified_participants (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:153
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Certified Participants"
|
||||
msgstr ""
|
||||
@@ -1048,7 +1075,7 @@ msgstr ""
|
||||
msgid "Confirmation Email Sent"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:25
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:29
|
||||
msgid "Congratulations on getting certified!"
|
||||
msgstr ""
|
||||
|
||||
@@ -1057,8 +1084,10 @@ msgid "Contact the Administrator to enroll for this course."
|
||||
msgstr ""
|
||||
|
||||
#. Label of the content (Text) field in DocType 'Course Lesson'
|
||||
#. Label of the content (Rating) field in DocType 'LMS Batch Feedback'
|
||||
#: frontend/src/pages/LessonForm.vue:62
|
||||
#: lms/lms/doctype/course_lesson/course_lesson.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "Content"
|
||||
msgstr "Tartalom"
|
||||
|
||||
@@ -1067,7 +1096,7 @@ msgid "Continue Learning"
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
|
||||
#: frontend/src/pages/Jobs.vue:120
|
||||
#: frontend/src/pages/Jobs.vue:152
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
msgid "Contract"
|
||||
msgstr ""
|
||||
@@ -1133,7 +1162,7 @@ msgstr ""
|
||||
#. Label of a Link in the LMS Workspace
|
||||
#. Label of a shortcut in the LMS Workspace
|
||||
#: frontend/src/components/Modals/BatchCourseModal.vue:20
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:23
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:38
|
||||
#: frontend/src/components/Modals/EvaluationModal.vue:20
|
||||
#: frontend/src/components/Modals/Event.vue:24
|
||||
#: lms/lms/doctype/batch_course/batch_course.json
|
||||
@@ -1220,7 +1249,7 @@ msgstr ""
|
||||
msgid "Course Lesson"
|
||||
msgstr ""
|
||||
|
||||
#: lms/www/lms.py:27
|
||||
#: lms/www/lms.py:28
|
||||
msgid "Course List"
|
||||
msgstr ""
|
||||
|
||||
@@ -1270,7 +1299,7 @@ msgstr ""
|
||||
msgid "Course added to program"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:345
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:350
|
||||
msgid "Course already added to the batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -1282,7 +1311,7 @@ msgstr ""
|
||||
msgid "Course moved successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:59
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:64
|
||||
#: lms/lms/doctype/lms_program/lms_program.py:19
|
||||
msgid "Course {0} has already been added to this batch."
|
||||
msgstr ""
|
||||
@@ -1333,10 +1362,6 @@ msgstr ""
|
||||
msgid "Create LMS Certificate Evaluation"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:110
|
||||
msgid "Create a Batch"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:132 lms/templates/onboarding_header.html:19
|
||||
msgid "Create a Course"
|
||||
msgstr ""
|
||||
@@ -1732,6 +1757,10 @@ msgstr "Befejezés dátuma"
|
||||
msgid "Enroll Now"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:274
|
||||
msgid "Enrolled"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/CourseCard.vue:43
|
||||
#: frontend/src/components/CourseCardOverlay.vue:104
|
||||
#: frontend/src/pages/CourseDetail.vue:33
|
||||
@@ -1742,7 +1771,7 @@ msgstr ""
|
||||
msgid "Enrolled successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:103
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:108
|
||||
msgid "Enrollment Confirmation for the Next Training Batch"
|
||||
msgstr ""
|
||||
|
||||
@@ -1751,7 +1780,7 @@ msgstr ""
|
||||
msgid "Enrollment Count"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1765
|
||||
#: lms/lms/utils.py:1693
|
||||
msgid "Enrollment Failed"
|
||||
msgstr ""
|
||||
|
||||
@@ -1821,7 +1850,7 @@ msgstr ""
|
||||
msgid "Evaluation Request"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:87
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:92
|
||||
msgid "Evaluation end date cannot be less than the batch end date."
|
||||
msgstr ""
|
||||
|
||||
@@ -1836,7 +1865,7 @@ msgstr ""
|
||||
#. Label of the evaluator (Link) field in DocType 'LMS Certificate Evaluation'
|
||||
#. Label of the evaluator (Link) field in DocType 'LMS Certificate Request'
|
||||
#: frontend/src/components/Modals/BatchCourseModal.vue:26
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:28
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:22
|
||||
#: frontend/src/pages/ProfileRoles.vue:22
|
||||
#: lms/lms/doctype/batch_course/batch_course.json
|
||||
#: lms/lms/doctype/course_evaluator/course_evaluator.json
|
||||
@@ -1914,7 +1943,7 @@ msgid "Expiration Date"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:39
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:33
|
||||
#: frontend/src/components/Modals/Event.vue:126
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
msgid "Expiry Date"
|
||||
@@ -1955,6 +1984,12 @@ msgstr "Nem sikerül"
|
||||
msgid "Featured"
|
||||
msgstr "Kiemelt"
|
||||
|
||||
#. Label of the feedback (Small Text) field in DocType 'LMS Batch Feedback'
|
||||
#: frontend/src/components/BatchFeedback.vue:29
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Assignment.vue:61
|
||||
msgid "Feel free to make edits to your submission if needed."
|
||||
msgstr ""
|
||||
@@ -1974,7 +2009,7 @@ msgstr ""
|
||||
msgid "File Type"
|
||||
msgstr "Fájl típusa"
|
||||
|
||||
#: frontend/src/pages/Jobs.vue:47
|
||||
#: frontend/src/pages/Jobs.vue:33
|
||||
msgid "Find the perfect job for you"
|
||||
msgstr ""
|
||||
|
||||
@@ -2007,7 +2042,7 @@ msgid "Free"
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
|
||||
#: frontend/src/pages/Jobs.vue:121
|
||||
#: frontend/src/pages/Jobs.vue:153
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
msgid "Freelance"
|
||||
msgstr "Szabadúszó"
|
||||
@@ -2049,7 +2084,7 @@ msgid "Full Name"
|
||||
msgstr "Teljes név"
|
||||
|
||||
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
|
||||
#: frontend/src/pages/Jobs.vue:118
|
||||
#: frontend/src/pages/Jobs.vue:150
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
msgid "Full Time"
|
||||
msgstr "Teljes munkaidőben"
|
||||
@@ -2147,6 +2182,10 @@ msgstr ""
|
||||
msgid "Hello"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:11
|
||||
msgid "Help Us Improve"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/courses_created.html:15
|
||||
msgid "Help others learn something new by creating a course."
|
||||
msgstr ""
|
||||
@@ -2155,10 +2194,6 @@ msgstr ""
|
||||
msgid "Help us improve our course material."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/web_template/courses_enrolled/courses_enrolled.html:18
|
||||
msgid "Here are a few courses we recommend for you to get started with {0}"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/notification/certificate_request_reminder/certificate_request_reminder.html:1
|
||||
#: lms/templates/emails/certificate_request_notification.html:1
|
||||
msgid "Hey {0}"
|
||||
@@ -2360,9 +2395,11 @@ msgid "Instructor Notes"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch'
|
||||
#. Label of the instructors (Rating) field in DocType 'LMS Batch Feedback'
|
||||
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course'
|
||||
#: frontend/src/pages/BatchForm.vue:89 frontend/src/pages/CourseForm.vue:154
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
msgid "Instructors"
|
||||
msgstr ""
|
||||
@@ -2437,7 +2474,7 @@ msgstr ""
|
||||
|
||||
#. Label of the issue_date (Date) field in DocType 'Certification'
|
||||
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:34
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:28
|
||||
#: frontend/src/components/Modals/Event.vue:121
|
||||
#: lms/lms/doctype/certification/certification.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
@@ -2450,6 +2487,7 @@ msgid "Issued On"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProfileAbout.vue:56
|
||||
#: frontend/src/pages/ProfileCertificates.vue:17
|
||||
#: lms/templates/certificates_section.html:11
|
||||
msgid "Issued on"
|
||||
msgstr ""
|
||||
@@ -2487,7 +2525,7 @@ msgstr ""
|
||||
msgid "Job Details"
|
||||
msgstr ""
|
||||
|
||||
#: lms/www/lms.py:108
|
||||
#: lms/www/lms.py:109
|
||||
msgid "Job Openings"
|
||||
msgstr ""
|
||||
|
||||
@@ -2566,6 +2604,11 @@ msgstr ""
|
||||
msgid "LMS Batch"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "LMS Batch Feedback"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
||||
msgid "LMS Batch Old"
|
||||
@@ -2725,6 +2768,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_assignment/lms_assignment.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
#: lms/lms/doctype/lms_course_progress/lms_course_progress.json
|
||||
@@ -2870,16 +2914,13 @@ msgid "LiveCode URL"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Members.vue:106
|
||||
#: frontend/src/pages/Assignments.vue:71
|
||||
#: frontend/src/pages/Assignments.vue:71 frontend/src/pages/Batches.vue:88
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:71
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:39
|
||||
#: frontend/src/pages/Quizzes.vue:51
|
||||
msgid "Load More"
|
||||
msgstr "Töltsön be többet"
|
||||
|
||||
#: frontend/src/pages/Batches.vue:40
|
||||
msgid "Loading Batches..."
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Auto Recording' (Select) field in DocType 'LMS Live Class'
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
msgid "Local"
|
||||
@@ -2902,7 +2943,7 @@ msgstr ""
|
||||
|
||||
#: frontend/src/components/AssignmentBlock.vue:13
|
||||
#: frontend/src/components/NoPermission.vue:28
|
||||
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:175
|
||||
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:178
|
||||
#: frontend/src/pages/Lesson.vue:24
|
||||
msgid "Login"
|
||||
msgstr "Bejelentkezés"
|
||||
@@ -3007,6 +3048,7 @@ msgstr "Közepes:"
|
||||
#. Label of the member (Link) field in DocType 'Exercise Submission'
|
||||
#. Label of the member (Link) field in DocType 'LMS Assignment Submission'
|
||||
#. Label of the member (Link) field in DocType 'LMS Badge Assignment'
|
||||
#. Label of the member (Link) field in DocType 'LMS Batch Feedback'
|
||||
#. Label of the member (Link) field in DocType 'LMS Certificate'
|
||||
#. Label of the member (Link) field in DocType 'LMS Certificate Evaluation'
|
||||
#. Label of the member (Link) field in DocType 'LMS Certificate Request'
|
||||
@@ -3024,6 +3066,7 @@ msgstr "Közepes:"
|
||||
#: lms/lms/doctype/exercise_submission/exercise_submission.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.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
|
||||
@@ -3049,8 +3092,15 @@ msgstr ""
|
||||
msgid "Member Email"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the member_image (Attach Image) field in DocType 'LMS Batch
|
||||
#. Feedback'
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "Member Image"
|
||||
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 Batch Feedback'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Certificate'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Certificate
|
||||
#. Evaluation'
|
||||
@@ -3061,6 +3111,7 @@ msgstr ""
|
||||
#. 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_batch_feedback/lms_batch_feedback.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
|
||||
@@ -3223,7 +3274,7 @@ msgid "My calendar"
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
||||
#: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:30
|
||||
#: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:17
|
||||
#: frontend/src/pages/Courses.vue:45 frontend/src/pages/Programs.vue:14
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "New"
|
||||
@@ -3237,15 +3288,15 @@ msgstr ""
|
||||
msgid "New Assignment Submission"
|
||||
msgstr ""
|
||||
|
||||
#: lms/public/js/common_functions.js:255 lms/www/lms.py:86
|
||||
#: lms/public/js/common_functions.js:255 lms/www/lms.py:87
|
||||
msgid "New Batch"
|
||||
msgstr ""
|
||||
|
||||
#: lms/www/lms.py:37
|
||||
#: lms/www/lms.py:38
|
||||
msgid "New Course"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Jobs.vue:39
|
||||
#: frontend/src/pages/Jobs.vue:23
|
||||
msgid "New Job"
|
||||
msgstr ""
|
||||
|
||||
@@ -3278,11 +3329,11 @@ msgstr ""
|
||||
msgid "New Sign Up"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:623
|
||||
#: lms/lms/utils.py:605
|
||||
msgid "New comment in batch {0}"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:616
|
||||
#: lms/lms/utils.py:598
|
||||
msgid "New reply on the topic {0} in course {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -3324,7 +3375,7 @@ msgstr ""
|
||||
msgid "No assignments found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:125
|
||||
#: frontend/src/pages/Batches.vue:73
|
||||
msgid "No batches found"
|
||||
msgstr ""
|
||||
|
||||
@@ -3348,11 +3399,15 @@ msgstr ""
|
||||
msgid "No courses under review"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:101
|
||||
msgid "No feedback received yet."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProfileAbout.vue:12
|
||||
msgid "No introduction"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Jobs.vue:63
|
||||
#: frontend/src/pages/Jobs.vue:77
|
||||
msgid "No jobs posted"
|
||||
msgstr ""
|
||||
|
||||
@@ -3360,6 +3415,10 @@ msgstr ""
|
||||
msgid "No live classes scheduled"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:81
|
||||
msgid "No participants found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:91
|
||||
msgid "No programs found"
|
||||
msgstr ""
|
||||
@@ -3384,10 +3443,6 @@ msgstr ""
|
||||
msgid "No {0}"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:84
|
||||
msgid "No {0} batches"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:107
|
||||
msgid "No {0} courses"
|
||||
msgstr ""
|
||||
@@ -3420,7 +3475,7 @@ msgstr ""
|
||||
msgid "Not Graded"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:143
|
||||
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:146
|
||||
msgid "Not Permitted"
|
||||
msgstr ""
|
||||
|
||||
@@ -3614,7 +3669,7 @@ msgid "Pan Number"
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
|
||||
#: frontend/src/pages/Jobs.vue:119
|
||||
#: frontend/src/pages/Jobs.vue:151
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
msgid "Part Time"
|
||||
msgstr "Részmunkaidő"
|
||||
@@ -3765,11 +3820,11 @@ msgstr "Kérjük, ellenőrizze e-mail a vizsgálathoz"
|
||||
msgid "Please click on the following button to set your new password"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1887 lms/lms/utils.py:1891
|
||||
#: lms/lms/utils.py:1815 lms/lms/utils.py:1819
|
||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:256
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:261
|
||||
msgid "Please enable Zoom Settings to use this feature."
|
||||
msgstr ""
|
||||
|
||||
@@ -3786,7 +3841,7 @@ msgid "Please enter a title."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:40
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:122
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:125
|
||||
msgid "Please enter a valid URL."
|
||||
msgstr ""
|
||||
|
||||
@@ -3794,7 +3849,7 @@ msgstr ""
|
||||
msgid "Please enter a valid time in the format HH:mm."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:116
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:119
|
||||
msgid "Please enter the URL for assignment submission."
|
||||
msgstr ""
|
||||
|
||||
@@ -3802,7 +3857,7 @@ msgstr ""
|
||||
msgid "Please enter your answer"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:66
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:71
|
||||
msgid "Please install the Payments app to create a paid batches."
|
||||
msgstr ""
|
||||
|
||||
@@ -3822,7 +3877,7 @@ msgstr ""
|
||||
msgid "Please login to access the quiz."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/NoPermission.vue:25 frontend/src/pages/Batch.vue:154
|
||||
#: frontend/src/components/NoPermission.vue:25 frontend/src/pages/Batch.vue:157
|
||||
msgid "Please login to access this page."
|
||||
msgstr ""
|
||||
|
||||
@@ -3863,7 +3918,7 @@ msgstr ""
|
||||
msgid "Please upload a SCORM package"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:119
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:122
|
||||
msgid "Please upload the assignment file."
|
||||
msgstr ""
|
||||
|
||||
@@ -3897,7 +3952,7 @@ msgid "Possible Answer 4"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/DiscussionReplies.vue:52
|
||||
#: frontend/src/components/DiscussionReplies.vue:86
|
||||
#: frontend/src/components/DiscussionReplies.vue:87
|
||||
msgid "Post"
|
||||
msgstr "Hozzászólás"
|
||||
|
||||
@@ -4326,19 +4381,19 @@ msgstr ""
|
||||
msgid "Route"
|
||||
msgstr "Útvonal"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:199
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:204
|
||||
msgid "Row #{0} Date cannot be outside the batch duration."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:194
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:199
|
||||
msgid "Row #{0} End time cannot be outside the batch duration."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:176
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:181
|
||||
msgid "Row #{0} Start time cannot be greater than or equal to end time."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:185
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:190
|
||||
msgid "Row #{0} Start time cannot be outside the batch duration."
|
||||
msgstr ""
|
||||
|
||||
@@ -4419,10 +4474,18 @@ msgstr ""
|
||||
msgid "Score Out Of"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Members.vue:15
|
||||
#: frontend/src/components/Members.vue:15 frontend/src/pages/Jobs.vue:38
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:17
|
||||
msgid "Search by Name"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:39
|
||||
msgid "Search by Title"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Assignments.vue:25
|
||||
msgid "Search by title"
|
||||
msgstr ""
|
||||
@@ -4719,7 +4782,7 @@ msgstr ""
|
||||
#. Label of the statistics (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/components/BatchStudents.vue:5
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:133
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:134
|
||||
msgid "Statistics"
|
||||
msgstr ""
|
||||
|
||||
@@ -4784,7 +4847,7 @@ msgstr ""
|
||||
msgid "Student Reviews"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:48
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:53
|
||||
msgid "Student {0} has already been added to this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -4832,6 +4895,7 @@ msgstr ""
|
||||
msgid "Submission by"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:14
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:9
|
||||
#: frontend/src/components/Modals/BatchCourseModal.vue:9
|
||||
#: frontend/src/components/Modals/EvaluationModal.vue:9
|
||||
@@ -4889,7 +4953,7 @@ msgstr "Összefoglalás"
|
||||
msgid "Sunday"
|
||||
msgstr "Vasárnap"
|
||||
|
||||
#: lms/lms/api.py:964
|
||||
#: lms/lms/api.py:983
|
||||
msgid "Suspicious pattern found in {0}: {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -4915,6 +4979,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
||||
#: lms/lms/doctype/lms_category/lms_category.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
@@ -4997,6 +5062,10 @@ msgstr ""
|
||||
msgid "Text"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:7
|
||||
msgid "Thank you for providing your feedback!"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/emails/lms_course_interest.html:17
|
||||
#: lms/templates/emails/lms_invite_request_approved.html:15
|
||||
#: lms/templates/emails/mentor_request_creation_email.html:7
|
||||
@@ -5004,7 +5073,7 @@ msgstr ""
|
||||
msgid "Thanks and Regards"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1794
|
||||
#: lms/lms/utils.py:1722
|
||||
msgid "The batch is full. Please contact the Administrator."
|
||||
msgstr ""
|
||||
|
||||
@@ -5028,8 +5097,8 @@ msgstr ""
|
||||
msgid "The status of your application has changed."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:129
|
||||
msgid "There are no batches available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
#: frontend/src/pages/Batches.vue:77
|
||||
msgid "There are no batches matching the criteria. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/CreateOutline.vue:12
|
||||
@@ -5040,11 +5109,15 @@ 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/CertifiedParticipants.vue:84
|
||||
msgid "There are no participants matching this criteria."
|
||||
msgstr ""
|
||||
|
||||
#: 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 ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:146
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:151
|
||||
msgid "There are no seats available in this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -5060,7 +5133,7 @@ msgstr ""
|
||||
msgid "There are no {0} on this site."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:82
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:85
|
||||
msgid "There has been an update on your submission for assignment {0}"
|
||||
msgstr ""
|
||||
|
||||
@@ -5091,7 +5164,7 @@ msgstr ""
|
||||
msgid "This course has:"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1645
|
||||
#: lms/lms/utils.py:1573
|
||||
msgid "This course is free."
|
||||
msgstr ""
|
||||
|
||||
@@ -5235,7 +5308,7 @@ msgstr ""
|
||||
msgid "To Date"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1656
|
||||
#: lms/lms/utils.py:1584
|
||||
msgid "To join this batch, please contact the Administrator."
|
||||
msgstr ""
|
||||
|
||||
@@ -5291,7 +5364,7 @@ msgstr ""
|
||||
#: frontend/src/components/Modals/Question.vue:54
|
||||
#: frontend/src/pages/AssignmentForm.vue:39
|
||||
#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:157
|
||||
#: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:16
|
||||
#: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:55
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
#: lms/lms/doctype/lms_assignment/lms_assignment.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
@@ -5337,6 +5410,10 @@ msgstr ""
|
||||
msgid "Unlisted"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:262 frontend/src/pages/Batches.vue:278
|
||||
msgid "Unpublished"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/EditCoverImage.vue:60
|
||||
#: frontend/src/components/UnsplashImageBrowser.vue:54
|
||||
msgid "Unsplash"
|
||||
@@ -5354,12 +5431,13 @@ msgstr ""
|
||||
|
||||
#. Option for the 'Status' (Select) field in DocType 'Cohort'
|
||||
#. Label of the upcoming (Check) field in DocType 'LMS Course'
|
||||
#: frontend/src/pages/Batches.vue:258 frontend/src/pages/Batches.vue:276
|
||||
#: frontend/src/pages/CourseForm.vue:184 lms/lms/doctype/cohort/cohort.json
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
msgid "Upcoming"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batch.vue:166
|
||||
#: frontend/src/pages/Batch.vue:169
|
||||
msgid "Upcoming Batches"
|
||||
msgstr ""
|
||||
|
||||
@@ -5421,7 +5499,7 @@ msgstr ""
|
||||
msgid "User Skill"
|
||||
msgstr ""
|
||||
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.py:37
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.py:40
|
||||
msgid "User {0} has reported the job post {1}"
|
||||
msgstr "{0} felhasználó jelentette az álláshirdetést {1}"
|
||||
|
||||
@@ -5446,6 +5524,11 @@ msgstr ""
|
||||
msgid "Valid email and name required"
|
||||
msgstr "Érvényes e-mail és név szükséges"
|
||||
|
||||
#. Label of the value (Rating) field in DocType 'LMS Batch Feedback'
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "Value"
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "Value Change"
|
||||
@@ -5569,7 +5652,7 @@ msgstr ""
|
||||
msgid "You are already enrolled for this course."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batch.vue:148
|
||||
#: frontend/src/pages/Batch.vue:151
|
||||
msgid "You are not a member of this batch. Please checkout our upcoming batches."
|
||||
msgstr ""
|
||||
|
||||
@@ -5606,10 +5689,6 @@ msgstr ""
|
||||
msgid "You can find their resume attached to this email."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:113
|
||||
msgid "You can link courses and assessments to it."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:115
|
||||
msgid "You cannot schedule evaluations after {0}."
|
||||
msgstr ""
|
||||
@@ -5671,10 +5750,6 @@ msgstr ""
|
||||
msgid "You have opted to be notified for this course. You will receive an email when the course becomes available."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/web_template/courses_enrolled/courses_enrolled.html:17
|
||||
msgid "You haven't enrolled for any courses"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/CourseCardOverlay.vue:146
|
||||
msgid "You need to login first to enroll for this course"
|
||||
msgstr ""
|
||||
@@ -5769,10 +5844,6 @@ msgstr ""
|
||||
msgid "in the last"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProfileCertificates.vue:17
|
||||
msgid "issued on"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/signup-form.html:12
|
||||
msgid "jane@example.com"
|
||||
msgstr ""
|
||||
@@ -5793,8 +5864,8 @@ msgstr "nak,-nek"
|
||||
msgid "out of"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/JobCard.vue:37
|
||||
msgid "posted by"
|
||||
#: frontend/src/components/JobCard.vue:30
|
||||
msgid "posted"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:386
|
||||
@@ -5817,7 +5888,7 @@ msgstr ""
|
||||
msgid "you can"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:761 lms/lms/api.py:769
|
||||
#: lms/lms/api.py:780 lms/lms/api.py:788
|
||||
msgid "{0} Settings not found"
|
||||
msgstr ""
|
||||
|
||||
@@ -5845,7 +5916,11 @@ msgstr ""
|
||||
msgid "{0} is already a {1} of the course {2}"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:59
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:91
|
||||
msgid "{0} is already certified for the batch {1}"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:72
|
||||
msgid "{0} is already certified for the course {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -5853,7 +5928,7 @@ msgstr ""
|
||||
msgid "{0} is your evaluator"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:700
|
||||
#: lms/lms/utils.py:682
|
||||
msgid "{0} mentioned you in a comment"
|
||||
msgstr ""
|
||||
|
||||
@@ -5861,11 +5936,11 @@ msgstr ""
|
||||
msgid "{0} mentioned you in a comment in your batch."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:653 lms/lms/utils.py:659
|
||||
#: lms/lms/utils.py:635 lms/lms/utils.py:641
|
||||
msgid "{0} mentioned you in a comment in {1}"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:476
|
||||
#: lms/lms/utils.py:458
|
||||
msgid "{0}k"
|
||||
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-10 16:04+0000\n"
|
||||
"PO-Revision-Date: 2025-01-10 16:04+0000\n"
|
||||
"POT-Creation-Date: 2025-01-17 16:04+0000\n"
|
||||
"PO-Revision-Date: 2025-01-17 16:04+0000\n"
|
||||
"Last-Translator: jannat@frappe.io\n"
|
||||
"Language-Team: jannat@frappe.io\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -73,7 +73,7 @@ msgstr ""
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batch.vue:93
|
||||
#: frontend/src/pages/Batch.vue:96
|
||||
msgid "About this batch"
|
||||
msgstr ""
|
||||
|
||||
@@ -210,14 +210,26 @@ msgid "Admin"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a role
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
#: frontend/src/pages/Batches.vue:270 lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:26
|
||||
msgid "All Batches"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:12
|
||||
msgid "All Certified Participants"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/widgets/BreadCrumb.html:3
|
||||
msgid "All Courses"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:51
|
||||
msgid "All Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/quiz/quiz.html:141
|
||||
msgid "All Submissions"
|
||||
msgstr ""
|
||||
@@ -277,7 +289,7 @@ msgstr ""
|
||||
msgid "Amount Field"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:70
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:75
|
||||
msgid "Amount and currency are required for paid batches."
|
||||
msgstr ""
|
||||
|
||||
@@ -351,6 +363,10 @@ msgstr ""
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:259 frontend/src/pages/Batches.vue:277
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the user_category (Check) field in DocType 'LMS Settings'
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Ask User Category during Signup"
|
||||
@@ -379,7 +395,7 @@ msgstr ""
|
||||
msgid "Assessment added successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:80
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:85
|
||||
msgid "Assessment {0} has already been added to this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -471,6 +487,10 @@ msgstr ""
|
||||
msgid "Average Rating"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:38
|
||||
msgid "Average of Feedback Received"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Lesson.vue:96
|
||||
msgid "Back to Course"
|
||||
msgstr ""
|
||||
@@ -491,10 +511,12 @@ msgstr ""
|
||||
msgid "Badge Image"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the batch (Link) field in DocType 'LMS Batch Feedback'
|
||||
#. Label of the batch_name (Link) field in DocType 'LMS Certificate'
|
||||
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
|
||||
#. Label of the batch_name (Link) field in DocType 'LMS Live Class'
|
||||
#: frontend/src/components/Modals/Event.vue:32
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
@@ -576,7 +598,9 @@ msgstr ""
|
||||
msgid "Batch Student"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the batch_title (Data) field in DocType 'LMS Certificate'
|
||||
#. Label of the batch_title (Data) field in DocType 'LMS Certificate Request'
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
msgid "Batch Title"
|
||||
msgstr ""
|
||||
@@ -585,14 +609,15 @@ msgstr ""
|
||||
msgid "Batch Updated"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:41
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:46
|
||||
msgid "Batch end date cannot be before the batch start date"
|
||||
msgstr ""
|
||||
|
||||
#. Group in LMS Course's connections
|
||||
#. Label of the batches (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/pages/Batches.vue:8 lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:60
|
||||
#: frontend/src/pages/Batches.vue:285
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:61
|
||||
msgid "Batches"
|
||||
msgstr ""
|
||||
|
||||
@@ -687,7 +712,8 @@ msgstr ""
|
||||
#. Label of the category (Link) field in DocType 'LMS Batch'
|
||||
#. Label of the category (Data) field in DocType 'LMS Category'
|
||||
#. Label of the category (Link) field in DocType 'LMS Course'
|
||||
#: frontend/src/pages/BatchForm.vue:202 frontend/src/pages/Batches.vue:16
|
||||
#: frontend/src/pages/BatchForm.vue:202 frontend/src/pages/Batches.vue:49
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:29
|
||||
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:17
|
||||
#: frontend/src/pages/JobDetail.vue:102
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
@@ -754,6 +780,7 @@ msgid "Certification Name"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the certified_participants (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:153
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Certified Participants"
|
||||
msgstr ""
|
||||
@@ -1046,7 +1073,7 @@ msgstr ""
|
||||
msgid "Confirmation Email Sent"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:25
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:29
|
||||
msgid "Congratulations on getting certified!"
|
||||
msgstr ""
|
||||
|
||||
@@ -1055,8 +1082,10 @@ msgid "Contact the Administrator to enroll for this course."
|
||||
msgstr ""
|
||||
|
||||
#. Label of the content (Text) field in DocType 'Course Lesson'
|
||||
#. Label of the content (Rating) field in DocType 'LMS Batch Feedback'
|
||||
#: frontend/src/pages/LessonForm.vue:62
|
||||
#: lms/lms/doctype/course_lesson/course_lesson.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "Content"
|
||||
msgstr ""
|
||||
|
||||
@@ -1065,7 +1094,7 @@ msgid "Continue Learning"
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
|
||||
#: frontend/src/pages/Jobs.vue:120
|
||||
#: frontend/src/pages/Jobs.vue:152
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
msgid "Contract"
|
||||
msgstr ""
|
||||
@@ -1131,7 +1160,7 @@ msgstr ""
|
||||
#. Label of a Link in the LMS Workspace
|
||||
#. Label of a shortcut in the LMS Workspace
|
||||
#: frontend/src/components/Modals/BatchCourseModal.vue:20
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:23
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:38
|
||||
#: frontend/src/components/Modals/EvaluationModal.vue:20
|
||||
#: frontend/src/components/Modals/Event.vue:24
|
||||
#: lms/lms/doctype/batch_course/batch_course.json
|
||||
@@ -1218,7 +1247,7 @@ msgstr ""
|
||||
msgid "Course Lesson"
|
||||
msgstr ""
|
||||
|
||||
#: lms/www/lms.py:27
|
||||
#: lms/www/lms.py:28
|
||||
msgid "Course List"
|
||||
msgstr ""
|
||||
|
||||
@@ -1268,7 +1297,7 @@ msgstr ""
|
||||
msgid "Course added to program"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:345
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:350
|
||||
msgid "Course already added to the batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -1280,7 +1309,7 @@ msgstr ""
|
||||
msgid "Course moved successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:59
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:64
|
||||
#: lms/lms/doctype/lms_program/lms_program.py:19
|
||||
msgid "Course {0} has already been added to this batch."
|
||||
msgstr ""
|
||||
@@ -1331,10 +1360,6 @@ msgstr ""
|
||||
msgid "Create LMS Certificate Evaluation"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:110
|
||||
msgid "Create a Batch"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:132 lms/templates/onboarding_header.html:19
|
||||
msgid "Create a Course"
|
||||
msgstr ""
|
||||
@@ -1730,6 +1755,10 @@ msgstr ""
|
||||
msgid "Enroll Now"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:274
|
||||
msgid "Enrolled"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/CourseCard.vue:43
|
||||
#: frontend/src/components/CourseCardOverlay.vue:104
|
||||
#: frontend/src/pages/CourseDetail.vue:33
|
||||
@@ -1740,7 +1769,7 @@ msgstr ""
|
||||
msgid "Enrolled successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:103
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:108
|
||||
msgid "Enrollment Confirmation for the Next Training Batch"
|
||||
msgstr ""
|
||||
|
||||
@@ -1749,7 +1778,7 @@ msgstr ""
|
||||
msgid "Enrollment Count"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1765
|
||||
#: lms/lms/utils.py:1693
|
||||
msgid "Enrollment Failed"
|
||||
msgstr ""
|
||||
|
||||
@@ -1819,7 +1848,7 @@ msgstr ""
|
||||
msgid "Evaluation Request"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:87
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:92
|
||||
msgid "Evaluation end date cannot be less than the batch end date."
|
||||
msgstr ""
|
||||
|
||||
@@ -1834,7 +1863,7 @@ msgstr ""
|
||||
#. Label of the evaluator (Link) field in DocType 'LMS Certificate Evaluation'
|
||||
#. Label of the evaluator (Link) field in DocType 'LMS Certificate Request'
|
||||
#: frontend/src/components/Modals/BatchCourseModal.vue:26
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:28
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:22
|
||||
#: frontend/src/pages/ProfileRoles.vue:22
|
||||
#: lms/lms/doctype/batch_course/batch_course.json
|
||||
#: lms/lms/doctype/course_evaluator/course_evaluator.json
|
||||
@@ -1912,7 +1941,7 @@ msgid "Expiration Date"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:39
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:33
|
||||
#: frontend/src/components/Modals/Event.vue:126
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
msgid "Expiry Date"
|
||||
@@ -1953,6 +1982,12 @@ msgstr ""
|
||||
msgid "Featured"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the feedback (Small Text) field in DocType 'LMS Batch Feedback'
|
||||
#: frontend/src/components/BatchFeedback.vue:29
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Assignment.vue:61
|
||||
msgid "Feel free to make edits to your submission if needed."
|
||||
msgstr ""
|
||||
@@ -1972,7 +2007,7 @@ msgstr ""
|
||||
msgid "File Type"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Jobs.vue:47
|
||||
#: frontend/src/pages/Jobs.vue:33
|
||||
msgid "Find the perfect job for you"
|
||||
msgstr ""
|
||||
|
||||
@@ -2005,7 +2040,7 @@ msgid "Free"
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
|
||||
#: frontend/src/pages/Jobs.vue:121
|
||||
#: frontend/src/pages/Jobs.vue:153
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
msgid "Freelance"
|
||||
msgstr ""
|
||||
@@ -2047,7 +2082,7 @@ msgid "Full Name"
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
|
||||
#: frontend/src/pages/Jobs.vue:118
|
||||
#: frontend/src/pages/Jobs.vue:150
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
msgid "Full Time"
|
||||
msgstr ""
|
||||
@@ -2145,6 +2180,10 @@ msgstr ""
|
||||
msgid "Hello"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:11
|
||||
msgid "Help Us Improve"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/courses_created.html:15
|
||||
msgid "Help others learn something new by creating a course."
|
||||
msgstr ""
|
||||
@@ -2153,10 +2192,6 @@ msgstr ""
|
||||
msgid "Help us improve our course material."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/web_template/courses_enrolled/courses_enrolled.html:18
|
||||
msgid "Here are a few courses we recommend for you to get started with {0}"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/notification/certificate_request_reminder/certificate_request_reminder.html:1
|
||||
#: lms/templates/emails/certificate_request_notification.html:1
|
||||
msgid "Hey {0}"
|
||||
@@ -2358,9 +2393,11 @@ msgid "Instructor Notes"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch'
|
||||
#. Label of the instructors (Rating) field in DocType 'LMS Batch Feedback'
|
||||
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course'
|
||||
#: frontend/src/pages/BatchForm.vue:89 frontend/src/pages/CourseForm.vue:154
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
msgid "Instructors"
|
||||
msgstr ""
|
||||
@@ -2435,7 +2472,7 @@ msgstr ""
|
||||
|
||||
#. Label of the issue_date (Date) field in DocType 'Certification'
|
||||
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:34
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:28
|
||||
#: frontend/src/components/Modals/Event.vue:121
|
||||
#: lms/lms/doctype/certification/certification.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
@@ -2448,6 +2485,7 @@ msgid "Issued On"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProfileAbout.vue:56
|
||||
#: frontend/src/pages/ProfileCertificates.vue:17
|
||||
#: lms/templates/certificates_section.html:11
|
||||
msgid "Issued on"
|
||||
msgstr ""
|
||||
@@ -2485,7 +2523,7 @@ msgstr ""
|
||||
msgid "Job Details"
|
||||
msgstr ""
|
||||
|
||||
#: lms/www/lms.py:108
|
||||
#: lms/www/lms.py:109
|
||||
msgid "Job Openings"
|
||||
msgstr ""
|
||||
|
||||
@@ -2564,6 +2602,11 @@ msgstr ""
|
||||
msgid "LMS Batch"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "LMS Batch Feedback"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
||||
msgid "LMS Batch Old"
|
||||
@@ -2723,6 +2766,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_assignment/lms_assignment.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
#: lms/lms/doctype/lms_course_progress/lms_course_progress.json
|
||||
@@ -2868,16 +2912,13 @@ msgid "LiveCode URL"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Members.vue:106
|
||||
#: frontend/src/pages/Assignments.vue:71
|
||||
#: frontend/src/pages/Assignments.vue:71 frontend/src/pages/Batches.vue:88
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:71
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:39
|
||||
#: frontend/src/pages/Quizzes.vue:51
|
||||
msgid "Load More"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:40
|
||||
msgid "Loading Batches..."
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Auto Recording' (Select) field in DocType 'LMS Live Class'
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
msgid "Local"
|
||||
@@ -2900,7 +2941,7 @@ msgstr ""
|
||||
|
||||
#: frontend/src/components/AssignmentBlock.vue:13
|
||||
#: frontend/src/components/NoPermission.vue:28
|
||||
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:175
|
||||
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:178
|
||||
#: frontend/src/pages/Lesson.vue:24
|
||||
msgid "Login"
|
||||
msgstr ""
|
||||
@@ -3005,6 +3046,7 @@ msgstr ""
|
||||
#. Label of the member (Link) field in DocType 'Exercise Submission'
|
||||
#. Label of the member (Link) field in DocType 'LMS Assignment Submission'
|
||||
#. Label of the member (Link) field in DocType 'LMS Badge Assignment'
|
||||
#. Label of the member (Link) field in DocType 'LMS Batch Feedback'
|
||||
#. Label of the member (Link) field in DocType 'LMS Certificate'
|
||||
#. Label of the member (Link) field in DocType 'LMS Certificate Evaluation'
|
||||
#. Label of the member (Link) field in DocType 'LMS Certificate Request'
|
||||
@@ -3022,6 +3064,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/exercise_submission/exercise_submission.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.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
|
||||
@@ -3047,8 +3090,15 @@ msgstr ""
|
||||
msgid "Member Email"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the member_image (Attach Image) field in DocType 'LMS Batch
|
||||
#. Feedback'
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "Member Image"
|
||||
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 Batch Feedback'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Certificate'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Certificate
|
||||
#. Evaluation'
|
||||
@@ -3059,6 +3109,7 @@ msgstr ""
|
||||
#. 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_batch_feedback/lms_batch_feedback.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
|
||||
@@ -3221,7 +3272,7 @@ msgid "My calendar"
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
||||
#: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:30
|
||||
#: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:17
|
||||
#: frontend/src/pages/Courses.vue:45 frontend/src/pages/Programs.vue:14
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "New"
|
||||
@@ -3235,15 +3286,15 @@ msgstr ""
|
||||
msgid "New Assignment Submission"
|
||||
msgstr ""
|
||||
|
||||
#: lms/public/js/common_functions.js:255 lms/www/lms.py:86
|
||||
#: lms/public/js/common_functions.js:255 lms/www/lms.py:87
|
||||
msgid "New Batch"
|
||||
msgstr ""
|
||||
|
||||
#: lms/www/lms.py:37
|
||||
#: lms/www/lms.py:38
|
||||
msgid "New Course"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Jobs.vue:39
|
||||
#: frontend/src/pages/Jobs.vue:23
|
||||
msgid "New Job"
|
||||
msgstr ""
|
||||
|
||||
@@ -3276,11 +3327,11 @@ msgstr ""
|
||||
msgid "New Sign Up"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:623
|
||||
#: lms/lms/utils.py:605
|
||||
msgid "New comment in batch {0}"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:616
|
||||
#: lms/lms/utils.py:598
|
||||
msgid "New reply on the topic {0} in course {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -3322,7 +3373,7 @@ msgstr ""
|
||||
msgid "No assignments found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:125
|
||||
#: frontend/src/pages/Batches.vue:73
|
||||
msgid "No batches found"
|
||||
msgstr ""
|
||||
|
||||
@@ -3346,11 +3397,15 @@ msgstr ""
|
||||
msgid "No courses under review"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:101
|
||||
msgid "No feedback received yet."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProfileAbout.vue:12
|
||||
msgid "No introduction"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Jobs.vue:63
|
||||
#: frontend/src/pages/Jobs.vue:77
|
||||
msgid "No jobs posted"
|
||||
msgstr ""
|
||||
|
||||
@@ -3358,6 +3413,10 @@ msgstr ""
|
||||
msgid "No live classes scheduled"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:81
|
||||
msgid "No participants found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:91
|
||||
msgid "No programs found"
|
||||
msgstr ""
|
||||
@@ -3382,10 +3441,6 @@ msgstr ""
|
||||
msgid "No {0}"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:84
|
||||
msgid "No {0} batches"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:107
|
||||
msgid "No {0} courses"
|
||||
msgstr ""
|
||||
@@ -3418,7 +3473,7 @@ msgstr ""
|
||||
msgid "Not Graded"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:143
|
||||
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:146
|
||||
msgid "Not Permitted"
|
||||
msgstr ""
|
||||
|
||||
@@ -3612,7 +3667,7 @@ msgid "Pan Number"
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
|
||||
#: frontend/src/pages/Jobs.vue:119
|
||||
#: frontend/src/pages/Jobs.vue:151
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
msgid "Part Time"
|
||||
msgstr ""
|
||||
@@ -3763,11 +3818,11 @@ msgstr ""
|
||||
msgid "Please click on the following button to set your new password"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1887 lms/lms/utils.py:1891
|
||||
#: lms/lms/utils.py:1815 lms/lms/utils.py:1819
|
||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:256
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:261
|
||||
msgid "Please enable Zoom Settings to use this feature."
|
||||
msgstr ""
|
||||
|
||||
@@ -3784,7 +3839,7 @@ msgid "Please enter a title."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:40
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:122
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:125
|
||||
msgid "Please enter a valid URL."
|
||||
msgstr ""
|
||||
|
||||
@@ -3792,7 +3847,7 @@ msgstr ""
|
||||
msgid "Please enter a valid time in the format HH:mm."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:116
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:119
|
||||
msgid "Please enter the URL for assignment submission."
|
||||
msgstr ""
|
||||
|
||||
@@ -3800,7 +3855,7 @@ msgstr ""
|
||||
msgid "Please enter your answer"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:66
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:71
|
||||
msgid "Please install the Payments app to create a paid batches."
|
||||
msgstr ""
|
||||
|
||||
@@ -3820,7 +3875,7 @@ msgstr ""
|
||||
msgid "Please login to access the quiz."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/NoPermission.vue:25 frontend/src/pages/Batch.vue:154
|
||||
#: frontend/src/components/NoPermission.vue:25 frontend/src/pages/Batch.vue:157
|
||||
msgid "Please login to access this page."
|
||||
msgstr ""
|
||||
|
||||
@@ -3861,7 +3916,7 @@ msgstr ""
|
||||
msgid "Please upload a SCORM package"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:119
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:122
|
||||
msgid "Please upload the assignment file."
|
||||
msgstr ""
|
||||
|
||||
@@ -3895,7 +3950,7 @@ msgid "Possible Answer 4"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/DiscussionReplies.vue:52
|
||||
#: frontend/src/components/DiscussionReplies.vue:86
|
||||
#: frontend/src/components/DiscussionReplies.vue:87
|
||||
msgid "Post"
|
||||
msgstr ""
|
||||
|
||||
@@ -4324,19 +4379,19 @@ msgstr ""
|
||||
msgid "Route"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:199
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:204
|
||||
msgid "Row #{0} Date cannot be outside the batch duration."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:194
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:199
|
||||
msgid "Row #{0} End time cannot be outside the batch duration."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:176
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:181
|
||||
msgid "Row #{0} Start time cannot be greater than or equal to end time."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:185
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:190
|
||||
msgid "Row #{0} Start time cannot be outside the batch duration."
|
||||
msgstr ""
|
||||
|
||||
@@ -4417,10 +4472,18 @@ msgstr ""
|
||||
msgid "Score Out Of"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Members.vue:15
|
||||
#: frontend/src/components/Members.vue:15 frontend/src/pages/Jobs.vue:38
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:17
|
||||
msgid "Search by Name"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:39
|
||||
msgid "Search by Title"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Assignments.vue:25
|
||||
msgid "Search by title"
|
||||
msgstr ""
|
||||
@@ -4717,7 +4780,7 @@ msgstr ""
|
||||
#. Label of the statistics (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/components/BatchStudents.vue:5
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:133
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:134
|
||||
msgid "Statistics"
|
||||
msgstr ""
|
||||
|
||||
@@ -4782,7 +4845,7 @@ msgstr ""
|
||||
msgid "Student Reviews"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:48
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:53
|
||||
msgid "Student {0} has already been added to this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -4830,6 +4893,7 @@ msgstr ""
|
||||
msgid "Submission by"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:14
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:9
|
||||
#: frontend/src/components/Modals/BatchCourseModal.vue:9
|
||||
#: frontend/src/components/Modals/EvaluationModal.vue:9
|
||||
@@ -4887,7 +4951,7 @@ msgstr ""
|
||||
msgid "Sunday"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:964
|
||||
#: lms/lms/api.py:983
|
||||
msgid "Suspicious pattern found in {0}: {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -4913,6 +4977,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
||||
#: lms/lms/doctype/lms_category/lms_category.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
@@ -4995,6 +5060,10 @@ msgstr ""
|
||||
msgid "Text"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:7
|
||||
msgid "Thank you for providing your feedback!"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/emails/lms_course_interest.html:17
|
||||
#: lms/templates/emails/lms_invite_request_approved.html:15
|
||||
#: lms/templates/emails/mentor_request_creation_email.html:7
|
||||
@@ -5002,7 +5071,7 @@ msgstr ""
|
||||
msgid "Thanks and Regards"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1794
|
||||
#: lms/lms/utils.py:1722
|
||||
msgid "The batch is full. Please contact the Administrator."
|
||||
msgstr ""
|
||||
|
||||
@@ -5026,8 +5095,8 @@ msgstr ""
|
||||
msgid "The status of your application has changed."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:129
|
||||
msgid "There are no batches available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
#: frontend/src/pages/Batches.vue:77
|
||||
msgid "There are no batches matching the criteria. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/CreateOutline.vue:12
|
||||
@@ -5038,11 +5107,15 @@ 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/CertifiedParticipants.vue:84
|
||||
msgid "There are no participants matching this criteria."
|
||||
msgstr ""
|
||||
|
||||
#: 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 ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:146
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:151
|
||||
msgid "There are no seats available in this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -5058,7 +5131,7 @@ msgstr ""
|
||||
msgid "There are no {0} on this site."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:82
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:85
|
||||
msgid "There has been an update on your submission for assignment {0}"
|
||||
msgstr ""
|
||||
|
||||
@@ -5089,7 +5162,7 @@ msgstr ""
|
||||
msgid "This course has:"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1645
|
||||
#: lms/lms/utils.py:1573
|
||||
msgid "This course is free."
|
||||
msgstr ""
|
||||
|
||||
@@ -5233,7 +5306,7 @@ msgstr ""
|
||||
msgid "To Date"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1656
|
||||
#: lms/lms/utils.py:1584
|
||||
msgid "To join this batch, please contact the Administrator."
|
||||
msgstr ""
|
||||
|
||||
@@ -5289,7 +5362,7 @@ msgstr ""
|
||||
#: frontend/src/components/Modals/Question.vue:54
|
||||
#: frontend/src/pages/AssignmentForm.vue:39
|
||||
#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:157
|
||||
#: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:16
|
||||
#: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:55
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
#: lms/lms/doctype/lms_assignment/lms_assignment.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
@@ -5335,6 +5408,10 @@ msgstr ""
|
||||
msgid "Unlisted"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:262 frontend/src/pages/Batches.vue:278
|
||||
msgid "Unpublished"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/EditCoverImage.vue:60
|
||||
#: frontend/src/components/UnsplashImageBrowser.vue:54
|
||||
msgid "Unsplash"
|
||||
@@ -5352,12 +5429,13 @@ msgstr ""
|
||||
|
||||
#. Option for the 'Status' (Select) field in DocType 'Cohort'
|
||||
#. Label of the upcoming (Check) field in DocType 'LMS Course'
|
||||
#: frontend/src/pages/Batches.vue:258 frontend/src/pages/Batches.vue:276
|
||||
#: frontend/src/pages/CourseForm.vue:184 lms/lms/doctype/cohort/cohort.json
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
msgid "Upcoming"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batch.vue:166
|
||||
#: frontend/src/pages/Batch.vue:169
|
||||
msgid "Upcoming Batches"
|
||||
msgstr ""
|
||||
|
||||
@@ -5419,7 +5497,7 @@ msgstr ""
|
||||
msgid "User Skill"
|
||||
msgstr ""
|
||||
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.py:37
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.py:40
|
||||
msgid "User {0} has reported the job post {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -5444,6 +5522,11 @@ msgstr ""
|
||||
msgid "Valid email and name required"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the value (Rating) field in DocType 'LMS Batch Feedback'
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "Value"
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "Value Change"
|
||||
@@ -5567,7 +5650,7 @@ msgstr ""
|
||||
msgid "You are already enrolled for this course."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batch.vue:148
|
||||
#: frontend/src/pages/Batch.vue:151
|
||||
msgid "You are not a member of this batch. Please checkout our upcoming batches."
|
||||
msgstr ""
|
||||
|
||||
@@ -5604,10 +5687,6 @@ msgstr ""
|
||||
msgid "You can find their resume attached to this email."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:113
|
||||
msgid "You can link courses and assessments to it."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:115
|
||||
msgid "You cannot schedule evaluations after {0}."
|
||||
msgstr ""
|
||||
@@ -5669,10 +5748,6 @@ msgstr ""
|
||||
msgid "You have opted to be notified for this course. You will receive an email when the course becomes available."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/web_template/courses_enrolled/courses_enrolled.html:17
|
||||
msgid "You haven't enrolled for any courses"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/CourseCardOverlay.vue:146
|
||||
msgid "You need to login first to enroll for this course"
|
||||
msgstr ""
|
||||
@@ -5767,10 +5842,6 @@ msgstr ""
|
||||
msgid "in the last"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProfileCertificates.vue:17
|
||||
msgid "issued on"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/signup-form.html:12
|
||||
msgid "jane@example.com"
|
||||
msgstr ""
|
||||
@@ -5791,8 +5862,8 @@ msgstr ""
|
||||
msgid "out of"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/JobCard.vue:37
|
||||
msgid "posted by"
|
||||
#: frontend/src/components/JobCard.vue:30
|
||||
msgid "posted"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:386
|
||||
@@ -5815,7 +5886,7 @@ msgstr ""
|
||||
msgid "you can"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:761 lms/lms/api.py:769
|
||||
#: lms/lms/api.py:780 lms/lms/api.py:788
|
||||
msgid "{0} Settings not found"
|
||||
msgstr ""
|
||||
|
||||
@@ -5843,7 +5914,11 @@ msgstr ""
|
||||
msgid "{0} is already a {1} of the course {2}"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:59
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:91
|
||||
msgid "{0} is already certified for the batch {1}"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:72
|
||||
msgid "{0} is already certified for the course {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -5851,7 +5926,7 @@ msgstr ""
|
||||
msgid "{0} is your evaluator"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:700
|
||||
#: lms/lms/utils.py:682
|
||||
msgid "{0} mentioned you in a comment"
|
||||
msgstr ""
|
||||
|
||||
@@ -5859,11 +5934,11 @@ msgstr ""
|
||||
msgid "{0} mentioned you in a comment in your batch."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:653 lms/lms/utils.py:659
|
||||
#: lms/lms/utils.py:635 lms/lms/utils.py:641
|
||||
msgid "{0} mentioned you in a comment in {1}"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:476
|
||||
#: lms/lms/utils.py:458
|
||||
msgid "{0}k"
|
||||
msgstr ""
|
||||
|
||||
|
||||
275
lms/locale/pl.po
275
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-10 16:04+0000\n"
|
||||
"PO-Revision-Date: 2025-01-13 06:31\n"
|
||||
"POT-Creation-Date: 2025-01-17 16:04+0000\n"
|
||||
"PO-Revision-Date: 2025-01-20 11:13\n"
|
||||
"Last-Translator: jannat@frappe.io\n"
|
||||
"Language-Team: Polish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -75,7 +75,7 @@ msgstr ""
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batch.vue:93
|
||||
#: frontend/src/pages/Batch.vue:96
|
||||
msgid "About this batch"
|
||||
msgstr ""
|
||||
|
||||
@@ -212,14 +212,26 @@ msgid "Admin"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a role
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
#: frontend/src/pages/Batches.vue:270 lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:26
|
||||
msgid "All Batches"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:12
|
||||
msgid "All Certified Participants"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/widgets/BreadCrumb.html:3
|
||||
msgid "All Courses"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:51
|
||||
msgid "All Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/quiz/quiz.html:141
|
||||
msgid "All Submissions"
|
||||
msgstr ""
|
||||
@@ -279,7 +291,7 @@ msgstr ""
|
||||
msgid "Amount Field"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:70
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:75
|
||||
msgid "Amount and currency are required for paid batches."
|
||||
msgstr ""
|
||||
|
||||
@@ -353,6 +365,10 @@ msgstr ""
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:259 frontend/src/pages/Batches.vue:277
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the user_category (Check) field in DocType 'LMS Settings'
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Ask User Category during Signup"
|
||||
@@ -381,7 +397,7 @@ msgstr ""
|
||||
msgid "Assessment added successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:80
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:85
|
||||
msgid "Assessment {0} has already been added to this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -473,6 +489,10 @@ msgstr ""
|
||||
msgid "Average Rating"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:38
|
||||
msgid "Average of Feedback Received"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Lesson.vue:96
|
||||
msgid "Back to Course"
|
||||
msgstr ""
|
||||
@@ -493,10 +513,12 @@ msgstr ""
|
||||
msgid "Badge Image"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the batch (Link) field in DocType 'LMS Batch Feedback'
|
||||
#. Label of the batch_name (Link) field in DocType 'LMS Certificate'
|
||||
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
|
||||
#. Label of the batch_name (Link) field in DocType 'LMS Live Class'
|
||||
#: frontend/src/components/Modals/Event.vue:32
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
@@ -578,7 +600,9 @@ msgstr ""
|
||||
msgid "Batch Student"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the batch_title (Data) field in DocType 'LMS Certificate'
|
||||
#. Label of the batch_title (Data) field in DocType 'LMS Certificate Request'
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
msgid "Batch Title"
|
||||
msgstr ""
|
||||
@@ -587,14 +611,15 @@ msgstr ""
|
||||
msgid "Batch Updated"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:41
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:46
|
||||
msgid "Batch end date cannot be before the batch start date"
|
||||
msgstr ""
|
||||
|
||||
#. Group in LMS Course's connections
|
||||
#. Label of the batches (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/pages/Batches.vue:8 lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:60
|
||||
#: frontend/src/pages/Batches.vue:285
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:61
|
||||
msgid "Batches"
|
||||
msgstr ""
|
||||
|
||||
@@ -689,7 +714,8 @@ msgstr ""
|
||||
#. Label of the category (Link) field in DocType 'LMS Batch'
|
||||
#. Label of the category (Data) field in DocType 'LMS Category'
|
||||
#. Label of the category (Link) field in DocType 'LMS Course'
|
||||
#: frontend/src/pages/BatchForm.vue:202 frontend/src/pages/Batches.vue:16
|
||||
#: frontend/src/pages/BatchForm.vue:202 frontend/src/pages/Batches.vue:49
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:29
|
||||
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:17
|
||||
#: frontend/src/pages/JobDetail.vue:102
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
@@ -756,6 +782,7 @@ msgid "Certification Name"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the certified_participants (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:153
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Certified Participants"
|
||||
msgstr ""
|
||||
@@ -1048,7 +1075,7 @@ msgstr ""
|
||||
msgid "Confirmation Email Sent"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:25
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:29
|
||||
msgid "Congratulations on getting certified!"
|
||||
msgstr ""
|
||||
|
||||
@@ -1057,8 +1084,10 @@ msgid "Contact the Administrator to enroll for this course."
|
||||
msgstr ""
|
||||
|
||||
#. Label of the content (Text) field in DocType 'Course Lesson'
|
||||
#. Label of the content (Rating) field in DocType 'LMS Batch Feedback'
|
||||
#: frontend/src/pages/LessonForm.vue:62
|
||||
#: lms/lms/doctype/course_lesson/course_lesson.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "Content"
|
||||
msgstr ""
|
||||
|
||||
@@ -1067,7 +1096,7 @@ msgid "Continue Learning"
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
|
||||
#: frontend/src/pages/Jobs.vue:120
|
||||
#: frontend/src/pages/Jobs.vue:152
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
msgid "Contract"
|
||||
msgstr ""
|
||||
@@ -1133,7 +1162,7 @@ msgstr ""
|
||||
#. Label of a Link in the LMS Workspace
|
||||
#. Label of a shortcut in the LMS Workspace
|
||||
#: frontend/src/components/Modals/BatchCourseModal.vue:20
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:23
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:38
|
||||
#: frontend/src/components/Modals/EvaluationModal.vue:20
|
||||
#: frontend/src/components/Modals/Event.vue:24
|
||||
#: lms/lms/doctype/batch_course/batch_course.json
|
||||
@@ -1220,7 +1249,7 @@ msgstr ""
|
||||
msgid "Course Lesson"
|
||||
msgstr ""
|
||||
|
||||
#: lms/www/lms.py:27
|
||||
#: lms/www/lms.py:28
|
||||
msgid "Course List"
|
||||
msgstr ""
|
||||
|
||||
@@ -1270,7 +1299,7 @@ msgstr ""
|
||||
msgid "Course added to program"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:345
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:350
|
||||
msgid "Course already added to the batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -1282,7 +1311,7 @@ msgstr ""
|
||||
msgid "Course moved successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:59
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:64
|
||||
#: lms/lms/doctype/lms_program/lms_program.py:19
|
||||
msgid "Course {0} has already been added to this batch."
|
||||
msgstr ""
|
||||
@@ -1333,10 +1362,6 @@ msgstr ""
|
||||
msgid "Create LMS Certificate Evaluation"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:110
|
||||
msgid "Create a Batch"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:132 lms/templates/onboarding_header.html:19
|
||||
msgid "Create a Course"
|
||||
msgstr ""
|
||||
@@ -1732,6 +1757,10 @@ msgstr ""
|
||||
msgid "Enroll Now"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:274
|
||||
msgid "Enrolled"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/CourseCard.vue:43
|
||||
#: frontend/src/components/CourseCardOverlay.vue:104
|
||||
#: frontend/src/pages/CourseDetail.vue:33
|
||||
@@ -1742,7 +1771,7 @@ msgstr ""
|
||||
msgid "Enrolled successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:103
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:108
|
||||
msgid "Enrollment Confirmation for the Next Training Batch"
|
||||
msgstr ""
|
||||
|
||||
@@ -1751,7 +1780,7 @@ msgstr ""
|
||||
msgid "Enrollment Count"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1765
|
||||
#: lms/lms/utils.py:1693
|
||||
msgid "Enrollment Failed"
|
||||
msgstr ""
|
||||
|
||||
@@ -1821,7 +1850,7 @@ msgstr ""
|
||||
msgid "Evaluation Request"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:87
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:92
|
||||
msgid "Evaluation end date cannot be less than the batch end date."
|
||||
msgstr ""
|
||||
|
||||
@@ -1836,7 +1865,7 @@ msgstr ""
|
||||
#. Label of the evaluator (Link) field in DocType 'LMS Certificate Evaluation'
|
||||
#. Label of the evaluator (Link) field in DocType 'LMS Certificate Request'
|
||||
#: frontend/src/components/Modals/BatchCourseModal.vue:26
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:28
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:22
|
||||
#: frontend/src/pages/ProfileRoles.vue:22
|
||||
#: lms/lms/doctype/batch_course/batch_course.json
|
||||
#: lms/lms/doctype/course_evaluator/course_evaluator.json
|
||||
@@ -1914,7 +1943,7 @@ msgid "Expiration Date"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:39
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:33
|
||||
#: frontend/src/components/Modals/Event.vue:126
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
msgid "Expiry Date"
|
||||
@@ -1955,6 +1984,12 @@ msgstr ""
|
||||
msgid "Featured"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the feedback (Small Text) field in DocType 'LMS Batch Feedback'
|
||||
#: frontend/src/components/BatchFeedback.vue:29
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Assignment.vue:61
|
||||
msgid "Feel free to make edits to your submission if needed."
|
||||
msgstr ""
|
||||
@@ -1974,7 +2009,7 @@ msgstr ""
|
||||
msgid "File Type"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Jobs.vue:47
|
||||
#: frontend/src/pages/Jobs.vue:33
|
||||
msgid "Find the perfect job for you"
|
||||
msgstr ""
|
||||
|
||||
@@ -2007,7 +2042,7 @@ msgid "Free"
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
|
||||
#: frontend/src/pages/Jobs.vue:121
|
||||
#: frontend/src/pages/Jobs.vue:153
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
msgid "Freelance"
|
||||
msgstr ""
|
||||
@@ -2049,7 +2084,7 @@ msgid "Full Name"
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
|
||||
#: frontend/src/pages/Jobs.vue:118
|
||||
#: frontend/src/pages/Jobs.vue:150
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
msgid "Full Time"
|
||||
msgstr ""
|
||||
@@ -2147,6 +2182,10 @@ msgstr ""
|
||||
msgid "Hello"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:11
|
||||
msgid "Help Us Improve"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/courses_created.html:15
|
||||
msgid "Help others learn something new by creating a course."
|
||||
msgstr ""
|
||||
@@ -2155,10 +2194,6 @@ msgstr ""
|
||||
msgid "Help us improve our course material."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/web_template/courses_enrolled/courses_enrolled.html:18
|
||||
msgid "Here are a few courses we recommend for you to get started with {0}"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/notification/certificate_request_reminder/certificate_request_reminder.html:1
|
||||
#: lms/templates/emails/certificate_request_notification.html:1
|
||||
msgid "Hey {0}"
|
||||
@@ -2360,9 +2395,11 @@ msgid "Instructor Notes"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch'
|
||||
#. Label of the instructors (Rating) field in DocType 'LMS Batch Feedback'
|
||||
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course'
|
||||
#: frontend/src/pages/BatchForm.vue:89 frontend/src/pages/CourseForm.vue:154
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
msgid "Instructors"
|
||||
msgstr ""
|
||||
@@ -2437,7 +2474,7 @@ msgstr ""
|
||||
|
||||
#. Label of the issue_date (Date) field in DocType 'Certification'
|
||||
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:34
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:28
|
||||
#: frontend/src/components/Modals/Event.vue:121
|
||||
#: lms/lms/doctype/certification/certification.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
@@ -2450,6 +2487,7 @@ msgid "Issued On"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProfileAbout.vue:56
|
||||
#: frontend/src/pages/ProfileCertificates.vue:17
|
||||
#: lms/templates/certificates_section.html:11
|
||||
msgid "Issued on"
|
||||
msgstr ""
|
||||
@@ -2487,7 +2525,7 @@ msgstr ""
|
||||
msgid "Job Details"
|
||||
msgstr ""
|
||||
|
||||
#: lms/www/lms.py:108
|
||||
#: lms/www/lms.py:109
|
||||
msgid "Job Openings"
|
||||
msgstr ""
|
||||
|
||||
@@ -2566,6 +2604,11 @@ msgstr ""
|
||||
msgid "LMS Batch"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "LMS Batch Feedback"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
||||
msgid "LMS Batch Old"
|
||||
@@ -2725,6 +2768,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_assignment/lms_assignment.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
#: lms/lms/doctype/lms_course_progress/lms_course_progress.json
|
||||
@@ -2870,16 +2914,13 @@ msgid "LiveCode URL"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Members.vue:106
|
||||
#: frontend/src/pages/Assignments.vue:71
|
||||
#: frontend/src/pages/Assignments.vue:71 frontend/src/pages/Batches.vue:88
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:71
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:39
|
||||
#: frontend/src/pages/Quizzes.vue:51
|
||||
msgid "Load More"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:40
|
||||
msgid "Loading Batches..."
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Auto Recording' (Select) field in DocType 'LMS Live Class'
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
msgid "Local"
|
||||
@@ -2902,7 +2943,7 @@ msgstr ""
|
||||
|
||||
#: frontend/src/components/AssignmentBlock.vue:13
|
||||
#: frontend/src/components/NoPermission.vue:28
|
||||
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:175
|
||||
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:178
|
||||
#: frontend/src/pages/Lesson.vue:24
|
||||
msgid "Login"
|
||||
msgstr ""
|
||||
@@ -3007,6 +3048,7 @@ msgstr "Średni:"
|
||||
#. Label of the member (Link) field in DocType 'Exercise Submission'
|
||||
#. Label of the member (Link) field in DocType 'LMS Assignment Submission'
|
||||
#. Label of the member (Link) field in DocType 'LMS Badge Assignment'
|
||||
#. Label of the member (Link) field in DocType 'LMS Batch Feedback'
|
||||
#. Label of the member (Link) field in DocType 'LMS Certificate'
|
||||
#. Label of the member (Link) field in DocType 'LMS Certificate Evaluation'
|
||||
#. Label of the member (Link) field in DocType 'LMS Certificate Request'
|
||||
@@ -3024,6 +3066,7 @@ msgstr "Średni:"
|
||||
#: lms/lms/doctype/exercise_submission/exercise_submission.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.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
|
||||
@@ -3049,8 +3092,15 @@ msgstr ""
|
||||
msgid "Member Email"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the member_image (Attach Image) field in DocType 'LMS Batch
|
||||
#. Feedback'
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "Member Image"
|
||||
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 Batch Feedback'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Certificate'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Certificate
|
||||
#. Evaluation'
|
||||
@@ -3061,6 +3111,7 @@ msgstr ""
|
||||
#. 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_batch_feedback/lms_batch_feedback.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
|
||||
@@ -3223,7 +3274,7 @@ msgid "My calendar"
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
||||
#: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:30
|
||||
#: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:17
|
||||
#: frontend/src/pages/Courses.vue:45 frontend/src/pages/Programs.vue:14
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "New"
|
||||
@@ -3237,15 +3288,15 @@ msgstr ""
|
||||
msgid "New Assignment Submission"
|
||||
msgstr ""
|
||||
|
||||
#: lms/public/js/common_functions.js:255 lms/www/lms.py:86
|
||||
#: lms/public/js/common_functions.js:255 lms/www/lms.py:87
|
||||
msgid "New Batch"
|
||||
msgstr ""
|
||||
|
||||
#: lms/www/lms.py:37
|
||||
#: lms/www/lms.py:38
|
||||
msgid "New Course"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Jobs.vue:39
|
||||
#: frontend/src/pages/Jobs.vue:23
|
||||
msgid "New Job"
|
||||
msgstr ""
|
||||
|
||||
@@ -3278,11 +3329,11 @@ msgstr ""
|
||||
msgid "New Sign Up"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:623
|
||||
#: lms/lms/utils.py:605
|
||||
msgid "New comment in batch {0}"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:616
|
||||
#: lms/lms/utils.py:598
|
||||
msgid "New reply on the topic {0} in course {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -3324,7 +3375,7 @@ msgstr ""
|
||||
msgid "No assignments found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:125
|
||||
#: frontend/src/pages/Batches.vue:73
|
||||
msgid "No batches found"
|
||||
msgstr ""
|
||||
|
||||
@@ -3348,11 +3399,15 @@ msgstr ""
|
||||
msgid "No courses under review"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:101
|
||||
msgid "No feedback received yet."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProfileAbout.vue:12
|
||||
msgid "No introduction"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Jobs.vue:63
|
||||
#: frontend/src/pages/Jobs.vue:77
|
||||
msgid "No jobs posted"
|
||||
msgstr ""
|
||||
|
||||
@@ -3360,6 +3415,10 @@ msgstr ""
|
||||
msgid "No live classes scheduled"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:81
|
||||
msgid "No participants found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:91
|
||||
msgid "No programs found"
|
||||
msgstr ""
|
||||
@@ -3384,10 +3443,6 @@ msgstr ""
|
||||
msgid "No {0}"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:84
|
||||
msgid "No {0} batches"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:107
|
||||
msgid "No {0} courses"
|
||||
msgstr ""
|
||||
@@ -3420,7 +3475,7 @@ msgstr ""
|
||||
msgid "Not Graded"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:143
|
||||
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:146
|
||||
msgid "Not Permitted"
|
||||
msgstr ""
|
||||
|
||||
@@ -3614,7 +3669,7 @@ msgid "Pan Number"
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
|
||||
#: frontend/src/pages/Jobs.vue:119
|
||||
#: frontend/src/pages/Jobs.vue:151
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
msgid "Part Time"
|
||||
msgstr ""
|
||||
@@ -3765,11 +3820,11 @@ msgstr ""
|
||||
msgid "Please click on the following button to set your new password"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1887 lms/lms/utils.py:1891
|
||||
#: lms/lms/utils.py:1815 lms/lms/utils.py:1819
|
||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:256
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:261
|
||||
msgid "Please enable Zoom Settings to use this feature."
|
||||
msgstr ""
|
||||
|
||||
@@ -3786,7 +3841,7 @@ msgid "Please enter a title."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:40
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:122
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:125
|
||||
msgid "Please enter a valid URL."
|
||||
msgstr ""
|
||||
|
||||
@@ -3794,7 +3849,7 @@ msgstr ""
|
||||
msgid "Please enter a valid time in the format HH:mm."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:116
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:119
|
||||
msgid "Please enter the URL for assignment submission."
|
||||
msgstr ""
|
||||
|
||||
@@ -3802,7 +3857,7 @@ msgstr ""
|
||||
msgid "Please enter your answer"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:66
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:71
|
||||
msgid "Please install the Payments app to create a paid batches."
|
||||
msgstr ""
|
||||
|
||||
@@ -3822,7 +3877,7 @@ msgstr ""
|
||||
msgid "Please login to access the quiz."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/NoPermission.vue:25 frontend/src/pages/Batch.vue:154
|
||||
#: frontend/src/components/NoPermission.vue:25 frontend/src/pages/Batch.vue:157
|
||||
msgid "Please login to access this page."
|
||||
msgstr ""
|
||||
|
||||
@@ -3863,7 +3918,7 @@ msgstr ""
|
||||
msgid "Please upload a SCORM package"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:119
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:122
|
||||
msgid "Please upload the assignment file."
|
||||
msgstr ""
|
||||
|
||||
@@ -3897,7 +3952,7 @@ msgid "Possible Answer 4"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/DiscussionReplies.vue:52
|
||||
#: frontend/src/components/DiscussionReplies.vue:86
|
||||
#: frontend/src/components/DiscussionReplies.vue:87
|
||||
msgid "Post"
|
||||
msgstr ""
|
||||
|
||||
@@ -4326,19 +4381,19 @@ msgstr ""
|
||||
msgid "Route"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:199
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:204
|
||||
msgid "Row #{0} Date cannot be outside the batch duration."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:194
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:199
|
||||
msgid "Row #{0} End time cannot be outside the batch duration."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:176
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:181
|
||||
msgid "Row #{0} Start time cannot be greater than or equal to end time."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:185
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:190
|
||||
msgid "Row #{0} Start time cannot be outside the batch duration."
|
||||
msgstr ""
|
||||
|
||||
@@ -4419,10 +4474,18 @@ msgstr ""
|
||||
msgid "Score Out Of"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Members.vue:15
|
||||
#: frontend/src/components/Members.vue:15 frontend/src/pages/Jobs.vue:38
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:17
|
||||
msgid "Search by Name"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:39
|
||||
msgid "Search by Title"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Assignments.vue:25
|
||||
msgid "Search by title"
|
||||
msgstr ""
|
||||
@@ -4719,7 +4782,7 @@ msgstr ""
|
||||
#. Label of the statistics (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/components/BatchStudents.vue:5
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:133
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:134
|
||||
msgid "Statistics"
|
||||
msgstr ""
|
||||
|
||||
@@ -4784,7 +4847,7 @@ msgstr ""
|
||||
msgid "Student Reviews"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:48
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:53
|
||||
msgid "Student {0} has already been added to this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -4832,6 +4895,7 @@ msgstr ""
|
||||
msgid "Submission by"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:14
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:9
|
||||
#: frontend/src/components/Modals/BatchCourseModal.vue:9
|
||||
#: frontend/src/components/Modals/EvaluationModal.vue:9
|
||||
@@ -4889,7 +4953,7 @@ msgstr "Podsumowanie"
|
||||
msgid "Sunday"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:964
|
||||
#: lms/lms/api.py:983
|
||||
msgid "Suspicious pattern found in {0}: {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -4915,6 +4979,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
||||
#: lms/lms/doctype/lms_category/lms_category.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
@@ -4997,6 +5062,10 @@ msgstr ""
|
||||
msgid "Text"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:7
|
||||
msgid "Thank you for providing your feedback!"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/emails/lms_course_interest.html:17
|
||||
#: lms/templates/emails/lms_invite_request_approved.html:15
|
||||
#: lms/templates/emails/mentor_request_creation_email.html:7
|
||||
@@ -5004,7 +5073,7 @@ msgstr ""
|
||||
msgid "Thanks and Regards"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1794
|
||||
#: lms/lms/utils.py:1722
|
||||
msgid "The batch is full. Please contact the Administrator."
|
||||
msgstr ""
|
||||
|
||||
@@ -5028,8 +5097,8 @@ msgstr ""
|
||||
msgid "The status of your application has changed."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:129
|
||||
msgid "There are no batches available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
#: frontend/src/pages/Batches.vue:77
|
||||
msgid "There are no batches matching the criteria. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/CreateOutline.vue:12
|
||||
@@ -5040,11 +5109,15 @@ 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/CertifiedParticipants.vue:84
|
||||
msgid "There are no participants matching this criteria."
|
||||
msgstr ""
|
||||
|
||||
#: 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 ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:146
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:151
|
||||
msgid "There are no seats available in this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -5060,7 +5133,7 @@ msgstr ""
|
||||
msgid "There are no {0} on this site."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:82
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:85
|
||||
msgid "There has been an update on your submission for assignment {0}"
|
||||
msgstr ""
|
||||
|
||||
@@ -5091,7 +5164,7 @@ msgstr ""
|
||||
msgid "This course has:"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1645
|
||||
#: lms/lms/utils.py:1573
|
||||
msgid "This course is free."
|
||||
msgstr ""
|
||||
|
||||
@@ -5235,7 +5308,7 @@ msgstr ""
|
||||
msgid "To Date"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1656
|
||||
#: lms/lms/utils.py:1584
|
||||
msgid "To join this batch, please contact the Administrator."
|
||||
msgstr ""
|
||||
|
||||
@@ -5291,7 +5364,7 @@ msgstr ""
|
||||
#: frontend/src/components/Modals/Question.vue:54
|
||||
#: frontend/src/pages/AssignmentForm.vue:39
|
||||
#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:157
|
||||
#: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:16
|
||||
#: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:55
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
#: lms/lms/doctype/lms_assignment/lms_assignment.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
@@ -5337,6 +5410,10 @@ msgstr ""
|
||||
msgid "Unlisted"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:262 frontend/src/pages/Batches.vue:278
|
||||
msgid "Unpublished"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/EditCoverImage.vue:60
|
||||
#: frontend/src/components/UnsplashImageBrowser.vue:54
|
||||
msgid "Unsplash"
|
||||
@@ -5354,12 +5431,13 @@ msgstr ""
|
||||
|
||||
#. Option for the 'Status' (Select) field in DocType 'Cohort'
|
||||
#. Label of the upcoming (Check) field in DocType 'LMS Course'
|
||||
#: frontend/src/pages/Batches.vue:258 frontend/src/pages/Batches.vue:276
|
||||
#: frontend/src/pages/CourseForm.vue:184 lms/lms/doctype/cohort/cohort.json
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
msgid "Upcoming"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batch.vue:166
|
||||
#: frontend/src/pages/Batch.vue:169
|
||||
msgid "Upcoming Batches"
|
||||
msgstr ""
|
||||
|
||||
@@ -5421,7 +5499,7 @@ msgstr ""
|
||||
msgid "User Skill"
|
||||
msgstr ""
|
||||
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.py:37
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.py:40
|
||||
msgid "User {0} has reported the job post {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -5446,6 +5524,11 @@ msgstr ""
|
||||
msgid "Valid email and name required"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the value (Rating) field in DocType 'LMS Batch Feedback'
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "Value"
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "Value Change"
|
||||
@@ -5569,7 +5652,7 @@ msgstr ""
|
||||
msgid "You are already enrolled for this course."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batch.vue:148
|
||||
#: frontend/src/pages/Batch.vue:151
|
||||
msgid "You are not a member of this batch. Please checkout our upcoming batches."
|
||||
msgstr ""
|
||||
|
||||
@@ -5606,10 +5689,6 @@ msgstr ""
|
||||
msgid "You can find their resume attached to this email."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:113
|
||||
msgid "You can link courses and assessments to it."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:115
|
||||
msgid "You cannot schedule evaluations after {0}."
|
||||
msgstr ""
|
||||
@@ -5671,10 +5750,6 @@ msgstr ""
|
||||
msgid "You have opted to be notified for this course. You will receive an email when the course becomes available."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/web_template/courses_enrolled/courses_enrolled.html:17
|
||||
msgid "You haven't enrolled for any courses"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/CourseCardOverlay.vue:146
|
||||
msgid "You need to login first to enroll for this course"
|
||||
msgstr ""
|
||||
@@ -5769,10 +5844,6 @@ msgstr ""
|
||||
msgid "in the last"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProfileCertificates.vue:17
|
||||
msgid "issued on"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/signup-form.html:12
|
||||
msgid "jane@example.com"
|
||||
msgstr ""
|
||||
@@ -5793,8 +5864,8 @@ msgstr ""
|
||||
msgid "out of"
|
||||
msgstr "spośród"
|
||||
|
||||
#: frontend/src/components/JobCard.vue:37
|
||||
msgid "posted by"
|
||||
#: frontend/src/components/JobCard.vue:30
|
||||
msgid "posted"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:386
|
||||
@@ -5817,7 +5888,7 @@ msgstr ""
|
||||
msgid "you can"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:761 lms/lms/api.py:769
|
||||
#: lms/lms/api.py:780 lms/lms/api.py:788
|
||||
msgid "{0} Settings not found"
|
||||
msgstr ""
|
||||
|
||||
@@ -5845,7 +5916,11 @@ msgstr ""
|
||||
msgid "{0} is already a {1} of the course {2}"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:59
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:91
|
||||
msgid "{0} is already certified for the batch {1}"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:72
|
||||
msgid "{0} is already certified for the course {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -5853,7 +5928,7 @@ msgstr ""
|
||||
msgid "{0} is your evaluator"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:700
|
||||
#: lms/lms/utils.py:682
|
||||
msgid "{0} mentioned you in a comment"
|
||||
msgstr ""
|
||||
|
||||
@@ -5861,11 +5936,11 @@ msgstr ""
|
||||
msgid "{0} mentioned you in a comment in your batch."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:653 lms/lms/utils.py:659
|
||||
#: lms/lms/utils.py:635 lms/lms/utils.py:641
|
||||
msgid "{0} mentioned you in a comment in {1}"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:476
|
||||
#: lms/lms/utils.py:458
|
||||
msgid "{0}k"
|
||||
msgstr ""
|
||||
|
||||
|
||||
275
lms/locale/ru.po
275
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-10 16:04+0000\n"
|
||||
"PO-Revision-Date: 2025-01-13 06:31\n"
|
||||
"POT-Creation-Date: 2025-01-17 16:04+0000\n"
|
||||
"PO-Revision-Date: 2025-01-20 11:13\n"
|
||||
"Last-Translator: jannat@frappe.io\n"
|
||||
"Language-Team: Russian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -75,7 +75,7 @@ msgstr ""
|
||||
msgid "About"
|
||||
msgstr "О"
|
||||
|
||||
#: frontend/src/pages/Batch.vue:93
|
||||
#: frontend/src/pages/Batch.vue:96
|
||||
msgid "About this batch"
|
||||
msgstr ""
|
||||
|
||||
@@ -212,14 +212,26 @@ msgid "Admin"
|
||||
msgstr "Админ"
|
||||
|
||||
#. Name of a role
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
#: frontend/src/pages/Batches.vue:270 lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:26
|
||||
msgid "All Batches"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:12
|
||||
msgid "All Certified Participants"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/widgets/BreadCrumb.html:3
|
||||
msgid "All Courses"
|
||||
msgstr "Все курсы"
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:51
|
||||
msgid "All Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/quiz/quiz.html:141
|
||||
msgid "All Submissions"
|
||||
msgstr "Все заявки"
|
||||
@@ -279,7 +291,7 @@ msgstr ""
|
||||
msgid "Amount Field"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:70
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:75
|
||||
msgid "Amount and currency are required for paid batches."
|
||||
msgstr ""
|
||||
|
||||
@@ -353,6 +365,10 @@ msgstr "Утвержден"
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:259 frontend/src/pages/Batches.vue:277
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the user_category (Check) field in DocType 'LMS Settings'
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Ask User Category during Signup"
|
||||
@@ -381,7 +397,7 @@ msgstr "Тип оценки"
|
||||
msgid "Assessment added successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:80
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:85
|
||||
msgid "Assessment {0} has already been added to this batch."
|
||||
msgstr "Оценка {0} уже добавлена в этот пакет."
|
||||
|
||||
@@ -473,6 +489,10 @@ msgstr "Авто. запись"
|
||||
msgid "Average Rating"
|
||||
msgstr "Средняя оценка"
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:38
|
||||
msgid "Average of Feedback Received"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Lesson.vue:96
|
||||
msgid "Back to Course"
|
||||
msgstr ""
|
||||
@@ -493,10 +513,12 @@ msgstr "Описание бейджа"
|
||||
msgid "Badge Image"
|
||||
msgstr "Изображение бейджа"
|
||||
|
||||
#. Label of the batch (Link) field in DocType 'LMS Batch Feedback'
|
||||
#. Label of the batch_name (Link) field in DocType 'LMS Certificate'
|
||||
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
|
||||
#. Label of the batch_name (Link) field in DocType 'LMS Live Class'
|
||||
#: frontend/src/components/Modals/Event.vue:32
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
@@ -578,7 +600,9 @@ msgstr "Дата начала группы:"
|
||||
msgid "Batch Student"
|
||||
msgstr "Студент группы"
|
||||
|
||||
#. Label of the batch_title (Data) field in DocType 'LMS Certificate'
|
||||
#. Label of the batch_title (Data) field in DocType 'LMS Certificate Request'
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
msgid "Batch Title"
|
||||
msgstr ""
|
||||
@@ -587,14 +611,15 @@ msgstr ""
|
||||
msgid "Batch Updated"
|
||||
msgstr "Группа обновлена"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:41
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:46
|
||||
msgid "Batch end date cannot be before the batch start date"
|
||||
msgstr ""
|
||||
|
||||
#. Group in LMS Course's connections
|
||||
#. Label of the batches (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/pages/Batches.vue:8 lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:60
|
||||
#: frontend/src/pages/Batches.vue:285
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:61
|
||||
msgid "Batches"
|
||||
msgstr "Группы"
|
||||
|
||||
@@ -689,7 +714,8 @@ msgstr ""
|
||||
#. Label of the category (Link) field in DocType 'LMS Batch'
|
||||
#. Label of the category (Data) field in DocType 'LMS Category'
|
||||
#. Label of the category (Link) field in DocType 'LMS Course'
|
||||
#: frontend/src/pages/BatchForm.vue:202 frontend/src/pages/Batches.vue:16
|
||||
#: frontend/src/pages/BatchForm.vue:202 frontend/src/pages/Batches.vue:49
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:29
|
||||
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:17
|
||||
#: frontend/src/pages/JobDetail.vue:102
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
@@ -756,6 +782,7 @@ msgid "Certification Name"
|
||||
msgstr "Название сертификации"
|
||||
|
||||
#. Label of the certified_participants (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:153
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Certified Participants"
|
||||
msgstr "Сертифицированные участники"
|
||||
@@ -1048,7 +1075,7 @@ msgstr ""
|
||||
msgid "Confirmation Email Sent"
|
||||
msgstr "Отправлено письмо подтверждения"
|
||||
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:25
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:29
|
||||
msgid "Congratulations on getting certified!"
|
||||
msgstr "Поздравляем с получением сертификата!"
|
||||
|
||||
@@ -1057,8 +1084,10 @@ msgid "Contact the Administrator to enroll for this course."
|
||||
msgstr ""
|
||||
|
||||
#. Label of the content (Text) field in DocType 'Course Lesson'
|
||||
#. Label of the content (Rating) field in DocType 'LMS Batch Feedback'
|
||||
#: frontend/src/pages/LessonForm.vue:62
|
||||
#: lms/lms/doctype/course_lesson/course_lesson.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "Content"
|
||||
msgstr "Содержание"
|
||||
|
||||
@@ -1067,7 +1096,7 @@ msgid "Continue Learning"
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
|
||||
#: frontend/src/pages/Jobs.vue:120
|
||||
#: frontend/src/pages/Jobs.vue:152
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
msgid "Contract"
|
||||
msgstr ""
|
||||
@@ -1133,7 +1162,7 @@ msgstr ""
|
||||
#. Label of a Link in the LMS Workspace
|
||||
#. Label of a shortcut in the LMS Workspace
|
||||
#: frontend/src/components/Modals/BatchCourseModal.vue:20
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:23
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:38
|
||||
#: frontend/src/components/Modals/EvaluationModal.vue:20
|
||||
#: frontend/src/components/Modals/Event.vue:24
|
||||
#: lms/lms/doctype/batch_course/batch_course.json
|
||||
@@ -1220,7 +1249,7 @@ msgstr "Преподаватель курса"
|
||||
msgid "Course Lesson"
|
||||
msgstr "Урок курса"
|
||||
|
||||
#: lms/www/lms.py:27
|
||||
#: lms/www/lms.py:28
|
||||
msgid "Course List"
|
||||
msgstr "Список курсов"
|
||||
|
||||
@@ -1270,7 +1299,7 @@ msgstr "Заголовок курса"
|
||||
msgid "Course added to program"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:345
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:350
|
||||
msgid "Course already added to the batch."
|
||||
msgstr "Курс уже добавлен в группу."
|
||||
|
||||
@@ -1282,7 +1311,7 @@ msgstr ""
|
||||
msgid "Course moved successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:59
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:64
|
||||
#: lms/lms/doctype/lms_program/lms_program.py:19
|
||||
msgid "Course {0} has already been added to this batch."
|
||||
msgstr "Курс {0} уже добавлен в группу."
|
||||
@@ -1333,10 +1362,6 @@ msgstr "Создать сертификат LMS"
|
||||
msgid "Create LMS Certificate Evaluation"
|
||||
msgstr "Создать оценку сертификата LMS"
|
||||
|
||||
#: frontend/src/pages/Batches.vue:110
|
||||
msgid "Create a Batch"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:132 lms/templates/onboarding_header.html:19
|
||||
msgid "Create a Course"
|
||||
msgstr "Создать курс"
|
||||
@@ -1732,6 +1757,10 @@ msgstr "Время окончания"
|
||||
msgid "Enroll Now"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:274
|
||||
msgid "Enrolled"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/CourseCard.vue:43
|
||||
#: frontend/src/components/CourseCardOverlay.vue:104
|
||||
#: frontend/src/pages/CourseDetail.vue:33
|
||||
@@ -1742,7 +1771,7 @@ msgstr "Зачисленные студенты"
|
||||
msgid "Enrolled successfully"
|
||||
msgstr "Зачислен успешно"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:103
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:108
|
||||
msgid "Enrollment Confirmation for the Next Training Batch"
|
||||
msgstr "Подтверждение регистрации на следующую группу обучения"
|
||||
|
||||
@@ -1751,7 +1780,7 @@ msgstr "Подтверждение регистрации на следующу
|
||||
msgid "Enrollment Count"
|
||||
msgstr "Количество регистраций"
|
||||
|
||||
#: lms/lms/utils.py:1765
|
||||
#: lms/lms/utils.py:1693
|
||||
msgid "Enrollment Failed"
|
||||
msgstr ""
|
||||
|
||||
@@ -1821,7 +1850,7 @@ msgstr "Дата окончания оценки"
|
||||
msgid "Evaluation Request"
|
||||
msgstr "Запрос на оценку"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:87
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:92
|
||||
msgid "Evaluation end date cannot be less than the batch end date."
|
||||
msgstr "Дата окончания оценки не может быть меньше даты окончания группы."
|
||||
|
||||
@@ -1836,7 +1865,7 @@ msgstr ""
|
||||
#. Label of the evaluator (Link) field in DocType 'LMS Certificate Evaluation'
|
||||
#. Label of the evaluator (Link) field in DocType 'LMS Certificate Request'
|
||||
#: frontend/src/components/Modals/BatchCourseModal.vue:26
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:28
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:22
|
||||
#: frontend/src/pages/ProfileRoles.vue:22
|
||||
#: lms/lms/doctype/batch_course/batch_course.json
|
||||
#: lms/lms/doctype/course_evaluator/course_evaluator.json
|
||||
@@ -1914,7 +1943,7 @@ msgid "Expiration Date"
|
||||
msgstr "Дата окончания срока"
|
||||
|
||||
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:39
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:33
|
||||
#: frontend/src/components/Modals/Event.vue:126
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
msgid "Expiry Date"
|
||||
@@ -1955,6 +1984,12 @@ msgstr "Ошибка"
|
||||
msgid "Featured"
|
||||
msgstr "Популярные"
|
||||
|
||||
#. Label of the feedback (Small Text) field in DocType 'LMS Batch Feedback'
|
||||
#: frontend/src/components/BatchFeedback.vue:29
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Assignment.vue:61
|
||||
msgid "Feel free to make edits to your submission if needed."
|
||||
msgstr "При необходимости вы можете вносить изменения в свою заявку."
|
||||
@@ -1974,7 +2009,7 @@ msgstr "Область специальности/исследования"
|
||||
msgid "File Type"
|
||||
msgstr "Тип файла"
|
||||
|
||||
#: frontend/src/pages/Jobs.vue:47
|
||||
#: frontend/src/pages/Jobs.vue:33
|
||||
msgid "Find the perfect job for you"
|
||||
msgstr ""
|
||||
|
||||
@@ -2007,7 +2042,7 @@ msgid "Free"
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
|
||||
#: frontend/src/pages/Jobs.vue:121
|
||||
#: frontend/src/pages/Jobs.vue:153
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
msgid "Freelance"
|
||||
msgstr "Фриланс"
|
||||
@@ -2049,7 +2084,7 @@ msgid "Full Name"
|
||||
msgstr "Полное имя"
|
||||
|
||||
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
|
||||
#: frontend/src/pages/Jobs.vue:118
|
||||
#: frontend/src/pages/Jobs.vue:150
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
msgid "Full Time"
|
||||
msgstr "Полная занятость"
|
||||
@@ -2147,6 +2182,10 @@ msgstr "Заголовок"
|
||||
msgid "Hello"
|
||||
msgstr "Привет"
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:11
|
||||
msgid "Help Us Improve"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/courses_created.html:15
|
||||
msgid "Help others learn something new by creating a course."
|
||||
msgstr "Помогите другим узнать что-то новое, создав курс."
|
||||
@@ -2155,10 +2194,6 @@ msgstr "Помогите другим узнать что-то новое, со
|
||||
msgid "Help us improve our course material."
|
||||
msgstr "Помогите нам улучшить наш учебный материал."
|
||||
|
||||
#: lms/lms/web_template/courses_enrolled/courses_enrolled.html:18
|
||||
msgid "Here are a few courses we recommend for you to get started with {0}"
|
||||
msgstr "Вот несколько курсов, с которых мы рекомендуем вам начать {0}"
|
||||
|
||||
#: lms/lms/notification/certificate_request_reminder/certificate_request_reminder.html:1
|
||||
#: lms/templates/emails/certificate_request_notification.html:1
|
||||
msgid "Hey {0}"
|
||||
@@ -2360,9 +2395,11 @@ msgid "Instructor Notes"
|
||||
msgstr "Заметки инструктора"
|
||||
|
||||
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch'
|
||||
#. Label of the instructors (Rating) field in DocType 'LMS Batch Feedback'
|
||||
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course'
|
||||
#: frontend/src/pages/BatchForm.vue:89 frontend/src/pages/CourseForm.vue:154
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
msgid "Instructors"
|
||||
msgstr "Инструкторы"
|
||||
@@ -2437,7 +2474,7 @@ msgstr ""
|
||||
|
||||
#. Label of the issue_date (Date) field in DocType 'Certification'
|
||||
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:34
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:28
|
||||
#: frontend/src/components/Modals/Event.vue:121
|
||||
#: lms/lms/doctype/certification/certification.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
@@ -2450,6 +2487,7 @@ msgid "Issued On"
|
||||
msgstr "Выдано"
|
||||
|
||||
#: frontend/src/pages/ProfileAbout.vue:56
|
||||
#: frontend/src/pages/ProfileCertificates.vue:17
|
||||
#: lms/templates/certificates_section.html:11
|
||||
msgid "Issued on"
|
||||
msgstr "Дата выпуска:"
|
||||
@@ -2487,7 +2525,7 @@ msgstr "Название доски объявлений"
|
||||
msgid "Job Details"
|
||||
msgstr "Подробности вакансии"
|
||||
|
||||
#: lms/www/lms.py:108
|
||||
#: lms/www/lms.py:109
|
||||
msgid "Job Openings"
|
||||
msgstr "Открытые вакансии"
|
||||
|
||||
@@ -2566,6 +2604,11 @@ msgstr "Назначение бейджа LMS"
|
||||
msgid "LMS Batch"
|
||||
msgstr "Группа LMS"
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "LMS Batch Feedback"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
||||
msgid "LMS Batch Old"
|
||||
@@ -2725,6 +2768,7 @@ msgstr "Источник LMS"
|
||||
#: lms/lms/doctype/lms_assignment/lms_assignment.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
#: lms/lms/doctype/lms_course_progress/lms_course_progress.json
|
||||
@@ -2870,16 +2914,13 @@ msgid "LiveCode URL"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Members.vue:106
|
||||
#: frontend/src/pages/Assignments.vue:71
|
||||
#: frontend/src/pages/Assignments.vue:71 frontend/src/pages/Batches.vue:88
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:71
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:39
|
||||
#: frontend/src/pages/Quizzes.vue:51
|
||||
msgid "Load More"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:40
|
||||
msgid "Loading Batches..."
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Auto Recording' (Select) field in DocType 'LMS Live Class'
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
msgid "Local"
|
||||
@@ -2902,7 +2943,7 @@ msgstr ""
|
||||
|
||||
#: frontend/src/components/AssignmentBlock.vue:13
|
||||
#: frontend/src/components/NoPermission.vue:28
|
||||
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:175
|
||||
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:178
|
||||
#: frontend/src/pages/Lesson.vue:24
|
||||
msgid "Login"
|
||||
msgstr "Логин"
|
||||
@@ -3007,6 +3048,7 @@ msgstr "Средний:"
|
||||
#. Label of the member (Link) field in DocType 'Exercise Submission'
|
||||
#. Label of the member (Link) field in DocType 'LMS Assignment Submission'
|
||||
#. Label of the member (Link) field in DocType 'LMS Badge Assignment'
|
||||
#. Label of the member (Link) field in DocType 'LMS Batch Feedback'
|
||||
#. Label of the member (Link) field in DocType 'LMS Certificate'
|
||||
#. Label of the member (Link) field in DocType 'LMS Certificate Evaluation'
|
||||
#. Label of the member (Link) field in DocType 'LMS Certificate Request'
|
||||
@@ -3024,6 +3066,7 @@ msgstr "Средний:"
|
||||
#: lms/lms/doctype/exercise_submission/exercise_submission.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.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
|
||||
@@ -3049,8 +3092,15 @@ msgstr "Участник группы"
|
||||
msgid "Member Email"
|
||||
msgstr "Email участника"
|
||||
|
||||
#. Label of the member_image (Attach Image) field in DocType 'LMS Batch
|
||||
#. Feedback'
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "Member Image"
|
||||
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 Batch Feedback'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Certificate'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Certificate
|
||||
#. Evaluation'
|
||||
@@ -3061,6 +3111,7 @@ msgstr "Email участника"
|
||||
#. 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_batch_feedback/lms_batch_feedback.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
|
||||
@@ -3223,7 +3274,7 @@ msgid "My calendar"
|
||||
msgstr "Мой календарь"
|
||||
|
||||
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
||||
#: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:30
|
||||
#: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:17
|
||||
#: frontend/src/pages/Courses.vue:45 frontend/src/pages/Programs.vue:14
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "New"
|
||||
@@ -3237,15 +3288,15 @@ msgstr ""
|
||||
msgid "New Assignment Submission"
|
||||
msgstr "Подача нового задания"
|
||||
|
||||
#: lms/public/js/common_functions.js:255 lms/www/lms.py:86
|
||||
#: lms/public/js/common_functions.js:255 lms/www/lms.py:87
|
||||
msgid "New Batch"
|
||||
msgstr "Новая группа"
|
||||
|
||||
#: lms/www/lms.py:37
|
||||
#: lms/www/lms.py:38
|
||||
msgid "New Course"
|
||||
msgstr "Новый курс"
|
||||
|
||||
#: frontend/src/pages/Jobs.vue:39
|
||||
#: frontend/src/pages/Jobs.vue:23
|
||||
msgid "New Job"
|
||||
msgstr "Новая Вакансия"
|
||||
|
||||
@@ -3278,11 +3329,11 @@ msgstr ""
|
||||
msgid "New Sign Up"
|
||||
msgstr "Новая регистрация"
|
||||
|
||||
#: lms/lms/utils.py:623
|
||||
#: lms/lms/utils.py:605
|
||||
msgid "New comment in batch {0}"
|
||||
msgstr "Новый комментарий в группе {0}"
|
||||
|
||||
#: lms/lms/utils.py:616
|
||||
#: lms/lms/utils.py:598
|
||||
msgid "New reply on the topic {0} in course {1}"
|
||||
msgstr "Новый ответ по теме {0} в курсе {1}"
|
||||
|
||||
@@ -3324,7 +3375,7 @@ msgstr "Нет объявлений"
|
||||
msgid "No assignments found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:125
|
||||
#: frontend/src/pages/Batches.vue:73
|
||||
msgid "No batches found"
|
||||
msgstr ""
|
||||
|
||||
@@ -3348,11 +3399,15 @@ msgstr ""
|
||||
msgid "No courses under review"
|
||||
msgstr "Нет рассматриваемых курсов"
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:101
|
||||
msgid "No feedback received yet."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProfileAbout.vue:12
|
||||
msgid "No introduction"
|
||||
msgstr "Без введения"
|
||||
|
||||
#: frontend/src/pages/Jobs.vue:63
|
||||
#: frontend/src/pages/Jobs.vue:77
|
||||
msgid "No jobs posted"
|
||||
msgstr "Вакансии не опубликованы"
|
||||
|
||||
@@ -3360,6 +3415,10 @@ msgstr "Вакансии не опубликованы"
|
||||
msgid "No live classes scheduled"
|
||||
msgstr "Не запланированы онлайн-курсы"
|
||||
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:81
|
||||
msgid "No participants found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:91
|
||||
msgid "No programs found"
|
||||
msgstr ""
|
||||
@@ -3384,10 +3443,6 @@ msgstr "Нет предстоящих оценок."
|
||||
msgid "No {0}"
|
||||
msgstr "Нет {0}"
|
||||
|
||||
#: frontend/src/pages/Batches.vue:84
|
||||
msgid "No {0} batches"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:107
|
||||
msgid "No {0} courses"
|
||||
msgstr ""
|
||||
@@ -3420,7 +3475,7 @@ msgstr "Недоступно для предварительного просм
|
||||
msgid "Not Graded"
|
||||
msgstr "Нет оценки"
|
||||
|
||||
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:143
|
||||
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:146
|
||||
msgid "Not Permitted"
|
||||
msgstr ""
|
||||
|
||||
@@ -3614,7 +3669,7 @@ msgid "Pan Number"
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
|
||||
#: frontend/src/pages/Jobs.vue:119
|
||||
#: frontend/src/pages/Jobs.vue:151
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
msgid "Part Time"
|
||||
msgstr "Неполная занятость"
|
||||
@@ -3765,11 +3820,11 @@ msgstr "Пожалуйста, проверьте свой email для подт
|
||||
msgid "Please click on the following button to set your new password"
|
||||
msgstr "Нажмите на следующую кнопку, чтобы установить новый пароль."
|
||||
|
||||
#: lms/lms/utils.py:1887 lms/lms/utils.py:1891
|
||||
#: lms/lms/utils.py:1815 lms/lms/utils.py:1819
|
||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:256
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:261
|
||||
msgid "Please enable Zoom Settings to use this feature."
|
||||
msgstr "Чтобы использовать эту функцию, включите настройки Zoom."
|
||||
|
||||
@@ -3786,7 +3841,7 @@ msgid "Please enter a title."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:40
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:122
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:125
|
||||
msgid "Please enter a valid URL."
|
||||
msgstr "Введите действительный URL-адрес."
|
||||
|
||||
@@ -3794,7 +3849,7 @@ msgstr "Введите действительный URL-адрес."
|
||||
msgid "Please enter a valid time in the format HH:mm."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:116
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:119
|
||||
msgid "Please enter the URL for assignment submission."
|
||||
msgstr "Введите URL для отправки задания."
|
||||
|
||||
@@ -3802,7 +3857,7 @@ msgstr "Введите URL для отправки задания."
|
||||
msgid "Please enter your answer"
|
||||
msgstr "Пожалуйста, введите ваш ответ"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:66
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:71
|
||||
msgid "Please install the Payments app to create a paid batches."
|
||||
msgstr ""
|
||||
|
||||
@@ -3822,7 +3877,7 @@ msgstr ""
|
||||
msgid "Please login to access the quiz."
|
||||
msgstr "Пожалуйста, войдите в систему, чтобы получить доступ к тесту."
|
||||
|
||||
#: frontend/src/components/NoPermission.vue:25 frontend/src/pages/Batch.vue:154
|
||||
#: frontend/src/components/NoPermission.vue:25 frontend/src/pages/Batch.vue:157
|
||||
msgid "Please login to access this page."
|
||||
msgstr "Пожалуйста, войдите в систему, чтобы получить доступ к этой странице."
|
||||
|
||||
@@ -3863,7 +3918,7 @@ msgstr "Пожалуйста, примите соответствующие ме
|
||||
msgid "Please upload a SCORM package"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:119
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:122
|
||||
msgid "Please upload the assignment file."
|
||||
msgstr "Пожалуйста, загрузите файл задания."
|
||||
|
||||
@@ -3897,7 +3952,7 @@ msgid "Possible Answer 4"
|
||||
msgstr "Возможный ответ 4"
|
||||
|
||||
#: frontend/src/components/DiscussionReplies.vue:52
|
||||
#: frontend/src/components/DiscussionReplies.vue:86
|
||||
#: frontend/src/components/DiscussionReplies.vue:87
|
||||
msgid "Post"
|
||||
msgstr "Пост"
|
||||
|
||||
@@ -4326,19 +4381,19 @@ msgstr ""
|
||||
msgid "Route"
|
||||
msgstr "Маршрут"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:199
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:204
|
||||
msgid "Row #{0} Date cannot be outside the batch duration."
|
||||
msgstr "Строка #{0} Дата не может выходить за пределы длительности партии."
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:194
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:199
|
||||
msgid "Row #{0} End time cannot be outside the batch duration."
|
||||
msgstr "Строка #{0} Время окончания не может выходить за рамки длительности партии."
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:176
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:181
|
||||
msgid "Row #{0} Start time cannot be greater than or equal to end time."
|
||||
msgstr "Строка #{0} Время начала не может быть больше или равно времени окончания."
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:185
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:190
|
||||
msgid "Row #{0} Start time cannot be outside the batch duration."
|
||||
msgstr "Строка #{0} Время начала не может выходить за рамки длительности партии."
|
||||
|
||||
@@ -4419,10 +4474,18 @@ msgstr "Счет"
|
||||
msgid "Score Out Of"
|
||||
msgstr "Оценка из"
|
||||
|
||||
#: frontend/src/components/Members.vue:15
|
||||
#: frontend/src/components/Members.vue:15 frontend/src/pages/Jobs.vue:38
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:17
|
||||
msgid "Search by Name"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:39
|
||||
msgid "Search by Title"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Assignments.vue:25
|
||||
msgid "Search by title"
|
||||
msgstr ""
|
||||
@@ -4719,7 +4782,7 @@ msgstr ""
|
||||
#. Label of the statistics (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/components/BatchStudents.vue:5
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:133
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:134
|
||||
msgid "Statistics"
|
||||
msgstr "Статистика"
|
||||
|
||||
@@ -4784,7 +4847,7 @@ msgstr "Имя студента"
|
||||
msgid "Student Reviews"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:48
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:53
|
||||
msgid "Student {0} has already been added to this batch."
|
||||
msgstr "Курс {0} уже добавлен в группу."
|
||||
|
||||
@@ -4832,6 +4895,7 @@ msgstr ""
|
||||
msgid "Submission by"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:14
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:9
|
||||
#: frontend/src/components/Modals/BatchCourseModal.vue:9
|
||||
#: frontend/src/components/Modals/EvaluationModal.vue:9
|
||||
@@ -4889,7 +4953,7 @@ msgstr "Резюме"
|
||||
msgid "Sunday"
|
||||
msgstr "Воскресенье"
|
||||
|
||||
#: lms/lms/api.py:964
|
||||
#: lms/lms/api.py:983
|
||||
msgid "Suspicious pattern found in {0}: {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -4915,6 +4979,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
||||
#: lms/lms/doctype/lms_category/lms_category.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
@@ -4997,6 +5062,10 @@ msgstr "Тесты"
|
||||
msgid "Text"
|
||||
msgstr "Текст"
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:7
|
||||
msgid "Thank you for providing your feedback!"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/emails/lms_course_interest.html:17
|
||||
#: lms/templates/emails/lms_invite_request_approved.html:15
|
||||
#: lms/templates/emails/mentor_request_creation_email.html:7
|
||||
@@ -5004,7 +5073,7 @@ msgstr "Текст"
|
||||
msgid "Thanks and Regards"
|
||||
msgstr "Спасибо и с наилучшими пожеланиями"
|
||||
|
||||
#: lms/lms/utils.py:1794
|
||||
#: lms/lms/utils.py:1722
|
||||
msgid "The batch is full. Please contact the Administrator."
|
||||
msgstr ""
|
||||
|
||||
@@ -5028,8 +5097,8 @@ msgstr "Слот уже забронирован другим участнико
|
||||
msgid "The status of your application has changed."
|
||||
msgstr "Статус вашей заявки изменился."
|
||||
|
||||
#: frontend/src/pages/Batches.vue:129
|
||||
msgid "There are no batches available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
#: frontend/src/pages/Batches.vue:77
|
||||
msgid "There are no batches matching the criteria. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/CreateOutline.vue:12
|
||||
@@ -5040,11 +5109,15 @@ 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/CertifiedParticipants.vue:84
|
||||
msgid "There are no participants matching this criteria."
|
||||
msgstr ""
|
||||
|
||||
#: 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 ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:146
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:151
|
||||
msgid "There are no seats available in this batch."
|
||||
msgstr "В этой группе нет свободных мест."
|
||||
|
||||
@@ -5060,7 +5133,7 @@ msgstr ""
|
||||
msgid "There are no {0} on this site."
|
||||
msgstr "На этом сайте нет {0} ."
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:82
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:85
|
||||
msgid "There has been an update on your submission for assignment {0}"
|
||||
msgstr ""
|
||||
|
||||
@@ -5091,7 +5164,7 @@ msgstr ""
|
||||
msgid "This course has:"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1645
|
||||
#: lms/lms/utils.py:1573
|
||||
msgid "This course is free."
|
||||
msgstr "Этот курс бесплатный."
|
||||
|
||||
@@ -5235,7 +5308,7 @@ msgstr ""
|
||||
msgid "To Date"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1656
|
||||
#: lms/lms/utils.py:1584
|
||||
msgid "To join this batch, please contact the Administrator."
|
||||
msgstr "Чтобы присоединиться к этой группе, свяжитесь с администратором."
|
||||
|
||||
@@ -5291,7 +5364,7 @@ msgstr "Twitter"
|
||||
#: frontend/src/components/Modals/Question.vue:54
|
||||
#: frontend/src/pages/AssignmentForm.vue:39
|
||||
#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:157
|
||||
#: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:16
|
||||
#: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:55
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
#: lms/lms/doctype/lms_assignment/lms_assignment.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
@@ -5337,6 +5410,10 @@ msgstr "На рассмотрении"
|
||||
msgid "Unlisted"
|
||||
msgstr "Не публиковать"
|
||||
|
||||
#: frontend/src/pages/Batches.vue:262 frontend/src/pages/Batches.vue:278
|
||||
msgid "Unpublished"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/EditCoverImage.vue:60
|
||||
#: frontend/src/components/UnsplashImageBrowser.vue:54
|
||||
msgid "Unsplash"
|
||||
@@ -5354,12 +5431,13 @@ msgstr ""
|
||||
|
||||
#. Option for the 'Status' (Select) field in DocType 'Cohort'
|
||||
#. Label of the upcoming (Check) field in DocType 'LMS Course'
|
||||
#: frontend/src/pages/Batches.vue:258 frontend/src/pages/Batches.vue:276
|
||||
#: frontend/src/pages/CourseForm.vue:184 lms/lms/doctype/cohort/cohort.json
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
msgid "Upcoming"
|
||||
msgstr "Предстоящие"
|
||||
|
||||
#: frontend/src/pages/Batch.vue:166
|
||||
#: frontend/src/pages/Batch.vue:169
|
||||
msgid "Upcoming Batches"
|
||||
msgstr "Предстоящие группы"
|
||||
|
||||
@@ -5421,7 +5499,7 @@ msgstr "Ввод пользователем"
|
||||
msgid "User Skill"
|
||||
msgstr "Навыки пользователя"
|
||||
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.py:37
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.py:40
|
||||
msgid "User {0} has reported the job post {1}"
|
||||
msgstr "Пользователь {0} сообщил о вакансии {1}"
|
||||
|
||||
@@ -5446,6 +5524,11 @@ msgstr "Ответ пользователей"
|
||||
msgid "Valid email and name required"
|
||||
msgstr "Требуется действительный email и имя"
|
||||
|
||||
#. Label of the value (Rating) field in DocType 'LMS Batch Feedback'
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "Value"
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "Value Change"
|
||||
@@ -5569,7 +5652,7 @@ msgstr "Вы уже зачислены в эту группу."
|
||||
msgid "You are already enrolled for this course."
|
||||
msgstr "Вы уже зачислены на этот курс."
|
||||
|
||||
#: frontend/src/pages/Batch.vue:148
|
||||
#: frontend/src/pages/Batch.vue:151
|
||||
msgid "You are not a member of this batch. Please checkout our upcoming batches."
|
||||
msgstr "Вы не являетесь участником этой группы. Пожалуйста, ознакомьтесь с нашими группами."
|
||||
|
||||
@@ -5606,10 +5689,6 @@ msgstr "Вы можете попробовать пройти этот тест
|
||||
msgid "You can find their resume attached to this email."
|
||||
msgstr "Их резюме вы найдете в приложении к этому электронному письму."
|
||||
|
||||
#: frontend/src/pages/Batches.vue:113
|
||||
msgid "You can link courses and assessments to it."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:115
|
||||
msgid "You cannot schedule evaluations after {0}."
|
||||
msgstr "Вы не можете запланировать оценки после {0}."
|
||||
@@ -5671,10 +5750,6 @@ msgstr ""
|
||||
msgid "You have opted to be notified for this course. You will receive an email when the course becomes available."
|
||||
msgstr "Вы выбрали получение уведомлений об этом курсе. Вы получите электронное письмо, когда курс станет доступен."
|
||||
|
||||
#: lms/lms/web_template/courses_enrolled/courses_enrolled.html:17
|
||||
msgid "You haven't enrolled for any courses"
|
||||
msgstr "Вы не записались ни на один курс"
|
||||
|
||||
#: frontend/src/components/CourseCardOverlay.vue:146
|
||||
msgid "You need to login first to enroll for this course"
|
||||
msgstr ""
|
||||
@@ -5769,10 +5844,6 @@ msgstr "был"
|
||||
msgid "in the last"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProfileCertificates.vue:17
|
||||
msgid "issued on"
|
||||
msgstr "дата выпуска:"
|
||||
|
||||
#: lms/templates/signup-form.html:12
|
||||
msgid "jane@example.com"
|
||||
msgstr "ivan@example.com"
|
||||
@@ -5793,8 +5864,8 @@ msgstr "из"
|
||||
msgid "out of"
|
||||
msgstr "из"
|
||||
|
||||
#: frontend/src/components/JobCard.vue:37
|
||||
msgid "posted by"
|
||||
#: frontend/src/components/JobCard.vue:30
|
||||
msgid "posted"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:386
|
||||
@@ -5817,7 +5888,7 @@ msgstr ""
|
||||
msgid "you can"
|
||||
msgstr "вы можете"
|
||||
|
||||
#: lms/lms/api.py:761 lms/lms/api.py:769
|
||||
#: lms/lms/api.py:780 lms/lms/api.py:788
|
||||
msgid "{0} Settings not found"
|
||||
msgstr ""
|
||||
|
||||
@@ -5845,7 +5916,11 @@ msgstr "{0} уже является наставником курса {1}"
|
||||
msgid "{0} is already a {1} of the course {2}"
|
||||
msgstr "{0} уже является {1} курса {2}"
|
||||
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:59
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:91
|
||||
msgid "{0} is already certified for the batch {1}"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:72
|
||||
msgid "{0} is already certified for the course {1}"
|
||||
msgstr "{0} уже сертифицирован для курса {1}"
|
||||
|
||||
@@ -5853,7 +5928,7 @@ msgstr "{0} уже сертифицирован для курса {1}"
|
||||
msgid "{0} is your evaluator"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:700
|
||||
#: lms/lms/utils.py:682
|
||||
msgid "{0} mentioned you in a comment"
|
||||
msgstr "{0} упомянул вас в комментарии"
|
||||
|
||||
@@ -5861,11 +5936,11 @@ msgstr "{0} упомянул вас в комментарии"
|
||||
msgid "{0} mentioned you in a comment in your batch."
|
||||
msgstr "{0} упомянул вас в комментарии в вашей группе."
|
||||
|
||||
#: lms/lms/utils.py:653 lms/lms/utils.py:659
|
||||
#: lms/lms/utils.py:635 lms/lms/utils.py:641
|
||||
msgid "{0} mentioned you in a comment in {1}"
|
||||
msgstr "{0} упомянул вас в комментарии в {1}"
|
||||
|
||||
#: lms/lms/utils.py:476
|
||||
#: lms/lms/utils.py:458
|
||||
msgid "{0}k"
|
||||
msgstr "{0}k"
|
||||
|
||||
|
||||
281
lms/locale/sv.po
281
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-10 16:04+0000\n"
|
||||
"PO-Revision-Date: 2025-01-14 06:35\n"
|
||||
"POT-Creation-Date: 2025-01-17 16:04+0000\n"
|
||||
"PO-Revision-Date: 2025-01-20 11:13\n"
|
||||
"Last-Translator: jannat@frappe.io\n"
|
||||
"Language-Team: Swedish\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -75,7 +75,7 @@ msgstr "En rad introduktion till kurs som finns på kurskortet"
|
||||
msgid "About"
|
||||
msgstr "Om"
|
||||
|
||||
#: frontend/src/pages/Batch.vue:93
|
||||
#: frontend/src/pages/Batch.vue:96
|
||||
msgid "About this batch"
|
||||
msgstr "Om denna grupp"
|
||||
|
||||
@@ -212,14 +212,26 @@ msgid "Admin"
|
||||
msgstr "Administratör"
|
||||
|
||||
#. Name of a role
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
#: frontend/src/pages/Batches.vue:270 lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "All"
|
||||
msgstr "Alla"
|
||||
|
||||
#: frontend/src/pages/Batches.vue:26
|
||||
msgid "All Batches"
|
||||
msgstr "Alla Grupper"
|
||||
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:12
|
||||
msgid "All Certified Participants"
|
||||
msgstr "Alla Certifierade Deltagare"
|
||||
|
||||
#: lms/lms/widgets/BreadCrumb.html:3
|
||||
msgid "All Courses"
|
||||
msgstr "Alla Kurser"
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:51
|
||||
msgid "All Feedback"
|
||||
msgstr "All Återkoppling"
|
||||
|
||||
#: lms/templates/quiz/quiz.html:141
|
||||
msgid "All Submissions"
|
||||
msgstr "Alla Godkännande"
|
||||
@@ -279,7 +291,7 @@ msgstr "Belopp Baserat på Fält"
|
||||
msgid "Amount Field"
|
||||
msgstr "Belopp Fält"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:70
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:75
|
||||
msgid "Amount and currency are required for paid batches."
|
||||
msgstr "Belopp och valuta erfordras för betalda grupper."
|
||||
|
||||
@@ -353,6 +365,10 @@ msgstr "Godkänd"
|
||||
msgid "Apps"
|
||||
msgstr "Appar"
|
||||
|
||||
#: frontend/src/pages/Batches.vue:259 frontend/src/pages/Batches.vue:277
|
||||
msgid "Archived"
|
||||
msgstr "Arkiverad"
|
||||
|
||||
#. Label of the user_category (Check) field in DocType 'LMS Settings'
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Ask User Category during Signup"
|
||||
@@ -381,7 +397,7 @@ msgstr "Bedömning Typ"
|
||||
msgid "Assessment added successfully"
|
||||
msgstr "Bedömning tillagd"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:80
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:85
|
||||
msgid "Assessment {0} has already been added to this batch."
|
||||
msgstr "Bedömning {0} har redan lagts till i denna grupp."
|
||||
|
||||
@@ -473,6 +489,10 @@ msgstr "Automatisk Inspelning"
|
||||
msgid "Average Rating"
|
||||
msgstr "Genomsnittlig Betyg"
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:38
|
||||
msgid "Average of Feedback Received"
|
||||
msgstr "Genomsnitt av mottagen Återkoppling"
|
||||
|
||||
#: frontend/src/pages/Lesson.vue:96
|
||||
msgid "Back to Course"
|
||||
msgstr "Tillbaka till Kurs"
|
||||
@@ -493,10 +513,12 @@ msgstr "Emblem Beskrivning"
|
||||
msgid "Badge Image"
|
||||
msgstr "Emblem Bild"
|
||||
|
||||
#. Label of the batch (Link) field in DocType 'LMS Batch Feedback'
|
||||
#. Label of the batch_name (Link) field in DocType 'LMS Certificate'
|
||||
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
|
||||
#. Label of the batch_name (Link) field in DocType 'LMS Live Class'
|
||||
#: frontend/src/components/Modals/Event.vue:32
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
@@ -578,7 +600,9 @@ msgstr "Grupp Start Datum:"
|
||||
msgid "Batch Student"
|
||||
msgstr "Grupp Studerande"
|
||||
|
||||
#. Label of the batch_title (Data) field in DocType 'LMS Certificate'
|
||||
#. Label of the batch_title (Data) field in DocType 'LMS Certificate Request'
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
msgid "Batch Title"
|
||||
msgstr "Grupp Benämning"
|
||||
@@ -587,14 +611,15 @@ msgstr "Grupp Benämning"
|
||||
msgid "Batch Updated"
|
||||
msgstr "Grupp Uppdaterad"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:41
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:46
|
||||
msgid "Batch end date cannot be before the batch start date"
|
||||
msgstr "Grupp slutdatum får inte vara före grupp startdatum"
|
||||
|
||||
#. Group in LMS Course's connections
|
||||
#. Label of the batches (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/pages/Batches.vue:8 lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:60
|
||||
#: frontend/src/pages/Batches.vue:285
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:61
|
||||
msgid "Batches"
|
||||
msgstr "Grupper"
|
||||
|
||||
@@ -689,7 +714,8 @@ msgstr "Fritidskläder"
|
||||
#. Label of the category (Link) field in DocType 'LMS Batch'
|
||||
#. Label of the category (Data) field in DocType 'LMS Category'
|
||||
#. Label of the category (Link) field in DocType 'LMS Course'
|
||||
#: frontend/src/pages/BatchForm.vue:202 frontend/src/pages/Batches.vue:16
|
||||
#: frontend/src/pages/BatchForm.vue:202 frontend/src/pages/Batches.vue:49
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:29
|
||||
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:17
|
||||
#: frontend/src/pages/JobDetail.vue:102
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
@@ -756,6 +782,7 @@ msgid "Certification Name"
|
||||
msgstr "Certifiering Namn"
|
||||
|
||||
#. Label of the certified_participants (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:153
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Certified Participants"
|
||||
msgstr "Certifierade Deltagare"
|
||||
@@ -1048,7 +1075,7 @@ msgstr "Villkoret måste vara giltig python kod."
|
||||
msgid "Confirmation Email Sent"
|
||||
msgstr "Bekräftelse E-post Skickad"
|
||||
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:25
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:29
|
||||
msgid "Congratulations on getting certified!"
|
||||
msgstr "Grattis till certifiering!"
|
||||
|
||||
@@ -1057,8 +1084,10 @@ msgid "Contact the Administrator to enroll for this course."
|
||||
msgstr "Kontakta administratör för att registrera dig till denna kurs."
|
||||
|
||||
#. Label of the content (Text) field in DocType 'Course Lesson'
|
||||
#. Label of the content (Rating) field in DocType 'LMS Batch Feedback'
|
||||
#: frontend/src/pages/LessonForm.vue:62
|
||||
#: lms/lms/doctype/course_lesson/course_lesson.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "Content"
|
||||
msgstr "Innehåll "
|
||||
|
||||
@@ -1067,7 +1096,7 @@ msgid "Continue Learning"
|
||||
msgstr "Fortsätt lära dig"
|
||||
|
||||
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
|
||||
#: frontend/src/pages/Jobs.vue:120
|
||||
#: frontend/src/pages/Jobs.vue:152
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
msgid "Contract"
|
||||
msgstr "Avtal"
|
||||
@@ -1133,7 +1162,7 @@ msgstr "Land"
|
||||
#. Label of a Link in the LMS Workspace
|
||||
#. Label of a shortcut in the LMS Workspace
|
||||
#: frontend/src/components/Modals/BatchCourseModal.vue:20
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:23
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:38
|
||||
#: frontend/src/components/Modals/EvaluationModal.vue:20
|
||||
#: frontend/src/components/Modals/Event.vue:24
|
||||
#: lms/lms/doctype/batch_course/batch_course.json
|
||||
@@ -1220,7 +1249,7 @@ msgstr "Kurslärare"
|
||||
msgid "Course Lesson"
|
||||
msgstr "Kurslektion"
|
||||
|
||||
#: lms/www/lms.py:27
|
||||
#: lms/www/lms.py:28
|
||||
msgid "Course List"
|
||||
msgstr "Kurslista"
|
||||
|
||||
@@ -1270,7 +1299,7 @@ msgstr "Kurs Benämning"
|
||||
msgid "Course added to program"
|
||||
msgstr "Kurs tillagd till program"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:345
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:350
|
||||
msgid "Course already added to the batch."
|
||||
msgstr "Kurs har redan lagts till grupp."
|
||||
|
||||
@@ -1282,7 +1311,7 @@ msgstr "Kurs är borttagen"
|
||||
msgid "Course moved successfully"
|
||||
msgstr "Kurs flyttad"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:59
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:64
|
||||
#: lms/lms/doctype/lms_program/lms_program.py:19
|
||||
msgid "Course {0} has already been added to this batch."
|
||||
msgstr "Kurs {0} har redan lagts till i denna omgång."
|
||||
@@ -1333,10 +1362,6 @@ msgstr "Skapa Certifikat"
|
||||
msgid "Create LMS Certificate Evaluation"
|
||||
msgstr "Skapa Certifikat Utvärdering"
|
||||
|
||||
#: frontend/src/pages/Batches.vue:110
|
||||
msgid "Create a Batch"
|
||||
msgstr "Skapa Grupp"
|
||||
|
||||
#: frontend/src/pages/Courses.vue:132 lms/templates/onboarding_header.html:19
|
||||
msgid "Create a Course"
|
||||
msgstr "Skapa Kurs"
|
||||
@@ -1544,7 +1569,7 @@ msgstr "Inaktiverad"
|
||||
#: frontend/src/components/DiscussionReplies.vue:55
|
||||
#: lms/lms/widgets/NoPreviewModal.html:25 lms/templates/reviews.html:159
|
||||
msgid "Discard"
|
||||
msgstr "Förkasta"
|
||||
msgstr "Ångra"
|
||||
|
||||
#. Label of the show_discussions (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/pages/Batch.vue:81
|
||||
@@ -1732,6 +1757,10 @@ msgstr "Slut Tid"
|
||||
msgid "Enroll Now"
|
||||
msgstr "Registrera Nu"
|
||||
|
||||
#: frontend/src/pages/Batches.vue:274
|
||||
msgid "Enrolled"
|
||||
msgstr "Inskriven"
|
||||
|
||||
#: frontend/src/components/CourseCard.vue:43
|
||||
#: frontend/src/components/CourseCardOverlay.vue:104
|
||||
#: frontend/src/pages/CourseDetail.vue:33
|
||||
@@ -1742,7 +1771,7 @@ msgstr "Inskrivna Studenter"
|
||||
msgid "Enrolled successfully"
|
||||
msgstr "Inskriven"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:103
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:108
|
||||
msgid "Enrollment Confirmation for the Next Training Batch"
|
||||
msgstr "Inskrivning bekräftelse för nästa grupp utbildning"
|
||||
|
||||
@@ -1751,7 +1780,7 @@ msgstr "Inskrivning bekräftelse för nästa grupp utbildning"
|
||||
msgid "Enrollment Count"
|
||||
msgstr "Antal Inskrivna"
|
||||
|
||||
#: lms/lms/utils.py:1765
|
||||
#: lms/lms/utils.py:1693
|
||||
msgid "Enrollment Failed"
|
||||
msgstr "Registrering Misslyckad"
|
||||
|
||||
@@ -1821,7 +1850,7 @@ msgstr "Utvärdering Slutdatum"
|
||||
msgid "Evaluation Request"
|
||||
msgstr "Utvärdering Begäran"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:87
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:92
|
||||
msgid "Evaluation end date cannot be less than the batch end date."
|
||||
msgstr "Utvärdering slutdatum får inte vara tidigare än grupp slutdatum."
|
||||
|
||||
@@ -1836,7 +1865,7 @@ msgstr "Utvärdering sparad"
|
||||
#. Label of the evaluator (Link) field in DocType 'LMS Certificate Evaluation'
|
||||
#. Label of the evaluator (Link) field in DocType 'LMS Certificate Request'
|
||||
#: frontend/src/components/Modals/BatchCourseModal.vue:26
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:28
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:22
|
||||
#: frontend/src/pages/ProfileRoles.vue:22
|
||||
#: lms/lms/doctype/batch_course/batch_course.json
|
||||
#: lms/lms/doctype/course_evaluator/course_evaluator.json
|
||||
@@ -1914,7 +1943,7 @@ msgid "Expiration Date"
|
||||
msgstr "Utgång Datum"
|
||||
|
||||
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:39
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:33
|
||||
#: frontend/src/components/Modals/Event.vue:126
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
msgid "Expiry Date"
|
||||
@@ -1955,6 +1984,12 @@ msgstr "Misslyckad "
|
||||
msgid "Featured"
|
||||
msgstr "Utvald"
|
||||
|
||||
#. Label of the feedback (Small Text) field in DocType 'LMS Batch Feedback'
|
||||
#: frontend/src/components/BatchFeedback.vue:29
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "Feedback"
|
||||
msgstr "Återkoppling"
|
||||
|
||||
#: frontend/src/components/Assignment.vue:61
|
||||
msgid "Feel free to make edits to your submission if needed."
|
||||
msgstr "Känn dig fri att göra ändringar i din inlämning om det behövs."
|
||||
@@ -1974,7 +2009,7 @@ msgstr "Huvudämne/Studieinriktning"
|
||||
msgid "File Type"
|
||||
msgstr "Fil Typ"
|
||||
|
||||
#: frontend/src/pages/Jobs.vue:47
|
||||
#: frontend/src/pages/Jobs.vue:33
|
||||
msgid "Find the perfect job for you"
|
||||
msgstr "Hitta det perfekta jobbet för dig"
|
||||
|
||||
@@ -2007,7 +2042,7 @@ msgid "Free"
|
||||
msgstr "Gratis"
|
||||
|
||||
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
|
||||
#: frontend/src/pages/Jobs.vue:121
|
||||
#: frontend/src/pages/Jobs.vue:153
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
msgid "Freelance"
|
||||
msgstr "Frilansare"
|
||||
@@ -2049,7 +2084,7 @@ msgid "Full Name"
|
||||
msgstr "Fullständig Namn"
|
||||
|
||||
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
|
||||
#: frontend/src/pages/Jobs.vue:118
|
||||
#: frontend/src/pages/Jobs.vue:150
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
msgid "Full Time"
|
||||
msgstr "Heltid"
|
||||
@@ -2147,6 +2182,10 @@ msgstr "Huvudrubrik"
|
||||
msgid "Hello"
|
||||
msgstr "Hej"
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:11
|
||||
msgid "Help Us Improve"
|
||||
msgstr "Hjälp oss att förbättra"
|
||||
|
||||
#: lms/templates/courses_created.html:15
|
||||
msgid "Help others learn something new by creating a course."
|
||||
msgstr "Hjälp andra att lära sig något nytt genom att skapa kurs."
|
||||
@@ -2155,10 +2194,6 @@ msgstr "Hjälp andra att lära sig något nytt genom att skapa kurs."
|
||||
msgid "Help us improve our course material."
|
||||
msgstr "Hjälp oss att förbättra vårt kursmaterial."
|
||||
|
||||
#: lms/lms/web_template/courses_enrolled/courses_enrolled.html:18
|
||||
msgid "Here are a few courses we recommend for you to get started with {0}"
|
||||
msgstr "Här är några kurser vi rekommenderar för dig att komma igång med {0}"
|
||||
|
||||
#: lms/lms/notification/certificate_request_reminder/certificate_request_reminder.html:1
|
||||
#: lms/templates/emails/certificate_request_notification.html:1
|
||||
msgid "Hey {0}"
|
||||
@@ -2360,9 +2395,11 @@ msgid "Instructor Notes"
|
||||
msgstr "Lärare Anteckningar"
|
||||
|
||||
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch'
|
||||
#. Label of the instructors (Rating) field in DocType 'LMS Batch Feedback'
|
||||
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course'
|
||||
#: frontend/src/pages/BatchForm.vue:89 frontend/src/pages/CourseForm.vue:154
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
msgid "Instructors"
|
||||
msgstr "Lärare"
|
||||
@@ -2437,7 +2474,7 @@ msgstr "Är SCORM App"
|
||||
|
||||
#. Label of the issue_date (Date) field in DocType 'Certification'
|
||||
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:34
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:28
|
||||
#: frontend/src/components/Modals/Event.vue:121
|
||||
#: lms/lms/doctype/certification/certification.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
@@ -2450,6 +2487,7 @@ msgid "Issued On"
|
||||
msgstr "Utfärdad"
|
||||
|
||||
#: frontend/src/pages/ProfileAbout.vue:56
|
||||
#: frontend/src/pages/ProfileCertificates.vue:17
|
||||
#: lms/templates/certificates_section.html:11
|
||||
msgid "Issued on"
|
||||
msgstr "Utfärdad"
|
||||
@@ -2487,7 +2525,7 @@ msgstr "Jobb Styrelse Benämning"
|
||||
msgid "Job Details"
|
||||
msgstr "Jobb Detaljer"
|
||||
|
||||
#: lms/www/lms.py:108
|
||||
#: lms/www/lms.py:109
|
||||
msgid "Job Openings"
|
||||
msgstr "Jobb Erbjudande"
|
||||
|
||||
@@ -2566,6 +2604,11 @@ msgstr "Emblem Tilldelning"
|
||||
msgid "LMS Batch"
|
||||
msgstr "Grupp"
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "LMS Batch Feedback"
|
||||
msgstr "Grupp Återkoppling"
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
||||
msgid "LMS Batch Old"
|
||||
@@ -2725,6 +2768,7 @@ msgstr "Källa"
|
||||
#: lms/lms/doctype/lms_assignment/lms_assignment.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
#: lms/lms/doctype/lms_course_progress/lms_course_progress.json
|
||||
@@ -2870,16 +2914,13 @@ msgid "LiveCode URL"
|
||||
msgstr "LiveCode URL"
|
||||
|
||||
#: frontend/src/components/Members.vue:106
|
||||
#: frontend/src/pages/Assignments.vue:71
|
||||
#: frontend/src/pages/Assignments.vue:71 frontend/src/pages/Batches.vue:88
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:71
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:39
|
||||
#: frontend/src/pages/Quizzes.vue:51
|
||||
msgid "Load More"
|
||||
msgstr "Ladda Mer"
|
||||
|
||||
#: frontend/src/pages/Batches.vue:40
|
||||
msgid "Loading Batches..."
|
||||
msgstr "Laddar Grupper..."
|
||||
|
||||
#. Option for the 'Auto Recording' (Select) field in DocType 'LMS Live Class'
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
msgid "Local"
|
||||
@@ -2902,7 +2943,7 @@ msgstr "Platspreferens"
|
||||
|
||||
#: frontend/src/components/AssignmentBlock.vue:13
|
||||
#: frontend/src/components/NoPermission.vue:28
|
||||
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:175
|
||||
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:178
|
||||
#: frontend/src/pages/Lesson.vue:24
|
||||
msgid "Login"
|
||||
msgstr "Logga In"
|
||||
@@ -3007,6 +3048,7 @@ msgstr "Medium:"
|
||||
#. Label of the member (Link) field in DocType 'Exercise Submission'
|
||||
#. Label of the member (Link) field in DocType 'LMS Assignment Submission'
|
||||
#. Label of the member (Link) field in DocType 'LMS Badge Assignment'
|
||||
#. Label of the member (Link) field in DocType 'LMS Batch Feedback'
|
||||
#. Label of the member (Link) field in DocType 'LMS Certificate'
|
||||
#. Label of the member (Link) field in DocType 'LMS Certificate Evaluation'
|
||||
#. Label of the member (Link) field in DocType 'LMS Certificate Request'
|
||||
@@ -3024,6 +3066,7 @@ msgstr "Medium:"
|
||||
#: lms/lms/doctype/exercise_submission/exercise_submission.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.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
|
||||
@@ -3049,8 +3092,15 @@ msgstr "Medlem Kohort"
|
||||
msgid "Member Email"
|
||||
msgstr "Medlem E-post"
|
||||
|
||||
#. Label of the member_image (Attach Image) field in DocType 'LMS Batch
|
||||
#. Feedback'
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "Member Image"
|
||||
msgstr "Medlemsbild"
|
||||
|
||||
#. 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 Batch Feedback'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Certificate'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Certificate
|
||||
#. Evaluation'
|
||||
@@ -3061,6 +3111,7 @@ msgstr "Medlem E-post"
|
||||
#. 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_batch_feedback/lms_batch_feedback.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
|
||||
@@ -3223,7 +3274,7 @@ msgid "My calendar"
|
||||
msgstr "Min kalender"
|
||||
|
||||
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
||||
#: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:30
|
||||
#: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:17
|
||||
#: frontend/src/pages/Courses.vue:45 frontend/src/pages/Programs.vue:14
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "New"
|
||||
@@ -3237,15 +3288,15 @@ msgstr "Ny Uppgift"
|
||||
msgid "New Assignment Submission"
|
||||
msgstr "Ny Uppgift Inlämning"
|
||||
|
||||
#: lms/public/js/common_functions.js:255 lms/www/lms.py:86
|
||||
#: lms/public/js/common_functions.js:255 lms/www/lms.py:87
|
||||
msgid "New Batch"
|
||||
msgstr "Ny Grupp"
|
||||
|
||||
#: lms/www/lms.py:37
|
||||
#: lms/www/lms.py:38
|
||||
msgid "New Course"
|
||||
msgstr "Ny Kurs"
|
||||
|
||||
#: frontend/src/pages/Jobs.vue:39
|
||||
#: frontend/src/pages/Jobs.vue:23
|
||||
msgid "New Job"
|
||||
msgstr "Nya Jobb"
|
||||
|
||||
@@ -3278,11 +3329,11 @@ msgstr "Nytt Frågesport"
|
||||
msgid "New Sign Up"
|
||||
msgstr "Ny Registrering"
|
||||
|
||||
#: lms/lms/utils.py:623
|
||||
#: lms/lms/utils.py:605
|
||||
msgid "New comment in batch {0}"
|
||||
msgstr "Ny kommentar i grupp {0}"
|
||||
|
||||
#: lms/lms/utils.py:616
|
||||
#: lms/lms/utils.py:598
|
||||
msgid "New reply on the topic {0} in course {1}"
|
||||
msgstr "Nytt svar i ämne {0} i kurs {1}"
|
||||
|
||||
@@ -3324,7 +3375,7 @@ msgstr "Inga tillkännagivanden"
|
||||
msgid "No assignments found"
|
||||
msgstr "Inga uppgifter hittades"
|
||||
|
||||
#: frontend/src/pages/Batches.vue:125
|
||||
#: frontend/src/pages/Batches.vue:73
|
||||
msgid "No batches found"
|
||||
msgstr "Inga grupper hittades"
|
||||
|
||||
@@ -3348,11 +3399,15 @@ msgstr "Inga kurser i detta program"
|
||||
msgid "No courses under review"
|
||||
msgstr "Inga kurser under granskning"
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:101
|
||||
msgid "No feedback received yet."
|
||||
msgstr "Ingen återkoppling mottagen ännu."
|
||||
|
||||
#: frontend/src/pages/ProfileAbout.vue:12
|
||||
msgid "No introduction"
|
||||
msgstr "Ingen introduktion"
|
||||
|
||||
#: frontend/src/pages/Jobs.vue:63
|
||||
#: frontend/src/pages/Jobs.vue:77
|
||||
msgid "No jobs posted"
|
||||
msgstr "Inga jobb utannonserade"
|
||||
|
||||
@@ -3360,6 +3415,10 @@ msgstr "Inga jobb utannonserade"
|
||||
msgid "No live classes scheduled"
|
||||
msgstr "Inga live lektioner schemalagda"
|
||||
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:81
|
||||
msgid "No participants found"
|
||||
msgstr "Inga deltagare hittades"
|
||||
|
||||
#: frontend/src/pages/Programs.vue:91
|
||||
msgid "No programs found"
|
||||
msgstr "Inga program hittades"
|
||||
@@ -3384,10 +3443,6 @@ msgstr "Inga kommande utvärderingar."
|
||||
msgid "No {0}"
|
||||
msgstr "Ingen {0}"
|
||||
|
||||
#: frontend/src/pages/Batches.vue:84
|
||||
msgid "No {0} batches"
|
||||
msgstr "Inga {0} grupper"
|
||||
|
||||
#: frontend/src/pages/Courses.vue:107
|
||||
msgid "No {0} courses"
|
||||
msgstr "Inga {0} kurser"
|
||||
@@ -3420,7 +3475,7 @@ msgstr "Inte tillgänglig för förhandsgranskning"
|
||||
msgid "Not Graded"
|
||||
msgstr "Ej Betygsatt"
|
||||
|
||||
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:143
|
||||
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:146
|
||||
msgid "Not Permitted"
|
||||
msgstr "Ej Tillåtet"
|
||||
|
||||
@@ -3614,7 +3669,7 @@ msgid "Pan Number"
|
||||
msgstr "Pan Nummer"
|
||||
|
||||
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
|
||||
#: frontend/src/pages/Jobs.vue:119
|
||||
#: frontend/src/pages/Jobs.vue:151
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
msgid "Part Time"
|
||||
msgstr "Deltid"
|
||||
@@ -3765,11 +3820,11 @@ 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:1887 lms/lms/utils.py:1891
|
||||
#: lms/lms/utils.py:1815 lms/lms/utils.py:1819
|
||||
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."
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:256
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:261
|
||||
msgid "Please enable Zoom Settings to use this feature."
|
||||
msgstr "Aktivera Zoom Inställningar för att använda denna funktion."
|
||||
|
||||
@@ -3786,7 +3841,7 @@ msgid "Please enter a title."
|
||||
msgstr "Ange benämning."
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:40
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:122
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:125
|
||||
msgid "Please enter a valid URL."
|
||||
msgstr "Ange giltig URL."
|
||||
|
||||
@@ -3794,7 +3849,7 @@ msgstr "Ange giltig URL."
|
||||
msgid "Please enter a valid time in the format HH:mm."
|
||||
msgstr "Ange giltig tid i format HH:mm."
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:116
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:119
|
||||
msgid "Please enter the URL for assignment submission."
|
||||
msgstr "Ange URL för uppgift inlämning."
|
||||
|
||||
@@ -3802,7 +3857,7 @@ msgstr "Ange URL för uppgift inlämning."
|
||||
msgid "Please enter your answer"
|
||||
msgstr "Ange ditt svar"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:66
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:71
|
||||
msgid "Please install the Payments app to create a paid batches."
|
||||
msgstr "Installera Betalning app för att skapa betalda grupper."
|
||||
|
||||
@@ -3822,7 +3877,7 @@ msgstr "Logga in för att komma åt uppgift."
|
||||
msgid "Please login to access the quiz."
|
||||
msgstr "Logga in för att komma åt frågesport."
|
||||
|
||||
#: frontend/src/components/NoPermission.vue:25 frontend/src/pages/Batch.vue:154
|
||||
#: frontend/src/components/NoPermission.vue:25 frontend/src/pages/Batch.vue:157
|
||||
msgid "Please login to access this page."
|
||||
msgstr "Logga in för att komma till denna sida."
|
||||
|
||||
@@ -3863,7 +3918,7 @@ msgstr "Vidta lämpliga åtgärder {0}"
|
||||
msgid "Please upload a SCORM package"
|
||||
msgstr "Ladda upp SCORM App"
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:119
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:122
|
||||
msgid "Please upload the assignment file."
|
||||
msgstr "Ladda upp tilldelning fil."
|
||||
|
||||
@@ -3897,7 +3952,7 @@ msgid "Possible Answer 4"
|
||||
msgstr "Möjligt svar 4"
|
||||
|
||||
#: frontend/src/components/DiscussionReplies.vue:52
|
||||
#: frontend/src/components/DiscussionReplies.vue:86
|
||||
#: frontend/src/components/DiscussionReplies.vue:87
|
||||
msgid "Post"
|
||||
msgstr "Post"
|
||||
|
||||
@@ -4326,19 +4381,19 @@ msgstr "Rollpreferens"
|
||||
msgid "Route"
|
||||
msgstr "Sökväg"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:199
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:204
|
||||
msgid "Row #{0} Date cannot be outside the batch duration."
|
||||
msgstr "Rad #{0} Datum kan inte vara utanför grupp varaktighet."
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:194
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:199
|
||||
msgid "Row #{0} End time cannot be outside the batch duration."
|
||||
msgstr "Rad #{0} Sluttid kan inte vara utanför grupp varaktighet."
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:176
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:181
|
||||
msgid "Row #{0} Start time cannot be greater than or equal to end time."
|
||||
msgstr "Rad #{0} Starttid kan inte vara senare än eller lika med sluttid."
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:185
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:190
|
||||
msgid "Row #{0} Start time cannot be outside the batch duration."
|
||||
msgstr "Rad #{0} Starttid kan inte vara utanför grupp varaktighet."
|
||||
|
||||
@@ -4419,10 +4474,18 @@ msgstr "Resultat"
|
||||
msgid "Score Out Of"
|
||||
msgstr "Resultat av"
|
||||
|
||||
#: frontend/src/components/Members.vue:15
|
||||
#: frontend/src/components/Members.vue:15 frontend/src/pages/Jobs.vue:38
|
||||
msgid "Search"
|
||||
msgstr "Sök"
|
||||
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:17
|
||||
msgid "Search by Name"
|
||||
msgstr "Sök efter Namn"
|
||||
|
||||
#: frontend/src/pages/Batches.vue:39
|
||||
msgid "Search by Title"
|
||||
msgstr "Sök efter Benämning"
|
||||
|
||||
#: frontend/src/pages/Assignments.vue:25
|
||||
msgid "Search by title"
|
||||
msgstr "Sök efter benämning"
|
||||
@@ -4719,7 +4782,7 @@ msgstr "Län"
|
||||
#. Label of the statistics (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/components/BatchStudents.vue:5
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:133
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:134
|
||||
msgid "Statistics"
|
||||
msgstr "Statistik"
|
||||
|
||||
@@ -4784,7 +4847,7 @@ msgstr "Studerande Namn"
|
||||
msgid "Student Reviews"
|
||||
msgstr "Student Recensioner"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:48
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:53
|
||||
msgid "Student {0} has already been added to this batch."
|
||||
msgstr "Student {0} har redan lagts till denna grupp."
|
||||
|
||||
@@ -4832,6 +4895,7 @@ msgstr "Inlämning Lista"
|
||||
msgid "Submission by"
|
||||
msgstr "Inlämning av"
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:14
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:9
|
||||
#: frontend/src/components/Modals/BatchCourseModal.vue:9
|
||||
#: frontend/src/components/Modals/EvaluationModal.vue:9
|
||||
@@ -4889,7 +4953,7 @@ msgstr "Översikt"
|
||||
msgid "Sunday"
|
||||
msgstr "Söndag"
|
||||
|
||||
#: lms/lms/api.py:964
|
||||
#: lms/lms/api.py:983
|
||||
msgid "Suspicious pattern found in {0}: {1}"
|
||||
msgstr "Misstänkt mönster hittat i {0}: {1}"
|
||||
|
||||
@@ -4915,6 +4979,7 @@ msgstr "Misstänkt mönster hittat i {0}: {1}"
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
||||
#: lms/lms/doctype/lms_category/lms_category.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
@@ -4997,6 +5062,10 @@ msgstr "Tester"
|
||||
msgid "Text"
|
||||
msgstr "Text"
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:7
|
||||
msgid "Thank you for providing your feedback!"
|
||||
msgstr "Tack för återkoppling!"
|
||||
|
||||
#: lms/templates/emails/lms_course_interest.html:17
|
||||
#: lms/templates/emails/lms_invite_request_approved.html:15
|
||||
#: lms/templates/emails/mentor_request_creation_email.html:7
|
||||
@@ -5004,7 +5073,7 @@ msgstr "Text"
|
||||
msgid "Thanks and Regards"
|
||||
msgstr "Tack och Hälsningar"
|
||||
|
||||
#: lms/lms/utils.py:1794
|
||||
#: lms/lms/utils.py:1722
|
||||
msgid "The batch is full. Please contact the Administrator."
|
||||
msgstr "Gruppen är full. Kontakta administratör."
|
||||
|
||||
@@ -5028,9 +5097,9 @@ msgstr "Tiden är redan bokad av en annan deltagare."
|
||||
msgid "The status of your application has changed."
|
||||
msgstr "Status för din ansökan har förändrats."
|
||||
|
||||
#: frontend/src/pages/Batches.vue:129
|
||||
msgid "There are no batches available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr "Det finns inga grupper tillgängliga just nu. Håll utkik, färska inlärningsupplevelser är på väg snart!"
|
||||
#: frontend/src/pages/Batches.vue:77
|
||||
msgid "There are no batches matching the criteria. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr "Det finns inga grupper som matchar kriterierna. Håll utkik, nya inlärningsupplevelser är snart på väg!"
|
||||
|
||||
#: frontend/src/components/CreateOutline.vue:12
|
||||
msgid "There are no chapters in this course. Create and manage chapters from here."
|
||||
@@ -5040,11 +5109,15 @@ 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/CertifiedParticipants.vue:84
|
||||
msgid "There are no participants matching this criteria."
|
||||
msgstr "Det finns inga deltagare som stämmer med dessa kriterier."
|
||||
|
||||
#: 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!"
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:146
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:151
|
||||
msgid "There are no seats available in this batch."
|
||||
msgstr "Det finns inga platser tillgängliga i denna grupp."
|
||||
|
||||
@@ -5060,7 +5133,7 @@ msgstr "Det finns inga inlämningar för denna uppgift."
|
||||
msgid "There are no {0} on this site."
|
||||
msgstr "Det finns ingen {0} på denna webbplats."
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:82
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:85
|
||||
msgid "There has been an update on your submission for assignment {0}"
|
||||
msgstr "Det har skett uppdatering av din inlämning för uppgift {0}"
|
||||
|
||||
@@ -5091,7 +5164,7 @@ msgstr "Denna klass har avslutats"
|
||||
msgid "This course has:"
|
||||
msgstr "Denna kurs har:"
|
||||
|
||||
#: lms/lms/utils.py:1645
|
||||
#: lms/lms/utils.py:1573
|
||||
msgid "This course is free."
|
||||
msgstr "Denna kurs är gratis."
|
||||
|
||||
@@ -5235,7 +5308,7 @@ msgstr "Till"
|
||||
msgid "To Date"
|
||||
msgstr "Till Datum"
|
||||
|
||||
#: lms/lms/utils.py:1656
|
||||
#: lms/lms/utils.py:1584
|
||||
msgid "To join this batch, please contact the Administrator."
|
||||
msgstr "För att gå med i denna grupp, kontakta Administratör."
|
||||
|
||||
@@ -5291,7 +5364,7 @@ msgstr "Twitter"
|
||||
#: frontend/src/components/Modals/Question.vue:54
|
||||
#: frontend/src/pages/AssignmentForm.vue:39
|
||||
#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:157
|
||||
#: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:16
|
||||
#: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:55
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
#: lms/lms/doctype/lms_assignment/lms_assignment.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
@@ -5337,6 +5410,10 @@ msgstr "Under Recension"
|
||||
msgid "Unlisted"
|
||||
msgstr "Ej Listad"
|
||||
|
||||
#: frontend/src/pages/Batches.vue:262 frontend/src/pages/Batches.vue:278
|
||||
msgid "Unpublished"
|
||||
msgstr "Opublicerad"
|
||||
|
||||
#: frontend/src/components/Modals/EditCoverImage.vue:60
|
||||
#: frontend/src/components/UnsplashImageBrowser.vue:54
|
||||
msgid "Unsplash"
|
||||
@@ -5354,12 +5431,13 @@ msgstr "Ostrukturerad Roll"
|
||||
|
||||
#. Option for the 'Status' (Select) field in DocType 'Cohort'
|
||||
#. Label of the upcoming (Check) field in DocType 'LMS Course'
|
||||
#: frontend/src/pages/Batches.vue:258 frontend/src/pages/Batches.vue:276
|
||||
#: frontend/src/pages/CourseForm.vue:184 lms/lms/doctype/cohort/cohort.json
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
msgid "Upcoming"
|
||||
msgstr "Kommande"
|
||||
|
||||
#: frontend/src/pages/Batch.vue:166
|
||||
#: frontend/src/pages/Batch.vue:169
|
||||
msgid "Upcoming Batches"
|
||||
msgstr "Kommande grupper"
|
||||
|
||||
@@ -5421,7 +5499,7 @@ msgstr "Användarinmatning"
|
||||
msgid "User Skill"
|
||||
msgstr "Användarkompetens"
|
||||
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.py:37
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.py:40
|
||||
msgid "User {0} has reported the job post {1}"
|
||||
msgstr "Användare {0} har rapporterat jobb post {1}"
|
||||
|
||||
@@ -5446,6 +5524,11 @@ msgstr "Användarens svar"
|
||||
msgid "Valid email and name required"
|
||||
msgstr "Giltig e-post och namn erfodras"
|
||||
|
||||
#. Label of the value (Rating) field in DocType 'LMS Batch Feedback'
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "Value"
|
||||
msgstr "Värde"
|
||||
|
||||
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "Value Change"
|
||||
@@ -5569,7 +5652,7 @@ msgstr "Du är redan inskriven för denna grupp."
|
||||
msgid "You are already enrolled for this course."
|
||||
msgstr "Du är redan inskriven på denna kurs."
|
||||
|
||||
#: frontend/src/pages/Batch.vue:148
|
||||
#: frontend/src/pages/Batch.vue:151
|
||||
msgid "You are not a member of this batch. Please checkout our upcoming batches."
|
||||
msgstr "Du är inte i denna omgång. Kolla in våra kommande omgångar."
|
||||
|
||||
@@ -5606,10 +5689,6 @@ msgstr "Du kan prova detta frågesport {0}."
|
||||
msgid "You can find their resume attached to this email."
|
||||
msgstr "Du kan hitta deras CV bifogat till detta e-post meddelande."
|
||||
|
||||
#: frontend/src/pages/Batches.vue:113
|
||||
msgid "You can link courses and assessments to it."
|
||||
msgstr "Du kan koppla kurser och bedömningar till den."
|
||||
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:115
|
||||
msgid "You cannot schedule evaluations after {0}."
|
||||
msgstr "Du kan inte schemalägga utvärderingar efter {0}."
|
||||
@@ -5671,10 +5750,6 @@ msgstr "Du har inte skapat några frågesporter än. För att skapa ny frågespo
|
||||
msgid "You have opted to be notified for this course. You will receive an email when the course becomes available."
|
||||
msgstr "Du har valt att bli meddelad om denna kurs. Du kommer att få ett e-post meddelande när kursen blir tillgänglig."
|
||||
|
||||
#: lms/lms/web_template/courses_enrolled/courses_enrolled.html:17
|
||||
msgid "You haven't enrolled for any courses"
|
||||
msgstr "Du är inte inskriven till någon kurs"
|
||||
|
||||
#: frontend/src/components/CourseCardOverlay.vue:146
|
||||
msgid "You need to login first to enroll for this course"
|
||||
msgstr "Du måste logga in först för att registrera dig till denna kurs"
|
||||
@@ -5769,10 +5844,6 @@ msgstr "har varit"
|
||||
msgid "in the last"
|
||||
msgstr "i sista"
|
||||
|
||||
#: frontend/src/pages/ProfileCertificates.vue:17
|
||||
msgid "issued on"
|
||||
msgstr "utfärdad"
|
||||
|
||||
#: lms/templates/signup-form.html:12
|
||||
msgid "jane@example.com"
|
||||
msgstr "användare@bolag"
|
||||
@@ -5793,9 +5864,9 @@ msgstr "av "
|
||||
msgid "out of"
|
||||
msgstr "av"
|
||||
|
||||
#: frontend/src/components/JobCard.vue:37
|
||||
msgid "posted by"
|
||||
msgstr "postad av "
|
||||
#: frontend/src/components/JobCard.vue:30
|
||||
msgid "posted"
|
||||
msgstr "postat"
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:386
|
||||
msgid "question_detail"
|
||||
@@ -5817,7 +5888,7 @@ msgstr "veckor"
|
||||
msgid "you can"
|
||||
msgstr "du kan"
|
||||
|
||||
#: lms/lms/api.py:761 lms/lms/api.py:769
|
||||
#: lms/lms/api.py:780 lms/lms/api.py:788
|
||||
msgid "{0} Settings not found"
|
||||
msgstr "{0} Inställningar hittades inte"
|
||||
|
||||
@@ -5845,7 +5916,11 @@ msgstr "{0} är redan mentor för kurs {1}"
|
||||
msgid "{0} is already a {1} of the course {2}"
|
||||
msgstr "{0} är redan {1} av kurs {2}"
|
||||
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:59
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:91
|
||||
msgid "{0} is already certified for the batch {1}"
|
||||
msgstr "{0} är redan certifierad för grupp {1}"
|
||||
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:72
|
||||
msgid "{0} is already certified for the course {1}"
|
||||
msgstr "{0} är redan certifierad för kurs {1}"
|
||||
|
||||
@@ -5853,7 +5928,7 @@ msgstr "{0} är redan certifierad för kurs {1}"
|
||||
msgid "{0} is your evaluator"
|
||||
msgstr "{0} är din utvärderare"
|
||||
|
||||
#: lms/lms/utils.py:700
|
||||
#: lms/lms/utils.py:682
|
||||
msgid "{0} mentioned you in a comment"
|
||||
msgstr "{0} nämnde dig i en kommentar"
|
||||
|
||||
@@ -5861,11 +5936,11 @@ msgstr "{0} nämnde dig i en kommentar"
|
||||
msgid "{0} mentioned you in a comment in your batch."
|
||||
msgstr "{0} nämnde dig i en kommentar i din grupp."
|
||||
|
||||
#: lms/lms/utils.py:653 lms/lms/utils.py:659
|
||||
#: lms/lms/utils.py:635 lms/lms/utils.py:641
|
||||
msgid "{0} mentioned you in a comment in {1}"
|
||||
msgstr "{0} hänvisade dig i kommentar i {1}"
|
||||
|
||||
#: lms/lms/utils.py:476
|
||||
#: lms/lms/utils.py:458
|
||||
msgid "{0}k"
|
||||
msgstr "{0}k"
|
||||
|
||||
|
||||
367
lms/locale/tr.po
367
lms/locale/tr.po
File diff suppressed because it is too large
Load Diff
277
lms/locale/zh.po
277
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-10 16:04+0000\n"
|
||||
"PO-Revision-Date: 2025-01-13 06:31\n"
|
||||
"POT-Creation-Date: 2025-01-17 16:04+0000\n"
|
||||
"PO-Revision-Date: 2025-01-20 11:13\n"
|
||||
"Last-Translator: jannat@frappe.io\n"
|
||||
"Language-Team: Chinese Simplified\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@@ -75,7 +75,7 @@ msgstr ""
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batch.vue:93
|
||||
#: frontend/src/pages/Batch.vue:96
|
||||
msgid "About this batch"
|
||||
msgstr ""
|
||||
|
||||
@@ -212,14 +212,26 @@ msgid "Admin"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a role
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
#: frontend/src/pages/Batches.vue:270 lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "All"
|
||||
msgstr "所有"
|
||||
|
||||
#: frontend/src/pages/Batches.vue:26
|
||||
msgid "All Batches"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:12
|
||||
msgid "All Certified Participants"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/widgets/BreadCrumb.html:3
|
||||
msgid "All Courses"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:51
|
||||
msgid "All Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/quiz/quiz.html:141
|
||||
msgid "All Submissions"
|
||||
msgstr ""
|
||||
@@ -279,7 +291,7 @@ msgstr ""
|
||||
msgid "Amount Field"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:70
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:75
|
||||
msgid "Amount and currency are required for paid batches."
|
||||
msgstr ""
|
||||
|
||||
@@ -353,6 +365,10 @@ msgstr "已批准"
|
||||
msgid "Apps"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:259 frontend/src/pages/Batches.vue:277
|
||||
msgid "Archived"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the user_category (Check) field in DocType 'LMS Settings'
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Ask User Category during Signup"
|
||||
@@ -381,7 +397,7 @@ msgstr ""
|
||||
msgid "Assessment added successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:80
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:85
|
||||
msgid "Assessment {0} has already been added to this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -473,6 +489,10 @@ msgstr ""
|
||||
msgid "Average Rating"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:38
|
||||
msgid "Average of Feedback Received"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Lesson.vue:96
|
||||
msgid "Back to Course"
|
||||
msgstr ""
|
||||
@@ -493,10 +513,12 @@ msgstr ""
|
||||
msgid "Badge Image"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the batch (Link) field in DocType 'LMS Batch Feedback'
|
||||
#. Label of the batch_name (Link) field in DocType 'LMS Certificate'
|
||||
#. Label of the batch_name (Link) field in DocType 'LMS Certificate Request'
|
||||
#. Label of the batch_name (Link) field in DocType 'LMS Live Class'
|
||||
#: frontend/src/components/Modals/Event.vue:32
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
@@ -578,7 +600,9 @@ msgstr ""
|
||||
msgid "Batch Student"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the batch_title (Data) field in DocType 'LMS Certificate'
|
||||
#. Label of the batch_title (Data) field in DocType 'LMS Certificate Request'
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
msgid "Batch Title"
|
||||
msgstr ""
|
||||
@@ -587,14 +611,15 @@ msgstr ""
|
||||
msgid "Batch Updated"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:41
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:46
|
||||
msgid "Batch end date cannot be before the batch start date"
|
||||
msgstr ""
|
||||
|
||||
#. Group in LMS Course's connections
|
||||
#. Label of the batches (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/pages/Batches.vue:8 lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:60
|
||||
#: frontend/src/pages/Batches.vue:285
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:61
|
||||
msgid "Batches"
|
||||
msgstr ""
|
||||
|
||||
@@ -689,7 +714,8 @@ msgstr ""
|
||||
#. Label of the category (Link) field in DocType 'LMS Batch'
|
||||
#. Label of the category (Data) field in DocType 'LMS Category'
|
||||
#. Label of the category (Link) field in DocType 'LMS Course'
|
||||
#: frontend/src/pages/BatchForm.vue:202 frontend/src/pages/Batches.vue:16
|
||||
#: frontend/src/pages/BatchForm.vue:202 frontend/src/pages/Batches.vue:49
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:29
|
||||
#: frontend/src/pages/CourseForm.vue:147 frontend/src/pages/Courses.vue:17
|
||||
#: frontend/src/pages/JobDetail.vue:102
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
@@ -756,6 +782,7 @@ msgid "Certification Name"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the certified_participants (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:153
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json
|
||||
msgid "Certified Participants"
|
||||
msgstr ""
|
||||
@@ -1048,7 +1075,7 @@ msgstr ""
|
||||
msgid "Confirmation Email Sent"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:25
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:29
|
||||
msgid "Congratulations on getting certified!"
|
||||
msgstr ""
|
||||
|
||||
@@ -1057,8 +1084,10 @@ msgid "Contact the Administrator to enroll for this course."
|
||||
msgstr ""
|
||||
|
||||
#. Label of the content (Text) field in DocType 'Course Lesson'
|
||||
#. Label of the content (Rating) field in DocType 'LMS Batch Feedback'
|
||||
#: frontend/src/pages/LessonForm.vue:62
|
||||
#: lms/lms/doctype/course_lesson/course_lesson.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "Content"
|
||||
msgstr ""
|
||||
|
||||
@@ -1067,7 +1096,7 @@ msgid "Continue Learning"
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
|
||||
#: frontend/src/pages/Jobs.vue:120
|
||||
#: frontend/src/pages/Jobs.vue:152
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
msgid "Contract"
|
||||
msgstr "合同"
|
||||
@@ -1133,7 +1162,7 @@ msgstr "国家"
|
||||
#. Label of a Link in the LMS Workspace
|
||||
#. Label of a shortcut in the LMS Workspace
|
||||
#: frontend/src/components/Modals/BatchCourseModal.vue:20
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:23
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:38
|
||||
#: frontend/src/components/Modals/EvaluationModal.vue:20
|
||||
#: frontend/src/components/Modals/Event.vue:24
|
||||
#: lms/lms/doctype/batch_course/batch_course.json
|
||||
@@ -1220,7 +1249,7 @@ msgstr ""
|
||||
msgid "Course Lesson"
|
||||
msgstr ""
|
||||
|
||||
#: lms/www/lms.py:27
|
||||
#: lms/www/lms.py:28
|
||||
msgid "Course List"
|
||||
msgstr ""
|
||||
|
||||
@@ -1270,7 +1299,7 @@ msgstr ""
|
||||
msgid "Course added to program"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:345
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:350
|
||||
msgid "Course already added to the batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -1282,7 +1311,7 @@ msgstr ""
|
||||
msgid "Course moved successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:59
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:64
|
||||
#: lms/lms/doctype/lms_program/lms_program.py:19
|
||||
msgid "Course {0} has already been added to this batch."
|
||||
msgstr ""
|
||||
@@ -1333,10 +1362,6 @@ msgstr ""
|
||||
msgid "Create LMS Certificate Evaluation"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:110
|
||||
msgid "Create a Batch"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:132 lms/templates/onboarding_header.html:19
|
||||
msgid "Create a Course"
|
||||
msgstr ""
|
||||
@@ -1732,6 +1757,10 @@ msgstr ""
|
||||
msgid "Enroll Now"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:274
|
||||
msgid "Enrolled"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/CourseCard.vue:43
|
||||
#: frontend/src/components/CourseCardOverlay.vue:104
|
||||
#: frontend/src/pages/CourseDetail.vue:33
|
||||
@@ -1742,7 +1771,7 @@ msgstr ""
|
||||
msgid "Enrolled successfully"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:103
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:108
|
||||
msgid "Enrollment Confirmation for the Next Training Batch"
|
||||
msgstr ""
|
||||
|
||||
@@ -1751,7 +1780,7 @@ msgstr ""
|
||||
msgid "Enrollment Count"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1765
|
||||
#: lms/lms/utils.py:1693
|
||||
msgid "Enrollment Failed"
|
||||
msgstr ""
|
||||
|
||||
@@ -1821,7 +1850,7 @@ msgstr ""
|
||||
msgid "Evaluation Request"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:87
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:92
|
||||
msgid "Evaluation end date cannot be less than the batch end date."
|
||||
msgstr ""
|
||||
|
||||
@@ -1836,7 +1865,7 @@ msgstr ""
|
||||
#. Label of the evaluator (Link) field in DocType 'LMS Certificate Evaluation'
|
||||
#. Label of the evaluator (Link) field in DocType 'LMS Certificate Request'
|
||||
#: frontend/src/components/Modals/BatchCourseModal.vue:26
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:28
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:22
|
||||
#: frontend/src/pages/ProfileRoles.vue:22
|
||||
#: lms/lms/doctype/batch_course/batch_course.json
|
||||
#: lms/lms/doctype/course_evaluator/course_evaluator.json
|
||||
@@ -1914,7 +1943,7 @@ msgid "Expiration Date"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:39
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:33
|
||||
#: frontend/src/components/Modals/Event.vue:126
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
msgid "Expiry Date"
|
||||
@@ -1955,6 +1984,12 @@ msgstr ""
|
||||
msgid "Featured"
|
||||
msgstr "精选"
|
||||
|
||||
#. Label of the feedback (Small Text) field in DocType 'LMS Batch Feedback'
|
||||
#: frontend/src/components/BatchFeedback.vue:29
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "Feedback"
|
||||
msgstr "反馈"
|
||||
|
||||
#: frontend/src/components/Assignment.vue:61
|
||||
msgid "Feel free to make edits to your submission if needed."
|
||||
msgstr ""
|
||||
@@ -1974,7 +2009,7 @@ msgstr ""
|
||||
msgid "File Type"
|
||||
msgstr "文件类型"
|
||||
|
||||
#: frontend/src/pages/Jobs.vue:47
|
||||
#: frontend/src/pages/Jobs.vue:33
|
||||
msgid "Find the perfect job for you"
|
||||
msgstr ""
|
||||
|
||||
@@ -2007,7 +2042,7 @@ msgid "Free"
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
|
||||
#: frontend/src/pages/Jobs.vue:121
|
||||
#: frontend/src/pages/Jobs.vue:153
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
msgid "Freelance"
|
||||
msgstr ""
|
||||
@@ -2049,7 +2084,7 @@ msgid "Full Name"
|
||||
msgstr "全名"
|
||||
|
||||
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
|
||||
#: frontend/src/pages/Jobs.vue:118
|
||||
#: frontend/src/pages/Jobs.vue:150
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
msgid "Full Time"
|
||||
msgstr ""
|
||||
@@ -2147,6 +2182,10 @@ msgstr ""
|
||||
msgid "Hello"
|
||||
msgstr "你好"
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:11
|
||||
msgid "Help Us Improve"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/courses_created.html:15
|
||||
msgid "Help others learn something new by creating a course."
|
||||
msgstr ""
|
||||
@@ -2155,10 +2194,6 @@ msgstr ""
|
||||
msgid "Help us improve our course material."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/web_template/courses_enrolled/courses_enrolled.html:18
|
||||
msgid "Here are a few courses we recommend for you to get started with {0}"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/notification/certificate_request_reminder/certificate_request_reminder.html:1
|
||||
#: lms/templates/emails/certificate_request_notification.html:1
|
||||
msgid "Hey {0}"
|
||||
@@ -2360,9 +2395,11 @@ msgid "Instructor Notes"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Batch'
|
||||
#. Label of the instructors (Rating) field in DocType 'LMS Batch Feedback'
|
||||
#. Label of the instructors (Table MultiSelect) field in DocType 'LMS Course'
|
||||
#: frontend/src/pages/BatchForm.vue:89 frontend/src/pages/CourseForm.vue:154
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
msgid "Instructors"
|
||||
msgstr ""
|
||||
@@ -2437,7 +2474,7 @@ msgstr ""
|
||||
|
||||
#. Label of the issue_date (Date) field in DocType 'Certification'
|
||||
#. Label of the issue_date (Date) field in DocType 'LMS Certificate'
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:34
|
||||
#: frontend/src/components/Modals/BulkCertificates.vue:28
|
||||
#: frontend/src/components/Modals/Event.vue:121
|
||||
#: lms/lms/doctype/certification/certification.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
@@ -2450,6 +2487,7 @@ msgid "Issued On"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProfileAbout.vue:56
|
||||
#: frontend/src/pages/ProfileCertificates.vue:17
|
||||
#: lms/templates/certificates_section.html:11
|
||||
msgid "Issued on"
|
||||
msgstr ""
|
||||
@@ -2487,7 +2525,7 @@ msgstr ""
|
||||
msgid "Job Details"
|
||||
msgstr ""
|
||||
|
||||
#: lms/www/lms.py:108
|
||||
#: lms/www/lms.py:109
|
||||
msgid "Job Openings"
|
||||
msgstr ""
|
||||
|
||||
@@ -2566,6 +2604,11 @@ msgstr ""
|
||||
msgid "LMS Batch"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "LMS Batch Feedback"
|
||||
msgstr ""
|
||||
|
||||
#. Name of a DocType
|
||||
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
||||
msgid "LMS Batch Old"
|
||||
@@ -2725,6 +2768,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_assignment/lms_assignment.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
|
||||
#: lms/lms/doctype/lms_course_progress/lms_course_progress.json
|
||||
@@ -2870,16 +2914,13 @@ msgid "LiveCode URL"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Members.vue:106
|
||||
#: frontend/src/pages/Assignments.vue:71
|
||||
#: frontend/src/pages/Assignments.vue:71 frontend/src/pages/Batches.vue:88
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:71
|
||||
#: frontend/src/pages/QuizSubmissionList.vue:39
|
||||
#: frontend/src/pages/Quizzes.vue:51
|
||||
msgid "Load More"
|
||||
msgstr "装载更多"
|
||||
|
||||
#: frontend/src/pages/Batches.vue:40
|
||||
msgid "Loading Batches..."
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Auto Recording' (Select) field in DocType 'LMS Live Class'
|
||||
#: lms/lms/doctype/lms_live_class/lms_live_class.json
|
||||
msgid "Local"
|
||||
@@ -2902,7 +2943,7 @@ msgstr ""
|
||||
|
||||
#: frontend/src/components/AssignmentBlock.vue:13
|
||||
#: frontend/src/components/NoPermission.vue:28
|
||||
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:175
|
||||
#: frontend/src/components/QuizBlock.vue:9 frontend/src/pages/Batch.vue:178
|
||||
#: frontend/src/pages/Lesson.vue:24
|
||||
msgid "Login"
|
||||
msgstr "登录"
|
||||
@@ -3007,6 +3048,7 @@ msgstr "中:"
|
||||
#. Label of the member (Link) field in DocType 'Exercise Submission'
|
||||
#. Label of the member (Link) field in DocType 'LMS Assignment Submission'
|
||||
#. Label of the member (Link) field in DocType 'LMS Badge Assignment'
|
||||
#. Label of the member (Link) field in DocType 'LMS Batch Feedback'
|
||||
#. Label of the member (Link) field in DocType 'LMS Certificate'
|
||||
#. Label of the member (Link) field in DocType 'LMS Certificate Evaluation'
|
||||
#. Label of the member (Link) field in DocType 'LMS Certificate Request'
|
||||
@@ -3024,6 +3066,7 @@ msgstr "中:"
|
||||
#: lms/lms/doctype/exercise_submission/exercise_submission.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.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
|
||||
@@ -3049,8 +3092,15 @@ msgstr ""
|
||||
msgid "Member Email"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the member_image (Attach Image) field in DocType 'LMS Batch
|
||||
#. Feedback'
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "Member Image"
|
||||
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 Batch Feedback'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Certificate'
|
||||
#. Label of the member_name (Data) field in DocType 'LMS Certificate
|
||||
#. Evaluation'
|
||||
@@ -3061,6 +3111,7 @@ msgstr ""
|
||||
#. 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_batch_feedback/lms_batch_feedback.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
|
||||
@@ -3223,7 +3274,7 @@ msgid "My calendar"
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
||||
#: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:30
|
||||
#: frontend/src/pages/Assignments.vue:18 frontend/src/pages/Batches.vue:17
|
||||
#: frontend/src/pages/Courses.vue:45 frontend/src/pages/Programs.vue:14
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "New"
|
||||
@@ -3237,15 +3288,15 @@ msgstr ""
|
||||
msgid "New Assignment Submission"
|
||||
msgstr ""
|
||||
|
||||
#: lms/public/js/common_functions.js:255 lms/www/lms.py:86
|
||||
#: lms/public/js/common_functions.js:255 lms/www/lms.py:87
|
||||
msgid "New Batch"
|
||||
msgstr ""
|
||||
|
||||
#: lms/www/lms.py:37
|
||||
#: lms/www/lms.py:38
|
||||
msgid "New Course"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Jobs.vue:39
|
||||
#: frontend/src/pages/Jobs.vue:23
|
||||
msgid "New Job"
|
||||
msgstr ""
|
||||
|
||||
@@ -3278,11 +3329,11 @@ msgstr ""
|
||||
msgid "New Sign Up"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:623
|
||||
#: lms/lms/utils.py:605
|
||||
msgid "New comment in batch {0}"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:616
|
||||
#: lms/lms/utils.py:598
|
||||
msgid "New reply on the topic {0} in course {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -3324,7 +3375,7 @@ msgstr ""
|
||||
msgid "No assignments found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:125
|
||||
#: frontend/src/pages/Batches.vue:73
|
||||
msgid "No batches found"
|
||||
msgstr ""
|
||||
|
||||
@@ -3348,11 +3399,15 @@ msgstr ""
|
||||
msgid "No courses under review"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:101
|
||||
msgid "No feedback received yet."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProfileAbout.vue:12
|
||||
msgid "No introduction"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Jobs.vue:63
|
||||
#: frontend/src/pages/Jobs.vue:77
|
||||
msgid "No jobs posted"
|
||||
msgstr ""
|
||||
|
||||
@@ -3360,6 +3415,10 @@ msgstr ""
|
||||
msgid "No live classes scheduled"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:81
|
||||
msgid "No participants found"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Programs.vue:91
|
||||
msgid "No programs found"
|
||||
msgstr ""
|
||||
@@ -3384,10 +3443,6 @@ msgstr ""
|
||||
msgid "No {0}"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:84
|
||||
msgid "No {0} batches"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Courses.vue:107
|
||||
msgid "No {0} courses"
|
||||
msgstr ""
|
||||
@@ -3420,7 +3475,7 @@ msgstr ""
|
||||
msgid "Not Graded"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:143
|
||||
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:146
|
||||
msgid "Not Permitted"
|
||||
msgstr "不允许"
|
||||
|
||||
@@ -3571,7 +3626,7 @@ msgstr ""
|
||||
#. Option for the 'User Category' (Select) field in DocType 'User'
|
||||
#: lms/fixtures/custom_field.json lms/templates/signup-form.html:28
|
||||
msgid "Others"
|
||||
msgstr "他人"
|
||||
msgstr "其他"
|
||||
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.js:39
|
||||
msgid "Owner"
|
||||
@@ -3614,7 +3669,7 @@ msgid "Pan Number"
|
||||
msgstr ""
|
||||
|
||||
#. Option for the 'Type' (Select) field in DocType 'Job Opportunity'
|
||||
#: frontend/src/pages/Jobs.vue:119
|
||||
#: frontend/src/pages/Jobs.vue:151
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
msgid "Part Time"
|
||||
msgstr ""
|
||||
@@ -3765,11 +3820,11 @@ msgstr "请检查您的电子邮件验证"
|
||||
msgid "Please click on the following button to set your new password"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1887 lms/lms/utils.py:1891
|
||||
#: lms/lms/utils.py:1815 lms/lms/utils.py:1819
|
||||
msgid "Please complete the previous courses in the program to enroll in this course."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:256
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:261
|
||||
msgid "Please enable Zoom Settings to use this feature."
|
||||
msgstr ""
|
||||
|
||||
@@ -3786,7 +3841,7 @@ msgid "Please enter a title."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:40
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:122
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:125
|
||||
msgid "Please enter a valid URL."
|
||||
msgstr ""
|
||||
|
||||
@@ -3794,7 +3849,7 @@ msgstr ""
|
||||
msgid "Please enter a valid time in the format HH:mm."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:116
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:119
|
||||
msgid "Please enter the URL for assignment submission."
|
||||
msgstr ""
|
||||
|
||||
@@ -3802,7 +3857,7 @@ msgstr ""
|
||||
msgid "Please enter your answer"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:66
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:71
|
||||
msgid "Please install the Payments app to create a paid batches."
|
||||
msgstr ""
|
||||
|
||||
@@ -3822,7 +3877,7 @@ msgstr ""
|
||||
msgid "Please login to access the quiz."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/NoPermission.vue:25 frontend/src/pages/Batch.vue:154
|
||||
#: frontend/src/components/NoPermission.vue:25 frontend/src/pages/Batch.vue:157
|
||||
msgid "Please login to access this page."
|
||||
msgstr ""
|
||||
|
||||
@@ -3863,7 +3918,7 @@ msgstr ""
|
||||
msgid "Please upload a SCORM package"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:119
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:122
|
||||
msgid "Please upload the assignment file."
|
||||
msgstr ""
|
||||
|
||||
@@ -3897,7 +3952,7 @@ msgid "Possible Answer 4"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/DiscussionReplies.vue:52
|
||||
#: frontend/src/components/DiscussionReplies.vue:86
|
||||
#: frontend/src/components/DiscussionReplies.vue:87
|
||||
msgid "Post"
|
||||
msgstr "发送"
|
||||
|
||||
@@ -4326,19 +4381,19 @@ msgstr ""
|
||||
msgid "Route"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:199
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:204
|
||||
msgid "Row #{0} Date cannot be outside the batch duration."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:194
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:199
|
||||
msgid "Row #{0} End time cannot be outside the batch duration."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:176
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:181
|
||||
msgid "Row #{0} Start time cannot be greater than or equal to end time."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:185
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:190
|
||||
msgid "Row #{0} Start time cannot be outside the batch duration."
|
||||
msgstr ""
|
||||
|
||||
@@ -4419,10 +4474,18 @@ msgstr ""
|
||||
msgid "Score Out Of"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Members.vue:15
|
||||
#: frontend/src/components/Members.vue:15 frontend/src/pages/Jobs.vue:38
|
||||
msgid "Search"
|
||||
msgstr "搜索"
|
||||
|
||||
#: frontend/src/pages/CertifiedParticipants.vue:17
|
||||
msgid "Search by Name"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:39
|
||||
msgid "Search by Title"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Assignments.vue:25
|
||||
msgid "Search by title"
|
||||
msgstr ""
|
||||
@@ -4719,7 +4782,7 @@ msgstr "州"
|
||||
#. Label of the statistics (Check) field in DocType 'LMS Settings'
|
||||
#: frontend/src/components/BatchStudents.vue:5
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:133
|
||||
#: lms/lms/doctype/lms_settings/lms_settings.json lms/www/lms.py:134
|
||||
msgid "Statistics"
|
||||
msgstr ""
|
||||
|
||||
@@ -4784,7 +4847,7 @@ msgstr ""
|
||||
msgid "Student Reviews"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:48
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:53
|
||||
msgid "Student {0} has already been added to this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -4832,6 +4895,7 @@ msgstr ""
|
||||
msgid "Submission by"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:14
|
||||
#: frontend/src/components/Modals/AssessmentModal.vue:9
|
||||
#: frontend/src/components/Modals/BatchCourseModal.vue:9
|
||||
#: frontend/src/components/Modals/EvaluationModal.vue:9
|
||||
@@ -4889,7 +4953,7 @@ msgstr "概要"
|
||||
msgid "Sunday"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:964
|
||||
#: lms/lms/api.py:983
|
||||
msgid "Suspicious pattern found in {0}: {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -4915,6 +4979,7 @@ msgstr ""
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.json
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json
|
||||
#: lms/lms/doctype/lms_category/lms_category.json
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.json
|
||||
@@ -4997,6 +5062,10 @@ msgstr ""
|
||||
msgid "Text"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/BatchFeedback.vue:7
|
||||
msgid "Thank you for providing your feedback!"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/emails/lms_course_interest.html:17
|
||||
#: lms/templates/emails/lms_invite_request_approved.html:15
|
||||
#: lms/templates/emails/mentor_request_creation_email.html:7
|
||||
@@ -5004,7 +5073,7 @@ msgstr ""
|
||||
msgid "Thanks and Regards"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1794
|
||||
#: lms/lms/utils.py:1722
|
||||
msgid "The batch is full. Please contact the Administrator."
|
||||
msgstr ""
|
||||
|
||||
@@ -5028,8 +5097,8 @@ msgstr ""
|
||||
msgid "The status of your application has changed."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:129
|
||||
msgid "There are no batches available at the moment. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
#: frontend/src/pages/Batches.vue:77
|
||||
msgid "There are no batches matching the criteria. Keep an eye out, fresh learning experiences are on the way soon!"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/CreateOutline.vue:12
|
||||
@@ -5040,11 +5109,15 @@ 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/CertifiedParticipants.vue:84
|
||||
msgid "There are no participants matching this criteria."
|
||||
msgstr ""
|
||||
|
||||
#: 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 ""
|
||||
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:146
|
||||
#: lms/lms/doctype/lms_batch/lms_batch.py:151
|
||||
msgid "There are no seats available in this batch."
|
||||
msgstr ""
|
||||
|
||||
@@ -5060,7 +5133,7 @@ msgstr ""
|
||||
msgid "There are no {0} on this site."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:82
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.py:85
|
||||
msgid "There has been an update on your submission for assignment {0}"
|
||||
msgstr ""
|
||||
|
||||
@@ -5091,7 +5164,7 @@ msgstr ""
|
||||
msgid "This course has:"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:1645
|
||||
#: lms/lms/utils.py:1573
|
||||
msgid "This course is free."
|
||||
msgstr ""
|
||||
|
||||
@@ -5235,7 +5308,7 @@ msgstr "至"
|
||||
msgid "To Date"
|
||||
msgstr "至今"
|
||||
|
||||
#: lms/lms/utils.py:1656
|
||||
#: lms/lms/utils.py:1584
|
||||
msgid "To join this batch, please contact the Administrator."
|
||||
msgstr ""
|
||||
|
||||
@@ -5291,7 +5364,7 @@ msgstr ""
|
||||
#: frontend/src/components/Modals/Question.vue:54
|
||||
#: frontend/src/pages/AssignmentForm.vue:39
|
||||
#: frontend/src/pages/Assignments.vue:30 frontend/src/pages/Assignments.vue:157
|
||||
#: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:16
|
||||
#: frontend/src/pages/JobCreation.vue:33 frontend/src/pages/Jobs.vue:55
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.json
|
||||
#: lms/lms/doctype/lms_assignment/lms_assignment.json
|
||||
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
|
||||
@@ -5337,6 +5410,10 @@ msgstr ""
|
||||
msgid "Unlisted"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:262 frontend/src/pages/Batches.vue:278
|
||||
msgid "Unpublished"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/Modals/EditCoverImage.vue:60
|
||||
#: frontend/src/components/UnsplashImageBrowser.vue:54
|
||||
msgid "Unsplash"
|
||||
@@ -5354,12 +5431,13 @@ msgstr ""
|
||||
|
||||
#. Option for the 'Status' (Select) field in DocType 'Cohort'
|
||||
#. Label of the upcoming (Check) field in DocType 'LMS Course'
|
||||
#: frontend/src/pages/Batches.vue:258 frontend/src/pages/Batches.vue:276
|
||||
#: frontend/src/pages/CourseForm.vue:184 lms/lms/doctype/cohort/cohort.json
|
||||
#: lms/lms/doctype/lms_course/lms_course.json
|
||||
msgid "Upcoming"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batch.vue:166
|
||||
#: frontend/src/pages/Batch.vue:169
|
||||
msgid "Upcoming Batches"
|
||||
msgstr ""
|
||||
|
||||
@@ -5421,7 +5499,7 @@ msgstr ""
|
||||
msgid "User Skill"
|
||||
msgstr ""
|
||||
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.py:37
|
||||
#: lms/job/doctype/job_opportunity/job_opportunity.py:40
|
||||
msgid "User {0} has reported the job post {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -5446,6 +5524,11 @@ msgstr ""
|
||||
msgid "Valid email and name required"
|
||||
msgstr ""
|
||||
|
||||
#. Label of the value (Rating) field in DocType 'LMS Batch Feedback'
|
||||
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
|
||||
msgid "Value"
|
||||
msgstr "值"
|
||||
|
||||
#. Option for the 'Event' (Select) field in DocType 'LMS Badge'
|
||||
#: lms/lms/doctype/lms_badge/lms_badge.json
|
||||
msgid "Value Change"
|
||||
@@ -5569,7 +5652,7 @@ msgstr ""
|
||||
msgid "You are already enrolled for this course."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batch.vue:148
|
||||
#: frontend/src/pages/Batch.vue:151
|
||||
msgid "You are not a member of this batch. Please checkout our upcoming batches."
|
||||
msgstr ""
|
||||
|
||||
@@ -5606,10 +5689,6 @@ msgstr ""
|
||||
msgid "You can find their resume attached to this email."
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/Batches.vue:113
|
||||
msgid "You can link courses and assessments to it."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.py:115
|
||||
msgid "You cannot schedule evaluations after {0}."
|
||||
msgstr ""
|
||||
@@ -5671,10 +5750,6 @@ msgstr ""
|
||||
msgid "You have opted to be notified for this course. You will receive an email when the course becomes available."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/web_template/courses_enrolled/courses_enrolled.html:17
|
||||
msgid "You haven't enrolled for any courses"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/CourseCardOverlay.vue:146
|
||||
msgid "You need to login first to enroll for this course"
|
||||
msgstr ""
|
||||
@@ -5769,10 +5844,6 @@ msgstr ""
|
||||
msgid "in the last"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/ProfileCertificates.vue:17
|
||||
msgid "issued on"
|
||||
msgstr ""
|
||||
|
||||
#: lms/templates/signup-form.html:12
|
||||
msgid "jane@example.com"
|
||||
msgstr ""
|
||||
@@ -5793,8 +5864,8 @@ msgstr ""
|
||||
msgid "out of"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/components/JobCard.vue:37
|
||||
msgid "posted by"
|
||||
#: frontend/src/components/JobCard.vue:30
|
||||
msgid "posted"
|
||||
msgstr ""
|
||||
|
||||
#: frontend/src/pages/QuizForm.vue:386
|
||||
@@ -5817,7 +5888,7 @@ msgstr ""
|
||||
msgid "you can"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/api.py:761 lms/lms/api.py:769
|
||||
#: lms/lms/api.py:780 lms/lms/api.py:788
|
||||
msgid "{0} Settings not found"
|
||||
msgstr ""
|
||||
|
||||
@@ -5845,7 +5916,11 @@ msgstr ""
|
||||
msgid "{0} is already a {1} of the course {2}"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:59
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:91
|
||||
msgid "{0} is already certified for the batch {1}"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/doctype/lms_certificate/lms_certificate.py:72
|
||||
msgid "{0} is already certified for the course {1}"
|
||||
msgstr ""
|
||||
|
||||
@@ -5853,7 +5928,7 @@ msgstr ""
|
||||
msgid "{0} is your evaluator"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:700
|
||||
#: lms/lms/utils.py:682
|
||||
msgid "{0} mentioned you in a comment"
|
||||
msgstr ""
|
||||
|
||||
@@ -5861,11 +5936,11 @@ msgstr ""
|
||||
msgid "{0} mentioned you in a comment in your batch."
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:653 lms/lms/utils.py:659
|
||||
#: lms/lms/utils.py:635 lms/lms/utils.py:641
|
||||
msgid "{0} mentioned you in a comment in {1}"
|
||||
msgstr ""
|
||||
|
||||
#: lms/lms/utils.py:476
|
||||
#: lms/lms/utils.py:458
|
||||
msgid "{0}k"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -18,6 +18,7 @@ def get_context():
|
||||
frappe.db.commit() # nosemgrep
|
||||
context.csrf_token = csrf_token
|
||||
capture("active_site", "lms")
|
||||
context.favicon = frappe.db.get_single_value("Website Settings", "favicon")
|
||||
return context
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user