chore: resolved conflicts

This commit is contained in:
Jannat Patel
2025-11-17 10:12:26 +05:30
80 changed files with 5586 additions and 2780 deletions

View File

@@ -27,6 +27,10 @@ describe("Batch Creation", () => {
cy.get("input[placeholder='Jane']").type(randomName); cy.get("input[placeholder='Jane']").type(randomName);
cy.get("button").contains("Add").click(); cy.get("button").contains("Add").click();
// Open Settings
cy.get("span").contains("Learning").click();
cy.get("span").contains("Settings").click();
// Add evaluator // Add evaluator
cy.get("[data-dismissable-layer]") cy.get("[data-dismissable-layer]")
.find("span") .find("span")
@@ -155,6 +159,7 @@ describe("Batch Creation", () => {
cy.get("button:visible").contains("Manage Batch").click(); cy.get("button:visible").contains("Manage Batch").click();
/* Add student to batch */ /* Add student to batch */
cy.get("button").contains("Students").click();
cy.get("button").contains("Add").click(); cy.get("button").contains("Add").click();
cy.get('div[role="dialog"]').first().find("button").eq(1).click(); cy.get('div[role="dialog"]').first().find("button").eq(1).click();
cy.get("input[id^='headlessui-combobox-input-v-']").type(randomEmail); cy.get("input[id^='headlessui-combobox-input-v-']").type(randomEmail);

View File

@@ -8,6 +8,7 @@ export {}
/* prettier-ignore */ /* prettier-ignore */
declare module 'vue' { declare module 'vue' {
export interface GlobalComponents { export interface GlobalComponents {
AdminBatchDashboard: typeof import('./src/components/AdminBatchDashboard.vue')['default']
Annoucements: typeof import('./src/components/Annoucements.vue')['default'] Annoucements: typeof import('./src/components/Annoucements.vue')['default']
AnnouncementModal: typeof import('./src/components/Modals/AnnouncementModal.vue')['default'] AnnouncementModal: typeof import('./src/components/Modals/AnnouncementModal.vue')['default']
Apps: typeof import('./src/components/Apps.vue')['default'] Apps: typeof import('./src/components/Apps.vue')['default']
@@ -42,6 +43,10 @@ declare module 'vue' {
CollapseSidebar: typeof import('./src/components/Icons/CollapseSidebar.vue')['default'] CollapseSidebar: typeof import('./src/components/Icons/CollapseSidebar.vue')['default']
ColorSwatches: typeof import('./src/components/Controls/ColorSwatches.vue')['default'] ColorSwatches: typeof import('./src/components/Controls/ColorSwatches.vue')['default']
ContactUsEmail: typeof import('./src/components/ContactUsEmail.vue')['default'] ContactUsEmail: typeof import('./src/components/ContactUsEmail.vue')['default']
CouponDetails: typeof import('./src/components/Settings/Coupons/CouponDetails.vue')['default']
CouponItems: typeof import('./src/components/Settings/Coupons/CouponItems.vue')['default']
CouponList: typeof import('./src/components/Settings/Coupons/CouponList.vue')['default']
Coupons: typeof import('./src/components/Settings/Coupons/Coupons.vue')['default']
CourseCard: typeof import('./src/components/CourseCard.vue')['default'] CourseCard: typeof import('./src/components/CourseCard.vue')['default']
CourseCardOverlay: typeof import('./src/components/CourseCardOverlay.vue')['default'] CourseCardOverlay: typeof import('./src/components/CourseCardOverlay.vue')['default']
CourseInstructors: typeof import('./src/components/CourseInstructors.vue')['default'] CourseInstructors: typeof import('./src/components/CourseInstructors.vue')['default']
@@ -107,8 +112,9 @@ declare module 'vue' {
StudentHeatmap: typeof import('./src/components/StudentHeatmap.vue')['default'] StudentHeatmap: typeof import('./src/components/StudentHeatmap.vue')['default']
StudentModal: typeof import('./src/components/Modals/StudentModal.vue')['default'] StudentModal: typeof import('./src/components/Modals/StudentModal.vue')['default']
Tags: typeof import('./src/components/Tags.vue')['default'] Tags: typeof import('./src/components/Tags.vue')['default']
TransactionDetails: typeof import('./src/components/Settings/TransactionDetails.vue')['default'] TransactionDetails: typeof import('./src/components/Settings/Transactions/TransactionDetails.vue')['default']
Transactions: typeof import('./src/components/Settings/Transactions.vue')['default'] TransactionList: typeof import('./src/components/Settings/Transactions/TransactionList.vue')['default']
Transactions: typeof import('./src/components/Settings/Transactions/Transactions.vue')['default']
UnsplashImageBrowser: typeof import('./src/components/UnsplashImageBrowser.vue')['default'] UnsplashImageBrowser: typeof import('./src/components/UnsplashImageBrowser.vue')['default']
UpcomingEvaluations: typeof import('./src/components/UpcomingEvaluations.vue')['default'] UpcomingEvaluations: typeof import('./src/components/UpcomingEvaluations.vue')['default']
Uploader: typeof import('./src/components/Controls/Uploader.vue')['default'] Uploader: typeof import('./src/components/Controls/Uploader.vue')['default']

View File

@@ -24,6 +24,7 @@
"@editorjs/paragraph": "^2.11.3", "@editorjs/paragraph": "^2.11.3",
"@editorjs/simple-image": "^1.6.0", "@editorjs/simple-image": "^1.6.0",
"@editorjs/table": "^2.4.2", "@editorjs/table": "^2.4.2",
"@vueuse/core": "^10.4.1",
"@vueuse/router": "^12.7.0", "@vueuse/router": "^12.7.0",
"ace-builds": "^1.36.2", "ace-builds": "^1.36.2",
"apexcharts": "^4.3.0", "apexcharts": "^4.3.0",

View File

@@ -0,0 +1,159 @@
<template>
<div v-if="batch?.data" class="">
<div class="w-full flex items-center justify-between pb-4">
<div class="font-medium text-ink-gray-7">
{{ __('Statistics') }}
</div>
</div>
<div class="grid grid-cols-2 md:grid-cols-4 gap-5 mb-8">
<NumberChart
class="border rounded-md"
:config="{ title: __('Students'), value: students.data?.length || 0 }"
/>
<NumberChart
class="border rounded-md"
:config="{
title: __('Certified'),
value: certificationCount.data || 0,
}"
/>
<NumberChart
class="border rounded-md"
:config="{
title: __('Courses'),
value: batch?.data?.courses?.length || 0,
}"
/>
<NumberChart
class="border rounded-md"
:config="{ title: __('Assessments'), value: assessmentCount || 0 }"
/>
</div>
<AxisChart
v-if="showProgressChart"
class="border"
:config="{
data: chartData || [],
title: __('Batch Summary'),
subtitle: __('Progress of students in courses and assessments'),
xAxis: {
key: 'task',
title: 'Tasks',
type: 'category',
},
yAxis: {
title: __('Number of Students'),
echartOptions: {
minInterval: 1,
},
},
swapXY: true,
series: [
{
name: 'value',
type: 'bar',
},
],
}"
/>
</div>
</template>
<script setup lang="ts">
import { AxisChart, createResource, NumberChart } from 'frappe-ui'
import { ref, watch } from 'vue'
const chartData = ref<null | any[]>(null)
const showProgressChart = ref(false)
const assessmentCount = ref(0)
const props = defineProps<{
batch: { [key: string]: any } | null
}>()
const students = createResource({
url: 'lms.lms.utils.get_batch_students',
params: {
batch: props.batch?.data?.name,
},
auto: true,
onSuccess(data: any[]) {
chartData.value = getChartData()
showProgressChart.value =
data.length &&
(props.batch?.data?.courses?.length || assessmentCount.value)
},
})
const getChartData = () => {
let tasks: any[] = []
let data: { task: any; value: any }[] = []
students.data.forEach((row: any) => {
tasks = countAssessments(row, tasks)
tasks = countCourses(row, tasks)
})
tasks.forEach((task) => {
data.push({
task: task.label,
value: task.value,
})
})
return data
}
const countAssessments = (
row: { assessments: { [x: string]: { result: string } } },
tasks: any[]
) => {
Object.keys(row.assessments).forEach((assessment) => {
if (row.assessments[assessment].result === 'Pass') {
tasks.filter((task) => task.label === assessment).length
? tasks.filter((task) => task.label === assessment)[0].value++
: tasks.push({
value: 1,
label: assessment,
})
}
})
return tasks
}
const countCourses = (
row: { courses: { [x: string]: number } },
tasks: any[]
) => {
Object.keys(row.courses).forEach((course) => {
if (row.courses[course] === 100) {
tasks.filter((task) => task.label === course).length
? tasks.filter((task) => task.label === course)[0].value++
: tasks.push({
value: 1,
label: course,
})
}
})
return tasks
}
const certificationCount = createResource({
url: 'frappe.client.get_count',
params: {
doctype: 'LMS Certificate',
filters: {
batch_name: props.batch?.data?.name,
},
},
auto: true,
})
watch(students, () => {
if (students.data?.length) {
assessmentCount.value = Object.keys(students.data?.[0].assessments).length
}
})
</script>

View File

@@ -317,54 +317,68 @@ const addNotifications = () => {
} }
const addQuizzes = () => { const addQuizzes = () => {
if (isInstructor.value || isModerator.value) { if (!isInstructor.value && !isModerator.value) return
sidebarLinks.value.splice(4, 0, {
label: 'Quizzes', const quizzesLinkExists = sidebarLinks.value.some(
icon: 'CircleHelp', (link) => link.label === 'Quizzes'
to: 'Quizzes', )
activeFor: [ if (quizzesLinkExists) return
'Quizzes',
'QuizForm', sidebarLinks.value.splice(4, 0, {
'QuizSubmissionList', label: 'Quizzes',
'QuizSubmission', icon: 'CircleHelp',
], to: 'Quizzes',
}) activeFor: ['Quizzes', 'QuizForm', 'QuizSubmissionList', 'QuizSubmission'],
} })
} }
const addAssignments = () => { const addAssignments = () => {
if (isInstructor.value || isModerator.value) { if (!isInstructor.value && !isModerator.value) return
sidebarLinks.value.splice(5, 0, {
label: 'Assignments', const assignmentsLinkExists = sidebarLinks.value.some(
icon: 'Pencil', (link) => link.label === 'Assignments'
to: 'Assignments', )
activeFor: [ if (assignmentsLinkExists) return
'Assignments',
'AssignmentForm', sidebarLinks.value.splice(5, 0, {
'AssignmentSubmissionList', label: 'Assignments',
'AssignmentSubmission', icon: 'Pencil',
], to: 'Assignments',
}) activeFor: [
} 'Assignments',
'AssignmentForm',
'AssignmentSubmissionList',
'AssignmentSubmission',
],
})
} }
const addProgrammingExercises = () => { const addProgrammingExercises = () => {
if (isInstructor.value || isModerator.value) { if (!isInstructor.value && !isModerator.value) return
sidebarLinks.value.splice(3, 0, { const programmingExercisesLinkExists = sidebarLinks.value.some(
label: 'Programming Exercises', (link) => link.label === 'Programming Exercises'
icon: 'Code', )
to: 'ProgrammingExercises', if (programmingExercisesLinkExists) return
activeFor: [
'ProgrammingExercises', sidebarLinks.value.splice(3, 0, {
'ProgrammingExerciseForm', label: 'Programming Exercises',
'ProgrammingExerciseSubmissions', icon: 'Code',
'ProgrammingExerciseSubmission', to: 'ProgrammingExercises',
], activeFor: [
}) 'ProgrammingExercises',
} 'ProgrammingExerciseForm',
'ProgrammingExerciseSubmissions',
'ProgrammingExerciseSubmission',
],
})
} }
const addPrograms = async () => { const addPrograms = async () => {
const programsLinkExists = sidebarLinks.value.some(
(link) => link.label === 'Programs'
)
if (programsLinkExists) return
let canAddProgram = await checkIfCanAddProgram() let canAddProgram = await checkIfCanAddProgram()
if (!canAddProgram) return if (!canAddProgram) return
let activeFor = ['Programs', 'ProgramDetail'] let activeFor = ['Programs', 'ProgramDetail']
@@ -379,15 +393,21 @@ const addPrograms = async () => {
} }
const addContactUsDetails = () => { const addContactUsDetails = () => {
if (settingsStore.contactUsEmail?.data || settingsStore.contactUsURL?.data) { if (!settingsStore.contactUsEmail?.data && !settingsStore.contactUsURL?.data)
sidebarLinks.value.push({ return
label: 'Contact Us',
icon: settingsStore.contactUsURL?.data ? 'Headset' : 'Mail', const contactUsLinkExists = sidebarLinks.value.some(
to: settingsStore.contactUsURL?.data (link) => link.label === 'Contact Us'
? settingsStore.contactUsURL.data )
: settingsStore.contactUsEmail?.data, if (contactUsLinkExists) return
})
} sidebarLinks.value.push({
label: 'Contact Us',
icon: settingsStore.contactUsURL?.data ? 'Headset' : 'Mail',
to: settingsStore.contactUsURL?.data
? settingsStore.contactUsURL.data
: settingsStore.contactUsEmail?.data,
})
} }
const checkIfCanAddProgram = async () => { const checkIfCanAddProgram = async () => {
@@ -399,6 +419,10 @@ const checkIfCanAddProgram = async () => {
} }
const addHome = () => { const addHome = () => {
const homeLinkExists = sidebarLinks.value.some(
(link) => link.label === 'Home'
)
if (homeLinkExists) return
sidebarLinks.value.unshift({ sidebarLinks.value.unshift({
label: 'Home', label: 'Home',
icon: 'Home', icon: 'Home',

View File

@@ -1,7 +1,7 @@
<template> <template>
<div> <div>
<div class="flex items-center justify-between mb-4"> <div class="flex items-center justify-between mb-4">
<div class="text-lg font-semibold text-ink-gray-9"> <div class="font-medium text-ink-gray-9">
{{ __('Courses') }} {{ __('Courses') }}
</div> </div>
<Button v-if="canSeeAddButton()" @click="openCourseModal()"> <Button v-if="canSeeAddButton()" @click="openCourseModal()">

View File

@@ -1,70 +1,8 @@
<template> <template>
<div v-if="batch.data" class="">
<div class="w-full flex items-center justify-between pb-4">
<div class="font-medium text-ink-gray-7">
{{ __('Statistics') }}
</div>
</div>
<div class="grid grid-cols-2 md:grid-cols-4 gap-5 mb-8">
<NumberChart
class="border rounded-md"
:config="{ title: __('Students'), value: students.data?.length || 0 }"
/>
<NumberChart
class="border rounded-md"
:config="{
title: __('Certified'),
value: certificationCount.data || 0,
}"
/>
<NumberChart
class="border rounded-md"
:config="{
title: __('Courses'),
value: batch.data.courses?.length || 0,
}"
/>
<NumberChart
class="border rounded-md"
:config="{ title: __('Assessments'), value: assessmentCount || 0 }"
/>
</div>
<AxisChart
v-if="showProgressChart"
:config="{
data: chartData,
title: __('Batch Summary'),
subtitle: __('Progress of students in courses and assessments'),
xAxis: {
key: 'task',
title: 'Tasks',
type: 'category',
},
yAxis: {
title: __('Number of Students'),
echartOptions: {
minInterval: 1,
},
},
swapXY: true,
series: [
{
name: 'value',
type: 'bar',
},
],
}"
/>
</div>
<div> <div>
<div class="flex items-center justify-between mb-4"> <div class="flex items-center justify-between mb-4">
<div class="text-ink-gray-7 font-medium"> <div class="text-ink-gray-9 font-medium">
{{ __('Students') }} {{ students.data?.length }} {{ __('Students') }}
</div> </div>
<Button v-if="!readOnlyMode" @click="openStudentModal()"> <Button v-if="!readOnlyMode" @click="openStudentModal()">
<template #prefix> <template #prefix>
@@ -76,6 +14,7 @@
<div v-if="students.data?.length"> <div v-if="students.data?.length">
<ListView <ListView
class="max-h-[75vh]"
:columns="getStudentColumns()" :columns="getStudentColumns()"
:rows="students.data" :rows="students.data"
row-key="name" row-key="name"
@@ -151,7 +90,7 @@
</ListSelectBanner> </ListSelectBanner>
</ListView> </ListView>
</div> </div>
<div v-else class="text-sm italic text-ink-gray-5"> <div v-else-if="!students.loading" class="text-sm italic text-ink-gray-5">
{{ __('There are no students in this batch.') }} {{ __('There are no students in this batch.') }}
</div> </div>
</div> </div>
@@ -170,7 +109,6 @@
<script setup> <script setup>
import { import {
Avatar, Avatar,
AxisChart,
Button, Button,
createResource, createResource,
FeatherIcon, FeatherIcon,
@@ -181,30 +119,17 @@ import {
ListRows, ListRows,
ListView, ListView,
ListRowItem, ListRowItem,
NumberChart,
toast, toast,
} from 'frappe-ui' } from 'frappe-ui'
import { import { Plus, Trash2 } from 'lucide-vue-next'
BookOpen, import { ref } from 'vue'
GraduationCap,
Plus,
ShieldCheck,
Trash2,
User,
} from 'lucide-vue-next'
import { ref, watch } from 'vue'
import StudentModal from '@/components/Modals/StudentModal.vue' import StudentModal from '@/components/Modals/StudentModal.vue'
import ProgressBar from '@/components/ProgressBar.vue' import ProgressBar from '@/components/ProgressBar.vue'
import BatchStudentProgress from '@/components/Modals/BatchStudentProgress.vue' import BatchStudentProgress from '@/components/Modals/BatchStudentProgress.vue'
import ApexChart from 'vue3-apexcharts'
import { theme } from '@/utils/theme'
const showStudentModal = ref(false) const showStudentModal = ref(false)
const showStudentProgressModal = ref(false) const showStudentProgressModal = ref(false)
const selectedStudent = ref(null) const selectedStudent = ref(null)
const chartData = ref(null)
const showProgressChart = ref(false)
const assessmentCount = ref(0)
const readOnlyMode = window.read_only_mode const readOnlyMode = window.read_only_mode
const props = defineProps({ const props = defineProps({
@@ -220,12 +145,6 @@ const students = createResource({
batch: props.batch?.data?.name, batch: props.batch?.data?.name,
}, },
auto: true, auto: true,
onSuccess(data) {
chartData.value = getChartData()
showProgressChart.value =
data.length &&
(props.batch?.data?.courses?.length || assessmentCount.value)
},
}) })
const getStudentColumns = () => { const getStudentColumns = () => {
@@ -288,67 +207,4 @@ const removeStudents = (selections, unselectAll) => {
} }
) )
} }
const getChartData = () => {
let tasks = []
let data = []
students.data.forEach((row) => {
tasks = countAssessments(row, tasks)
tasks = countCourses(row, tasks)
})
tasks.forEach((task) => {
data.push({
task: task.label,
value: task.value,
})
})
return data
}
const countAssessments = (row, tasks) => {
Object.keys(row.assessments).forEach((assessment) => {
if (row.assessments[assessment].result === 'Pass') {
tasks.filter((task) => task.label === assessment).length
? tasks.filter((task) => task.label === assessment)[0].value++
: tasks.push({
value: 1,
label: assessment,
})
}
})
return tasks
}
const countCourses = (row, tasks) => {
Object.keys(row.courses).forEach((course) => {
if (row.courses[course] === 100) {
tasks.filter((task) => task.label === course).length
? tasks.filter((task) => task.label === course)[0].value++
: tasks.push({
value: 1,
label: course,
})
}
})
return tasks
}
watch(students, () => {
if (students.data?.length) {
assessmentCount.value = Object.keys(students.data?.[0].assessments).length
}
})
const certificationCount = createResource({
url: 'frappe.client.get_count',
params: {
doctype: 'LMS Certificate',
filters: {
batch_name: props.batch?.data?.name,
},
},
auto: true,
})
</script> </script>

View File

@@ -19,10 +19,10 @@
@click="() => togglePopover()" @click="() => togglePopover()"
:disabled="attrs.readonly" :disabled="attrs.readonly"
> >
<div class="flex items-center"> <div class="flex items-center w-[90%]">
<slot name="prefix" /> <slot name="prefix" />
<span <span
class="overflow-hidden text-ellipsis whitespace-nowrap text-base leading-5" class="block truncate text-base leading-5"
v-if="selectedValue" v-if="selectedValue"
> >
{{ displayValue(selectedValue) }} {{ displayValue(selectedValue) }}

View File

@@ -3,7 +3,7 @@
<div class="text-xs text-ink-gray-5 mb-2"> <div class="text-xs text-ink-gray-5 mb-2">
{{ label }} {{ label }}
</div> </div>
<div class="overflow-x-auto border rounded-md"> <div class="overflow-x-auto overflow-y-visible border rounded-md">
<div <div
class="grid items-center space-x-4 p-2 border-b" class="grid items-center space-x-4 p-2 border-b"
:style="{ gridTemplateColumns: getGridTemplateColumns() }" :style="{ gridTemplateColumns: getGridTemplateColumns() }"
@@ -27,7 +27,7 @@
<input <input
v-if="showKey(key)" v-if="showKey(key)"
v-model="row[key]" v-model="row[key]"
class="py-1.5 px-2 border-none focus:ring-0 focus:border focus:border-gray-300 focus:bg-surface-gray-2 rounded-sm text-sm focus:outline-none" class="py-1.5 px-2 border-none focus:ring-0 focus:border focus:border-gray-300 focus:bg-surface-gray-2 rounded-md text-sm focus:outline-none"
/> />
</template> </template>
@@ -43,20 +43,27 @@
</template> </template>
</Button> </Button>
<div <Teleport to="body">
v-if="menuOpenIndex === rowIndex" <div
class="absolute right-[30px] top-5 mt-1 w-32 bg-surface-white border border-outline-gray-1 rounded-md shadow-sm" v-if="menuOpenIndex === rowIndex"
> :style="{
<button position: 'absolute',
@click="deleteRow(rowIndex)" top: menuTopPosition,
class="flex items-center space-x-2 w-full text-left px-3 py-2 text-sm text-ink-red-3" left: menuLeftPosition,
}"
class="top-5 mt-1 w-32 bg-surface-white border border-outline-gray-1 rounded-md shadow-sm"
> >
<Trash2 class="size-4 stroke-1.5" /> <button
<span> @click="deleteRow(rowIndex)"
{{ __('Delete') }} class="flex items-center space-x-2 w-full text-left px-3 py-2 text-sm text-ink-red-3"
</span> >
</button> <Trash2 class="size-4 stroke-1.5" />
</div> <span>
{{ __('Delete') }}
</span>
</button>
</div>
</Teleport>
</div> </div>
</div> </div>
</div> </div>
@@ -73,17 +80,19 @@
</template> </template>
<script setup lang="ts"> <script setup lang="ts">
import { ref, watch } from 'vue' import { nextTick, ref, watch } from 'vue'
import { Button } from 'frappe-ui' import { Button } from 'frappe-ui'
import { Ellipsis, Plus, Trash2 } from 'lucide-vue-next' import { Ellipsis, Plus, Trash2 } from 'lucide-vue-next'
import { onClickOutside } from '@vueuse/core' import { onClickOutside } from '@vueuse/core'
const rows = defineModel<Cell[][]>() const rows = defineModel<Record<string, string>[]>()
const menuRef = ref(null) const menuRef = ref(null)
const menuOpenIndex = ref<number | null>(null) const menuOpenIndex = ref<number | null>(null)
const menuTopPosition = ref<string>('') const menuTopPosition = ref<string>('')
const menuLeftPosition = ref('0px')
const emit = defineEmits<{ const emit = defineEmits<{
(e: 'update:modelValue', value: Cell[][]): void (e: 'update:modelValue', value: Record<string, string>[]): void
}>() }>()
type Cell = { type Cell = {
@@ -93,19 +102,19 @@ type Cell = {
const props = withDefaults( const props = withDefaults(
defineProps<{ defineProps<{
modelValue?: Cell[][] modelValue?: Record<string, string>[]
columns?: string[] columns?: string[]
label?: string label?: string
}>(), }>(),
{ {
columns: [], columns: () => [] as string[],
} }
) )
const columns = ref(props.columns) const columns = ref(props.columns)
watch(rows, () => { watch(rows, () => {
if (rows.value?.length < 1) { if (rows.value && rows.value.length < 1) {
addRow() addRow()
} }
}) })
@@ -119,12 +128,25 @@ const addRow = () => {
newRow[column.toLowerCase().split(' ').join('_')] = '' newRow[column.toLowerCase().split(' ').join('_')] = ''
}) })
rows.value.push(newRow) rows.value.push(newRow)
focusNewRowInput()
emit('update:modelValue', rows.value) emit('update:modelValue', rows.value)
} }
const focusNewRowInput = () => {
nextTick(() => {
const rowElements = document.querySelectorAll('.overflow-x-auto .grid')[
rows.value!.length
]
const firstInput = rowElements.querySelector('input')
if (firstInput) {
;(firstInput as HTMLInputElement).focus()
}
})
}
const deleteRow = (index: number) => { const deleteRow = (index: number) => {
rows.value.splice(index, 1) rows.value?.splice(index, 1)
emit('update:modelValue', rows.value) emit('update:modelValue', rows.value ?? [])
} }
const getGridTemplateColumns = () => { const getGridTemplateColumns = () => {
@@ -132,8 +154,10 @@ const getGridTemplateColumns = () => {
} }
const toggleMenu = (index: number, event: MouseEvent) => { const toggleMenu = (index: number, event: MouseEvent) => {
menuOpenIndex.value = menuOpenIndex.value === index ? null : index const rect = (event.target as HTMLElement).getBoundingClientRect()
menuTopPosition.value = `${event.clientY + 10}px` menuOpenIndex.value = index
menuTopPosition.value = rect.bottom + 'px'
menuLeftPosition.value = rect.right + 'px'
} }
onClickOutside(menuRef, () => { onClickOutside(menuRef, () => {

View File

@@ -67,6 +67,7 @@ import { watchDebounced } from '@vueuse/core'
import { createResource, Button } from 'frappe-ui' import { createResource, Button } from 'frappe-ui'
import { Plus, X } from 'lucide-vue-next' import { Plus, X } from 'lucide-vue-next'
import { useAttrs, computed, ref } from 'vue' import { useAttrs, computed, ref } from 'vue'
import { useSettings } from '@/stores/settings'
const props = defineProps({ const props = defineProps({
doctype: { doctype: {
@@ -103,6 +104,7 @@ const value = computed({
const autocomplete = ref(null) const autocomplete = ref(null)
const text = ref('') const text = ref('')
const settingsStore = useSettings()
watchDebounced( watchDebounced(
() => autocomplete.value?.query, () => autocomplete.value?.query,
@@ -121,6 +123,16 @@ watchDebounced(
{ debounce: 300, immediate: true } { debounce: 300, immediate: true }
) )
watchDebounced(
() => settingsStore.isSettingsOpen,
(isOpen, wasOpen) => {
if (wasOpen && !isOpen) {
reload('')
}
},
{ debounce: 200 }
)
const options = createResource({ const options = createResource({
url: 'frappe.desk.search.search_link', url: 'frappe.desk.search.search_link',
cache: [props.doctype, text.value], cache: [props.doctype, text.value],

View File

@@ -20,8 +20,6 @@
} }
" "
autocomplete="off" autocomplete="off"
@focus="() => togglePopover()"
@keydown.delete.capture.stop="removeLastValue"
/> />
</template> </template>
<template #body="{ isOpen, close }"> <template #body="{ isOpen, close }">
@@ -58,7 +56,7 @@
<div class="h-10"></div> <div class="h-10"></div>
<div <div
v-if="attrs.onCreate" v-if="attrs.onCreate"
class="absolute bottom-2 left-1 w-[99%] pt-2 bg-white border-t" class="absolute bottom-2 left-1 w-[95%] pt-2 bg-white border-t"
> >
<Button <Button
variant="ghost" variant="ghost"
@@ -180,6 +178,7 @@ const filterOptions = createResource({
}) })
const options = computed(() => { const options = computed(() => {
setFocus()
return filterOptions.data || [] return filterOptions.data || []
}) })
@@ -225,25 +224,6 @@ const removeValue = (value) => {
values.value = values.value.filter((v) => v !== value) values.value = values.value.filter((v) => v !== value)
} }
const removeLastValue = () => {
if (query.value) return
let emailRef = emails.value[emails.value.length - 1]?.$el
if (document.activeElement === emailRef) {
values.value.pop()
nextTick(() => {
if (values.value.length) {
emailRef = emails.value[emails.value.length - 1].$el
emailRef?.focus()
} else {
setFocus()
}
})
} else {
emailRef?.focus()
}
}
function setFocus() { function setFocus() {
search.value.$el.focus() search.value.$el.focus()
} }

View File

@@ -1,7 +1,7 @@
<template> <template>
<div <div
v-if="hasPermission() && !props.zoomAccount" v-if="hasPermission() && !props.zoomAccount"
class="flex items-center space-x-2 mb-5 bg-surface-amber-1 py-1 px-2 rounded-md text-ink-amber-3" class="flex items-center space-x-2 mb-5 bg-surface-amber-1 py-1 px-2 rounded-md text-ink-amber-3 text-xs"
> >
<AlertCircle class="size-4 stroke-1.5" /> <AlertCircle class="size-4 stroke-1.5" />
<span> <span>

View File

@@ -66,6 +66,7 @@
<script setup lang="ts"> <script setup lang="ts">
import { Button, Dialog, FormControl, TextEditor, toast } from 'frappe-ui' import { Button, Dialog, FormControl, TextEditor, toast } from 'frappe-ui'
import { computed, reactive, watch } from 'vue' import { computed, reactive, watch } from 'vue'
import { escapeHTML } from '@/utils'
const show = defineModel() const show = defineModel()
const assignments = defineModel<Assignments>('assignments') const assignments = defineModel<Assignments>('assignments')
@@ -121,35 +122,48 @@ watch(show, (newVal) => {
} }
}) })
const validateTitle = () => {
assignment.title = escapeHTML(assignment.title.trim())
}
const saveAssignment = () => { const saveAssignment = () => {
validateTitle()
if (props.assignmentID == 'new') { if (props.assignmentID == 'new') {
assignments.value.insert.submit( createAssignment()
{
...assignment,
},
{
onSuccess() {
show.value = false
toast.success(__('Assignment created successfully'))
},
}
)
} else { } else {
assignments.value.setValue.submit( updateAssignment()
{
...assignment,
name: props.assignmentID,
},
{
onSuccess() {
show.value = false
toast.success(__('Assignment updated successfully'))
},
}
)
} }
} }
const createAssignment = () => {
assignments.value.insert.submit(
{
...assignment,
},
{
onSuccess() {
show.value = false
toast.success(__('Assignment created successfully'))
},
}
)
}
const updateAssignment = () => {
assignments.value.setValue.submit(
{
...assignment,
name: props.assignmentID,
},
{
onSuccess() {
show.value = false
toast.success(__('Assignment updated successfully'))
},
}
)
}
const assignmentOptions = computed(() => { const assignmentOptions = computed(() => {
return [ return [
{ label: 'PDF', value: 'PDF' }, { label: 'PDF', value: 'PDF' },

View File

@@ -139,7 +139,8 @@ function submitEvaluation(close) {
close() close()
}, },
onError(err) { onError(err) {
toast.warning(__(err.messages?.[0] || err)) console.log(err.messages?.[0] || err)
toast.warning(__(err.messages?.[0] || err), { duration: 10000 })
}, },
}) })
} }

View File

@@ -22,6 +22,7 @@
:onCreate=" :onCreate="
(value, close) => { (value, close) => {
openSettings('Members', close) openSettings('Members', close)
show = false
} }
" "
/> />

View File

@@ -0,0 +1,142 @@
<template>
<div class="flex flex-col text-base h-full">
<div class="flex items-center space-x-2 mb-8 -ml-1.5">
<ChevronLeft
class="size-5 stroke-1.5 text-ink-gray-7 cursor-pointer"
@click="emit('updateStep', 'list')"
/>
<div class="text-xl font-semibold text-ink-gray-9">
{{ data?.name ? __('Edit Coupon') : __('New Coupon') }}
</div>
</div>
<div class="space-y-4 overflow-y-auto">
<div>
<FormControl
v-model="data.enabled"
:label="__('Enabled')"
type="checkbox"
/>
</div>
<div class="grid grid-cols-2 gap-4">
<FormControl
v-model="data.code"
:label="__('Coupon Code')"
:required="true"
@input="() => (data.code = data.code.toUpperCase())"
/>
<FormControl
v-model="data.discount_type"
:label="__('Discount Type')"
:required="true"
type="select"
:options="['Percentage', 'Fixed Amount']"
/>
<FormControl
v-model="data.expires_on"
:label="__('Expires On')"
type="date"
/>
<FormControl
v-if="data.discount_type === 'Percentage'"
v-model="data.percentage_discount"
:required="true"
:label="__('Discount Percentage')"
type="number"
/>
<FormControl
v-else
v-model="data.fixed_amount_discount"
:required="true"
:label="__('Discount Amount')"
type="number"
/>
<FormControl
v-model="data.usage_limit"
:label="__('Usage Limit')"
type="number"
/>
<FormControl
v-model="data.redemptions_count"
:label="__('Redemptions Count')"
type="number"
:disabled="true"
/>
</div>
<div class="py-8">
<div class="font-semibold text-ink-gray-9 mb-2">
{{ __('Applicable For') }}
</div>
<CouponItems ref="couponItems" :data="data" :coupons="coupons" />
</div>
</div>
<div class="mt-auto space-x-2 ml-auto">
<Button variant="solid" @click="saveCoupon()">
{{ __('Save') }}
</Button>
</div>
</div>
</template>
<script setup lang="ts">
import { Button, FormControl, toast } from 'frappe-ui'
import { ref } from 'vue'
import { ChevronLeft } from 'lucide-vue-next'
import type { Coupon, Coupons } from './types'
import CouponItems from '@/components/Settings/Coupons/CouponItems.vue'
const couponItems = ref<any>(null)
const emit = defineEmits(['updateStep'])
const props = defineProps<{
coupons: Coupons
data: Coupon
}>()
const saveCoupon = () => {
if (props.data?.name) {
editCoupon()
} else {
createCoupon()
}
}
const editCoupon = () => {
props.coupons.setValue.submit(
{
...props.data,
},
{
onSuccess(data: Coupon) {
if (couponItems.value) {
couponItems.value.saveItems()
}
},
}
)
}
const createCoupon = () => {
if (couponItems.value) {
let rows = couponItems.value.saveItems()
props.data.applicable_items = rows
}
props.coupons.insert.submit(
{
...props.data,
},
{
onSuccess(data: Coupon) {
toast.success(__('Coupon created successfully'))
emit('updateStep', 'details', { ...data })
},
onError(err: any) {
toast.error(err.messages?.[0] || err.message || err)
console.error(err)
},
}
)
}
</script>

View File

@@ -0,0 +1,140 @@
<template>
<div>
<div class="relative overflow-x-auto border rounded-md">
<table class="w-full text-sm text-left text-ink-gray-5">
<thead class="text-xs text-ink-gray-7 uppercase bg-surface-gray-2">
<tr>
<td scope="col" class="px-6 py-2">
{{ __('Document Type') }}
</td>
<td scope="col" class="px-6 py-2">
{{ __('Document Name') }}
</td>
<td scope="col" class="px-6 py-2 w-16"></td>
</tr>
</thead>
<tbody>
<tr
v-for="row in rows"
class="bg-white dark:bg-gray-800 dark:border-gray-700 border-gray-200"
>
<td class="px-6 py-2">
<FormControl
type="select"
v-model="row.reference_doctype"
:options="[
{ label: 'Course', value: 'LMS Course' },
{ label: 'Batch', value: 'LMS Batch' },
]"
/>
</td>
<td class="px-6 py-2">
<Link
:doctype="row.reference_doctype"
v-model="row.reference_name"
class="bg-white"
/>
</td>
<td class="px-6 py-2">
<Button variant="ghost" @click="removeRow(row)">
<template #icon>
<X class="size-4 stroke-1.5" />
</template>
</Button>
</td>
</tr>
</tbody>
</table>
</div>
<div class="mt-4">
<Button @click="addRow()">
<template #prefix>
<Plus class="size-4 stroke-1.5" />
</template>
{{ __('Add Row') }}
</Button>
</div>
</div>
</template>
<script setup lang="ts">
import type { ApplicableItem, Coupon, Coupons } from './types'
import { ref, watch } from 'vue'
import { Button, createListResource, FormControl } from 'frappe-ui'
import { Plus, X } from 'lucide-vue-next'
import Link from '@/components/Controls/Link.vue'
const rows = ref<
{
reference_doctype: string
reference_name: string | null
name: string | null
}[]
>([])
const props = defineProps<{
data: Coupon
coupons: Coupons
}>()
const applicableItems = createListResource({
doctype: 'LMS Coupon Item',
fields: [
'reference_doctype',
'reference_name',
'name',
'parent',
'parenttype',
'parentfield',
],
parent: 'LMS Coupon',
onSuccess(data: ApplicableItem[]) {
rows.value = data
},
})
const addRow = () => {
rows.value.push({
reference_doctype: 'LMS Course',
reference_name: null,
name: null,
})
}
watch(
() => props.data,
() => {
if (props.data?.name) {
applicableItems.update({
filters: {
parent: props.data.name,
},
})
applicableItems.reload()
} else {
addRow()
}
},
{ immediate: true }
)
const saveItems = (parent = null) => {
return rows.value
}
const removeRow = (rowToRemove: any) => {
rows.value = rows.value.filter((row) => row !== rowToRemove)
if (rowToRemove.name) {
applicableItems.delete.submit(rowToRemove.name, {
onSuccess() {
props.coupons.reload()
applicableItems.reload()
},
})
}
}
defineExpose({
saveItems,
})
</script>

View File

@@ -0,0 +1,203 @@
<template>
<div class="flex min-h-0 flex-col text-base">
<div class="flex items-center justify-between mb-5">
<div>
<div class="text-xl font-semibold mb-1 text-ink-gray-9">
{{ __(label) }}
</div>
<div class="text-ink-gray-6 leading-5">
{{ __(description) }}
</div>
</div>
<Button @click="openForm()">
<template #prefix>
<Plus class="h-3 w-3 stroke-1.5" />
</template>
{{ __('New') }}
</Button>
</div>
<div v-if="coupons.data?.length" class="overflow-y-scroll">
<ListView
:columns="columns"
:rows="coupons.data"
row-key="name"
:options="{
showTooltip: false,
selectable: true,
onRowClick: (row: Coupon) => {
openForm(row)
},
}"
>
<ListHeader
class="mb-2 grid items-center space-x-4 rounded bg-surface-gray-2 p-2"
>
</ListHeader>
<ListRows>
<ListRow :row="row" v-for="row in coupons.data" :key="row.name">
<template #default="{ column, item }">
<ListRowItem :item="row[column.key]" :align="column.align">
<div v-if="column.key == 'enabled'">
<Badge v-if="row[column.key]" theme="green">
{{ __('Enabled') }}
</Badge>
<Badge v-else theme="gray">
{{ __('Disabled') }}
</Badge>
</div>
<div v-else-if="column.key == 'expires_on'">
{{ dayjs(row[column.key]).format('DD MMM YYYY') }}
</div>
<div v-else-if="column.key == 'discount'">
<div v-if="row['discount_type'] == 'Percentage'">
{{ row['percentage_discount'] }}%
</div>
<div v-else-if="row['discount_type'] == 'Fixed Amount'">
{{ row['fixed_amount_discount'] }}/-
</div>
</div>
<div v-else class="leading-5 text-sm">
{{ row[column.key] }}
</div>
</ListRowItem>
</template>
</ListRow>
</ListRows>
<ListSelectBanner>
<template #actions="{ unselectAll, selections }">
<div class="flex gap-2">
<Button
variant="ghost"
@click="confirmDeletion(selections, unselectAll)"
>
<Trash2 class="h-4 w-4 stroke-1.5" />
</Button>
</div>
</template>
</ListSelectBanner>
</ListView>
</div>
<div v-else class="text-center text-ink-gray-6 italic mt-40">
{{ __('No coupons created yet.') }}
</div>
</div>
</template>
<script setup lang="ts">
import {
Badge,
Button,
call,
createListResource,
FeatherIcon,
ListView,
ListHeader,
ListHeaderItem,
ListRows,
ListRow,
ListRowItem,
ListSelectBanner,
toast,
} from 'frappe-ui'
import { computed, getCurrentInstance, inject, ref } from 'vue'
import { Plus, Trash2 } from 'lucide-vue-next'
import type { Coupon, Coupons } from './types'
const dayjs = inject('$dayjs') as typeof import('dayjs')
const app = getCurrentInstance()
const $dialog = app?.appContext.config.globalProperties.$dialog
const emit = defineEmits(['updateStep'])
const props = defineProps<{
label: string
description: string
coupons: Coupons
}>()
const openForm = (coupon: Coupon = {} as Coupon) => {
emit('updateStep', 'details', { ...coupon })
}
const confirmDeletion = (selections: any[], unselectAll: () => void) => {
if (selections.length === 0) {
toast.info(__('No coupons selected for deletion'))
return
}
$dialog({
title: __('Delete this coupon?'),
message: __(
'This will permanently delete the coupon and the code will no longer be valid.'
),
actions: [
{
label: __('Delete'),
theme: 'red',
variant: 'solid',
onClick({ close }: { close: () => void }) {
call('lms.lms.api.delete_documents', {
doctype: 'LMS Coupon',
documents: Array.from(selections),
}).then((data: any) => {
toast.success(__('Coupon(s) deleted successfully'))
coupons.reload()
unselectAll()
close()
})
},
},
],
})
}
function trashCoupon(name, close) {
call('frappe.client.delete', { doctype: 'LMS Coupon', name }).then(() => {
toast.success(__('Coupon deleted successfully'))
coupons.reload()
if (typeof close === 'function') close()
})
}
const columns = computed(() => {
return [
{
label: __('Code'),
key: 'code',
icon: 'tag',
width: '150px',
},
{
label: __('Discount'),
key: 'discount',
align: 'center',
width: '80px',
icon: 'dollar-sign',
},
{
label: __('Expires On'),
key: 'expires_on',
width: '120px',
icon: 'calendar',
},
{
label: __('Usage Limit'),
key: 'usage_limit',
align: 'center',
width: '100px',
icon: 'hash',
},
{
label: __('Redemption Count'),
key: 'redemption_count',
align: 'center',
width: '100px',
icon: 'users',
},
{
label: __('Enabled'),
key: 'enabled',
align: 'center',
icon: 'check-square',
},
]
})
</script>

View File

@@ -0,0 +1,53 @@
<template>
<CouponList
v-if="step === 'list'"
:label="props.label"
:description="props.description"
:coupons="coupons"
@updateStep="updateStep"
/>
<CouponDetails
v-else-if="step == 'details'"
:coupons="coupons"
:data="data"
@updateStep="updateStep"
/>
</template>
<script setup lang="ts">
import { ref } from 'vue'
import { createListResource } from 'frappe-ui'
import CouponList from '@/components/Settings/Coupons/CouponList.vue'
import CouponDetails from '@/components/Settings/Coupons/CouponDetails.vue'
import type { Coupon } from './types'
const step = ref('list')
const data = ref<Coupon | null>(null)
const props = defineProps<{
label: string
description: string
}>()
const updateStep = (newStep: 'list' | 'new' | 'edit', newData: Coupon) => {
step.value = newStep
if (newData) {
data.value = newData
}
}
const coupons = createListResource({
doctype: 'LMS Coupon',
fields: [
'name',
'code',
'discount_type',
'percentage_discount',
'fixed_amount_discount',
'expires_on',
'usage_limit',
'redemption_count',
'enabled',
],
auto: true,
})
</script>

View File

@@ -0,0 +1,30 @@
export interface Coupon {
name: string;
enabled: boolean;
code: string;
discount_type: 'Percentage' | 'Fixed Amount';
percentage_discount?: number;
fixed_amount_discount?: number;
expires_on?: string;
description?: string;
usage_limit?: number;
redemptions_count: number;
applicable_items: ApplicableItem[];
}
export type ApplicableItem = {
reference_doctype: "LMS Course" | "LMS Batch";
reference_name: string;
name: string;
parent: string;
parenttype: "LMS Coupon";
parentfield: "applicable_items";
}
export interface Coupons {
data: Coupon[];
update: (args: { filters: any[] }) => void;
insert: { submit: (params: Coupon, options: { onSuccess: (data: Coupon) => void; onError?: (err: any) => void }) => void };
setValue: { submit: (params: Coupon, options: { onSuccess: (data: Coupon) => void; onError?: (err: any) => void }) => void };
reload: () => void;
}

View File

@@ -147,6 +147,8 @@ const columns = computed(() => {
} else { } else {
if (field.type == 'checkbox') { if (field.type == 'checkbox') {
field.value = props.data[field.name] ? true : false field.value = props.data[field.name] ? true : false
} else {
field.value = props.data[field.name]
} }
currentColumn.push(field) currentColumn.push(field)
} }

View File

@@ -29,7 +29,7 @@
<div <div
v-if="activeTab && data.doc" v-if="activeTab && data.doc"
:key="activeTab.label" :key="activeTab.label"
class="flex flex-1 flex-col px-10 py-8 bg-surface-modal overflow-x-auto" class="flex flex-1 flex-col p-8 bg-surface-modal overflow-x-auto"
> >
<component <component
v-if="activeTab.template" v-if="activeTab.template"
@@ -79,7 +79,8 @@ import Categories from '@/components/Settings/Categories.vue'
import EmailTemplates from '@/components/Settings/EmailTemplates.vue' import EmailTemplates from '@/components/Settings/EmailTemplates.vue'
import BrandSettings from '@/components/Settings/BrandSettings.vue' import BrandSettings from '@/components/Settings/BrandSettings.vue'
import PaymentGateways from '@/components/Settings/PaymentGateways.vue' import PaymentGateways from '@/components/Settings/PaymentGateways.vue'
import Transactions from '@/components/Settings/Transactions.vue' import Coupons from '@/components/Settings/Coupons/Coupons.vue'
import Transactions from '@/components/Settings/Transactions/Transactions.vue'
import ZoomSettings from '@/components/Settings/ZoomSettings.vue' import ZoomSettings from '@/components/Settings/ZoomSettings.vue'
import Badges from '@/components/Settings/Badges.vue' import Badges from '@/components/Settings/Badges.vue'
@@ -286,6 +287,12 @@ const tabsStructure = computed(() => {
template: markRaw(Transactions), template: markRaw(Transactions),
description: 'View all your payment transactions', description: 'View all your payment transactions',
}, },
{
label: 'Coupons',
icon: 'Ticket',
template: markRaw(Coupons),
description: 'Manage discount coupons for courses and batches',
},
], ],
}, },
{ {

View File

@@ -1,152 +0,0 @@
<template>
<Dialog
v-model="show"
:options="{
title: __('Transaction Details'),
size: '3xl',
}"
>
<template #body-content>
<div v-if="transactionData" class="text-base">
<div class="grid grid-cols-3 gap-5 mt-5">
<FormControl
:label="__('Payment Received')"
type="checkbox"
v-model="transactionData.payment_received"
/>
<FormControl
:label="__('Payment For Certificate')"
type="checkbox"
v-model="transactionData.payment_for_certificate"
/>
</div>
<div class="grid grid-cols-3 gap-5 mt-5">
<Link
:label="__('Member')"
doctype="User"
v-model="transactionData.member"
/>
<FormControl
:label="__('Billing Name')"
v-model="transactionData.billing_name"
/>
<Link
:label="__('Source')"
v-model="transactionData.source"
doctype="LMS Source"
/>
</div>
<div class="font-semibold mt-10">
{{ __('Payment Details') }}
</div>
<div class="grid grid-cols-3 gap-5 mt-5">
<Link
:label="__('Payment For Document Type')"
v-model="transactionData.payment_for_document_type"
doctype="DocType"
/>
<Link
:label="__('Payment For Document')"
v-model="transactionData.payment_for_document"
:doctype="transactionData.payment_for_document_type"
/>
<Link
:label="__('Address')"
v-model="transactionData.address"
doctype="Address"
/>
</div>
<div class="grid grid-cols-3 gap-5 mt-5">
<Link
:label="__('Currency')"
v-model="transactionData.currency"
doctype="Currency"
/>
<FormControl :label="__('Amount')" v-model="transactionData.amount" />
<FormControl
:label="__('Order ID')"
v-model="transactionData.order_id"
/>
</div>
<div class="grid grid-cols-3 gap-5 mt-5">
<FormControl :label="__('GSTIN')" v-model="transactionData.gstin" />
<FormControl :label="__('PAN')" v-model="transactionData.pan" />
<FormControl
:label="__('Payment ID')"
v-model="transactionData.payment_id"
/>
</div>
</div>
</template>
<template #actions="{ close }">
<div class="space-x-2 pb-5 float-right">
<Button @click="openDetails(close)">
{{ __('Open the ') }}
{{
transaction.payment_for_document_type == 'LMS Course'
? __('Course')
: __('Batch')
}}
</Button>
<Button variant="solid" @click="saveTransaction(close)">
{{ __('Save') }}
</Button>
</div>
</template>
</Dialog>
</template>
<script setup lang="ts">
import { Dialog, FormControl, Button } from 'frappe-ui'
import { useRouter } from 'vue-router'
import { ref, watch } from 'vue'
import Link from '@/components/Controls/Link.vue'
const show = defineModel<boolean>({ required: true, default: false })
const transactions = defineModel<any>('transactions')
const router = useRouter()
const showModal = defineModel('show')
const transactionData = ref<{ [key: string]: any } | null>(null)
const props = defineProps<{
transaction: { [key: string]: any } | null
}>()
watch(
() => props.transaction,
(newVal) => {
transactionData.value = newVal ? { ...newVal } : null
},
{ immediate: true }
)
const saveTransaction = (close: () => void) => {
transactions.value.setValue
.submit({
...transactionData.value,
})
.then(() => {
close()
})
}
const openDetails = (close: Function) => {
if (props.transaction) {
const docType = props.transaction.payment_for_document_type
const docName = props.transaction.payment_for_document
if (docType && docName) {
router.push({
name: docType == 'LMS Course' ? 'CourseDetail' : 'BatchDetail',
params: {
[docType == 'LMS Course' ? 'courseName' : 'batchName']: docName,
},
})
}
}
close()
showModal.value = false
}
</script>

View File

@@ -0,0 +1,184 @@
<template>
<div class="flex flex-col h-full text-base">
<div class="flex items-center space-x-2 mb-8 -ml-1.5">
<ChevronLeft
class="size-5 stroke-1.5 text-ink-gray-7 cursor-pointer"
@click="emit('updateStep', 'list')"
/>
<div class="text-xl font-semibold text-ink-gray-9">
{{ __('Transaction Details') }}
</div>
</div>
<div v-if="transactionData" class="overflow-y-auto">
<div class="grid grid-cols-3 gap-5">
<FormControl
:label="__('Payment Received')"
type="checkbox"
v-model="transactionData.payment_received"
/>
<FormControl
:label="__('Payment For Certificate')"
type="checkbox"
v-model="transactionData.payment_for_certificate"
/>
</div>
<div class="grid grid-cols-3 gap-5 mt-5">
<Link
:label="__('Member')"
doctype="User"
v-model="transactionData.member"
/>
<FormControl
:label="__('Billing Name')"
v-model="transactionData.billing_name"
/>
<Link
:label="__('Source')"
v-model="transactionData.source"
doctype="LMS Source"
/>
<Link
:label="__('Payment For Document Type')"
v-model="transactionData.payment_for_document_type"
doctype="DocType"
/>
<Link
:label="__('Payment For Document')"
v-model="transactionData.payment_for_document"
:doctype="transactionData.payment_for_document_type"
/>
</div>
<div class="font-semibold mt-10">
{{ __('Payment Details') }}
</div>
<div class="grid grid-cols-3 gap-5 mt-5">
<Link
:label="__('Currency')"
v-model="transactionData.currency"
doctype="Currency"
/>
<FormControl :label="__('Amount')" v-model="transactionData.amount" />
<FormControl
v-if="transactionData.amount_with_gst"
:label="__('Amount with GST')"
v-model="transactionData.amount_with_gst"
/>
</div>
<div v-if="transactionData.coupon">
<div class="font-semibold mt-10">
{{ __('Coupon Details') }}
</div>
<div class="grid grid-cols-3 gap-5 mt-5">
<FormControl
v-if="transactionData.coupon"
:label="__('Coupon Code')"
v-model="transactionData.coupon"
/>
<FormControl
v-if="transactionData.coupon"
:label="__('Coupon Code')"
v-model="transactionData.coupon_code"
/>
<FormControl
v-if="transactionData.coupon"
:label="__('Discount Amount')"
v-model="transactionData.discount_amount"
/>
<FormControl
v-if="transactionData.coupon"
:label="__('Original Amount')"
v-model="transactionData.original_amount"
/>
</div>
</div>
<div class="font-semibold mt-10">
{{ __('Billing Details') }}
</div>
<div class="grid grid-cols-3 gap-5 mt-5">
<Link
:label="__('Address')"
v-model="transactionData.address"
doctype="Address"
/>
<FormControl :label="__('GSTIN')" v-model="transactionData.gstin" />
<FormControl :label="__('PAN')" v-model="transactionData.pan" />
<FormControl
:label="__('Payment ID')"
v-model="transactionData.payment_id"
/>
<FormControl
:label="__('Order ID')"
v-model="transactionData.order_id"
/>
</div>
</div>
<div class="space-x-2 mt-auto ml-auto">
<Button @click="openDetails()">
{{ __('Open the ') }}
{{
data.payment_for_document_type == 'LMS Course'
? __('Course')
: __('Batch')
}}
</Button>
<Button variant="solid" @click="saveTransaction()">
{{ __('Save') }}
</Button>
</div>
</div>
</template>
<script setup lang="ts">
import { Button, FormControl } from 'frappe-ui'
import { useRouter } from 'vue-router'
import { ref, watch } from 'vue'
import { ChevronLeft } from 'lucide-vue-next'
import Link from '@/components/Controls/Link.vue'
const router = useRouter()
const transactionData = ref<{ [key: string]: any } | null>(null)
const emit = defineEmits(['updateStep'])
const show = defineModel('show')
const props = defineProps<{
transactions: any
data: any
}>()
watch(
() => props.data,
(newVal) => {
transactionData.value = newVal ? { ...newVal } : null
},
{ immediate: true }
)
const saveTransaction = (close: () => void) => {
props.transactions.value.setValue
.submit({
...transactionData.value,
})
.then(() => {
close()
})
}
const openDetails = () => {
if (props.data) {
const docType = props.data.payment_for_document_type
const docName = props.data.payment_for_document
if (docType && docName) {
router.push({
name: docType == 'LMS Course' ? 'CourseDetail' : 'BatchDetail',
params: {
[docType == 'LMS Course' ? 'courseName' : 'batchName']: docName,
},
})
}
show.value = false
}
}
</script>

View File

@@ -96,17 +96,10 @@
</div> </div>
</div> </div>
</div> </div>
<TransactionDetails
v-model="showForm"
:transaction="currentTransaction"
v-model:transactions="transactions"
v-model:show="show"
/>
</template> </template>
<script setup lang="ts"> <script setup lang="ts">
import { import {
Button, Button,
createListResource,
ListView, ListView,
ListHeader, ListHeader,
ListHeaderItem, ListHeaderItem,
@@ -118,50 +111,19 @@ import {
} from 'frappe-ui' } from 'frappe-ui'
import { computed, ref, watch } from 'vue' import { computed, ref, watch } from 'vue'
import { RefreshCw } from 'lucide-vue-next' import { RefreshCw } from 'lucide-vue-next'
import TransactionDetails from './TransactionDetails.vue'
import Link from '@/components/Controls/Link.vue' import Link from '@/components/Controls/Link.vue'
const showForm = ref(false)
const currentTransaction = ref<{ [key: string]: any } | null>(null)
const show = defineModel('show')
const billingName = ref(null) const billingName = ref(null)
const paymentReceived = ref(false) const paymentReceived = ref(false)
const paymentForCertificate = ref(false) const paymentForCertificate = ref(false)
const member = ref(null) const member = ref(null)
const emit = defineEmits(['updateStep'])
const props = defineProps({ const props = defineProps<{
label: { label: string
type: String, description: string
required: true, transactions: any
}, }>()
description: {
type: String,
default: '',
},
})
const transactions = createListResource({
doctype: 'LMS Payment',
fields: [
'name',
'member',
'billing_name',
'source',
'payment_for_document_type',
'payment_for_document',
'payment_received',
'payment_for_certificate',
'currency',
'amount',
'order_id',
'payment_id',
'gstin',
'pan',
'address',
],
auto: true,
orderBy: 'modified desc',
})
watch( watch(
[billingName, member, paymentReceived, paymentForCertificate], [billingName, member, paymentReceived, paymentForCertificate],
@@ -171,7 +133,7 @@ watch(
newPaymentReceived, newPaymentReceived,
newPaymentForCertificate, newPaymentForCertificate,
]) => { ]) => {
transactions.update({ props.transactions.update({
filters: [ filters: [
newBillingName ? [['billing_name', 'like', `%${newBillingName}%`]] : [], newBillingName ? [['billing_name', 'like', `%${newBillingName}%`]] : [],
newMember ? [['member', '=', newMember]] : [], newMember ? [['member', '=', newMember]] : [],
@@ -183,14 +145,13 @@ watch(
: [], : [],
].flat(), ].flat(),
}) })
transactions.reload() props.transactions.reload()
}, },
{ immediate: true } { immediate: true }
) )
const openForm = (transaction: { [key: string]: any }) => { const openForm = (transaction: { [key: string]: any }) => {
currentTransaction.value = transaction emit('updateStep', 'details', { ...transaction })
showForm.value = true
} }
const getCurrencySymbol = (currency: string) => { const getCurrencySymbol = (currency: string) => {

View File

@@ -0,0 +1,66 @@
<template>
<TransactionList
v-if="step === 'list'"
:label="props.label"
:description="props.description"
:transactions="transactions"
@updateStep="updateStep"
/>
<TransactionDetails
v-else-if="step == 'details'"
:transactions="transactions"
:data="data"
v-model:show="show"
@updateStep="updateStep"
/>
</template>
<script setup lang="ts">
import { ref } from 'vue'
import { createListResource } from 'frappe-ui'
import TransactionList from '@/components/Settings/Transactions/TransactionList.vue'
import TransactionDetails from '@/components/Settings/Transactions/TransactionDetails.vue'
const step = ref('list')
const data = ref<any | null>(null)
const show = defineModel('show')
const props = defineProps<{
label: string
description: string
}>()
const updateStep = (newStep: 'list' | 'new' | 'edit', newData: any) => {
step.value = newStep
if (newData) {
data.value = newData
}
}
const transactions = createListResource({
doctype: 'LMS Payment',
fields: [
'name',
'member',
'billing_name',
'source',
'payment_for_document_type',
'payment_for_document',
'payment_received',
'payment_for_certificate',
'currency',
'amount',
'amount_with_gst',
'coupon',
'coupon_code',
'discount_amount',
'original_amount',
'order_id',
'payment_id',
'gstin',
'pan',
'address',
],
auto: true,
orderBy: 'modified desc',
})
</script>

View File

@@ -1,12 +1,12 @@
<template> <template>
<div v-if="user.data?.is_moderator || isStudent" class=""> <div v-if="isAdmin || isStudent" class="">
<header <header
class="sticky top-0 z-10 flex items-center justify-between border-b bg-surface-white px-3 py-2.5 sm:px-5" class="sticky top-0 z-10 flex items-center justify-between border-b bg-surface-white px-3 py-2.5 sm:px-5"
> >
<Breadcrumbs class="h-7" :items="breadcrumbs" /> <Breadcrumbs class="h-7" :items="breadcrumbs" />
<div class="flex items-center space-x-2"> <div class="flex items-center space-x-2">
<Button <Button
v-if="user.data?.is_moderator && batch.data?.certification" v-if="isAdmin && batch.data?.certification"
@click="openCertificateDialog = true" @click="openCertificateDialog = true"
> >
{{ __('Generate Certificates') }} {{ __('Generate Certificates') }}
@@ -67,6 +67,9 @@
<BatchDashboard :batch="batch" :isStudent="isStudent" /> <BatchDashboard :batch="batch" :isStudent="isStudent" />
</div> </div>
<div v-else-if="tab.label == 'Dashboard'"> <div v-else-if="tab.label == 'Dashboard'">
<AdminBatchDashboard :batch="batch" />
</div>
<div v-else-if="tab.label == 'Students'">
<BatchStudents :batch="batch" /> <BatchStudents :batch="batch" />
</div> </div>
<div v-else-if="tab.label == 'Classes'"> <div v-else-if="tab.label == 'Classes'">
@@ -235,6 +238,7 @@ import BatchDashboard from '@/components/BatchDashboard.vue'
import BatchCourses from '@/components/BatchCourses.vue' import BatchCourses from '@/components/BatchCourses.vue'
import LiveClass from '@/components/LiveClass.vue' import LiveClass from '@/components/LiveClass.vue'
import BatchStudents from '@/components/BatchStudents.vue' import BatchStudents from '@/components/BatchStudents.vue'
import AdminBatchDashboard from '@/components/AdminBatchDashboard.vue'
import Assessments from '@/components/Assessments.vue' import Assessments from '@/components/Assessments.vue'
import Announcements from '@/components/Annoucements.vue' import Announcements from '@/components/Annoucements.vue'
import AnnouncementModal from '@/components/Modals/AnnouncementModal.vue' import AnnouncementModal from '@/components/Modals/AnnouncementModal.vue'
@@ -260,6 +264,13 @@ const tabs = computed(() => {
icon: LayoutDashboard, icon: LayoutDashboard,
}) })
if (isAdmin.value) {
batchTabs.push({
label: 'Students',
icon: ClipboardPen,
})
}
batchTabs.push({ batchTabs.push({
label: 'Courses', label: 'Courses',
icon: BookOpen, icon: BookOpen,
@@ -270,7 +281,7 @@ const tabs = computed(() => {
icon: Laptop, icon: Laptop,
}) })
if (user.data?.is_moderator) { if (isAdmin.value) {
batchTabs.push({ batchTabs.push({
label: 'Assessments', label: 'Assessments',
icon: BookOpenCheck, icon: BookOpenCheck,
@@ -367,6 +378,10 @@ const canMakeAnnouncement = () => {
return user.data?.is_moderator || user.data?.is_evaluator return user.data?.is_moderator || user.data?.is_evaluator
} }
const isAdmin = computed(() => {
return user.data?.is_moderator || user.data?.is_evaluator
})
usePageMeta(() => { usePageMeta(() => {
return { return {
title: batch?.data?.title, title: batch?.data?.title,

View File

@@ -344,6 +344,7 @@ import {
getMetaInfo, getMetaInfo,
updateMetaInfo, updateMetaInfo,
validateFile, validateFile,
escapeHTML,
} from '@/utils' } from '@/utils'
const router = useRouter() const router = useRouter()
@@ -500,7 +501,19 @@ const imageResource = createResource({
}, },
}) })
const validateFields = () => {
Object.keys(batch).forEach((key) => {
if (
!['description', 'batch_details'].includes(key) &&
typeof batch[key] === 'string'
) {
batch[key] = escapeHTML(batch[key])
}
})
}
const saveBatch = () => { const saveBatch = () => {
validateFields()
if (batchDetail.data) { if (batchDetail.data) {
editBatchDetails() editBatchDetails()
} else { } else {

View File

@@ -244,12 +244,11 @@ const setQueryParams = () => {
} }
}) })
let queryString = '' history.replaceState(
if (queries.toString()) { {},
queryString = `?${queries.toString()}` '',
} `${location.pathname}${queries.size > 0 ? `?${queries.toString()}` : ''}`
)
history.replaceState({}, '', `${location.pathname}${queryString}`)
} }
const updateCategories = (data) => { const updateCategories = (data) => {

View File

@@ -13,47 +13,82 @@
class="pt-5 pb-10 mx-5" class="pt-5 pb-10 mx-5"
> >
<div class="flex flex-col lg:flex-row justify-between"> <div class="flex flex-col lg:flex-row justify-between">
<div <div class="flex flex-col lg:order-last mb-10 lg:mt-10 lg:w-1/4">
class="h-fit bg-surface-gray-2 rounded-md p-5 space-y-4 lg:order-last mb-10 lg:mt-10 font-medium lg:w-1/3" <div class="h-fit bg-surface-gray-2 rounded-md p-5 space-y-4">
> <div class="space-y-1">
<div class="flex items-baseline justify-between space-y-2"> <div class="text-ink-gray-5 uppercase text-xs">
<div class="text-ink-gray-5"> {{ __('Payment for ') }} {{ type }}:
{{ __('Payment for ') }} {{ type }}: </div>
<div class="leading-5 text-ink-gray-9">
{{ orderSummary.data.title }}
</div>
</div> </div>
<div class="leading-5 text-ink-gray-9"> <div
{{ orderSummary.data.title }} v-if="
orderSummary.data.gst_applied ||
orderSummary.data.discount_amount
"
class="space-y-1"
>
<div class="text-ink-gray-5 uppercase text-xs">
{{ __('Original Amount') }}:
</div>
<div class="text-ink-gray-9">
{{ orderSummary.data.original_amount_formatted }}
</div>
</div>
<div v-if="orderSummary.data.discount_amount" class="space-y-1">
<div class="text-ink-gray-5">{{ __('Discount') }}:</div>
<div>- {{ orderSummary.data.discount_amount_formatted }}</div>
</div>
<div v-if="orderSummary.data.gst_applied" class="space-y-1">
<div class="text-ink-gray-5 uppercase text-xs">
{{ __('GST Amount') }}:
</div>
<div class="text-ink-gray-9">
{{ orderSummary.data.gst_amount_formatted }}
</div>
</div>
<div class="space-y-1 border-t border-outline-gray-3 pt-4 mt-2">
<div class="uppercase text-ink-gray-5 text-xs">
{{ __('Total') }}:
</div>
<div class="font-bold text-ink-gray-9">
{{ orderSummary.data.total_amount_formatted }}
</div>
</div> </div>
</div> </div>
<div
v-if="orderSummary.data.gst_applied" <div class="bg-surface-gray-2 rounded-md p-4 space-y-2 my-5">
class="flex items-center justify-between" <span class="text-ink-gray-5 uppercase text-xs">
> {{ __('Enter a Coupon Code') }}:
<div class="text-ink-gray-5"> </span>
{{ __('Original Amount') }} <div class="flex items-center space-x-2">
</div> <FormControl
<div class="text-ink-gray-9"> v-model="appliedCoupon"
{{ orderSummary.data.original_amount_formatted }} :disabled="orderSummary.data.discount_amount > 0"
</div> @input="appliedCoupon = $event.target.value.toUpperCase()"
</div> @keydown.enter="applyCouponCode"
<div placeholder="COUPON2025"
v-if="orderSummary.data.gst_applied" autocomplete="off"
class="flex items-center justify-between mt-2" class="flex-1 [&_input]:bg-white"
> />
<div class="text-ink-gray-5"> <Button
{{ __('GST Amount') }} v-if="!orderSummary.data.discount_amount"
</div> @click="applyCouponCode"
<div class="text-ink-gray-9"> variant="outline"
{{ orderSummary.data.gst_amount_formatted }} >
</div> {{ __('Apply') }}
</div> </Button>
<div <Button
class="flex items-center justify-between border-t border-outline-gray-3 pt-4 mt-2" v-if="orderSummary.data.discount_amount"
> @click="removeCoupon"
<div class="text-lg font-semibold text-ink-gray-9"> variant="outline"
{{ __('Total') }} >
</div> <template #icon>
<div class="text-lg font-semibold text-ink-gray-9"> <X class="size-4 stroke-1.5" />
{{ orderSummary.data.total_amount_formatted }} </template>
</Button>
</div> </div>
</div> </div>
</div> </div>
@@ -112,7 +147,7 @@
/> />
<FormControl <FormControl
v-if="billingDetails.country == 'India'" v-if="billingDetails.country == 'India'"
:label="__('Pan Number')" :label="__('PAN Number')"
v-model="billingDetails.pan" v-model="billingDetails.pan"
/> />
</div> </div>
@@ -157,11 +192,13 @@ import {
Breadcrumbs, Breadcrumbs,
usePageMeta, usePageMeta,
toast, toast,
call,
} from 'frappe-ui' } from 'frappe-ui'
import { reactive, inject, onMounted, computed } from 'vue' import { reactive, inject, onMounted, computed, ref } from 'vue'
import { sessionStore } from '../stores/session' import { sessionStore } from '../stores/session'
import Link from '@/components/Controls/Link.vue' import Link from '@/components/Controls/Link.vue'
import NotPermitted from '@/components/NotPermitted.vue' import NotPermitted from '@/components/NotPermitted.vue'
import { X } from 'lucide-vue-next'
const user = inject('$user') const user = inject('$user')
const { brand } = sessionStore() const { brand } = sessionStore()
@@ -205,6 +242,7 @@ const orderSummary = createResource({
doctype: props.type == 'batch' ? 'LMS Batch' : 'LMS Course', doctype: props.type == 'batch' ? 'LMS Batch' : 'LMS Course',
docname: props.name, docname: props.name,
country: billingDetails.country, country: billingDetails.country,
coupon: appliedCoupon.value,
} }
}, },
onError(err) { onError(err) {
@@ -212,6 +250,7 @@ const orderSummary = createResource({
}, },
}) })
const appliedCoupon = ref(null)
const billingDetails = reactive({}) const billingDetails = reactive({})
const setBillingDetails = (data) => { const setBillingDetails = (data) => {
@@ -231,17 +270,21 @@ const setBillingDetails = (data) => {
const paymentLink = createResource({ const paymentLink = createResource({
url: 'lms.lms.payments.get_payment_link', url: 'lms.lms.payments.get_payment_link',
makeParams(values) { makeParams(values) {
return { let data = {
doctype: props.type == 'batch' ? 'LMS Batch' : 'LMS Course', doctype: props.type == 'batch' ? 'LMS Batch' : 'LMS Course',
docname: props.name, docname: props.name,
title: orderSummary.data.title, title: orderSummary.data.title,
amount: orderSummary.data.original_amount, amount: orderSummary.data.original_amount,
total_amount: orderSummary.data.amount, discount_amount: orderSummary.data.discount_amount || 0,
gst_amount: orderSummary.data.gst_applied || 0,
currency: orderSummary.data.currency, currency: orderSummary.data.currency,
address: billingDetails, address: billingDetails,
redirect_to: redirectTo.value, redirect_to: redirectTo.value,
payment_for_certificate: props.type == 'certificate', payment_for_certificate: props.type == 'certificate',
coupon_code: appliedCoupon.value,
coupon: orderSummary.data.coupon,
} }
return data
}, },
}) })
@@ -265,6 +308,19 @@ const generatePaymentLink = () => {
) )
} }
function applyCouponCode() {
if (!appliedCoupon.value) {
toast.error(__('Please enter a coupon code'))
return
}
orderSummary.reload()
}
function removeCoupon() {
appliedCoupon.value = null
orderSummary.reload()
}
const validateAddress = () => { const validateAddress = () => {
let mandatoryFields = [ let mandatoryFields = [
'billing_name', 'billing_name',
@@ -329,8 +385,6 @@ const validateAddress = () => {
!states.includes(billingDetails.state) !states.includes(billingDetails.state)
) )
return 'Please enter a valid state with correct spelling and the first letter capitalized.' return 'Please enter a valid state with correct spelling and the first letter capitalized.'
console.log('validation address')
} }
const showError = (err) => { const showError = (err) => {

View File

@@ -124,7 +124,7 @@ const memberCount = ref(0)
const dayjs = inject('$dayjs') const dayjs = inject('$dayjs')
onMounted(() => { onMounted(() => {
getMemberCount() setFiltersFromQuery()
updateParticipants() updateParticipants()
}) })
@@ -158,6 +158,8 @@ const categories = createListResource({
const updateParticipants = () => { const updateParticipants = () => {
updateFilters() updateFilters()
getMemberCount() getMemberCount()
setQueryParams()
participants.update({ participants.update({
filters: filters.value, filters: filters.value,
}) })
@@ -178,6 +180,33 @@ const updateFilters = () => {
} }
} }
const setQueryParams = () => {
let queries = new URLSearchParams(location.search)
let filterKeys = {
category: currentCategory.value,
name: nameFilter.value,
}
Object.keys(filterKeys).forEach((key) => {
if (filterKeys[key]) {
queries.set(key, filterKeys[key])
} else {
queries.delete(key)
}
})
history.replaceState(
{},
'',
`${location.pathname}${queries.size > 0 ? `?${queries.toString()}` : ''}`
)
}
const setFiltersFromQuery = () => {
let queries = new URLSearchParams(location.search)
nameFilter.value = queries.get('name') || ''
currentCategory.value = queries.get('category') || ''
}
const breadcrumbs = computed(() => [ const breadcrumbs = computed(() => [
{ {
label: __('Certified Members'), label: __('Certified Members'),

View File

@@ -357,6 +357,7 @@ import {
getMetaInfo, getMetaInfo,
updateMetaInfo, updateMetaInfo,
validateFile, validateFile,
escapeHTML,
} from '@/utils' } from '@/utils'
import Link from '@/components/Controls/Link.vue' import Link from '@/components/Controls/Link.vue'
import CourseOutline from '@/components/CourseOutline.vue' import CourseOutline from '@/components/CourseOutline.vue'
@@ -537,7 +538,16 @@ const imageResource = createResource({
}, },
}) })
const validateFields = () => {
Object.keys(course).forEach((key) => {
if (key != 'description' && typeof course[key] === 'string') {
course[key] = escapeHTML(course[key])
}
})
}
const submitCourse = () => { const submitCourse = () => {
validateFields()
if (courseResource.data) { if (courseResource.data) {
editCourse() editCourse()
} else { } else {

View File

@@ -94,10 +94,10 @@
<div class="grid grid-cols-1 lg:grid-cols-2 gap-5"> <div class="grid grid-cols-1 lg:grid-cols-2 gap-5">
<div <div
v-for="evaluation in evals?.data" v-for="evaluation in evals?.data"
class="border rounded-md p-3 flex flex-col h-full cursor-pointer" class="border hover:border-outline-gray-3 rounded-md p-3 flex flex-col h-full cursor-pointer"
@click="redirectToProfile()" @click="redirectToProfile()"
> >
<div class="font-semibold text-ink-gray-9 text-lg mb-1"> <div class="font-semibold text-ink-gray-9 text-lg leading-5 mb-1">
{{ evaluation.course_title }} {{ evaluation.course_title }}
</div> </div>
<div class="text-ink-gray-7 text-sm"> <div class="text-ink-gray-7 text-sm">
@@ -128,8 +128,11 @@
{{ __('Upcoming Live Classes') }} {{ __('Upcoming Live Classes') }}
</div> </div>
<div class="grid grid-cols-1 lg:grid-cols-2 gap-5"> <div class="grid grid-cols-1 lg:grid-cols-2 gap-5">
<div v-for="cls in liveClasses?.data" class="border rounded-md p-3"> <div
<div class="font-semibold text-ink-gray-9 text-lg mb-1"> v-for="cls in liveClasses?.data"
class="border hover:border-outline-gray-3 rounded-md p-3"
>
<div class="font-semibold text-ink-gray-9 text-lg leading-5 mb-1">
{{ cls.title }} {{ cls.title }}
</div> </div>
<div class="text-ink-gray-7 text-sm leading-5 mb-4"> <div class="text-ink-gray-7 text-sm leading-5 mb-4">

View File

@@ -71,8 +71,11 @@
{{ __('Upcoming Live Classes') }} {{ __('Upcoming Live Classes') }}
</div> </div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-5"> <div class="grid grid-cols-1 md:grid-cols-2 gap-5">
<div v-for="cls in myLiveClasses.data" class="border rounded-md p-2"> <div
<div class="font-semibold text-ink-gray-9 text-lg mb-1"> v-for="cls in myLiveClasses.data"
class="border rounded-md hover:border-outline-gray-3 p-2"
>
<div class="font-semibold text-ink-gray-9 text-lg leading-5 mb-1">
{{ cls.title }} {{ cls.title }}
</div> </div>
<div class="text-ink-gray-7 text-sm leading-5 mb-4"> <div class="text-ink-gray-7 text-sm leading-5 mb-4">

View File

@@ -2,9 +2,17 @@
<NoPermission v-if="!$user.data" /> <NoPermission v-if="!$user.data" />
<div v-else-if="profile.data"> <div v-else-if="profile.data">
<header <header
class="sticky top-0 z-10 flex flex-col md:flex-row md:items-center justify-between border-b bg-surface-white px-3 py-2.5 sm:px-5" class="sticky group top-0 z-10 flex flex-col md:flex-row md:items-center justify-between border-b bg-surface-white px-3 py-2.5 sm:px-5"
> >
<Breadcrumbs class="h-7" :items="breadcrumbs" /> <Breadcrumbs class="h-7" :items="breadcrumbs" />
<Button v-if="isSessionUser()" class="invisible group-hover:visible">
<template #icon>
<RefreshCcw
class="w-4 h-4 stroke-1.5 text-ink-gray-7"
@click="reloadUser()"
/>
</template>
</Button>
</header> </header>
<div class="group relative h-[130px] w-full"> <div class="group relative h-[130px] w-full">
<img <img
@@ -92,18 +100,19 @@
<script setup> <script setup>
import { import {
Breadcrumbs, Breadcrumbs,
createResource,
Button, Button,
call,
createResource,
TabButtons, TabButtons,
usePageMeta, usePageMeta,
} from 'frappe-ui' } from 'frappe-ui'
import { computed, inject, watch, ref, onMounted, watchEffect } from 'vue' import { computed, inject, watch, ref, onMounted, watchEffect } from 'vue'
import { sessionStore } from '@/stores/session' import { sessionStore } from '@/stores/session'
import { Edit } from 'lucide-vue-next' import { Edit, RefreshCcw } from 'lucide-vue-next'
import UserAvatar from '@/components/UserAvatar.vue'
import { useRoute, useRouter } from 'vue-router' import { useRoute, useRouter } from 'vue-router'
import NoPermission from '@/components/NoPermission.vue'
import { convertToTitleCase } from '@/utils' import { convertToTitleCase } from '@/utils'
import UserAvatar from '@/components/UserAvatar.vue'
import NoPermission from '@/components/NoPermission.vue'
import EditProfile from '@/components/Modals/EditProfile.vue' import EditProfile from '@/components/Modals/EditProfile.vue'
import EditCoverImage from '@/components/Modals/EditCoverImage.vue' import EditCoverImage from '@/components/Modals/EditCoverImage.vue'
@@ -212,6 +221,14 @@ const getTabButtons = () => {
return buttons return buttons
} }
const reloadUser = () => {
call('frappe.sessions.clear').then(() => {
$user.reload().then(() => {
profile.reload()
})
})
}
const breadcrumbs = computed(() => { const breadcrumbs = computed(() => {
let crumbs = [ let crumbs = [
{ {

View File

@@ -105,6 +105,8 @@
</Dialog> </Dialog>
</template> </template>
<script setup lang="ts"> <script setup lang="ts">
import { computed, ref, watch } from 'vue'
import { escapeHTML } from '@/utils'
import { import {
Button, Button,
createListResource, createListResource,
@@ -113,14 +115,13 @@ import {
TextEditor, TextEditor,
toast, toast,
} from 'frappe-ui' } from 'frappe-ui'
import { computed, ref, watch } from 'vue'
import { import {
ProgrammingExercise, ProgrammingExercise,
ProgrammingExercises, ProgrammingExercises,
TestCase, TestCase,
} from '@/types/programming-exercise' } from '@/types/programming-exercise'
import ChildTable from '@/components/Controls/ChildTable.vue'
import { ClipboardList, Play, Trash2 } from 'lucide-vue-next' import { ClipboardList, Play, Trash2 } from 'lucide-vue-next'
import ChildTable from '@/components/Controls/ChildTable.vue'
const show = defineModel() const show = defineModel()
const exercises = defineModel<ProgrammingExercises>('exercises') const exercises = defineModel<ProgrammingExercises>('exercises')
@@ -194,7 +195,12 @@ const fetchTestCases = () => {
testCases.reload() testCases.reload()
} }
const validateTitle = () => {
exercise.value.title = escapeHTML(exercise.value.title.trim())
}
const saveExercise = (close: () => void) => { const saveExercise = (close: () => void) => {
validateTitle()
if (props.exerciseID == 'new') createNewExercise(close) if (props.exerciseID == 'new') createNewExercise(close)
else updateExercise(close) else updateExercise(close)
} }

View File

@@ -255,7 +255,7 @@ import {
import { computed, ref, watch } from 'vue' import { computed, ref, watch } from 'vue'
import { Plus, Trash2, TrendingUp } from 'lucide-vue-next' import { Plus, Trash2, TrendingUp } from 'lucide-vue-next'
import { Programs, Program } from '@/types/programs' import { Programs, Program } from '@/types/programs'
import { openSettings } from '@/utils' import { escapeHTML, openSettings } from '@/utils'
import Link from '@/components/Controls/Link.vue' import Link from '@/components/Controls/Link.vue'
import Draggable from 'vuedraggable' import Draggable from 'vuedraggable'
import ProgramProgressSummary from '@/pages/Programs/ProgramProgressSummary.vue' import ProgramProgressSummary from '@/pages/Programs/ProgramProgressSummary.vue'
@@ -362,7 +362,12 @@ const fetchMembers = () => {
programMembers.reload() programMembers.reload()
} }
const validateTitle = () => {
program.value.name = escapeHTML(program.value.name.trim())
}
const saveProgram = (close: () => void) => { const saveProgram = (close: () => void) => {
validateTitle()
if (props.programName === 'new') createNewProgram(close) if (props.programName === 'new') createNewProgram(close)
else updateProgram(close) else updateProgram(close)
dirty.value = false dirty.value = false

View File

@@ -231,6 +231,7 @@ import {
import { sessionStore } from '../stores/session' import { sessionStore } from '../stores/session'
import { ClipboardList, ListChecks, Plus, Trash2 } from 'lucide-vue-next' import { ClipboardList, ListChecks, Plus, Trash2 } from 'lucide-vue-next'
import { useRouter } from 'vue-router' import { useRouter } from 'vue-router'
import { escapeHTML } from '@/utils'
import Question from '@/components/Modals/Question.vue' import Question from '@/components/Modals/Question.vue'
const { brand } = sessionStore() const { brand } = sessionStore()
@@ -294,7 +295,12 @@ const quizDetails = createDocumentResource({
}, },
}) })
const validateTitle = () => {
quizDetails.doc.title = escapeHTML(quizDetails.doc.title.trim())
}
const submitQuiz = () => { const submitQuiz = () => {
validateTitle()
quizDetails.setValue.submit( quizDetails.setValue.submit(
{ {
...quizDetails.doc, ...quizDetails.doc,

View File

@@ -138,6 +138,7 @@ import { useRouter } from 'vue-router'
import { computed, inject, onMounted, ref, watch } from 'vue' import { computed, inject, onMounted, ref, watch } from 'vue'
import { Plus } from 'lucide-vue-next' import { Plus } from 'lucide-vue-next'
import { sessionStore } from '@/stores/session' import { sessionStore } from '@/stores/session'
import { escapeHTML } from '@/utils'
import EmptyState from '@/components/EmptyState.vue' import EmptyState from '@/components/EmptyState.vue'
const { brand } = sessionStore() const { brand } = sessionStore()
@@ -191,7 +192,12 @@ const quizzes = createListResource({
}, },
}) })
const validateTitle = () => {
title.value = escapeHTML(title.value.trim())
}
const insertQuiz = (close) => { const insertQuiz = (close) => {
validateTitle()
quizzes.insert.submit( quizzes.insert.submit(
{ {
title: title.value, title: title.value,

View File

@@ -1384,6 +1384,7 @@ def save_role(user, role, value):
doc.save(ignore_permissions=True) doc.save(ignore_permissions=True)
else: else:
frappe.db.delete("Has Role", {"parent": user, "role": role}) frappe.db.delete("Has Role", {"parent": user, "role": role})
frappe.clear_cache(user=user)
return True return True

View File

View File

@@ -0,0 +1,8 @@
// Copyright (c) 2025, Frappe and contributors
// For license information, please see license.txt
// frappe.ui.form.on("LMS Coupon", {
// refresh(frm) {
// },
// });

View File

@@ -0,0 +1,190 @@
{
"actions": [],
"allow_rename": 1,
"autoname": "hash",
"creation": "2025-10-11 21:39:11.456420",
"doctype": "DocType",
"engine": "InnoDB",
"field_order": [
"enabled",
"section_break_spfj",
"code",
"expires_on",
"column_break_mptc",
"discount_type",
"percentage_discount",
"fixed_amount_discount",
"section_break_ixxu",
"usage_limit",
"column_break_dcvj",
"redemption_count",
"section_break_ophm",
"applicable_items"
],
"fields": [
{
"fieldname": "code",
"fieldtype": "Data",
"in_list_view": 1,
"label": "Code",
"reqd": 1,
"unique": 1
},
{
"fieldname": "discount_type",
"fieldtype": "Select",
"in_list_view": 1,
"in_standard_filter": 1,
"label": "Discount Type",
"options": "Percentage\nFixed Amount",
"reqd": 1
},
{
"fieldname": "expires_on",
"fieldtype": "Date",
"in_standard_filter": 1,
"label": "Expires On"
},
{
"fieldname": "usage_limit",
"fieldtype": "Int",
"in_list_view": 1,
"label": "Usage Limit"
},
{
"fieldname": "applicable_items",
"fieldtype": "Table",
"label": "Applicable Items",
"options": "LMS Coupon Item",
"reqd": 1
},
{
"default": "1",
"fieldname": "enabled",
"fieldtype": "Check",
"in_standard_filter": 1,
"label": "Enabled"
},
{
"fieldname": "column_break_mptc",
"fieldtype": "Column Break"
},
{
"fieldname": "section_break_ixxu",
"fieldtype": "Section Break"
},
{
"fieldname": "column_break_dcvj",
"fieldtype": "Column Break"
},
{
"fieldname": "section_break_ophm",
"fieldtype": "Section Break"
},
{
"depends_on": "eval:doc.discount_type=='Percentage'",
"fieldname": "percentage_discount",
"fieldtype": "Int",
"in_list_view": 1,
"label": "Percentage Discount",
"mandatory_depends_on": "eval:doc.discount_type=='Percentage'"
},
{
"depends_on": "eval:doc.discount_type=='Fixed Amount'",
"fieldname": "fixed_amount_discount",
"fieldtype": "Int",
"in_list_view": 1,
"label": "Fixed Amount Discount",
"mandatory_depends_on": "eval:doc.discount_type=='Fixed Amount'"
},
{
"default": "0",
"fieldname": "redemption_count",
"fieldtype": "Int",
"in_list_view": 1,
"label": "Redemption Count",
"read_only": 1
},
{
"fieldname": "section_break_spfj",
"fieldtype": "Section Break"
}
],
"grid_page_length": 50,
"index_web_pages_for_search": 1,
"links": [],
"modified": "2025-10-27 19:52:11.835042",
"modified_by": "sayali@frappe.io",
"module": "LMS",
"name": "LMS Coupon",
"naming_rule": "Random",
"owner": "Administrator",
"permissions": [
{
"create": 1,
"delete": 1,
"email": 1,
"export": 1,
"print": 1,
"read": 1,
"report": 1,
"role": "System Manager",
"share": 1,
"write": 1
},
{
"create": 1,
"delete": 1,
"email": 1,
"export": 1,
"print": 1,
"read": 1,
"report": 1,
"role": "Administrator",
"share": 1,
"write": 1
},
{
"create": 1,
"delete": 1,
"email": 1,
"export": 1,
"print": 1,
"read": 1,
"report": 1,
"role": "Batch Evaluator",
"share": 1,
"write": 1
},
{
"create": 1,
"delete": 1,
"email": 1,
"export": 1,
"print": 1,
"read": 1,
"report": 1,
"role": "Course Creator",
"share": 1,
"write": 1
},
{
"create": 1,
"delete": 1,
"email": 1,
"export": 1,
"print": 1,
"read": 1,
"report": 1,
"role": "Moderator",
"share": 1,
"write": 1
}
],
"row_format": "Dynamic",
"rows_threshold_for_grid_search": 20,
"sort_field": "creation",
"sort_order": "DESC",
"states": [],
"title_field": "code"
}

View File

@@ -0,0 +1,31 @@
# Copyright (c) 2025, Frappe and contributors
# For license information, please see license.txt
import frappe
from frappe import _
from frappe.model.document import Document
from frappe.utils import cint, nowdate
class LMSCoupon(Document):
def validate(self):
self.convert_to_uppercase()
self.validate_expiry_date()
self.validate_applicable_items()
self.validate_usage_limit()
def convert_to_uppercase(self):
if self.code:
self.code = self.code.strip().upper()
def validate_expiry_date(self):
if self.expires_on and str(self.expires_on) < nowdate():
frappe.throw(_("Expiry date cannot be in the past"))
def validate_applicable_items(self):
if not self.get("applicable_items") or len(self.get("applicable_items")) == 0:
frappe.throw(_("At least one applicable item is required"))
def validate_usage_limit(self):
if self.usage_limit is not None and cint(self.usage_limit) < 0:
frappe.throw(_("Usage limit cannot be negative"))

View File

@@ -0,0 +1,20 @@
# Copyright (c) 2025, Frappe and Contributors
# See license.txt
# import frappe
from frappe.tests import IntegrationTestCase
# On IntegrationTestCase, the doctype test records and all
# link-field test record dependencies are recursively loaded
# Use these module variables to add/remove to/from that list
EXTRA_TEST_RECORD_DEPENDENCIES = [] # eg. ["User"]
IGNORE_TEST_RECORD_DEPENDENCIES = [] # eg. ["User"]
class IntegrationTestLMSCoupon(IntegrationTestCase):
"""
Integration tests for LMSCoupon.
Use this class for testing interactions between multiple components.
"""
pass

View File

@@ -0,0 +1,43 @@
{
"actions": [],
"allow_rename": 1,
"creation": "2025-10-11 21:45:00",
"doctype": "DocType",
"editable_grid": 1,
"engine": "InnoDB",
"field_order": [
"reference_doctype",
"reference_name"
],
"fields": [
{
"fieldname": "reference_doctype",
"fieldtype": "Select",
"in_list_view": 1,
"label": "Reference DocType",
"options": "\nLMS Course\nLMS Batch",
"reqd": 1
},
{
"fieldname": "reference_name",
"fieldtype": "Dynamic Link",
"in_list_view": 1,
"label": "Reference Name",
"options": "reference_doctype",
"reqd": 1
}
],
"index_web_pages_for_search": 1,
"istable": 1,
"links": [],
"modified": "2025-10-12 17:27:14.123811",
"modified_by": "Administrator",
"module": "LMS",
"name": "LMS Coupon Item",
"owner": "Administrator",
"permissions": [],
"row_format": "Dynamic",
"sort_field": "modified",
"sort_order": "DESC",
"states": []
}

View File

@@ -0,0 +1,9 @@
# Copyright (c) 2025, Frappe and contributors
# For license information, please see license.txt
# import frappe
from frappe.model.document import Document
class LMSCouponItem(Document):
pass

View File

@@ -16,14 +16,18 @@
"payment_received", "payment_received",
"payment_for_certificate", "payment_for_certificate",
"payment_details_section", "payment_details_section",
"currency", "original_amount",
"discount_amount",
"amount", "amount",
"amount_with_gst", "amount_with_gst",
"column_break_yxpl", "column_break_yxpl",
"order_id", "currency",
"payment_id", "coupon",
"coupon_code",
"billing_details_section", "billing_details_section",
"address", "address",
"payment_id",
"order_id",
"column_break_monu", "column_break_monu",
"gstin", "gstin",
"pan" "pan"
@@ -47,6 +51,19 @@
"options": "currency", "options": "currency",
"reqd": 1 "reqd": 1
}, },
{
"fieldname": "coupon",
"fieldtype": "Link",
"label": "Coupon",
"options": "LMS Coupon"
},
{
"depends_on": "coupon",
"fieldname": "discount_amount",
"fieldtype": "Currency",
"label": "Discount Amount",
"options": "currency"
},
{ {
"fieldname": "currency", "fieldname": "currency",
"fieldtype": "Link", "fieldtype": "Link",
@@ -117,12 +134,6 @@
"options": "User", "options": "User",
"reqd": 1 "reqd": 1
}, },
{
"depends_on": "eval:doc.currency == \"INR\";",
"fieldname": "amount_with_gst",
"fieldtype": "Currency",
"label": "Amount with GST"
},
{ {
"fieldname": "payment_for_document_type", "fieldname": "payment_for_document_type",
"fieldtype": "Select", "fieldtype": "Select",
@@ -149,6 +160,27 @@
"fieldtype": "Check", "fieldtype": "Check",
"in_standard_filter": 1, "in_standard_filter": 1,
"label": "Payment for Certificate" "label": "Payment for Certificate"
},
{
"depends_on": "coupon",
"fetch_from": "coupon.code",
"fieldname": "coupon_code",
"fieldtype": "Data",
"label": "Coupon Code",
"read_only": 1
},
{
"depends_on": "eval:doc.currency == \"INR\"",
"fieldname": "amount_with_gst",
"fieldtype": "Currency",
"label": "Amount with GST"
},
{
"depends_on": "coupon",
"fieldname": "original_amount",
"fieldtype": "Currency",
"label": "Original Amount",
"options": "currency"
} }
], ],
"index_web_pages_for_search": 1, "index_web_pages_for_search": 1,
@@ -162,7 +194,7 @@
"link_fieldname": "payment" "link_fieldname": "payment"
} }
], ],
"modified": "2025-09-23 11:04:00.462274", "modified": "2025-11-12 12:39:52.466297",
"modified_by": "sayali@frappe.io", "modified_by": "sayali@frappe.io",
"module": "LMS", "module": "LMS",
"name": "LMS Payment", "name": "LMS Payment",

View File

@@ -5,7 +5,7 @@ import frappe
from frappe import _ from frappe import _
from frappe.email.doctype.email_template.email_template import get_email_template from frappe.email.doctype.email_template.email_template import get_email_template
from frappe.model.document import Document from frappe.model.document import Document
from frappe.utils import add_days, nowdate from frappe.utils import add_days, flt, nowdate
class LMSPayment(Document): class LMSPayment(Document):

View File

@@ -23,23 +23,38 @@ def get_payment_link(
docname, docname,
title, title,
amount, amount,
total_amount, discount_amount,
gst_amount,
currency, currency,
address, address,
redirect_to, redirect_to,
payment_for_certificate, payment_for_certificate,
coupon_code=None,
coupon=None,
): ):
payment_gateway = get_payment_gateway() payment_gateway = get_payment_gateway()
address = frappe._dict(address) address = frappe._dict(address)
amount_with_gst = total_amount if total_amount != amount else 0 original_amount = amount
amount -= discount_amount
amount_with_gst = get_amount_with_gst(amount, gst_amount)
payment = record_payment( payment = record_payment(
address, doctype, docname, amount, currency, amount_with_gst, payment_for_certificate address,
doctype,
docname,
amount,
original_amount,
currency,
amount_with_gst,
discount_amount,
payment_for_certificate,
coupon_code,
coupon,
) )
controller = get_controller(payment_gateway) controller = get_controller(payment_gateway)
payment_details = { payment_details = {
"amount": total_amount, "amount": amount_with_gst if amount_with_gst else amount,
"title": f"Payment for {doctype} {title} {docname}", "title": f"Payment for {doctype} {title} {docname}",
"description": f"{address.billing_name}'s payment for {title}", "description": f"{address.billing_name}'s payment for {title}",
"reference_doctype": doctype, "reference_doctype": doctype,
@@ -51,23 +66,41 @@ def get_payment_link(
"redirect_to": redirect_to, "redirect_to": redirect_to,
"payment": payment.name, "payment": payment.name,
} }
if payment_gateway == "Razorpay":
order = controller.create_order(**payment_details)
payment_details.update({"order_id": order.get("id")})
create_order(payment_gateway, payment_details, controller)
url = controller.get_payment_url(**payment_details) url = controller.get_payment_url(**payment_details)
return url return url
def create_order(payment_gateway, payment_details, controller):
if payment_gateway != "Razorpay":
return
order = controller.create_order(**payment_details)
payment_details.update({"order_id": order.get("id")})
def get_amount_with_gst(amount, gst_amount):
amount_with_gst = 0
if gst_amount:
amount_with_gst = amount + gst_amount
return amount_with_gst
def record_payment( def record_payment(
address, address,
doctype, doctype,
docname, docname,
amount, amount,
original_amount,
currency, currency,
amount_with_gst=0, amount_with_gst=0,
discount_amount=0,
payment_for_certificate=0, payment_for_certificate=0,
coupon_code=None,
coupon=None,
): ):
address = frappe._dict(address) address = frappe._dict(address)
address_name = save_address(address) address_name = save_address(address)
@@ -80,6 +113,7 @@ def record_payment(
"address": address_name, "address": address_name,
"amount": amount, "amount": amount,
"currency": currency, "currency": currency,
"discount_amount": discount_amount,
"amount_with_gst": amount_with_gst, "amount_with_gst": amount_with_gst,
"gstin": address.gstin, "gstin": address.gstin,
"pan": address.pan, "pan": address.pan,
@@ -89,6 +123,16 @@ def record_payment(
"payment_for_certificate": payment_for_certificate, "payment_for_certificate": payment_for_certificate,
} }
) )
if coupon_code:
payment_doc.update(
{
"coupon": coupon,
"coupon_code": coupon_code,
"discount_amount": discount_amount,
"original_amount": original_amount,
}
)
payment_doc.save(ignore_permissions=True) payment_doc.save(ignore_permissions=True)
return payment_doc return payment_doc

View File

@@ -1587,6 +1587,28 @@ def get_batch_students(batch):
"LMS Batch Enrollment", filters={"batch": batch}, fields=["member", "name"] "LMS Batch Enrollment", filters={"batch": batch}, fields=["member", "name"]
) )
for student in students_list:
details = get_batch_student_details(student)
calculate_student_progress(batch, details)
students.append(details)
students = sorted(students, key=lambda x: x.progress, reverse=True)
return students
def get_batch_student_details(student):
details = frappe.db.get_value(
"User",
student.member,
["full_name", "email", "username", "last_active", "user_image"],
as_dict=True,
)
details.last_active = format_datetime(details.last_active, "dd MMM YY")
details.name = student.name
details.assessments = frappe._dict()
return details
def calculate_student_progress(batch, details):
batch_courses = frappe.get_all("Batch Course", {"parent": batch}, ["course", "title"]) batch_courses = frappe.get_all("Batch Course", {"parent": batch}, ["course", "title"])
assessments = frappe.get_all( assessments = frappe.get_all(
"LMS Assessment", "LMS Assessment",
@@ -1594,53 +1616,55 @@ def get_batch_students(batch):
fields=["name", "assessment_type", "assessment_name"], fields=["name", "assessment_type", "assessment_name"],
) )
for student in students_list: calculate_course_progress(batch_courses, details)
courses_completed = 0 calculate_assessment_progress(assessments, details)
assessments_completed = 0
detail = frappe.db.get_value( if len(batch_courses) + len(assessments):
"User", details.progress = flt(
student.member, (
["full_name", "email", "username", "last_active", "user_image"], (details.average_course_progress * len(batch_courses))
as_dict=True, + (details.average_assessments_progress * len(assessments))
)
/ (len(batch_courses) + len(assessments)),
2,
) )
detail.last_active = format_datetime(detail.last_active, "dd MMM YY") else:
detail.name = student.name details.progress = 0
detail.courses = frappe._dict()
detail.assessments = frappe._dict()
""" Iterate through courses and track their progress """
for course in batch_courses:
progress = frappe.db.get_value(
"LMS Enrollment", {"course": course.course, "member": student.member}, "progress"
)
detail.courses[course.title] = progress
if progress == 100:
courses_completed += 1
""" Iterate through assessments and track their progress """ def calculate_course_progress(batch_courses, details):
for assessment in assessments: course_progress = []
title = frappe.db.get_value(assessment.assessment_type, assessment.assessment_name, "title") details.courses = frappe._dict()
assessment_info = has_submitted_assessment(
assessment.assessment_name, assessment.assessment_type, student.member
)
detail.assessments[title] = assessment_info
if assessment_info.result == "Pass": for course in batch_courses:
assessments_completed += 1 progress = frappe.db.get_value(
"LMS Enrollment", {"course": course.course, "member": details.email}, "progress"
)
details.courses[course.title] = progress
course_progress.append(progress)
detail.courses_completed = courses_completed details.average_course_progress = (
detail.assessments_completed = assessments_completed flt(sum(course_progress) / len(batch_courses), 2) if len(batch_courses) else 0
if len(batch_courses) + len(assessments): )
detail.progress = flt(
((courses_completed + assessments_completed) / (len(batch_courses) + len(assessments)) * 100),
2,
)
else:
detail.progress = 0
students.append(detail)
students = sorted(students, key=lambda x: x.progress, reverse=True) def calculate_assessment_progress(assessments, details):
return students assessments_completed = 0
details.assessments = frappe._dict()
for assessment in assessments:
title = frappe.db.get_value(assessment.assessment_type, assessment.assessment_name, "title")
assessment_info = has_submitted_assessment(
assessment.assessment_name, assessment.assessment_type, details.email
)
details.assessments[title] = assessment_info
if assessment_info.result == "Pass":
assessments_completed += 1
details.average_assessments_progress = (
flt((assessments_completed / len(assessments) * 100), 2) if len(assessments) else 0
)
def has_submitted_assessment(assessment, assessment_type, member=None): def has_submitted_assessment(assessment, assessment_type, member=None):
@@ -1752,51 +1776,140 @@ def get_discussion_replies(topic):
@frappe.whitelist() @frappe.whitelist()
def get_order_summary(doctype, docname, country=None): def get_order_summary(doctype, docname, coupon=None, country=None):
if doctype == "LMS Course": details = get_paid_course_details(docname) if doctype == "LMS Course" else get_paid_batch_details(docname)
details = frappe.db.get_value(
"LMS Course",
docname,
[
"title",
"name",
"paid_course",
"paid_certificate",
"course_price as amount",
"currency",
"amount_usd",
],
as_dict=True,
)
if not details.paid_course and not details.paid_certificate:
raise frappe.throw(_("This course is free."))
else:
details = frappe.db.get_value(
"LMS Batch",
docname,
["title", "name", "paid_batch", "amount", "currency", "amount_usd"],
as_dict=True,
)
if not details.paid_batch:
raise frappe.throw(_("To join this batch, please contact the Administrator."))
details.amount, details.currency = check_multicurrency( details.amount, details.currency = check_multicurrency(
details.amount, details.currency, country, details.amount_usd details.amount, details.currency, country, details.amount_usd
) )
details.original_amount = details.amount details.original_amount = details.amount
details.original_amount_formatted = fmt_money(details.amount, 0, details.currency) details.original_amount_formatted = fmt_money(details.amount, 0, details.currency)
if details.currency == "INR": adjust_amount_for_coupon(details, coupon, doctype, docname)
details.amount, details.gst_applied = apply_gst(details.amount, country) get_gst_details(details, country)
details.gst_amount_formatted = fmt_money(details.gst_applied, 0, details.currency)
details.total_amount = details.amount
details.total_amount_formatted = fmt_money(details.amount, 0, details.currency) details.total_amount_formatted = fmt_money(details.amount, 0, details.currency)
return details return details
def get_paid_course_details(docname):
details = frappe.db.get_value(
"LMS Course",
docname,
[
"title",
"name",
"paid_course",
"paid_certificate",
"course_price as amount",
"currency",
"amount_usd",
],
as_dict=True,
)
if not details.paid_course and not details.paid_certificate:
raise frappe.throw(_("This course is free."))
return details
def get_paid_batch_details(docname):
details = frappe.db.get_value(
"LMS Batch",
docname,
["title", "name", "paid_batch", "amount", "currency", "amount_usd"],
as_dict=True,
)
if not details.paid_batch:
raise frappe.throw(_("To join this batch, please contact the Administrator."))
return details
def adjust_amount_for_coupon(details, coupon, doctype, docname):
if not coupon:
return
discount_amount, subtotal, coupon_name = apply_coupon(doctype, docname, coupon, details.amount)
details.amount = subtotal
details.discount_amount = discount_amount
details.discount_amount_formatted = fmt_money(discount_amount, 0, details.currency)
details.coupon = coupon_name
def get_gst_details(details, country):
if details.currency != "INR":
return
details.amount, details.gst_applied = apply_gst(details.amount, country)
details.gst_amount_formatted = fmt_money(details.gst_applied, 0, details.currency)
def apply_coupon(doctype, docname, code, base_amount):
coupon_name = frappe.db.exists("LMS Coupon", {"code": code, "enabled": 1})
if not coupon_name:
frappe.throw(_("The coupon code '{0}' is invalid.").format(code))
coupon = frappe.db.get_value(
"LMS Coupon",
coupon_name,
[
"expires_on",
"usage_limit",
"redemption_count",
"discount_type",
"percentage_discount",
"fixed_amount_discount",
"name",
"code",
],
as_dict=True,
)
validate_coupon(code, coupon)
validate_coupon_applicability(doctype, docname, coupon_name)
discount_amount = calculate_discount_amount(base_amount, coupon)
subtotal = max(flt(base_amount) - flt(discount_amount), 0)
return discount_amount, subtotal, coupon_name
def validate_coupon(code, coupon):
if coupon.expires_on and getdate(coupon.expires_on) < getdate():
frappe.throw(_("This coupon has expired."))
if coupon.usage_limit and cint(coupon.redemption_count) >= cint(coupon.usage_limit):
frappe.throw(_("This coupon has reached its maximum usage limit."))
def validate_coupon_applicability(doctype, docname, coupon_name):
applicable_item = frappe.db.exists(
"LMS Coupon Item", {"parent": coupon_name, "reference_doctype": doctype, "reference_name": docname}
)
if not applicable_item:
frappe.throw(
_("This coupon is not applicable to this {0}.").format(
"Course" if doctype == "LMS Course" else "Batch"
)
)
def calculate_discount_amount(base_amount, coupon):
discount_amount = 0
if coupon.discount_type == "Percentage":
discount_amount = (base_amount * coupon.percentage_discount) / 100
elif coupon.discount_type == "Fixed Amount":
discount_amount = base_amount - coupon.fixed_amount_discount
return discount_amount
@frappe.whitelist() @frappe.whitelist()
def get_lesson_creation_details(course, chapter, lesson): def get_lesson_creation_details(course, chapter, lesson):
chapter_name = frappe.db.get_value("Chapter Reference", {"parent": course, "idx": chapter}, "chapter") chapter_name = frappe.db.get_value("Chapter Reference", {"parent": course, "idx": chapter}, "chapter")
@@ -1843,49 +1956,79 @@ def publish_notifications(doc, method):
def update_payment_record(doctype, docname): def update_payment_record(doctype, docname):
request = frappe.get_all( request = get_integration_requests(doctype, docname)
if len(request):
data = request[0].data
data = frappe._dict(json.loads(data))
payment_doc = get_payment_doc(data.payment)
update_payment_details(data)
update_coupon_redemption(payment_doc)
if payment_doc.payment_for_certificate:
update_certificate_purchase(docname, data.payment)
elif doctype == "LMS Course":
enroll_in_course(docname, data.payment)
else:
enroll_in_batch(docname, data.payment)
def get_integration_requests(doctype, docname):
return frappe.get_all(
"Integration Request", "Integration Request",
{ {
"reference_doctype": doctype, "reference_doctype": doctype,
"reference_docname": docname, "reference_docname": docname,
"owner": frappe.session.user, "owner": frappe.session.user,
}, },
["data"],
order_by="creation desc", order_by="creation desc",
limit=1, limit=1,
) )
if len(request):
data = frappe.db.get_value("Integration Request", request[0].name, "data")
data = frappe._dict(json.loads(data))
payment_gateway = data.get("payment_gateway") def get_payment_doc(payment_name):
if payment_gateway == "Razorpay": return frappe.db.get_value(
payment_id = "razorpay_payment_id" "LMS Payment", payment_name, ["name", "coupon", "payment_for_certificate"], as_dict=True
elif "Stripe" in payment_gateway: )
payment_id = "stripe_token_id"
else:
payment_id = "order_id" def update_payment_details(data):
payment_id = get_payment_id(data)
frappe.db.set_value(
"LMS Payment",
data.payment,
{
"payment_received": 1,
"payment_id": data.get(payment_id),
"order_id": data.get("order_id"),
},
)
def get_payment_id(data):
payment_gateway = data.get("payment_gateway")
if payment_gateway == "Razorpay":
payment_id = "razorpay_payment_id"
elif "Stripe" in payment_gateway:
payment_id = "stripe_token_id"
else:
payment_id = "order_id"
return payment_id
def update_coupon_redemption(payment_doc):
if payment_doc.coupon:
redemption_count = frappe.db.get_value("LMS Coupon", payment_doc.coupon, "redemption_count") or 0
frappe.db.set_value( frappe.db.set_value(
"LMS Payment", "LMS Coupon",
data.payment, payment_doc.coupon,
{ "redemption_count",
"payment_received": 1, redemption_count + 1,
"payment_id": data.get(payment_id),
"order_id": data.get("order_id"),
},
) )
payment_for_certificate = frappe.db.get_value("LMS Payment", data.payment, "payment_for_certificate")
try:
if payment_for_certificate:
update_certificate_purchase(docname, data.payment)
elif doctype == "LMS Course":
enroll_in_course(docname, data.payment)
else:
enroll_in_batch(docname, data.payment)
except Exception as e:
frappe.log_error(frappe.get_traceback(), _("Enrollment Failed, {0}").format(e))
def enroll_in_course(course, payment_name): def enroll_in_course(course, payment_name):

File diff suppressed because it is too large Load Diff

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2025-10-31 16:04+0000\n" "POT-Creation-Date: 2025-11-07 16:04+0000\n"
"PO-Revision-Date: 2025-11-02 19:07\n" "PO-Revision-Date: 2025-11-12 11:45\n"
"Last-Translator: jannat@frappe.io\n" "Last-Translator: jannat@frappe.io\n"
"Language-Team: Bosnian\n" "Language-Team: Bosnian\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -176,7 +176,7 @@ msgstr "Dodaj kviz u video"
msgid "Add Row" msgid "Add Row"
msgstr "Dodaj Red" msgstr "Dodaj Red"
#: frontend/src/pages/ProfileEvaluator.vue:89 #: frontend/src/pages/ProfileEvaluator.vue:96
msgid "Add Slot" msgid "Add Slot"
msgstr "Dodaj Vrijeme" msgstr "Dodaj Vrijeme"
@@ -286,11 +286,11 @@ msgstr "Adresa"
#: frontend/src/pages/Billing.vue:74 #: frontend/src/pages/Billing.vue:74
msgid "Address Line 1" msgid "Address Line 1"
msgstr "Adresna linija 1" msgstr "Adresna Linija 1"
#: frontend/src/pages/Billing.vue:78 #: frontend/src/pages/Billing.vue:78
msgid "Address Line 2" msgid "Address Line 2"
msgstr "Adresna linija 2" msgstr "Adresna Linija 2"
#. Option for the 'Role' (Select) field in DocType 'Cohort Staff' #. Option for the 'Role' (Select) field in DocType 'Cohort Staff'
#. Option for the 'Required Role' (Select) field in DocType 'Cohort Web Page' #. Option for the 'Required Role' (Select) field in DocType 'Cohort Web Page'
@@ -304,7 +304,7 @@ msgstr "Admin"
#. Name of a role #. Name of a role
#: frontend/src/pages/Batches.vue:275 lms/lms/doctype/lms_badge/lms_badge.json #: frontend/src/pages/Batches.vue:275 lms/lms/doctype/lms_badge/lms_badge.json
msgid "All" msgid "All"
msgstr "Sve" msgstr "Svi"
#: frontend/src/pages/Batches.vue:26 #: frontend/src/pages/Batches.vue:26
msgid "All Batches" msgid "All Batches"
@@ -426,12 +426,25 @@ msgstr "Pojavljuje se kada se grupni URL dijeli na bilo kojoj online platformi"
msgid "Appears when the batch URL is shared on socials" msgid "Appears when the batch URL is shared on socials"
msgstr "Pojavljuje se kada se URL grupe podijeli na društvenim mrežama" msgstr "Pojavljuje se kada se URL grupe podijeli na društvenim mrežama"
#: frontend/src/pages/JobApplications.vue:24
msgid "Application"
msgstr "Prijava"
#. Label of a field in the job-opportunity Web Form #. Label of a field in the job-opportunity Web Form
#: lms/job/web_form/job_opportunity/job_opportunity.json #: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Application Form Link" msgid "Application Form Link"
msgstr "Link za Obrazac Prijave" msgstr "Link za Obrazac Prijave"
#: frontend/src/pages/JobDetail.vue:51 #: frontend/src/pages/JobApplications.vue:14
#: frontend/src/pages/JobApplications.vue:25
msgid "Applications"
msgstr "Prijave"
#: frontend/src/pages/JobApplications.vue:290
msgid "Applied On"
msgstr "Primijenjeno na"
#: frontend/src/pages/JobDetail.vue:62
msgid "Apply" msgid "Apply"
msgstr "Primjeni" msgstr "Primjeni"
@@ -483,7 +496,7 @@ msgstr "Postavi pitanje da bi dobili pomoć od zajednice."
#. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch' #. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the assessment (Table) field in DocType 'LMS Batch' #. Label of the assessment (Table) field in DocType 'LMS Batch'
#: frontend/src/components/Modals/AssessmentModal.vue:27 #: frontend/src/components/Modals/AssessmentModal.vue:27
#: frontend/src/components/Modals/BatchStudentProgress.vue:41 #: frontend/src/components/Modals/BatchStudentProgress.vue:43
#: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11 #: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11
msgid "Assessment" msgid "Assessment"
msgstr "Procjena" msgstr "Procjena"
@@ -569,7 +582,7 @@ msgstr "Podnošenje Zadataka"
msgid "Assignment Title" msgid "Assignment Title"
msgstr "Naziv Zadatka" msgstr "Naziv Zadatka"
#: frontend/src/components/Modals/AssignmentForm.vue:125 #: frontend/src/components/Modals/AssignmentForm.vue:133
msgid "Assignment created successfully" msgid "Assignment created successfully"
msgstr "Zadatak je uspješno kreiran" msgstr "Zadatak je uspješno kreiran"
@@ -581,7 +594,7 @@ msgstr "Zadatak za Lekciju {0} od {1} već postoji."
msgid "Assignment submitted successfully" msgid "Assignment submitted successfully"
msgstr "Zadatak uspješno predan" msgstr "Zadatak uspješno predan"
#: frontend/src/components/Modals/AssignmentForm.vue:138 #: frontend/src/components/Modals/AssignmentForm.vue:146
msgid "Assignment updated successfully" msgid "Assignment updated successfully"
msgstr "Zadatak je uspješno ažuriran" msgstr "Zadatak je uspješno ažuriran"
@@ -622,7 +635,7 @@ msgstr "Učesnici"
msgid "Attire Preference" msgid "Attire Preference"
msgstr "Preferencija Odjeće" msgstr "Preferencija Odjeće"
#: frontend/src/pages/ProfileEvaluator.vue:137 #: frontend/src/pages/ProfileEvaluator.vue:146
msgid "Authorize Google Calendar Access" msgid "Authorize Google Calendar Access"
msgstr "Autoriziraj pristup Google kalendaru" msgstr "Autoriziraj pristup Google kalendaru"
@@ -637,7 +650,7 @@ msgstr "Automatski Dodjeli"
msgid "Auto Recording" msgid "Auto Recording"
msgstr "Automatsko Snimanje" msgstr "Automatsko Snimanje"
#: frontend/src/pages/ProfileEvaluator.vue:224 #: frontend/src/pages/ProfileEvaluator.vue:241
msgid "Availability updated successfully" msgid "Availability updated successfully"
msgstr "Dostupnost je uspješno ažurirana" msgstr "Dostupnost je uspješno ažurirana"
@@ -768,6 +781,7 @@ msgstr "Potvrda Grupnog Upisa"
#. Name of a role #. Name of a role
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -998,7 +1012,7 @@ msgstr "Veza Certifikata"
msgid "Certificate of Completion" msgid "Certificate of Completion"
msgstr "Certifikat o Završetku" msgstr "Certifikat o Završetku"
#: frontend/src/components/Modals/Event.vue:317 #: frontend/src/components/Modals/Event.vue:348
msgid "Certificate saved successfully" msgid "Certificate saved successfully"
msgstr "Certifikat je uspješno spremljen" msgstr "Certifikat je uspješno spremljen"
@@ -1018,7 +1032,7 @@ msgstr "Certifikati su uspješno generirani"
#. Label of a Card Break in the LMS Workspace #. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:626 #: frontend/src/components/AppSidebar.vue:626
#: frontend/src/components/Modals/Event.vue:381 #: frontend/src/components/Modals/Event.vue:412
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10 #: frontend/src/pages/CourseCertification.vue:10
#: frontend/src/pages/CourseCertification.vue:135 #: frontend/src/pages/CourseCertification.vue:135
@@ -1640,6 +1654,7 @@ msgstr "Broj Kurseva"
#: lms/lms/doctype/course_chapter/course_chapter.json #: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json #: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
@@ -1757,7 +1772,7 @@ msgstr "Kurs {0} je već dodan ovoj grupi."
#: frontend/src/components/BatchCourses.vue:5 #: frontend/src/components/BatchCourses.vue:5
#: frontend/src/components/BatchOverlay.vue:37 #: frontend/src/components/BatchOverlay.vue:37
#: frontend/src/components/BatchStudents.vue:25 #: frontend/src/components/BatchStudents.vue:25
#: frontend/src/components/Modals/BatchStudentProgress.vue:91 #: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127 #: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340 #: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340
@@ -2169,7 +2184,7 @@ msgstr "E-pošta"
#: frontend/src/components/DiscussionReplies.vue:35 #: frontend/src/components/DiscussionReplies.vue:35
#: frontend/src/components/Modals/ChapterModal.vue:9 #: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/components/Settings/Badges.vue:156 #: frontend/src/components/Settings/Badges.vue:156
#: frontend/src/pages/JobDetail.vue:34 frontend/src/pages/Lesson.vue:42 #: frontend/src/pages/JobDetail.vue:45 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36 #: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36
msgid "Edit" msgid "Edit"
msgstr "Uredi" msgstr "Uredi"
@@ -2236,7 +2251,7 @@ msgstr "Detalji Obrazovanja"
#: frontend/src/components/Settings/Evaluators.vue:105 #: frontend/src/components/Settings/Evaluators.vue:105
#: frontend/src/components/Settings/Members.vue:103 #: frontend/src/components/Settings/Members.vue:103
#: lms/templates/signup-form.html:10 #: frontend/src/pages/JobApplications.vue:284 lms/templates/signup-form.html:10
msgid "Email" msgid "Email"
msgstr "E-pošta" msgstr "E-pošta"
@@ -2272,6 +2287,7 @@ msgid "Email Templates deleted successfully"
msgstr "Šabloni e-pošte uspješno izbrisani" msgstr "Šabloni e-pošte uspješno izbrisani"
#: frontend/src/components/ContactUsEmail.vue:57 #: frontend/src/components/ContactUsEmail.vue:57
#: frontend/src/pages/JobApplications.vue:244
msgid "Email sent successfully" msgid "Email sent successfully"
msgstr "E-pošta je uspješno poslana" msgstr "E-pošta je uspješno poslana"
@@ -2323,7 +2339,7 @@ msgstr "Ako ovo omogućite, certifikat će biti objavljen na stranici sa certifi
#. Label of the end_date (Date) field in DocType 'LMS Batch' #. Label of the end_date (Date) field in DocType 'LMS Batch'
#: lms/lms/doctype/cohort/cohort.json lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/cohort/cohort.json lms/lms/doctype/lms_batch/lms_batch.json
msgid "End Date" msgid "End Date"
msgstr "Datum završetka" msgstr "Datum Završetka"
#. Label of the end_date (Date) field in DocType 'Education Detail' #. Label of the end_date (Date) field in DocType 'Education Detail'
#: lms/lms/doctype/education_detail/education_detail.json #: lms/lms/doctype/education_detail/education_detail.json
@@ -2414,6 +2430,14 @@ msgstr "Unesite Klijent Id i Klijent Tajnu u Google Postavke da pošaljete kalen
msgid "Enter a URL" msgid "Enter a URL"
msgstr "Unesi URL" msgstr "Unesi URL"
#: frontend/src/pages/JobApplications.vue:122
msgid "Enter email subject"
msgstr "Unesi predmet e-pošte"
#: frontend/src/pages/JobApplications.vue:128
msgid "Enter reply to email"
msgstr "Unesi e-poštu za odgovor"
#: frontend/src/components/Modals/ZoomAccountModal.vue:169 #: frontend/src/components/Modals/ZoomAccountModal.vue:169
msgid "Error creating Zoom Account" msgid "Error creating Zoom Account"
msgstr "Greška pri kreiranju Zoom računa" msgstr "Greška pri kreiranju Zoom računa"
@@ -2453,7 +2477,7 @@ msgstr "Greška pri ažuriranju šablona e-pošte"
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace #. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:374 lms/lms/workspace/lms/lms.json #: frontend/src/components/Modals/Event.vue:405 lms/lms/workspace/lms/lms.json
msgid "Evaluation" msgid "Evaluation"
msgstr "Evaluacija" msgstr "Evaluacija"
@@ -2478,7 +2502,7 @@ msgstr "Zahtjev za Ocjenu"
msgid "Evaluation end date cannot be less than the batch end date." msgid "Evaluation end date cannot be less than the batch end date."
msgstr "Datum završetka ocjenjivanja ne može biti prije od datuma završetka grupe." msgstr "Datum završetka ocjenjivanja ne može biti prije od datuma završetka grupe."
#: frontend/src/components/Modals/Event.vue:256 #: frontend/src/components/Modals/Event.vue:287
msgid "Evaluation saved successfully" msgid "Evaluation saved successfully"
msgstr "Evaluacija je uspješno sačuvana" msgstr "Evaluacija je uspješno sačuvana"
@@ -2586,7 +2610,7 @@ msgstr "Proširi"
#. Label of the expected_output (Data) field in DocType 'LMS Test Case' #. Label of the expected_output (Data) field in DocType 'LMS Test Case'
#. Label of the expected_output (Data) field in DocType 'LMS Test Case #. Label of the expected_output (Data) field in DocType 'LMS Test Case
#. Submission' #. Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:127 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:129
#: lms/lms/doctype/lms_test_case/lms_test_case.json #: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Expected Output" msgid "Expected Output"
@@ -2599,7 +2623,7 @@ msgstr "Datum Isteka"
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33 #: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:126 #: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date" msgid "Expiry Date"
msgstr "Datum Isteka Roka" msgstr "Datum Isteka Roka"
@@ -2626,7 +2650,7 @@ msgstr "Istraži Više"
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:366 #: frontend/src/components/Modals/Event.vue:397
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail" msgid "Fail"
@@ -2657,7 +2681,7 @@ msgstr "Nije moguće preuzeti podatke o prisustvu sa Zooma za čas {0}: {1}"
msgid "Failed to send email" msgid "Failed to send email"
msgstr "Slanje e-pošte nije uspjelo" msgstr "Slanje e-pošte nije uspjelo"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:358 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:364
msgid "Failed to submit. Please try again. {0}" msgid "Failed to submit. Please try again. {0}"
msgstr "Podnošenje nije uspjelo. Pokušaj ponovo. {0}" msgstr "Podnošenje nije uspjelo. Pokušaj ponovo. {0}"
@@ -2682,7 +2706,7 @@ msgstr "Istaknuto"
#: frontend/src/pages/Batch.vue:146 #: frontend/src/pages/Batch.vue:146
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json #: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
msgid "Feedback" msgid "Feedback"
msgstr "Povratne Informacije" msgstr "Povratne informacije"
#: frontend/src/components/Assignment.vue:64 #: frontend/src/components/Assignment.vue:64
msgid "Feel free to make edits to your submission if needed." msgid "Feel free to make edits to your submission if needed."
@@ -2770,7 +2794,7 @@ msgid "Friday"
msgstr "Petak" msgstr "Petak"
#. Label of the unavailable_from (Date) field in DocType 'Course Evaluator' #. Label of the unavailable_from (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:99 #: frontend/src/pages/ProfileEvaluator.vue:106
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "From" msgid "From"
msgstr "Od" msgstr "Od"
@@ -2782,6 +2806,7 @@ msgstr "Od Datuma"
#. Label of the full_name (Data) field in DocType 'Course Evaluator' #. Label of the full_name (Data) field in DocType 'Course Evaluator'
#. Label of the full_name (Data) field in DocType 'LMS Program Member' #. Label of the full_name (Data) field in DocType 'LMS Program Member'
#: frontend/src/pages/JobApplications.vue:278
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json #: lms/lms/doctype/lms_program_member/lms_program_member.json
#: lms/templates/signup-form.html:5 #: lms/templates/signup-form.html:5
@@ -3019,7 +3044,7 @@ msgstr "Sa zadovoljstvom vas mogu obavijestiti da ste uspješno stekli certifika
msgid "I am looking for a job" msgid "I am looking for a job"
msgstr "Tražim posao" msgstr "Tražim posao"
#: frontend/src/pages/ProfileEvaluator.vue:94 #: frontend/src/pages/ProfileEvaluator.vue:101
msgid "I am unavailable" msgid "I am unavailable"
msgstr "Ja sam nedostupan/nedostupna" msgstr "Ja sam nedostupan/nedostupna"
@@ -3105,7 +3130,7 @@ msgstr "Slika: Oštećen Tok Podataka"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course' #. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:358 #: frontend/src/components/Modals/Event.vue:389
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
@@ -3161,7 +3186,7 @@ msgstr "Industrija"
#. Label of the input (Data) field in DocType 'LMS Test Case' #. Label of the input (Data) field in DocType 'LMS Test Case'
#. Label of the input (Data) field in DocType 'LMS Test Case Submission' #. Label of the input (Data) field in DocType 'LMS Test Case Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:113 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:115
#: lms/lms/doctype/lms_test_case/lms_test_case.json #: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Input" msgid "Input"
@@ -3273,7 +3298,7 @@ msgstr "SCORM Paket"
#. Label of the issue_date (Date) field in DocType 'Certification' #. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate' #. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28 #: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:121 #: frontend/src/components/Modals/Event.vue:138
#: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date" msgid "Issue Date"
@@ -3358,8 +3383,8 @@ msgid "Job Title"
msgstr "Naziv Posla" msgstr "Naziv Posla"
#. Label of the jobs (Check) field in DocType 'LMS Settings' #. Label of the jobs (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/JobDetail.vue:10 frontend/src/pages/Jobs.vue:8 #: frontend/src/pages/JobApplications.vue:9 frontend/src/pages/JobDetail.vue:10
#: frontend/src/pages/Jobs.vue:212 #: frontend/src/pages/Jobs.vue:8 frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs" msgid "Jobs"
msgstr "Poslovi" msgstr "Poslovi"
@@ -3375,7 +3400,7 @@ msgstr "Pridružite se"
msgid "Join Call" msgid "Join Call"
msgstr "Pridružite se Pozivu" msgstr "Pridružite se Pozivu"
#: frontend/src/components/Modals/Event.vue:74 #: frontend/src/components/Modals/Event.vue:78
msgid "Join Meeting" msgid "Join Meeting"
msgstr "Pridružite se Sastanku" msgstr "Pridružite se Sastanku"
@@ -3883,7 +3908,7 @@ msgstr "Prijava"
msgid "Login to Frappe Cloud?" msgid "Login to Frappe Cloud?"
msgstr "Prijavi se na Frappe Cloud?" msgstr "Prijavi se na Frappe Cloud?"
#: frontend/src/pages/JobDetail.vue:63 #: frontend/src/pages/JobDetail.vue:74
msgid "Login to apply" msgid "Login to apply"
msgstr "Prijavite se kako biste se prijavili" msgstr "Prijavite se kako biste se prijavili"
@@ -4228,9 +4253,14 @@ msgid "Mentor Request Status Update Template"
msgstr "Status Šablona Kreiranja Zahtjeva za Mentora" msgstr "Status Šablona Kreiranja Zahtjeva za Mentora"
#: frontend/src/components/ContactUsEmail.vue:19 #: frontend/src/components/ContactUsEmail.vue:19
#: frontend/src/pages/JobApplications.vue:132
msgid "Message" msgid "Message"
msgstr "Poruka" msgstr "Poruka"
#: frontend/src/pages/JobApplications.vue:240
msgid "Message is required"
msgstr "Poruka je obavezna"
#. Label of the meta_description (Small Text) field in DocType 'LMS Settings' #. Label of the meta_description (Small Text) field in DocType 'LMS Settings'
#: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303 #: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -4351,7 +4381,7 @@ msgstr "Moje Bilješke"
msgid "My availability" msgid "My availability"
msgstr "Moja Dostupnost" msgstr "Moja Dostupnost"
#: frontend/src/pages/ProfileEvaluator.vue:127 #: frontend/src/pages/ProfileEvaluator.vue:136
msgid "My calendar" msgid "My calendar"
msgstr "Moj Kalendar" msgstr "Moj Kalendar"
@@ -4390,7 +4420,7 @@ msgstr "Novi šablon e-pošte"
msgid "New Job" msgid "New Job"
msgstr "Novi Posao" msgstr "Novi Posao"
#: lms/job/doctype/lms_job_application/lms_job_application.py:27 #: lms/job/doctype/lms_job_application/lms_job_application.py:31
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "Novi Kandidat za Posao" msgstr "Novi Kandidat za Posao"
@@ -4430,7 +4460,7 @@ msgstr "Novi {0}"
#: frontend/src/components/Quiz.vue:237 frontend/src/pages/Lesson.vue:51 #: frontend/src/components/Quiz.vue:237 frontend/src/pages/Lesson.vue:51
#: frontend/src/pages/Lesson.vue:187 #: frontend/src/pages/Lesson.vue:187
msgid "Next" msgid "Next"
msgstr "Sljedeći" msgstr "Sljedeća"
#: frontend/src/components/Assessments.vue:75 lms/templates/assessments.html:58 #: frontend/src/components/Assessments.vue:75 lms/templates/assessments.html:58
msgid "No Assessments" msgid "No Assessments"
@@ -4544,7 +4574,7 @@ msgstr "Bez {0}"
#: lms/lms/user.py:29 #: lms/lms/user.py:29
msgid "Not Allowed" msgid "Not Allowed"
msgstr "Nije dozvoljeno" msgstr "Nije Dozvoljeno"
#. Option for the 'Status' (Select) field in DocType 'LMS Assignment #. Option for the 'Status' (Select) field in DocType 'LMS Assignment
#. Submission' #. Submission'
@@ -4568,7 +4598,7 @@ msgstr "Nije Ocijenjeno"
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:164 #: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:164
msgid "Not Permitted" msgid "Not Permitted"
msgstr "Nije dozvoljeno" msgstr "Nije Dozvoljeno"
#: frontend/src/components/Assignment.vue:36 #: frontend/src/components/Assignment.vue:36
#: frontend/src/components/Settings/BrandSettings.vue:10 #: frontend/src/components/Settings/BrandSettings.vue:10
@@ -4818,7 +4848,7 @@ msgstr "Djelomično Završeno"
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:362 #: frontend/src/components/Modals/Event.vue:393
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass" msgid "Pass"
@@ -4945,12 +4975,12 @@ msgstr "Aplikacija plaćanja nije instalirana"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' #. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:354 #: frontend/src/components/Modals/Event.vue:385
#: lms/lms/doctype/cohort_join_request/cohort_join_request.json #: lms/lms/doctype/cohort_join_request/cohort_join_request.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending" msgid "Pending"
msgstr "Na čekanju" msgstr "Na Čekanju"
#. Label of the percentage (Int) field in DocType 'LMS Quiz Submission' #. Label of the percentage (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizSubmission.vue:44 #: frontend/src/pages/QuizSubmission.vue:44
@@ -4964,7 +4994,7 @@ msgstr "Procenat"
msgid "Percentage (e.g. 70%)" msgid "Percentage (e.g. 70%)"
msgstr "Procenat (npr. 70%)" msgstr "Procenat (npr. 70%)"
#: frontend/src/components/Modals/BatchStudentProgress.vue:44 #: frontend/src/components/Modals/BatchStudentProgress.vue:46
msgid "Percentage/Status" msgid "Percentage/Status"
msgstr "Procentualno/Status" msgstr "Procentualno/Status"
@@ -5080,7 +5110,7 @@ msgstr "Molimo vas da se prijavite da biste se prijavili u program."
msgid "Please prepare well and be on time for the evaluations." msgid "Please prepare well and be on time for the evaluations."
msgstr "Dobro se pripremi i dođi na vrijeme za ocjenjivanje." msgstr "Dobro se pripremi i dođi na vrijeme za ocjenjivanje."
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:135 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:139
msgid "Please run the code to execute the test cases." msgid "Please run the code to execute the test cases."
msgstr "Pokreni kod za izvršavanje test slučajeva." msgstr "Pokreni kod za izvršavanje test slučajeva."
@@ -5172,7 +5202,7 @@ msgstr "Objava"
#: frontend/src/pages/Billing.vue:95 #: frontend/src/pages/Billing.vue:95
msgid "Postal Code" msgid "Postal Code"
msgstr "Poštanski Broj" msgstr "Broj Pošte"
#: frontend/src/components/AppSidebar.vue:125 #: frontend/src/components/AppSidebar.vue:125
msgid "Powered by Learning" msgid "Powered by Learning"
@@ -5317,11 +5347,11 @@ msgstr "Vježba Programiranja"
#: frontend/src/components/Settings/BadgeForm.vue:200 #: frontend/src/components/Settings/BadgeForm.vue:200
#: frontend/src/components/Settings/Badges.vue:205 #: frontend/src/components/Settings/Badges.vue:205
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:420 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:426
msgid "Programming Exercise Submission" msgid "Programming Exercise Submission"
msgstr "Podnošenje Vježbe Programiranja" msgstr "Podnošenje Vježbe Programiranja"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:411 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:417
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298
msgid "Programming Exercise Submissions" msgid "Programming Exercise Submissions"
msgstr "Podnošenja Vježbi Programiranja" msgstr "Podnošenja Vježbi Programiranja"
@@ -5355,7 +5385,7 @@ msgstr "Programi"
#. Label of the progress (Float) field in DocType 'LMS Enrollment' #. Label of the progress (Float) field in DocType 'LMS Enrollment'
#. Label of the progress (Int) field in DocType 'LMS Program Member' #. Label of the progress (Int) field in DocType 'LMS Program Member'
#: frontend/src/components/Modals/BatchStudentProgress.vue:94 #: frontend/src/components/Modals/BatchStudentProgress.vue:98
#: frontend/src/components/Modals/CourseProgressSummary.vue:224 #: frontend/src/components/Modals/CourseProgressSummary.vue:224
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json #: lms/lms/doctype/lms_enrollment/lms_enrollment.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json #: lms/lms/doctype/lms_program_member/lms_program_member.json
@@ -5401,7 +5431,7 @@ msgstr "Objavi na Stranici Učesnika"
#. Label of the published (Check) field in DocType 'LMS Course' #. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program' #. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51 #: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:108 #: frontend/src/components/Modals/Event.vue:122
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152 #: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100 #: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5569,7 +5599,7 @@ msgstr "Kvizovi u ovom videu"
#. Label of the rating (Data) field in DocType 'LMS Course' #. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review' #. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147 #: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:86 #: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/ReviewModal.vue:18 #: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
@@ -5611,7 +5641,7 @@ msgstr "Referentni DocType"
#. Label of the reference_doctype (Link) field in DocType 'LMS Badge' #. Label of the reference_doctype (Link) field in DocType 'LMS Badge'
#: lms/lms/doctype/lms_badge/lms_badge.json #: lms/lms/doctype/lms_badge/lms_badge.json
msgid "Reference Document Type" msgid "Reference Document Type"
msgstr "Referentna vrsta dokumenta" msgstr "Referentni Tip Dokumenta"
#: lms/templates/emails/community_course_membership.html:17 #: lms/templates/emails/community_course_membership.html:17
msgid "Regards" msgid "Regards"
@@ -5656,6 +5686,7 @@ msgid "Remove Highlight"
msgstr "Ukloni Istaknuto" msgstr "Ukloni Istaknuto"
#: frontend/src/components/Modals/AnnouncementModal.vue:27 #: frontend/src/components/Modals/AnnouncementModal.vue:27
#: frontend/src/pages/JobApplications.vue:127
msgid "Reply To" msgid "Reply To"
msgstr "Odgovori" msgstr "Odgovori"
@@ -5815,8 +5846,8 @@ msgstr "Subota"
#: frontend/src/components/Controls/CodeEditor.vue:25 #: frontend/src/components/Controls/CodeEditor.vue:25
#: frontend/src/components/Modals/AssignmentForm.vue:59 #: frontend/src/components/Modals/AssignmentForm.vue:59
#: frontend/src/components/Modals/EmailTemplateModal.vue:12 #: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:101 #: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:129 #: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
@@ -5955,6 +5986,7 @@ msgid "Select an assignment"
msgstr "Odaberi Zadatak" msgstr "Odaberi Zadatak"
#: frontend/src/components/ContactUsEmail.vue:33 #: frontend/src/components/ContactUsEmail.vue:33
#: frontend/src/pages/JobApplications.vue:110
msgid "Send" msgid "Send"
msgstr "Pošalji" msgstr "Pošalji"
@@ -5962,6 +5994,14 @@ msgstr "Pošalji"
msgid "Send Confirmation Email" msgid "Send Confirmation Email"
msgstr "Pošalji potvrdnu e-poštu" msgstr "Pošalji potvrdnu e-poštu"
#: frontend/src/pages/JobApplications.vue:268
msgid "Send Email"
msgstr "Pošalji e-poštu"
#: frontend/src/pages/JobApplications.vue:106
msgid "Send Email to {0}"
msgstr "Pošalji e-poštu {0}"
#. Label of the send_calendar_invite_for_evaluations (Check) field in DocType #. Label of the send_calendar_invite_for_evaluations (Check) field in DocType
#. 'LMS Settings' #. 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -6122,11 +6162,11 @@ msgstr "Preskoči"
msgid "Slot Times are overlapping for some schedules." msgid "Slot Times are overlapping for some schedules."
msgstr "Vremena termina se preklapaju za neke rasporede." msgstr "Vremena termina se preklapaju za neke rasporede."
#: frontend/src/pages/ProfileEvaluator.vue:201 #: frontend/src/pages/ProfileEvaluator.vue:218
msgid "Slot added successfully" msgid "Slot added successfully"
msgstr "Termin uspješno dodan" msgstr "Termin uspješno dodan"
#: frontend/src/pages/ProfileEvaluator.vue:240 #: frontend/src/pages/ProfileEvaluator.vue:257
msgid "Slot deleted successfully" msgid "Slot deleted successfully"
msgstr "Termin uspješno izbrisan" msgstr "Termin uspješno izbrisan"
@@ -6179,7 +6219,7 @@ msgstr "Faza"
#: frontend/src/pages/Home/AdminHome.vue:164 #: frontend/src/pages/Home/AdminHome.vue:164
#: frontend/src/pages/Home/StudentHome.vue:107 #: frontend/src/pages/Home/StudentHome.vue:107
msgid "Start" msgid "Start"
msgstr "Start" msgstr "Počni"
#. Label of the start_date (Date) field in DocType 'Education Detail' #. Label of the start_date (Date) field in DocType 'Education Detail'
#. Label of the start_date (Date) field in DocType 'LMS Batch' #. Label of the start_date (Date) field in DocType 'LMS Batch'
@@ -6188,7 +6228,7 @@ msgstr "Start"
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
msgid "Start Date" msgid "Start Date"
msgstr "Start Datum" msgstr "Datum Početka"
#: lms/templates/emails/batch_start_reminder.html:13 #: lms/templates/emails/batch_start_reminder.html:13
msgid "Start Date:" msgid "Start Date:"
@@ -6265,7 +6305,7 @@ msgstr "Statistika"
#. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission' #. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission' #. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:91 #: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Settings/Badges.vue:228 #: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19 #: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6336,10 +6376,12 @@ msgstr "Podgrupa"
#: frontend/src/components/ContactUsEmail.vue:13 #: frontend/src/components/ContactUsEmail.vue:13
#: frontend/src/components/Modals/AnnouncementModal.vue:20 #: frontend/src/components/Modals/AnnouncementModal.vue:20
#: frontend/src/components/Modals/EmailTemplateModal.vue:31 #: frontend/src/components/Modals/EmailTemplateModal.vue:31
#: frontend/src/pages/JobApplications.vue:121
msgid "Subject" msgid "Subject"
msgstr "Predmet" msgstr "Predmet"
#: frontend/src/components/Modals/AnnouncementModal.vue:94 #: frontend/src/components/Modals/AnnouncementModal.vue:94
#: frontend/src/pages/JobApplications.vue:237
msgid "Subject is required" msgid "Subject is required"
msgstr "Predmet je obavezan" msgstr "Predmet je obavezan"
@@ -6356,7 +6398,7 @@ msgstr "Tip Podnošenja"
msgid "Submission by" msgid "Submission by"
msgstr "Predaja od" msgstr "Predaja od"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:353 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:359
msgid "Submission saved!" msgid "Submission saved!"
msgstr "Podnošenje sačuvano!" msgstr "Podnošenje sačuvano!"
@@ -6396,7 +6438,7 @@ msgstr "Uspješno upisan/a u program"
#. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:97 #: frontend/src/components/Modals/Event.vue:106
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary" msgid "Summary"
msgstr "Sažetak" msgstr "Sažetak"
@@ -6501,7 +6543,7 @@ msgstr "Timski Rad"
#. Label of the template (Link) field in DocType 'Cohort Web Page' #. Label of the template (Link) field in DocType 'Cohort Web Page'
#. Label of the template (Link) field in DocType 'LMS Certificate' #. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43 #: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:112 #: frontend/src/components/Modals/Event.vue:127
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template" msgid "Template"
@@ -6542,7 +6584,7 @@ msgstr "Rezultati Testa"
msgid "Test this Exercise" msgid "Test this Exercise"
msgstr "Testiraj ovu Vježbu" msgstr "Testiraj ovu Vježbu"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:92 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:93
msgid "Test {0}" msgid "Test {0}"
msgstr "Testiraj {0}" msgstr "Testiraj {0}"
@@ -6840,10 +6882,10 @@ msgid "Title is required"
msgstr "Naziv je obavezan" msgstr "Naziv je obavezan"
#. Label of the unavailable_to (Date) field in DocType 'Course Evaluator' #. Label of the unavailable_to (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:112 #: frontend/src/pages/ProfileEvaluator.vue:120
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "To" msgid "To"
msgstr "Do" msgstr "Za"
#. Label of the to_date (Date) field in DocType 'Work Experience' #. Label of the to_date (Date) field in DocType 'Work Experience'
#: lms/lms/doctype/work_experience/work_experience.json #: lms/lms/doctype/work_experience/work_experience.json
@@ -6953,7 +6995,7 @@ msgstr "UUID"
msgid "Unavailability" msgid "Unavailability"
msgstr "Nedostupnost" msgstr "Nedostupnost"
#: frontend/src/pages/ProfileEvaluator.vue:259 #: frontend/src/pages/ProfileEvaluator.vue:276
msgid "Unavailability updated successfully" msgid "Unavailability updated successfully"
msgstr "Nedostupnost je uspješno ažurirana" msgstr "Nedostupnost je uspješno ažurirana"
@@ -7121,13 +7163,21 @@ msgstr "Video Statistika za {0}"
#: frontend/src/pages/Notifications.vue:39 #: frontend/src/pages/Notifications.vue:39
msgid "View" msgid "View"
msgstr "Pogled" msgstr "Prikaz"
#: frontend/src/pages/JobDetail.vue:31
msgid "View Applications"
msgstr "Prikaži prijave"
#: frontend/src/components/CertificationLinks.vue:10 #: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67 #: frontend/src/components/Modals/Event.vue:67
msgid "View Certificate" msgid "View Certificate"
msgstr "Prikaži Certifikat" msgstr "Prikaži Certifikat"
#: frontend/src/pages/JobApplications.vue:262
msgid "View Resume"
msgstr "Prikaži Životopis"
#: frontend/src/components/BatchFeedback.vue:56 #: frontend/src/components/BatchFeedback.vue:56
msgid "View all feedback" msgid "View all feedback"
msgstr "Pogledaj sve povratne informacije" msgstr "Pogledaj sve povratne informacije"
@@ -7146,7 +7196,7 @@ msgstr "Vidljivost"
msgid "Visit Batch" msgid "Visit Batch"
msgstr "Posjeti Grupu" msgstr "Posjeti Grupu"
#: frontend/src/pages/JobDetail.vue:41 #: frontend/src/pages/JobDetail.vue:52
msgid "Visit Website" msgid "Visit Website"
msgstr "Posjeti Web Stranicu" msgstr "Posjeti Web Stranicu"
@@ -7355,7 +7405,7 @@ msgstr "Imate {0}% tačnih odgovora sa rezultatom {1} od {2}"
msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session." msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session."
msgstr "Sutra imate zakazan čas uživo. Pripremi i dođi na vrijeme za čas." msgstr "Sutra imate zakazan čas uživo. Pripremi i dođi na vrijeme za čas."
#: lms/job/doctype/lms_job_application/lms_job_application.py:22 #: lms/job/doctype/lms_job_application/lms_job_application.py:26
msgid "You have already applied for this job." msgid "You have already applied for this job."
msgstr "Već ste se prijavili za ovaj posao." msgstr "Već ste se prijavili za ovaj posao."
@@ -7371,7 +7421,7 @@ msgstr "Već ste kupili sertifikat za ovaj kurs."
msgid "You have already reviewed this course" msgid "You have already reviewed this course"
msgstr "Već ste pregledali ovaj kurs" msgstr "Već ste pregledali ovaj kurs"
#: frontend/src/pages/JobDetail.vue:57 #: frontend/src/pages/JobDetail.vue:68
msgid "You have applied" msgid "You have applied"
msgstr "Prijavili ste se" msgstr "Prijavili ste se"
@@ -7451,7 +7501,7 @@ msgstr "YouTube video će se pojaviti na vrhu lekcije."
msgid "Your Account has been successfully created!" msgid "Your Account has been successfully created!"
msgstr "Vaš račun je uspješno kreiran!" msgstr "Vaš račun je uspješno kreiran!"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:119 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:121
msgid "Your Output" msgid "Your Output"
msgstr "Vaš Rezultat" msgstr "Vaš Rezultat"
@@ -7459,7 +7509,7 @@ msgstr "Vaš Rezultat"
msgid "Your batch {0} is starting tomorrow" msgid "Your batch {0} is starting tomorrow"
msgstr "Vaša grupa {0} počinje sutra" msgstr "Vaša grupa {0} počinje sutra"
#: frontend/src/pages/ProfileEvaluator.vue:134 #: frontend/src/pages/ProfileEvaluator.vue:143
msgid "Your calendar is set." msgid "Your calendar is set."
msgstr "Vaš kalendar je postavljen." msgstr "Vaš kalendar je postavljen."
@@ -7538,11 +7588,11 @@ msgstr "i"
msgid "and then 'Add to Home Screen'" msgid "and then 'Add to Home Screen'"
msgstr "a zatim 'Dodaj na Početak'" msgstr "a zatim 'Dodaj na Početak'"
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114 #: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicant" msgid "applicant"
msgstr "podnositelj" msgstr "podnositelj"
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114 #: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicants" msgid "applicants"
msgstr "podnositelji" msgstr "podnositelji"

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2025-10-31 16:04+0000\n" "POT-Creation-Date: 2025-11-07 16:04+0000\n"
"PO-Revision-Date: 2025-11-02 19:07\n" "PO-Revision-Date: 2025-11-11 11:49\n"
"Last-Translator: jannat@frappe.io\n" "Last-Translator: jannat@frappe.io\n"
"Language-Team: Czech\n" "Language-Team: Czech\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -176,7 +176,7 @@ msgstr ""
msgid "Add Row" msgid "Add Row"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:89 #: frontend/src/pages/ProfileEvaluator.vue:96
msgid "Add Slot" msgid "Add Slot"
msgstr "" msgstr ""
@@ -426,12 +426,25 @@ msgstr ""
msgid "Appears when the batch URL is shared on socials" msgid "Appears when the batch URL is shared on socials"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:24
msgid "Application"
msgstr ""
#. Label of a field in the job-opportunity Web Form #. Label of a field in the job-opportunity Web Form
#: lms/job/web_form/job_opportunity/job_opportunity.json #: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Application Form Link" msgid "Application Form Link"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:51 #: frontend/src/pages/JobApplications.vue:14
#: frontend/src/pages/JobApplications.vue:25
msgid "Applications"
msgstr ""
#: frontend/src/pages/JobApplications.vue:290
msgid "Applied On"
msgstr ""
#: frontend/src/pages/JobDetail.vue:62
msgid "Apply" msgid "Apply"
msgstr "" msgstr ""
@@ -483,7 +496,7 @@ msgstr ""
#. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch' #. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the assessment (Table) field in DocType 'LMS Batch' #. Label of the assessment (Table) field in DocType 'LMS Batch'
#: frontend/src/components/Modals/AssessmentModal.vue:27 #: frontend/src/components/Modals/AssessmentModal.vue:27
#: frontend/src/components/Modals/BatchStudentProgress.vue:41 #: frontend/src/components/Modals/BatchStudentProgress.vue:43
#: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11 #: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11
msgid "Assessment" msgid "Assessment"
msgstr "" msgstr ""
@@ -569,7 +582,7 @@ msgstr ""
msgid "Assignment Title" msgid "Assignment Title"
msgstr "" msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:125 #: frontend/src/components/Modals/AssignmentForm.vue:133
msgid "Assignment created successfully" msgid "Assignment created successfully"
msgstr "" msgstr ""
@@ -581,7 +594,7 @@ msgstr ""
msgid "Assignment submitted successfully" msgid "Assignment submitted successfully"
msgstr "" msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:138 #: frontend/src/components/Modals/AssignmentForm.vue:146
msgid "Assignment updated successfully" msgid "Assignment updated successfully"
msgstr "" msgstr ""
@@ -622,7 +635,7 @@ msgstr ""
msgid "Attire Preference" msgid "Attire Preference"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:137 #: frontend/src/pages/ProfileEvaluator.vue:146
msgid "Authorize Google Calendar Access" msgid "Authorize Google Calendar Access"
msgstr "" msgstr ""
@@ -637,7 +650,7 @@ msgstr ""
msgid "Auto Recording" msgid "Auto Recording"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:224 #: frontend/src/pages/ProfileEvaluator.vue:241
msgid "Availability updated successfully" msgid "Availability updated successfully"
msgstr "" msgstr ""
@@ -768,6 +781,7 @@ msgstr ""
#. Name of a role #. Name of a role
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -998,7 +1012,7 @@ msgstr ""
msgid "Certificate of Completion" msgid "Certificate of Completion"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:317 #: frontend/src/components/Modals/Event.vue:348
msgid "Certificate saved successfully" msgid "Certificate saved successfully"
msgstr "" msgstr ""
@@ -1018,7 +1032,7 @@ msgstr ""
#. Label of a Card Break in the LMS Workspace #. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:626 #: frontend/src/components/AppSidebar.vue:626
#: frontend/src/components/Modals/Event.vue:381 #: frontend/src/components/Modals/Event.vue:412
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10 #: frontend/src/pages/CourseCertification.vue:10
#: frontend/src/pages/CourseCertification.vue:135 #: frontend/src/pages/CourseCertification.vue:135
@@ -1640,6 +1654,7 @@ msgstr ""
#: lms/lms/doctype/course_chapter/course_chapter.json #: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json #: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
@@ -1757,7 +1772,7 @@ msgstr ""
#: frontend/src/components/BatchCourses.vue:5 #: frontend/src/components/BatchCourses.vue:5
#: frontend/src/components/BatchOverlay.vue:37 #: frontend/src/components/BatchOverlay.vue:37
#: frontend/src/components/BatchStudents.vue:25 #: frontend/src/components/BatchStudents.vue:25
#: frontend/src/components/Modals/BatchStudentProgress.vue:91 #: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127 #: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340 #: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340
@@ -2169,7 +2184,7 @@ msgstr ""
#: frontend/src/components/DiscussionReplies.vue:35 #: frontend/src/components/DiscussionReplies.vue:35
#: frontend/src/components/Modals/ChapterModal.vue:9 #: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/components/Settings/Badges.vue:156 #: frontend/src/components/Settings/Badges.vue:156
#: frontend/src/pages/JobDetail.vue:34 frontend/src/pages/Lesson.vue:42 #: frontend/src/pages/JobDetail.vue:45 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36 #: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36
msgid "Edit" msgid "Edit"
msgstr "" msgstr ""
@@ -2236,7 +2251,7 @@ msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:105 #: frontend/src/components/Settings/Evaluators.vue:105
#: frontend/src/components/Settings/Members.vue:103 #: frontend/src/components/Settings/Members.vue:103
#: lms/templates/signup-form.html:10 #: frontend/src/pages/JobApplications.vue:284 lms/templates/signup-form.html:10
msgid "Email" msgid "Email"
msgstr "" msgstr ""
@@ -2272,6 +2287,7 @@ msgid "Email Templates deleted successfully"
msgstr "" msgstr ""
#: frontend/src/components/ContactUsEmail.vue:57 #: frontend/src/components/ContactUsEmail.vue:57
#: frontend/src/pages/JobApplications.vue:244
msgid "Email sent successfully" msgid "Email sent successfully"
msgstr "" msgstr ""
@@ -2414,6 +2430,14 @@ msgstr ""
msgid "Enter a URL" msgid "Enter a URL"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:122
msgid "Enter email subject"
msgstr ""
#: frontend/src/pages/JobApplications.vue:128
msgid "Enter reply to email"
msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:169 #: frontend/src/components/Modals/ZoomAccountModal.vue:169
msgid "Error creating Zoom Account" msgid "Error creating Zoom Account"
msgstr "" msgstr ""
@@ -2453,7 +2477,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace #. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:374 lms/lms/workspace/lms/lms.json #: frontend/src/components/Modals/Event.vue:405 lms/lms/workspace/lms/lms.json
msgid "Evaluation" msgid "Evaluation"
msgstr "" msgstr ""
@@ -2478,7 +2502,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date." msgid "Evaluation end date cannot be less than the batch end date."
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:256 #: frontend/src/components/Modals/Event.vue:287
msgid "Evaluation saved successfully" msgid "Evaluation saved successfully"
msgstr "" msgstr ""
@@ -2586,7 +2610,7 @@ msgstr ""
#. Label of the expected_output (Data) field in DocType 'LMS Test Case' #. Label of the expected_output (Data) field in DocType 'LMS Test Case'
#. Label of the expected_output (Data) field in DocType 'LMS Test Case #. Label of the expected_output (Data) field in DocType 'LMS Test Case
#. Submission' #. Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:127 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:129
#: lms/lms/doctype/lms_test_case/lms_test_case.json #: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Expected Output" msgid "Expected Output"
@@ -2599,7 +2623,7 @@ msgstr ""
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33 #: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:126 #: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date" msgid "Expiry Date"
msgstr "" msgstr ""
@@ -2626,7 +2650,7 @@ msgstr ""
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:366 #: frontend/src/components/Modals/Event.vue:397
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail" msgid "Fail"
@@ -2657,7 +2681,7 @@ msgstr ""
msgid "Failed to send email" msgid "Failed to send email"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:358 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:364
msgid "Failed to submit. Please try again. {0}" msgid "Failed to submit. Please try again. {0}"
msgstr "" msgstr ""
@@ -2770,7 +2794,7 @@ msgid "Friday"
msgstr "" msgstr ""
#. Label of the unavailable_from (Date) field in DocType 'Course Evaluator' #. Label of the unavailable_from (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:99 #: frontend/src/pages/ProfileEvaluator.vue:106
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "From" msgid "From"
msgstr "" msgstr ""
@@ -2782,6 +2806,7 @@ msgstr ""
#. Label of the full_name (Data) field in DocType 'Course Evaluator' #. Label of the full_name (Data) field in DocType 'Course Evaluator'
#. Label of the full_name (Data) field in DocType 'LMS Program Member' #. Label of the full_name (Data) field in DocType 'LMS Program Member'
#: frontend/src/pages/JobApplications.vue:278
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json #: lms/lms/doctype/lms_program_member/lms_program_member.json
#: lms/templates/signup-form.html:5 #: lms/templates/signup-form.html:5
@@ -3019,7 +3044,7 @@ msgstr ""
msgid "I am looking for a job" msgid "I am looking for a job"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:94 #: frontend/src/pages/ProfileEvaluator.vue:101
msgid "I am unavailable" msgid "I am unavailable"
msgstr "" msgstr ""
@@ -3105,7 +3130,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course' #. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:358 #: frontend/src/components/Modals/Event.vue:389
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
@@ -3161,7 +3186,7 @@ msgstr ""
#. Label of the input (Data) field in DocType 'LMS Test Case' #. Label of the input (Data) field in DocType 'LMS Test Case'
#. Label of the input (Data) field in DocType 'LMS Test Case Submission' #. Label of the input (Data) field in DocType 'LMS Test Case Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:113 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:115
#: lms/lms/doctype/lms_test_case/lms_test_case.json #: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Input" msgid "Input"
@@ -3273,7 +3298,7 @@ msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification' #. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate' #. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28 #: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:121 #: frontend/src/components/Modals/Event.vue:138
#: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date" msgid "Issue Date"
@@ -3358,8 +3383,8 @@ msgid "Job Title"
msgstr "" msgstr ""
#. Label of the jobs (Check) field in DocType 'LMS Settings' #. Label of the jobs (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/JobDetail.vue:10 frontend/src/pages/Jobs.vue:8 #: frontend/src/pages/JobApplications.vue:9 frontend/src/pages/JobDetail.vue:10
#: frontend/src/pages/Jobs.vue:212 #: frontend/src/pages/Jobs.vue:8 frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs" msgid "Jobs"
msgstr "" msgstr ""
@@ -3375,7 +3400,7 @@ msgstr ""
msgid "Join Call" msgid "Join Call"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:74 #: frontend/src/components/Modals/Event.vue:78
msgid "Join Meeting" msgid "Join Meeting"
msgstr "" msgstr ""
@@ -3883,7 +3908,7 @@ msgstr ""
msgid "Login to Frappe Cloud?" msgid "Login to Frappe Cloud?"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:63 #: frontend/src/pages/JobDetail.vue:74
msgid "Login to apply" msgid "Login to apply"
msgstr "" msgstr ""
@@ -4228,9 +4253,14 @@ msgid "Mentor Request Status Update Template"
msgstr "" msgstr ""
#: frontend/src/components/ContactUsEmail.vue:19 #: frontend/src/components/ContactUsEmail.vue:19
#: frontend/src/pages/JobApplications.vue:132
msgid "Message" msgid "Message"
msgstr "Zpráva" msgstr "Zpráva"
#: frontend/src/pages/JobApplications.vue:240
msgid "Message is required"
msgstr ""
#. Label of the meta_description (Small Text) field in DocType 'LMS Settings' #. Label of the meta_description (Small Text) field in DocType 'LMS Settings'
#: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303 #: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -4351,7 +4381,7 @@ msgstr ""
msgid "My availability" msgid "My availability"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:127 #: frontend/src/pages/ProfileEvaluator.vue:136
msgid "My calendar" msgid "My calendar"
msgstr "" msgstr ""
@@ -4390,7 +4420,7 @@ msgstr ""
msgid "New Job" msgid "New Job"
msgstr "" msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:27 #: lms/job/doctype/lms_job_application/lms_job_application.py:31
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "" msgstr ""
@@ -4818,7 +4848,7 @@ msgstr ""
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:362 #: frontend/src/components/Modals/Event.vue:393
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass" msgid "Pass"
@@ -4945,7 +4975,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' #. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:354 #: frontend/src/components/Modals/Event.vue:385
#: lms/lms/doctype/cohort_join_request/cohort_join_request.json #: lms/lms/doctype/cohort_join_request/cohort_join_request.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
@@ -4964,7 +4994,7 @@ msgstr ""
msgid "Percentage (e.g. 70%)" msgid "Percentage (e.g. 70%)"
msgstr "" msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:44 #: frontend/src/components/Modals/BatchStudentProgress.vue:46
msgid "Percentage/Status" msgid "Percentage/Status"
msgstr "" msgstr ""
@@ -5080,7 +5110,7 @@ msgstr ""
msgid "Please prepare well and be on time for the evaluations." msgid "Please prepare well and be on time for the evaluations."
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:135 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:139
msgid "Please run the code to execute the test cases." msgid "Please run the code to execute the test cases."
msgstr "" msgstr ""
@@ -5317,11 +5347,11 @@ msgstr ""
#: frontend/src/components/Settings/BadgeForm.vue:200 #: frontend/src/components/Settings/BadgeForm.vue:200
#: frontend/src/components/Settings/Badges.vue:205 #: frontend/src/components/Settings/Badges.vue:205
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:420 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:426
msgid "Programming Exercise Submission" msgid "Programming Exercise Submission"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:411 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:417
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298
msgid "Programming Exercise Submissions" msgid "Programming Exercise Submissions"
msgstr "" msgstr ""
@@ -5355,7 +5385,7 @@ msgstr ""
#. Label of the progress (Float) field in DocType 'LMS Enrollment' #. Label of the progress (Float) field in DocType 'LMS Enrollment'
#. Label of the progress (Int) field in DocType 'LMS Program Member' #. Label of the progress (Int) field in DocType 'LMS Program Member'
#: frontend/src/components/Modals/BatchStudentProgress.vue:94 #: frontend/src/components/Modals/BatchStudentProgress.vue:98
#: frontend/src/components/Modals/CourseProgressSummary.vue:224 #: frontend/src/components/Modals/CourseProgressSummary.vue:224
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json #: lms/lms/doctype/lms_enrollment/lms_enrollment.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json #: lms/lms/doctype/lms_program_member/lms_program_member.json
@@ -5401,7 +5431,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Course' #. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program' #. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51 #: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:108 #: frontend/src/components/Modals/Event.vue:122
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152 #: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100 #: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5569,7 +5599,7 @@ msgstr ""
#. Label of the rating (Data) field in DocType 'LMS Course' #. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review' #. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147 #: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:86 #: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/ReviewModal.vue:18 #: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
@@ -5656,6 +5686,7 @@ msgid "Remove Highlight"
msgstr "" msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:27 #: frontend/src/components/Modals/AnnouncementModal.vue:27
#: frontend/src/pages/JobApplications.vue:127
msgid "Reply To" msgid "Reply To"
msgstr "" msgstr ""
@@ -5815,8 +5846,8 @@ msgstr ""
#: frontend/src/components/Controls/CodeEditor.vue:25 #: frontend/src/components/Controls/CodeEditor.vue:25
#: frontend/src/components/Modals/AssignmentForm.vue:59 #: frontend/src/components/Modals/AssignmentForm.vue:59
#: frontend/src/components/Modals/EmailTemplateModal.vue:12 #: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:101 #: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:129 #: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
@@ -5955,6 +5986,7 @@ msgid "Select an assignment"
msgstr "" msgstr ""
#: frontend/src/components/ContactUsEmail.vue:33 #: frontend/src/components/ContactUsEmail.vue:33
#: frontend/src/pages/JobApplications.vue:110
msgid "Send" msgid "Send"
msgstr "Odeslat" msgstr "Odeslat"
@@ -5962,6 +5994,14 @@ msgstr "Odeslat"
msgid "Send Confirmation Email" msgid "Send Confirmation Email"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:268
msgid "Send Email"
msgstr ""
#: frontend/src/pages/JobApplications.vue:106
msgid "Send Email to {0}"
msgstr ""
#. Label of the send_calendar_invite_for_evaluations (Check) field in DocType #. Label of the send_calendar_invite_for_evaluations (Check) field in DocType
#. 'LMS Settings' #. 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -6122,11 +6162,11 @@ msgstr ""
msgid "Slot Times are overlapping for some schedules." msgid "Slot Times are overlapping for some schedules."
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:201 #: frontend/src/pages/ProfileEvaluator.vue:218
msgid "Slot added successfully" msgid "Slot added successfully"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:240 #: frontend/src/pages/ProfileEvaluator.vue:257
msgid "Slot deleted successfully" msgid "Slot deleted successfully"
msgstr "" msgstr ""
@@ -6265,7 +6305,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission' #. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission' #. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:91 #: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Settings/Badges.vue:228 #: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19 #: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6336,10 +6376,12 @@ msgstr ""
#: frontend/src/components/ContactUsEmail.vue:13 #: frontend/src/components/ContactUsEmail.vue:13
#: frontend/src/components/Modals/AnnouncementModal.vue:20 #: frontend/src/components/Modals/AnnouncementModal.vue:20
#: frontend/src/components/Modals/EmailTemplateModal.vue:31 #: frontend/src/components/Modals/EmailTemplateModal.vue:31
#: frontend/src/pages/JobApplications.vue:121
msgid "Subject" msgid "Subject"
msgstr "" msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:94 #: frontend/src/components/Modals/AnnouncementModal.vue:94
#: frontend/src/pages/JobApplications.vue:237
msgid "Subject is required" msgid "Subject is required"
msgstr "" msgstr ""
@@ -6356,7 +6398,7 @@ msgstr ""
msgid "Submission by" msgid "Submission by"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:353 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:359
msgid "Submission saved!" msgid "Submission saved!"
msgstr "" msgstr ""
@@ -6396,7 +6438,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:97 #: frontend/src/components/Modals/Event.vue:106
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary" msgid "Summary"
msgstr "" msgstr ""
@@ -6501,7 +6543,7 @@ msgstr ""
#. Label of the template (Link) field in DocType 'Cohort Web Page' #. Label of the template (Link) field in DocType 'Cohort Web Page'
#. Label of the template (Link) field in DocType 'LMS Certificate' #. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43 #: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:112 #: frontend/src/components/Modals/Event.vue:127
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template" msgid "Template"
@@ -6542,7 +6584,7 @@ msgstr ""
msgid "Test this Exercise" msgid "Test this Exercise"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:92 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:93
msgid "Test {0}" msgid "Test {0}"
msgstr "" msgstr ""
@@ -6840,7 +6882,7 @@ msgid "Title is required"
msgstr "" msgstr ""
#. Label of the unavailable_to (Date) field in DocType 'Course Evaluator' #. Label of the unavailable_to (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:112 #: frontend/src/pages/ProfileEvaluator.vue:120
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "To" msgid "To"
msgstr "" msgstr ""
@@ -6953,7 +6995,7 @@ msgstr ""
msgid "Unavailability" msgid "Unavailability"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:259 #: frontend/src/pages/ProfileEvaluator.vue:276
msgid "Unavailability updated successfully" msgid "Unavailability updated successfully"
msgstr "" msgstr ""
@@ -7123,11 +7165,19 @@ msgstr ""
msgid "View" msgid "View"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:31
msgid "View Applications"
msgstr ""
#: frontend/src/components/CertificationLinks.vue:10 #: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67 #: frontend/src/components/Modals/Event.vue:67
msgid "View Certificate" msgid "View Certificate"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:262
msgid "View Resume"
msgstr ""
#: frontend/src/components/BatchFeedback.vue:56 #: frontend/src/components/BatchFeedback.vue:56
msgid "View all feedback" msgid "View all feedback"
msgstr "" msgstr ""
@@ -7146,7 +7196,7 @@ msgstr ""
msgid "Visit Batch" msgid "Visit Batch"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:41 #: frontend/src/pages/JobDetail.vue:52
msgid "Visit Website" msgid "Visit Website"
msgstr "" msgstr ""
@@ -7355,7 +7405,7 @@ msgstr ""
msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session." msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session."
msgstr "" msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:22 #: lms/job/doctype/lms_job_application/lms_job_application.py:26
msgid "You have already applied for this job." msgid "You have already applied for this job."
msgstr "" msgstr ""
@@ -7371,7 +7421,7 @@ msgstr ""
msgid "You have already reviewed this course" msgid "You have already reviewed this course"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:57 #: frontend/src/pages/JobDetail.vue:68
msgid "You have applied" msgid "You have applied"
msgstr "" msgstr ""
@@ -7451,7 +7501,7 @@ msgstr ""
msgid "Your Account has been successfully created!" msgid "Your Account has been successfully created!"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:119 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:121
msgid "Your Output" msgid "Your Output"
msgstr "" msgstr ""
@@ -7459,7 +7509,7 @@ msgstr ""
msgid "Your batch {0} is starting tomorrow" msgid "Your batch {0} is starting tomorrow"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:134 #: frontend/src/pages/ProfileEvaluator.vue:143
msgid "Your calendar is set." msgid "Your calendar is set."
msgstr "" msgstr ""
@@ -7538,11 +7588,11 @@ msgstr "a"
msgid "and then 'Add to Home Screen'" msgid "and then 'Add to Home Screen'"
msgstr "" msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114 #: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicant" msgid "applicant"
msgstr "" msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114 #: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicants" msgid "applicants"
msgstr "" msgstr ""

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2025-10-31 16:04+0000\n" "POT-Creation-Date: 2025-11-07 16:04+0000\n"
"PO-Revision-Date: 2025-11-02 19:07\n" "PO-Revision-Date: 2025-11-11 11:49\n"
"Last-Translator: jannat@frappe.io\n" "Last-Translator: jannat@frappe.io\n"
"Language-Team: Danish\n" "Language-Team: Danish\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -176,7 +176,7 @@ msgstr "Tilføj Quiz til Video"
msgid "Add Row" msgid "Add Row"
msgstr "Tilføj Række" msgstr "Tilføj Række"
#: frontend/src/pages/ProfileEvaluator.vue:89 #: frontend/src/pages/ProfileEvaluator.vue:96
msgid "Add Slot" msgid "Add Slot"
msgstr "Tilføj Slot" msgstr "Tilføj Slot"
@@ -304,7 +304,7 @@ msgstr ""
#. Name of a role #. Name of a role
#: frontend/src/pages/Batches.vue:275 lms/lms/doctype/lms_badge/lms_badge.json #: frontend/src/pages/Batches.vue:275 lms/lms/doctype/lms_badge/lms_badge.json
msgid "All" msgid "All"
msgstr "" msgstr "Alle"
#: frontend/src/pages/Batches.vue:26 #: frontend/src/pages/Batches.vue:26
msgid "All Batches" msgid "All Batches"
@@ -426,12 +426,25 @@ msgstr ""
msgid "Appears when the batch URL is shared on socials" msgid "Appears when the batch URL is shared on socials"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:24
msgid "Application"
msgstr ""
#. Label of a field in the job-opportunity Web Form #. Label of a field in the job-opportunity Web Form
#: lms/job/web_form/job_opportunity/job_opportunity.json #: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Application Form Link" msgid "Application Form Link"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:51 #: frontend/src/pages/JobApplications.vue:14
#: frontend/src/pages/JobApplications.vue:25
msgid "Applications"
msgstr ""
#: frontend/src/pages/JobApplications.vue:290
msgid "Applied On"
msgstr ""
#: frontend/src/pages/JobDetail.vue:62
msgid "Apply" msgid "Apply"
msgstr "" msgstr ""
@@ -483,7 +496,7 @@ msgstr ""
#. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch' #. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the assessment (Table) field in DocType 'LMS Batch' #. Label of the assessment (Table) field in DocType 'LMS Batch'
#: frontend/src/components/Modals/AssessmentModal.vue:27 #: frontend/src/components/Modals/AssessmentModal.vue:27
#: frontend/src/components/Modals/BatchStudentProgress.vue:41 #: frontend/src/components/Modals/BatchStudentProgress.vue:43
#: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11 #: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11
msgid "Assessment" msgid "Assessment"
msgstr "Bedømmelse" msgstr "Bedømmelse"
@@ -546,7 +559,7 @@ msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/templates/assignment.html:3 #: lms/templates/assignment.html:3
msgid "Assignment" msgid "Assignment"
msgstr "" msgstr "Opgave"
#. Label of the assignment_attachment (Attach) field in DocType 'LMS Assignment #. Label of the assignment_attachment (Attach) field in DocType 'LMS Assignment
#. Submission' #. Submission'
@@ -569,7 +582,7 @@ msgstr ""
msgid "Assignment Title" msgid "Assignment Title"
msgstr "" msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:125 #: frontend/src/components/Modals/AssignmentForm.vue:133
msgid "Assignment created successfully" msgid "Assignment created successfully"
msgstr "" msgstr ""
@@ -581,7 +594,7 @@ msgstr ""
msgid "Assignment submitted successfully" msgid "Assignment submitted successfully"
msgstr "" msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:138 #: frontend/src/components/Modals/AssignmentForm.vue:146
msgid "Assignment updated successfully" msgid "Assignment updated successfully"
msgstr "" msgstr ""
@@ -622,7 +635,7 @@ msgstr "Deltagere"
msgid "Attire Preference" msgid "Attire Preference"
msgstr "Påklædning Præference" msgstr "Påklædning Præference"
#: frontend/src/pages/ProfileEvaluator.vue:137 #: frontend/src/pages/ProfileEvaluator.vue:146
msgid "Authorize Google Calendar Access" msgid "Authorize Google Calendar Access"
msgstr "" msgstr ""
@@ -637,7 +650,7 @@ msgstr "Automatisk Tildeling"
msgid "Auto Recording" msgid "Auto Recording"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:224 #: frontend/src/pages/ProfileEvaluator.vue:241
msgid "Availability updated successfully" msgid "Availability updated successfully"
msgstr "" msgstr ""
@@ -768,6 +781,7 @@ msgstr ""
#. Name of a role #. Name of a role
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -998,7 +1012,7 @@ msgstr ""
msgid "Certificate of Completion" msgid "Certificate of Completion"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:317 #: frontend/src/components/Modals/Event.vue:348
msgid "Certificate saved successfully" msgid "Certificate saved successfully"
msgstr "" msgstr ""
@@ -1018,7 +1032,7 @@ msgstr ""
#. Label of a Card Break in the LMS Workspace #. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:626 #: frontend/src/components/AppSidebar.vue:626
#: frontend/src/components/Modals/Event.vue:381 #: frontend/src/components/Modals/Event.vue:412
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10 #: frontend/src/pages/CourseCertification.vue:10
#: frontend/src/pages/CourseCertification.vue:135 #: frontend/src/pages/CourseCertification.vue:135
@@ -1640,6 +1654,7 @@ msgstr ""
#: lms/lms/doctype/course_chapter/course_chapter.json #: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json #: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
@@ -1757,7 +1772,7 @@ msgstr ""
#: frontend/src/components/BatchCourses.vue:5 #: frontend/src/components/BatchCourses.vue:5
#: frontend/src/components/BatchOverlay.vue:37 #: frontend/src/components/BatchOverlay.vue:37
#: frontend/src/components/BatchStudents.vue:25 #: frontend/src/components/BatchStudents.vue:25
#: frontend/src/components/Modals/BatchStudentProgress.vue:91 #: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127 #: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340 #: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340
@@ -2169,7 +2184,7 @@ msgstr ""
#: frontend/src/components/DiscussionReplies.vue:35 #: frontend/src/components/DiscussionReplies.vue:35
#: frontend/src/components/Modals/ChapterModal.vue:9 #: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/components/Settings/Badges.vue:156 #: frontend/src/components/Settings/Badges.vue:156
#: frontend/src/pages/JobDetail.vue:34 frontend/src/pages/Lesson.vue:42 #: frontend/src/pages/JobDetail.vue:45 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36 #: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36
msgid "Edit" msgid "Edit"
msgstr "Redigere" msgstr "Redigere"
@@ -2236,7 +2251,7 @@ msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:105 #: frontend/src/components/Settings/Evaluators.vue:105
#: frontend/src/components/Settings/Members.vue:103 #: frontend/src/components/Settings/Members.vue:103
#: lms/templates/signup-form.html:10 #: frontend/src/pages/JobApplications.vue:284 lms/templates/signup-form.html:10
msgid "Email" msgid "Email"
msgstr "E-mail" msgstr "E-mail"
@@ -2272,6 +2287,7 @@ msgid "Email Templates deleted successfully"
msgstr "" msgstr ""
#: frontend/src/components/ContactUsEmail.vue:57 #: frontend/src/components/ContactUsEmail.vue:57
#: frontend/src/pages/JobApplications.vue:244
msgid "Email sent successfully" msgid "Email sent successfully"
msgstr "" msgstr ""
@@ -2414,6 +2430,14 @@ msgstr ""
msgid "Enter a URL" msgid "Enter a URL"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:122
msgid "Enter email subject"
msgstr ""
#: frontend/src/pages/JobApplications.vue:128
msgid "Enter reply to email"
msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:169 #: frontend/src/components/Modals/ZoomAccountModal.vue:169
msgid "Error creating Zoom Account" msgid "Error creating Zoom Account"
msgstr "" msgstr ""
@@ -2453,7 +2477,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace #. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:374 lms/lms/workspace/lms/lms.json #: frontend/src/components/Modals/Event.vue:405 lms/lms/workspace/lms/lms.json
msgid "Evaluation" msgid "Evaluation"
msgstr "" msgstr ""
@@ -2478,7 +2502,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date." msgid "Evaluation end date cannot be less than the batch end date."
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:256 #: frontend/src/components/Modals/Event.vue:287
msgid "Evaluation saved successfully" msgid "Evaluation saved successfully"
msgstr "" msgstr ""
@@ -2586,7 +2610,7 @@ msgstr ""
#. Label of the expected_output (Data) field in DocType 'LMS Test Case' #. Label of the expected_output (Data) field in DocType 'LMS Test Case'
#. Label of the expected_output (Data) field in DocType 'LMS Test Case #. Label of the expected_output (Data) field in DocType 'LMS Test Case
#. Submission' #. Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:127 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:129
#: lms/lms/doctype/lms_test_case/lms_test_case.json #: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Expected Output" msgid "Expected Output"
@@ -2599,7 +2623,7 @@ msgstr ""
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33 #: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:126 #: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date" msgid "Expiry Date"
msgstr "" msgstr ""
@@ -2626,7 +2650,7 @@ msgstr ""
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:366 #: frontend/src/components/Modals/Event.vue:397
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail" msgid "Fail"
@@ -2657,7 +2681,7 @@ msgstr ""
msgid "Failed to send email" msgid "Failed to send email"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:358 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:364
msgid "Failed to submit. Please try again. {0}" msgid "Failed to submit. Please try again. {0}"
msgstr "" msgstr ""
@@ -2770,7 +2794,7 @@ msgid "Friday"
msgstr "" msgstr ""
#. Label of the unavailable_from (Date) field in DocType 'Course Evaluator' #. Label of the unavailable_from (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:99 #: frontend/src/pages/ProfileEvaluator.vue:106
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "From" msgid "From"
msgstr "" msgstr ""
@@ -2782,6 +2806,7 @@ msgstr ""
#. Label of the full_name (Data) field in DocType 'Course Evaluator' #. Label of the full_name (Data) field in DocType 'Course Evaluator'
#. Label of the full_name (Data) field in DocType 'LMS Program Member' #. Label of the full_name (Data) field in DocType 'LMS Program Member'
#: frontend/src/pages/JobApplications.vue:278
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json #: lms/lms/doctype/lms_program_member/lms_program_member.json
#: lms/templates/signup-form.html:5 #: lms/templates/signup-form.html:5
@@ -3019,7 +3044,7 @@ msgstr ""
msgid "I am looking for a job" msgid "I am looking for a job"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:94 #: frontend/src/pages/ProfileEvaluator.vue:101
msgid "I am unavailable" msgid "I am unavailable"
msgstr "" msgstr ""
@@ -3105,7 +3130,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course' #. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:358 #: frontend/src/components/Modals/Event.vue:389
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
@@ -3161,7 +3186,7 @@ msgstr ""
#. Label of the input (Data) field in DocType 'LMS Test Case' #. Label of the input (Data) field in DocType 'LMS Test Case'
#. Label of the input (Data) field in DocType 'LMS Test Case Submission' #. Label of the input (Data) field in DocType 'LMS Test Case Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:113 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:115
#: lms/lms/doctype/lms_test_case/lms_test_case.json #: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Input" msgid "Input"
@@ -3273,7 +3298,7 @@ msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification' #. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate' #. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28 #: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:121 #: frontend/src/components/Modals/Event.vue:138
#: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date" msgid "Issue Date"
@@ -3358,8 +3383,8 @@ msgid "Job Title"
msgstr "" msgstr ""
#. Label of the jobs (Check) field in DocType 'LMS Settings' #. Label of the jobs (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/JobDetail.vue:10 frontend/src/pages/Jobs.vue:8 #: frontend/src/pages/JobApplications.vue:9 frontend/src/pages/JobDetail.vue:10
#: frontend/src/pages/Jobs.vue:212 #: frontend/src/pages/Jobs.vue:8 frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs" msgid "Jobs"
msgstr "" msgstr ""
@@ -3375,7 +3400,7 @@ msgstr ""
msgid "Join Call" msgid "Join Call"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:74 #: frontend/src/components/Modals/Event.vue:78
msgid "Join Meeting" msgid "Join Meeting"
msgstr "" msgstr ""
@@ -3883,7 +3908,7 @@ msgstr ""
msgid "Login to Frappe Cloud?" msgid "Login to Frappe Cloud?"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:63 #: frontend/src/pages/JobDetail.vue:74
msgid "Login to apply" msgid "Login to apply"
msgstr "" msgstr ""
@@ -4228,9 +4253,14 @@ msgid "Mentor Request Status Update Template"
msgstr "" msgstr ""
#: frontend/src/components/ContactUsEmail.vue:19 #: frontend/src/components/ContactUsEmail.vue:19
#: frontend/src/pages/JobApplications.vue:132
msgid "Message" msgid "Message"
msgstr "Meddelelse" msgstr "Meddelelse"
#: frontend/src/pages/JobApplications.vue:240
msgid "Message is required"
msgstr ""
#. Label of the meta_description (Small Text) field in DocType 'LMS Settings' #. Label of the meta_description (Small Text) field in DocType 'LMS Settings'
#: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303 #: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -4351,7 +4381,7 @@ msgstr ""
msgid "My availability" msgid "My availability"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:127 #: frontend/src/pages/ProfileEvaluator.vue:136
msgid "My calendar" msgid "My calendar"
msgstr "" msgstr ""
@@ -4390,7 +4420,7 @@ msgstr ""
msgid "New Job" msgid "New Job"
msgstr "" msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:27 #: lms/job/doctype/lms_job_application/lms_job_application.py:31
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "" msgstr ""
@@ -4818,7 +4848,7 @@ msgstr ""
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:362 #: frontend/src/components/Modals/Event.vue:393
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass" msgid "Pass"
@@ -4945,7 +4975,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' #. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:354 #: frontend/src/components/Modals/Event.vue:385
#: lms/lms/doctype/cohort_join_request/cohort_join_request.json #: lms/lms/doctype/cohort_join_request/cohort_join_request.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
@@ -4964,7 +4994,7 @@ msgstr ""
msgid "Percentage (e.g. 70%)" msgid "Percentage (e.g. 70%)"
msgstr "" msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:44 #: frontend/src/components/Modals/BatchStudentProgress.vue:46
msgid "Percentage/Status" msgid "Percentage/Status"
msgstr "" msgstr ""
@@ -5080,7 +5110,7 @@ msgstr ""
msgid "Please prepare well and be on time for the evaluations." msgid "Please prepare well and be on time for the evaluations."
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:135 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:139
msgid "Please run the code to execute the test cases." msgid "Please run the code to execute the test cases."
msgstr "" msgstr ""
@@ -5317,11 +5347,11 @@ msgstr ""
#: frontend/src/components/Settings/BadgeForm.vue:200 #: frontend/src/components/Settings/BadgeForm.vue:200
#: frontend/src/components/Settings/Badges.vue:205 #: frontend/src/components/Settings/Badges.vue:205
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:420 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:426
msgid "Programming Exercise Submission" msgid "Programming Exercise Submission"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:411 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:417
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298
msgid "Programming Exercise Submissions" msgid "Programming Exercise Submissions"
msgstr "" msgstr ""
@@ -5355,7 +5385,7 @@ msgstr ""
#. Label of the progress (Float) field in DocType 'LMS Enrollment' #. Label of the progress (Float) field in DocType 'LMS Enrollment'
#. Label of the progress (Int) field in DocType 'LMS Program Member' #. Label of the progress (Int) field in DocType 'LMS Program Member'
#: frontend/src/components/Modals/BatchStudentProgress.vue:94 #: frontend/src/components/Modals/BatchStudentProgress.vue:98
#: frontend/src/components/Modals/CourseProgressSummary.vue:224 #: frontend/src/components/Modals/CourseProgressSummary.vue:224
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json #: lms/lms/doctype/lms_enrollment/lms_enrollment.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json #: lms/lms/doctype/lms_program_member/lms_program_member.json
@@ -5401,7 +5431,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Course' #. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program' #. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51 #: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:108 #: frontend/src/components/Modals/Event.vue:122
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152 #: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100 #: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5569,7 +5599,7 @@ msgstr ""
#. Label of the rating (Data) field in DocType 'LMS Course' #. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review' #. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147 #: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:86 #: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/ReviewModal.vue:18 #: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
@@ -5656,6 +5686,7 @@ msgid "Remove Highlight"
msgstr "" msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:27 #: frontend/src/components/Modals/AnnouncementModal.vue:27
#: frontend/src/pages/JobApplications.vue:127
msgid "Reply To" msgid "Reply To"
msgstr "" msgstr ""
@@ -5815,8 +5846,8 @@ msgstr ""
#: frontend/src/components/Controls/CodeEditor.vue:25 #: frontend/src/components/Controls/CodeEditor.vue:25
#: frontend/src/components/Modals/AssignmentForm.vue:59 #: frontend/src/components/Modals/AssignmentForm.vue:59
#: frontend/src/components/Modals/EmailTemplateModal.vue:12 #: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:101 #: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:129 #: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
@@ -5955,6 +5986,7 @@ msgid "Select an assignment"
msgstr "" msgstr ""
#: frontend/src/components/ContactUsEmail.vue:33 #: frontend/src/components/ContactUsEmail.vue:33
#: frontend/src/pages/JobApplications.vue:110
msgid "Send" msgid "Send"
msgstr "" msgstr ""
@@ -5962,6 +5994,14 @@ msgstr ""
msgid "Send Confirmation Email" msgid "Send Confirmation Email"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:268
msgid "Send Email"
msgstr ""
#: frontend/src/pages/JobApplications.vue:106
msgid "Send Email to {0}"
msgstr ""
#. Label of the send_calendar_invite_for_evaluations (Check) field in DocType #. Label of the send_calendar_invite_for_evaluations (Check) field in DocType
#. 'LMS Settings' #. 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -6122,11 +6162,11 @@ msgstr ""
msgid "Slot Times are overlapping for some schedules." msgid "Slot Times are overlapping for some schedules."
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:201 #: frontend/src/pages/ProfileEvaluator.vue:218
msgid "Slot added successfully" msgid "Slot added successfully"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:240 #: frontend/src/pages/ProfileEvaluator.vue:257
msgid "Slot deleted successfully" msgid "Slot deleted successfully"
msgstr "" msgstr ""
@@ -6265,7 +6305,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission' #. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission' #. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:91 #: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Settings/Badges.vue:228 #: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19 #: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6336,10 +6376,12 @@ msgstr ""
#: frontend/src/components/ContactUsEmail.vue:13 #: frontend/src/components/ContactUsEmail.vue:13
#: frontend/src/components/Modals/AnnouncementModal.vue:20 #: frontend/src/components/Modals/AnnouncementModal.vue:20
#: frontend/src/components/Modals/EmailTemplateModal.vue:31 #: frontend/src/components/Modals/EmailTemplateModal.vue:31
#: frontend/src/pages/JobApplications.vue:121
msgid "Subject" msgid "Subject"
msgstr "" msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:94 #: frontend/src/components/Modals/AnnouncementModal.vue:94
#: frontend/src/pages/JobApplications.vue:237
msgid "Subject is required" msgid "Subject is required"
msgstr "" msgstr ""
@@ -6356,7 +6398,7 @@ msgstr ""
msgid "Submission by" msgid "Submission by"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:353 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:359
msgid "Submission saved!" msgid "Submission saved!"
msgstr "" msgstr ""
@@ -6396,7 +6438,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:97 #: frontend/src/components/Modals/Event.vue:106
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary" msgid "Summary"
msgstr "" msgstr ""
@@ -6501,7 +6543,7 @@ msgstr ""
#. Label of the template (Link) field in DocType 'Cohort Web Page' #. Label of the template (Link) field in DocType 'Cohort Web Page'
#. Label of the template (Link) field in DocType 'LMS Certificate' #. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43 #: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:112 #: frontend/src/components/Modals/Event.vue:127
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template" msgid "Template"
@@ -6542,7 +6584,7 @@ msgstr ""
msgid "Test this Exercise" msgid "Test this Exercise"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:92 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:93
msgid "Test {0}" msgid "Test {0}"
msgstr "" msgstr ""
@@ -6840,7 +6882,7 @@ msgid "Title is required"
msgstr "" msgstr ""
#. Label of the unavailable_to (Date) field in DocType 'Course Evaluator' #. Label of the unavailable_to (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:112 #: frontend/src/pages/ProfileEvaluator.vue:120
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "To" msgid "To"
msgstr "" msgstr ""
@@ -6953,7 +6995,7 @@ msgstr ""
msgid "Unavailability" msgid "Unavailability"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:259 #: frontend/src/pages/ProfileEvaluator.vue:276
msgid "Unavailability updated successfully" msgid "Unavailability updated successfully"
msgstr "" msgstr ""
@@ -7123,11 +7165,19 @@ msgstr ""
msgid "View" msgid "View"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:31
msgid "View Applications"
msgstr ""
#: frontend/src/components/CertificationLinks.vue:10 #: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67 #: frontend/src/components/Modals/Event.vue:67
msgid "View Certificate" msgid "View Certificate"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:262
msgid "View Resume"
msgstr ""
#: frontend/src/components/BatchFeedback.vue:56 #: frontend/src/components/BatchFeedback.vue:56
msgid "View all feedback" msgid "View all feedback"
msgstr "" msgstr ""
@@ -7146,7 +7196,7 @@ msgstr ""
msgid "Visit Batch" msgid "Visit Batch"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:41 #: frontend/src/pages/JobDetail.vue:52
msgid "Visit Website" msgid "Visit Website"
msgstr "" msgstr ""
@@ -7355,7 +7405,7 @@ msgstr ""
msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session." msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session."
msgstr "" msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:22 #: lms/job/doctype/lms_job_application/lms_job_application.py:26
msgid "You have already applied for this job." msgid "You have already applied for this job."
msgstr "" msgstr ""
@@ -7371,7 +7421,7 @@ msgstr ""
msgid "You have already reviewed this course" msgid "You have already reviewed this course"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:57 #: frontend/src/pages/JobDetail.vue:68
msgid "You have applied" msgid "You have applied"
msgstr "" msgstr ""
@@ -7451,7 +7501,7 @@ msgstr ""
msgid "Your Account has been successfully created!" msgid "Your Account has been successfully created!"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:119 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:121
msgid "Your Output" msgid "Your Output"
msgstr "" msgstr ""
@@ -7459,7 +7509,7 @@ msgstr ""
msgid "Your batch {0} is starting tomorrow" msgid "Your batch {0} is starting tomorrow"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:134 #: frontend/src/pages/ProfileEvaluator.vue:143
msgid "Your calendar is set." msgid "Your calendar is set."
msgstr "" msgstr ""
@@ -7538,11 +7588,11 @@ msgstr ""
msgid "and then 'Add to Home Screen'" msgid "and then 'Add to Home Screen'"
msgstr "" msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114 #: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicant" msgid "applicant"
msgstr "" msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114 #: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicants" msgid "applicants"
msgstr "" msgstr ""

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2025-10-31 16:04+0000\n" "POT-Creation-Date: 2025-11-07 16:04+0000\n"
"PO-Revision-Date: 2025-11-02 19:07\n" "PO-Revision-Date: 2025-11-13 11:41\n"
"Last-Translator: jannat@frappe.io\n" "Last-Translator: jannat@frappe.io\n"
"Language-Team: German\n" "Language-Team: German\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -176,7 +176,7 @@ msgstr ""
msgid "Add Row" msgid "Add Row"
msgstr "Zeile hinzufügen" msgstr "Zeile hinzufügen"
#: frontend/src/pages/ProfileEvaluator.vue:89 #: frontend/src/pages/ProfileEvaluator.vue:96
msgid "Add Slot" msgid "Add Slot"
msgstr "Slot hinzufügen" msgstr "Slot hinzufügen"
@@ -426,12 +426,25 @@ msgstr ""
msgid "Appears when the batch URL is shared on socials" msgid "Appears when the batch URL is shared on socials"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:24
msgid "Application"
msgstr "Antrag"
#. Label of a field in the job-opportunity Web Form #. Label of a field in the job-opportunity Web Form
#: lms/job/web_form/job_opportunity/job_opportunity.json #: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Application Form Link" msgid "Application Form Link"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:51 #: frontend/src/pages/JobApplications.vue:14
#: frontend/src/pages/JobApplications.vue:25
msgid "Applications"
msgstr ""
#: frontend/src/pages/JobApplications.vue:290
msgid "Applied On"
msgstr "Aufgetragen auf"
#: frontend/src/pages/JobDetail.vue:62
msgid "Apply" msgid "Apply"
msgstr "Anwenden" msgstr "Anwenden"
@@ -483,7 +496,7 @@ msgstr ""
#. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch' #. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the assessment (Table) field in DocType 'LMS Batch' #. Label of the assessment (Table) field in DocType 'LMS Batch'
#: frontend/src/components/Modals/AssessmentModal.vue:27 #: frontend/src/components/Modals/AssessmentModal.vue:27
#: frontend/src/components/Modals/BatchStudentProgress.vue:41 #: frontend/src/components/Modals/BatchStudentProgress.vue:43
#: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11 #: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11
msgid "Assessment" msgid "Assessment"
msgstr "Prüfung" msgstr "Prüfung"
@@ -526,7 +539,7 @@ msgstr ""
#: frontend/src/components/Settings/BadgeForm.vue:58 #: frontend/src/components/Settings/BadgeForm.vue:58
msgid "Assign To" msgid "Assign To"
msgstr "Zuweisen an" msgstr "Zuweisen zu"
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:7 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:7
msgid "Assign a Badge" msgid "Assign a Badge"
@@ -546,7 +559,7 @@ msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/templates/assignment.html:3 #: lms/templates/assignment.html:3
msgid "Assignment" msgid "Assignment"
msgstr "Zuordnung" msgstr "Zuweisung"
#. Label of the assignment_attachment (Attach) field in DocType 'LMS Assignment #. Label of the assignment_attachment (Attach) field in DocType 'LMS Assignment
#. Submission' #. Submission'
@@ -569,7 +582,7 @@ msgstr ""
msgid "Assignment Title" msgid "Assignment Title"
msgstr "Aufgabentitel" msgstr "Aufgabentitel"
#: frontend/src/components/Modals/AssignmentForm.vue:125 #: frontend/src/components/Modals/AssignmentForm.vue:133
msgid "Assignment created successfully" msgid "Assignment created successfully"
msgstr "" msgstr ""
@@ -581,7 +594,7 @@ msgstr "Die Aufgabe für Lektion {0} von {1} existiert bereits."
msgid "Assignment submitted successfully" msgid "Assignment submitted successfully"
msgstr "" msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:138 #: frontend/src/components/Modals/AssignmentForm.vue:146
msgid "Assignment updated successfully" msgid "Assignment updated successfully"
msgstr "" msgstr ""
@@ -594,7 +607,7 @@ msgstr "Die Aufgabe wird unten in der Lektion angezeigt."
#: frontend/src/components/Settings/Badges.vue:163 #: frontend/src/components/Settings/Badges.vue:163
#: frontend/src/pages/Assignments.vue:208 lms/www/lms.py:271 #: frontend/src/pages/Assignments.vue:208 lms/www/lms.py:271
msgid "Assignments" msgid "Assignments"
msgstr "Zuordnungen" msgstr "Zuweisungen"
#: lms/lms/doctype/lms_question/lms_question.py:44 #: lms/lms/doctype/lms_question/lms_question.py:44
msgid "At least one option must be correct for this question." msgid "At least one option must be correct for this question."
@@ -622,7 +635,7 @@ msgstr "Teilnehmer"
msgid "Attire Preference" msgid "Attire Preference"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:137 #: frontend/src/pages/ProfileEvaluator.vue:146
msgid "Authorize Google Calendar Access" msgid "Authorize Google Calendar Access"
msgstr "Autorisieren Sie den Zugriff auf Google Kalender" msgstr "Autorisieren Sie den Zugriff auf Google Kalender"
@@ -637,7 +650,7 @@ msgstr "Automatische Zuweisung"
msgid "Auto Recording" msgid "Auto Recording"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:224 #: frontend/src/pages/ProfileEvaluator.vue:241
msgid "Availability updated successfully" msgid "Availability updated successfully"
msgstr "" msgstr ""
@@ -768,6 +781,7 @@ msgstr ""
#. Name of a role #. Name of a role
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -937,7 +951,7 @@ msgstr ""
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
msgid "Cancelled" msgid "Cancelled"
msgstr "Abgesagt" msgstr "Storniert"
#. Label of the carrer_preference_details (Section Break) field in DocType #. Label of the carrer_preference_details (Section Break) field in DocType
#. 'User' #. 'User'
@@ -998,7 +1012,7 @@ msgstr "Zertifikatslink"
msgid "Certificate of Completion" msgid "Certificate of Completion"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:317 #: frontend/src/components/Modals/Event.vue:348
msgid "Certificate saved successfully" msgid "Certificate saved successfully"
msgstr "" msgstr ""
@@ -1018,7 +1032,7 @@ msgstr ""
#. Label of a Card Break in the LMS Workspace #. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:626 #: frontend/src/components/AppSidebar.vue:626
#: frontend/src/components/Modals/Event.vue:381 #: frontend/src/components/Modals/Event.vue:412
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10 #: frontend/src/pages/CourseCertification.vue:10
#: frontend/src/pages/CourseCertification.vue:135 #: frontend/src/pages/CourseCertification.vue:135
@@ -1168,7 +1182,7 @@ msgstr "Wählen Sie eine Antwort"
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "City" msgid "City"
msgstr "Ort" msgstr "Stadt"
#: lms/templates/emails/live_class_reminder.html:10 #: lms/templates/emails/live_class_reminder.html:10
msgid "Class:" msgid "Class:"
@@ -1361,7 +1375,7 @@ msgstr "Logo des Unternehmens"
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/job/web_form/job_opportunity/job_opportunity.json #: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Company Name" msgid "Company Name"
msgstr "Firma" msgstr "Firmenname"
#. Label of the company_type (Select) field in DocType 'User' #. Label of the company_type (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
@@ -1385,7 +1399,7 @@ msgstr ""
#: lms/lms/doctype/lms_course_progress/lms_course_progress.json #: lms/lms/doctype/lms_course_progress/lms_course_progress.json
#: lms/lms/widgets/CourseCard.html:75 lms/templates/reviews.html:48 #: lms/lms/widgets/CourseCard.html:75 lms/templates/reviews.html:48
msgid "Complete" msgid "Complete"
msgstr "Komplett" msgstr "Vollständig"
#: lms/templates/emails/lms_invite_request_approved.html:7 #: lms/templates/emails/lms_invite_request_approved.html:7
msgid "Complete Sign Up" msgid "Complete Sign Up"
@@ -1640,6 +1654,7 @@ msgstr ""
#: lms/lms/doctype/course_chapter/course_chapter.json #: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json #: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
@@ -1757,7 +1772,7 @@ msgstr ""
#: frontend/src/components/BatchCourses.vue:5 #: frontend/src/components/BatchCourses.vue:5
#: frontend/src/components/BatchOverlay.vue:37 #: frontend/src/components/BatchOverlay.vue:37
#: frontend/src/components/BatchStudents.vue:25 #: frontend/src/components/BatchStudents.vue:25
#: frontend/src/components/Modals/BatchStudentProgress.vue:91 #: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127 #: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340 #: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340
@@ -1971,7 +1986,7 @@ msgstr "Tag"
#: lms/templates/emails/mentor_request_creation_email.html:2 #: lms/templates/emails/mentor_request_creation_email.html:2
#: lms/templates/emails/mentor_request_status_update_email.html:2 #: lms/templates/emails/mentor_request_status_update_email.html:2
msgid "Dear" msgid "Dear"
msgstr "Hallo" msgstr "Liebe"
#: lms/templates/emails/batch_confirmation.html:2 #: lms/templates/emails/batch_confirmation.html:2
#: lms/templates/emails/batch_start_reminder.html:2 #: lms/templates/emails/batch_start_reminder.html:2
@@ -2169,7 +2184,7 @@ msgstr "E-Mail"
#: frontend/src/components/DiscussionReplies.vue:35 #: frontend/src/components/DiscussionReplies.vue:35
#: frontend/src/components/Modals/ChapterModal.vue:9 #: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/components/Settings/Badges.vue:156 #: frontend/src/components/Settings/Badges.vue:156
#: frontend/src/pages/JobDetail.vue:34 frontend/src/pages/Lesson.vue:42 #: frontend/src/pages/JobDetail.vue:45 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36 #: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36
msgid "Edit" msgid "Edit"
msgstr "Bearbeiten" msgstr "Bearbeiten"
@@ -2236,7 +2251,7 @@ msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:105 #: frontend/src/components/Settings/Evaluators.vue:105
#: frontend/src/components/Settings/Members.vue:103 #: frontend/src/components/Settings/Members.vue:103
#: lms/templates/signup-form.html:10 #: frontend/src/pages/JobApplications.vue:284 lms/templates/signup-form.html:10
msgid "Email" msgid "Email"
msgstr "E-Mail" msgstr "E-Mail"
@@ -2272,6 +2287,7 @@ msgid "Email Templates deleted successfully"
msgstr "" msgstr ""
#: frontend/src/components/ContactUsEmail.vue:57 #: frontend/src/components/ContactUsEmail.vue:57
#: frontend/src/pages/JobApplications.vue:244
msgid "Email sent successfully" msgid "Email sent successfully"
msgstr "Email wurde erfolgreich Versendet" msgstr "Email wurde erfolgreich Versendet"
@@ -2414,6 +2430,14 @@ msgstr "Geben Sie die Client-Id und das Client-Geheimnis in den Google-Einstellu
msgid "Enter a URL" msgid "Enter a URL"
msgstr "Gib eine URL ein" msgstr "Gib eine URL ein"
#: frontend/src/pages/JobApplications.vue:122
msgid "Enter email subject"
msgstr ""
#: frontend/src/pages/JobApplications.vue:128
msgid "Enter reply to email"
msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:169 #: frontend/src/components/Modals/ZoomAccountModal.vue:169
msgid "Error creating Zoom Account" msgid "Error creating Zoom Account"
msgstr "" msgstr ""
@@ -2453,7 +2477,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace #. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:374 lms/lms/workspace/lms/lms.json #: frontend/src/components/Modals/Event.vue:405 lms/lms/workspace/lms/lms.json
msgid "Evaluation" msgid "Evaluation"
msgstr "Beurteilung" msgstr "Beurteilung"
@@ -2478,7 +2502,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date." msgid "Evaluation end date cannot be less than the batch end date."
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:256 #: frontend/src/components/Modals/Event.vue:287
msgid "Evaluation saved successfully" msgid "Evaluation saved successfully"
msgstr "" msgstr ""
@@ -2586,7 +2610,7 @@ msgstr "Erweitern"
#. Label of the expected_output (Data) field in DocType 'LMS Test Case' #. Label of the expected_output (Data) field in DocType 'LMS Test Case'
#. Label of the expected_output (Data) field in DocType 'LMS Test Case #. Label of the expected_output (Data) field in DocType 'LMS Test Case
#. Submission' #. Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:127 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:129
#: lms/lms/doctype/lms_test_case/lms_test_case.json #: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Expected Output" msgid "Expected Output"
@@ -2599,7 +2623,7 @@ msgstr "Ablaufdatum"
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33 #: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:126 #: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date" msgid "Expiry Date"
msgstr "Verfallsdatum" msgstr "Verfallsdatum"
@@ -2626,7 +2650,7 @@ msgstr "Mehr entdecken"
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:366 #: frontend/src/components/Modals/Event.vue:397
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail" msgid "Fail"
@@ -2657,7 +2681,7 @@ msgstr ""
msgid "Failed to send email" msgid "Failed to send email"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:358 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:364
msgid "Failed to submit. Please try again. {0}" msgid "Failed to submit. Please try again. {0}"
msgstr "" msgstr ""
@@ -2770,7 +2794,7 @@ msgid "Friday"
msgstr "Freitag" msgstr "Freitag"
#. Label of the unavailable_from (Date) field in DocType 'Course Evaluator' #. Label of the unavailable_from (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:99 #: frontend/src/pages/ProfileEvaluator.vue:106
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "From" msgid "From"
msgstr "Von" msgstr "Von"
@@ -2782,6 +2806,7 @@ msgstr "Von-Datum"
#. Label of the full_name (Data) field in DocType 'Course Evaluator' #. Label of the full_name (Data) field in DocType 'Course Evaluator'
#. Label of the full_name (Data) field in DocType 'LMS Program Member' #. Label of the full_name (Data) field in DocType 'LMS Program Member'
#: frontend/src/pages/JobApplications.vue:278
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json #: lms/lms/doctype/lms_program_member/lms_program_member.json
#: lms/templates/signup-form.html:5 #: lms/templates/signup-form.html:5
@@ -2993,7 +3018,7 @@ msgstr "Hinweise"
#: frontend/src/pages/Home/Home.vue:5 frontend/src/pages/Home/Home.vue:154 #: frontend/src/pages/Home/Home.vue:5 frontend/src/pages/Home/Home.vue:154
msgid "Home" msgid "Home"
msgstr "Startseite" msgstr "Start"
#. Label of the host (Link) field in DocType 'LMS Live Class' #. Label of the host (Link) field in DocType 'LMS Live Class'
#: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -3019,7 +3044,7 @@ msgstr "Ich freue mich, Ihnen mitteilen zu können, dass Sie Ihr Zertifikat für
msgid "I am looking for a job" msgid "I am looking for a job"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:94 #: frontend/src/pages/ProfileEvaluator.vue:101
msgid "I am unavailable" msgid "I am unavailable"
msgstr "Ich bin nicht verfügbar" msgstr "Ich bin nicht verfügbar"
@@ -3105,7 +3130,7 @@ msgstr "Bild: Beschädigter Datenstrom"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course' #. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:358 #: frontend/src/components/Modals/Event.vue:389
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
@@ -3139,7 +3164,7 @@ msgstr "Falsch"
#. Label of the index_ (Int) field in DocType 'LMS Exercise' #. Label of the index_ (Int) field in DocType 'LMS Exercise'
#: lms/lms/doctype/lms_exercise/lms_exercise.json #: lms/lms/doctype/lms_exercise/lms_exercise.json
msgid "Index" msgid "Index"
msgstr "Pos" msgstr "Index"
#. Label of the index_label (Data) field in DocType 'LMS Exercise' #. Label of the index_label (Data) field in DocType 'LMS Exercise'
#: lms/lms/doctype/lms_exercise/lms_exercise.json #: lms/lms/doctype/lms_exercise/lms_exercise.json
@@ -3161,7 +3186,7 @@ msgstr "Industrie"
#. Label of the input (Data) field in DocType 'LMS Test Case' #. Label of the input (Data) field in DocType 'LMS Test Case'
#. Label of the input (Data) field in DocType 'LMS Test Case Submission' #. Label of the input (Data) field in DocType 'LMS Test Case Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:113 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:115
#: lms/lms/doctype/lms_test_case/lms_test_case.json #: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Input" msgid "Input"
@@ -3273,7 +3298,7 @@ msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification' #. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate' #. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28 #: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:121 #: frontend/src/components/Modals/Event.vue:138
#: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date" msgid "Issue Date"
@@ -3358,8 +3383,8 @@ msgid "Job Title"
msgstr "Stellenbezeichnung" msgstr "Stellenbezeichnung"
#. Label of the jobs (Check) field in DocType 'LMS Settings' #. Label of the jobs (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/JobDetail.vue:10 frontend/src/pages/Jobs.vue:8 #: frontend/src/pages/JobApplications.vue:9 frontend/src/pages/JobDetail.vue:10
#: frontend/src/pages/Jobs.vue:212 #: frontend/src/pages/Jobs.vue:8 frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs" msgid "Jobs"
msgstr "freie Stellen" msgstr "freie Stellen"
@@ -3375,7 +3400,7 @@ msgstr "Beitreten"
msgid "Join Call" msgid "Join Call"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:74 #: frontend/src/components/Modals/Event.vue:78
msgid "Join Meeting" msgid "Join Meeting"
msgstr "" msgstr ""
@@ -3866,7 +3891,7 @@ msgstr "Lokal"
#: lms/lms/doctype/education_detail/education_detail.json #: lms/lms/doctype/education_detail/education_detail.json
#: lms/lms/doctype/work_experience/work_experience.json #: lms/lms/doctype/work_experience/work_experience.json
msgid "Location" msgid "Location"
msgstr "Ort" msgstr ""
#. Label of the location_preference (Select) field in DocType 'User' #. Label of the location_preference (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
@@ -3883,7 +3908,7 @@ msgstr "Anmelden"
msgid "Login to Frappe Cloud?" msgid "Login to Frappe Cloud?"
msgstr "Melden Sie sich bei Frappe Cloud an?" msgstr "Melden Sie sich bei Frappe Cloud an?"
#: frontend/src/pages/JobDetail.vue:63 #: frontend/src/pages/JobDetail.vue:74
msgid "Login to apply" msgid "Login to apply"
msgstr "" msgstr ""
@@ -4228,14 +4253,19 @@ msgid "Mentor Request Status Update Template"
msgstr "" msgstr ""
#: frontend/src/components/ContactUsEmail.vue:19 #: frontend/src/components/ContactUsEmail.vue:19
#: frontend/src/pages/JobApplications.vue:132
msgid "Message" msgid "Message"
msgstr "Nachricht" msgstr "Nachricht"
#: frontend/src/pages/JobApplications.vue:240
msgid "Message is required"
msgstr ""
#. Label of the meta_description (Small Text) field in DocType 'LMS Settings' #. Label of the meta_description (Small Text) field in DocType 'LMS Settings'
#: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303 #: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Meta Description" msgid "Meta Description"
msgstr "Meta Beschreibung" msgstr "Meta-Beschreibung"
#. Label of the meta_image (Attach Image) field in DocType 'LMS Batch' #. Label of the meta_image (Attach Image) field in DocType 'LMS Batch'
#. Label of the meta_image (Attach Image) field in DocType 'LMS Settings' #. Label of the meta_image (Attach Image) field in DocType 'LMS Settings'
@@ -4328,7 +4358,7 @@ msgstr ""
#: frontend/src/components/AppSidebar.vue:39 #: frontend/src/components/AppSidebar.vue:39
msgid "More" msgid "More"
msgstr "Weiter" msgstr "Mehr"
#. Label of the multiple (Check) field in DocType 'LMS Question' #. Label of the multiple (Check) field in DocType 'LMS Question'
#: lms/lms/doctype/lms_question/lms_question.json #: lms/lms/doctype/lms_question/lms_question.json
@@ -4351,7 +4381,7 @@ msgstr ""
msgid "My availability" msgid "My availability"
msgstr "Meine Verfügbarkeit" msgstr "Meine Verfügbarkeit"
#: frontend/src/pages/ProfileEvaluator.vue:127 #: frontend/src/pages/ProfileEvaluator.vue:136
msgid "My calendar" msgid "My calendar"
msgstr "Mein Kalender" msgstr "Mein Kalender"
@@ -4390,7 +4420,7 @@ msgstr ""
msgid "New Job" msgid "New Job"
msgstr "" msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:27 #: lms/job/doctype/lms_job_application/lms_job_application.py:31
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "" msgstr ""
@@ -4818,7 +4848,7 @@ msgstr "Teilweise abgeschlossen"
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:362 #: frontend/src/components/Modals/Event.vue:393
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass" msgid "Pass"
@@ -4945,7 +4975,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' #. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:354 #: frontend/src/components/Modals/Event.vue:385
#: lms/lms/doctype/cohort_join_request/cohort_join_request.json #: lms/lms/doctype/cohort_join_request/cohort_join_request.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
@@ -4964,7 +4994,7 @@ msgstr "Prozentsatz"
msgid "Percentage (e.g. 70%)" msgid "Percentage (e.g. 70%)"
msgstr "Prozentsatz (z. B. 70 %)" msgstr "Prozentsatz (z. B. 70 %)"
#: frontend/src/components/Modals/BatchStudentProgress.vue:44 #: frontend/src/components/Modals/BatchStudentProgress.vue:46
msgid "Percentage/Status" msgid "Percentage/Status"
msgstr "" msgstr ""
@@ -5080,7 +5110,7 @@ msgstr ""
msgid "Please prepare well and be on time for the evaluations." msgid "Please prepare well and be on time for the evaluations."
msgstr "Bitte bereiten Sie sich gut vor und erscheinen Sie pünktlich zu den Prüfungen." msgstr "Bitte bereiten Sie sich gut vor und erscheinen Sie pünktlich zu den Prüfungen."
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:135 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:139
msgid "Please run the code to execute the test cases." msgid "Please run the code to execute the test cases."
msgstr "" msgstr ""
@@ -5168,7 +5198,7 @@ msgstr "Mögliche Antwort 4"
#: frontend/src/components/DiscussionReplies.vue:54 #: frontend/src/components/DiscussionReplies.vue:54
#: frontend/src/components/DiscussionReplies.vue:89 #: frontend/src/components/DiscussionReplies.vue:89
msgid "Post" msgid "Post"
msgstr "Absenden" msgstr "Posten"
#: frontend/src/pages/Billing.vue:95 #: frontend/src/pages/Billing.vue:95
msgid "Postal Code" msgid "Postal Code"
@@ -5220,7 +5250,7 @@ msgstr "Videovorschau"
#: frontend/src/pages/Lesson.vue:26 frontend/src/pages/Lesson.vue:162 #: frontend/src/pages/Lesson.vue:26 frontend/src/pages/Lesson.vue:162
msgid "Previous" msgid "Previous"
msgstr "Vorhergehende" msgstr "Zurück"
#. Label of the pricing_tab (Tab Break) field in DocType 'LMS Batch' #. Label of the pricing_tab (Tab Break) field in DocType 'LMS Batch'
#: frontend/src/pages/BatchForm.vue:265 #: frontend/src/pages/BatchForm.vue:265
@@ -5317,11 +5347,11 @@ msgstr ""
#: frontend/src/components/Settings/BadgeForm.vue:200 #: frontend/src/components/Settings/BadgeForm.vue:200
#: frontend/src/components/Settings/Badges.vue:205 #: frontend/src/components/Settings/Badges.vue:205
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:420 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:426
msgid "Programming Exercise Submission" msgid "Programming Exercise Submission"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:411 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:417
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298
msgid "Programming Exercise Submissions" msgid "Programming Exercise Submissions"
msgstr "" msgstr ""
@@ -5355,7 +5385,7 @@ msgstr ""
#. Label of the progress (Float) field in DocType 'LMS Enrollment' #. Label of the progress (Float) field in DocType 'LMS Enrollment'
#. Label of the progress (Int) field in DocType 'LMS Program Member' #. Label of the progress (Int) field in DocType 'LMS Program Member'
#: frontend/src/components/Modals/BatchStudentProgress.vue:94 #: frontend/src/components/Modals/BatchStudentProgress.vue:98
#: frontend/src/components/Modals/CourseProgressSummary.vue:224 #: frontend/src/components/Modals/CourseProgressSummary.vue:224
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json #: lms/lms/doctype/lms_enrollment/lms_enrollment.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json #: lms/lms/doctype/lms_program_member/lms_program_member.json
@@ -5401,7 +5431,7 @@ msgstr "Auf der Teilnehmerseite veröffentlichen"
#. Label of the published (Check) field in DocType 'LMS Course' #. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program' #. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51 #: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:108 #: frontend/src/components/Modals/Event.vue:122
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152 #: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100 #: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5569,7 +5599,7 @@ msgstr ""
#. Label of the rating (Data) field in DocType 'LMS Course' #. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review' #. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147 #: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:86 #: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/ReviewModal.vue:18 #: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
@@ -5656,6 +5686,7 @@ msgid "Remove Highlight"
msgstr "" msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:27 #: frontend/src/components/Modals/AnnouncementModal.vue:27
#: frontend/src/pages/JobApplications.vue:127
msgid "Reply To" msgid "Reply To"
msgstr "Antworten auf" msgstr "Antworten auf"
@@ -5815,8 +5846,8 @@ msgstr "Samstag"
#: frontend/src/components/Controls/CodeEditor.vue:25 #: frontend/src/components/Controls/CodeEditor.vue:25
#: frontend/src/components/Modals/AssignmentForm.vue:59 #: frontend/src/components/Modals/AssignmentForm.vue:59
#: frontend/src/components/Modals/EmailTemplateModal.vue:12 #: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:101 #: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:129 #: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
@@ -5955,6 +5986,7 @@ msgid "Select an assignment"
msgstr "" msgstr ""
#: frontend/src/components/ContactUsEmail.vue:33 #: frontend/src/components/ContactUsEmail.vue:33
#: frontend/src/pages/JobApplications.vue:110
msgid "Send" msgid "Send"
msgstr "Absenden" msgstr "Absenden"
@@ -5962,6 +5994,14 @@ msgstr "Absenden"
msgid "Send Confirmation Email" msgid "Send Confirmation Email"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:268
msgid "Send Email"
msgstr "E-Mail absenden"
#: frontend/src/pages/JobApplications.vue:106
msgid "Send Email to {0}"
msgstr ""
#. Label of the send_calendar_invite_for_evaluations (Check) field in DocType #. Label of the send_calendar_invite_for_evaluations (Check) field in DocType
#. 'LMS Settings' #. 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -6122,11 +6162,11 @@ msgstr "Überspringen"
msgid "Slot Times are overlapping for some schedules." msgid "Slot Times are overlapping for some schedules."
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:201 #: frontend/src/pages/ProfileEvaluator.vue:218
msgid "Slot added successfully" msgid "Slot added successfully"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:240 #: frontend/src/pages/ProfileEvaluator.vue:257
msgid "Slot deleted successfully" msgid "Slot deleted successfully"
msgstr "" msgstr ""
@@ -6265,7 +6305,7 @@ msgstr "Statistiken"
#. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission' #. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission' #. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:91 #: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Settings/Badges.vue:228 #: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19 #: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6336,10 +6376,12 @@ msgstr "Untergruppe"
#: frontend/src/components/ContactUsEmail.vue:13 #: frontend/src/components/ContactUsEmail.vue:13
#: frontend/src/components/Modals/AnnouncementModal.vue:20 #: frontend/src/components/Modals/AnnouncementModal.vue:20
#: frontend/src/components/Modals/EmailTemplateModal.vue:31 #: frontend/src/components/Modals/EmailTemplateModal.vue:31
#: frontend/src/pages/JobApplications.vue:121
msgid "Subject" msgid "Subject"
msgstr "Betreff" msgstr "Betreff"
#: frontend/src/components/Modals/AnnouncementModal.vue:94 #: frontend/src/components/Modals/AnnouncementModal.vue:94
#: frontend/src/pages/JobApplications.vue:237
msgid "Subject is required" msgid "Subject is required"
msgstr "" msgstr ""
@@ -6356,7 +6398,7 @@ msgstr ""
msgid "Submission by" msgid "Submission by"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:353 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:359
msgid "Submission saved!" msgid "Submission saved!"
msgstr "" msgstr ""
@@ -6396,7 +6438,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:97 #: frontend/src/components/Modals/Event.vue:106
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary" msgid "Summary"
msgstr "Zusammenfassung" msgstr "Zusammenfassung"
@@ -6501,7 +6543,7 @@ msgstr ""
#. Label of the template (Link) field in DocType 'Cohort Web Page' #. Label of the template (Link) field in DocType 'Cohort Web Page'
#. Label of the template (Link) field in DocType 'LMS Certificate' #. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43 #: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:112 #: frontend/src/components/Modals/Event.vue:127
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template" msgid "Template"
@@ -6542,7 +6584,7 @@ msgstr ""
msgid "Test this Exercise" msgid "Test this Exercise"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:92 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:93
msgid "Test {0}" msgid "Test {0}"
msgstr "" msgstr ""
@@ -6833,14 +6875,14 @@ msgstr ""
#: lms/lms/doctype/lms_timetable_template/lms_timetable_template.json #: lms/lms/doctype/lms_timetable_template/lms_timetable_template.json
#: lms/lms/doctype/work_experience/work_experience.json #: lms/lms/doctype/work_experience/work_experience.json
msgid "Title" msgid "Title"
msgstr "Bezeichnung" msgstr "Titel"
#: frontend/src/components/Modals/ChapterModal.vue:172 #: frontend/src/components/Modals/ChapterModal.vue:172
msgid "Title is required" msgid "Title is required"
msgstr "" msgstr ""
#. Label of the unavailable_to (Date) field in DocType 'Course Evaluator' #. Label of the unavailable_to (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:112 #: frontend/src/pages/ProfileEvaluator.vue:120
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "To" msgid "To"
msgstr "An" msgstr "An"
@@ -6856,7 +6898,7 @@ msgstr "Um dieser Gruppe beizutreten, wenden Sie sich bitte an den Administrator
#: lms/lms/user.py:41 #: lms/lms/user.py:41
msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour" msgid "Too many users signed up recently, so the registration is disabled. Please try back in an hour"
msgstr "Zu viele Benutzer unterzeichnete vor kurzem, also die Registrierung ist deaktiviert. Bitte versuchen Sie es in einer Stunde zurück" msgstr "Zu viele Benutzer haben sich kürzlich registriert. Die Registrierung ist daher deaktiviert. Bitte versuchen Sie es in einer Stunde erneut."
#: frontend/src/pages/Billing.vue:53 #: frontend/src/pages/Billing.vue:53
msgid "Total" msgid "Total"
@@ -6953,7 +6995,7 @@ msgstr "UUID"
msgid "Unavailability" msgid "Unavailability"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:259 #: frontend/src/pages/ProfileEvaluator.vue:276
msgid "Unavailability updated successfully" msgid "Unavailability updated successfully"
msgstr "" msgstr ""
@@ -7048,7 +7090,7 @@ msgstr "HTML verwenden"
#: lms/lms/doctype/cohort_staff/cohort_staff.json #: lms/lms/doctype/cohort_staff/cohort_staff.json
#: lms/lms/doctype/lms_course_interest/lms_course_interest.json #: lms/lms/doctype/lms_course_interest/lms_course_interest.json
msgid "User" msgid "User"
msgstr "Nutzer" msgstr "Benutzer"
#. Label of the user_category (Select) field in DocType 'User' #. Label of the user_category (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json lms/templates/signup-form.html:17 #: lms/fixtures/custom_field.json lms/templates/signup-form.html:17
@@ -7123,11 +7165,19 @@ msgstr ""
msgid "View" msgid "View"
msgstr "Ansicht" msgstr "Ansicht"
#: frontend/src/pages/JobDetail.vue:31
msgid "View Applications"
msgstr ""
#: frontend/src/components/CertificationLinks.vue:10 #: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67 #: frontend/src/components/Modals/Event.vue:67
msgid "View Certificate" msgid "View Certificate"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:262
msgid "View Resume"
msgstr ""
#: frontend/src/components/BatchFeedback.vue:56 #: frontend/src/components/BatchFeedback.vue:56
msgid "View all feedback" msgid "View all feedback"
msgstr "" msgstr ""
@@ -7146,7 +7196,7 @@ msgstr "Sichtbarkeit"
msgid "Visit Batch" msgid "Visit Batch"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:41 #: frontend/src/pages/JobDetail.vue:52
msgid "Visit Website" msgid "Visit Website"
msgstr "" msgstr ""
@@ -7355,7 +7405,7 @@ msgstr "Sie haben {0}% richtige Antworten mit einer Punktzahl von {1} von {2}"
msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session." msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session."
msgstr "" msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:22 #: lms/job/doctype/lms_job_application/lms_job_application.py:26
msgid "You have already applied for this job." msgid "You have already applied for this job."
msgstr "Sie haben sich bereits auf diese Stelle beworben." msgstr "Sie haben sich bereits auf diese Stelle beworben."
@@ -7371,7 +7421,7 @@ msgstr ""
msgid "You have already reviewed this course" msgid "You have already reviewed this course"
msgstr "Sie haben diesen Kurs bereits bewertet" msgstr "Sie haben diesen Kurs bereits bewertet"
#: frontend/src/pages/JobDetail.vue:57 #: frontend/src/pages/JobDetail.vue:68
msgid "You have applied" msgid "You have applied"
msgstr "" msgstr ""
@@ -7451,7 +7501,7 @@ msgstr "Das YouTube-Video wird oben in der Lektion angezeigt."
msgid "Your Account has been successfully created!" msgid "Your Account has been successfully created!"
msgstr "Ihr Konto wurde erfolgreich erstellt!" msgstr "Ihr Konto wurde erfolgreich erstellt!"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:119 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:121
msgid "Your Output" msgid "Your Output"
msgstr "" msgstr ""
@@ -7459,7 +7509,7 @@ msgstr ""
msgid "Your batch {0} is starting tomorrow" msgid "Your batch {0} is starting tomorrow"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:134 #: frontend/src/pages/ProfileEvaluator.vue:143
msgid "Your calendar is set." msgid "Your calendar is set."
msgstr "Ihr Kalender ist eingestellt." msgstr "Ihr Kalender ist eingestellt."
@@ -7538,11 +7588,11 @@ msgstr "und"
msgid "and then 'Add to Home Screen'" msgid "and then 'Add to Home Screen'"
msgstr "" msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114 #: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicant" msgid "applicant"
msgstr "" msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114 #: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicants" msgid "applicants"
msgstr "" msgstr ""

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2025-10-31 16:04+0000\n" "POT-Creation-Date: 2025-11-07 16:04+0000\n"
"PO-Revision-Date: 2025-10-31 17:33\n" "PO-Revision-Date: 2025-11-11 11:49\n"
"Last-Translator: jannat@frappe.io\n" "Last-Translator: jannat@frappe.io\n"
"Language-Team: Esperanto\n" "Language-Team: Esperanto\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -176,7 +176,7 @@ msgstr "crwdns155288:0crwdne155288:0"
msgid "Add Row" msgid "Add Row"
msgstr "crwdns155686:0crwdne155686:0" msgstr "crwdns155686:0crwdne155686:0"
#: frontend/src/pages/ProfileEvaluator.vue:89 #: frontend/src/pages/ProfileEvaluator.vue:96
msgid "Add Slot" msgid "Add Slot"
msgstr "crwdns149218:0crwdne149218:0" msgstr "crwdns149218:0crwdne149218:0"
@@ -426,12 +426,25 @@ msgstr "crwdns151466:0crwdne151466:0"
msgid "Appears when the batch URL is shared on socials" msgid "Appears when the batch URL is shared on socials"
msgstr "crwdns155070:0crwdne155070:0" msgstr "crwdns155070:0crwdne155070:0"
#: frontend/src/pages/JobApplications.vue:24
msgid "Application"
msgstr "crwdns160722:0crwdne160722:0"
#. Label of a field in the job-opportunity Web Form #. Label of a field in the job-opportunity Web Form
#: lms/job/web_form/job_opportunity/job_opportunity.json #: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Application Form Link" msgid "Application Form Link"
msgstr "crwdns160124:0crwdne160124:0" msgstr "crwdns160124:0crwdne160124:0"
#: frontend/src/pages/JobDetail.vue:51 #: frontend/src/pages/JobApplications.vue:14
#: frontend/src/pages/JobApplications.vue:25
msgid "Applications"
msgstr "crwdns160724:0crwdne160724:0"
#: frontend/src/pages/JobApplications.vue:290
msgid "Applied On"
msgstr "crwdns160726:0crwdne160726:0"
#: frontend/src/pages/JobDetail.vue:62
msgid "Apply" msgid "Apply"
msgstr "crwdns149284:0crwdne149284:0" msgstr "crwdns149284:0crwdne149284:0"
@@ -483,7 +496,7 @@ msgstr "crwdns157410:0crwdne157410:0"
#. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch' #. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the assessment (Table) field in DocType 'LMS Batch' #. Label of the assessment (Table) field in DocType 'LMS Batch'
#: frontend/src/components/Modals/AssessmentModal.vue:27 #: frontend/src/components/Modals/AssessmentModal.vue:27
#: frontend/src/components/Modals/BatchStudentProgress.vue:41 #: frontend/src/components/Modals/BatchStudentProgress.vue:43
#: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11 #: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11
msgid "Assessment" msgid "Assessment"
msgstr "crwdns149300:0crwdne149300:0" msgstr "crwdns149300:0crwdne149300:0"
@@ -569,7 +582,7 @@ msgstr "crwdns154518:0crwdne154518:0"
msgid "Assignment Title" msgid "Assignment Title"
msgstr "crwdns149320:0crwdne149320:0" msgstr "crwdns149320:0crwdne149320:0"
#: frontend/src/components/Modals/AssignmentForm.vue:125 #: frontend/src/components/Modals/AssignmentForm.vue:133
msgid "Assignment created successfully" msgid "Assignment created successfully"
msgstr "crwdns154596:0crwdne154596:0" msgstr "crwdns154596:0crwdne154596:0"
@@ -581,7 +594,7 @@ msgstr "crwdns149322:0{0}crwdnd149322:0{1}crwdne149322:0"
msgid "Assignment submitted successfully" msgid "Assignment submitted successfully"
msgstr "crwdns155072:0crwdne155072:0" msgstr "crwdns155072:0crwdne155072:0"
#: frontend/src/components/Modals/AssignmentForm.vue:138 #: frontend/src/components/Modals/AssignmentForm.vue:146
msgid "Assignment updated successfully" msgid "Assignment updated successfully"
msgstr "crwdns154598:0crwdne154598:0" msgstr "crwdns154598:0crwdne154598:0"
@@ -622,7 +635,7 @@ msgstr "crwdns155228:0crwdne155228:0"
msgid "Attire Preference" msgid "Attire Preference"
msgstr "crwdns149328:0crwdne149328:0" msgstr "crwdns149328:0crwdne149328:0"
#: frontend/src/pages/ProfileEvaluator.vue:137 #: frontend/src/pages/ProfileEvaluator.vue:146
msgid "Authorize Google Calendar Access" msgid "Authorize Google Calendar Access"
msgstr "crwdns149330:0crwdne149330:0" msgstr "crwdns149330:0crwdne149330:0"
@@ -637,7 +650,7 @@ msgstr "crwdns149332:0crwdne149332:0"
msgid "Auto Recording" msgid "Auto Recording"
msgstr "crwdns149334:0crwdne149334:0" msgstr "crwdns149334:0crwdne149334:0"
#: frontend/src/pages/ProfileEvaluator.vue:224 #: frontend/src/pages/ProfileEvaluator.vue:241
msgid "Availability updated successfully" msgid "Availability updated successfully"
msgstr "crwdns155074:0crwdne155074:0" msgstr "crwdns155074:0crwdne155074:0"
@@ -768,6 +781,7 @@ msgstr "crwdns155170:0crwdne155170:0"
#. Name of a role #. Name of a role
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -998,7 +1012,7 @@ msgstr "crwdns149424:0crwdne149424:0"
msgid "Certificate of Completion" msgid "Certificate of Completion"
msgstr "crwdns152601:0crwdne152601:0" msgstr "crwdns152601:0crwdne152601:0"
#: frontend/src/components/Modals/Event.vue:317 #: frontend/src/components/Modals/Event.vue:348
msgid "Certificate saved successfully" msgid "Certificate saved successfully"
msgstr "crwdns149426:0crwdne149426:0" msgstr "crwdns149426:0crwdne149426:0"
@@ -1018,7 +1032,7 @@ msgstr "crwdns151924:0crwdne151924:0"
#. Label of a Card Break in the LMS Workspace #. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:626 #: frontend/src/components/AppSidebar.vue:626
#: frontend/src/components/Modals/Event.vue:381 #: frontend/src/components/Modals/Event.vue:412
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10 #: frontend/src/pages/CourseCertification.vue:10
#: frontend/src/pages/CourseCertification.vue:135 #: frontend/src/pages/CourseCertification.vue:135
@@ -1640,6 +1654,7 @@ msgstr "crwdns158494:0crwdne158494:0"
#: lms/lms/doctype/course_chapter/course_chapter.json #: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json #: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
@@ -1757,7 +1772,7 @@ msgstr "crwdns149596:0{0}crwdne149596:0"
#: frontend/src/components/BatchCourses.vue:5 #: frontend/src/components/BatchCourses.vue:5
#: frontend/src/components/BatchOverlay.vue:37 #: frontend/src/components/BatchOverlay.vue:37
#: frontend/src/components/BatchStudents.vue:25 #: frontend/src/components/BatchStudents.vue:25
#: frontend/src/components/Modals/BatchStudentProgress.vue:91 #: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127 #: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340 #: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340
@@ -2169,7 +2184,7 @@ msgstr "crwdns149680:0crwdne149680:0"
#: frontend/src/components/DiscussionReplies.vue:35 #: frontend/src/components/DiscussionReplies.vue:35
#: frontend/src/components/Modals/ChapterModal.vue:9 #: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/components/Settings/Badges.vue:156 #: frontend/src/components/Settings/Badges.vue:156
#: frontend/src/pages/JobDetail.vue:34 frontend/src/pages/Lesson.vue:42 #: frontend/src/pages/JobDetail.vue:45 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36 #: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36
msgid "Edit" msgid "Edit"
msgstr "crwdns149682:0crwdne149682:0" msgstr "crwdns149682:0crwdne149682:0"
@@ -2236,7 +2251,7 @@ msgstr "crwdns149694:0crwdne149694:0"
#: frontend/src/components/Settings/Evaluators.vue:105 #: frontend/src/components/Settings/Evaluators.vue:105
#: frontend/src/components/Settings/Members.vue:103 #: frontend/src/components/Settings/Members.vue:103
#: lms/templates/signup-form.html:10 #: frontend/src/pages/JobApplications.vue:284 lms/templates/signup-form.html:10
msgid "Email" msgid "Email"
msgstr "crwdns149696:0crwdne149696:0" msgstr "crwdns149696:0crwdne149696:0"
@@ -2272,6 +2287,7 @@ msgid "Email Templates deleted successfully"
msgstr "crwdns155188:0crwdne155188:0" msgstr "crwdns155188:0crwdne155188:0"
#: frontend/src/components/ContactUsEmail.vue:57 #: frontend/src/components/ContactUsEmail.vue:57
#: frontend/src/pages/JobApplications.vue:244
msgid "Email sent successfully" msgid "Email sent successfully"
msgstr "crwdns160426:0crwdne160426:0" msgstr "crwdns160426:0crwdne160426:0"
@@ -2414,6 +2430,14 @@ msgstr "crwdns149736:0crwdne149736:0"
msgid "Enter a URL" msgid "Enter a URL"
msgstr "crwdns149738:0crwdne149738:0" msgstr "crwdns149738:0crwdne149738:0"
#: frontend/src/pages/JobApplications.vue:122
msgid "Enter email subject"
msgstr "crwdns160728:0crwdne160728:0"
#: frontend/src/pages/JobApplications.vue:128
msgid "Enter reply to email"
msgstr "crwdns160730:0crwdne160730:0"
#: frontend/src/components/Modals/ZoomAccountModal.vue:169 #: frontend/src/components/Modals/ZoomAccountModal.vue:169
msgid "Error creating Zoom Account" msgid "Error creating Zoom Account"
msgstr "crwdns155238:0crwdne155238:0" msgstr "crwdns155238:0crwdne155238:0"
@@ -2453,7 +2477,7 @@ msgstr "crwdns155194:0crwdne155194:0"
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace #. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:374 lms/lms/workspace/lms/lms.json #: frontend/src/components/Modals/Event.vue:405 lms/lms/workspace/lms/lms.json
msgid "Evaluation" msgid "Evaluation"
msgstr "crwdns149746:0crwdne149746:0" msgstr "crwdns149746:0crwdne149746:0"
@@ -2478,7 +2502,7 @@ msgstr "crwdns149752:0crwdne149752:0"
msgid "Evaluation end date cannot be less than the batch end date." msgid "Evaluation end date cannot be less than the batch end date."
msgstr "crwdns149754:0crwdne149754:0" msgstr "crwdns149754:0crwdne149754:0"
#: frontend/src/components/Modals/Event.vue:256 #: frontend/src/components/Modals/Event.vue:287
msgid "Evaluation saved successfully" msgid "Evaluation saved successfully"
msgstr "crwdns149756:0crwdne149756:0" msgstr "crwdns149756:0crwdne149756:0"
@@ -2586,7 +2610,7 @@ msgstr "crwdns154608:0crwdne154608:0"
#. Label of the expected_output (Data) field in DocType 'LMS Test Case' #. Label of the expected_output (Data) field in DocType 'LMS Test Case'
#. Label of the expected_output (Data) field in DocType 'LMS Test Case #. Label of the expected_output (Data) field in DocType 'LMS Test Case
#. Submission' #. Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:127 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:129
#: lms/lms/doctype/lms_test_case/lms_test_case.json #: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Expected Output" msgid "Expected Output"
@@ -2599,7 +2623,7 @@ msgstr "crwdns149778:0crwdne149778:0"
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33 #: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:126 #: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date" msgid "Expiry Date"
msgstr "crwdns149780:0crwdne149780:0" msgstr "crwdns149780:0crwdne149780:0"
@@ -2626,7 +2650,7 @@ msgstr "crwdns149786:0crwdne149786:0"
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:366 #: frontend/src/components/Modals/Event.vue:397
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail" msgid "Fail"
@@ -2657,7 +2681,7 @@ msgstr "crwdns155242:0{0}crwdnd155242:0{1}crwdne155242:0"
msgid "Failed to send email" msgid "Failed to send email"
msgstr "crwdns160428:0crwdne160428:0" msgstr "crwdns160428:0crwdne160428:0"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:358 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:364
msgid "Failed to submit. Please try again. {0}" msgid "Failed to submit. Please try again. {0}"
msgstr "crwdns155708:0{0}crwdne155708:0" msgstr "crwdns155708:0{0}crwdne155708:0"
@@ -2770,7 +2794,7 @@ msgid "Friday"
msgstr "crwdns149818:0crwdne149818:0" msgstr "crwdns149818:0crwdne149818:0"
#. Label of the unavailable_from (Date) field in DocType 'Course Evaluator' #. Label of the unavailable_from (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:99 #: frontend/src/pages/ProfileEvaluator.vue:106
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "From" msgid "From"
msgstr "crwdns149820:0crwdne149820:0" msgstr "crwdns149820:0crwdne149820:0"
@@ -2782,6 +2806,7 @@ msgstr "crwdns149822:0crwdne149822:0"
#. Label of the full_name (Data) field in DocType 'Course Evaluator' #. Label of the full_name (Data) field in DocType 'Course Evaluator'
#. Label of the full_name (Data) field in DocType 'LMS Program Member' #. Label of the full_name (Data) field in DocType 'LMS Program Member'
#: frontend/src/pages/JobApplications.vue:278
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json #: lms/lms/doctype/lms_program_member/lms_program_member.json
#: lms/templates/signup-form.html:5 #: lms/templates/signup-form.html:5
@@ -3019,7 +3044,7 @@ msgstr "crwdns149890:0{0}crwdne149890:0"
msgid "I am looking for a job" msgid "I am looking for a job"
msgstr "crwdns149892:0crwdne149892:0" msgstr "crwdns149892:0crwdne149892:0"
#: frontend/src/pages/ProfileEvaluator.vue:94 #: frontend/src/pages/ProfileEvaluator.vue:101
msgid "I am unavailable" msgid "I am unavailable"
msgstr "crwdns149894:0crwdne149894:0" msgstr "crwdns149894:0crwdne149894:0"
@@ -3105,7 +3130,7 @@ msgstr "crwdns149914:0crwdne149914:0"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course' #. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:358 #: frontend/src/components/Modals/Event.vue:389
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
@@ -3161,7 +3186,7 @@ msgstr "crwdns149932:0crwdne149932:0"
#. Label of the input (Data) field in DocType 'LMS Test Case' #. Label of the input (Data) field in DocType 'LMS Test Case'
#. Label of the input (Data) field in DocType 'LMS Test Case Submission' #. Label of the input (Data) field in DocType 'LMS Test Case Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:113 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:115
#: lms/lms/doctype/lms_test_case/lms_test_case.json #: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Input" msgid "Input"
@@ -3273,7 +3298,7 @@ msgstr "crwdns151636:0crwdne151636:0"
#. Label of the issue_date (Date) field in DocType 'Certification' #. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate' #. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28 #: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:121 #: frontend/src/components/Modals/Event.vue:138
#: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date" msgid "Issue Date"
@@ -3358,8 +3383,8 @@ msgid "Job Title"
msgstr "crwdns149992:0crwdne149992:0" msgstr "crwdns149992:0crwdne149992:0"
#. Label of the jobs (Check) field in DocType 'LMS Settings' #. Label of the jobs (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/JobDetail.vue:10 frontend/src/pages/Jobs.vue:8 #: frontend/src/pages/JobApplications.vue:9 frontend/src/pages/JobDetail.vue:10
#: frontend/src/pages/Jobs.vue:212 #: frontend/src/pages/Jobs.vue:8 frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs" msgid "Jobs"
msgstr "crwdns149994:0crwdne149994:0" msgstr "crwdns149994:0crwdne149994:0"
@@ -3375,7 +3400,7 @@ msgstr "crwdns149996:0crwdne149996:0"
msgid "Join Call" msgid "Join Call"
msgstr "crwdns152499:0crwdne152499:0" msgstr "crwdns152499:0crwdne152499:0"
#: frontend/src/components/Modals/Event.vue:74 #: frontend/src/components/Modals/Event.vue:78
msgid "Join Meeting" msgid "Join Meeting"
msgstr "crwdns149998:0crwdne149998:0" msgstr "crwdns149998:0crwdne149998:0"
@@ -3883,7 +3908,7 @@ msgstr "crwdns150122:0crwdne150122:0"
msgid "Login to Frappe Cloud?" msgid "Login to Frappe Cloud?"
msgstr "crwdns152505:0crwdne152505:0" msgstr "crwdns152505:0crwdne152505:0"
#: frontend/src/pages/JobDetail.vue:63 #: frontend/src/pages/JobDetail.vue:74
msgid "Login to apply" msgid "Login to apply"
msgstr "crwdns150124:0crwdne150124:0" msgstr "crwdns150124:0crwdne150124:0"
@@ -4228,9 +4253,14 @@ msgid "Mentor Request Status Update Template"
msgstr "crwdns150186:0crwdne150186:0" msgstr "crwdns150186:0crwdne150186:0"
#: frontend/src/components/ContactUsEmail.vue:19 #: frontend/src/components/ContactUsEmail.vue:19
#: frontend/src/pages/JobApplications.vue:132
msgid "Message" msgid "Message"
msgstr "crwdns160430:0crwdne160430:0" msgstr "crwdns160430:0crwdne160430:0"
#: frontend/src/pages/JobApplications.vue:240
msgid "Message is required"
msgstr "crwdns160732:0crwdne160732:0"
#. Label of the meta_description (Small Text) field in DocType 'LMS Settings' #. Label of the meta_description (Small Text) field in DocType 'LMS Settings'
#: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303 #: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -4351,7 +4381,7 @@ msgstr "crwdns157424:0crwdne157424:0"
msgid "My availability" msgid "My availability"
msgstr "crwdns150210:0crwdne150210:0" msgstr "crwdns150210:0crwdne150210:0"
#: frontend/src/pages/ProfileEvaluator.vue:127 #: frontend/src/pages/ProfileEvaluator.vue:136
msgid "My calendar" msgid "My calendar"
msgstr "crwdns150212:0crwdne150212:0" msgstr "crwdns150212:0crwdne150212:0"
@@ -4390,7 +4420,7 @@ msgstr "crwdns155200:0crwdne155200:0"
msgid "New Job" msgid "New Job"
msgstr "crwdns150222:0crwdne150222:0" msgstr "crwdns150222:0crwdne150222:0"
#: lms/job/doctype/lms_job_application/lms_job_application.py:27 #: lms/job/doctype/lms_job_application/lms_job_application.py:31
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "crwdns150224:0crwdne150224:0" msgstr "crwdns150224:0crwdne150224:0"
@@ -4818,7 +4848,7 @@ msgstr "crwdns150360:0crwdne150360:0"
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:362 #: frontend/src/components/Modals/Event.vue:393
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass" msgid "Pass"
@@ -4945,7 +4975,7 @@ msgstr "crwdns150388:0crwdne150388:0"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' #. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:354 #: frontend/src/components/Modals/Event.vue:385
#: lms/lms/doctype/cohort_join_request/cohort_join_request.json #: lms/lms/doctype/cohort_join_request/cohort_join_request.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
@@ -4964,7 +4994,7 @@ msgstr "crwdns150392:0crwdne150392:0"
msgid "Percentage (e.g. 70%)" msgid "Percentage (e.g. 70%)"
msgstr "crwdns150394:0crwdne150394:0" msgstr "crwdns150394:0crwdne150394:0"
#: frontend/src/components/Modals/BatchStudentProgress.vue:44 #: frontend/src/components/Modals/BatchStudentProgress.vue:46
msgid "Percentage/Status" msgid "Percentage/Status"
msgstr "crwdns152448:0crwdne152448:0" msgstr "crwdns152448:0crwdne152448:0"
@@ -5080,7 +5110,7 @@ msgstr "crwdns158528:0crwdne158528:0"
msgid "Please prepare well and be on time for the evaluations." msgid "Please prepare well and be on time for the evaluations."
msgstr "crwdns150430:0crwdne150430:0" msgstr "crwdns150430:0crwdne150430:0"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:135 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:139
msgid "Please run the code to execute the test cases." msgid "Please run the code to execute the test cases."
msgstr "crwdns155738:0crwdne155738:0" msgstr "crwdns155738:0crwdne155738:0"
@@ -5317,11 +5347,11 @@ msgstr "crwdns155742:0crwdne155742:0"
#: frontend/src/components/Settings/BadgeForm.vue:200 #: frontend/src/components/Settings/BadgeForm.vue:200
#: frontend/src/components/Settings/Badges.vue:205 #: frontend/src/components/Settings/Badges.vue:205
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:420 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:426
msgid "Programming Exercise Submission" msgid "Programming Exercise Submission"
msgstr "crwdns155744:0crwdne155744:0" msgstr "crwdns155744:0crwdne155744:0"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:411 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:417
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298
msgid "Programming Exercise Submissions" msgid "Programming Exercise Submissions"
msgstr "crwdns155746:0crwdne155746:0" msgstr "crwdns155746:0crwdne155746:0"
@@ -5355,7 +5385,7 @@ msgstr "crwdns154532:0crwdne154532:0"
#. Label of the progress (Float) field in DocType 'LMS Enrollment' #. Label of the progress (Float) field in DocType 'LMS Enrollment'
#. Label of the progress (Int) field in DocType 'LMS Program Member' #. Label of the progress (Int) field in DocType 'LMS Program Member'
#: frontend/src/components/Modals/BatchStudentProgress.vue:94 #: frontend/src/components/Modals/BatchStudentProgress.vue:98
#: frontend/src/components/Modals/CourseProgressSummary.vue:224 #: frontend/src/components/Modals/CourseProgressSummary.vue:224
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json #: lms/lms/doctype/lms_enrollment/lms_enrollment.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json #: lms/lms/doctype/lms_program_member/lms_program_member.json
@@ -5401,7 +5431,7 @@ msgstr "crwdns150494:0crwdne150494:0"
#. Label of the published (Check) field in DocType 'LMS Course' #. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program' #. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51 #: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:108 #: frontend/src/components/Modals/Event.vue:122
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152 #: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100 #: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5569,7 +5599,7 @@ msgstr "crwdns155298:0crwdne155298:0"
#. Label of the rating (Data) field in DocType 'LMS Course' #. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review' #. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147 #: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:86 #: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/ReviewModal.vue:18 #: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
@@ -5656,6 +5686,7 @@ msgid "Remove Highlight"
msgstr "crwdns157430:0crwdne157430:0" msgstr "crwdns157430:0crwdne157430:0"
#: frontend/src/components/Modals/AnnouncementModal.vue:27 #: frontend/src/components/Modals/AnnouncementModal.vue:27
#: frontend/src/pages/JobApplications.vue:127
msgid "Reply To" msgid "Reply To"
msgstr "crwdns150570:0crwdne150570:0" msgstr "crwdns150570:0crwdne150570:0"
@@ -5815,8 +5846,8 @@ msgstr "crwdns150610:0crwdne150610:0"
#: frontend/src/components/Controls/CodeEditor.vue:25 #: frontend/src/components/Controls/CodeEditor.vue:25
#: frontend/src/components/Modals/AssignmentForm.vue:59 #: frontend/src/components/Modals/AssignmentForm.vue:59
#: frontend/src/components/Modals/EmailTemplateModal.vue:12 #: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:101 #: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:129 #: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
@@ -5955,6 +5986,7 @@ msgid "Select an assignment"
msgstr "crwdns152134:0crwdne152134:0" msgstr "crwdns152134:0crwdne152134:0"
#: frontend/src/components/ContactUsEmail.vue:33 #: frontend/src/components/ContactUsEmail.vue:33
#: frontend/src/pages/JobApplications.vue:110
msgid "Send" msgid "Send"
msgstr "crwdns160432:0crwdne160432:0" msgstr "crwdns160432:0crwdne160432:0"
@@ -5962,6 +5994,14 @@ msgstr "crwdns160432:0crwdne160432:0"
msgid "Send Confirmation Email" msgid "Send Confirmation Email"
msgstr "crwdns152450:0crwdne152450:0" msgstr "crwdns152450:0crwdne152450:0"
#: frontend/src/pages/JobApplications.vue:268
msgid "Send Email"
msgstr "crwdns160734:0crwdne160734:0"
#: frontend/src/pages/JobApplications.vue:106
msgid "Send Email to {0}"
msgstr "crwdns160736:0{0}crwdne160736:0"
#. Label of the send_calendar_invite_for_evaluations (Check) field in DocType #. Label of the send_calendar_invite_for_evaluations (Check) field in DocType
#. 'LMS Settings' #. 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -6122,11 +6162,11 @@ msgstr "crwdns150696:0crwdne150696:0"
msgid "Slot Times are overlapping for some schedules." msgid "Slot Times are overlapping for some schedules."
msgstr "crwdns150698:0crwdne150698:0" msgstr "crwdns150698:0crwdne150698:0"
#: frontend/src/pages/ProfileEvaluator.vue:201 #: frontend/src/pages/ProfileEvaluator.vue:218
msgid "Slot added successfully" msgid "Slot added successfully"
msgstr "crwdns155108:0crwdne155108:0" msgstr "crwdns155108:0crwdne155108:0"
#: frontend/src/pages/ProfileEvaluator.vue:240 #: frontend/src/pages/ProfileEvaluator.vue:257
msgid "Slot deleted successfully" msgid "Slot deleted successfully"
msgstr "crwdns155110:0crwdne155110:0" msgstr "crwdns155110:0crwdne155110:0"
@@ -6265,7 +6305,7 @@ msgstr "crwdns150732:0crwdne150732:0"
#. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission' #. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission' #. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:91 #: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Settings/Badges.vue:228 #: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19 #: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6336,10 +6376,12 @@ msgstr "crwdns150754:0crwdne150754:0"
#: frontend/src/components/ContactUsEmail.vue:13 #: frontend/src/components/ContactUsEmail.vue:13
#: frontend/src/components/Modals/AnnouncementModal.vue:20 #: frontend/src/components/Modals/AnnouncementModal.vue:20
#: frontend/src/components/Modals/EmailTemplateModal.vue:31 #: frontend/src/components/Modals/EmailTemplateModal.vue:31
#: frontend/src/pages/JobApplications.vue:121
msgid "Subject" msgid "Subject"
msgstr "crwdns150756:0crwdne150756:0" msgstr "crwdns150756:0crwdne150756:0"
#: frontend/src/components/Modals/AnnouncementModal.vue:94 #: frontend/src/components/Modals/AnnouncementModal.vue:94
#: frontend/src/pages/JobApplications.vue:237
msgid "Subject is required" msgid "Subject is required"
msgstr "crwdns155112:0crwdne155112:0" msgstr "crwdns155112:0crwdne155112:0"
@@ -6356,7 +6398,7 @@ msgstr "crwdns154620:0crwdne154620:0"
msgid "Submission by" msgid "Submission by"
msgstr "crwdns152136:0crwdne152136:0" msgstr "crwdns152136:0crwdne152136:0"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:353 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:359
msgid "Submission saved!" msgid "Submission saved!"
msgstr "crwdns155760:0crwdne155760:0" msgstr "crwdns155760:0crwdne155760:0"
@@ -6396,7 +6438,7 @@ msgstr "crwdns158542:0crwdne158542:0"
#. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:97 #: frontend/src/components/Modals/Event.vue:106
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary" msgid "Summary"
msgstr "crwdns150770:0crwdne150770:0" msgstr "crwdns150770:0crwdne150770:0"
@@ -6501,7 +6543,7 @@ msgstr "crwdns150780:0crwdne150780:0"
#. Label of the template (Link) field in DocType 'Cohort Web Page' #. Label of the template (Link) field in DocType 'Cohort Web Page'
#. Label of the template (Link) field in DocType 'LMS Certificate' #. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43 #: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:112 #: frontend/src/components/Modals/Event.vue:127
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template" msgid "Template"
@@ -6542,7 +6584,7 @@ msgstr "crwdns150788:0crwdne150788:0"
msgid "Test this Exercise" msgid "Test this Exercise"
msgstr "crwdns155766:0crwdne155766:0" msgstr "crwdns155766:0crwdne155766:0"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:92 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:93
msgid "Test {0}" msgid "Test {0}"
msgstr "crwdns155768:0{0}crwdne155768:0" msgstr "crwdns155768:0{0}crwdne155768:0"
@@ -6840,7 +6882,7 @@ msgid "Title is required"
msgstr "crwdns151656:0crwdne151656:0" msgstr "crwdns151656:0crwdne151656:0"
#. Label of the unavailable_to (Date) field in DocType 'Course Evaluator' #. Label of the unavailable_to (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:112 #: frontend/src/pages/ProfileEvaluator.vue:120
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "To" msgid "To"
msgstr "crwdns150852:0crwdne150852:0" msgstr "crwdns150852:0crwdne150852:0"
@@ -6953,7 +6995,7 @@ msgstr "crwdns155270:0crwdne155270:0"
msgid "Unavailability" msgid "Unavailability"
msgstr "crwdns150886:0crwdne150886:0" msgstr "crwdns150886:0crwdne150886:0"
#: frontend/src/pages/ProfileEvaluator.vue:259 #: frontend/src/pages/ProfileEvaluator.vue:276
msgid "Unavailability updated successfully" msgid "Unavailability updated successfully"
msgstr "crwdns155116:0crwdne155116:0" msgstr "crwdns155116:0crwdne155116:0"
@@ -7123,11 +7165,19 @@ msgstr "crwdns155844:0{0}crwdne155844:0"
msgid "View" msgid "View"
msgstr "crwdns150938:0crwdne150938:0" msgstr "crwdns150938:0crwdne150938:0"
#: frontend/src/pages/JobDetail.vue:31
msgid "View Applications"
msgstr "crwdns160738:0crwdne160738:0"
#: frontend/src/components/CertificationLinks.vue:10 #: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67 #: frontend/src/components/Modals/Event.vue:67
msgid "View Certificate" msgid "View Certificate"
msgstr "crwdns150940:0crwdne150940:0" msgstr "crwdns150940:0crwdne150940:0"
#: frontend/src/pages/JobApplications.vue:262
msgid "View Resume"
msgstr "crwdns160740:0crwdne160740:0"
#: frontend/src/components/BatchFeedback.vue:56 #: frontend/src/components/BatchFeedback.vue:56
msgid "View all feedback" msgid "View all feedback"
msgstr "crwdns155210:0crwdne155210:0" msgstr "crwdns155210:0crwdne155210:0"
@@ -7146,7 +7196,7 @@ msgstr "crwdns150942:0crwdne150942:0"
msgid "Visit Batch" msgid "Visit Batch"
msgstr "crwdns150944:0crwdne150944:0" msgstr "crwdns150944:0crwdne150944:0"
#: frontend/src/pages/JobDetail.vue:41 #: frontend/src/pages/JobDetail.vue:52
msgid "Visit Website" msgid "Visit Website"
msgstr "crwdns154540:0crwdne154540:0" msgstr "crwdns154540:0crwdne154540:0"
@@ -7355,7 +7405,7 @@ msgstr "crwdns151006:0{0}crwdnd151006:0{1}crwdnd151006:0{2}crwdne151006:0"
msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session." msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session."
msgstr "crwdns152525:0crwdne152525:0" msgstr "crwdns152525:0crwdne152525:0"
#: lms/job/doctype/lms_job_application/lms_job_application.py:22 #: lms/job/doctype/lms_job_application/lms_job_application.py:26
msgid "You have already applied for this job." msgid "You have already applied for this job."
msgstr "crwdns151008:0crwdne151008:0" msgstr "crwdns151008:0crwdne151008:0"
@@ -7371,7 +7421,7 @@ msgstr "crwdns152623:0crwdne152623:0"
msgid "You have already reviewed this course" msgid "You have already reviewed this course"
msgstr "crwdns151012:0crwdne151012:0" msgstr "crwdns151012:0crwdne151012:0"
#: frontend/src/pages/JobDetail.vue:57 #: frontend/src/pages/JobDetail.vue:68
msgid "You have applied" msgid "You have applied"
msgstr "crwdns154718:0crwdne154718:0" msgstr "crwdns154718:0crwdne154718:0"
@@ -7451,7 +7501,7 @@ msgstr "crwdns151032:0crwdne151032:0"
msgid "Your Account has been successfully created!" msgid "Your Account has been successfully created!"
msgstr "crwdns151034:0crwdne151034:0" msgstr "crwdns151034:0crwdne151034:0"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:119 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:121
msgid "Your Output" msgid "Your Output"
msgstr "crwdns155772:0crwdne155772:0" msgstr "crwdns155772:0crwdne155772:0"
@@ -7459,7 +7509,7 @@ msgstr "crwdns155772:0crwdne155772:0"
msgid "Your batch {0} is starting tomorrow" msgid "Your batch {0} is starting tomorrow"
msgstr "crwdns154222:0{0}crwdne154222:0" msgstr "crwdns154222:0{0}crwdne154222:0"
#: frontend/src/pages/ProfileEvaluator.vue:134 #: frontend/src/pages/ProfileEvaluator.vue:143
msgid "Your calendar is set." msgid "Your calendar is set."
msgstr "crwdns151036:0crwdne151036:0" msgstr "crwdns151036:0crwdne151036:0"
@@ -7538,11 +7588,11 @@ msgstr "crwdns157186:0crwdne157186:0"
msgid "and then 'Add to Home Screen'" msgid "and then 'Add to Home Screen'"
msgstr "crwdns158326:0crwdne158326:0" msgstr "crwdns158326:0crwdne158326:0"
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114 #: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicant" msgid "applicant"
msgstr "crwdns154722:0crwdne154722:0" msgstr "crwdns154722:0crwdne154722:0"
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114 #: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicants" msgid "applicants"
msgstr "crwdns154724:0crwdne154724:0" msgstr "crwdns154724:0crwdne154724:0"

File diff suppressed because it is too large Load Diff

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2025-10-31 16:04+0000\n" "POT-Creation-Date: 2025-11-07 16:04+0000\n"
"PO-Revision-Date: 2025-11-02 19:07\n" "PO-Revision-Date: 2025-11-12 11:45\n"
"Last-Translator: jannat@frappe.io\n" "Last-Translator: jannat@frappe.io\n"
"Language-Team: Persian\n" "Language-Team: Persian\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -32,7 +32,7 @@ msgstr ""
#: frontend/src/pages/Home/Streak.vue:21 #: frontend/src/pages/Home/Streak.vue:21
msgid " you are on a" msgid " you are on a"
msgstr "" msgstr " شما در حال حاضر در یک"
#. Paragraph text in the LMS Workspace #. Paragraph text in the LMS Workspace
#: lms/lms/workspace/lms/lms.json #: lms/lms/workspace/lms/lms.json
@@ -176,7 +176,7 @@ msgstr ""
msgid "Add Row" msgid "Add Row"
msgstr "افزودن ردیف" msgstr "افزودن ردیف"
#: frontend/src/pages/ProfileEvaluator.vue:89 #: frontend/src/pages/ProfileEvaluator.vue:96
msgid "Add Slot" msgid "Add Slot"
msgstr "" msgstr ""
@@ -426,12 +426,25 @@ msgstr ""
msgid "Appears when the batch URL is shared on socials" msgid "Appears when the batch URL is shared on socials"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:24
msgid "Application"
msgstr "درخواست"
#. Label of a field in the job-opportunity Web Form #. Label of a field in the job-opportunity Web Form
#: lms/job/web_form/job_opportunity/job_opportunity.json #: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Application Form Link" msgid "Application Form Link"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:51 #: frontend/src/pages/JobApplications.vue:14
#: frontend/src/pages/JobApplications.vue:25
msgid "Applications"
msgstr "درخواست‌ها"
#: frontend/src/pages/JobApplications.vue:290
msgid "Applied On"
msgstr "اعمال شد"
#: frontend/src/pages/JobDetail.vue:62
msgid "Apply" msgid "Apply"
msgstr "درخواست دادن" msgstr "درخواست دادن"
@@ -483,7 +496,7 @@ msgstr ""
#. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch' #. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the assessment (Table) field in DocType 'LMS Batch' #. Label of the assessment (Table) field in DocType 'LMS Batch'
#: frontend/src/components/Modals/AssessmentModal.vue:27 #: frontend/src/components/Modals/AssessmentModal.vue:27
#: frontend/src/components/Modals/BatchStudentProgress.vue:41 #: frontend/src/components/Modals/BatchStudentProgress.vue:43
#: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11 #: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11
msgid "Assessment" msgid "Assessment"
msgstr "ارزیابی" msgstr "ارزیابی"
@@ -546,7 +559,7 @@ msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/templates/assignment.html:3 #: lms/templates/assignment.html:3
msgid "Assignment" msgid "Assignment"
msgstr "تخصیص" msgstr ""
#. Label of the assignment_attachment (Attach) field in DocType 'LMS Assignment #. Label of the assignment_attachment (Attach) field in DocType 'LMS Assignment
#. Submission' #. Submission'
@@ -569,7 +582,7 @@ msgstr ""
msgid "Assignment Title" msgid "Assignment Title"
msgstr "عنوان تکلیف" msgstr "عنوان تکلیف"
#: frontend/src/components/Modals/AssignmentForm.vue:125 #: frontend/src/components/Modals/AssignmentForm.vue:133
msgid "Assignment created successfully" msgid "Assignment created successfully"
msgstr "" msgstr ""
@@ -581,7 +594,7 @@ msgstr "تکلیف برای درس {0} توسط {1} از قبل وجود دار
msgid "Assignment submitted successfully" msgid "Assignment submitted successfully"
msgstr "" msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:138 #: frontend/src/components/Modals/AssignmentForm.vue:146
msgid "Assignment updated successfully" msgid "Assignment updated successfully"
msgstr "" msgstr ""
@@ -622,7 +635,7 @@ msgstr "شرکت کنندگان"
msgid "Attire Preference" msgid "Attire Preference"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:137 #: frontend/src/pages/ProfileEvaluator.vue:146
msgid "Authorize Google Calendar Access" msgid "Authorize Google Calendar Access"
msgstr "مجوز دسترسی به تقویم Google" msgstr "مجوز دسترسی به تقویم Google"
@@ -637,7 +650,7 @@ msgstr ""
msgid "Auto Recording" msgid "Auto Recording"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:224 #: frontend/src/pages/ProfileEvaluator.vue:241
msgid "Availability updated successfully" msgid "Availability updated successfully"
msgstr "" msgstr ""
@@ -768,6 +781,7 @@ msgstr ""
#. Name of a role #. Name of a role
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -998,7 +1012,7 @@ msgstr "لینک گواهی"
msgid "Certificate of Completion" msgid "Certificate of Completion"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:317 #: frontend/src/components/Modals/Event.vue:348
msgid "Certificate saved successfully" msgid "Certificate saved successfully"
msgstr "" msgstr ""
@@ -1018,7 +1032,7 @@ msgstr ""
#. Label of a Card Break in the LMS Workspace #. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:626 #: frontend/src/components/AppSidebar.vue:626
#: frontend/src/components/Modals/Event.vue:381 #: frontend/src/components/Modals/Event.vue:412
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10 #: frontend/src/pages/CourseCertification.vue:10
#: frontend/src/pages/CourseCertification.vue:135 #: frontend/src/pages/CourseCertification.vue:135
@@ -1214,7 +1228,7 @@ msgstr "بستن"
#: lms/job/web_form/job_opportunity/job_opportunity.json #: lms/job/web_form/job_opportunity/job_opportunity.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
msgid "Closed" msgid "Closed"
msgstr "بسته شده" msgstr ""
#. Option for the 'Auto Recording' (Select) field in DocType 'LMS Live Class' #. Option for the 'Auto Recording' (Select) field in DocType 'LMS Live Class'
#: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -1640,6 +1654,7 @@ msgstr ""
#: lms/lms/doctype/course_chapter/course_chapter.json #: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json #: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
@@ -1757,7 +1772,7 @@ msgstr "دوره {0} قبلاً به این دسته اضافه شده است."
#: frontend/src/components/BatchCourses.vue:5 #: frontend/src/components/BatchCourses.vue:5
#: frontend/src/components/BatchOverlay.vue:37 #: frontend/src/components/BatchOverlay.vue:37
#: frontend/src/components/BatchStudents.vue:25 #: frontend/src/components/BatchStudents.vue:25
#: frontend/src/components/Modals/BatchStudentProgress.vue:91 #: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127 #: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340 #: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340
@@ -2143,7 +2158,7 @@ msgstr "گزینه‌های تکراری برای این سوال پیدا شد.
#: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/lms_live_class/lms_live_class.json
#: lms/lms/doctype/lms_live_class_participant/lms_live_class_participant.json #: lms/lms/doctype/lms_live_class_participant/lms_live_class_participant.json
msgid "Duration" msgid "Duration"
msgstr "مدت زمان" msgstr ""
#. Label of the duration (Data) field in DocType 'LMS Quiz' #. Label of the duration (Data) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:67 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:67 lms/lms/doctype/lms_quiz/lms_quiz.json
@@ -2169,7 +2184,7 @@ msgstr "ایمیل"
#: frontend/src/components/DiscussionReplies.vue:35 #: frontend/src/components/DiscussionReplies.vue:35
#: frontend/src/components/Modals/ChapterModal.vue:9 #: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/components/Settings/Badges.vue:156 #: frontend/src/components/Settings/Badges.vue:156
#: frontend/src/pages/JobDetail.vue:34 frontend/src/pages/Lesson.vue:42 #: frontend/src/pages/JobDetail.vue:45 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36 #: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36
msgid "Edit" msgid "Edit"
msgstr "ویرایش" msgstr "ویرایش"
@@ -2236,7 +2251,7 @@ msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:105 #: frontend/src/components/Settings/Evaluators.vue:105
#: frontend/src/components/Settings/Members.vue:103 #: frontend/src/components/Settings/Members.vue:103
#: lms/templates/signup-form.html:10 #: frontend/src/pages/JobApplications.vue:284 lms/templates/signup-form.html:10
msgid "Email" msgid "Email"
msgstr "ایمیل" msgstr "ایمیل"
@@ -2272,6 +2287,7 @@ msgid "Email Templates deleted successfully"
msgstr "" msgstr ""
#: frontend/src/components/ContactUsEmail.vue:57 #: frontend/src/components/ContactUsEmail.vue:57
#: frontend/src/pages/JobApplications.vue:244
msgid "Email sent successfully" msgid "Email sent successfully"
msgstr "ایمیل با موفقیت ارسال شد" msgstr "ایمیل با موفقیت ارسال شد"
@@ -2414,6 +2430,14 @@ msgstr ""
msgid "Enter a URL" msgid "Enter a URL"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:122
msgid "Enter email subject"
msgstr "موضوع ایمیل را وارد کنید"
#: frontend/src/pages/JobApplications.vue:128
msgid "Enter reply to email"
msgstr "پاسخ به ایمیل را وارد کنید"
#: frontend/src/components/Modals/ZoomAccountModal.vue:169 #: frontend/src/components/Modals/ZoomAccountModal.vue:169
msgid "Error creating Zoom Account" msgid "Error creating Zoom Account"
msgstr "" msgstr ""
@@ -2453,7 +2477,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace #. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:374 lms/lms/workspace/lms/lms.json #: frontend/src/components/Modals/Event.vue:405 lms/lms/workspace/lms/lms.json
msgid "Evaluation" msgid "Evaluation"
msgstr "ارزیابی" msgstr "ارزیابی"
@@ -2478,7 +2502,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date." msgid "Evaluation end date cannot be less than the batch end date."
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:256 #: frontend/src/components/Modals/Event.vue:287
msgid "Evaluation saved successfully" msgid "Evaluation saved successfully"
msgstr "" msgstr ""
@@ -2586,7 +2610,7 @@ msgstr "بسط دادن"
#. Label of the expected_output (Data) field in DocType 'LMS Test Case' #. Label of the expected_output (Data) field in DocType 'LMS Test Case'
#. Label of the expected_output (Data) field in DocType 'LMS Test Case #. Label of the expected_output (Data) field in DocType 'LMS Test Case
#. Submission' #. Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:127 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:129
#: lms/lms/doctype/lms_test_case/lms_test_case.json #: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Expected Output" msgid "Expected Output"
@@ -2599,7 +2623,7 @@ msgstr ""
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33 #: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:126 #: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date" msgid "Expiry Date"
msgstr "تاریخ انقضا" msgstr "تاریخ انقضا"
@@ -2626,7 +2650,7 @@ msgstr ""
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:366 #: frontend/src/components/Modals/Event.vue:397
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail" msgid "Fail"
@@ -2639,7 +2663,7 @@ msgstr ""
#: lms/lms/doctype/lms_programming_exercise_submission/lms_programming_exercise_submission.json #: lms/lms/doctype/lms_programming_exercise_submission/lms_programming_exercise_submission.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Failed" msgid "Failed"
msgstr "ناموفق" msgstr ""
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:136 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:136
msgid "Failed to create badge assignment: " msgid "Failed to create badge assignment: "
@@ -2657,7 +2681,7 @@ msgstr ""
msgid "Failed to send email" msgid "Failed to send email"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:358 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:364
msgid "Failed to submit. Please try again. {0}" msgid "Failed to submit. Please try again. {0}"
msgstr "" msgstr ""
@@ -2770,7 +2794,7 @@ msgid "Friday"
msgstr "جمعه" msgstr "جمعه"
#. Label of the unavailable_from (Date) field in DocType 'Course Evaluator' #. Label of the unavailable_from (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:99 #: frontend/src/pages/ProfileEvaluator.vue:106
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "From" msgid "From"
msgstr "از" msgstr "از"
@@ -2782,6 +2806,7 @@ msgstr "از تاریخ"
#. Label of the full_name (Data) field in DocType 'Course Evaluator' #. Label of the full_name (Data) field in DocType 'Course Evaluator'
#. Label of the full_name (Data) field in DocType 'LMS Program Member' #. Label of the full_name (Data) field in DocType 'LMS Program Member'
#: frontend/src/pages/JobApplications.vue:278
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json #: lms/lms/doctype/lms_program_member/lms_program_member.json
#: lms/templates/signup-form.html:5 #: lms/templates/signup-form.html:5
@@ -3019,7 +3044,7 @@ msgstr "خوشحالم که به شما اطلاع دهم که با موفقیت
msgid "I am looking for a job" msgid "I am looking for a job"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:94 #: frontend/src/pages/ProfileEvaluator.vue:101
msgid "I am unavailable" msgid "I am unavailable"
msgstr "من در دسترس نیستم" msgstr "من در دسترس نیستم"
@@ -3105,7 +3130,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course' #. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:358 #: frontend/src/components/Modals/Event.vue:389
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
@@ -3161,7 +3186,7 @@ msgstr "صنعت"
#. Label of the input (Data) field in DocType 'LMS Test Case' #. Label of the input (Data) field in DocType 'LMS Test Case'
#. Label of the input (Data) field in DocType 'LMS Test Case Submission' #. Label of the input (Data) field in DocType 'LMS Test Case Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:113 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:115
#: lms/lms/doctype/lms_test_case/lms_test_case.json #: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Input" msgid "Input"
@@ -3273,7 +3298,7 @@ msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification' #. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate' #. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28 #: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:121 #: frontend/src/components/Modals/Event.vue:138
#: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date" msgid "Issue Date"
@@ -3358,8 +3383,8 @@ msgid "Job Title"
msgstr "عنوان شغلی" msgstr "عنوان شغلی"
#. Label of the jobs (Check) field in DocType 'LMS Settings' #. Label of the jobs (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/JobDetail.vue:10 frontend/src/pages/Jobs.vue:8 #: frontend/src/pages/JobApplications.vue:9 frontend/src/pages/JobDetail.vue:10
#: frontend/src/pages/Jobs.vue:212 #: frontend/src/pages/Jobs.vue:8 frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs" msgid "Jobs"
msgstr "شغل ها" msgstr "شغل ها"
@@ -3375,7 +3400,7 @@ msgstr "پیوستن"
msgid "Join Call" msgid "Join Call"
msgstr "پیوستن به تماس" msgstr "پیوستن به تماس"
#: frontend/src/components/Modals/Event.vue:74 #: frontend/src/components/Modals/Event.vue:78
msgid "Join Meeting" msgid "Join Meeting"
msgstr "" msgstr ""
@@ -3883,7 +3908,7 @@ msgstr "وارد شدن"
msgid "Login to Frappe Cloud?" msgid "Login to Frappe Cloud?"
msgstr "ورود به Frappe Cloud?" msgstr "ورود به Frappe Cloud?"
#: frontend/src/pages/JobDetail.vue:63 #: frontend/src/pages/JobDetail.vue:74
msgid "Login to apply" msgid "Login to apply"
msgstr "" msgstr ""
@@ -4228,9 +4253,14 @@ msgid "Mentor Request Status Update Template"
msgstr "" msgstr ""
#: frontend/src/components/ContactUsEmail.vue:19 #: frontend/src/components/ContactUsEmail.vue:19
#: frontend/src/pages/JobApplications.vue:132
msgid "Message" msgid "Message"
msgstr "پیام" msgstr "پیام"
#: frontend/src/pages/JobApplications.vue:240
msgid "Message is required"
msgstr "پیام الزامی است"
#. Label of the meta_description (Small Text) field in DocType 'LMS Settings' #. Label of the meta_description (Small Text) field in DocType 'LMS Settings'
#: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303 #: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -4351,7 +4381,7 @@ msgstr "یادداشت‌های من"
msgid "My availability" msgid "My availability"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:127 #: frontend/src/pages/ProfileEvaluator.vue:136
msgid "My calendar" msgid "My calendar"
msgstr "تقویم من" msgstr "تقویم من"
@@ -4390,7 +4420,7 @@ msgstr ""
msgid "New Job" msgid "New Job"
msgstr "شغل جدید" msgstr "شغل جدید"
#: lms/job/doctype/lms_job_application/lms_job_application.py:27 #: lms/job/doctype/lms_job_application/lms_job_application.py:31
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "" msgstr ""
@@ -4818,7 +4848,7 @@ msgstr ""
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:362 #: frontend/src/components/Modals/Event.vue:393
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass" msgid "Pass"
@@ -4945,7 +4975,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' #. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:354 #: frontend/src/components/Modals/Event.vue:385
#: lms/lms/doctype/cohort_join_request/cohort_join_request.json #: lms/lms/doctype/cohort_join_request/cohort_join_request.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
@@ -4964,7 +4994,7 @@ msgstr "درصد"
msgid "Percentage (e.g. 70%)" msgid "Percentage (e.g. 70%)"
msgstr "درصد (به عنوان مثال 70%)" msgstr "درصد (به عنوان مثال 70%)"
#: frontend/src/components/Modals/BatchStudentProgress.vue:44 #: frontend/src/components/Modals/BatchStudentProgress.vue:46
msgid "Percentage/Status" msgid "Percentage/Status"
msgstr "درصد/وضعیت" msgstr "درصد/وضعیت"
@@ -5080,7 +5110,7 @@ msgstr ""
msgid "Please prepare well and be on time for the evaluations." msgid "Please prepare well and be on time for the evaluations."
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:135 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:139
msgid "Please run the code to execute the test cases." msgid "Please run the code to execute the test cases."
msgstr "" msgstr ""
@@ -5317,11 +5347,11 @@ msgstr "تمرین برنامه‌نویسی"
#: frontend/src/components/Settings/BadgeForm.vue:200 #: frontend/src/components/Settings/BadgeForm.vue:200
#: frontend/src/components/Settings/Badges.vue:205 #: frontend/src/components/Settings/Badges.vue:205
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:420 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:426
msgid "Programming Exercise Submission" msgid "Programming Exercise Submission"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:411 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:417
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298
msgid "Programming Exercise Submissions" msgid "Programming Exercise Submissions"
msgstr "" msgstr ""
@@ -5355,7 +5385,7 @@ msgstr ""
#. Label of the progress (Float) field in DocType 'LMS Enrollment' #. Label of the progress (Float) field in DocType 'LMS Enrollment'
#. Label of the progress (Int) field in DocType 'LMS Program Member' #. Label of the progress (Int) field in DocType 'LMS Program Member'
#: frontend/src/components/Modals/BatchStudentProgress.vue:94 #: frontend/src/components/Modals/BatchStudentProgress.vue:98
#: frontend/src/components/Modals/CourseProgressSummary.vue:224 #: frontend/src/components/Modals/CourseProgressSummary.vue:224
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json #: lms/lms/doctype/lms_enrollment/lms_enrollment.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json #: lms/lms/doctype/lms_program_member/lms_program_member.json
@@ -5401,7 +5431,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Course' #. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program' #. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51 #: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:108 #: frontend/src/components/Modals/Event.vue:122
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152 #: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100 #: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5569,7 +5599,7 @@ msgstr ""
#. Label of the rating (Data) field in DocType 'LMS Course' #. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review' #. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147 #: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:86 #: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/ReviewModal.vue:18 #: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
@@ -5656,6 +5686,7 @@ msgid "Remove Highlight"
msgstr "حذف هایلایت" msgstr "حذف هایلایت"
#: frontend/src/components/Modals/AnnouncementModal.vue:27 #: frontend/src/components/Modals/AnnouncementModal.vue:27
#: frontend/src/pages/JobApplications.vue:127
msgid "Reply To" msgid "Reply To"
msgstr "" msgstr ""
@@ -5815,8 +5846,8 @@ msgstr "شنبه"
#: frontend/src/components/Controls/CodeEditor.vue:25 #: frontend/src/components/Controls/CodeEditor.vue:25
#: frontend/src/components/Modals/AssignmentForm.vue:59 #: frontend/src/components/Modals/AssignmentForm.vue:59
#: frontend/src/components/Modals/EmailTemplateModal.vue:12 #: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:101 #: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:129 #: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
@@ -5955,6 +5986,7 @@ msgid "Select an assignment"
msgstr "" msgstr ""
#: frontend/src/components/ContactUsEmail.vue:33 #: frontend/src/components/ContactUsEmail.vue:33
#: frontend/src/pages/JobApplications.vue:110
msgid "Send" msgid "Send"
msgstr "ارسال" msgstr "ارسال"
@@ -5962,6 +5994,14 @@ msgstr "ارسال"
msgid "Send Confirmation Email" msgid "Send Confirmation Email"
msgstr "ارسال ایمیل تأیید" msgstr "ارسال ایمیل تأیید"
#: frontend/src/pages/JobApplications.vue:268
msgid "Send Email"
msgstr "ایمیل بفرست"
#: frontend/src/pages/JobApplications.vue:106
msgid "Send Email to {0}"
msgstr "ارسال ایمیل به {0}"
#. Label of the send_calendar_invite_for_evaluations (Check) field in DocType #. Label of the send_calendar_invite_for_evaluations (Check) field in DocType
#. 'LMS Settings' #. 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -6122,11 +6162,11 @@ msgstr "پرش کنید"
msgid "Slot Times are overlapping for some schedules." msgid "Slot Times are overlapping for some schedules."
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:201 #: frontend/src/pages/ProfileEvaluator.vue:218
msgid "Slot added successfully" msgid "Slot added successfully"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:240 #: frontend/src/pages/ProfileEvaluator.vue:257
msgid "Slot deleted successfully" msgid "Slot deleted successfully"
msgstr "" msgstr ""
@@ -6265,7 +6305,7 @@ msgstr "آمار"
#. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission' #. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission' #. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:91 #: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Settings/Badges.vue:228 #: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19 #: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6336,10 +6376,12 @@ msgstr "زیر گروه"
#: frontend/src/components/ContactUsEmail.vue:13 #: frontend/src/components/ContactUsEmail.vue:13
#: frontend/src/components/Modals/AnnouncementModal.vue:20 #: frontend/src/components/Modals/AnnouncementModal.vue:20
#: frontend/src/components/Modals/EmailTemplateModal.vue:31 #: frontend/src/components/Modals/EmailTemplateModal.vue:31
#: frontend/src/pages/JobApplications.vue:121
msgid "Subject" msgid "Subject"
msgstr "موضوع" msgstr "موضوع"
#: frontend/src/components/Modals/AnnouncementModal.vue:94 #: frontend/src/components/Modals/AnnouncementModal.vue:94
#: frontend/src/pages/JobApplications.vue:237
msgid "Subject is required" msgid "Subject is required"
msgstr "موضوع الزامی است" msgstr "موضوع الزامی است"
@@ -6356,7 +6398,7 @@ msgstr ""
msgid "Submission by" msgid "Submission by"
msgstr "ارسال توسط" msgstr "ارسال توسط"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:353 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:359
msgid "Submission saved!" msgid "Submission saved!"
msgstr "" msgstr ""
@@ -6396,7 +6438,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:97 #: frontend/src/components/Modals/Event.vue:106
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary" msgid "Summary"
msgstr "خلاصه" msgstr "خلاصه"
@@ -6501,7 +6543,7 @@ msgstr ""
#. Label of the template (Link) field in DocType 'Cohort Web Page' #. Label of the template (Link) field in DocType 'Cohort Web Page'
#. Label of the template (Link) field in DocType 'LMS Certificate' #. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43 #: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:112 #: frontend/src/components/Modals/Event.vue:127
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template" msgid "Template"
@@ -6542,7 +6584,7 @@ msgstr ""
msgid "Test this Exercise" msgid "Test this Exercise"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:92 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:93
msgid "Test {0}" msgid "Test {0}"
msgstr "" msgstr ""
@@ -6840,7 +6882,7 @@ msgid "Title is required"
msgstr "عنوان الزامی است" msgstr "عنوان الزامی است"
#. Label of the unavailable_to (Date) field in DocType 'Course Evaluator' #. Label of the unavailable_to (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:112 #: frontend/src/pages/ProfileEvaluator.vue:120
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "To" msgid "To"
msgstr "به" msgstr "به"
@@ -6953,7 +6995,7 @@ msgstr "UUID"
msgid "Unavailability" msgid "Unavailability"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:259 #: frontend/src/pages/ProfileEvaluator.vue:276
msgid "Unavailability updated successfully" msgid "Unavailability updated successfully"
msgstr "" msgstr ""
@@ -7108,7 +7150,7 @@ msgstr "مقدار"
#. Option for the 'Event' (Select) field in DocType 'LMS Badge' #. Option for the 'Event' (Select) field in DocType 'LMS Badge'
#: lms/lms/doctype/lms_badge/lms_badge.json #: lms/lms/doctype/lms_badge/lms_badge.json
msgid "Value Change" msgid "Value Change"
msgstr "تغییر ارزش" msgstr ""
#. Label of the video_link (Data) field in DocType 'LMS Course' #. Label of the video_link (Data) field in DocType 'LMS Course'
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
@@ -7123,11 +7165,19 @@ msgstr ""
msgid "View" msgid "View"
msgstr "نما" msgstr "نما"
#: frontend/src/pages/JobDetail.vue:31
msgid "View Applications"
msgstr "مشاهده درخواست‌ها"
#: frontend/src/components/CertificationLinks.vue:10 #: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67 #: frontend/src/components/Modals/Event.vue:67
msgid "View Certificate" msgid "View Certificate"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:262
msgid "View Resume"
msgstr "مشاهده رزومه"
#: frontend/src/components/BatchFeedback.vue:56 #: frontend/src/components/BatchFeedback.vue:56
msgid "View all feedback" msgid "View all feedback"
msgstr "" msgstr ""
@@ -7146,7 +7196,7 @@ msgstr "دید"
msgid "Visit Batch" msgid "Visit Batch"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:41 #: frontend/src/pages/JobDetail.vue:52
msgid "Visit Website" msgid "Visit Website"
msgstr "" msgstr ""
@@ -7355,7 +7405,7 @@ msgstr ""
msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session." msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session."
msgstr "" msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:22 #: lms/job/doctype/lms_job_application/lms_job_application.py:26
msgid "You have already applied for this job." msgid "You have already applied for this job."
msgstr "" msgstr ""
@@ -7371,7 +7421,7 @@ msgstr ""
msgid "You have already reviewed this course" msgid "You have already reviewed this course"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:57 #: frontend/src/pages/JobDetail.vue:68
msgid "You have applied" msgid "You have applied"
msgstr "شما درخواست داده‌اید" msgstr "شما درخواست داده‌اید"
@@ -7451,7 +7501,7 @@ msgstr ""
msgid "Your Account has been successfully created!" msgid "Your Account has been successfully created!"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:119 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:121
msgid "Your Output" msgid "Your Output"
msgstr "" msgstr ""
@@ -7459,7 +7509,7 @@ msgstr ""
msgid "Your batch {0} is starting tomorrow" msgid "Your batch {0} is starting tomorrow"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:134 #: frontend/src/pages/ProfileEvaluator.vue:143
msgid "Your calendar is set." msgid "Your calendar is set."
msgstr "" msgstr ""
@@ -7538,11 +7588,11 @@ msgstr "و"
msgid "and then 'Add to Home Screen'" msgid "and then 'Add to Home Screen'"
msgstr "" msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114 #: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicant" msgid "applicant"
msgstr "متقاضی" msgstr "متقاضی"
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114 #: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicants" msgid "applicants"
msgstr "متقاضیان" msgstr "متقاضیان"
@@ -7603,7 +7653,7 @@ msgstr "ارزیابی"
#: frontend/src/pages/Home/Home.vue:101 frontend/src/pages/Home/Home.vue:124 #: frontend/src/pages/Home/Home.vue:101 frontend/src/pages/Home/Home.vue:124
msgid "evaluations" msgid "evaluations"
msgstr "" msgstr "ارزیابی‌ها"
#: lms/templates/emails/mentor_request_status_update_email.html:4 #: lms/templates/emails/mentor_request_status_update_email.html:4
msgid "has been" msgid "has been"
@@ -7623,11 +7673,11 @@ msgstr "درس ها"
#: frontend/src/pages/Home/Home.vue:99 frontend/src/pages/Home/Home.vue:123 #: frontend/src/pages/Home/Home.vue:99 frontend/src/pages/Home/Home.vue:123
msgid "live class" msgid "live class"
msgstr "" msgstr "کلاس زنده"
#: frontend/src/pages/Home/Home.vue:99 frontend/src/pages/Home/Home.vue:123 #: frontend/src/pages/Home/Home.vue:99 frontend/src/pages/Home/Home.vue:123
msgid "live classes" msgid "live classes"
msgstr "" msgstr "کلاس‌های زنده"
#: frontend/src/pages/Programs/Programs.vue:42 #: frontend/src/pages/Programs/Programs.vue:42
#: frontend/src/pages/Programs/StudentPrograms.vue:36 #: frontend/src/pages/Programs/StudentPrograms.vue:36

File diff suppressed because it is too large Load Diff

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2025-10-31 16:04+0000\n" "POT-Creation-Date: 2025-11-07 16:04+0000\n"
"PO-Revision-Date: 2025-11-02 19:07\n" "PO-Revision-Date: 2025-11-12 11:45\n"
"Last-Translator: jannat@frappe.io\n" "Last-Translator: jannat@frappe.io\n"
"Language-Team: Croatian\n" "Language-Team: Croatian\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -176,7 +176,7 @@ msgstr "Dodaj kviz u video"
msgid "Add Row" msgid "Add Row"
msgstr "Dodaj Red" msgstr "Dodaj Red"
#: frontend/src/pages/ProfileEvaluator.vue:89 #: frontend/src/pages/ProfileEvaluator.vue:96
msgid "Add Slot" msgid "Add Slot"
msgstr "Dodaj Vrijeme" msgstr "Dodaj Vrijeme"
@@ -426,12 +426,25 @@ msgstr "Pojavljuje se kada se grupni URL dijeli na bilo kojoj online platformi"
msgid "Appears when the batch URL is shared on socials" msgid "Appears when the batch URL is shared on socials"
msgstr "Pojavljuje se kada se URL grupe podijeli na društvenim mrežama" msgstr "Pojavljuje se kada se URL grupe podijeli na društvenim mrežama"
#: frontend/src/pages/JobApplications.vue:24
msgid "Application"
msgstr "Prijava"
#. Label of a field in the job-opportunity Web Form #. Label of a field in the job-opportunity Web Form
#: lms/job/web_form/job_opportunity/job_opportunity.json #: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Application Form Link" msgid "Application Form Link"
msgstr "Veza na Obrazac Prijave" msgstr "Veza na Obrazac Prijave"
#: frontend/src/pages/JobDetail.vue:51 #: frontend/src/pages/JobApplications.vue:14
#: frontend/src/pages/JobApplications.vue:25
msgid "Applications"
msgstr "Prijave"
#: frontend/src/pages/JobApplications.vue:290
msgid "Applied On"
msgstr "Primijenjeno na"
#: frontend/src/pages/JobDetail.vue:62
msgid "Apply" msgid "Apply"
msgstr "Primjeni" msgstr "Primjeni"
@@ -483,7 +496,7 @@ msgstr "Postavi pitanje da bi dobili pomoć od zajednice."
#. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch' #. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the assessment (Table) field in DocType 'LMS Batch' #. Label of the assessment (Table) field in DocType 'LMS Batch'
#: frontend/src/components/Modals/AssessmentModal.vue:27 #: frontend/src/components/Modals/AssessmentModal.vue:27
#: frontend/src/components/Modals/BatchStudentProgress.vue:41 #: frontend/src/components/Modals/BatchStudentProgress.vue:43
#: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11 #: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11
msgid "Assessment" msgid "Assessment"
msgstr "Procjena" msgstr "Procjena"
@@ -569,7 +582,7 @@ msgstr "Podnošenje Zadataka"
msgid "Assignment Title" msgid "Assignment Title"
msgstr "Naziv Zadatka" msgstr "Naziv Zadatka"
#: frontend/src/components/Modals/AssignmentForm.vue:125 #: frontend/src/components/Modals/AssignmentForm.vue:133
msgid "Assignment created successfully" msgid "Assignment created successfully"
msgstr "Zadatak je uspješno napravljen" msgstr "Zadatak je uspješno napravljen"
@@ -581,7 +594,7 @@ msgstr "Zadatak za Lekciju {0} od {1} već postoji."
msgid "Assignment submitted successfully" msgid "Assignment submitted successfully"
msgstr "Zadatak uspješno predan" msgstr "Zadatak uspješno predan"
#: frontend/src/components/Modals/AssignmentForm.vue:138 #: frontend/src/components/Modals/AssignmentForm.vue:146
msgid "Assignment updated successfully" msgid "Assignment updated successfully"
msgstr "Zadatak je uspješno ažuriran" msgstr "Zadatak je uspješno ažuriran"
@@ -622,7 +635,7 @@ msgstr "Učesnici"
msgid "Attire Preference" msgid "Attire Preference"
msgstr "Preferencija Odjeće" msgstr "Preferencija Odjeće"
#: frontend/src/pages/ProfileEvaluator.vue:137 #: frontend/src/pages/ProfileEvaluator.vue:146
msgid "Authorize Google Calendar Access" msgid "Authorize Google Calendar Access"
msgstr "Autoriziraj pristup Google kalendaru" msgstr "Autoriziraj pristup Google kalendaru"
@@ -637,7 +650,7 @@ msgstr "Automatski Dodjeli"
msgid "Auto Recording" msgid "Auto Recording"
msgstr "Automatsko Snimanje" msgstr "Automatsko Snimanje"
#: frontend/src/pages/ProfileEvaluator.vue:224 #: frontend/src/pages/ProfileEvaluator.vue:241
msgid "Availability updated successfully" msgid "Availability updated successfully"
msgstr "Dostupnost je uspješno ažurirana" msgstr "Dostupnost je uspješno ažurirana"
@@ -768,6 +781,7 @@ msgstr "Potvrda Grupnog Upisa"
#. Name of a role #. Name of a role
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -998,7 +1012,7 @@ msgstr "Veza Certifikata"
msgid "Certificate of Completion" msgid "Certificate of Completion"
msgstr "Certifikat o Završetku" msgstr "Certifikat o Završetku"
#: frontend/src/components/Modals/Event.vue:317 #: frontend/src/components/Modals/Event.vue:348
msgid "Certificate saved successfully" msgid "Certificate saved successfully"
msgstr "Certifikat je uspješno spremljen" msgstr "Certifikat je uspješno spremljen"
@@ -1018,7 +1032,7 @@ msgstr "Certifikati su uspješno generirani"
#. Label of a Card Break in the LMS Workspace #. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:626 #: frontend/src/components/AppSidebar.vue:626
#: frontend/src/components/Modals/Event.vue:381 #: frontend/src/components/Modals/Event.vue:412
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10 #: frontend/src/pages/CourseCertification.vue:10
#: frontend/src/pages/CourseCertification.vue:135 #: frontend/src/pages/CourseCertification.vue:135
@@ -1640,6 +1654,7 @@ msgstr "Broj Tečajeva"
#: lms/lms/doctype/course_chapter/course_chapter.json #: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json #: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
@@ -1757,7 +1772,7 @@ msgstr "Kurs {0} je već dodan ovoj grupi."
#: frontend/src/components/BatchCourses.vue:5 #: frontend/src/components/BatchCourses.vue:5
#: frontend/src/components/BatchOverlay.vue:37 #: frontend/src/components/BatchOverlay.vue:37
#: frontend/src/components/BatchStudents.vue:25 #: frontend/src/components/BatchStudents.vue:25
#: frontend/src/components/Modals/BatchStudentProgress.vue:91 #: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127 #: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340 #: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340
@@ -2169,7 +2184,7 @@ msgstr "E-pošta"
#: frontend/src/components/DiscussionReplies.vue:35 #: frontend/src/components/DiscussionReplies.vue:35
#: frontend/src/components/Modals/ChapterModal.vue:9 #: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/components/Settings/Badges.vue:156 #: frontend/src/components/Settings/Badges.vue:156
#: frontend/src/pages/JobDetail.vue:34 frontend/src/pages/Lesson.vue:42 #: frontend/src/pages/JobDetail.vue:45 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36 #: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36
msgid "Edit" msgid "Edit"
msgstr "Uredi" msgstr "Uredi"
@@ -2236,7 +2251,7 @@ msgstr "Detalji Obrazovanja"
#: frontend/src/components/Settings/Evaluators.vue:105 #: frontend/src/components/Settings/Evaluators.vue:105
#: frontend/src/components/Settings/Members.vue:103 #: frontend/src/components/Settings/Members.vue:103
#: lms/templates/signup-form.html:10 #: frontend/src/pages/JobApplications.vue:284 lms/templates/signup-form.html:10
msgid "Email" msgid "Email"
msgstr "E-pošta" msgstr "E-pošta"
@@ -2272,6 +2287,7 @@ msgid "Email Templates deleted successfully"
msgstr "Predlošci e-pošte uspješno su izbrisani" msgstr "Predlošci e-pošte uspješno su izbrisani"
#: frontend/src/components/ContactUsEmail.vue:57 #: frontend/src/components/ContactUsEmail.vue:57
#: frontend/src/pages/JobApplications.vue:244
msgid "Email sent successfully" msgid "Email sent successfully"
msgstr "E-pošta je uspješno poslana" msgstr "E-pošta je uspješno poslana"
@@ -2414,6 +2430,14 @@ msgstr "Unesite Klijent Id i Klijent Tajnu u Google Postavke da pošaljete kalen
msgid "Enter a URL" msgid "Enter a URL"
msgstr "Unesi URL" msgstr "Unesi URL"
#: frontend/src/pages/JobApplications.vue:122
msgid "Enter email subject"
msgstr "Unesi predmet e-pošte"
#: frontend/src/pages/JobApplications.vue:128
msgid "Enter reply to email"
msgstr "Unesi e-poštu za odgovor"
#: frontend/src/components/Modals/ZoomAccountModal.vue:169 #: frontend/src/components/Modals/ZoomAccountModal.vue:169
msgid "Error creating Zoom Account" msgid "Error creating Zoom Account"
msgstr "Greška pri stvaranju Zoom računa" msgstr "Greška pri stvaranju Zoom računa"
@@ -2453,7 +2477,7 @@ msgstr "Pogreška pri ažuriranju predloška e-pošte"
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace #. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:374 lms/lms/workspace/lms/lms.json #: frontend/src/components/Modals/Event.vue:405 lms/lms/workspace/lms/lms.json
msgid "Evaluation" msgid "Evaluation"
msgstr "Evaluacija" msgstr "Evaluacija"
@@ -2478,7 +2502,7 @@ msgstr "Zahtjev za Ocjenu"
msgid "Evaluation end date cannot be less than the batch end date." msgid "Evaluation end date cannot be less than the batch end date."
msgstr "Datum završetka ocjenjivanja ne može biti prije od datuma završetka grupe." msgstr "Datum završetka ocjenjivanja ne može biti prije od datuma završetka grupe."
#: frontend/src/components/Modals/Event.vue:256 #: frontend/src/components/Modals/Event.vue:287
msgid "Evaluation saved successfully" msgid "Evaluation saved successfully"
msgstr "Evaluacija je uspješno sačuvana" msgstr "Evaluacija je uspješno sačuvana"
@@ -2586,7 +2610,7 @@ msgstr "Proširi"
#. Label of the expected_output (Data) field in DocType 'LMS Test Case' #. Label of the expected_output (Data) field in DocType 'LMS Test Case'
#. Label of the expected_output (Data) field in DocType 'LMS Test Case #. Label of the expected_output (Data) field in DocType 'LMS Test Case
#. Submission' #. Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:127 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:129
#: lms/lms/doctype/lms_test_case/lms_test_case.json #: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Expected Output" msgid "Expected Output"
@@ -2599,7 +2623,7 @@ msgstr "Datum Isteka"
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33 #: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:126 #: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date" msgid "Expiry Date"
msgstr "Datum Isteka Roka" msgstr "Datum Isteka Roka"
@@ -2626,7 +2650,7 @@ msgstr "Istraži Više"
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:366 #: frontend/src/components/Modals/Event.vue:397
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail" msgid "Fail"
@@ -2657,7 +2681,7 @@ msgstr "Nije uspjelo preuzimanje podataka o prisutnosti sa Zooma za čas {0}: {1
msgid "Failed to send email" msgid "Failed to send email"
msgstr "Slanje e-pošte nije uspjelo" msgstr "Slanje e-pošte nije uspjelo"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:358 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:364
msgid "Failed to submit. Please try again. {0}" msgid "Failed to submit. Please try again. {0}"
msgstr "Podnošenje nije uspjelo. Pokušaj ponovo. {0}" msgstr "Podnošenje nije uspjelo. Pokušaj ponovo. {0}"
@@ -2770,7 +2794,7 @@ msgid "Friday"
msgstr "Petak" msgstr "Petak"
#. Label of the unavailable_from (Date) field in DocType 'Course Evaluator' #. Label of the unavailable_from (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:99 #: frontend/src/pages/ProfileEvaluator.vue:106
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "From" msgid "From"
msgstr "Od" msgstr "Od"
@@ -2782,6 +2806,7 @@ msgstr "Od Datuma"
#. Label of the full_name (Data) field in DocType 'Course Evaluator' #. Label of the full_name (Data) field in DocType 'Course Evaluator'
#. Label of the full_name (Data) field in DocType 'LMS Program Member' #. Label of the full_name (Data) field in DocType 'LMS Program Member'
#: frontend/src/pages/JobApplications.vue:278
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json #: lms/lms/doctype/lms_program_member/lms_program_member.json
#: lms/templates/signup-form.html:5 #: lms/templates/signup-form.html:5
@@ -3019,7 +3044,7 @@ msgstr "Sa zadovoljstvom vas mogu obavijestiti da ste uspješno stekli certifika
msgid "I am looking for a job" msgid "I am looking for a job"
msgstr "Tražim posao" msgstr "Tražim posao"
#: frontend/src/pages/ProfileEvaluator.vue:94 #: frontend/src/pages/ProfileEvaluator.vue:101
msgid "I am unavailable" msgid "I am unavailable"
msgstr "Ja sam nedostupan/nedostupna" msgstr "Ja sam nedostupan/nedostupna"
@@ -3105,7 +3130,7 @@ msgstr "Slika: Oštećen Tok Podataka"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course' #. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:358 #: frontend/src/components/Modals/Event.vue:389
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
@@ -3161,7 +3186,7 @@ msgstr "Industrija"
#. Label of the input (Data) field in DocType 'LMS Test Case' #. Label of the input (Data) field in DocType 'LMS Test Case'
#. Label of the input (Data) field in DocType 'LMS Test Case Submission' #. Label of the input (Data) field in DocType 'LMS Test Case Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:113 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:115
#: lms/lms/doctype/lms_test_case/lms_test_case.json #: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Input" msgid "Input"
@@ -3273,7 +3298,7 @@ msgstr "SCORM Paket"
#. Label of the issue_date (Date) field in DocType 'Certification' #. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate' #. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28 #: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:121 #: frontend/src/components/Modals/Event.vue:138
#: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date" msgid "Issue Date"
@@ -3358,8 +3383,8 @@ msgid "Job Title"
msgstr "Naziv Posla" msgstr "Naziv Posla"
#. Label of the jobs (Check) field in DocType 'LMS Settings' #. Label of the jobs (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/JobDetail.vue:10 frontend/src/pages/Jobs.vue:8 #: frontend/src/pages/JobApplications.vue:9 frontend/src/pages/JobDetail.vue:10
#: frontend/src/pages/Jobs.vue:212 #: frontend/src/pages/Jobs.vue:8 frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs" msgid "Jobs"
msgstr "Poslovi" msgstr "Poslovi"
@@ -3375,7 +3400,7 @@ msgstr "Pridružite se"
msgid "Join Call" msgid "Join Call"
msgstr "Pridružite se Pozivu" msgstr "Pridružite se Pozivu"
#: frontend/src/components/Modals/Event.vue:74 #: frontend/src/components/Modals/Event.vue:78
msgid "Join Meeting" msgid "Join Meeting"
msgstr "Pridružite se Sastanku" msgstr "Pridružite se Sastanku"
@@ -3883,7 +3908,7 @@ msgstr "Prijava"
msgid "Login to Frappe Cloud?" msgid "Login to Frappe Cloud?"
msgstr "Prijavi se na Frappe Cloud?" msgstr "Prijavi se na Frappe Cloud?"
#: frontend/src/pages/JobDetail.vue:63 #: frontend/src/pages/JobDetail.vue:74
msgid "Login to apply" msgid "Login to apply"
msgstr "Prijavite se kako biste se prijavili" msgstr "Prijavite se kako biste se prijavili"
@@ -4228,9 +4253,14 @@ msgid "Mentor Request Status Update Template"
msgstr "Status Šablona Kreiranja Zahtjeva za Mentora" msgstr "Status Šablona Kreiranja Zahtjeva za Mentora"
#: frontend/src/components/ContactUsEmail.vue:19 #: frontend/src/components/ContactUsEmail.vue:19
#: frontend/src/pages/JobApplications.vue:132
msgid "Message" msgid "Message"
msgstr "Poruka" msgstr "Poruka"
#: frontend/src/pages/JobApplications.vue:240
msgid "Message is required"
msgstr "Poruka je obavezna"
#. Label of the meta_description (Small Text) field in DocType 'LMS Settings' #. Label of the meta_description (Small Text) field in DocType 'LMS Settings'
#: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303 #: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -4351,7 +4381,7 @@ msgstr "Moje Bilješke"
msgid "My availability" msgid "My availability"
msgstr "Moja Dostupnost" msgstr "Moja Dostupnost"
#: frontend/src/pages/ProfileEvaluator.vue:127 #: frontend/src/pages/ProfileEvaluator.vue:136
msgid "My calendar" msgid "My calendar"
msgstr "Moj Kalendar" msgstr "Moj Kalendar"
@@ -4390,7 +4420,7 @@ msgstr "Novi predložak e-pošte"
msgid "New Job" msgid "New Job"
msgstr "Novi Posao" msgstr "Novi Posao"
#: lms/job/doctype/lms_job_application/lms_job_application.py:27 #: lms/job/doctype/lms_job_application/lms_job_application.py:31
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "Novi Kandidat za Posao" msgstr "Novi Kandidat za Posao"
@@ -4818,7 +4848,7 @@ msgstr "Djelomično Završeno"
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:362 #: frontend/src/components/Modals/Event.vue:393
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass" msgid "Pass"
@@ -4945,7 +4975,7 @@ msgstr "Aplikacija plaćanja nije instalirana"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' #. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:354 #: frontend/src/components/Modals/Event.vue:385
#: lms/lms/doctype/cohort_join_request/cohort_join_request.json #: lms/lms/doctype/cohort_join_request/cohort_join_request.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
@@ -4964,7 +4994,7 @@ msgstr "Procenat"
msgid "Percentage (e.g. 70%)" msgid "Percentage (e.g. 70%)"
msgstr "Procenat (npr. 70%)" msgstr "Procenat (npr. 70%)"
#: frontend/src/components/Modals/BatchStudentProgress.vue:44 #: frontend/src/components/Modals/BatchStudentProgress.vue:46
msgid "Percentage/Status" msgid "Percentage/Status"
msgstr "Procentualno/Status" msgstr "Procentualno/Status"
@@ -5080,7 +5110,7 @@ msgstr "Molimo prijavite se kako biste se prijavili u program."
msgid "Please prepare well and be on time for the evaluations." msgid "Please prepare well and be on time for the evaluations."
msgstr "Dobro se pripremi i dođi na vrijeme za ocjenjivanje." msgstr "Dobro se pripremi i dođi na vrijeme za ocjenjivanje."
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:135 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:139
msgid "Please run the code to execute the test cases." msgid "Please run the code to execute the test cases."
msgstr "Pokreni kod za izvršavanje test slučajeva." msgstr "Pokreni kod za izvršavanje test slučajeva."
@@ -5317,11 +5347,11 @@ msgstr "Vježba Programiranja"
#: frontend/src/components/Settings/BadgeForm.vue:200 #: frontend/src/components/Settings/BadgeForm.vue:200
#: frontend/src/components/Settings/Badges.vue:205 #: frontend/src/components/Settings/Badges.vue:205
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:420 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:426
msgid "Programming Exercise Submission" msgid "Programming Exercise Submission"
msgstr "Podnošenje Vježbe Programiranja" msgstr "Podnošenje Vježbe Programiranja"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:411 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:417
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298
msgid "Programming Exercise Submissions" msgid "Programming Exercise Submissions"
msgstr "Podnošenja Vježbi Programiranja" msgstr "Podnošenja Vježbi Programiranja"
@@ -5355,7 +5385,7 @@ msgstr "Programi"
#. Label of the progress (Float) field in DocType 'LMS Enrollment' #. Label of the progress (Float) field in DocType 'LMS Enrollment'
#. Label of the progress (Int) field in DocType 'LMS Program Member' #. Label of the progress (Int) field in DocType 'LMS Program Member'
#: frontend/src/components/Modals/BatchStudentProgress.vue:94 #: frontend/src/components/Modals/BatchStudentProgress.vue:98
#: frontend/src/components/Modals/CourseProgressSummary.vue:224 #: frontend/src/components/Modals/CourseProgressSummary.vue:224
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json #: lms/lms/doctype/lms_enrollment/lms_enrollment.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json #: lms/lms/doctype/lms_program_member/lms_program_member.json
@@ -5401,7 +5431,7 @@ msgstr "Objavi na Stranici Učesnika"
#. Label of the published (Check) field in DocType 'LMS Course' #. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program' #. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51 #: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:108 #: frontend/src/components/Modals/Event.vue:122
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152 #: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100 #: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5569,7 +5599,7 @@ msgstr "Kvizovi u ovom videu"
#. Label of the rating (Data) field in DocType 'LMS Course' #. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review' #. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147 #: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:86 #: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/ReviewModal.vue:18 #: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
@@ -5656,6 +5686,7 @@ msgid "Remove Highlight"
msgstr "Ukloni Istaknuto" msgstr "Ukloni Istaknuto"
#: frontend/src/components/Modals/AnnouncementModal.vue:27 #: frontend/src/components/Modals/AnnouncementModal.vue:27
#: frontend/src/pages/JobApplications.vue:127
msgid "Reply To" msgid "Reply To"
msgstr "Odgovori" msgstr "Odgovori"
@@ -5815,8 +5846,8 @@ msgstr "Subota"
#: frontend/src/components/Controls/CodeEditor.vue:25 #: frontend/src/components/Controls/CodeEditor.vue:25
#: frontend/src/components/Modals/AssignmentForm.vue:59 #: frontend/src/components/Modals/AssignmentForm.vue:59
#: frontend/src/components/Modals/EmailTemplateModal.vue:12 #: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:101 #: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:129 #: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
@@ -5955,6 +5986,7 @@ msgid "Select an assignment"
msgstr "Odaberi Zadatak" msgstr "Odaberi Zadatak"
#: frontend/src/components/ContactUsEmail.vue:33 #: frontend/src/components/ContactUsEmail.vue:33
#: frontend/src/pages/JobApplications.vue:110
msgid "Send" msgid "Send"
msgstr "Pošalji" msgstr "Pošalji"
@@ -5962,6 +5994,14 @@ msgstr "Pošalji"
msgid "Send Confirmation Email" msgid "Send Confirmation Email"
msgstr "Pošalji potvrdnu e-poštu" msgstr "Pošalji potvrdnu e-poštu"
#: frontend/src/pages/JobApplications.vue:268
msgid "Send Email"
msgstr "Pošalji e-poštu"
#: frontend/src/pages/JobApplications.vue:106
msgid "Send Email to {0}"
msgstr "Pošalji e-poštu {0}"
#. Label of the send_calendar_invite_for_evaluations (Check) field in DocType #. Label of the send_calendar_invite_for_evaluations (Check) field in DocType
#. 'LMS Settings' #. 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -6122,11 +6162,11 @@ msgstr "Preskoči"
msgid "Slot Times are overlapping for some schedules." msgid "Slot Times are overlapping for some schedules."
msgstr "Vremena termina se preklapaju za neke rasporede." msgstr "Vremena termina se preklapaju za neke rasporede."
#: frontend/src/pages/ProfileEvaluator.vue:201 #: frontend/src/pages/ProfileEvaluator.vue:218
msgid "Slot added successfully" msgid "Slot added successfully"
msgstr "Termin uspješno dodan" msgstr "Termin uspješno dodan"
#: frontend/src/pages/ProfileEvaluator.vue:240 #: frontend/src/pages/ProfileEvaluator.vue:257
msgid "Slot deleted successfully" msgid "Slot deleted successfully"
msgstr "Termin uspješno izbrisan" msgstr "Termin uspješno izbrisan"
@@ -6265,7 +6305,7 @@ msgstr "Statistika"
#. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission' #. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission' #. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:91 #: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Settings/Badges.vue:228 #: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19 #: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6336,10 +6376,12 @@ msgstr "Podgrupa"
#: frontend/src/components/ContactUsEmail.vue:13 #: frontend/src/components/ContactUsEmail.vue:13
#: frontend/src/components/Modals/AnnouncementModal.vue:20 #: frontend/src/components/Modals/AnnouncementModal.vue:20
#: frontend/src/components/Modals/EmailTemplateModal.vue:31 #: frontend/src/components/Modals/EmailTemplateModal.vue:31
#: frontend/src/pages/JobApplications.vue:121
msgid "Subject" msgid "Subject"
msgstr "Predmet" msgstr "Predmet"
#: frontend/src/components/Modals/AnnouncementModal.vue:94 #: frontend/src/components/Modals/AnnouncementModal.vue:94
#: frontend/src/pages/JobApplications.vue:237
msgid "Subject is required" msgid "Subject is required"
msgstr "Predmet je obavezan" msgstr "Predmet je obavezan"
@@ -6356,7 +6398,7 @@ msgstr "Tip Podnošenja"
msgid "Submission by" msgid "Submission by"
msgstr "Predaja od" msgstr "Predaja od"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:353 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:359
msgid "Submission saved!" msgid "Submission saved!"
msgstr "Podnošenje sačuvano!" msgstr "Podnošenje sačuvano!"
@@ -6396,7 +6438,7 @@ msgstr "Uspješno upisan u program"
#. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:97 #: frontend/src/components/Modals/Event.vue:106
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary" msgid "Summary"
msgstr "Sažetak" msgstr "Sažetak"
@@ -6501,7 +6543,7 @@ msgstr "Timski Rad"
#. Label of the template (Link) field in DocType 'Cohort Web Page' #. Label of the template (Link) field in DocType 'Cohort Web Page'
#. Label of the template (Link) field in DocType 'LMS Certificate' #. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43 #: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:112 #: frontend/src/components/Modals/Event.vue:127
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template" msgid "Template"
@@ -6542,7 +6584,7 @@ msgstr "Rezultati Testa"
msgid "Test this Exercise" msgid "Test this Exercise"
msgstr "Testiraj ovu Vježbu" msgstr "Testiraj ovu Vježbu"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:92 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:93
msgid "Test {0}" msgid "Test {0}"
msgstr "Testiraj {0}" msgstr "Testiraj {0}"
@@ -6840,7 +6882,7 @@ msgid "Title is required"
msgstr "Naziv je obavezan" msgstr "Naziv je obavezan"
#. Label of the unavailable_to (Date) field in DocType 'Course Evaluator' #. Label of the unavailable_to (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:112 #: frontend/src/pages/ProfileEvaluator.vue:120
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "To" msgid "To"
msgstr "Do" msgstr "Do"
@@ -6953,7 +6995,7 @@ msgstr "UUID"
msgid "Unavailability" msgid "Unavailability"
msgstr "Nedostupnost" msgstr "Nedostupnost"
#: frontend/src/pages/ProfileEvaluator.vue:259 #: frontend/src/pages/ProfileEvaluator.vue:276
msgid "Unavailability updated successfully" msgid "Unavailability updated successfully"
msgstr "Nedostupnost uspješno ažurirana" msgstr "Nedostupnost uspješno ažurirana"
@@ -7123,11 +7165,19 @@ msgstr "Video Statistika za {0}"
msgid "View" msgid "View"
msgstr "Pogled" msgstr "Pogled"
#: frontend/src/pages/JobDetail.vue:31
msgid "View Applications"
msgstr "Prikaži prijave"
#: frontend/src/components/CertificationLinks.vue:10 #: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67 #: frontend/src/components/Modals/Event.vue:67
msgid "View Certificate" msgid "View Certificate"
msgstr "Prikaži Certifikat" msgstr "Prikaži Certifikat"
#: frontend/src/pages/JobApplications.vue:262
msgid "View Resume"
msgstr "Prikaži Životopis"
#: frontend/src/components/BatchFeedback.vue:56 #: frontend/src/components/BatchFeedback.vue:56
msgid "View all feedback" msgid "View all feedback"
msgstr "Pogledaj sve povratne informacije" msgstr "Pogledaj sve povratne informacije"
@@ -7146,7 +7196,7 @@ msgstr "Vidljivost"
msgid "Visit Batch" msgid "Visit Batch"
msgstr "Posjeti Grupu" msgstr "Posjeti Grupu"
#: frontend/src/pages/JobDetail.vue:41 #: frontend/src/pages/JobDetail.vue:52
msgid "Visit Website" msgid "Visit Website"
msgstr "Posjeti Web Stranicu" msgstr "Posjeti Web Stranicu"
@@ -7355,7 +7405,7 @@ msgstr "Imate {0}% tačnih odgovora sa rezultatom {1} od {2}"
msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session." msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session."
msgstr "Sutra imate zakazan čas uživo. Pripremi i dođi na vrijeme za čas." msgstr "Sutra imate zakazan čas uživo. Pripremi i dođi na vrijeme za čas."
#: lms/job/doctype/lms_job_application/lms_job_application.py:22 #: lms/job/doctype/lms_job_application/lms_job_application.py:26
msgid "You have already applied for this job." msgid "You have already applied for this job."
msgstr "Već ste se prijavili za ovaj posao." msgstr "Već ste se prijavili za ovaj posao."
@@ -7371,7 +7421,7 @@ msgstr "Već ste kupili sertifikat za ovaj kurs."
msgid "You have already reviewed this course" msgid "You have already reviewed this course"
msgstr "Već ste pregledali ovaj kurs" msgstr "Već ste pregledali ovaj kurs"
#: frontend/src/pages/JobDetail.vue:57 #: frontend/src/pages/JobDetail.vue:68
msgid "You have applied" msgid "You have applied"
msgstr "Prijavili ste se" msgstr "Prijavili ste se"
@@ -7451,7 +7501,7 @@ msgstr "YouTube video će se pojaviti na vrhu lekcije."
msgid "Your Account has been successfully created!" msgid "Your Account has been successfully created!"
msgstr "Vaš račun je uspješno kreiran!" msgstr "Vaš račun je uspješno kreiran!"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:119 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:121
msgid "Your Output" msgid "Your Output"
msgstr "Vaš Rezultat" msgstr "Vaš Rezultat"
@@ -7459,7 +7509,7 @@ msgstr "Vaš Rezultat"
msgid "Your batch {0} is starting tomorrow" msgid "Your batch {0} is starting tomorrow"
msgstr "Vaša grupa {0} počinje sutra" msgstr "Vaša grupa {0} počinje sutra"
#: frontend/src/pages/ProfileEvaluator.vue:134 #: frontend/src/pages/ProfileEvaluator.vue:143
msgid "Your calendar is set." msgid "Your calendar is set."
msgstr "Vaš kalendar je postavljen." msgstr "Vaš kalendar je postavljen."
@@ -7538,11 +7588,11 @@ msgstr "i"
msgid "and then 'Add to Home Screen'" msgid "and then 'Add to Home Screen'"
msgstr "a zatim 'Dodaj na Početak'" msgstr "a zatim 'Dodaj na Početak'"
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114 #: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicant" msgid "applicant"
msgstr "podnositelj" msgstr "podnositelj"
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114 #: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicants" msgid "applicants"
msgstr "podnositelji" msgstr "podnositelji"

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2025-10-31 16:04+0000\n" "POT-Creation-Date: 2025-11-07 16:04+0000\n"
"PO-Revision-Date: 2025-11-02 19:07\n" "PO-Revision-Date: 2025-11-11 11:49\n"
"Last-Translator: jannat@frappe.io\n" "Last-Translator: jannat@frappe.io\n"
"Language-Team: Hungarian\n" "Language-Team: Hungarian\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -176,7 +176,7 @@ msgstr ""
msgid "Add Row" msgid "Add Row"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:89 #: frontend/src/pages/ProfileEvaluator.vue:96
msgid "Add Slot" msgid "Add Slot"
msgstr "" msgstr ""
@@ -426,12 +426,25 @@ msgstr ""
msgid "Appears when the batch URL is shared on socials" msgid "Appears when the batch URL is shared on socials"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:24
msgid "Application"
msgstr ""
#. Label of a field in the job-opportunity Web Form #. Label of a field in the job-opportunity Web Form
#: lms/job/web_form/job_opportunity/job_opportunity.json #: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Application Form Link" msgid "Application Form Link"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:51 #: frontend/src/pages/JobApplications.vue:14
#: frontend/src/pages/JobApplications.vue:25
msgid "Applications"
msgstr ""
#: frontend/src/pages/JobApplications.vue:290
msgid "Applied On"
msgstr "Alkalmazva"
#: frontend/src/pages/JobDetail.vue:62
msgid "Apply" msgid "Apply"
msgstr "Alkalmaz" msgstr "Alkalmaz"
@@ -483,7 +496,7 @@ msgstr ""
#. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch' #. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the assessment (Table) field in DocType 'LMS Batch' #. Label of the assessment (Table) field in DocType 'LMS Batch'
#: frontend/src/components/Modals/AssessmentModal.vue:27 #: frontend/src/components/Modals/AssessmentModal.vue:27
#: frontend/src/components/Modals/BatchStudentProgress.vue:41 #: frontend/src/components/Modals/BatchStudentProgress.vue:43
#: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11 #: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11
msgid "Assessment" msgid "Assessment"
msgstr "" msgstr ""
@@ -569,7 +582,7 @@ msgstr ""
msgid "Assignment Title" msgid "Assignment Title"
msgstr "" msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:125 #: frontend/src/components/Modals/AssignmentForm.vue:133
msgid "Assignment created successfully" msgid "Assignment created successfully"
msgstr "" msgstr ""
@@ -581,7 +594,7 @@ msgstr ""
msgid "Assignment submitted successfully" msgid "Assignment submitted successfully"
msgstr "" msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:138 #: frontend/src/components/Modals/AssignmentForm.vue:146
msgid "Assignment updated successfully" msgid "Assignment updated successfully"
msgstr "" msgstr ""
@@ -622,7 +635,7 @@ msgstr ""
msgid "Attire Preference" msgid "Attire Preference"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:137 #: frontend/src/pages/ProfileEvaluator.vue:146
msgid "Authorize Google Calendar Access" msgid "Authorize Google Calendar Access"
msgstr "" msgstr ""
@@ -637,7 +650,7 @@ msgstr ""
msgid "Auto Recording" msgid "Auto Recording"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:224 #: frontend/src/pages/ProfileEvaluator.vue:241
msgid "Availability updated successfully" msgid "Availability updated successfully"
msgstr "" msgstr ""
@@ -768,6 +781,7 @@ msgstr ""
#. Name of a role #. Name of a role
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -998,7 +1012,7 @@ msgstr ""
msgid "Certificate of Completion" msgid "Certificate of Completion"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:317 #: frontend/src/components/Modals/Event.vue:348
msgid "Certificate saved successfully" msgid "Certificate saved successfully"
msgstr "" msgstr ""
@@ -1018,7 +1032,7 @@ msgstr ""
#. Label of a Card Break in the LMS Workspace #. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:626 #: frontend/src/components/AppSidebar.vue:626
#: frontend/src/components/Modals/Event.vue:381 #: frontend/src/components/Modals/Event.vue:412
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10 #: frontend/src/pages/CourseCertification.vue:10
#: frontend/src/pages/CourseCertification.vue:135 #: frontend/src/pages/CourseCertification.vue:135
@@ -1640,6 +1654,7 @@ msgstr ""
#: lms/lms/doctype/course_chapter/course_chapter.json #: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json #: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
@@ -1757,7 +1772,7 @@ msgstr ""
#: frontend/src/components/BatchCourses.vue:5 #: frontend/src/components/BatchCourses.vue:5
#: frontend/src/components/BatchOverlay.vue:37 #: frontend/src/components/BatchOverlay.vue:37
#: frontend/src/components/BatchStudents.vue:25 #: frontend/src/components/BatchStudents.vue:25
#: frontend/src/components/Modals/BatchStudentProgress.vue:91 #: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127 #: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340 #: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340
@@ -2169,7 +2184,7 @@ msgstr ""
#: frontend/src/components/DiscussionReplies.vue:35 #: frontend/src/components/DiscussionReplies.vue:35
#: frontend/src/components/Modals/ChapterModal.vue:9 #: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/components/Settings/Badges.vue:156 #: frontend/src/components/Settings/Badges.vue:156
#: frontend/src/pages/JobDetail.vue:34 frontend/src/pages/Lesson.vue:42 #: frontend/src/pages/JobDetail.vue:45 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36 #: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36
msgid "Edit" msgid "Edit"
msgstr "" msgstr ""
@@ -2236,7 +2251,7 @@ msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:105 #: frontend/src/components/Settings/Evaluators.vue:105
#: frontend/src/components/Settings/Members.vue:103 #: frontend/src/components/Settings/Members.vue:103
#: lms/templates/signup-form.html:10 #: frontend/src/pages/JobApplications.vue:284 lms/templates/signup-form.html:10
msgid "Email" msgid "Email"
msgstr "E-mail" msgstr "E-mail"
@@ -2272,6 +2287,7 @@ msgid "Email Templates deleted successfully"
msgstr "" msgstr ""
#: frontend/src/components/ContactUsEmail.vue:57 #: frontend/src/components/ContactUsEmail.vue:57
#: frontend/src/pages/JobApplications.vue:244
msgid "Email sent successfully" msgid "Email sent successfully"
msgstr "Az e-mail sikeresen elküldve" msgstr "Az e-mail sikeresen elküldve"
@@ -2414,6 +2430,14 @@ msgstr ""
msgid "Enter a URL" msgid "Enter a URL"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:122
msgid "Enter email subject"
msgstr ""
#: frontend/src/pages/JobApplications.vue:128
msgid "Enter reply to email"
msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:169 #: frontend/src/components/Modals/ZoomAccountModal.vue:169
msgid "Error creating Zoom Account" msgid "Error creating Zoom Account"
msgstr "" msgstr ""
@@ -2453,7 +2477,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace #. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:374 lms/lms/workspace/lms/lms.json #: frontend/src/components/Modals/Event.vue:405 lms/lms/workspace/lms/lms.json
msgid "Evaluation" msgid "Evaluation"
msgstr "" msgstr ""
@@ -2478,7 +2502,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date." msgid "Evaluation end date cannot be less than the batch end date."
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:256 #: frontend/src/components/Modals/Event.vue:287
msgid "Evaluation saved successfully" msgid "Evaluation saved successfully"
msgstr "" msgstr ""
@@ -2586,7 +2610,7 @@ msgstr "Kiterjed"
#. Label of the expected_output (Data) field in DocType 'LMS Test Case' #. Label of the expected_output (Data) field in DocType 'LMS Test Case'
#. Label of the expected_output (Data) field in DocType 'LMS Test Case #. Label of the expected_output (Data) field in DocType 'LMS Test Case
#. Submission' #. Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:127 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:129
#: lms/lms/doctype/lms_test_case/lms_test_case.json #: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Expected Output" msgid "Expected Output"
@@ -2599,7 +2623,7 @@ msgstr ""
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33 #: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:126 #: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date" msgid "Expiry Date"
msgstr "" msgstr ""
@@ -2626,7 +2650,7 @@ msgstr ""
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:366 #: frontend/src/components/Modals/Event.vue:397
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail" msgid "Fail"
@@ -2657,7 +2681,7 @@ msgstr ""
msgid "Failed to send email" msgid "Failed to send email"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:358 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:364
msgid "Failed to submit. Please try again. {0}" msgid "Failed to submit. Please try again. {0}"
msgstr "" msgstr ""
@@ -2770,7 +2794,7 @@ msgid "Friday"
msgstr "Péntek" msgstr "Péntek"
#. Label of the unavailable_from (Date) field in DocType 'Course Evaluator' #. Label of the unavailable_from (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:99 #: frontend/src/pages/ProfileEvaluator.vue:106
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "From" msgid "From"
msgstr "" msgstr ""
@@ -2782,6 +2806,7 @@ msgstr ""
#. Label of the full_name (Data) field in DocType 'Course Evaluator' #. Label of the full_name (Data) field in DocType 'Course Evaluator'
#. Label of the full_name (Data) field in DocType 'LMS Program Member' #. Label of the full_name (Data) field in DocType 'LMS Program Member'
#: frontend/src/pages/JobApplications.vue:278
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json #: lms/lms/doctype/lms_program_member/lms_program_member.json
#: lms/templates/signup-form.html:5 #: lms/templates/signup-form.html:5
@@ -3019,7 +3044,7 @@ msgstr ""
msgid "I am looking for a job" msgid "I am looking for a job"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:94 #: frontend/src/pages/ProfileEvaluator.vue:101
msgid "I am unavailable" msgid "I am unavailable"
msgstr "" msgstr ""
@@ -3105,7 +3130,7 @@ msgstr "Kép: Sérült adatfolyam"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course' #. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:358 #: frontend/src/components/Modals/Event.vue:389
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
@@ -3161,7 +3186,7 @@ msgstr ""
#. Label of the input (Data) field in DocType 'LMS Test Case' #. Label of the input (Data) field in DocType 'LMS Test Case'
#. Label of the input (Data) field in DocType 'LMS Test Case Submission' #. Label of the input (Data) field in DocType 'LMS Test Case Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:113 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:115
#: lms/lms/doctype/lms_test_case/lms_test_case.json #: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Input" msgid "Input"
@@ -3273,7 +3298,7 @@ msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification' #. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate' #. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28 #: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:121 #: frontend/src/components/Modals/Event.vue:138
#: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date" msgid "Issue Date"
@@ -3358,8 +3383,8 @@ msgid "Job Title"
msgstr "Beosztás" msgstr "Beosztás"
#. Label of the jobs (Check) field in DocType 'LMS Settings' #. Label of the jobs (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/JobDetail.vue:10 frontend/src/pages/Jobs.vue:8 #: frontend/src/pages/JobApplications.vue:9 frontend/src/pages/JobDetail.vue:10
#: frontend/src/pages/Jobs.vue:212 #: frontend/src/pages/Jobs.vue:8 frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs" msgid "Jobs"
msgstr "" msgstr ""
@@ -3375,7 +3400,7 @@ msgstr ""
msgid "Join Call" msgid "Join Call"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:74 #: frontend/src/components/Modals/Event.vue:78
msgid "Join Meeting" msgid "Join Meeting"
msgstr "" msgstr ""
@@ -3883,7 +3908,7 @@ msgstr "Bejelentkezés"
msgid "Login to Frappe Cloud?" msgid "Login to Frappe Cloud?"
msgstr "Bejelentkezés a Frappe Cloudba?" msgstr "Bejelentkezés a Frappe Cloudba?"
#: frontend/src/pages/JobDetail.vue:63 #: frontend/src/pages/JobDetail.vue:74
msgid "Login to apply" msgid "Login to apply"
msgstr "" msgstr ""
@@ -4228,9 +4253,14 @@ msgid "Mentor Request Status Update Template"
msgstr "" msgstr ""
#: frontend/src/components/ContactUsEmail.vue:19 #: frontend/src/components/ContactUsEmail.vue:19
#: frontend/src/pages/JobApplications.vue:132
msgid "Message" msgid "Message"
msgstr "Üzenet" msgstr "Üzenet"
#: frontend/src/pages/JobApplications.vue:240
msgid "Message is required"
msgstr ""
#. Label of the meta_description (Small Text) field in DocType 'LMS Settings' #. Label of the meta_description (Small Text) field in DocType 'LMS Settings'
#: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303 #: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -4351,7 +4381,7 @@ msgstr ""
msgid "My availability" msgid "My availability"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:127 #: frontend/src/pages/ProfileEvaluator.vue:136
msgid "My calendar" msgid "My calendar"
msgstr "" msgstr ""
@@ -4390,7 +4420,7 @@ msgstr ""
msgid "New Job" msgid "New Job"
msgstr "" msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:27 #: lms/job/doctype/lms_job_application/lms_job_application.py:31
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "" msgstr ""
@@ -4818,7 +4848,7 @@ msgstr ""
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:362 #: frontend/src/components/Modals/Event.vue:393
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass" msgid "Pass"
@@ -4945,7 +4975,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' #. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:354 #: frontend/src/components/Modals/Event.vue:385
#: lms/lms/doctype/cohort_join_request/cohort_join_request.json #: lms/lms/doctype/cohort_join_request/cohort_join_request.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
@@ -4964,7 +4994,7 @@ msgstr ""
msgid "Percentage (e.g. 70%)" msgid "Percentage (e.g. 70%)"
msgstr "" msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:44 #: frontend/src/components/Modals/BatchStudentProgress.vue:46
msgid "Percentage/Status" msgid "Percentage/Status"
msgstr "" msgstr ""
@@ -5080,7 +5110,7 @@ msgstr ""
msgid "Please prepare well and be on time for the evaluations." msgid "Please prepare well and be on time for the evaluations."
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:135 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:139
msgid "Please run the code to execute the test cases." msgid "Please run the code to execute the test cases."
msgstr "" msgstr ""
@@ -5317,11 +5347,11 @@ msgstr ""
#: frontend/src/components/Settings/BadgeForm.vue:200 #: frontend/src/components/Settings/BadgeForm.vue:200
#: frontend/src/components/Settings/Badges.vue:205 #: frontend/src/components/Settings/Badges.vue:205
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:420 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:426
msgid "Programming Exercise Submission" msgid "Programming Exercise Submission"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:411 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:417
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298
msgid "Programming Exercise Submissions" msgid "Programming Exercise Submissions"
msgstr "" msgstr ""
@@ -5355,7 +5385,7 @@ msgstr ""
#. Label of the progress (Float) field in DocType 'LMS Enrollment' #. Label of the progress (Float) field in DocType 'LMS Enrollment'
#. Label of the progress (Int) field in DocType 'LMS Program Member' #. Label of the progress (Int) field in DocType 'LMS Program Member'
#: frontend/src/components/Modals/BatchStudentProgress.vue:94 #: frontend/src/components/Modals/BatchStudentProgress.vue:98
#: frontend/src/components/Modals/CourseProgressSummary.vue:224 #: frontend/src/components/Modals/CourseProgressSummary.vue:224
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json #: lms/lms/doctype/lms_enrollment/lms_enrollment.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json #: lms/lms/doctype/lms_program_member/lms_program_member.json
@@ -5401,7 +5431,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Course' #. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program' #. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51 #: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:108 #: frontend/src/components/Modals/Event.vue:122
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152 #: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100 #: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5569,7 +5599,7 @@ msgstr ""
#. Label of the rating (Data) field in DocType 'LMS Course' #. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review' #. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147 #: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:86 #: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/ReviewModal.vue:18 #: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
@@ -5656,6 +5686,7 @@ msgid "Remove Highlight"
msgstr "" msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:27 #: frontend/src/components/Modals/AnnouncementModal.vue:27
#: frontend/src/pages/JobApplications.vue:127
msgid "Reply To" msgid "Reply To"
msgstr "" msgstr ""
@@ -5815,8 +5846,8 @@ msgstr "Szombat"
#: frontend/src/components/Controls/CodeEditor.vue:25 #: frontend/src/components/Controls/CodeEditor.vue:25
#: frontend/src/components/Modals/AssignmentForm.vue:59 #: frontend/src/components/Modals/AssignmentForm.vue:59
#: frontend/src/components/Modals/EmailTemplateModal.vue:12 #: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:101 #: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:129 #: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
@@ -5955,6 +5986,7 @@ msgid "Select an assignment"
msgstr "" msgstr ""
#: frontend/src/components/ContactUsEmail.vue:33 #: frontend/src/components/ContactUsEmail.vue:33
#: frontend/src/pages/JobApplications.vue:110
msgid "Send" msgid "Send"
msgstr "" msgstr ""
@@ -5962,6 +5994,14 @@ msgstr ""
msgid "Send Confirmation Email" msgid "Send Confirmation Email"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:268
msgid "Send Email"
msgstr ""
#: frontend/src/pages/JobApplications.vue:106
msgid "Send Email to {0}"
msgstr ""
#. Label of the send_calendar_invite_for_evaluations (Check) field in DocType #. Label of the send_calendar_invite_for_evaluations (Check) field in DocType
#. 'LMS Settings' #. 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -6122,11 +6162,11 @@ msgstr "Ugrás"
msgid "Slot Times are overlapping for some schedules." msgid "Slot Times are overlapping for some schedules."
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:201 #: frontend/src/pages/ProfileEvaluator.vue:218
msgid "Slot added successfully" msgid "Slot added successfully"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:240 #: frontend/src/pages/ProfileEvaluator.vue:257
msgid "Slot deleted successfully" msgid "Slot deleted successfully"
msgstr "" msgstr ""
@@ -6265,7 +6305,7 @@ msgstr "Statisztikák"
#. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission' #. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission' #. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:91 #: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Settings/Badges.vue:228 #: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19 #: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6336,10 +6376,12 @@ msgstr ""
#: frontend/src/components/ContactUsEmail.vue:13 #: frontend/src/components/ContactUsEmail.vue:13
#: frontend/src/components/Modals/AnnouncementModal.vue:20 #: frontend/src/components/Modals/AnnouncementModal.vue:20
#: frontend/src/components/Modals/EmailTemplateModal.vue:31 #: frontend/src/components/Modals/EmailTemplateModal.vue:31
#: frontend/src/pages/JobApplications.vue:121
msgid "Subject" msgid "Subject"
msgstr "" msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:94 #: frontend/src/components/Modals/AnnouncementModal.vue:94
#: frontend/src/pages/JobApplications.vue:237
msgid "Subject is required" msgid "Subject is required"
msgstr "" msgstr ""
@@ -6356,7 +6398,7 @@ msgstr ""
msgid "Submission by" msgid "Submission by"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:353 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:359
msgid "Submission saved!" msgid "Submission saved!"
msgstr "" msgstr ""
@@ -6396,7 +6438,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:97 #: frontend/src/components/Modals/Event.vue:106
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary" msgid "Summary"
msgstr "Összefoglalás" msgstr "Összefoglalás"
@@ -6501,7 +6543,7 @@ msgstr ""
#. Label of the template (Link) field in DocType 'Cohort Web Page' #. Label of the template (Link) field in DocType 'Cohort Web Page'
#. Label of the template (Link) field in DocType 'LMS Certificate' #. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43 #: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:112 #: frontend/src/components/Modals/Event.vue:127
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template" msgid "Template"
@@ -6542,7 +6584,7 @@ msgstr ""
msgid "Test this Exercise" msgid "Test this Exercise"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:92 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:93
msgid "Test {0}" msgid "Test {0}"
msgstr "" msgstr ""
@@ -6840,7 +6882,7 @@ msgid "Title is required"
msgstr "" msgstr ""
#. Label of the unavailable_to (Date) field in DocType 'Course Evaluator' #. Label of the unavailable_to (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:112 #: frontend/src/pages/ProfileEvaluator.vue:120
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "To" msgid "To"
msgstr "" msgstr ""
@@ -6953,7 +6995,7 @@ msgstr ""
msgid "Unavailability" msgid "Unavailability"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:259 #: frontend/src/pages/ProfileEvaluator.vue:276
msgid "Unavailability updated successfully" msgid "Unavailability updated successfully"
msgstr "" msgstr ""
@@ -7123,11 +7165,19 @@ msgstr ""
msgid "View" msgid "View"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:31
msgid "View Applications"
msgstr ""
#: frontend/src/components/CertificationLinks.vue:10 #: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67 #: frontend/src/components/Modals/Event.vue:67
msgid "View Certificate" msgid "View Certificate"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:262
msgid "View Resume"
msgstr ""
#: frontend/src/components/BatchFeedback.vue:56 #: frontend/src/components/BatchFeedback.vue:56
msgid "View all feedback" msgid "View all feedback"
msgstr "" msgstr ""
@@ -7146,7 +7196,7 @@ msgstr "Láthatóság"
msgid "Visit Batch" msgid "Visit Batch"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:41 #: frontend/src/pages/JobDetail.vue:52
msgid "Visit Website" msgid "Visit Website"
msgstr "" msgstr ""
@@ -7355,7 +7405,7 @@ msgstr ""
msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session." msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session."
msgstr "" msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:22 #: lms/job/doctype/lms_job_application/lms_job_application.py:26
msgid "You have already applied for this job." msgid "You have already applied for this job."
msgstr "" msgstr ""
@@ -7371,7 +7421,7 @@ msgstr ""
msgid "You have already reviewed this course" msgid "You have already reviewed this course"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:57 #: frontend/src/pages/JobDetail.vue:68
msgid "You have applied" msgid "You have applied"
msgstr "" msgstr ""
@@ -7451,7 +7501,7 @@ msgstr ""
msgid "Your Account has been successfully created!" msgid "Your Account has been successfully created!"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:119 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:121
msgid "Your Output" msgid "Your Output"
msgstr "" msgstr ""
@@ -7459,7 +7509,7 @@ msgstr ""
msgid "Your batch {0} is starting tomorrow" msgid "Your batch {0} is starting tomorrow"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:134 #: frontend/src/pages/ProfileEvaluator.vue:143
msgid "Your calendar is set." msgid "Your calendar is set."
msgstr "" msgstr ""
@@ -7538,11 +7588,11 @@ msgstr ""
msgid "and then 'Add to Home Screen'" msgid "and then 'Add to Home Screen'"
msgstr "" msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114 #: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicant" msgid "applicant"
msgstr "" msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114 #: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicants" msgid "applicants"
msgstr "" msgstr ""

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2025-10-31 16:04+0000\n" "POT-Creation-Date: 2025-11-07 16:04+0000\n"
"PO-Revision-Date: 2025-11-08 08:35\n" "PO-Revision-Date: 2025-11-11 11:49\n"
"Last-Translator: jannat@frappe.io\n" "Last-Translator: jannat@frappe.io\n"
"Language-Team: Indonesian\n" "Language-Team: Indonesian\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -148,7 +148,7 @@ msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:131 #: frontend/src/pages/Programs/ProgramForm.vue:131
#: frontend/src/pages/Programs/ProgramForm.vue:180 #: frontend/src/pages/Programs/ProgramForm.vue:180
msgid "Add" msgid "Add"
msgstr "Tambah" msgstr "Tambahkan"
#: frontend/src/components/CourseOutline.vue:18 #: frontend/src/components/CourseOutline.vue:18
#: frontend/src/components/CreateOutline.vue:18 #: frontend/src/components/CreateOutline.vue:18
@@ -176,7 +176,7 @@ msgstr ""
msgid "Add Row" msgid "Add Row"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:89 #: frontend/src/pages/ProfileEvaluator.vue:96
msgid "Add Slot" msgid "Add Slot"
msgstr "" msgstr ""
@@ -286,11 +286,11 @@ msgstr "Alamat"
#: frontend/src/pages/Billing.vue:74 #: frontend/src/pages/Billing.vue:74
msgid "Address Line 1" msgid "Address Line 1"
msgstr "Baris Alamat 1" msgstr ""
#: frontend/src/pages/Billing.vue:78 #: frontend/src/pages/Billing.vue:78
msgid "Address Line 2" msgid "Address Line 2"
msgstr "Baris Alamat 2" msgstr ""
#. Option for the 'Role' (Select) field in DocType 'Cohort Staff' #. Option for the 'Role' (Select) field in DocType 'Cohort Staff'
#. Option for the 'Required Role' (Select) field in DocType 'Cohort Web Page' #. Option for the 'Required Role' (Select) field in DocType 'Cohort Web Page'
@@ -426,12 +426,25 @@ msgstr ""
msgid "Appears when the batch URL is shared on socials" msgid "Appears when the batch URL is shared on socials"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:24
msgid "Application"
msgstr ""
#. Label of a field in the job-opportunity Web Form #. Label of a field in the job-opportunity Web Form
#: lms/job/web_form/job_opportunity/job_opportunity.json #: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Application Form Link" msgid "Application Form Link"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:51 #: frontend/src/pages/JobApplications.vue:14
#: frontend/src/pages/JobApplications.vue:25
msgid "Applications"
msgstr ""
#: frontend/src/pages/JobApplications.vue:290
msgid "Applied On"
msgstr ""
#: frontend/src/pages/JobDetail.vue:62
msgid "Apply" msgid "Apply"
msgstr "" msgstr ""
@@ -483,7 +496,7 @@ msgstr ""
#. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch' #. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the assessment (Table) field in DocType 'LMS Batch' #. Label of the assessment (Table) field in DocType 'LMS Batch'
#: frontend/src/components/Modals/AssessmentModal.vue:27 #: frontend/src/components/Modals/AssessmentModal.vue:27
#: frontend/src/components/Modals/BatchStudentProgress.vue:41 #: frontend/src/components/Modals/BatchStudentProgress.vue:43
#: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11 #: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11
msgid "Assessment" msgid "Assessment"
msgstr "" msgstr ""
@@ -569,7 +582,7 @@ msgstr ""
msgid "Assignment Title" msgid "Assignment Title"
msgstr "" msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:125 #: frontend/src/components/Modals/AssignmentForm.vue:133
msgid "Assignment created successfully" msgid "Assignment created successfully"
msgstr "" msgstr ""
@@ -581,7 +594,7 @@ msgstr ""
msgid "Assignment submitted successfully" msgid "Assignment submitted successfully"
msgstr "" msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:138 #: frontend/src/components/Modals/AssignmentForm.vue:146
msgid "Assignment updated successfully" msgid "Assignment updated successfully"
msgstr "" msgstr ""
@@ -622,7 +635,7 @@ msgstr "Peserta"
msgid "Attire Preference" msgid "Attire Preference"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:137 #: frontend/src/pages/ProfileEvaluator.vue:146
msgid "Authorize Google Calendar Access" msgid "Authorize Google Calendar Access"
msgstr "" msgstr ""
@@ -637,7 +650,7 @@ msgstr ""
msgid "Auto Recording" msgid "Auto Recording"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:224 #: frontend/src/pages/ProfileEvaluator.vue:241
msgid "Availability updated successfully" msgid "Availability updated successfully"
msgstr "" msgstr ""
@@ -768,6 +781,7 @@ msgstr ""
#. Name of a role #. Name of a role
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -886,7 +900,7 @@ msgstr ""
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json #: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
msgid "Blue" msgid "Blue"
msgstr "Biru" msgstr ""
#. Label of the body (Markdown Editor) field in DocType 'Course Lesson' #. Label of the body (Markdown Editor) field in DocType 'Course Lesson'
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
@@ -998,7 +1012,7 @@ msgstr ""
msgid "Certificate of Completion" msgid "Certificate of Completion"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:317 #: frontend/src/components/Modals/Event.vue:348
msgid "Certificate saved successfully" msgid "Certificate saved successfully"
msgstr "" msgstr ""
@@ -1018,7 +1032,7 @@ msgstr ""
#. Label of a Card Break in the LMS Workspace #. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:626 #: frontend/src/components/AppSidebar.vue:626
#: frontend/src/components/Modals/Event.vue:381 #: frontend/src/components/Modals/Event.vue:412
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10 #: frontend/src/pages/CourseCertification.vue:10
#: frontend/src/pages/CourseCertification.vue:135 #: frontend/src/pages/CourseCertification.vue:135
@@ -1168,7 +1182,7 @@ msgstr ""
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "City" msgid "City"
msgstr "Kota" msgstr ""
#: lms/templates/emails/live_class_reminder.html:10 #: lms/templates/emails/live_class_reminder.html:10
msgid "Class:" msgid "Class:"
@@ -1214,7 +1228,7 @@ msgstr "Tutup"
#: lms/job/web_form/job_opportunity/job_opportunity.json #: lms/job/web_form/job_opportunity/job_opportunity.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
msgid "Closed" msgid "Closed"
msgstr "Tertutup" msgstr ""
#. Option for the 'Auto Recording' (Select) field in DocType 'LMS Live Class' #. Option for the 'Auto Recording' (Select) field in DocType 'LMS Live Class'
#: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -1361,7 +1375,7 @@ msgstr ""
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/job/web_form/job_opportunity/job_opportunity.json #: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Company Name" msgid "Company Name"
msgstr "Nama Perusahaan" msgstr ""
#. Label of the company_type (Select) field in DocType 'User' #. Label of the company_type (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
@@ -1385,7 +1399,7 @@ msgstr ""
#: lms/lms/doctype/lms_course_progress/lms_course_progress.json #: lms/lms/doctype/lms_course_progress/lms_course_progress.json
#: lms/lms/widgets/CourseCard.html:75 lms/templates/reviews.html:48 #: lms/lms/widgets/CourseCard.html:75 lms/templates/reviews.html:48
msgid "Complete" msgid "Complete"
msgstr "Selesai" msgstr "Lengkap"
#: lms/templates/emails/lms_invite_request_approved.html:7 #: lms/templates/emails/lms_invite_request_approved.html:7
msgid "Complete Sign Up" msgid "Complete Sign Up"
@@ -1640,6 +1654,7 @@ msgstr ""
#: lms/lms/doctype/course_chapter/course_chapter.json #: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json #: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
@@ -1757,7 +1772,7 @@ msgstr ""
#: frontend/src/components/BatchCourses.vue:5 #: frontend/src/components/BatchCourses.vue:5
#: frontend/src/components/BatchOverlay.vue:37 #: frontend/src/components/BatchOverlay.vue:37
#: frontend/src/components/BatchStudents.vue:25 #: frontend/src/components/BatchStudents.vue:25
#: frontend/src/components/Modals/BatchStudentProgress.vue:91 #: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127 #: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340 #: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340
@@ -1888,7 +1903,7 @@ msgstr ""
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_payment/lms_payment.json #: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Currency" msgid "Currency"
msgstr "Mata Uang" msgstr "Mata uang"
#. Label of the current_lesson (Link) field in DocType 'LMS Enrollment' #. Label of the current_lesson (Link) field in DocType 'LMS Enrollment'
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json #: lms/lms/doctype/lms_enrollment/lms_enrollment.json
@@ -1932,7 +1947,7 @@ msgstr "Cyan"
#. Label of the show_dashboard (Check) field in DocType 'LMS Settings' #. Label of the show_dashboard (Check) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Dashboard" msgid "Dashboard"
msgstr "" msgstr "Dasbor"
#. Label of the date (Date) field in DocType 'LMS Batch Timetable' #. Label of the date (Date) field in DocType 'LMS Batch Timetable'
#. Label of the date (Date) field in DocType 'LMS Certificate Evaluation' #. Label of the date (Date) field in DocType 'LMS Certificate Evaluation'
@@ -1971,7 +1986,7 @@ msgstr "Hari"
#: lms/templates/emails/mentor_request_creation_email.html:2 #: lms/templates/emails/mentor_request_creation_email.html:2
#: lms/templates/emails/mentor_request_status_update_email.html:2 #: lms/templates/emails/mentor_request_status_update_email.html:2
msgid "Dear" msgid "Dear"
msgstr "Yth." msgstr "Kepada Yth."
#: lms/templates/emails/batch_confirmation.html:2 #: lms/templates/emails/batch_confirmation.html:2
#: lms/templates/emails/batch_start_reminder.html:2 #: lms/templates/emails/batch_start_reminder.html:2
@@ -2143,7 +2158,7 @@ msgstr ""
#: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/lms_live_class/lms_live_class.json
#: lms/lms/doctype/lms_live_class_participant/lms_live_class_participant.json #: lms/lms/doctype/lms_live_class_participant/lms_live_class_participant.json
msgid "Duration" msgid "Duration"
msgstr "Lamanya" msgstr ""
#. Label of the duration (Data) field in DocType 'LMS Quiz' #. Label of the duration (Data) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:67 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:67 lms/lms/doctype/lms_quiz/lms_quiz.json
@@ -2169,7 +2184,7 @@ msgstr ""
#: frontend/src/components/DiscussionReplies.vue:35 #: frontend/src/components/DiscussionReplies.vue:35
#: frontend/src/components/Modals/ChapterModal.vue:9 #: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/components/Settings/Badges.vue:156 #: frontend/src/components/Settings/Badges.vue:156
#: frontend/src/pages/JobDetail.vue:34 frontend/src/pages/Lesson.vue:42 #: frontend/src/pages/JobDetail.vue:45 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36 #: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36
msgid "Edit" msgid "Edit"
msgstr "" msgstr ""
@@ -2236,7 +2251,7 @@ msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:105 #: frontend/src/components/Settings/Evaluators.vue:105
#: frontend/src/components/Settings/Members.vue:103 #: frontend/src/components/Settings/Members.vue:103
#: lms/templates/signup-form.html:10 #: frontend/src/pages/JobApplications.vue:284 lms/templates/signup-form.html:10
msgid "Email" msgid "Email"
msgstr "Surel" msgstr "Surel"
@@ -2272,6 +2287,7 @@ msgid "Email Templates deleted successfully"
msgstr "" msgstr ""
#: frontend/src/components/ContactUsEmail.vue:57 #: frontend/src/components/ContactUsEmail.vue:57
#: frontend/src/pages/JobApplications.vue:244
msgid "Email sent successfully" msgid "Email sent successfully"
msgstr "Email berhasil dikirim" msgstr "Email berhasil dikirim"
@@ -2323,7 +2339,7 @@ msgstr ""
#. Label of the end_date (Date) field in DocType 'LMS Batch' #. Label of the end_date (Date) field in DocType 'LMS Batch'
#: lms/lms/doctype/cohort/cohort.json lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/cohort/cohort.json lms/lms/doctype/lms_batch/lms_batch.json
msgid "End Date" msgid "End Date"
msgstr "Tanggal Akhir" msgstr "Tanggal Berakhir"
#. Label of the end_date (Date) field in DocType 'Education Detail' #. Label of the end_date (Date) field in DocType 'Education Detail'
#: lms/lms/doctype/education_detail/education_detail.json #: lms/lms/doctype/education_detail/education_detail.json
@@ -2414,6 +2430,14 @@ msgstr ""
msgid "Enter a URL" msgid "Enter a URL"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:122
msgid "Enter email subject"
msgstr ""
#: frontend/src/pages/JobApplications.vue:128
msgid "Enter reply to email"
msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:169 #: frontend/src/components/Modals/ZoomAccountModal.vue:169
msgid "Error creating Zoom Account" msgid "Error creating Zoom Account"
msgstr "" msgstr ""
@@ -2453,7 +2477,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace #. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:374 lms/lms/workspace/lms/lms.json #: frontend/src/components/Modals/Event.vue:405 lms/lms/workspace/lms/lms.json
msgid "Evaluation" msgid "Evaluation"
msgstr "Evaluasi" msgstr "Evaluasi"
@@ -2478,7 +2502,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date." msgid "Evaluation end date cannot be less than the batch end date."
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:256 #: frontend/src/components/Modals/Event.vue:287
msgid "Evaluation saved successfully" msgid "Evaluation saved successfully"
msgstr "" msgstr ""
@@ -2586,7 +2610,7 @@ msgstr "Memperluas"
#. Label of the expected_output (Data) field in DocType 'LMS Test Case' #. Label of the expected_output (Data) field in DocType 'LMS Test Case'
#. Label of the expected_output (Data) field in DocType 'LMS Test Case #. Label of the expected_output (Data) field in DocType 'LMS Test Case
#. Submission' #. Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:127 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:129
#: lms/lms/doctype/lms_test_case/lms_test_case.json #: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Expected Output" msgid "Expected Output"
@@ -2599,7 +2623,7 @@ msgstr ""
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33 #: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:126 #: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date" msgid "Expiry Date"
msgstr "" msgstr ""
@@ -2626,7 +2650,7 @@ msgstr ""
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:366 #: frontend/src/components/Modals/Event.vue:397
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail" msgid "Fail"
@@ -2639,7 +2663,7 @@ msgstr ""
#: lms/lms/doctype/lms_programming_exercise_submission/lms_programming_exercise_submission.json #: lms/lms/doctype/lms_programming_exercise_submission/lms_programming_exercise_submission.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Failed" msgid "Failed"
msgstr "Gagal" msgstr ""
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:136 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:136
msgid "Failed to create badge assignment: " msgid "Failed to create badge assignment: "
@@ -2657,7 +2681,7 @@ msgstr ""
msgid "Failed to send email" msgid "Failed to send email"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:358 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:364
msgid "Failed to submit. Please try again. {0}" msgid "Failed to submit. Please try again. {0}"
msgstr "" msgstr ""
@@ -2682,7 +2706,7 @@ msgstr "Unggulan"
#: frontend/src/pages/Batch.vue:146 #: frontend/src/pages/Batch.vue:146
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json #: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
msgid "Feedback" msgid "Feedback"
msgstr "Umpan balik" msgstr ""
#: frontend/src/components/Assignment.vue:64 #: frontend/src/components/Assignment.vue:64
msgid "Feel free to make edits to your submission if needed." msgid "Feel free to make edits to your submission if needed."
@@ -2770,7 +2794,7 @@ msgid "Friday"
msgstr "" msgstr ""
#. Label of the unavailable_from (Date) field in DocType 'Course Evaluator' #. Label of the unavailable_from (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:99 #: frontend/src/pages/ProfileEvaluator.vue:106
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "From" msgid "From"
msgstr "Dari" msgstr "Dari"
@@ -2782,6 +2806,7 @@ msgstr "Dari Tanggal"
#. Label of the full_name (Data) field in DocType 'Course Evaluator' #. Label of the full_name (Data) field in DocType 'Course Evaluator'
#. Label of the full_name (Data) field in DocType 'LMS Program Member' #. Label of the full_name (Data) field in DocType 'LMS Program Member'
#: frontend/src/pages/JobApplications.vue:278
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json #: lms/lms/doctype/lms_program_member/lms_program_member.json
#: lms/templates/signup-form.html:5 #: lms/templates/signup-form.html:5
@@ -2910,7 +2935,7 @@ msgstr "Abu-abu"
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json #: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
msgid "Green" msgid "Green"
msgstr "Hijau" msgstr ""
#: lms/templates/signup-form.html:56 #: lms/templates/signup-form.html:56
msgid "Have an account? Login" msgid "Have an account? Login"
@@ -3019,7 +3044,7 @@ msgstr ""
msgid "I am looking for a job" msgid "I am looking for a job"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:94 #: frontend/src/pages/ProfileEvaluator.vue:101
msgid "I am unavailable" msgid "I am unavailable"
msgstr "" msgstr ""
@@ -3105,7 +3130,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course' #. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:358 #: frontend/src/components/Modals/Event.vue:389
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
@@ -3161,7 +3186,7 @@ msgstr ""
#. Label of the input (Data) field in DocType 'LMS Test Case' #. Label of the input (Data) field in DocType 'LMS Test Case'
#. Label of the input (Data) field in DocType 'LMS Test Case Submission' #. Label of the input (Data) field in DocType 'LMS Test Case Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:113 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:115
#: lms/lms/doctype/lms_test_case/lms_test_case.json #: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Input" msgid "Input"
@@ -3273,7 +3298,7 @@ msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification' #. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate' #. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28 #: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:121 #: frontend/src/components/Modals/Event.vue:138
#: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date" msgid "Issue Date"
@@ -3358,8 +3383,8 @@ msgid "Job Title"
msgstr "" msgstr ""
#. Label of the jobs (Check) field in DocType 'LMS Settings' #. Label of the jobs (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/JobDetail.vue:10 frontend/src/pages/Jobs.vue:8 #: frontend/src/pages/JobApplications.vue:9 frontend/src/pages/JobDetail.vue:10
#: frontend/src/pages/Jobs.vue:212 #: frontend/src/pages/Jobs.vue:8 frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs" msgid "Jobs"
msgstr "Pekerjaan" msgstr "Pekerjaan"
@@ -3375,7 +3400,7 @@ msgstr ""
msgid "Join Call" msgid "Join Call"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:74 #: frontend/src/components/Modals/Event.vue:78
msgid "Join Meeting" msgid "Join Meeting"
msgstr "" msgstr ""
@@ -3866,7 +3891,7 @@ msgstr "[Daerah"
#: lms/lms/doctype/education_detail/education_detail.json #: lms/lms/doctype/education_detail/education_detail.json
#: lms/lms/doctype/work_experience/work_experience.json #: lms/lms/doctype/work_experience/work_experience.json
msgid "Location" msgid "Location"
msgstr "Lokasi" msgstr ""
#. Label of the location_preference (Select) field in DocType 'User' #. Label of the location_preference (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
@@ -3883,7 +3908,7 @@ msgstr "Masuk"
msgid "Login to Frappe Cloud?" msgid "Login to Frappe Cloud?"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:63 #: frontend/src/pages/JobDetail.vue:74
msgid "Login to apply" msgid "Login to apply"
msgstr "" msgstr ""
@@ -4228,9 +4253,14 @@ msgid "Mentor Request Status Update Template"
msgstr "" msgstr ""
#: frontend/src/components/ContactUsEmail.vue:19 #: frontend/src/components/ContactUsEmail.vue:19
#: frontend/src/pages/JobApplications.vue:132
msgid "Message" msgid "Message"
msgstr "Pesan" msgstr "Pesan"
#: frontend/src/pages/JobApplications.vue:240
msgid "Message is required"
msgstr ""
#. Label of the meta_description (Small Text) field in DocType 'LMS Settings' #. Label of the meta_description (Small Text) field in DocType 'LMS Settings'
#: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303 #: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -4351,7 +4381,7 @@ msgstr ""
msgid "My availability" msgid "My availability"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:127 #: frontend/src/pages/ProfileEvaluator.vue:136
msgid "My calendar" msgid "My calendar"
msgstr "" msgstr ""
@@ -4390,7 +4420,7 @@ msgstr ""
msgid "New Job" msgid "New Job"
msgstr "" msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:27 #: lms/job/doctype/lms_job_application/lms_job_application.py:31
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "" msgstr ""
@@ -4818,7 +4848,7 @@ msgstr ""
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:362 #: frontend/src/components/Modals/Event.vue:393
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass" msgid "Pass"
@@ -4945,12 +4975,12 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' #. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:354 #: frontend/src/components/Modals/Event.vue:385
#: lms/lms/doctype/cohort_join_request/cohort_join_request.json #: lms/lms/doctype/cohort_join_request/cohort_join_request.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending" msgid "Pending"
msgstr "Menunggu" msgstr ""
#. Label of the percentage (Int) field in DocType 'LMS Quiz Submission' #. Label of the percentage (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizSubmission.vue:44 #: frontend/src/pages/QuizSubmission.vue:44
@@ -4964,7 +4994,7 @@ msgstr ""
msgid "Percentage (e.g. 70%)" msgid "Percentage (e.g. 70%)"
msgstr "" msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:44 #: frontend/src/components/Modals/BatchStudentProgress.vue:46
msgid "Percentage/Status" msgid "Percentage/Status"
msgstr "" msgstr ""
@@ -5080,7 +5110,7 @@ msgstr ""
msgid "Please prepare well and be on time for the evaluations." msgid "Please prepare well and be on time for the evaluations."
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:135 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:139
msgid "Please run the code to execute the test cases." msgid "Please run the code to execute the test cases."
msgstr "" msgstr ""
@@ -5172,7 +5202,7 @@ msgstr ""
#: frontend/src/pages/Billing.vue:95 #: frontend/src/pages/Billing.vue:95
msgid "Postal Code" msgid "Postal Code"
msgstr "kode Pos" msgstr ""
#: frontend/src/components/AppSidebar.vue:125 #: frontend/src/components/AppSidebar.vue:125
msgid "Powered by Learning" msgid "Powered by Learning"
@@ -5317,11 +5347,11 @@ msgstr ""
#: frontend/src/components/Settings/BadgeForm.vue:200 #: frontend/src/components/Settings/BadgeForm.vue:200
#: frontend/src/components/Settings/Badges.vue:205 #: frontend/src/components/Settings/Badges.vue:205
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:420 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:426
msgid "Programming Exercise Submission" msgid "Programming Exercise Submission"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:411 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:417
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298
msgid "Programming Exercise Submissions" msgid "Programming Exercise Submissions"
msgstr "" msgstr ""
@@ -5355,12 +5385,12 @@ msgstr ""
#. Label of the progress (Float) field in DocType 'LMS Enrollment' #. Label of the progress (Float) field in DocType 'LMS Enrollment'
#. Label of the progress (Int) field in DocType 'LMS Program Member' #. Label of the progress (Int) field in DocType 'LMS Program Member'
#: frontend/src/components/Modals/BatchStudentProgress.vue:94 #: frontend/src/components/Modals/BatchStudentProgress.vue:98
#: frontend/src/components/Modals/CourseProgressSummary.vue:224 #: frontend/src/components/Modals/CourseProgressSummary.vue:224
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json #: lms/lms/doctype/lms_enrollment/lms_enrollment.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json #: lms/lms/doctype/lms_program_member/lms_program_member.json
msgid "Progress" msgid "Progress"
msgstr "" msgstr "Kemajuan"
#: frontend/src/pages/Programs/ProgramProgressSummary.vue:131 #: frontend/src/pages/Programs/ProgramProgressSummary.vue:131
#: lms/lms/report/course_progress_summary/course_progress_summary.py:77 #: lms/lms/report/course_progress_summary/course_progress_summary.py:77
@@ -5401,7 +5431,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Course' #. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program' #. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51 #: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:108 #: frontend/src/components/Modals/Event.vue:122
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152 #: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100 #: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5569,7 +5599,7 @@ msgstr ""
#. Label of the rating (Data) field in DocType 'LMS Course' #. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review' #. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147 #: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:86 #: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/ReviewModal.vue:18 #: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
@@ -5592,7 +5622,7 @@ msgstr ""
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json #: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
msgid "Red" msgid "Red"
msgstr "Merah" msgstr ""
#. Label of the reference_docname (Dynamic Link) field in DocType 'LMS Batch #. Label of the reference_docname (Dynamic Link) field in DocType 'LMS Batch
#. Timetable' #. Timetable'
@@ -5611,7 +5641,7 @@ msgstr ""
#. Label of the reference_doctype (Link) field in DocType 'LMS Badge' #. Label of the reference_doctype (Link) field in DocType 'LMS Badge'
#: lms/lms/doctype/lms_badge/lms_badge.json #: lms/lms/doctype/lms_badge/lms_badge.json
msgid "Reference Document Type" msgid "Reference Document Type"
msgstr "Tipe Dokumen Referensi" msgstr ""
#: lms/templates/emails/community_course_membership.html:17 #: lms/templates/emails/community_course_membership.html:17
msgid "Regards" msgid "Regards"
@@ -5656,6 +5686,7 @@ msgid "Remove Highlight"
msgstr "" msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:27 #: frontend/src/components/Modals/AnnouncementModal.vue:27
#: frontend/src/pages/JobApplications.vue:127
msgid "Reply To" msgid "Reply To"
msgstr "" msgstr ""
@@ -5815,8 +5846,8 @@ msgstr ""
#: frontend/src/components/Controls/CodeEditor.vue:25 #: frontend/src/components/Controls/CodeEditor.vue:25
#: frontend/src/components/Modals/AssignmentForm.vue:59 #: frontend/src/components/Modals/AssignmentForm.vue:59
#: frontend/src/components/Modals/EmailTemplateModal.vue:12 #: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:101 #: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:129 #: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
@@ -5955,6 +5986,7 @@ msgid "Select an assignment"
msgstr "" msgstr ""
#: frontend/src/components/ContactUsEmail.vue:33 #: frontend/src/components/ContactUsEmail.vue:33
#: frontend/src/pages/JobApplications.vue:110
msgid "Send" msgid "Send"
msgstr "Kirim" msgstr "Kirim"
@@ -5962,6 +5994,14 @@ msgstr "Kirim"
msgid "Send Confirmation Email" msgid "Send Confirmation Email"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:268
msgid "Send Email"
msgstr ""
#: frontend/src/pages/JobApplications.vue:106
msgid "Send Email to {0}"
msgstr ""
#. Label of the send_calendar_invite_for_evaluations (Check) field in DocType #. Label of the send_calendar_invite_for_evaluations (Check) field in DocType
#. 'LMS Settings' #. 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -6122,11 +6162,11 @@ msgstr "Melewatkan"
msgid "Slot Times are overlapping for some schedules." msgid "Slot Times are overlapping for some schedules."
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:201 #: frontend/src/pages/ProfileEvaluator.vue:218
msgid "Slot added successfully" msgid "Slot added successfully"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:240 #: frontend/src/pages/ProfileEvaluator.vue:257
msgid "Slot deleted successfully" msgid "Slot deleted successfully"
msgstr "" msgstr ""
@@ -6265,7 +6305,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission' #. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission' #. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:91 #: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Settings/Badges.vue:228 #: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19 #: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6336,10 +6376,12 @@ msgstr ""
#: frontend/src/components/ContactUsEmail.vue:13 #: frontend/src/components/ContactUsEmail.vue:13
#: frontend/src/components/Modals/AnnouncementModal.vue:20 #: frontend/src/components/Modals/AnnouncementModal.vue:20
#: frontend/src/components/Modals/EmailTemplateModal.vue:31 #: frontend/src/components/Modals/EmailTemplateModal.vue:31
#: frontend/src/pages/JobApplications.vue:121
msgid "Subject" msgid "Subject"
msgstr "Perihal" msgstr "Perihal"
#: frontend/src/components/Modals/AnnouncementModal.vue:94 #: frontend/src/components/Modals/AnnouncementModal.vue:94
#: frontend/src/pages/JobApplications.vue:237
msgid "Subject is required" msgid "Subject is required"
msgstr "" msgstr ""
@@ -6356,7 +6398,7 @@ msgstr ""
msgid "Submission by" msgid "Submission by"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:353 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:359
msgid "Submission saved!" msgid "Submission saved!"
msgstr "" msgstr ""
@@ -6396,7 +6438,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:97 #: frontend/src/components/Modals/Event.vue:106
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary" msgid "Summary"
msgstr "Ringkasan" msgstr "Ringkasan"
@@ -6501,11 +6543,11 @@ msgstr ""
#. Label of the template (Link) field in DocType 'Cohort Web Page' #. Label of the template (Link) field in DocType 'Cohort Web Page'
#. Label of the template (Link) field in DocType 'LMS Certificate' #. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43 #: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:112 #: frontend/src/components/Modals/Event.vue:127
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template" msgid "Template"
msgstr "Contoh" msgstr ""
#: lms/lms/user.py:40 #: lms/lms/user.py:40
msgid "Temporarily Disabled" msgid "Temporarily Disabled"
@@ -6542,7 +6584,7 @@ msgstr ""
msgid "Test this Exercise" msgid "Test this Exercise"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:92 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:93
msgid "Test {0}" msgid "Test {0}"
msgstr "" msgstr ""
@@ -6840,7 +6882,7 @@ msgid "Title is required"
msgstr "" msgstr ""
#. Label of the unavailable_to (Date) field in DocType 'Course Evaluator' #. Label of the unavailable_to (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:112 #: frontend/src/pages/ProfileEvaluator.vue:120
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "To" msgid "To"
msgstr "Untuk" msgstr "Untuk"
@@ -6920,7 +6962,7 @@ msgstr ""
#: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json #: lms/lms/doctype/lms_quiz_question/lms_quiz_question.json
#: lms/templates/assessments.html:14 #: lms/templates/assessments.html:14
msgid "Type" msgid "Type"
msgstr "Jenis" msgstr ""
#: frontend/src/utils/markdownParser.js:11 #: frontend/src/utils/markdownParser.js:11
msgid "Type '/' for commands or select text to format" msgid "Type '/' for commands or select text to format"
@@ -6953,7 +6995,7 @@ msgstr ""
msgid "Unavailability" msgid "Unavailability"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:259 #: frontend/src/pages/ProfileEvaluator.vue:276
msgid "Unavailability updated successfully" msgid "Unavailability updated successfully"
msgstr "" msgstr ""
@@ -7121,13 +7163,21 @@ msgstr ""
#: frontend/src/pages/Notifications.vue:39 #: frontend/src/pages/Notifications.vue:39
msgid "View" msgid "View"
msgstr "Melihat" msgstr ""
#: frontend/src/pages/JobDetail.vue:31
msgid "View Applications"
msgstr ""
#: frontend/src/components/CertificationLinks.vue:10 #: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67 #: frontend/src/components/Modals/Event.vue:67
msgid "View Certificate" msgid "View Certificate"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:262
msgid "View Resume"
msgstr ""
#: frontend/src/components/BatchFeedback.vue:56 #: frontend/src/components/BatchFeedback.vue:56
msgid "View all feedback" msgid "View all feedback"
msgstr "" msgstr ""
@@ -7146,7 +7196,7 @@ msgstr ""
msgid "Visit Batch" msgid "Visit Batch"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:41 #: frontend/src/pages/JobDetail.vue:52
msgid "Visit Website" msgid "Visit Website"
msgstr "" msgstr ""
@@ -7355,7 +7405,7 @@ msgstr ""
msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session." msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session."
msgstr "" msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:22 #: lms/job/doctype/lms_job_application/lms_job_application.py:26
msgid "You have already applied for this job." msgid "You have already applied for this job."
msgstr "" msgstr ""
@@ -7371,7 +7421,7 @@ msgstr ""
msgid "You have already reviewed this course" msgid "You have already reviewed this course"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:57 #: frontend/src/pages/JobDetail.vue:68
msgid "You have applied" msgid "You have applied"
msgstr "" msgstr ""
@@ -7451,7 +7501,7 @@ msgstr ""
msgid "Your Account has been successfully created!" msgid "Your Account has been successfully created!"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:119 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:121
msgid "Your Output" msgid "Your Output"
msgstr "" msgstr ""
@@ -7459,7 +7509,7 @@ msgstr ""
msgid "Your batch {0} is starting tomorrow" msgid "Your batch {0} is starting tomorrow"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:134 #: frontend/src/pages/ProfileEvaluator.vue:143
msgid "Your calendar is set." msgid "Your calendar is set."
msgstr "" msgstr ""
@@ -7538,11 +7588,11 @@ msgstr "dan"
msgid "and then 'Add to Home Screen'" msgid "and then 'Add to Home Screen'"
msgstr "" msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114 #: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicant" msgid "applicant"
msgstr "" msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114 #: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicants" msgid "applicants"
msgstr "" msgstr ""

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2025-10-31 16:04+0000\n" "POT-Creation-Date: 2025-11-07 16:04+0000\n"
"PO-Revision-Date: 2025-11-02 19:07\n" "PO-Revision-Date: 2025-11-11 11:49\n"
"Last-Translator: jannat@frappe.io\n" "Last-Translator: jannat@frappe.io\n"
"Language-Team: Italian\n" "Language-Team: Italian\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -130,7 +130,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Batch Old' #. Option for the 'Status' (Select) field in DocType 'LMS Batch Old'
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
msgid "Active" msgid "Active"
msgstr "Attivo" msgstr ""
#: frontend/src/pages/Statistics.vue:16 #: frontend/src/pages/Statistics.vue:16
msgid "Active Members" msgid "Active Members"
@@ -148,7 +148,7 @@ msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:131 #: frontend/src/pages/Programs/ProgramForm.vue:131
#: frontend/src/pages/Programs/ProgramForm.vue:180 #: frontend/src/pages/Programs/ProgramForm.vue:180
msgid "Add" msgid "Add"
msgstr "" msgstr "Aggiungi"
#: frontend/src/components/CourseOutline.vue:18 #: frontend/src/components/CourseOutline.vue:18
#: frontend/src/components/CreateOutline.vue:18 #: frontend/src/components/CreateOutline.vue:18
@@ -176,7 +176,7 @@ msgstr ""
msgid "Add Row" msgid "Add Row"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:89 #: frontend/src/pages/ProfileEvaluator.vue:96
msgid "Add Slot" msgid "Add Slot"
msgstr "" msgstr ""
@@ -286,11 +286,11 @@ msgstr ""
#: frontend/src/pages/Billing.vue:74 #: frontend/src/pages/Billing.vue:74
msgid "Address Line 1" msgid "Address Line 1"
msgstr "" msgstr "Indirizzo"
#: frontend/src/pages/Billing.vue:78 #: frontend/src/pages/Billing.vue:78
msgid "Address Line 2" msgid "Address Line 2"
msgstr "" msgstr "Indirizzo 2"
#. Option for the 'Role' (Select) field in DocType 'Cohort Staff' #. Option for the 'Role' (Select) field in DocType 'Cohort Staff'
#. Option for the 'Required Role' (Select) field in DocType 'Cohort Web Page' #. Option for the 'Required Role' (Select) field in DocType 'Cohort Web Page'
@@ -426,12 +426,25 @@ msgstr ""
msgid "Appears when the batch URL is shared on socials" msgid "Appears when the batch URL is shared on socials"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:24
msgid "Application"
msgstr ""
#. Label of a field in the job-opportunity Web Form #. Label of a field in the job-opportunity Web Form
#: lms/job/web_form/job_opportunity/job_opportunity.json #: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Application Form Link" msgid "Application Form Link"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:51 #: frontend/src/pages/JobApplications.vue:14
#: frontend/src/pages/JobApplications.vue:25
msgid "Applications"
msgstr ""
#: frontend/src/pages/JobApplications.vue:290
msgid "Applied On"
msgstr ""
#: frontend/src/pages/JobDetail.vue:62
msgid "Apply" msgid "Apply"
msgstr "" msgstr ""
@@ -483,7 +496,7 @@ msgstr ""
#. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch' #. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the assessment (Table) field in DocType 'LMS Batch' #. Label of the assessment (Table) field in DocType 'LMS Batch'
#: frontend/src/components/Modals/AssessmentModal.vue:27 #: frontend/src/components/Modals/AssessmentModal.vue:27
#: frontend/src/components/Modals/BatchStudentProgress.vue:41 #: frontend/src/components/Modals/BatchStudentProgress.vue:43
#: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11 #: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11
msgid "Assessment" msgid "Assessment"
msgstr "" msgstr ""
@@ -569,7 +582,7 @@ msgstr ""
msgid "Assignment Title" msgid "Assignment Title"
msgstr "" msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:125 #: frontend/src/components/Modals/AssignmentForm.vue:133
msgid "Assignment created successfully" msgid "Assignment created successfully"
msgstr "" msgstr ""
@@ -581,7 +594,7 @@ msgstr ""
msgid "Assignment submitted successfully" msgid "Assignment submitted successfully"
msgstr "" msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:138 #: frontend/src/components/Modals/AssignmentForm.vue:146
msgid "Assignment updated successfully" msgid "Assignment updated successfully"
msgstr "" msgstr ""
@@ -622,7 +635,7 @@ msgstr ""
msgid "Attire Preference" msgid "Attire Preference"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:137 #: frontend/src/pages/ProfileEvaluator.vue:146
msgid "Authorize Google Calendar Access" msgid "Authorize Google Calendar Access"
msgstr "" msgstr ""
@@ -637,7 +650,7 @@ msgstr ""
msgid "Auto Recording" msgid "Auto Recording"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:224 #: frontend/src/pages/ProfileEvaluator.vue:241
msgid "Availability updated successfully" msgid "Availability updated successfully"
msgstr "" msgstr ""
@@ -768,6 +781,7 @@ msgstr ""
#. Name of a role #. Name of a role
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -998,7 +1012,7 @@ msgstr ""
msgid "Certificate of Completion" msgid "Certificate of Completion"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:317 #: frontend/src/components/Modals/Event.vue:348
msgid "Certificate saved successfully" msgid "Certificate saved successfully"
msgstr "" msgstr ""
@@ -1018,7 +1032,7 @@ msgstr ""
#. Label of a Card Break in the LMS Workspace #. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:626 #: frontend/src/components/AppSidebar.vue:626
#: frontend/src/components/Modals/Event.vue:381 #: frontend/src/components/Modals/Event.vue:412
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10 #: frontend/src/pages/CourseCertification.vue:10
#: frontend/src/pages/CourseCertification.vue:135 #: frontend/src/pages/CourseCertification.vue:135
@@ -1205,7 +1219,7 @@ msgstr ""
#: frontend/src/components/Settings/Categories.vue:27 #: frontend/src/components/Settings/Categories.vue:27
msgid "Close" msgid "Close"
msgstr "" msgstr "Vicino"
#. Option for the 'Status' (Select) field in DocType 'Job Opportunity' #. Option for the 'Status' (Select) field in DocType 'Job Opportunity'
#. Option in a Select field in the job-opportunity Web Form #. Option in a Select field in the job-opportunity Web Form
@@ -1214,7 +1228,7 @@ msgstr ""
#: lms/job/web_form/job_opportunity/job_opportunity.json #: lms/job/web_form/job_opportunity/job_opportunity.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
msgid "Closed" msgid "Closed"
msgstr "" msgstr "Chiuso"
#. Option for the 'Auto Recording' (Select) field in DocType 'LMS Live Class' #. Option for the 'Auto Recording' (Select) field in DocType 'LMS Live Class'
#: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -1361,7 +1375,7 @@ msgstr ""
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/job/web_form/job_opportunity/job_opportunity.json #: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Company Name" msgid "Company Name"
msgstr "" msgstr "Nome Azienda"
#. Label of the company_type (Select) field in DocType 'User' #. Label of the company_type (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
@@ -1640,6 +1654,7 @@ msgstr ""
#: lms/lms/doctype/course_chapter/course_chapter.json #: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json #: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
@@ -1757,7 +1772,7 @@ msgstr ""
#: frontend/src/components/BatchCourses.vue:5 #: frontend/src/components/BatchCourses.vue:5
#: frontend/src/components/BatchOverlay.vue:37 #: frontend/src/components/BatchOverlay.vue:37
#: frontend/src/components/BatchStudents.vue:25 #: frontend/src/components/BatchStudents.vue:25
#: frontend/src/components/Modals/BatchStudentProgress.vue:91 #: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127 #: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340 #: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340
@@ -1800,7 +1815,7 @@ msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExercises.vue:32 #: frontend/src/pages/ProgrammingExercises/ProgrammingExercises.vue:32
#: frontend/src/pages/Quizzes.vue:10 #: frontend/src/pages/Quizzes.vue:10
msgid "Create" msgid "Create"
msgstr "" msgstr "Creare"
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7
msgid "Create Certificate" msgid "Create Certificate"
@@ -1932,7 +1947,7 @@ msgstr ""
#. Label of the show_dashboard (Check) field in DocType 'LMS Settings' #. Label of the show_dashboard (Check) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Dashboard" msgid "Dashboard"
msgstr "Dashboard" msgstr ""
#. Label of the date (Date) field in DocType 'LMS Batch Timetable' #. Label of the date (Date) field in DocType 'LMS Batch Timetable'
#. Label of the date (Date) field in DocType 'LMS Certificate Evaluation' #. Label of the date (Date) field in DocType 'LMS Certificate Evaluation'
@@ -1948,7 +1963,7 @@ msgstr "Dashboard"
#: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/lms_live_class/lms_live_class.json
#: lms/lms/doctype/scheduled_flow/scheduled_flow.json #: lms/lms/doctype/scheduled_flow/scheduled_flow.json
msgid "Date" msgid "Date"
msgstr "" msgstr "Data"
#: frontend/src/pages/BatchForm.vue:76 #: frontend/src/pages/BatchForm.vue:76
msgid "Date and Time" msgid "Date and Time"
@@ -2003,7 +2018,7 @@ msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:67 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:67
#: frontend/src/pages/Programs/ProgramForm.vue:231 #: frontend/src/pages/Programs/ProgramForm.vue:231
msgid "Delete" msgid "Delete"
msgstr "Elimina" msgstr "Eliminare"
#: frontend/src/components/CourseOutline.vue:67 #: frontend/src/components/CourseOutline.vue:67
msgid "Delete Chapter" msgid "Delete Chapter"
@@ -2066,7 +2081,7 @@ msgstr ""
#: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/lms_live_class/lms_live_class.json
#: lms/lms/doctype/work_experience/work_experience.json #: lms/lms/doctype/work_experience/work_experience.json
msgid "Description" msgid "Description"
msgstr "" msgstr "Descrizione"
#: frontend/src/components/Apps.vue:51 #: frontend/src/components/Apps.vue:51
msgid "Desk" msgid "Desk"
@@ -2169,7 +2184,7 @@ msgstr ""
#: frontend/src/components/DiscussionReplies.vue:35 #: frontend/src/components/DiscussionReplies.vue:35
#: frontend/src/components/Modals/ChapterModal.vue:9 #: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/components/Settings/Badges.vue:156 #: frontend/src/components/Settings/Badges.vue:156
#: frontend/src/pages/JobDetail.vue:34 frontend/src/pages/Lesson.vue:42 #: frontend/src/pages/JobDetail.vue:45 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36 #: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36
msgid "Edit" msgid "Edit"
msgstr "Modifica" msgstr "Modifica"
@@ -2236,9 +2251,9 @@ msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:105 #: frontend/src/components/Settings/Evaluators.vue:105
#: frontend/src/components/Settings/Members.vue:103 #: frontend/src/components/Settings/Members.vue:103
#: lms/templates/signup-form.html:10 #: frontend/src/pages/JobApplications.vue:284 lms/templates/signup-form.html:10
msgid "Email" msgid "Email"
msgstr "" msgstr "E-mail"
#: frontend/src/components/Modals/Event.vue:16 #: frontend/src/components/Modals/Event.vue:16
msgid "Email ID" msgid "Email ID"
@@ -2272,6 +2287,7 @@ msgid "Email Templates deleted successfully"
msgstr "" msgstr ""
#: frontend/src/components/ContactUsEmail.vue:57 #: frontend/src/components/ContactUsEmail.vue:57
#: frontend/src/pages/JobApplications.vue:244
msgid "Email sent successfully" msgid "Email sent successfully"
msgstr "Email inviata con successo" msgstr "Email inviata con successo"
@@ -2414,6 +2430,14 @@ msgstr ""
msgid "Enter a URL" msgid "Enter a URL"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:122
msgid "Enter email subject"
msgstr ""
#: frontend/src/pages/JobApplications.vue:128
msgid "Enter reply to email"
msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:169 #: frontend/src/components/Modals/ZoomAccountModal.vue:169
msgid "Error creating Zoom Account" msgid "Error creating Zoom Account"
msgstr "" msgstr ""
@@ -2453,7 +2477,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace #. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:374 lms/lms/workspace/lms/lms.json #: frontend/src/components/Modals/Event.vue:405 lms/lms/workspace/lms/lms.json
msgid "Evaluation" msgid "Evaluation"
msgstr "" msgstr ""
@@ -2478,7 +2502,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date." msgid "Evaluation end date cannot be less than the batch end date."
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:256 #: frontend/src/components/Modals/Event.vue:287
msgid "Evaluation saved successfully" msgid "Evaluation saved successfully"
msgstr "" msgstr ""
@@ -2586,7 +2610,7 @@ msgstr "Espandi"
#. Label of the expected_output (Data) field in DocType 'LMS Test Case' #. Label of the expected_output (Data) field in DocType 'LMS Test Case'
#. Label of the expected_output (Data) field in DocType 'LMS Test Case #. Label of the expected_output (Data) field in DocType 'LMS Test Case
#. Submission' #. Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:127 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:129
#: lms/lms/doctype/lms_test_case/lms_test_case.json #: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Expected Output" msgid "Expected Output"
@@ -2599,7 +2623,7 @@ msgstr ""
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33 #: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:126 #: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date" msgid "Expiry Date"
msgstr "" msgstr ""
@@ -2626,7 +2650,7 @@ msgstr ""
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:366 #: frontend/src/components/Modals/Event.vue:397
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail" msgid "Fail"
@@ -2639,7 +2663,7 @@ msgstr "Errore"
#: lms/lms/doctype/lms_programming_exercise_submission/lms_programming_exercise_submission.json #: lms/lms/doctype/lms_programming_exercise_submission/lms_programming_exercise_submission.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Failed" msgid "Failed"
msgstr "" msgstr "Fallito"
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:136 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:136
msgid "Failed to create badge assignment: " msgid "Failed to create badge assignment: "
@@ -2657,7 +2681,7 @@ msgstr ""
msgid "Failed to send email" msgid "Failed to send email"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:358 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:364
msgid "Failed to submit. Please try again. {0}" msgid "Failed to submit. Please try again. {0}"
msgstr "" msgstr ""
@@ -2770,7 +2794,7 @@ msgid "Friday"
msgstr "" msgstr ""
#. Label of the unavailable_from (Date) field in DocType 'Course Evaluator' #. Label of the unavailable_from (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:99 #: frontend/src/pages/ProfileEvaluator.vue:106
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "From" msgid "From"
msgstr "" msgstr ""
@@ -2782,6 +2806,7 @@ msgstr ""
#. Label of the full_name (Data) field in DocType 'Course Evaluator' #. Label of the full_name (Data) field in DocType 'Course Evaluator'
#. Label of the full_name (Data) field in DocType 'LMS Program Member' #. Label of the full_name (Data) field in DocType 'LMS Program Member'
#: frontend/src/pages/JobApplications.vue:278
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json #: lms/lms/doctype/lms_program_member/lms_program_member.json
#: lms/templates/signup-form.html:5 #: lms/templates/signup-form.html:5
@@ -3019,13 +3044,13 @@ msgstr ""
msgid "I am looking for a job" msgid "I am looking for a job"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:94 #: frontend/src/pages/ProfileEvaluator.vue:101
msgid "I am unavailable" msgid "I am unavailable"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:334 #: frontend/src/pages/QuizForm.vue:334
msgid "ID" msgid "ID"
msgstr "ID" msgstr ""
#. Label of the icon (Data) field in DocType 'LMS Sidebar Item' #. Label of the icon (Data) field in DocType 'LMS Sidebar Item'
#: frontend/src/components/Modals/PageModal.vue:28 #: frontend/src/components/Modals/PageModal.vue:28
@@ -3105,7 +3130,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course' #. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:358 #: frontend/src/components/Modals/Event.vue:389
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
@@ -3161,7 +3186,7 @@ msgstr ""
#. Label of the input (Data) field in DocType 'LMS Test Case' #. Label of the input (Data) field in DocType 'LMS Test Case'
#. Label of the input (Data) field in DocType 'LMS Test Case Submission' #. Label of the input (Data) field in DocType 'LMS Test Case Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:113 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:115
#: lms/lms/doctype/lms_test_case/lms_test_case.json #: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Input" msgid "Input"
@@ -3273,7 +3298,7 @@ msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification' #. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate' #. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28 #: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:121 #: frontend/src/components/Modals/Event.vue:138
#: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date" msgid "Issue Date"
@@ -3358,8 +3383,8 @@ msgid "Job Title"
msgstr "" msgstr ""
#. Label of the jobs (Check) field in DocType 'LMS Settings' #. Label of the jobs (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/JobDetail.vue:10 frontend/src/pages/Jobs.vue:8 #: frontend/src/pages/JobApplications.vue:9 frontend/src/pages/JobDetail.vue:10
#: frontend/src/pages/Jobs.vue:212 #: frontend/src/pages/Jobs.vue:8 frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs" msgid "Jobs"
msgstr "" msgstr ""
@@ -3375,7 +3400,7 @@ msgstr ""
msgid "Join Call" msgid "Join Call"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:74 #: frontend/src/components/Modals/Event.vue:78
msgid "Join Meeting" msgid "Join Meeting"
msgstr "" msgstr ""
@@ -3866,7 +3891,7 @@ msgstr ""
#: lms/lms/doctype/education_detail/education_detail.json #: lms/lms/doctype/education_detail/education_detail.json
#: lms/lms/doctype/work_experience/work_experience.json #: lms/lms/doctype/work_experience/work_experience.json
msgid "Location" msgid "Location"
msgstr "Luogo" msgstr ""
#. Label of the location_preference (Select) field in DocType 'User' #. Label of the location_preference (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
@@ -3883,7 +3908,7 @@ msgstr "Login"
msgid "Login to Frappe Cloud?" msgid "Login to Frappe Cloud?"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:63 #: frontend/src/pages/JobDetail.vue:74
msgid "Login to apply" msgid "Login to apply"
msgstr "" msgstr ""
@@ -4228,9 +4253,14 @@ msgid "Mentor Request Status Update Template"
msgstr "" msgstr ""
#: frontend/src/components/ContactUsEmail.vue:19 #: frontend/src/components/ContactUsEmail.vue:19
#: frontend/src/pages/JobApplications.vue:132
msgid "Message" msgid "Message"
msgstr "Messaggio" msgstr "Messaggio"
#: frontend/src/pages/JobApplications.vue:240
msgid "Message is required"
msgstr ""
#. Label of the meta_description (Small Text) field in DocType 'LMS Settings' #. Label of the meta_description (Small Text) field in DocType 'LMS Settings'
#: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303 #: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -4351,7 +4381,7 @@ msgstr ""
msgid "My availability" msgid "My availability"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:127 #: frontend/src/pages/ProfileEvaluator.vue:136
msgid "My calendar" msgid "My calendar"
msgstr "" msgstr ""
@@ -4372,7 +4402,7 @@ msgstr ""
#: frontend/src/pages/Programs/Programs.vue:10 #: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json #: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New" msgid "New"
msgstr "" msgstr "Nuovo"
#: lms/www/lms.py:149 #: lms/www/lms.py:149
msgid "New Batch" msgid "New Batch"
@@ -4390,7 +4420,7 @@ msgstr ""
msgid "New Job" msgid "New Job"
msgstr "" msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:27 #: lms/job/doctype/lms_job_application/lms_job_application.py:31
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "" msgstr ""
@@ -4430,7 +4460,7 @@ msgstr "Nuovo {0}"
#: frontend/src/components/Quiz.vue:237 frontend/src/pages/Lesson.vue:51 #: frontend/src/components/Quiz.vue:237 frontend/src/pages/Lesson.vue:51
#: frontend/src/pages/Lesson.vue:187 #: frontend/src/pages/Lesson.vue:187
msgid "Next" msgid "Next"
msgstr "Successivo" msgstr ""
#: frontend/src/components/Assessments.vue:75 lms/templates/assessments.html:58 #: frontend/src/components/Assessments.vue:75 lms/templates/assessments.html:58
msgid "No Assessments" msgid "No Assessments"
@@ -4661,7 +4691,7 @@ msgstr ""
#: lms/job/web_form/job_opportunity/job_opportunity.json #: lms/job/web_form/job_opportunity/job_opportunity.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
msgid "Open" msgid "Open"
msgstr "" msgstr "Apri"
#: lms/templates/emails/assignment_submission.html:8 #: lms/templates/emails/assignment_submission.html:8
msgid "Open Assignment" msgid "Open Assignment"
@@ -4818,7 +4848,7 @@ msgstr ""
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:362 #: frontend/src/components/Modals/Event.vue:393
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass" msgid "Pass"
@@ -4945,12 +4975,12 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' #. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:354 #: frontend/src/components/Modals/Event.vue:385
#: lms/lms/doctype/cohort_join_request/cohort_join_request.json #: lms/lms/doctype/cohort_join_request/cohort_join_request.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending" msgid "Pending"
msgstr "" msgstr "In Attesa"
#. Label of the percentage (Int) field in DocType 'LMS Quiz Submission' #. Label of the percentage (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizSubmission.vue:44 #: frontend/src/pages/QuizSubmission.vue:44
@@ -4964,7 +4994,7 @@ msgstr ""
msgid "Percentage (e.g. 70%)" msgid "Percentage (e.g. 70%)"
msgstr "" msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:44 #: frontend/src/components/Modals/BatchStudentProgress.vue:46
msgid "Percentage/Status" msgid "Percentage/Status"
msgstr "" msgstr ""
@@ -5080,7 +5110,7 @@ msgstr ""
msgid "Please prepare well and be on time for the evaluations." msgid "Please prepare well and be on time for the evaluations."
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:135 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:139
msgid "Please run the code to execute the test cases." msgid "Please run the code to execute the test cases."
msgstr "" msgstr ""
@@ -5317,11 +5347,11 @@ msgstr ""
#: frontend/src/components/Settings/BadgeForm.vue:200 #: frontend/src/components/Settings/BadgeForm.vue:200
#: frontend/src/components/Settings/Badges.vue:205 #: frontend/src/components/Settings/Badges.vue:205
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:420 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:426
msgid "Programming Exercise Submission" msgid "Programming Exercise Submission"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:411 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:417
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298
msgid "Programming Exercise Submissions" msgid "Programming Exercise Submissions"
msgstr "" msgstr ""
@@ -5355,7 +5385,7 @@ msgstr ""
#. Label of the progress (Float) field in DocType 'LMS Enrollment' #. Label of the progress (Float) field in DocType 'LMS Enrollment'
#. Label of the progress (Int) field in DocType 'LMS Program Member' #. Label of the progress (Int) field in DocType 'LMS Program Member'
#: frontend/src/components/Modals/BatchStudentProgress.vue:94 #: frontend/src/components/Modals/BatchStudentProgress.vue:98
#: frontend/src/components/Modals/CourseProgressSummary.vue:224 #: frontend/src/components/Modals/CourseProgressSummary.vue:224
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json #: lms/lms/doctype/lms_enrollment/lms_enrollment.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json #: lms/lms/doctype/lms_program_member/lms_program_member.json
@@ -5401,7 +5431,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Course' #. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program' #. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51 #: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:108 #: frontend/src/components/Modals/Event.vue:122
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152 #: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100 #: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5569,7 +5599,7 @@ msgstr ""
#. Label of the rating (Data) field in DocType 'LMS Course' #. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review' #. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147 #: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:86 #: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/ReviewModal.vue:18 #: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
@@ -5656,6 +5686,7 @@ msgid "Remove Highlight"
msgstr "" msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:27 #: frontend/src/components/Modals/AnnouncementModal.vue:27
#: frontend/src/pages/JobApplications.vue:127
msgid "Reply To" msgid "Reply To"
msgstr "" msgstr ""
@@ -5815,8 +5846,8 @@ msgstr ""
#: frontend/src/components/Controls/CodeEditor.vue:25 #: frontend/src/components/Controls/CodeEditor.vue:25
#: frontend/src/components/Modals/AssignmentForm.vue:59 #: frontend/src/components/Modals/AssignmentForm.vue:59
#: frontend/src/components/Modals/EmailTemplateModal.vue:12 #: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:101 #: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:129 #: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
@@ -5955,13 +5986,22 @@ msgid "Select an assignment"
msgstr "" msgstr ""
#: frontend/src/components/ContactUsEmail.vue:33 #: frontend/src/components/ContactUsEmail.vue:33
#: frontend/src/pages/JobApplications.vue:110
msgid "Send" msgid "Send"
msgstr "Invia" msgstr ""
#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.js:7 #: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.js:7
msgid "Send Confirmation Email" msgid "Send Confirmation Email"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:268
msgid "Send Email"
msgstr ""
#: frontend/src/pages/JobApplications.vue:106
msgid "Send Email to {0}"
msgstr ""
#. Label of the send_calendar_invite_for_evaluations (Check) field in DocType #. Label of the send_calendar_invite_for_evaluations (Check) field in DocType
#. 'LMS Settings' #. 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -6004,7 +6044,7 @@ msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:19 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:19
#: frontend/src/pages/QuizForm.vue:86 #: frontend/src/pages/QuizForm.vue:86
msgid "Settings" msgid "Settings"
msgstr "Impostazioni" msgstr ""
#: frontend/src/pages/ProfileAbout.vue:79 #: frontend/src/pages/ProfileAbout.vue:79
msgid "Share on" msgid "Share on"
@@ -6122,11 +6162,11 @@ msgstr ""
msgid "Slot Times are overlapping for some schedules." msgid "Slot Times are overlapping for some schedules."
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:201 #: frontend/src/pages/ProfileEvaluator.vue:218
msgid "Slot added successfully" msgid "Slot added successfully"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:240 #: frontend/src/pages/ProfileEvaluator.vue:257
msgid "Slot deleted successfully" msgid "Slot deleted successfully"
msgstr "" msgstr ""
@@ -6265,7 +6305,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission' #. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission' #. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:91 #: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Settings/Badges.vue:228 #: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19 #: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6287,7 +6327,7 @@ msgstr ""
#: lms/lms/doctype/lms_programming_exercise_submission/lms_programming_exercise_submission.json #: lms/lms/doctype/lms_programming_exercise_submission/lms_programming_exercise_submission.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Status" msgid "Status"
msgstr "" msgstr "Stati"
#: lms/templates/assessments.html:17 #: lms/templates/assessments.html:17
msgid "Status/Score" msgid "Status/Score"
@@ -6336,10 +6376,12 @@ msgstr ""
#: frontend/src/components/ContactUsEmail.vue:13 #: frontend/src/components/ContactUsEmail.vue:13
#: frontend/src/components/Modals/AnnouncementModal.vue:20 #: frontend/src/components/Modals/AnnouncementModal.vue:20
#: frontend/src/components/Modals/EmailTemplateModal.vue:31 #: frontend/src/components/Modals/EmailTemplateModal.vue:31
#: frontend/src/pages/JobApplications.vue:121
msgid "Subject" msgid "Subject"
msgstr "" msgstr "Soggetto"
#: frontend/src/components/Modals/AnnouncementModal.vue:94 #: frontend/src/components/Modals/AnnouncementModal.vue:94
#: frontend/src/pages/JobApplications.vue:237
msgid "Subject is required" msgid "Subject is required"
msgstr "" msgstr ""
@@ -6356,7 +6398,7 @@ msgstr ""
msgid "Submission by" msgid "Submission by"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:353 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:359
msgid "Submission saved!" msgid "Submission saved!"
msgstr "" msgstr ""
@@ -6371,7 +6413,7 @@ msgstr ""
#: lms/templates/livecode/extension_footer.html:25 #: lms/templates/livecode/extension_footer.html:25
#: lms/templates/reviews.html:163 lms/www/new-sign-up.html:32 #: lms/templates/reviews.html:163 lms/www/new-sign-up.html:32
msgid "Submit" msgid "Submit"
msgstr "Conferma" msgstr ""
#: frontend/src/components/BatchFeedback.vue:35 #: frontend/src/components/BatchFeedback.vue:35
msgid "Submit Feedback" msgid "Submit Feedback"
@@ -6396,7 +6438,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:97 #: frontend/src/components/Modals/Event.vue:106
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary" msgid "Summary"
msgstr "" msgstr ""
@@ -6470,7 +6512,7 @@ msgstr "Tavolozza"
#: lms/lms/doctype/user_skill/user_skill.json #: lms/lms/doctype/user_skill/user_skill.json
#: lms/lms/doctype/zoom_settings/zoom_settings.json #: lms/lms/doctype/zoom_settings/zoom_settings.json
msgid "System Manager" msgid "System Manager"
msgstr "" msgstr "Amministratore Sistema"
#. Label of the tags (Data) field in DocType 'LMS Course' #. Label of the tags (Data) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:51 #: frontend/src/pages/CourseForm.vue:51
@@ -6501,11 +6543,11 @@ msgstr ""
#. Label of the template (Link) field in DocType 'Cohort Web Page' #. Label of the template (Link) field in DocType 'Cohort Web Page'
#. Label of the template (Link) field in DocType 'LMS Certificate' #. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43 #: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:112 #: frontend/src/components/Modals/Event.vue:127
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template" msgid "Template"
msgstr "" msgstr "Modelli"
#: lms/lms/user.py:40 #: lms/lms/user.py:40
msgid "Temporarily Disabled" msgid "Temporarily Disabled"
@@ -6542,7 +6584,7 @@ msgstr ""
msgid "Test this Exercise" msgid "Test this Exercise"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:92 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:93
msgid "Test {0}" msgid "Test {0}"
msgstr "" msgstr ""
@@ -6840,10 +6882,10 @@ msgid "Title is required"
msgstr "" msgstr ""
#. Label of the unavailable_to (Date) field in DocType 'Course Evaluator' #. Label of the unavailable_to (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:112 #: frontend/src/pages/ProfileEvaluator.vue:120
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "To" msgid "To"
msgstr "A" msgstr ""
#. Label of the to_date (Date) field in DocType 'Work Experience' #. Label of the to_date (Date) field in DocType 'Work Experience'
#: lms/lms/doctype/work_experience/work_experience.json #: lms/lms/doctype/work_experience/work_experience.json
@@ -6953,7 +6995,7 @@ msgstr "UUID"
msgid "Unavailability" msgid "Unavailability"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:259 #: frontend/src/pages/ProfileEvaluator.vue:276
msgid "Unavailability updated successfully" msgid "Unavailability updated successfully"
msgstr "" msgstr ""
@@ -7123,11 +7165,19 @@ msgstr ""
msgid "View" msgid "View"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:31
msgid "View Applications"
msgstr ""
#: frontend/src/components/CertificationLinks.vue:10 #: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67 #: frontend/src/components/Modals/Event.vue:67
msgid "View Certificate" msgid "View Certificate"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:262
msgid "View Resume"
msgstr ""
#: frontend/src/components/BatchFeedback.vue:56 #: frontend/src/components/BatchFeedback.vue:56
msgid "View all feedback" msgid "View all feedback"
msgstr "" msgstr ""
@@ -7146,7 +7196,7 @@ msgstr ""
msgid "Visit Batch" msgid "Visit Batch"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:41 #: frontend/src/pages/JobDetail.vue:52
msgid "Visit Website" msgid "Visit Website"
msgstr "" msgstr ""
@@ -7355,7 +7405,7 @@ msgstr ""
msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session." msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session."
msgstr "" msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:22 #: lms/job/doctype/lms_job_application/lms_job_application.py:26
msgid "You have already applied for this job." msgid "You have already applied for this job."
msgstr "" msgstr ""
@@ -7371,7 +7421,7 @@ msgstr ""
msgid "You have already reviewed this course" msgid "You have already reviewed this course"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:57 #: frontend/src/pages/JobDetail.vue:68
msgid "You have applied" msgid "You have applied"
msgstr "" msgstr ""
@@ -7451,7 +7501,7 @@ msgstr ""
msgid "Your Account has been successfully created!" msgid "Your Account has been successfully created!"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:119 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:121
msgid "Your Output" msgid "Your Output"
msgstr "" msgstr ""
@@ -7459,7 +7509,7 @@ msgstr ""
msgid "Your batch {0} is starting tomorrow" msgid "Your batch {0} is starting tomorrow"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:134 #: frontend/src/pages/ProfileEvaluator.vue:143
msgid "Your calendar is set." msgid "Your calendar is set."
msgstr "" msgstr ""
@@ -7538,11 +7588,11 @@ msgstr ""
msgid "and then 'Add to Home Screen'" msgid "and then 'Add to Home Screen'"
msgstr "" msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114 #: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicant" msgid "applicant"
msgstr "" msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114 #: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicants" msgid "applicants"
msgstr "" msgstr ""

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2025-10-31 16:04+0000\n" "POT-Creation-Date: 2025-11-07 16:04+0000\n"
"PO-Revision-Date: 2025-11-02 19:07\n" "PO-Revision-Date: 2025-11-11 11:49\n"
"Last-Translator: jannat@frappe.io\n" "Last-Translator: jannat@frappe.io\n"
"Language-Team: Burmese\n" "Language-Team: Burmese\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -176,7 +176,7 @@ msgstr ""
msgid "Add Row" msgid "Add Row"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:89 #: frontend/src/pages/ProfileEvaluator.vue:96
msgid "Add Slot" msgid "Add Slot"
msgstr "" msgstr ""
@@ -426,12 +426,25 @@ msgstr ""
msgid "Appears when the batch URL is shared on socials" msgid "Appears when the batch URL is shared on socials"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:24
msgid "Application"
msgstr ""
#. Label of a field in the job-opportunity Web Form #. Label of a field in the job-opportunity Web Form
#: lms/job/web_form/job_opportunity/job_opportunity.json #: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Application Form Link" msgid "Application Form Link"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:51 #: frontend/src/pages/JobApplications.vue:14
#: frontend/src/pages/JobApplications.vue:25
msgid "Applications"
msgstr ""
#: frontend/src/pages/JobApplications.vue:290
msgid "Applied On"
msgstr "လျှောက်ထားသည်"
#: frontend/src/pages/JobDetail.vue:62
msgid "Apply" msgid "Apply"
msgstr "" msgstr ""
@@ -483,7 +496,7 @@ msgstr ""
#. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch' #. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the assessment (Table) field in DocType 'LMS Batch' #. Label of the assessment (Table) field in DocType 'LMS Batch'
#: frontend/src/components/Modals/AssessmentModal.vue:27 #: frontend/src/components/Modals/AssessmentModal.vue:27
#: frontend/src/components/Modals/BatchStudentProgress.vue:41 #: frontend/src/components/Modals/BatchStudentProgress.vue:43
#: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11 #: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11
msgid "Assessment" msgid "Assessment"
msgstr "" msgstr ""
@@ -569,7 +582,7 @@ msgstr ""
msgid "Assignment Title" msgid "Assignment Title"
msgstr "" msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:125 #: frontend/src/components/Modals/AssignmentForm.vue:133
msgid "Assignment created successfully" msgid "Assignment created successfully"
msgstr "" msgstr ""
@@ -581,7 +594,7 @@ msgstr ""
msgid "Assignment submitted successfully" msgid "Assignment submitted successfully"
msgstr "" msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:138 #: frontend/src/components/Modals/AssignmentForm.vue:146
msgid "Assignment updated successfully" msgid "Assignment updated successfully"
msgstr "" msgstr ""
@@ -622,7 +635,7 @@ msgstr ""
msgid "Attire Preference" msgid "Attire Preference"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:137 #: frontend/src/pages/ProfileEvaluator.vue:146
msgid "Authorize Google Calendar Access" msgid "Authorize Google Calendar Access"
msgstr "" msgstr ""
@@ -637,7 +650,7 @@ msgstr ""
msgid "Auto Recording" msgid "Auto Recording"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:224 #: frontend/src/pages/ProfileEvaluator.vue:241
msgid "Availability updated successfully" msgid "Availability updated successfully"
msgstr "" msgstr ""
@@ -768,6 +781,7 @@ msgstr ""
#. Name of a role #. Name of a role
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -998,7 +1012,7 @@ msgstr ""
msgid "Certificate of Completion" msgid "Certificate of Completion"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:317 #: frontend/src/components/Modals/Event.vue:348
msgid "Certificate saved successfully" msgid "Certificate saved successfully"
msgstr "" msgstr ""
@@ -1018,7 +1032,7 @@ msgstr ""
#. Label of a Card Break in the LMS Workspace #. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:626 #: frontend/src/components/AppSidebar.vue:626
#: frontend/src/components/Modals/Event.vue:381 #: frontend/src/components/Modals/Event.vue:412
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10 #: frontend/src/pages/CourseCertification.vue:10
#: frontend/src/pages/CourseCertification.vue:135 #: frontend/src/pages/CourseCertification.vue:135
@@ -1640,6 +1654,7 @@ msgstr ""
#: lms/lms/doctype/course_chapter/course_chapter.json #: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json #: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
@@ -1757,7 +1772,7 @@ msgstr ""
#: frontend/src/components/BatchCourses.vue:5 #: frontend/src/components/BatchCourses.vue:5
#: frontend/src/components/BatchOverlay.vue:37 #: frontend/src/components/BatchOverlay.vue:37
#: frontend/src/components/BatchStudents.vue:25 #: frontend/src/components/BatchStudents.vue:25
#: frontend/src/components/Modals/BatchStudentProgress.vue:91 #: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127 #: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340 #: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340
@@ -2169,7 +2184,7 @@ msgstr ""
#: frontend/src/components/DiscussionReplies.vue:35 #: frontend/src/components/DiscussionReplies.vue:35
#: frontend/src/components/Modals/ChapterModal.vue:9 #: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/components/Settings/Badges.vue:156 #: frontend/src/components/Settings/Badges.vue:156
#: frontend/src/pages/JobDetail.vue:34 frontend/src/pages/Lesson.vue:42 #: frontend/src/pages/JobDetail.vue:45 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36 #: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36
msgid "Edit" msgid "Edit"
msgstr "" msgstr ""
@@ -2236,7 +2251,7 @@ msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:105 #: frontend/src/components/Settings/Evaluators.vue:105
#: frontend/src/components/Settings/Members.vue:103 #: frontend/src/components/Settings/Members.vue:103
#: lms/templates/signup-form.html:10 #: frontend/src/pages/JobApplications.vue:284 lms/templates/signup-form.html:10
msgid "Email" msgid "Email"
msgstr "" msgstr ""
@@ -2272,6 +2287,7 @@ msgid "Email Templates deleted successfully"
msgstr "" msgstr ""
#: frontend/src/components/ContactUsEmail.vue:57 #: frontend/src/components/ContactUsEmail.vue:57
#: frontend/src/pages/JobApplications.vue:244
msgid "Email sent successfully" msgid "Email sent successfully"
msgstr "" msgstr ""
@@ -2414,6 +2430,14 @@ msgstr ""
msgid "Enter a URL" msgid "Enter a URL"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:122
msgid "Enter email subject"
msgstr ""
#: frontend/src/pages/JobApplications.vue:128
msgid "Enter reply to email"
msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:169 #: frontend/src/components/Modals/ZoomAccountModal.vue:169
msgid "Error creating Zoom Account" msgid "Error creating Zoom Account"
msgstr "" msgstr ""
@@ -2453,7 +2477,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace #. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:374 lms/lms/workspace/lms/lms.json #: frontend/src/components/Modals/Event.vue:405 lms/lms/workspace/lms/lms.json
msgid "Evaluation" msgid "Evaluation"
msgstr "" msgstr ""
@@ -2478,7 +2502,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date." msgid "Evaluation end date cannot be less than the batch end date."
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:256 #: frontend/src/components/Modals/Event.vue:287
msgid "Evaluation saved successfully" msgid "Evaluation saved successfully"
msgstr "" msgstr ""
@@ -2586,7 +2610,7 @@ msgstr ""
#. Label of the expected_output (Data) field in DocType 'LMS Test Case' #. Label of the expected_output (Data) field in DocType 'LMS Test Case'
#. Label of the expected_output (Data) field in DocType 'LMS Test Case #. Label of the expected_output (Data) field in DocType 'LMS Test Case
#. Submission' #. Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:127 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:129
#: lms/lms/doctype/lms_test_case/lms_test_case.json #: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Expected Output" msgid "Expected Output"
@@ -2599,7 +2623,7 @@ msgstr ""
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33 #: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:126 #: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date" msgid "Expiry Date"
msgstr "" msgstr ""
@@ -2626,7 +2650,7 @@ msgstr ""
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:366 #: frontend/src/components/Modals/Event.vue:397
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail" msgid "Fail"
@@ -2657,7 +2681,7 @@ msgstr ""
msgid "Failed to send email" msgid "Failed to send email"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:358 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:364
msgid "Failed to submit. Please try again. {0}" msgid "Failed to submit. Please try again. {0}"
msgstr "" msgstr ""
@@ -2770,7 +2794,7 @@ msgid "Friday"
msgstr "" msgstr ""
#. Label of the unavailable_from (Date) field in DocType 'Course Evaluator' #. Label of the unavailable_from (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:99 #: frontend/src/pages/ProfileEvaluator.vue:106
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "From" msgid "From"
msgstr "" msgstr ""
@@ -2782,6 +2806,7 @@ msgstr ""
#. Label of the full_name (Data) field in DocType 'Course Evaluator' #. Label of the full_name (Data) field in DocType 'Course Evaluator'
#. Label of the full_name (Data) field in DocType 'LMS Program Member' #. Label of the full_name (Data) field in DocType 'LMS Program Member'
#: frontend/src/pages/JobApplications.vue:278
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json #: lms/lms/doctype/lms_program_member/lms_program_member.json
#: lms/templates/signup-form.html:5 #: lms/templates/signup-form.html:5
@@ -3019,7 +3044,7 @@ msgstr ""
msgid "I am looking for a job" msgid "I am looking for a job"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:94 #: frontend/src/pages/ProfileEvaluator.vue:101
msgid "I am unavailable" msgid "I am unavailable"
msgstr "" msgstr ""
@@ -3105,7 +3130,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course' #. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:358 #: frontend/src/components/Modals/Event.vue:389
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
@@ -3161,7 +3186,7 @@ msgstr ""
#. Label of the input (Data) field in DocType 'LMS Test Case' #. Label of the input (Data) field in DocType 'LMS Test Case'
#. Label of the input (Data) field in DocType 'LMS Test Case Submission' #. Label of the input (Data) field in DocType 'LMS Test Case Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:113 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:115
#: lms/lms/doctype/lms_test_case/lms_test_case.json #: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Input" msgid "Input"
@@ -3273,7 +3298,7 @@ msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification' #. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate' #. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28 #: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:121 #: frontend/src/components/Modals/Event.vue:138
#: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date" msgid "Issue Date"
@@ -3358,8 +3383,8 @@ msgid "Job Title"
msgstr "" msgstr ""
#. Label of the jobs (Check) field in DocType 'LMS Settings' #. Label of the jobs (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/JobDetail.vue:10 frontend/src/pages/Jobs.vue:8 #: frontend/src/pages/JobApplications.vue:9 frontend/src/pages/JobDetail.vue:10
#: frontend/src/pages/Jobs.vue:212 #: frontend/src/pages/Jobs.vue:8 frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs" msgid "Jobs"
msgstr "" msgstr ""
@@ -3375,7 +3400,7 @@ msgstr ""
msgid "Join Call" msgid "Join Call"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:74 #: frontend/src/components/Modals/Event.vue:78
msgid "Join Meeting" msgid "Join Meeting"
msgstr "" msgstr ""
@@ -3883,7 +3908,7 @@ msgstr ""
msgid "Login to Frappe Cloud?" msgid "Login to Frappe Cloud?"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:63 #: frontend/src/pages/JobDetail.vue:74
msgid "Login to apply" msgid "Login to apply"
msgstr "" msgstr ""
@@ -4228,9 +4253,14 @@ msgid "Mentor Request Status Update Template"
msgstr "" msgstr ""
#: frontend/src/components/ContactUsEmail.vue:19 #: frontend/src/components/ContactUsEmail.vue:19
#: frontend/src/pages/JobApplications.vue:132
msgid "Message" msgid "Message"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:240
msgid "Message is required"
msgstr ""
#. Label of the meta_description (Small Text) field in DocType 'LMS Settings' #. Label of the meta_description (Small Text) field in DocType 'LMS Settings'
#: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303 #: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -4351,7 +4381,7 @@ msgstr ""
msgid "My availability" msgid "My availability"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:127 #: frontend/src/pages/ProfileEvaluator.vue:136
msgid "My calendar" msgid "My calendar"
msgstr "" msgstr ""
@@ -4390,7 +4420,7 @@ msgstr ""
msgid "New Job" msgid "New Job"
msgstr "" msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:27 #: lms/job/doctype/lms_job_application/lms_job_application.py:31
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "" msgstr ""
@@ -4818,7 +4848,7 @@ msgstr ""
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:362 #: frontend/src/components/Modals/Event.vue:393
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass" msgid "Pass"
@@ -4945,7 +4975,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' #. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:354 #: frontend/src/components/Modals/Event.vue:385
#: lms/lms/doctype/cohort_join_request/cohort_join_request.json #: lms/lms/doctype/cohort_join_request/cohort_join_request.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
@@ -4964,7 +4994,7 @@ msgstr ""
msgid "Percentage (e.g. 70%)" msgid "Percentage (e.g. 70%)"
msgstr "" msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:44 #: frontend/src/components/Modals/BatchStudentProgress.vue:46
msgid "Percentage/Status" msgid "Percentage/Status"
msgstr "" msgstr ""
@@ -5080,7 +5110,7 @@ msgstr ""
msgid "Please prepare well and be on time for the evaluations." msgid "Please prepare well and be on time for the evaluations."
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:135 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:139
msgid "Please run the code to execute the test cases." msgid "Please run the code to execute the test cases."
msgstr "" msgstr ""
@@ -5317,11 +5347,11 @@ msgstr ""
#: frontend/src/components/Settings/BadgeForm.vue:200 #: frontend/src/components/Settings/BadgeForm.vue:200
#: frontend/src/components/Settings/Badges.vue:205 #: frontend/src/components/Settings/Badges.vue:205
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:420 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:426
msgid "Programming Exercise Submission" msgid "Programming Exercise Submission"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:411 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:417
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298
msgid "Programming Exercise Submissions" msgid "Programming Exercise Submissions"
msgstr "" msgstr ""
@@ -5355,7 +5385,7 @@ msgstr ""
#. Label of the progress (Float) field in DocType 'LMS Enrollment' #. Label of the progress (Float) field in DocType 'LMS Enrollment'
#. Label of the progress (Int) field in DocType 'LMS Program Member' #. Label of the progress (Int) field in DocType 'LMS Program Member'
#: frontend/src/components/Modals/BatchStudentProgress.vue:94 #: frontend/src/components/Modals/BatchStudentProgress.vue:98
#: frontend/src/components/Modals/CourseProgressSummary.vue:224 #: frontend/src/components/Modals/CourseProgressSummary.vue:224
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json #: lms/lms/doctype/lms_enrollment/lms_enrollment.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json #: lms/lms/doctype/lms_program_member/lms_program_member.json
@@ -5401,7 +5431,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Course' #. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program' #. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51 #: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:108 #: frontend/src/components/Modals/Event.vue:122
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152 #: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100 #: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5569,7 +5599,7 @@ msgstr ""
#. Label of the rating (Data) field in DocType 'LMS Course' #. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review' #. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147 #: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:86 #: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/ReviewModal.vue:18 #: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
@@ -5656,6 +5686,7 @@ msgid "Remove Highlight"
msgstr "" msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:27 #: frontend/src/components/Modals/AnnouncementModal.vue:27
#: frontend/src/pages/JobApplications.vue:127
msgid "Reply To" msgid "Reply To"
msgstr "" msgstr ""
@@ -5815,8 +5846,8 @@ msgstr ""
#: frontend/src/components/Controls/CodeEditor.vue:25 #: frontend/src/components/Controls/CodeEditor.vue:25
#: frontend/src/components/Modals/AssignmentForm.vue:59 #: frontend/src/components/Modals/AssignmentForm.vue:59
#: frontend/src/components/Modals/EmailTemplateModal.vue:12 #: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:101 #: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:129 #: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
@@ -5955,6 +5986,7 @@ msgid "Select an assignment"
msgstr "" msgstr ""
#: frontend/src/components/ContactUsEmail.vue:33 #: frontend/src/components/ContactUsEmail.vue:33
#: frontend/src/pages/JobApplications.vue:110
msgid "Send" msgid "Send"
msgstr "ပေးပို့" msgstr "ပေးပို့"
@@ -5962,6 +5994,14 @@ msgstr "ပေးပို့"
msgid "Send Confirmation Email" msgid "Send Confirmation Email"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:268
msgid "Send Email"
msgstr ""
#: frontend/src/pages/JobApplications.vue:106
msgid "Send Email to {0}"
msgstr ""
#. Label of the send_calendar_invite_for_evaluations (Check) field in DocType #. Label of the send_calendar_invite_for_evaluations (Check) field in DocType
#. 'LMS Settings' #. 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -6122,11 +6162,11 @@ msgstr ""
msgid "Slot Times are overlapping for some schedules." msgid "Slot Times are overlapping for some schedules."
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:201 #: frontend/src/pages/ProfileEvaluator.vue:218
msgid "Slot added successfully" msgid "Slot added successfully"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:240 #: frontend/src/pages/ProfileEvaluator.vue:257
msgid "Slot deleted successfully" msgid "Slot deleted successfully"
msgstr "" msgstr ""
@@ -6265,7 +6305,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission' #. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission' #. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:91 #: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Settings/Badges.vue:228 #: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19 #: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6336,10 +6376,12 @@ msgstr ""
#: frontend/src/components/ContactUsEmail.vue:13 #: frontend/src/components/ContactUsEmail.vue:13
#: frontend/src/components/Modals/AnnouncementModal.vue:20 #: frontend/src/components/Modals/AnnouncementModal.vue:20
#: frontend/src/components/Modals/EmailTemplateModal.vue:31 #: frontend/src/components/Modals/EmailTemplateModal.vue:31
#: frontend/src/pages/JobApplications.vue:121
msgid "Subject" msgid "Subject"
msgstr "" msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:94 #: frontend/src/components/Modals/AnnouncementModal.vue:94
#: frontend/src/pages/JobApplications.vue:237
msgid "Subject is required" msgid "Subject is required"
msgstr "" msgstr ""
@@ -6356,7 +6398,7 @@ msgstr ""
msgid "Submission by" msgid "Submission by"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:353 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:359
msgid "Submission saved!" msgid "Submission saved!"
msgstr "" msgstr ""
@@ -6396,7 +6438,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:97 #: frontend/src/components/Modals/Event.vue:106
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary" msgid "Summary"
msgstr "" msgstr ""
@@ -6501,7 +6543,7 @@ msgstr ""
#. Label of the template (Link) field in DocType 'Cohort Web Page' #. Label of the template (Link) field in DocType 'Cohort Web Page'
#. Label of the template (Link) field in DocType 'LMS Certificate' #. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43 #: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:112 #: frontend/src/components/Modals/Event.vue:127
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template" msgid "Template"
@@ -6542,7 +6584,7 @@ msgstr ""
msgid "Test this Exercise" msgid "Test this Exercise"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:92 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:93
msgid "Test {0}" msgid "Test {0}"
msgstr "" msgstr ""
@@ -6840,7 +6882,7 @@ msgid "Title is required"
msgstr "" msgstr ""
#. Label of the unavailable_to (Date) field in DocType 'Course Evaluator' #. Label of the unavailable_to (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:112 #: frontend/src/pages/ProfileEvaluator.vue:120
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "To" msgid "To"
msgstr "" msgstr ""
@@ -6953,7 +6995,7 @@ msgstr ""
msgid "Unavailability" msgid "Unavailability"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:259 #: frontend/src/pages/ProfileEvaluator.vue:276
msgid "Unavailability updated successfully" msgid "Unavailability updated successfully"
msgstr "" msgstr ""
@@ -7123,11 +7165,19 @@ msgstr ""
msgid "View" msgid "View"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:31
msgid "View Applications"
msgstr ""
#: frontend/src/components/CertificationLinks.vue:10 #: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67 #: frontend/src/components/Modals/Event.vue:67
msgid "View Certificate" msgid "View Certificate"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:262
msgid "View Resume"
msgstr ""
#: frontend/src/components/BatchFeedback.vue:56 #: frontend/src/components/BatchFeedback.vue:56
msgid "View all feedback" msgid "View all feedback"
msgstr "" msgstr ""
@@ -7146,7 +7196,7 @@ msgstr ""
msgid "Visit Batch" msgid "Visit Batch"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:41 #: frontend/src/pages/JobDetail.vue:52
msgid "Visit Website" msgid "Visit Website"
msgstr "" msgstr ""
@@ -7355,7 +7405,7 @@ msgstr ""
msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session." msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session."
msgstr "" msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:22 #: lms/job/doctype/lms_job_application/lms_job_application.py:26
msgid "You have already applied for this job." msgid "You have already applied for this job."
msgstr "" msgstr ""
@@ -7371,7 +7421,7 @@ msgstr ""
msgid "You have already reviewed this course" msgid "You have already reviewed this course"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:57 #: frontend/src/pages/JobDetail.vue:68
msgid "You have applied" msgid "You have applied"
msgstr "" msgstr ""
@@ -7451,7 +7501,7 @@ msgstr ""
msgid "Your Account has been successfully created!" msgid "Your Account has been successfully created!"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:119 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:121
msgid "Your Output" msgid "Your Output"
msgstr "" msgstr ""
@@ -7459,7 +7509,7 @@ msgstr ""
msgid "Your batch {0} is starting tomorrow" msgid "Your batch {0} is starting tomorrow"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:134 #: frontend/src/pages/ProfileEvaluator.vue:143
msgid "Your calendar is set." msgid "Your calendar is set."
msgstr "" msgstr ""
@@ -7538,11 +7588,11 @@ msgstr ""
msgid "and then 'Add to Home Screen'" msgid "and then 'Add to Home Screen'"
msgstr "" msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114 #: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicant" msgid "applicant"
msgstr "" msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114 #: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicants" msgid "applicants"
msgstr "" msgstr ""

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2025-10-31 16:04+0000\n" "POT-Creation-Date: 2025-11-07 16:04+0000\n"
"PO-Revision-Date: 2025-11-02 19:07\n" "PO-Revision-Date: 2025-11-11 11:49\n"
"Last-Translator: jannat@frappe.io\n" "Last-Translator: jannat@frappe.io\n"
"Language-Team: Norwegian Bokmal\n" "Language-Team: Norwegian Bokmal\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -176,7 +176,7 @@ msgstr ""
msgid "Add Row" msgid "Add Row"
msgstr "Legg til Rad" msgstr "Legg til Rad"
#: frontend/src/pages/ProfileEvaluator.vue:89 #: frontend/src/pages/ProfileEvaluator.vue:96
msgid "Add Slot" msgid "Add Slot"
msgstr "" msgstr ""
@@ -290,7 +290,7 @@ msgstr "Adresselinje 1"
#: frontend/src/pages/Billing.vue:78 #: frontend/src/pages/Billing.vue:78
msgid "Address Line 2" msgid "Address Line 2"
msgstr "Adresselinje 2" msgstr "Adresselinje 2:"
#. Option for the 'Role' (Select) field in DocType 'Cohort Staff' #. Option for the 'Role' (Select) field in DocType 'Cohort Staff'
#. Option for the 'Required Role' (Select) field in DocType 'Cohort Web Page' #. Option for the 'Required Role' (Select) field in DocType 'Cohort Web Page'
@@ -304,7 +304,7 @@ msgstr ""
#. Name of a role #. Name of a role
#: frontend/src/pages/Batches.vue:275 lms/lms/doctype/lms_badge/lms_badge.json #: frontend/src/pages/Batches.vue:275 lms/lms/doctype/lms_badge/lms_badge.json
msgid "All" msgid "All"
msgstr "" msgstr "Alle"
#: frontend/src/pages/Batches.vue:26 #: frontend/src/pages/Batches.vue:26
msgid "All Batches" msgid "All Batches"
@@ -426,12 +426,25 @@ msgstr ""
msgid "Appears when the batch URL is shared on socials" msgid "Appears when the batch URL is shared on socials"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:24
msgid "Application"
msgstr ""
#. Label of a field in the job-opportunity Web Form #. Label of a field in the job-opportunity Web Form
#: lms/job/web_form/job_opportunity/job_opportunity.json #: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Application Form Link" msgid "Application Form Link"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:51 #: frontend/src/pages/JobApplications.vue:14
#: frontend/src/pages/JobApplications.vue:25
msgid "Applications"
msgstr ""
#: frontend/src/pages/JobApplications.vue:290
msgid "Applied On"
msgstr "Anvendt på"
#: frontend/src/pages/JobDetail.vue:62
msgid "Apply" msgid "Apply"
msgstr "" msgstr ""
@@ -483,7 +496,7 @@ msgstr ""
#. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch' #. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the assessment (Table) field in DocType 'LMS Batch' #. Label of the assessment (Table) field in DocType 'LMS Batch'
#: frontend/src/components/Modals/AssessmentModal.vue:27 #: frontend/src/components/Modals/AssessmentModal.vue:27
#: frontend/src/components/Modals/BatchStudentProgress.vue:41 #: frontend/src/components/Modals/BatchStudentProgress.vue:43
#: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11 #: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11
msgid "Assessment" msgid "Assessment"
msgstr "" msgstr ""
@@ -546,7 +559,7 @@ msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/templates/assignment.html:3 #: lms/templates/assignment.html:3
msgid "Assignment" msgid "Assignment"
msgstr "Tildeling" msgstr "Oppgave"
#. Label of the assignment_attachment (Attach) field in DocType 'LMS Assignment #. Label of the assignment_attachment (Attach) field in DocType 'LMS Assignment
#. Submission' #. Submission'
@@ -569,7 +582,7 @@ msgstr ""
msgid "Assignment Title" msgid "Assignment Title"
msgstr "" msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:125 #: frontend/src/components/Modals/AssignmentForm.vue:133
msgid "Assignment created successfully" msgid "Assignment created successfully"
msgstr "" msgstr ""
@@ -581,7 +594,7 @@ msgstr ""
msgid "Assignment submitted successfully" msgid "Assignment submitted successfully"
msgstr "" msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:138 #: frontend/src/components/Modals/AssignmentForm.vue:146
msgid "Assignment updated successfully" msgid "Assignment updated successfully"
msgstr "" msgstr ""
@@ -622,7 +635,7 @@ msgstr ""
msgid "Attire Preference" msgid "Attire Preference"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:137 #: frontend/src/pages/ProfileEvaluator.vue:146
msgid "Authorize Google Calendar Access" msgid "Authorize Google Calendar Access"
msgstr "Autoriser tilgang til Google Kalender" msgstr "Autoriser tilgang til Google Kalender"
@@ -637,7 +650,7 @@ msgstr ""
msgid "Auto Recording" msgid "Auto Recording"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:224 #: frontend/src/pages/ProfileEvaluator.vue:241
msgid "Availability updated successfully" msgid "Availability updated successfully"
msgstr "" msgstr ""
@@ -768,6 +781,7 @@ msgstr ""
#. Name of a role #. Name of a role
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -886,7 +900,7 @@ msgstr ""
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json #: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
msgid "Blue" msgid "Blue"
msgstr "" msgstr "Blå"
#. Label of the body (Markdown Editor) field in DocType 'Course Lesson' #. Label of the body (Markdown Editor) field in DocType 'Course Lesson'
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
@@ -998,7 +1012,7 @@ msgstr ""
msgid "Certificate of Completion" msgid "Certificate of Completion"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:317 #: frontend/src/components/Modals/Event.vue:348
msgid "Certificate saved successfully" msgid "Certificate saved successfully"
msgstr "" msgstr ""
@@ -1018,7 +1032,7 @@ msgstr ""
#. Label of a Card Break in the LMS Workspace #. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:626 #: frontend/src/components/AppSidebar.vue:626
#: frontend/src/components/Modals/Event.vue:381 #: frontend/src/components/Modals/Event.vue:412
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10 #: frontend/src/pages/CourseCertification.vue:10
#: frontend/src/pages/CourseCertification.vue:135 #: frontend/src/pages/CourseCertification.vue:135
@@ -1168,7 +1182,7 @@ msgstr ""
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "City" msgid "City"
msgstr "" msgstr "Poststed"
#: lms/templates/emails/live_class_reminder.html:10 #: lms/templates/emails/live_class_reminder.html:10
msgid "Class:" msgid "Class:"
@@ -1205,7 +1219,7 @@ msgstr ""
#: frontend/src/components/Settings/Categories.vue:27 #: frontend/src/components/Settings/Categories.vue:27
msgid "Close" msgid "Close"
msgstr "" msgstr "Lukk"
#. Option for the 'Status' (Select) field in DocType 'Job Opportunity' #. Option for the 'Status' (Select) field in DocType 'Job Opportunity'
#. Option in a Select field in the job-opportunity Web Form #. Option in a Select field in the job-opportunity Web Form
@@ -1214,7 +1228,7 @@ msgstr ""
#: lms/job/web_form/job_opportunity/job_opportunity.json #: lms/job/web_form/job_opportunity/job_opportunity.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
msgid "Closed" msgid "Closed"
msgstr "" msgstr "Lukket"
#. Option for the 'Auto Recording' (Select) field in DocType 'LMS Live Class' #. Option for the 'Auto Recording' (Select) field in DocType 'LMS Live Class'
#: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -1311,7 +1325,7 @@ msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Comments" msgid "Comments"
msgstr "" msgstr "Kommentarer"
#: frontend/src/components/Assignment.vue:148 #: frontend/src/components/Assignment.vue:148
msgid "Comments by Evaluator" msgid "Comments by Evaluator"
@@ -1361,7 +1375,7 @@ msgstr ""
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/job/web_form/job_opportunity/job_opportunity.json #: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Company Name" msgid "Company Name"
msgstr "" msgstr "Selskapets navn"
#. Label of the company_type (Select) field in DocType 'User' #. Label of the company_type (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
@@ -1385,7 +1399,7 @@ msgstr ""
#: lms/lms/doctype/lms_course_progress/lms_course_progress.json #: lms/lms/doctype/lms_course_progress/lms_course_progress.json
#: lms/lms/widgets/CourseCard.html:75 lms/templates/reviews.html:48 #: lms/lms/widgets/CourseCard.html:75 lms/templates/reviews.html:48
msgid "Complete" msgid "Complete"
msgstr "" msgstr "Fullført"
#: lms/templates/emails/lms_invite_request_approved.html:7 #: lms/templates/emails/lms_invite_request_approved.html:7
msgid "Complete Sign Up" msgid "Complete Sign Up"
@@ -1541,7 +1555,7 @@ msgstr ""
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/payment_country/payment_country.json #: lms/lms/doctype/payment_country/payment_country.json
msgid "Country" msgid "Country"
msgstr "" msgstr "Land"
#. Label of the course (Link) field in DocType 'Batch Course' #. Label of the course (Link) field in DocType 'Batch Course'
#. Label of the course (Link) field in DocType 'Cohort' #. Label of the course (Link) field in DocType 'Cohort'
@@ -1640,6 +1654,7 @@ msgstr ""
#: lms/lms/doctype/course_chapter/course_chapter.json #: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json #: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
@@ -1757,7 +1772,7 @@ msgstr ""
#: frontend/src/components/BatchCourses.vue:5 #: frontend/src/components/BatchCourses.vue:5
#: frontend/src/components/BatchOverlay.vue:37 #: frontend/src/components/BatchOverlay.vue:37
#: frontend/src/components/BatchStudents.vue:25 #: frontend/src/components/BatchStudents.vue:25
#: frontend/src/components/Modals/BatchStudentProgress.vue:91 #: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127 #: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340 #: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340
@@ -1800,7 +1815,7 @@ msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExercises.vue:32 #: frontend/src/pages/ProgrammingExercises/ProgrammingExercises.vue:32
#: frontend/src/pages/Quizzes.vue:10 #: frontend/src/pages/Quizzes.vue:10
msgid "Create" msgid "Create"
msgstr "" msgstr "Opprett"
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7
msgid "Create Certificate" msgid "Create Certificate"
@@ -1888,7 +1903,7 @@ msgstr ""
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_payment/lms_payment.json #: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Currency" msgid "Currency"
msgstr "" msgstr "Valuta"
#. Label of the current_lesson (Link) field in DocType 'LMS Enrollment' #. Label of the current_lesson (Link) field in DocType 'LMS Enrollment'
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json #: lms/lms/doctype/lms_enrollment/lms_enrollment.json
@@ -1932,7 +1947,7 @@ msgstr ""
#. Label of the show_dashboard (Check) field in DocType 'LMS Settings' #. Label of the show_dashboard (Check) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Dashboard" msgid "Dashboard"
msgstr "" msgstr "Oversiktspanel"
#. Label of the date (Date) field in DocType 'LMS Batch Timetable' #. Label of the date (Date) field in DocType 'LMS Batch Timetable'
#. Label of the date (Date) field in DocType 'LMS Certificate Evaluation' #. Label of the date (Date) field in DocType 'LMS Certificate Evaluation'
@@ -1948,7 +1963,7 @@ msgstr ""
#: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/lms_live_class/lms_live_class.json
#: lms/lms/doctype/scheduled_flow/scheduled_flow.json #: lms/lms/doctype/scheduled_flow/scheduled_flow.json
msgid "Date" msgid "Date"
msgstr "" msgstr "Dato"
#: frontend/src/pages/BatchForm.vue:76 #: frontend/src/pages/BatchForm.vue:76
msgid "Date and Time" msgid "Date and Time"
@@ -1971,7 +1986,7 @@ msgstr "Dag"
#: lms/templates/emails/mentor_request_creation_email.html:2 #: lms/templates/emails/mentor_request_creation_email.html:2
#: lms/templates/emails/mentor_request_status_update_email.html:2 #: lms/templates/emails/mentor_request_status_update_email.html:2
msgid "Dear" msgid "Dear"
msgstr "" msgstr "Kjære"
#: lms/templates/emails/batch_confirmation.html:2 #: lms/templates/emails/batch_confirmation.html:2
#: lms/templates/emails/batch_start_reminder.html:2 #: lms/templates/emails/batch_start_reminder.html:2
@@ -2003,7 +2018,7 @@ msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:67 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:67
#: frontend/src/pages/Programs/ProgramForm.vue:231 #: frontend/src/pages/Programs/ProgramForm.vue:231
msgid "Delete" msgid "Delete"
msgstr "" msgstr "Slett"
#: frontend/src/components/CourseOutline.vue:67 #: frontend/src/components/CourseOutline.vue:67
msgid "Delete Chapter" msgid "Delete Chapter"
@@ -2066,7 +2081,7 @@ msgstr ""
#: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/lms_live_class/lms_live_class.json
#: lms/lms/doctype/work_experience/work_experience.json #: lms/lms/doctype/work_experience/work_experience.json
msgid "Description" msgid "Description"
msgstr "" msgstr "Beskrivelse"
#: frontend/src/components/Apps.vue:51 #: frontend/src/components/Apps.vue:51
msgid "Desk" msgid "Desk"
@@ -2098,7 +2113,7 @@ msgstr ""
#: frontend/src/components/Settings/ZoomSettings.vue:66 #: frontend/src/components/Settings/ZoomSettings.vue:66
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Disabled" msgid "Disabled"
msgstr "" msgstr "Deaktivert"
#: frontend/src/components/DiscussionReplies.vue:57 #: frontend/src/components/DiscussionReplies.vue:57
#: lms/lms/widgets/NoPreviewModal.html:25 lms/templates/reviews.html:159 #: lms/lms/widgets/NoPreviewModal.html:25 lms/templates/reviews.html:159
@@ -2143,7 +2158,7 @@ msgstr ""
#: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/lms_live_class/lms_live_class.json
#: lms/lms/doctype/lms_live_class_participant/lms_live_class_participant.json #: lms/lms/doctype/lms_live_class_participant/lms_live_class_participant.json
msgid "Duration" msgid "Duration"
msgstr "" msgstr "Varighet"
#. Label of the duration (Data) field in DocType 'LMS Quiz' #. Label of the duration (Data) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:67 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:67 lms/lms/doctype/lms_quiz/lms_quiz.json
@@ -2169,10 +2184,10 @@ msgstr ""
#: frontend/src/components/DiscussionReplies.vue:35 #: frontend/src/components/DiscussionReplies.vue:35
#: frontend/src/components/Modals/ChapterModal.vue:9 #: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/components/Settings/Badges.vue:156 #: frontend/src/components/Settings/Badges.vue:156
#: frontend/src/pages/JobDetail.vue:34 frontend/src/pages/Lesson.vue:42 #: frontend/src/pages/JobDetail.vue:45 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36 #: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36
msgid "Edit" msgid "Edit"
msgstr "" msgstr "Rediger"
#: frontend/src/components/Modals/AssignmentForm.vue:14 #: frontend/src/components/Modals/AssignmentForm.vue:14
msgid "Edit Assignment" msgid "Edit Assignment"
@@ -2236,9 +2251,9 @@ msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:105 #: frontend/src/components/Settings/Evaluators.vue:105
#: frontend/src/components/Settings/Members.vue:103 #: frontend/src/components/Settings/Members.vue:103
#: lms/templates/signup-form.html:10 #: frontend/src/pages/JobApplications.vue:284 lms/templates/signup-form.html:10
msgid "Email" msgid "Email"
msgstr "" msgstr "E-post"
#: frontend/src/components/Modals/Event.vue:16 #: frontend/src/components/Modals/Event.vue:16
msgid "Email ID" msgid "Email ID"
@@ -2272,6 +2287,7 @@ msgid "Email Templates deleted successfully"
msgstr "" msgstr ""
#: frontend/src/components/ContactUsEmail.vue:57 #: frontend/src/components/ContactUsEmail.vue:57
#: frontend/src/pages/JobApplications.vue:244
msgid "Email sent successfully" msgid "Email sent successfully"
msgstr "" msgstr ""
@@ -2323,7 +2339,7 @@ msgstr ""
#. Label of the end_date (Date) field in DocType 'LMS Batch' #. Label of the end_date (Date) field in DocType 'LMS Batch'
#: lms/lms/doctype/cohort/cohort.json lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/cohort/cohort.json lms/lms/doctype/lms_batch/lms_batch.json
msgid "End Date" msgid "End Date"
msgstr "" msgstr "Sluttdato"
#. Label of the end_date (Date) field in DocType 'Education Detail' #. Label of the end_date (Date) field in DocType 'Education Detail'
#: lms/lms/doctype/education_detail/education_detail.json #: lms/lms/doctype/education_detail/education_detail.json
@@ -2414,6 +2430,14 @@ msgstr ""
msgid "Enter a URL" msgid "Enter a URL"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:122
msgid "Enter email subject"
msgstr ""
#: frontend/src/pages/JobApplications.vue:128
msgid "Enter reply to email"
msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:169 #: frontend/src/components/Modals/ZoomAccountModal.vue:169
msgid "Error creating Zoom Account" msgid "Error creating Zoom Account"
msgstr "" msgstr ""
@@ -2453,7 +2477,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace #. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:374 lms/lms/workspace/lms/lms.json #: frontend/src/components/Modals/Event.vue:405 lms/lms/workspace/lms/lms.json
msgid "Evaluation" msgid "Evaluation"
msgstr "" msgstr ""
@@ -2478,7 +2502,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date." msgid "Evaluation end date cannot be less than the batch end date."
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:256 #: frontend/src/components/Modals/Event.vue:287
msgid "Evaluation saved successfully" msgid "Evaluation saved successfully"
msgstr "" msgstr ""
@@ -2586,7 +2610,7 @@ msgstr "Utvid"
#. Label of the expected_output (Data) field in DocType 'LMS Test Case' #. Label of the expected_output (Data) field in DocType 'LMS Test Case'
#. Label of the expected_output (Data) field in DocType 'LMS Test Case #. Label of the expected_output (Data) field in DocType 'LMS Test Case
#. Submission' #. Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:127 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:129
#: lms/lms/doctype/lms_test_case/lms_test_case.json #: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Expected Output" msgid "Expected Output"
@@ -2599,7 +2623,7 @@ msgstr ""
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33 #: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:126 #: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date" msgid "Expiry Date"
msgstr "Utløpsdato" msgstr "Utløpsdato"
@@ -2626,7 +2650,7 @@ msgstr ""
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:366 #: frontend/src/components/Modals/Event.vue:397
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail" msgid "Fail"
@@ -2639,7 +2663,7 @@ msgstr "Ikke bestått"
#: lms/lms/doctype/lms_programming_exercise_submission/lms_programming_exercise_submission.json #: lms/lms/doctype/lms_programming_exercise_submission/lms_programming_exercise_submission.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Failed" msgid "Failed"
msgstr "" msgstr "Feilet"
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:136 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:136
msgid "Failed to create badge assignment: " msgid "Failed to create badge assignment: "
@@ -2657,7 +2681,7 @@ msgstr ""
msgid "Failed to send email" msgid "Failed to send email"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:358 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:364
msgid "Failed to submit. Please try again. {0}" msgid "Failed to submit. Please try again. {0}"
msgstr "" msgstr ""
@@ -2770,18 +2794,19 @@ msgid "Friday"
msgstr "" msgstr ""
#. Label of the unavailable_from (Date) field in DocType 'Course Evaluator' #. Label of the unavailable_from (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:99 #: frontend/src/pages/ProfileEvaluator.vue:106
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "From" msgid "From"
msgstr "" msgstr "Fra"
#. Label of the from_date (Date) field in DocType 'Work Experience' #. Label of the from_date (Date) field in DocType 'Work Experience'
#: lms/lms/doctype/work_experience/work_experience.json #: lms/lms/doctype/work_experience/work_experience.json
msgid "From Date" msgid "From Date"
msgstr "" msgstr "Fra dato"
#. Label of the full_name (Data) field in DocType 'Course Evaluator' #. Label of the full_name (Data) field in DocType 'Course Evaluator'
#. Label of the full_name (Data) field in DocType 'LMS Program Member' #. Label of the full_name (Data) field in DocType 'LMS Program Member'
#: frontend/src/pages/JobApplications.vue:278
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json #: lms/lms/doctype/lms_program_member/lms_program_member.json
#: lms/templates/signup-form.html:5 #: lms/templates/signup-form.html:5
@@ -2910,7 +2935,7 @@ msgstr ""
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json #: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
msgid "Green" msgid "Green"
msgstr "" msgstr "Grønn"
#: lms/templates/signup-form.html:56 #: lms/templates/signup-form.html:56
msgid "Have an account? Login" msgid "Have an account? Login"
@@ -2928,7 +2953,7 @@ msgstr "Hei"
#: frontend/src/components/AppSidebar.vue:131 #: frontend/src/components/AppSidebar.vue:131
msgid "Help" msgid "Help"
msgstr "" msgstr "Hjelp"
#: lms/templates/courses_created.html:15 #: lms/templates/courses_created.html:15
msgid "Help others learn something new by creating a course." msgid "Help others learn something new by creating a course."
@@ -3019,13 +3044,13 @@ msgstr ""
msgid "I am looking for a job" msgid "I am looking for a job"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:94 #: frontend/src/pages/ProfileEvaluator.vue:101
msgid "I am unavailable" msgid "I am unavailable"
msgstr "" msgstr ""
#: frontend/src/pages/QuizForm.vue:334 #: frontend/src/pages/QuizForm.vue:334
msgid "ID" msgid "ID"
msgstr "" msgstr "ID"
#. Label of the icon (Data) field in DocType 'LMS Sidebar Item' #. Label of the icon (Data) field in DocType 'LMS Sidebar Item'
#: frontend/src/components/Modals/PageModal.vue:28 #: frontend/src/components/Modals/PageModal.vue:28
@@ -3105,7 +3130,7 @@ msgstr "Bilde: Korrupt datastrøm"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course' #. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:358 #: frontend/src/components/Modals/Event.vue:389
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
@@ -3161,7 +3186,7 @@ msgstr ""
#. Label of the input (Data) field in DocType 'LMS Test Case' #. Label of the input (Data) field in DocType 'LMS Test Case'
#. Label of the input (Data) field in DocType 'LMS Test Case Submission' #. Label of the input (Data) field in DocType 'LMS Test Case Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:113 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:115
#: lms/lms/doctype/lms_test_case/lms_test_case.json #: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Input" msgid "Input"
@@ -3273,7 +3298,7 @@ msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification' #. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate' #. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28 #: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:121 #: frontend/src/components/Modals/Event.vue:138
#: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date" msgid "Issue Date"
@@ -3358,8 +3383,8 @@ msgid "Job Title"
msgstr "" msgstr ""
#. Label of the jobs (Check) field in DocType 'LMS Settings' #. Label of the jobs (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/JobDetail.vue:10 frontend/src/pages/Jobs.vue:8 #: frontend/src/pages/JobApplications.vue:9 frontend/src/pages/JobDetail.vue:10
#: frontend/src/pages/Jobs.vue:212 #: frontend/src/pages/Jobs.vue:8 frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs" msgid "Jobs"
msgstr "" msgstr ""
@@ -3375,7 +3400,7 @@ msgstr ""
msgid "Join Call" msgid "Join Call"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:74 #: frontend/src/components/Modals/Event.vue:78
msgid "Join Meeting" msgid "Join Meeting"
msgstr "" msgstr ""
@@ -3883,7 +3908,7 @@ msgstr "Logg inn"
msgid "Login to Frappe Cloud?" msgid "Login to Frappe Cloud?"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:63 #: frontend/src/pages/JobDetail.vue:74
msgid "Login to apply" msgid "Login to apply"
msgstr "" msgstr ""
@@ -3987,7 +4012,7 @@ msgstr ""
#: frontend/src/pages/BatchForm.vue:194 #: frontend/src/pages/BatchForm.vue:194
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
msgid "Medium" msgid "Medium"
msgstr "" msgstr "Medium"
#. Label of the medium (Data) field in DocType 'User' #. Label of the medium (Data) field in DocType 'User'
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
@@ -4228,9 +4253,14 @@ msgid "Mentor Request Status Update Template"
msgstr "" msgstr ""
#: frontend/src/components/ContactUsEmail.vue:19 #: frontend/src/components/ContactUsEmail.vue:19
#: frontend/src/pages/JobApplications.vue:132
msgid "Message" msgid "Message"
msgstr "Melding" msgstr "Melding"
#: frontend/src/pages/JobApplications.vue:240
msgid "Message is required"
msgstr ""
#. Label of the meta_description (Small Text) field in DocType 'LMS Settings' #. Label of the meta_description (Small Text) field in DocType 'LMS Settings'
#: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303 #: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -4351,13 +4381,13 @@ msgstr ""
msgid "My availability" msgid "My availability"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:127 #: frontend/src/pages/ProfileEvaluator.vue:136
msgid "My calendar" msgid "My calendar"
msgstr "" msgstr ""
#: frontend/src/components/Modals/EmailTemplateModal.vue:24 #: frontend/src/components/Modals/EmailTemplateModal.vue:24
msgid "Name" msgid "Name"
msgstr "" msgstr "Navn"
#. Option for the 'Event' (Select) field in DocType 'LMS Badge' #. Option for the 'Event' (Select) field in DocType 'LMS Badge'
#: frontend/src/components/Settings/BadgeAssignments.vue:21 #: frontend/src/components/Settings/BadgeAssignments.vue:21
@@ -4372,7 +4402,7 @@ msgstr ""
#: frontend/src/pages/Programs/Programs.vue:10 #: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json #: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New" msgid "New"
msgstr "" msgstr "Ny"
#: lms/www/lms.py:149 #: lms/www/lms.py:149
msgid "New Batch" msgid "New Batch"
@@ -4390,7 +4420,7 @@ msgstr ""
msgid "New Job" msgid "New Job"
msgstr "" msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:27 #: lms/job/doctype/lms_job_application/lms_job_application.py:31
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "" msgstr ""
@@ -4430,7 +4460,7 @@ msgstr "Ny {0}"
#: frontend/src/components/Quiz.vue:237 frontend/src/pages/Lesson.vue:51 #: frontend/src/components/Quiz.vue:237 frontend/src/pages/Lesson.vue:51
#: frontend/src/pages/Lesson.vue:187 #: frontend/src/pages/Lesson.vue:187
msgid "Next" msgid "Next"
msgstr "" msgstr "Neste"
#: frontend/src/components/Assessments.vue:75 lms/templates/assessments.html:58 #: frontend/src/components/Assessments.vue:75 lms/templates/assessments.html:58
msgid "No Assessments" msgid "No Assessments"
@@ -4544,7 +4574,7 @@ msgstr "Ingen {0}"
#: lms/lms/user.py:29 #: lms/lms/user.py:29
msgid "Not Allowed" msgid "Not Allowed"
msgstr "" msgstr "Ikke tillatt"
#. Option for the 'Status' (Select) field in DocType 'LMS Assignment #. Option for the 'Status' (Select) field in DocType 'LMS Assignment
#. Submission' #. Submission'
@@ -4568,7 +4598,7 @@ msgstr ""
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:164 #: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:164
msgid "Not Permitted" msgid "Not Permitted"
msgstr "" msgstr "Ikke tillatt"
#: frontend/src/components/Assignment.vue:36 #: frontend/src/components/Assignment.vue:36
#: frontend/src/components/Settings/BrandSettings.vue:10 #: frontend/src/components/Settings/BrandSettings.vue:10
@@ -4581,7 +4611,7 @@ msgstr "Ikke lagret"
#. Label of the note (Text Editor) field in DocType 'LMS Lesson Note' #. Label of the note (Text Editor) field in DocType 'LMS Lesson Note'
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json #: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
msgid "Note" msgid "Note"
msgstr "" msgstr "Notat"
#: frontend/src/pages/Lesson.vue:404 frontend/src/pages/Lesson.vue:880 #: frontend/src/pages/Lesson.vue:404 frontend/src/pages/Lesson.vue:880
#: frontend/src/pages/Lesson.vue:891 #: frontend/src/pages/Lesson.vue:891
@@ -4661,7 +4691,7 @@ msgstr ""
#: lms/job/web_form/job_opportunity/job_opportunity.json #: lms/job/web_form/job_opportunity/job_opportunity.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
msgid "Open" msgid "Open"
msgstr "" msgstr "Åpne"
#: lms/templates/emails/assignment_submission.html:8 #: lms/templates/emails/assignment_submission.html:8
msgid "Open Assignment" msgid "Open Assignment"
@@ -4818,7 +4848,7 @@ msgstr ""
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:362 #: frontend/src/components/Modals/Event.vue:393
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass" msgid "Pass"
@@ -4945,12 +4975,12 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' #. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:354 #: frontend/src/components/Modals/Event.vue:385
#: lms/lms/doctype/cohort_join_request/cohort_join_request.json #: lms/lms/doctype/cohort_join_request/cohort_join_request.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending" msgid "Pending"
msgstr "" msgstr "Avventer"
#. Label of the percentage (Int) field in DocType 'LMS Quiz Submission' #. Label of the percentage (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizSubmission.vue:44 #: frontend/src/pages/QuizSubmission.vue:44
@@ -4964,7 +4994,7 @@ msgstr "Prosentandel"
msgid "Percentage (e.g. 70%)" msgid "Percentage (e.g. 70%)"
msgstr "Prosentandel (f.eks. 70 %)" msgstr "Prosentandel (f.eks. 70 %)"
#: frontend/src/components/Modals/BatchStudentProgress.vue:44 #: frontend/src/components/Modals/BatchStudentProgress.vue:46
msgid "Percentage/Status" msgid "Percentage/Status"
msgstr "Prosentandel/status" msgstr "Prosentandel/status"
@@ -5080,7 +5110,7 @@ msgstr ""
msgid "Please prepare well and be on time for the evaluations." msgid "Please prepare well and be on time for the evaluations."
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:135 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:139
msgid "Please run the code to execute the test cases." msgid "Please run the code to execute the test cases."
msgstr "" msgstr ""
@@ -5172,7 +5202,7 @@ msgstr "Innlegg"
#: frontend/src/pages/Billing.vue:95 #: frontend/src/pages/Billing.vue:95
msgid "Postal Code" msgid "Postal Code"
msgstr "" msgstr "Postnummer"
#: frontend/src/components/AppSidebar.vue:125 #: frontend/src/components/AppSidebar.vue:125
msgid "Powered by Learning" msgid "Powered by Learning"
@@ -5317,11 +5347,11 @@ msgstr ""
#: frontend/src/components/Settings/BadgeForm.vue:200 #: frontend/src/components/Settings/BadgeForm.vue:200
#: frontend/src/components/Settings/Badges.vue:205 #: frontend/src/components/Settings/Badges.vue:205
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:420 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:426
msgid "Programming Exercise Submission" msgid "Programming Exercise Submission"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:411 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:417
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298
msgid "Programming Exercise Submissions" msgid "Programming Exercise Submissions"
msgstr "" msgstr ""
@@ -5355,12 +5385,12 @@ msgstr ""
#. Label of the progress (Float) field in DocType 'LMS Enrollment' #. Label of the progress (Float) field in DocType 'LMS Enrollment'
#. Label of the progress (Int) field in DocType 'LMS Program Member' #. Label of the progress (Int) field in DocType 'LMS Program Member'
#: frontend/src/components/Modals/BatchStudentProgress.vue:94 #: frontend/src/components/Modals/BatchStudentProgress.vue:98
#: frontend/src/components/Modals/CourseProgressSummary.vue:224 #: frontend/src/components/Modals/CourseProgressSummary.vue:224
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json #: lms/lms/doctype/lms_enrollment/lms_enrollment.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json #: lms/lms/doctype/lms_program_member/lms_program_member.json
msgid "Progress" msgid "Progress"
msgstr "" msgstr "Fremgang"
#: frontend/src/pages/Programs/ProgramProgressSummary.vue:131 #: frontend/src/pages/Programs/ProgramProgressSummary.vue:131
#: lms/lms/report/course_progress_summary/course_progress_summary.py:77 #: lms/lms/report/course_progress_summary/course_progress_summary.py:77
@@ -5401,7 +5431,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Course' #. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program' #. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51 #: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:108 #: frontend/src/components/Modals/Event.vue:122
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152 #: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100 #: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5569,7 +5599,7 @@ msgstr ""
#. Label of the rating (Data) field in DocType 'LMS Course' #. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review' #. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147 #: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:86 #: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/ReviewModal.vue:18 #: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
@@ -5592,7 +5622,7 @@ msgstr ""
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json #: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
msgid "Red" msgid "Red"
msgstr "" msgstr "Rød"
#. Label of the reference_docname (Dynamic Link) field in DocType 'LMS Batch #. Label of the reference_docname (Dynamic Link) field in DocType 'LMS Batch
#. Timetable' #. Timetable'
@@ -5656,6 +5686,7 @@ msgid "Remove Highlight"
msgstr "" msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:27 #: frontend/src/components/Modals/AnnouncementModal.vue:27
#: frontend/src/pages/JobApplications.vue:127
msgid "Reply To" msgid "Reply To"
msgstr "" msgstr ""
@@ -5815,8 +5846,8 @@ msgstr ""
#: frontend/src/components/Controls/CodeEditor.vue:25 #: frontend/src/components/Controls/CodeEditor.vue:25
#: frontend/src/components/Modals/AssignmentForm.vue:59 #: frontend/src/components/Modals/AssignmentForm.vue:59
#: frontend/src/components/Modals/EmailTemplateModal.vue:12 #: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:101 #: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:129 #: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
@@ -5955,6 +5986,7 @@ msgid "Select an assignment"
msgstr "" msgstr ""
#: frontend/src/components/ContactUsEmail.vue:33 #: frontend/src/components/ContactUsEmail.vue:33
#: frontend/src/pages/JobApplications.vue:110
msgid "Send" msgid "Send"
msgstr "Send" msgstr "Send"
@@ -5962,6 +5994,14 @@ msgstr "Send"
msgid "Send Confirmation Email" msgid "Send Confirmation Email"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:268
msgid "Send Email"
msgstr ""
#: frontend/src/pages/JobApplications.vue:106
msgid "Send Email to {0}"
msgstr ""
#. Label of the send_calendar_invite_for_evaluations (Check) field in DocType #. Label of the send_calendar_invite_for_evaluations (Check) field in DocType
#. 'LMS Settings' #. 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -6004,7 +6044,7 @@ msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:19 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:19
#: frontend/src/pages/QuizForm.vue:86 #: frontend/src/pages/QuizForm.vue:86
msgid "Settings" msgid "Settings"
msgstr "" msgstr "Innstillinger"
#: frontend/src/pages/ProfileAbout.vue:79 #: frontend/src/pages/ProfileAbout.vue:79
msgid "Share on" msgid "Share on"
@@ -6122,11 +6162,11 @@ msgstr "Hopp over"
msgid "Slot Times are overlapping for some schedules." msgid "Slot Times are overlapping for some schedules."
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:201 #: frontend/src/pages/ProfileEvaluator.vue:218
msgid "Slot added successfully" msgid "Slot added successfully"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:240 #: frontend/src/pages/ProfileEvaluator.vue:257
msgid "Slot deleted successfully" msgid "Slot deleted successfully"
msgstr "" msgstr ""
@@ -6137,7 +6177,7 @@ msgstr ""
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json
msgid "Slug" msgid "Slug"
msgstr "" msgstr "Slug"
#: frontend/src/components/BatchCard.vue:25 #: frontend/src/components/BatchCard.vue:25
#: frontend/src/components/BatchOverlay.vue:24 #: frontend/src/components/BatchOverlay.vue:24
@@ -6161,7 +6201,7 @@ msgstr ""
#: lms/lms/doctype/lms_source/lms_source.json #: lms/lms/doctype/lms_source/lms_source.json
#: lms/lms/doctype/lms_video_watch_duration/lms_video_watch_duration.json #: lms/lms/doctype/lms_video_watch_duration/lms_video_watch_duration.json
msgid "Source" msgid "Source"
msgstr "" msgstr "Kilde"
#. Option for the 'Role' (Select) field in DocType 'Cohort Staff' #. Option for the 'Role' (Select) field in DocType 'Cohort Staff'
#. Option for the 'Member Type' (Select) field in DocType 'LMS Enrollment' #. Option for the 'Member Type' (Select) field in DocType 'LMS Enrollment'
@@ -6179,7 +6219,7 @@ msgstr ""
#: frontend/src/pages/Home/AdminHome.vue:164 #: frontend/src/pages/Home/AdminHome.vue:164
#: frontend/src/pages/Home/StudentHome.vue:107 #: frontend/src/pages/Home/StudentHome.vue:107
msgid "Start" msgid "Start"
msgstr "" msgstr "Start"
#. Label of the start_date (Date) field in DocType 'Education Detail' #. Label of the start_date (Date) field in DocType 'Education Detail'
#. Label of the start_date (Date) field in DocType 'LMS Batch' #. Label of the start_date (Date) field in DocType 'LMS Batch'
@@ -6188,7 +6228,7 @@ msgstr ""
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
msgid "Start Date" msgid "Start Date"
msgstr "" msgstr "Startdato"
#: lms/templates/emails/batch_start_reminder.html:13 #: lms/templates/emails/batch_start_reminder.html:13
msgid "Start Date:" msgid "Start Date:"
@@ -6265,7 +6305,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission' #. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission' #. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:91 #: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Settings/Badges.vue:228 #: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19 #: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6336,10 +6376,12 @@ msgstr ""
#: frontend/src/components/ContactUsEmail.vue:13 #: frontend/src/components/ContactUsEmail.vue:13
#: frontend/src/components/Modals/AnnouncementModal.vue:20 #: frontend/src/components/Modals/AnnouncementModal.vue:20
#: frontend/src/components/Modals/EmailTemplateModal.vue:31 #: frontend/src/components/Modals/EmailTemplateModal.vue:31
#: frontend/src/pages/JobApplications.vue:121
msgid "Subject" msgid "Subject"
msgstr "" msgstr "Emne"
#: frontend/src/components/Modals/AnnouncementModal.vue:94 #: frontend/src/components/Modals/AnnouncementModal.vue:94
#: frontend/src/pages/JobApplications.vue:237
msgid "Subject is required" msgid "Subject is required"
msgstr "" msgstr ""
@@ -6356,7 +6398,7 @@ msgstr ""
msgid "Submission by" msgid "Submission by"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:353 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:359
msgid "Submission saved!" msgid "Submission saved!"
msgstr "" msgstr ""
@@ -6371,7 +6413,7 @@ msgstr ""
#: lms/templates/livecode/extension_footer.html:25 #: lms/templates/livecode/extension_footer.html:25
#: lms/templates/reviews.html:163 lms/www/new-sign-up.html:32 #: lms/templates/reviews.html:163 lms/www/new-sign-up.html:32
msgid "Submit" msgid "Submit"
msgstr "" msgstr "Registrer"
#: frontend/src/components/BatchFeedback.vue:35 #: frontend/src/components/BatchFeedback.vue:35
msgid "Submit Feedback" msgid "Submit Feedback"
@@ -6396,7 +6438,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:97 #: frontend/src/components/Modals/Event.vue:106
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary" msgid "Summary"
msgstr "Sammendrag" msgstr "Sammendrag"
@@ -6501,11 +6543,11 @@ msgstr ""
#. Label of the template (Link) field in DocType 'Cohort Web Page' #. Label of the template (Link) field in DocType 'Cohort Web Page'
#. Label of the template (Link) field in DocType 'LMS Certificate' #. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43 #: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:112 #: frontend/src/components/Modals/Event.vue:127
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template" msgid "Template"
msgstr "" msgstr "Mal"
#: lms/lms/user.py:40 #: lms/lms/user.py:40
msgid "Temporarily Disabled" msgid "Temporarily Disabled"
@@ -6542,7 +6584,7 @@ msgstr ""
msgid "Test this Exercise" msgid "Test this Exercise"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:92 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:93
msgid "Test {0}" msgid "Test {0}"
msgstr "" msgstr ""
@@ -6833,22 +6875,22 @@ msgstr ""
#: lms/lms/doctype/lms_timetable_template/lms_timetable_template.json #: lms/lms/doctype/lms_timetable_template/lms_timetable_template.json
#: lms/lms/doctype/work_experience/work_experience.json #: lms/lms/doctype/work_experience/work_experience.json
msgid "Title" msgid "Title"
msgstr "" msgstr "Tittel"
#: frontend/src/components/Modals/ChapterModal.vue:172 #: frontend/src/components/Modals/ChapterModal.vue:172
msgid "Title is required" msgid "Title is required"
msgstr "" msgstr ""
#. Label of the unavailable_to (Date) field in DocType 'Course Evaluator' #. Label of the unavailable_to (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:112 #: frontend/src/pages/ProfileEvaluator.vue:120
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "To" msgid "To"
msgstr "" msgstr "Til"
#. Label of the to_date (Date) field in DocType 'Work Experience' #. Label of the to_date (Date) field in DocType 'Work Experience'
#: lms/lms/doctype/work_experience/work_experience.json #: lms/lms/doctype/work_experience/work_experience.json
msgid "To Date" msgid "To Date"
msgstr "" msgstr "Til dato"
#: lms/lms/utils.py:1784 #: lms/lms/utils.py:1784
msgid "To join this batch, please contact the Administrator." msgid "To join this batch, please contact the Administrator."
@@ -6860,7 +6902,7 @@ msgstr "Altfor mange brukere har registrert seg nylig, så registreringen er dea
#: frontend/src/pages/Billing.vue:53 #: frontend/src/pages/Billing.vue:53
msgid "Total" msgid "Total"
msgstr "" msgstr "Totalt"
#. Label of the total_marks (Int) field in DocType 'LMS Quiz' #. Label of the total_marks (Int) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:73 frontend/src/pages/Quizzes.vue:235 #: frontend/src/pages/QuizForm.vue:73 frontend/src/pages/Quizzes.vue:235
@@ -6953,7 +6995,7 @@ msgstr "UUID"
msgid "Unavailability" msgid "Unavailability"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:259 #: frontend/src/pages/ProfileEvaluator.vue:276
msgid "Unavailability updated successfully" msgid "Unavailability updated successfully"
msgstr "" msgstr ""
@@ -7017,7 +7059,7 @@ msgstr ""
#: frontend/src/components/Settings/BrandSettings.vue:24 #: frontend/src/components/Settings/BrandSettings.vue:24
#: frontend/src/components/Settings/SettingDetails.vue:23 #: frontend/src/components/Settings/SettingDetails.vue:23
msgid "Update" msgid "Update"
msgstr "" msgstr "Oppdater"
#: lms/templates/emails/community_course_membership.html:11 #: lms/templates/emails/community_course_membership.html:11
msgid "Update Password" msgid "Update Password"
@@ -7103,12 +7145,12 @@ msgstr "Gyldig e-postadresse og navn kreves"
#. Label of the value (Rating) field in DocType 'LMS Batch Feedback' #. Label of the value (Rating) field in DocType 'LMS Batch Feedback'
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json #: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
msgid "Value" msgid "Value"
msgstr "" msgstr "Verdi"
#. Option for the 'Event' (Select) field in DocType 'LMS Badge' #. Option for the 'Event' (Select) field in DocType 'LMS Badge'
#: lms/lms/doctype/lms_badge/lms_badge.json #: lms/lms/doctype/lms_badge/lms_badge.json
msgid "Value Change" msgid "Value Change"
msgstr "" msgstr "Verdiendring"
#. Label of the video_link (Data) field in DocType 'LMS Course' #. Label of the video_link (Data) field in DocType 'LMS Course'
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
@@ -7123,11 +7165,19 @@ msgstr ""
msgid "View" msgid "View"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:31
msgid "View Applications"
msgstr ""
#: frontend/src/components/CertificationLinks.vue:10 #: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67 #: frontend/src/components/Modals/Event.vue:67
msgid "View Certificate" msgid "View Certificate"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:262
msgid "View Resume"
msgstr ""
#: frontend/src/components/BatchFeedback.vue:56 #: frontend/src/components/BatchFeedback.vue:56
msgid "View all feedback" msgid "View all feedback"
msgstr "" msgstr ""
@@ -7146,7 +7196,7 @@ msgstr ""
msgid "Visit Batch" msgid "Visit Batch"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:41 #: frontend/src/pages/JobDetail.vue:52
msgid "Visit Website" msgid "Visit Website"
msgstr "" msgstr ""
@@ -7355,7 +7405,7 @@ msgstr ""
msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session." msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session."
msgstr "" msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:22 #: lms/job/doctype/lms_job_application/lms_job_application.py:26
msgid "You have already applied for this job." msgid "You have already applied for this job."
msgstr "" msgstr ""
@@ -7371,7 +7421,7 @@ msgstr ""
msgid "You have already reviewed this course" msgid "You have already reviewed this course"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:57 #: frontend/src/pages/JobDetail.vue:68
msgid "You have applied" msgid "You have applied"
msgstr "" msgstr ""
@@ -7451,7 +7501,7 @@ msgstr ""
msgid "Your Account has been successfully created!" msgid "Your Account has been successfully created!"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:119 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:121
msgid "Your Output" msgid "Your Output"
msgstr "" msgstr ""
@@ -7459,7 +7509,7 @@ msgstr ""
msgid "Your batch {0} is starting tomorrow" msgid "Your batch {0} is starting tomorrow"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:134 #: frontend/src/pages/ProfileEvaluator.vue:143
msgid "Your calendar is set." msgid "Your calendar is set."
msgstr "" msgstr ""
@@ -7532,17 +7582,17 @@ msgstr ""
#: frontend/src/components/CourseInstructors.vue:24 #: frontend/src/components/CourseInstructors.vue:24
#: frontend/src/components/CourseInstructors.vue:45 #: frontend/src/components/CourseInstructors.vue:45
msgid "and" msgid "and"
msgstr "" msgstr "og"
#: frontend/src/components/InstallPrompt.vue:54 #: frontend/src/components/InstallPrompt.vue:54
msgid "and then 'Add to Home Screen'" msgid "and then 'Add to Home Screen'"
msgstr "" msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114 #: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicant" msgid "applicant"
msgstr "" msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114 #: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicants" msgid "applicants"
msgstr "" msgstr ""

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2025-10-31 16:04+0000\n" "POT-Creation-Date: 2025-11-07 16:04+0000\n"
"PO-Revision-Date: 2025-11-02 19:07\n" "PO-Revision-Date: 2025-11-11 11:49\n"
"Last-Translator: jannat@frappe.io\n" "Last-Translator: jannat@frappe.io\n"
"Language-Team: Dutch\n" "Language-Team: Dutch\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -130,7 +130,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Batch Old' #. Option for the 'Status' (Select) field in DocType 'LMS Batch Old'
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
msgid "Active" msgid "Active"
msgstr "" msgstr "Actief"
#: frontend/src/pages/Statistics.vue:16 #: frontend/src/pages/Statistics.vue:16
msgid "Active Members" msgid "Active Members"
@@ -148,7 +148,7 @@ msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:131 #: frontend/src/pages/Programs/ProgramForm.vue:131
#: frontend/src/pages/Programs/ProgramForm.vue:180 #: frontend/src/pages/Programs/ProgramForm.vue:180
msgid "Add" msgid "Add"
msgstr "" msgstr "Toevoegen"
#: frontend/src/components/CourseOutline.vue:18 #: frontend/src/components/CourseOutline.vue:18
#: frontend/src/components/CreateOutline.vue:18 #: frontend/src/components/CreateOutline.vue:18
@@ -176,7 +176,7 @@ msgstr ""
msgid "Add Row" msgid "Add Row"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:89 #: frontend/src/pages/ProfileEvaluator.vue:96
msgid "Add Slot" msgid "Add Slot"
msgstr "" msgstr ""
@@ -282,7 +282,7 @@ msgstr ""
#: frontend/src/pages/Billing.vue:64 #: frontend/src/pages/Billing.vue:64
#: lms/lms/doctype/lms_payment/lms_payment.json #: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Address" msgid "Address"
msgstr "" msgstr "Adres"
#: frontend/src/pages/Billing.vue:74 #: frontend/src/pages/Billing.vue:74
msgid "Address Line 1" msgid "Address Line 1"
@@ -426,12 +426,25 @@ msgstr ""
msgid "Appears when the batch URL is shared on socials" msgid "Appears when the batch URL is shared on socials"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:24
msgid "Application"
msgstr ""
#. Label of a field in the job-opportunity Web Form #. Label of a field in the job-opportunity Web Form
#: lms/job/web_form/job_opportunity/job_opportunity.json #: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Application Form Link" msgid "Application Form Link"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:51 #: frontend/src/pages/JobApplications.vue:14
#: frontend/src/pages/JobApplications.vue:25
msgid "Applications"
msgstr ""
#: frontend/src/pages/JobApplications.vue:290
msgid "Applied On"
msgstr ""
#: frontend/src/pages/JobDetail.vue:62
msgid "Apply" msgid "Apply"
msgstr "" msgstr ""
@@ -483,7 +496,7 @@ msgstr ""
#. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch' #. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the assessment (Table) field in DocType 'LMS Batch' #. Label of the assessment (Table) field in DocType 'LMS Batch'
#: frontend/src/components/Modals/AssessmentModal.vue:27 #: frontend/src/components/Modals/AssessmentModal.vue:27
#: frontend/src/components/Modals/BatchStudentProgress.vue:41 #: frontend/src/components/Modals/BatchStudentProgress.vue:43
#: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11 #: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11
msgid "Assessment" msgid "Assessment"
msgstr "" msgstr ""
@@ -569,7 +582,7 @@ msgstr ""
msgid "Assignment Title" msgid "Assignment Title"
msgstr "" msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:125 #: frontend/src/components/Modals/AssignmentForm.vue:133
msgid "Assignment created successfully" msgid "Assignment created successfully"
msgstr "" msgstr ""
@@ -581,7 +594,7 @@ msgstr ""
msgid "Assignment submitted successfully" msgid "Assignment submitted successfully"
msgstr "" msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:138 #: frontend/src/components/Modals/AssignmentForm.vue:146
msgid "Assignment updated successfully" msgid "Assignment updated successfully"
msgstr "" msgstr ""
@@ -622,7 +635,7 @@ msgstr ""
msgid "Attire Preference" msgid "Attire Preference"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:137 #: frontend/src/pages/ProfileEvaluator.vue:146
msgid "Authorize Google Calendar Access" msgid "Authorize Google Calendar Access"
msgstr "" msgstr ""
@@ -637,7 +650,7 @@ msgstr ""
msgid "Auto Recording" msgid "Auto Recording"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:224 #: frontend/src/pages/ProfileEvaluator.vue:241
msgid "Availability updated successfully" msgid "Availability updated successfully"
msgstr "" msgstr ""
@@ -768,6 +781,7 @@ msgstr ""
#. Name of a role #. Name of a role
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -998,7 +1012,7 @@ msgstr ""
msgid "Certificate of Completion" msgid "Certificate of Completion"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:317 #: frontend/src/components/Modals/Event.vue:348
msgid "Certificate saved successfully" msgid "Certificate saved successfully"
msgstr "" msgstr ""
@@ -1018,7 +1032,7 @@ msgstr ""
#. Label of a Card Break in the LMS Workspace #. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:626 #: frontend/src/components/AppSidebar.vue:626
#: frontend/src/components/Modals/Event.vue:381 #: frontend/src/components/Modals/Event.vue:412
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10 #: frontend/src/pages/CourseCertification.vue:10
#: frontend/src/pages/CourseCertification.vue:135 #: frontend/src/pages/CourseCertification.vue:135
@@ -1640,6 +1654,7 @@ msgstr ""
#: lms/lms/doctype/course_chapter/course_chapter.json #: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json #: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
@@ -1757,7 +1772,7 @@ msgstr ""
#: frontend/src/components/BatchCourses.vue:5 #: frontend/src/components/BatchCourses.vue:5
#: frontend/src/components/BatchOverlay.vue:37 #: frontend/src/components/BatchOverlay.vue:37
#: frontend/src/components/BatchStudents.vue:25 #: frontend/src/components/BatchStudents.vue:25
#: frontend/src/components/Modals/BatchStudentProgress.vue:91 #: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127 #: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340 #: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340
@@ -2169,7 +2184,7 @@ msgstr ""
#: frontend/src/components/DiscussionReplies.vue:35 #: frontend/src/components/DiscussionReplies.vue:35
#: frontend/src/components/Modals/ChapterModal.vue:9 #: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/components/Settings/Badges.vue:156 #: frontend/src/components/Settings/Badges.vue:156
#: frontend/src/pages/JobDetail.vue:34 frontend/src/pages/Lesson.vue:42 #: frontend/src/pages/JobDetail.vue:45 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36 #: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36
msgid "Edit" msgid "Edit"
msgstr "" msgstr ""
@@ -2236,7 +2251,7 @@ msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:105 #: frontend/src/components/Settings/Evaluators.vue:105
#: frontend/src/components/Settings/Members.vue:103 #: frontend/src/components/Settings/Members.vue:103
#: lms/templates/signup-form.html:10 #: frontend/src/pages/JobApplications.vue:284 lms/templates/signup-form.html:10
msgid "Email" msgid "Email"
msgstr "" msgstr ""
@@ -2272,6 +2287,7 @@ msgid "Email Templates deleted successfully"
msgstr "" msgstr ""
#: frontend/src/components/ContactUsEmail.vue:57 #: frontend/src/components/ContactUsEmail.vue:57
#: frontend/src/pages/JobApplications.vue:244
msgid "Email sent successfully" msgid "Email sent successfully"
msgstr "E-mail succesvol verzonden" msgstr "E-mail succesvol verzonden"
@@ -2414,6 +2430,14 @@ msgstr ""
msgid "Enter a URL" msgid "Enter a URL"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:122
msgid "Enter email subject"
msgstr ""
#: frontend/src/pages/JobApplications.vue:128
msgid "Enter reply to email"
msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:169 #: frontend/src/components/Modals/ZoomAccountModal.vue:169
msgid "Error creating Zoom Account" msgid "Error creating Zoom Account"
msgstr "" msgstr ""
@@ -2453,7 +2477,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace #. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:374 lms/lms/workspace/lms/lms.json #: frontend/src/components/Modals/Event.vue:405 lms/lms/workspace/lms/lms.json
msgid "Evaluation" msgid "Evaluation"
msgstr "" msgstr ""
@@ -2478,7 +2502,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date." msgid "Evaluation end date cannot be less than the batch end date."
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:256 #: frontend/src/components/Modals/Event.vue:287
msgid "Evaluation saved successfully" msgid "Evaluation saved successfully"
msgstr "" msgstr ""
@@ -2586,7 +2610,7 @@ msgstr ""
#. Label of the expected_output (Data) field in DocType 'LMS Test Case' #. Label of the expected_output (Data) field in DocType 'LMS Test Case'
#. Label of the expected_output (Data) field in DocType 'LMS Test Case #. Label of the expected_output (Data) field in DocType 'LMS Test Case
#. Submission' #. Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:127 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:129
#: lms/lms/doctype/lms_test_case/lms_test_case.json #: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Expected Output" msgid "Expected Output"
@@ -2599,7 +2623,7 @@ msgstr ""
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33 #: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:126 #: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date" msgid "Expiry Date"
msgstr "" msgstr ""
@@ -2626,7 +2650,7 @@ msgstr ""
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:366 #: frontend/src/components/Modals/Event.vue:397
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail" msgid "Fail"
@@ -2657,7 +2681,7 @@ msgstr ""
msgid "Failed to send email" msgid "Failed to send email"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:358 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:364
msgid "Failed to submit. Please try again. {0}" msgid "Failed to submit. Please try again. {0}"
msgstr "" msgstr ""
@@ -2770,7 +2794,7 @@ msgid "Friday"
msgstr "" msgstr ""
#. Label of the unavailable_from (Date) field in DocType 'Course Evaluator' #. Label of the unavailable_from (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:99 #: frontend/src/pages/ProfileEvaluator.vue:106
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "From" msgid "From"
msgstr "" msgstr ""
@@ -2782,6 +2806,7 @@ msgstr ""
#. Label of the full_name (Data) field in DocType 'Course Evaluator' #. Label of the full_name (Data) field in DocType 'Course Evaluator'
#. Label of the full_name (Data) field in DocType 'LMS Program Member' #. Label of the full_name (Data) field in DocType 'LMS Program Member'
#: frontend/src/pages/JobApplications.vue:278
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json #: lms/lms/doctype/lms_program_member/lms_program_member.json
#: lms/templates/signup-form.html:5 #: lms/templates/signup-form.html:5
@@ -3019,7 +3044,7 @@ msgstr ""
msgid "I am looking for a job" msgid "I am looking for a job"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:94 #: frontend/src/pages/ProfileEvaluator.vue:101
msgid "I am unavailable" msgid "I am unavailable"
msgstr "" msgstr ""
@@ -3105,7 +3130,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course' #. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:358 #: frontend/src/components/Modals/Event.vue:389
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
@@ -3161,7 +3186,7 @@ msgstr ""
#. Label of the input (Data) field in DocType 'LMS Test Case' #. Label of the input (Data) field in DocType 'LMS Test Case'
#. Label of the input (Data) field in DocType 'LMS Test Case Submission' #. Label of the input (Data) field in DocType 'LMS Test Case Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:113 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:115
#: lms/lms/doctype/lms_test_case/lms_test_case.json #: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Input" msgid "Input"
@@ -3273,7 +3298,7 @@ msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification' #. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate' #. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28 #: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:121 #: frontend/src/components/Modals/Event.vue:138
#: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date" msgid "Issue Date"
@@ -3358,8 +3383,8 @@ msgid "Job Title"
msgstr "" msgstr ""
#. Label of the jobs (Check) field in DocType 'LMS Settings' #. Label of the jobs (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/JobDetail.vue:10 frontend/src/pages/Jobs.vue:8 #: frontend/src/pages/JobApplications.vue:9 frontend/src/pages/JobDetail.vue:10
#: frontend/src/pages/Jobs.vue:212 #: frontend/src/pages/Jobs.vue:8 frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs" msgid "Jobs"
msgstr "" msgstr ""
@@ -3375,7 +3400,7 @@ msgstr ""
msgid "Join Call" msgid "Join Call"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:74 #: frontend/src/components/Modals/Event.vue:78
msgid "Join Meeting" msgid "Join Meeting"
msgstr "" msgstr ""
@@ -3883,7 +3908,7 @@ msgstr ""
msgid "Login to Frappe Cloud?" msgid "Login to Frappe Cloud?"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:63 #: frontend/src/pages/JobDetail.vue:74
msgid "Login to apply" msgid "Login to apply"
msgstr "" msgstr ""
@@ -4228,9 +4253,14 @@ msgid "Mentor Request Status Update Template"
msgstr "" msgstr ""
#: frontend/src/components/ContactUsEmail.vue:19 #: frontend/src/components/ContactUsEmail.vue:19
#: frontend/src/pages/JobApplications.vue:132
msgid "Message" msgid "Message"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:240
msgid "Message is required"
msgstr ""
#. Label of the meta_description (Small Text) field in DocType 'LMS Settings' #. Label of the meta_description (Small Text) field in DocType 'LMS Settings'
#: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303 #: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -4351,7 +4381,7 @@ msgstr ""
msgid "My availability" msgid "My availability"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:127 #: frontend/src/pages/ProfileEvaluator.vue:136
msgid "My calendar" msgid "My calendar"
msgstr "" msgstr ""
@@ -4390,7 +4420,7 @@ msgstr ""
msgid "New Job" msgid "New Job"
msgstr "" msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:27 #: lms/job/doctype/lms_job_application/lms_job_application.py:31
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "" msgstr ""
@@ -4818,7 +4848,7 @@ msgstr ""
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:362 #: frontend/src/components/Modals/Event.vue:393
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass" msgid "Pass"
@@ -4945,7 +4975,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' #. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:354 #: frontend/src/components/Modals/Event.vue:385
#: lms/lms/doctype/cohort_join_request/cohort_join_request.json #: lms/lms/doctype/cohort_join_request/cohort_join_request.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
@@ -4964,7 +4994,7 @@ msgstr ""
msgid "Percentage (e.g. 70%)" msgid "Percentage (e.g. 70%)"
msgstr "" msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:44 #: frontend/src/components/Modals/BatchStudentProgress.vue:46
msgid "Percentage/Status" msgid "Percentage/Status"
msgstr "" msgstr ""
@@ -5080,7 +5110,7 @@ msgstr ""
msgid "Please prepare well and be on time for the evaluations." msgid "Please prepare well and be on time for the evaluations."
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:135 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:139
msgid "Please run the code to execute the test cases." msgid "Please run the code to execute the test cases."
msgstr "" msgstr ""
@@ -5317,11 +5347,11 @@ msgstr ""
#: frontend/src/components/Settings/BadgeForm.vue:200 #: frontend/src/components/Settings/BadgeForm.vue:200
#: frontend/src/components/Settings/Badges.vue:205 #: frontend/src/components/Settings/Badges.vue:205
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:420 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:426
msgid "Programming Exercise Submission" msgid "Programming Exercise Submission"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:411 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:417
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298
msgid "Programming Exercise Submissions" msgid "Programming Exercise Submissions"
msgstr "" msgstr ""
@@ -5355,7 +5385,7 @@ msgstr ""
#. Label of the progress (Float) field in DocType 'LMS Enrollment' #. Label of the progress (Float) field in DocType 'LMS Enrollment'
#. Label of the progress (Int) field in DocType 'LMS Program Member' #. Label of the progress (Int) field in DocType 'LMS Program Member'
#: frontend/src/components/Modals/BatchStudentProgress.vue:94 #: frontend/src/components/Modals/BatchStudentProgress.vue:98
#: frontend/src/components/Modals/CourseProgressSummary.vue:224 #: frontend/src/components/Modals/CourseProgressSummary.vue:224
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json #: lms/lms/doctype/lms_enrollment/lms_enrollment.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json #: lms/lms/doctype/lms_program_member/lms_program_member.json
@@ -5401,7 +5431,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Course' #. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program' #. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51 #: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:108 #: frontend/src/components/Modals/Event.vue:122
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152 #: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100 #: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5569,7 +5599,7 @@ msgstr ""
#. Label of the rating (Data) field in DocType 'LMS Course' #. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review' #. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147 #: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:86 #: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/ReviewModal.vue:18 #: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
@@ -5656,6 +5686,7 @@ msgid "Remove Highlight"
msgstr "" msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:27 #: frontend/src/components/Modals/AnnouncementModal.vue:27
#: frontend/src/pages/JobApplications.vue:127
msgid "Reply To" msgid "Reply To"
msgstr "" msgstr ""
@@ -5815,8 +5846,8 @@ msgstr ""
#: frontend/src/components/Controls/CodeEditor.vue:25 #: frontend/src/components/Controls/CodeEditor.vue:25
#: frontend/src/components/Modals/AssignmentForm.vue:59 #: frontend/src/components/Modals/AssignmentForm.vue:59
#: frontend/src/components/Modals/EmailTemplateModal.vue:12 #: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:101 #: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:129 #: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
@@ -5955,6 +5986,7 @@ msgid "Select an assignment"
msgstr "" msgstr ""
#: frontend/src/components/ContactUsEmail.vue:33 #: frontend/src/components/ContactUsEmail.vue:33
#: frontend/src/pages/JobApplications.vue:110
msgid "Send" msgid "Send"
msgstr "" msgstr ""
@@ -5962,6 +5994,14 @@ msgstr ""
msgid "Send Confirmation Email" msgid "Send Confirmation Email"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:268
msgid "Send Email"
msgstr ""
#: frontend/src/pages/JobApplications.vue:106
msgid "Send Email to {0}"
msgstr ""
#. Label of the send_calendar_invite_for_evaluations (Check) field in DocType #. Label of the send_calendar_invite_for_evaluations (Check) field in DocType
#. 'LMS Settings' #. 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -6122,11 +6162,11 @@ msgstr ""
msgid "Slot Times are overlapping for some schedules." msgid "Slot Times are overlapping for some schedules."
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:201 #: frontend/src/pages/ProfileEvaluator.vue:218
msgid "Slot added successfully" msgid "Slot added successfully"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:240 #: frontend/src/pages/ProfileEvaluator.vue:257
msgid "Slot deleted successfully" msgid "Slot deleted successfully"
msgstr "" msgstr ""
@@ -6265,7 +6305,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission' #. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission' #. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:91 #: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Settings/Badges.vue:228 #: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19 #: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6336,10 +6376,12 @@ msgstr ""
#: frontend/src/components/ContactUsEmail.vue:13 #: frontend/src/components/ContactUsEmail.vue:13
#: frontend/src/components/Modals/AnnouncementModal.vue:20 #: frontend/src/components/Modals/AnnouncementModal.vue:20
#: frontend/src/components/Modals/EmailTemplateModal.vue:31 #: frontend/src/components/Modals/EmailTemplateModal.vue:31
#: frontend/src/pages/JobApplications.vue:121
msgid "Subject" msgid "Subject"
msgstr "" msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:94 #: frontend/src/components/Modals/AnnouncementModal.vue:94
#: frontend/src/pages/JobApplications.vue:237
msgid "Subject is required" msgid "Subject is required"
msgstr "" msgstr ""
@@ -6356,7 +6398,7 @@ msgstr ""
msgid "Submission by" msgid "Submission by"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:353 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:359
msgid "Submission saved!" msgid "Submission saved!"
msgstr "" msgstr ""
@@ -6396,7 +6438,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:97 #: frontend/src/components/Modals/Event.vue:106
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary" msgid "Summary"
msgstr "" msgstr ""
@@ -6501,7 +6543,7 @@ msgstr ""
#. Label of the template (Link) field in DocType 'Cohort Web Page' #. Label of the template (Link) field in DocType 'Cohort Web Page'
#. Label of the template (Link) field in DocType 'LMS Certificate' #. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43 #: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:112 #: frontend/src/components/Modals/Event.vue:127
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template" msgid "Template"
@@ -6542,7 +6584,7 @@ msgstr ""
msgid "Test this Exercise" msgid "Test this Exercise"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:92 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:93
msgid "Test {0}" msgid "Test {0}"
msgstr "" msgstr ""
@@ -6840,7 +6882,7 @@ msgid "Title is required"
msgstr "" msgstr ""
#. Label of the unavailable_to (Date) field in DocType 'Course Evaluator' #. Label of the unavailable_to (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:112 #: frontend/src/pages/ProfileEvaluator.vue:120
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "To" msgid "To"
msgstr "" msgstr ""
@@ -6953,7 +6995,7 @@ msgstr ""
msgid "Unavailability" msgid "Unavailability"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:259 #: frontend/src/pages/ProfileEvaluator.vue:276
msgid "Unavailability updated successfully" msgid "Unavailability updated successfully"
msgstr "" msgstr ""
@@ -7123,11 +7165,19 @@ msgstr ""
msgid "View" msgid "View"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:31
msgid "View Applications"
msgstr ""
#: frontend/src/components/CertificationLinks.vue:10 #: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67 #: frontend/src/components/Modals/Event.vue:67
msgid "View Certificate" msgid "View Certificate"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:262
msgid "View Resume"
msgstr ""
#: frontend/src/components/BatchFeedback.vue:56 #: frontend/src/components/BatchFeedback.vue:56
msgid "View all feedback" msgid "View all feedback"
msgstr "" msgstr ""
@@ -7146,7 +7196,7 @@ msgstr ""
msgid "Visit Batch" msgid "Visit Batch"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:41 #: frontend/src/pages/JobDetail.vue:52
msgid "Visit Website" msgid "Visit Website"
msgstr "" msgstr ""
@@ -7355,7 +7405,7 @@ msgstr ""
msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session." msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session."
msgstr "" msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:22 #: lms/job/doctype/lms_job_application/lms_job_application.py:26
msgid "You have already applied for this job." msgid "You have already applied for this job."
msgstr "" msgstr ""
@@ -7371,7 +7421,7 @@ msgstr ""
msgid "You have already reviewed this course" msgid "You have already reviewed this course"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:57 #: frontend/src/pages/JobDetail.vue:68
msgid "You have applied" msgid "You have applied"
msgstr "" msgstr ""
@@ -7451,7 +7501,7 @@ msgstr ""
msgid "Your Account has been successfully created!" msgid "Your Account has been successfully created!"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:119 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:121
msgid "Your Output" msgid "Your Output"
msgstr "" msgstr ""
@@ -7459,7 +7509,7 @@ msgstr ""
msgid "Your batch {0} is starting tomorrow" msgid "Your batch {0} is starting tomorrow"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:134 #: frontend/src/pages/ProfileEvaluator.vue:143
msgid "Your calendar is set." msgid "Your calendar is set."
msgstr "" msgstr ""
@@ -7538,11 +7588,11 @@ msgstr ""
msgid "and then 'Add to Home Screen'" msgid "and then 'Add to Home Screen'"
msgstr "" msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114 #: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicant" msgid "applicant"
msgstr "" msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114 #: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicants" msgid "applicants"
msgstr "" msgstr ""

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2025-10-31 16:04+0000\n" "POT-Creation-Date: 2025-11-07 16:04+0000\n"
"PO-Revision-Date: 2025-11-02 19:07\n" "PO-Revision-Date: 2025-11-11 11:49\n"
"Last-Translator: jannat@frappe.io\n" "Last-Translator: jannat@frappe.io\n"
"Language-Team: Polish\n" "Language-Team: Polish\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -176,7 +176,7 @@ msgstr ""
msgid "Add Row" msgid "Add Row"
msgstr "Dodaj wiersz" msgstr "Dodaj wiersz"
#: frontend/src/pages/ProfileEvaluator.vue:89 #: frontend/src/pages/ProfileEvaluator.vue:96
msgid "Add Slot" msgid "Add Slot"
msgstr "" msgstr ""
@@ -426,12 +426,25 @@ msgstr ""
msgid "Appears when the batch URL is shared on socials" msgid "Appears when the batch URL is shared on socials"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:24
msgid "Application"
msgstr ""
#. Label of a field in the job-opportunity Web Form #. Label of a field in the job-opportunity Web Form
#: lms/job/web_form/job_opportunity/job_opportunity.json #: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Application Form Link" msgid "Application Form Link"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:51 #: frontend/src/pages/JobApplications.vue:14
#: frontend/src/pages/JobApplications.vue:25
msgid "Applications"
msgstr ""
#: frontend/src/pages/JobApplications.vue:290
msgid "Applied On"
msgstr "Data zastosowania"
#: frontend/src/pages/JobDetail.vue:62
msgid "Apply" msgid "Apply"
msgstr "Zastosuj" msgstr "Zastosuj"
@@ -483,7 +496,7 @@ msgstr ""
#. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch' #. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the assessment (Table) field in DocType 'LMS Batch' #. Label of the assessment (Table) field in DocType 'LMS Batch'
#: frontend/src/components/Modals/AssessmentModal.vue:27 #: frontend/src/components/Modals/AssessmentModal.vue:27
#: frontend/src/components/Modals/BatchStudentProgress.vue:41 #: frontend/src/components/Modals/BatchStudentProgress.vue:43
#: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11 #: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11
msgid "Assessment" msgid "Assessment"
msgstr "" msgstr ""
@@ -569,7 +582,7 @@ msgstr ""
msgid "Assignment Title" msgid "Assignment Title"
msgstr "" msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:125 #: frontend/src/components/Modals/AssignmentForm.vue:133
msgid "Assignment created successfully" msgid "Assignment created successfully"
msgstr "" msgstr ""
@@ -581,7 +594,7 @@ msgstr ""
msgid "Assignment submitted successfully" msgid "Assignment submitted successfully"
msgstr "" msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:138 #: frontend/src/components/Modals/AssignmentForm.vue:146
msgid "Assignment updated successfully" msgid "Assignment updated successfully"
msgstr "" msgstr ""
@@ -622,7 +635,7 @@ msgstr "Uczestnicy"
msgid "Attire Preference" msgid "Attire Preference"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:137 #: frontend/src/pages/ProfileEvaluator.vue:146
msgid "Authorize Google Calendar Access" msgid "Authorize Google Calendar Access"
msgstr "Autoryzuj dostęp do Kalendarza Google" msgstr "Autoryzuj dostęp do Kalendarza Google"
@@ -637,7 +650,7 @@ msgstr ""
msgid "Auto Recording" msgid "Auto Recording"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:224 #: frontend/src/pages/ProfileEvaluator.vue:241
msgid "Availability updated successfully" msgid "Availability updated successfully"
msgstr "" msgstr ""
@@ -768,6 +781,7 @@ msgstr ""
#. Name of a role #. Name of a role
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -937,7 +951,7 @@ msgstr ""
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
msgid "Cancelled" msgid "Cancelled"
msgstr "" msgstr "Anulowano"
#. Label of the carrer_preference_details (Section Break) field in DocType #. Label of the carrer_preference_details (Section Break) field in DocType
#. 'User' #. 'User'
@@ -998,7 +1012,7 @@ msgstr ""
msgid "Certificate of Completion" msgid "Certificate of Completion"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:317 #: frontend/src/components/Modals/Event.vue:348
msgid "Certificate saved successfully" msgid "Certificate saved successfully"
msgstr "" msgstr ""
@@ -1018,7 +1032,7 @@ msgstr ""
#. Label of a Card Break in the LMS Workspace #. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:626 #: frontend/src/components/AppSidebar.vue:626
#: frontend/src/components/Modals/Event.vue:381 #: frontend/src/components/Modals/Event.vue:412
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10 #: frontend/src/pages/CourseCertification.vue:10
#: frontend/src/pages/CourseCertification.vue:135 #: frontend/src/pages/CourseCertification.vue:135
@@ -1541,7 +1555,7 @@ msgstr ""
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/lms/doctype/payment_country/payment_country.json #: lms/lms/doctype/payment_country/payment_country.json
msgid "Country" msgid "Country"
msgstr "" msgstr "Kraj"
#. Label of the course (Link) field in DocType 'Batch Course' #. Label of the course (Link) field in DocType 'Batch Course'
#. Label of the course (Link) field in DocType 'Cohort' #. Label of the course (Link) field in DocType 'Cohort'
@@ -1640,6 +1654,7 @@ msgstr ""
#: lms/lms/doctype/course_chapter/course_chapter.json #: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json #: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
@@ -1757,7 +1772,7 @@ msgstr ""
#: frontend/src/components/BatchCourses.vue:5 #: frontend/src/components/BatchCourses.vue:5
#: frontend/src/components/BatchOverlay.vue:37 #: frontend/src/components/BatchOverlay.vue:37
#: frontend/src/components/BatchStudents.vue:25 #: frontend/src/components/BatchStudents.vue:25
#: frontend/src/components/Modals/BatchStudentProgress.vue:91 #: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127 #: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340 #: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340
@@ -1932,7 +1947,7 @@ msgstr "Cyjan"
#. Label of the show_dashboard (Check) field in DocType 'LMS Settings' #. Label of the show_dashboard (Check) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Dashboard" msgid "Dashboard"
msgstr "" msgstr "Panel kontrolny"
#. Label of the date (Date) field in DocType 'LMS Batch Timetable' #. Label of the date (Date) field in DocType 'LMS Batch Timetable'
#. Label of the date (Date) field in DocType 'LMS Certificate Evaluation' #. Label of the date (Date) field in DocType 'LMS Certificate Evaluation'
@@ -1948,7 +1963,7 @@ msgstr ""
#: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/lms_live_class/lms_live_class.json
#: lms/lms/doctype/scheduled_flow/scheduled_flow.json #: lms/lms/doctype/scheduled_flow/scheduled_flow.json
msgid "Date" msgid "Date"
msgstr "" msgstr "Data"
#: frontend/src/pages/BatchForm.vue:76 #: frontend/src/pages/BatchForm.vue:76
msgid "Date and Time" msgid "Date and Time"
@@ -2169,7 +2184,7 @@ msgstr ""
#: frontend/src/components/DiscussionReplies.vue:35 #: frontend/src/components/DiscussionReplies.vue:35
#: frontend/src/components/Modals/ChapterModal.vue:9 #: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/components/Settings/Badges.vue:156 #: frontend/src/components/Settings/Badges.vue:156
#: frontend/src/pages/JobDetail.vue:34 frontend/src/pages/Lesson.vue:42 #: frontend/src/pages/JobDetail.vue:45 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36 #: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36
msgid "Edit" msgid "Edit"
msgstr "Edytuj" msgstr "Edytuj"
@@ -2236,7 +2251,7 @@ msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:105 #: frontend/src/components/Settings/Evaluators.vue:105
#: frontend/src/components/Settings/Members.vue:103 #: frontend/src/components/Settings/Members.vue:103
#: lms/templates/signup-form.html:10 #: frontend/src/pages/JobApplications.vue:284 lms/templates/signup-form.html:10
msgid "Email" msgid "Email"
msgstr "E-mail" msgstr "E-mail"
@@ -2272,6 +2287,7 @@ msgid "Email Templates deleted successfully"
msgstr "" msgstr ""
#: frontend/src/components/ContactUsEmail.vue:57 #: frontend/src/components/ContactUsEmail.vue:57
#: frontend/src/pages/JobApplications.vue:244
msgid "Email sent successfully" msgid "Email sent successfully"
msgstr "" msgstr ""
@@ -2414,6 +2430,14 @@ msgstr ""
msgid "Enter a URL" msgid "Enter a URL"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:122
msgid "Enter email subject"
msgstr ""
#: frontend/src/pages/JobApplications.vue:128
msgid "Enter reply to email"
msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:169 #: frontend/src/components/Modals/ZoomAccountModal.vue:169
msgid "Error creating Zoom Account" msgid "Error creating Zoom Account"
msgstr "" msgstr ""
@@ -2453,7 +2477,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace #. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:374 lms/lms/workspace/lms/lms.json #: frontend/src/components/Modals/Event.vue:405 lms/lms/workspace/lms/lms.json
msgid "Evaluation" msgid "Evaluation"
msgstr "" msgstr ""
@@ -2478,7 +2502,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date." msgid "Evaluation end date cannot be less than the batch end date."
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:256 #: frontend/src/components/Modals/Event.vue:287
msgid "Evaluation saved successfully" msgid "Evaluation saved successfully"
msgstr "" msgstr ""
@@ -2586,7 +2610,7 @@ msgstr "Rozszerzać"
#. Label of the expected_output (Data) field in DocType 'LMS Test Case' #. Label of the expected_output (Data) field in DocType 'LMS Test Case'
#. Label of the expected_output (Data) field in DocType 'LMS Test Case #. Label of the expected_output (Data) field in DocType 'LMS Test Case
#. Submission' #. Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:127 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:129
#: lms/lms/doctype/lms_test_case/lms_test_case.json #: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Expected Output" msgid "Expected Output"
@@ -2599,7 +2623,7 @@ msgstr ""
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33 #: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:126 #: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date" msgid "Expiry Date"
msgstr "Data ważności" msgstr "Data ważności"
@@ -2626,7 +2650,7 @@ msgstr ""
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:366 #: frontend/src/components/Modals/Event.vue:397
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail" msgid "Fail"
@@ -2657,7 +2681,7 @@ msgstr ""
msgid "Failed to send email" msgid "Failed to send email"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:358 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:364
msgid "Failed to submit. Please try again. {0}" msgid "Failed to submit. Please try again. {0}"
msgstr "" msgstr ""
@@ -2770,7 +2794,7 @@ msgid "Friday"
msgstr "Piątek" msgstr "Piątek"
#. Label of the unavailable_from (Date) field in DocType 'Course Evaluator' #. Label of the unavailable_from (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:99 #: frontend/src/pages/ProfileEvaluator.vue:106
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "From" msgid "From"
msgstr "" msgstr ""
@@ -2782,6 +2806,7 @@ msgstr ""
#. Label of the full_name (Data) field in DocType 'Course Evaluator' #. Label of the full_name (Data) field in DocType 'Course Evaluator'
#. Label of the full_name (Data) field in DocType 'LMS Program Member' #. Label of the full_name (Data) field in DocType 'LMS Program Member'
#: frontend/src/pages/JobApplications.vue:278
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json #: lms/lms/doctype/lms_program_member/lms_program_member.json
#: lms/templates/signup-form.html:5 #: lms/templates/signup-form.html:5
@@ -3019,7 +3044,7 @@ msgstr ""
msgid "I am looking for a job" msgid "I am looking for a job"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:94 #: frontend/src/pages/ProfileEvaluator.vue:101
msgid "I am unavailable" msgid "I am unavailable"
msgstr "" msgstr ""
@@ -3105,7 +3130,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course' #. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:358 #: frontend/src/components/Modals/Event.vue:389
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
@@ -3161,7 +3186,7 @@ msgstr "Przedsiębiorstwo"
#. Label of the input (Data) field in DocType 'LMS Test Case' #. Label of the input (Data) field in DocType 'LMS Test Case'
#. Label of the input (Data) field in DocType 'LMS Test Case Submission' #. Label of the input (Data) field in DocType 'LMS Test Case Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:113 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:115
#: lms/lms/doctype/lms_test_case/lms_test_case.json #: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Input" msgid "Input"
@@ -3273,7 +3298,7 @@ msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification' #. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate' #. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28 #: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:121 #: frontend/src/components/Modals/Event.vue:138
#: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date" msgid "Issue Date"
@@ -3358,8 +3383,8 @@ msgid "Job Title"
msgstr "Tytuł zadania" msgstr "Tytuł zadania"
#. Label of the jobs (Check) field in DocType 'LMS Settings' #. Label of the jobs (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/JobDetail.vue:10 frontend/src/pages/Jobs.vue:8 #: frontend/src/pages/JobApplications.vue:9 frontend/src/pages/JobDetail.vue:10
#: frontend/src/pages/Jobs.vue:212 #: frontend/src/pages/Jobs.vue:8 frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs" msgid "Jobs"
msgstr "" msgstr ""
@@ -3375,7 +3400,7 @@ msgstr ""
msgid "Join Call" msgid "Join Call"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:74 #: frontend/src/components/Modals/Event.vue:78
msgid "Join Meeting" msgid "Join Meeting"
msgstr "" msgstr ""
@@ -3883,7 +3908,7 @@ msgstr "Zaloguj się"
msgid "Login to Frappe Cloud?" msgid "Login to Frappe Cloud?"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:63 #: frontend/src/pages/JobDetail.vue:74
msgid "Login to apply" msgid "Login to apply"
msgstr "" msgstr ""
@@ -4228,9 +4253,14 @@ msgid "Mentor Request Status Update Template"
msgstr "" msgstr ""
#: frontend/src/components/ContactUsEmail.vue:19 #: frontend/src/components/ContactUsEmail.vue:19
#: frontend/src/pages/JobApplications.vue:132
msgid "Message" msgid "Message"
msgstr "Wiadomość" msgstr "Wiadomość"
#: frontend/src/pages/JobApplications.vue:240
msgid "Message is required"
msgstr ""
#. Label of the meta_description (Small Text) field in DocType 'LMS Settings' #. Label of the meta_description (Small Text) field in DocType 'LMS Settings'
#: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303 #: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -4351,7 +4381,7 @@ msgstr ""
msgid "My availability" msgid "My availability"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:127 #: frontend/src/pages/ProfileEvaluator.vue:136
msgid "My calendar" msgid "My calendar"
msgstr "" msgstr ""
@@ -4390,7 +4420,7 @@ msgstr ""
msgid "New Job" msgid "New Job"
msgstr "" msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:27 #: lms/job/doctype/lms_job_application/lms_job_application.py:31
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "" msgstr ""
@@ -4581,7 +4611,7 @@ msgstr "Niezapisany"
#. Label of the note (Text Editor) field in DocType 'LMS Lesson Note' #. Label of the note (Text Editor) field in DocType 'LMS Lesson Note'
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json #: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
msgid "Note" msgid "Note"
msgstr "" msgstr "Notatka"
#: frontend/src/pages/Lesson.vue:404 frontend/src/pages/Lesson.vue:880 #: frontend/src/pages/Lesson.vue:404 frontend/src/pages/Lesson.vue:880
#: frontend/src/pages/Lesson.vue:891 #: frontend/src/pages/Lesson.vue:891
@@ -4818,7 +4848,7 @@ msgstr ""
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:362 #: frontend/src/components/Modals/Event.vue:393
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass" msgid "Pass"
@@ -4945,7 +4975,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' #. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:354 #: frontend/src/components/Modals/Event.vue:385
#: lms/lms/doctype/cohort_join_request/cohort_join_request.json #: lms/lms/doctype/cohort_join_request/cohort_join_request.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
@@ -4964,7 +4994,7 @@ msgstr "Procent"
msgid "Percentage (e.g. 70%)" msgid "Percentage (e.g. 70%)"
msgstr "" msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:44 #: frontend/src/components/Modals/BatchStudentProgress.vue:46
msgid "Percentage/Status" msgid "Percentage/Status"
msgstr "" msgstr ""
@@ -5080,7 +5110,7 @@ msgstr ""
msgid "Please prepare well and be on time for the evaluations." msgid "Please prepare well and be on time for the evaluations."
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:135 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:139
msgid "Please run the code to execute the test cases." msgid "Please run the code to execute the test cases."
msgstr "" msgstr ""
@@ -5317,11 +5347,11 @@ msgstr ""
#: frontend/src/components/Settings/BadgeForm.vue:200 #: frontend/src/components/Settings/BadgeForm.vue:200
#: frontend/src/components/Settings/Badges.vue:205 #: frontend/src/components/Settings/Badges.vue:205
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:420 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:426
msgid "Programming Exercise Submission" msgid "Programming Exercise Submission"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:411 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:417
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298
msgid "Programming Exercise Submissions" msgid "Programming Exercise Submissions"
msgstr "" msgstr ""
@@ -5355,7 +5385,7 @@ msgstr ""
#. Label of the progress (Float) field in DocType 'LMS Enrollment' #. Label of the progress (Float) field in DocType 'LMS Enrollment'
#. Label of the progress (Int) field in DocType 'LMS Program Member' #. Label of the progress (Int) field in DocType 'LMS Program Member'
#: frontend/src/components/Modals/BatchStudentProgress.vue:94 #: frontend/src/components/Modals/BatchStudentProgress.vue:98
#: frontend/src/components/Modals/CourseProgressSummary.vue:224 #: frontend/src/components/Modals/CourseProgressSummary.vue:224
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json #: lms/lms/doctype/lms_enrollment/lms_enrollment.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json #: lms/lms/doctype/lms_program_member/lms_program_member.json
@@ -5401,7 +5431,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Course' #. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program' #. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51 #: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:108 #: frontend/src/components/Modals/Event.vue:122
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152 #: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100 #: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5569,7 +5599,7 @@ msgstr ""
#. Label of the rating (Data) field in DocType 'LMS Course' #. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review' #. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147 #: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:86 #: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/ReviewModal.vue:18 #: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
@@ -5656,6 +5686,7 @@ msgid "Remove Highlight"
msgstr "" msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:27 #: frontend/src/components/Modals/AnnouncementModal.vue:27
#: frontend/src/pages/JobApplications.vue:127
msgid "Reply To" msgid "Reply To"
msgstr "" msgstr ""
@@ -5815,8 +5846,8 @@ msgstr "Sobota"
#: frontend/src/components/Controls/CodeEditor.vue:25 #: frontend/src/components/Controls/CodeEditor.vue:25
#: frontend/src/components/Modals/AssignmentForm.vue:59 #: frontend/src/components/Modals/AssignmentForm.vue:59
#: frontend/src/components/Modals/EmailTemplateModal.vue:12 #: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:101 #: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:129 #: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
@@ -5955,6 +5986,7 @@ msgid "Select an assignment"
msgstr "" msgstr ""
#: frontend/src/components/ContactUsEmail.vue:33 #: frontend/src/components/ContactUsEmail.vue:33
#: frontend/src/pages/JobApplications.vue:110
msgid "Send" msgid "Send"
msgstr "" msgstr ""
@@ -5962,6 +5994,14 @@ msgstr ""
msgid "Send Confirmation Email" msgid "Send Confirmation Email"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:268
msgid "Send Email"
msgstr ""
#: frontend/src/pages/JobApplications.vue:106
msgid "Send Email to {0}"
msgstr ""
#. Label of the send_calendar_invite_for_evaluations (Check) field in DocType #. Label of the send_calendar_invite_for_evaluations (Check) field in DocType
#. 'LMS Settings' #. 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -6122,11 +6162,11 @@ msgstr "Pominąć"
msgid "Slot Times are overlapping for some schedules." msgid "Slot Times are overlapping for some schedules."
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:201 #: frontend/src/pages/ProfileEvaluator.vue:218
msgid "Slot added successfully" msgid "Slot added successfully"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:240 #: frontend/src/pages/ProfileEvaluator.vue:257
msgid "Slot deleted successfully" msgid "Slot deleted successfully"
msgstr "" msgstr ""
@@ -6265,7 +6305,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission' #. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission' #. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:91 #: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Settings/Badges.vue:228 #: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19 #: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6336,10 +6376,12 @@ msgstr ""
#: frontend/src/components/ContactUsEmail.vue:13 #: frontend/src/components/ContactUsEmail.vue:13
#: frontend/src/components/Modals/AnnouncementModal.vue:20 #: frontend/src/components/Modals/AnnouncementModal.vue:20
#: frontend/src/components/Modals/EmailTemplateModal.vue:31 #: frontend/src/components/Modals/EmailTemplateModal.vue:31
#: frontend/src/pages/JobApplications.vue:121
msgid "Subject" msgid "Subject"
msgstr "Temat" msgstr "Temat"
#: frontend/src/components/Modals/AnnouncementModal.vue:94 #: frontend/src/components/Modals/AnnouncementModal.vue:94
#: frontend/src/pages/JobApplications.vue:237
msgid "Subject is required" msgid "Subject is required"
msgstr "" msgstr ""
@@ -6356,7 +6398,7 @@ msgstr ""
msgid "Submission by" msgid "Submission by"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:353 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:359
msgid "Submission saved!" msgid "Submission saved!"
msgstr "" msgstr ""
@@ -6396,7 +6438,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:97 #: frontend/src/components/Modals/Event.vue:106
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary" msgid "Summary"
msgstr "Podsumowanie" msgstr "Podsumowanie"
@@ -6501,7 +6543,7 @@ msgstr ""
#. Label of the template (Link) field in DocType 'Cohort Web Page' #. Label of the template (Link) field in DocType 'Cohort Web Page'
#. Label of the template (Link) field in DocType 'LMS Certificate' #. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43 #: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:112 #: frontend/src/components/Modals/Event.vue:127
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template" msgid "Template"
@@ -6542,7 +6584,7 @@ msgstr ""
msgid "Test this Exercise" msgid "Test this Exercise"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:92 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:93
msgid "Test {0}" msgid "Test {0}"
msgstr "" msgstr ""
@@ -6840,7 +6882,7 @@ msgid "Title is required"
msgstr "" msgstr ""
#. Label of the unavailable_to (Date) field in DocType 'Course Evaluator' #. Label of the unavailable_to (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:112 #: frontend/src/pages/ProfileEvaluator.vue:120
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "To" msgid "To"
msgstr "" msgstr ""
@@ -6953,7 +6995,7 @@ msgstr ""
msgid "Unavailability" msgid "Unavailability"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:259 #: frontend/src/pages/ProfileEvaluator.vue:276
msgid "Unavailability updated successfully" msgid "Unavailability updated successfully"
msgstr "" msgstr ""
@@ -7123,11 +7165,19 @@ msgstr ""
msgid "View" msgid "View"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:31
msgid "View Applications"
msgstr ""
#: frontend/src/components/CertificationLinks.vue:10 #: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67 #: frontend/src/components/Modals/Event.vue:67
msgid "View Certificate" msgid "View Certificate"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:262
msgid "View Resume"
msgstr ""
#: frontend/src/components/BatchFeedback.vue:56 #: frontend/src/components/BatchFeedback.vue:56
msgid "View all feedback" msgid "View all feedback"
msgstr "" msgstr ""
@@ -7146,7 +7196,7 @@ msgstr ""
msgid "Visit Batch" msgid "Visit Batch"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:41 #: frontend/src/pages/JobDetail.vue:52
msgid "Visit Website" msgid "Visit Website"
msgstr "" msgstr ""
@@ -7355,7 +7405,7 @@ msgstr ""
msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session." msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session."
msgstr "" msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:22 #: lms/job/doctype/lms_job_application/lms_job_application.py:26
msgid "You have already applied for this job." msgid "You have already applied for this job."
msgstr "" msgstr ""
@@ -7371,7 +7421,7 @@ msgstr ""
msgid "You have already reviewed this course" msgid "You have already reviewed this course"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:57 #: frontend/src/pages/JobDetail.vue:68
msgid "You have applied" msgid "You have applied"
msgstr "" msgstr ""
@@ -7451,7 +7501,7 @@ msgstr ""
msgid "Your Account has been successfully created!" msgid "Your Account has been successfully created!"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:119 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:121
msgid "Your Output" msgid "Your Output"
msgstr "" msgstr ""
@@ -7459,7 +7509,7 @@ msgstr ""
msgid "Your batch {0} is starting tomorrow" msgid "Your batch {0} is starting tomorrow"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:134 #: frontend/src/pages/ProfileEvaluator.vue:143
msgid "Your calendar is set." msgid "Your calendar is set."
msgstr "" msgstr ""
@@ -7538,11 +7588,11 @@ msgstr ""
msgid "and then 'Add to Home Screen'" msgid "and then 'Add to Home Screen'"
msgstr "" msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114 #: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicant" msgid "applicant"
msgstr "" msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114 #: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicants" msgid "applicants"
msgstr "" msgstr ""

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2025-10-31 16:04+0000\n" "POT-Creation-Date: 2025-11-07 16:04+0000\n"
"PO-Revision-Date: 2025-11-02 19:07\n" "PO-Revision-Date: 2025-11-11 11:49\n"
"Last-Translator: jannat@frappe.io\n" "Last-Translator: jannat@frappe.io\n"
"Language-Team: Portuguese\n" "Language-Team: Portuguese\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -148,7 +148,7 @@ msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:131 #: frontend/src/pages/Programs/ProgramForm.vue:131
#: frontend/src/pages/Programs/ProgramForm.vue:180 #: frontend/src/pages/Programs/ProgramForm.vue:180
msgid "Add" msgid "Add"
msgstr "Adicionar" msgstr ""
#: frontend/src/components/CourseOutline.vue:18 #: frontend/src/components/CourseOutline.vue:18
#: frontend/src/components/CreateOutline.vue:18 #: frontend/src/components/CreateOutline.vue:18
@@ -176,7 +176,7 @@ msgstr ""
msgid "Add Row" msgid "Add Row"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:89 #: frontend/src/pages/ProfileEvaluator.vue:96
msgid "Add Slot" msgid "Add Slot"
msgstr "" msgstr ""
@@ -282,7 +282,7 @@ msgstr ""
#: frontend/src/pages/Billing.vue:64 #: frontend/src/pages/Billing.vue:64
#: lms/lms/doctype/lms_payment/lms_payment.json #: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Address" msgid "Address"
msgstr "Endereço" msgstr ""
#: frontend/src/pages/Billing.vue:74 #: frontend/src/pages/Billing.vue:74
msgid "Address Line 1" msgid "Address Line 1"
@@ -304,7 +304,7 @@ msgstr "Admin"
#. Name of a role #. Name of a role
#: frontend/src/pages/Batches.vue:275 lms/lms/doctype/lms_badge/lms_badge.json #: frontend/src/pages/Batches.vue:275 lms/lms/doctype/lms_badge/lms_badge.json
msgid "All" msgid "All"
msgstr "Todos" msgstr ""
#: frontend/src/pages/Batches.vue:26 #: frontend/src/pages/Batches.vue:26
msgid "All Batches" msgid "All Batches"
@@ -426,12 +426,25 @@ msgstr ""
msgid "Appears when the batch URL is shared on socials" msgid "Appears when the batch URL is shared on socials"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:24
msgid "Application"
msgstr ""
#. Label of a field in the job-opportunity Web Form #. Label of a field in the job-opportunity Web Form
#: lms/job/web_form/job_opportunity/job_opportunity.json #: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Application Form Link" msgid "Application Form Link"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:51 #: frontend/src/pages/JobApplications.vue:14
#: frontend/src/pages/JobApplications.vue:25
msgid "Applications"
msgstr ""
#: frontend/src/pages/JobApplications.vue:290
msgid "Applied On"
msgstr ""
#: frontend/src/pages/JobDetail.vue:62
msgid "Apply" msgid "Apply"
msgstr "" msgstr ""
@@ -483,7 +496,7 @@ msgstr ""
#. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch' #. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the assessment (Table) field in DocType 'LMS Batch' #. Label of the assessment (Table) field in DocType 'LMS Batch'
#: frontend/src/components/Modals/AssessmentModal.vue:27 #: frontend/src/components/Modals/AssessmentModal.vue:27
#: frontend/src/components/Modals/BatchStudentProgress.vue:41 #: frontend/src/components/Modals/BatchStudentProgress.vue:43
#: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11 #: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11
msgid "Assessment" msgid "Assessment"
msgstr "" msgstr ""
@@ -569,7 +582,7 @@ msgstr ""
msgid "Assignment Title" msgid "Assignment Title"
msgstr "" msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:125 #: frontend/src/components/Modals/AssignmentForm.vue:133
msgid "Assignment created successfully" msgid "Assignment created successfully"
msgstr "" msgstr ""
@@ -581,7 +594,7 @@ msgstr ""
msgid "Assignment submitted successfully" msgid "Assignment submitted successfully"
msgstr "" msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:138 #: frontend/src/components/Modals/AssignmentForm.vue:146
msgid "Assignment updated successfully" msgid "Assignment updated successfully"
msgstr "" msgstr ""
@@ -622,7 +635,7 @@ msgstr "Participantes"
msgid "Attire Preference" msgid "Attire Preference"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:137 #: frontend/src/pages/ProfileEvaluator.vue:146
msgid "Authorize Google Calendar Access" msgid "Authorize Google Calendar Access"
msgstr "" msgstr ""
@@ -637,7 +650,7 @@ msgstr ""
msgid "Auto Recording" msgid "Auto Recording"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:224 #: frontend/src/pages/ProfileEvaluator.vue:241
msgid "Availability updated successfully" msgid "Availability updated successfully"
msgstr "" msgstr ""
@@ -768,6 +781,7 @@ msgstr ""
#. Name of a role #. Name of a role
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -998,7 +1012,7 @@ msgstr ""
msgid "Certificate of Completion" msgid "Certificate of Completion"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:317 #: frontend/src/components/Modals/Event.vue:348
msgid "Certificate saved successfully" msgid "Certificate saved successfully"
msgstr "" msgstr ""
@@ -1018,7 +1032,7 @@ msgstr ""
#. Label of a Card Break in the LMS Workspace #. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:626 #: frontend/src/components/AppSidebar.vue:626
#: frontend/src/components/Modals/Event.vue:381 #: frontend/src/components/Modals/Event.vue:412
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10 #: frontend/src/pages/CourseCertification.vue:10
#: frontend/src/pages/CourseCertification.vue:135 #: frontend/src/pages/CourseCertification.vue:135
@@ -1205,7 +1219,7 @@ msgstr ""
#: frontend/src/components/Settings/Categories.vue:27 #: frontend/src/components/Settings/Categories.vue:27
msgid "Close" msgid "Close"
msgstr "Fechar" msgstr ""
#. Option for the 'Status' (Select) field in DocType 'Job Opportunity' #. Option for the 'Status' (Select) field in DocType 'Job Opportunity'
#. Option in a Select field in the job-opportunity Web Form #. Option in a Select field in the job-opportunity Web Form
@@ -1311,7 +1325,7 @@ msgstr ""
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Comments" msgid "Comments"
msgstr "Comentários" msgstr ""
#: frontend/src/components/Assignment.vue:148 #: frontend/src/components/Assignment.vue:148
msgid "Comments by Evaluator" msgid "Comments by Evaluator"
@@ -1411,7 +1425,7 @@ msgstr ""
#: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json #: lms/lms/doctype/lms_certificate_request/lms_certificate_request.json
#: lms/lms/widgets/CourseCard.html:78 #: lms/lms/widgets/CourseCard.html:78
msgid "Completed" msgid "Completed"
msgstr "Concluído" msgstr ""
#. Label of the enable_certification (Check) field in DocType 'LMS Course' #. Label of the enable_certification (Check) field in DocType 'LMS Course'
#: frontend/src/pages/CourseForm.vue:249 #: frontend/src/pages/CourseForm.vue:249
@@ -1640,6 +1654,7 @@ msgstr ""
#: lms/lms/doctype/course_chapter/course_chapter.json #: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json #: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
@@ -1757,7 +1772,7 @@ msgstr ""
#: frontend/src/components/BatchCourses.vue:5 #: frontend/src/components/BatchCourses.vue:5
#: frontend/src/components/BatchOverlay.vue:37 #: frontend/src/components/BatchOverlay.vue:37
#: frontend/src/components/BatchStudents.vue:25 #: frontend/src/components/BatchStudents.vue:25
#: frontend/src/components/Modals/BatchStudentProgress.vue:91 #: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127 #: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340 #: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340
@@ -1800,7 +1815,7 @@ msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExercises.vue:32 #: frontend/src/pages/ProgrammingExercises/ProgrammingExercises.vue:32
#: frontend/src/pages/Quizzes.vue:10 #: frontend/src/pages/Quizzes.vue:10
msgid "Create" msgid "Create"
msgstr "Criar" msgstr ""
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7 #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.js:7
msgid "Create Certificate" msgid "Create Certificate"
@@ -1888,7 +1903,7 @@ msgstr ""
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_payment/lms_payment.json #: lms/lms/doctype/lms_payment/lms_payment.json
msgid "Currency" msgid "Currency"
msgstr "Moeda" msgstr ""
#. Label of the current_lesson (Link) field in DocType 'LMS Enrollment' #. Label of the current_lesson (Link) field in DocType 'LMS Enrollment'
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json #: lms/lms/doctype/lms_enrollment/lms_enrollment.json
@@ -1948,7 +1963,7 @@ msgstr ""
#: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/lms_live_class/lms_live_class.json
#: lms/lms/doctype/scheduled_flow/scheduled_flow.json #: lms/lms/doctype/scheduled_flow/scheduled_flow.json
msgid "Date" msgid "Date"
msgstr "Data" msgstr ""
#: frontend/src/pages/BatchForm.vue:76 #: frontend/src/pages/BatchForm.vue:76
msgid "Date and Time" msgid "Date and Time"
@@ -2003,7 +2018,7 @@ msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:67 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseForm.vue:67
#: frontend/src/pages/Programs/ProgramForm.vue:231 #: frontend/src/pages/Programs/ProgramForm.vue:231
msgid "Delete" msgid "Delete"
msgstr "Eliminar" msgstr ""
#: frontend/src/components/CourseOutline.vue:67 #: frontend/src/components/CourseOutline.vue:67
msgid "Delete Chapter" msgid "Delete Chapter"
@@ -2066,7 +2081,7 @@ msgstr ""
#: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/lms_live_class/lms_live_class.json
#: lms/lms/doctype/work_experience/work_experience.json #: lms/lms/doctype/work_experience/work_experience.json
msgid "Description" msgid "Description"
msgstr "Descrição" msgstr ""
#: frontend/src/components/Apps.vue:51 #: frontend/src/components/Apps.vue:51
msgid "Desk" msgid "Desk"
@@ -2169,10 +2184,10 @@ msgstr ""
#: frontend/src/components/DiscussionReplies.vue:35 #: frontend/src/components/DiscussionReplies.vue:35
#: frontend/src/components/Modals/ChapterModal.vue:9 #: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/components/Settings/Badges.vue:156 #: frontend/src/components/Settings/Badges.vue:156
#: frontend/src/pages/JobDetail.vue:34 frontend/src/pages/Lesson.vue:42 #: frontend/src/pages/JobDetail.vue:45 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36 #: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36
msgid "Edit" msgid "Edit"
msgstr "Editar" msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:14 #: frontend/src/components/Modals/AssignmentForm.vue:14
msgid "Edit Assignment" msgid "Edit Assignment"
@@ -2236,7 +2251,7 @@ msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:105 #: frontend/src/components/Settings/Evaluators.vue:105
#: frontend/src/components/Settings/Members.vue:103 #: frontend/src/components/Settings/Members.vue:103
#: lms/templates/signup-form.html:10 #: frontend/src/pages/JobApplications.vue:284 lms/templates/signup-form.html:10
msgid "Email" msgid "Email"
msgstr "" msgstr ""
@@ -2272,6 +2287,7 @@ msgid "Email Templates deleted successfully"
msgstr "" msgstr ""
#: frontend/src/components/ContactUsEmail.vue:57 #: frontend/src/components/ContactUsEmail.vue:57
#: frontend/src/pages/JobApplications.vue:244
msgid "Email sent successfully" msgid "Email sent successfully"
msgstr "E-mail enviado com sucesso" msgstr "E-mail enviado com sucesso"
@@ -2414,6 +2430,14 @@ msgstr ""
msgid "Enter a URL" msgid "Enter a URL"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:122
msgid "Enter email subject"
msgstr ""
#: frontend/src/pages/JobApplications.vue:128
msgid "Enter reply to email"
msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:169 #: frontend/src/components/Modals/ZoomAccountModal.vue:169
msgid "Error creating Zoom Account" msgid "Error creating Zoom Account"
msgstr "" msgstr ""
@@ -2453,7 +2477,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace #. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:374 lms/lms/workspace/lms/lms.json #: frontend/src/components/Modals/Event.vue:405 lms/lms/workspace/lms/lms.json
msgid "Evaluation" msgid "Evaluation"
msgstr "" msgstr ""
@@ -2478,7 +2502,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date." msgid "Evaluation end date cannot be less than the batch end date."
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:256 #: frontend/src/components/Modals/Event.vue:287
msgid "Evaluation saved successfully" msgid "Evaluation saved successfully"
msgstr "" msgstr ""
@@ -2586,7 +2610,7 @@ msgstr "Expandir"
#. Label of the expected_output (Data) field in DocType 'LMS Test Case' #. Label of the expected_output (Data) field in DocType 'LMS Test Case'
#. Label of the expected_output (Data) field in DocType 'LMS Test Case #. Label of the expected_output (Data) field in DocType 'LMS Test Case
#. Submission' #. Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:127 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:129
#: lms/lms/doctype/lms_test_case/lms_test_case.json #: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Expected Output" msgid "Expected Output"
@@ -2599,7 +2623,7 @@ msgstr ""
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33 #: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:126 #: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date" msgid "Expiry Date"
msgstr "" msgstr ""
@@ -2626,7 +2650,7 @@ msgstr ""
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:366 #: frontend/src/components/Modals/Event.vue:397
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail" msgid "Fail"
@@ -2657,7 +2681,7 @@ msgstr ""
msgid "Failed to send email" msgid "Failed to send email"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:358 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:364
msgid "Failed to submit. Please try again. {0}" msgid "Failed to submit. Please try again. {0}"
msgstr "" msgstr ""
@@ -2770,10 +2794,10 @@ msgid "Friday"
msgstr "" msgstr ""
#. Label of the unavailable_from (Date) field in DocType 'Course Evaluator' #. Label of the unavailable_from (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:99 #: frontend/src/pages/ProfileEvaluator.vue:106
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "From" msgid "From"
msgstr "De" msgstr ""
#. Label of the from_date (Date) field in DocType 'Work Experience' #. Label of the from_date (Date) field in DocType 'Work Experience'
#: lms/lms/doctype/work_experience/work_experience.json #: lms/lms/doctype/work_experience/work_experience.json
@@ -2782,6 +2806,7 @@ msgstr ""
#. Label of the full_name (Data) field in DocType 'Course Evaluator' #. Label of the full_name (Data) field in DocType 'Course Evaluator'
#. Label of the full_name (Data) field in DocType 'LMS Program Member' #. Label of the full_name (Data) field in DocType 'LMS Program Member'
#: frontend/src/pages/JobApplications.vue:278
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json #: lms/lms/doctype/lms_program_member/lms_program_member.json
#: lms/templates/signup-form.html:5 #: lms/templates/signup-form.html:5
@@ -3019,7 +3044,7 @@ msgstr ""
msgid "I am looking for a job" msgid "I am looking for a job"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:94 #: frontend/src/pages/ProfileEvaluator.vue:101
msgid "I am unavailable" msgid "I am unavailable"
msgstr "" msgstr ""
@@ -3105,12 +3130,12 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course' #. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:358 #: frontend/src/components/Modals/Event.vue:389
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "In Progress" msgid "In Progress"
msgstr "Em progresso" msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Batch Old' #. Option for the 'Status' (Select) field in DocType 'LMS Batch Old'
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -3161,7 +3186,7 @@ msgstr ""
#. Label of the input (Data) field in DocType 'LMS Test Case' #. Label of the input (Data) field in DocType 'LMS Test Case'
#. Label of the input (Data) field in DocType 'LMS Test Case Submission' #. Label of the input (Data) field in DocType 'LMS Test Case Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:113 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:115
#: lms/lms/doctype/lms_test_case/lms_test_case.json #: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Input" msgid "Input"
@@ -3273,7 +3298,7 @@ msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification' #. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate' #. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28 #: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:121 #: frontend/src/components/Modals/Event.vue:138
#: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date" msgid "Issue Date"
@@ -3358,8 +3383,8 @@ msgid "Job Title"
msgstr "" msgstr ""
#. Label of the jobs (Check) field in DocType 'LMS Settings' #. Label of the jobs (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/JobDetail.vue:10 frontend/src/pages/Jobs.vue:8 #: frontend/src/pages/JobApplications.vue:9 frontend/src/pages/JobDetail.vue:10
#: frontend/src/pages/Jobs.vue:212 #: frontend/src/pages/Jobs.vue:8 frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs" msgid "Jobs"
msgstr "" msgstr ""
@@ -3375,7 +3400,7 @@ msgstr ""
msgid "Join Call" msgid "Join Call"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:74 #: frontend/src/components/Modals/Event.vue:78
msgid "Join Meeting" msgid "Join Meeting"
msgstr "" msgstr ""
@@ -3883,7 +3908,7 @@ msgstr ""
msgid "Login to Frappe Cloud?" msgid "Login to Frappe Cloud?"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:63 #: frontend/src/pages/JobDetail.vue:74
msgid "Login to apply" msgid "Login to apply"
msgstr "" msgstr ""
@@ -3987,7 +4012,7 @@ msgstr ""
#: frontend/src/pages/BatchForm.vue:194 #: frontend/src/pages/BatchForm.vue:194
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
msgid "Medium" msgid "Medium"
msgstr "Médio" msgstr ""
#. Label of the medium (Data) field in DocType 'User' #. Label of the medium (Data) field in DocType 'User'
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
@@ -4228,9 +4253,14 @@ msgid "Mentor Request Status Update Template"
msgstr "" msgstr ""
#: frontend/src/components/ContactUsEmail.vue:19 #: frontend/src/components/ContactUsEmail.vue:19
#: frontend/src/pages/JobApplications.vue:132
msgid "Message" msgid "Message"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:240
msgid "Message is required"
msgstr ""
#. Label of the meta_description (Small Text) field in DocType 'LMS Settings' #. Label of the meta_description (Small Text) field in DocType 'LMS Settings'
#: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303 #: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -4351,13 +4381,13 @@ msgstr ""
msgid "My availability" msgid "My availability"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:127 #: frontend/src/pages/ProfileEvaluator.vue:136
msgid "My calendar" msgid "My calendar"
msgstr "" msgstr ""
#: frontend/src/components/Modals/EmailTemplateModal.vue:24 #: frontend/src/components/Modals/EmailTemplateModal.vue:24
msgid "Name" msgid "Name"
msgstr "Nome" msgstr ""
#. Option for the 'Event' (Select) field in DocType 'LMS Badge' #. Option for the 'Event' (Select) field in DocType 'LMS Badge'
#: frontend/src/components/Settings/BadgeAssignments.vue:21 #: frontend/src/components/Settings/BadgeAssignments.vue:21
@@ -4372,7 +4402,7 @@ msgstr "Nome"
#: frontend/src/pages/Programs/Programs.vue:10 #: frontend/src/pages/Programs/Programs.vue:10
#: lms/lms/doctype/lms_badge/lms_badge.json #: lms/lms/doctype/lms_badge/lms_badge.json
msgid "New" msgid "New"
msgstr "Novo" msgstr ""
#: lms/www/lms.py:149 #: lms/www/lms.py:149
msgid "New Batch" msgid "New Batch"
@@ -4390,7 +4420,7 @@ msgstr ""
msgid "New Job" msgid "New Job"
msgstr "" msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:27 #: lms/job/doctype/lms_job_application/lms_job_application.py:31
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "" msgstr ""
@@ -4581,7 +4611,7 @@ msgstr "Não Guardado"
#. Label of the note (Text Editor) field in DocType 'LMS Lesson Note' #. Label of the note (Text Editor) field in DocType 'LMS Lesson Note'
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json #: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
msgid "Note" msgid "Note"
msgstr "Nota" msgstr ""
#: frontend/src/pages/Lesson.vue:404 frontend/src/pages/Lesson.vue:880 #: frontend/src/pages/Lesson.vue:404 frontend/src/pages/Lesson.vue:880
#: frontend/src/pages/Lesson.vue:891 #: frontend/src/pages/Lesson.vue:891
@@ -4818,7 +4848,7 @@ msgstr ""
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:362 #: frontend/src/components/Modals/Event.vue:393
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass" msgid "Pass"
@@ -4945,7 +4975,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' #. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:354 #: frontend/src/components/Modals/Event.vue:385
#: lms/lms/doctype/cohort_join_request/cohort_join_request.json #: lms/lms/doctype/cohort_join_request/cohort_join_request.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
@@ -4964,7 +4994,7 @@ msgstr ""
msgid "Percentage (e.g. 70%)" msgid "Percentage (e.g. 70%)"
msgstr "" msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:44 #: frontend/src/components/Modals/BatchStudentProgress.vue:46
msgid "Percentage/Status" msgid "Percentage/Status"
msgstr "" msgstr ""
@@ -5080,7 +5110,7 @@ msgstr ""
msgid "Please prepare well and be on time for the evaluations." msgid "Please prepare well and be on time for the evaluations."
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:135 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:139
msgid "Please run the code to execute the test cases." msgid "Please run the code to execute the test cases."
msgstr "" msgstr ""
@@ -5317,11 +5347,11 @@ msgstr ""
#: frontend/src/components/Settings/BadgeForm.vue:200 #: frontend/src/components/Settings/BadgeForm.vue:200
#: frontend/src/components/Settings/Badges.vue:205 #: frontend/src/components/Settings/Badges.vue:205
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:420 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:426
msgid "Programming Exercise Submission" msgid "Programming Exercise Submission"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:411 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:417
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298
msgid "Programming Exercise Submissions" msgid "Programming Exercise Submissions"
msgstr "" msgstr ""
@@ -5355,7 +5385,7 @@ msgstr ""
#. Label of the progress (Float) field in DocType 'LMS Enrollment' #. Label of the progress (Float) field in DocType 'LMS Enrollment'
#. Label of the progress (Int) field in DocType 'LMS Program Member' #. Label of the progress (Int) field in DocType 'LMS Program Member'
#: frontend/src/components/Modals/BatchStudentProgress.vue:94 #: frontend/src/components/Modals/BatchStudentProgress.vue:98
#: frontend/src/components/Modals/CourseProgressSummary.vue:224 #: frontend/src/components/Modals/CourseProgressSummary.vue:224
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json #: lms/lms/doctype/lms_enrollment/lms_enrollment.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json #: lms/lms/doctype/lms_program_member/lms_program_member.json
@@ -5401,7 +5431,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Course' #. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program' #. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51 #: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:108 #: frontend/src/components/Modals/Event.vue:122
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152 #: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100 #: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5569,7 +5599,7 @@ msgstr ""
#. Label of the rating (Data) field in DocType 'LMS Course' #. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review' #. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147 #: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:86 #: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/ReviewModal.vue:18 #: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
@@ -5656,6 +5686,7 @@ msgid "Remove Highlight"
msgstr "" msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:27 #: frontend/src/components/Modals/AnnouncementModal.vue:27
#: frontend/src/pages/JobApplications.vue:127
msgid "Reply To" msgid "Reply To"
msgstr "" msgstr ""
@@ -5815,8 +5846,8 @@ msgstr ""
#: frontend/src/components/Controls/CodeEditor.vue:25 #: frontend/src/components/Controls/CodeEditor.vue:25
#: frontend/src/components/Modals/AssignmentForm.vue:59 #: frontend/src/components/Modals/AssignmentForm.vue:59
#: frontend/src/components/Modals/EmailTemplateModal.vue:12 #: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:101 #: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:129 #: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
@@ -5832,7 +5863,7 @@ msgstr ""
#: frontend/src/pages/Quizzes.vue:105 #: frontend/src/pages/Quizzes.vue:105
#: lms/job/web_form/job_opportunity/job_opportunity.json #: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Save" msgid "Save"
msgstr "Salvar" msgstr ""
#. Label of the schedule (Table) field in DocType 'Course Evaluator' #. Label of the schedule (Table) field in DocType 'Course Evaluator'
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
@@ -5955,13 +5986,22 @@ msgid "Select an assignment"
msgstr "" msgstr ""
#: frontend/src/components/ContactUsEmail.vue:33 #: frontend/src/components/ContactUsEmail.vue:33
#: frontend/src/pages/JobApplications.vue:110
msgid "Send" msgid "Send"
msgstr "Enviar" msgstr ""
#: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.js:7 #: lms/lms/doctype/lms_batch_enrollment/lms_batch_enrollment.js:7
msgid "Send Confirmation Email" msgid "Send Confirmation Email"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:268
msgid "Send Email"
msgstr ""
#: frontend/src/pages/JobApplications.vue:106
msgid "Send Email to {0}"
msgstr ""
#. Label of the send_calendar_invite_for_evaluations (Check) field in DocType #. Label of the send_calendar_invite_for_evaluations (Check) field in DocType
#. 'LMS Settings' #. 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -6004,7 +6044,7 @@ msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:19 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:19
#: frontend/src/pages/QuizForm.vue:86 #: frontend/src/pages/QuizForm.vue:86
msgid "Settings" msgid "Settings"
msgstr "Configurações" msgstr ""
#: frontend/src/pages/ProfileAbout.vue:79 #: frontend/src/pages/ProfileAbout.vue:79
msgid "Share on" msgid "Share on"
@@ -6122,11 +6162,11 @@ msgstr ""
msgid "Slot Times are overlapping for some schedules." msgid "Slot Times are overlapping for some schedules."
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:201 #: frontend/src/pages/ProfileEvaluator.vue:218
msgid "Slot added successfully" msgid "Slot added successfully"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:240 #: frontend/src/pages/ProfileEvaluator.vue:257
msgid "Slot deleted successfully" msgid "Slot deleted successfully"
msgstr "" msgstr ""
@@ -6161,7 +6201,7 @@ msgstr ""
#: lms/lms/doctype/lms_source/lms_source.json #: lms/lms/doctype/lms_source/lms_source.json
#: lms/lms/doctype/lms_video_watch_duration/lms_video_watch_duration.json #: lms/lms/doctype/lms_video_watch_duration/lms_video_watch_duration.json
msgid "Source" msgid "Source"
msgstr "Fonte" msgstr ""
#. Option for the 'Role' (Select) field in DocType 'Cohort Staff' #. Option for the 'Role' (Select) field in DocType 'Cohort Staff'
#. Option for the 'Member Type' (Select) field in DocType 'LMS Enrollment' #. Option for the 'Member Type' (Select) field in DocType 'LMS Enrollment'
@@ -6265,7 +6305,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission' #. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission' #. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:91 #: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Settings/Badges.vue:228 #: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19 #: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6336,10 +6376,12 @@ msgstr ""
#: frontend/src/components/ContactUsEmail.vue:13 #: frontend/src/components/ContactUsEmail.vue:13
#: frontend/src/components/Modals/AnnouncementModal.vue:20 #: frontend/src/components/Modals/AnnouncementModal.vue:20
#: frontend/src/components/Modals/EmailTemplateModal.vue:31 #: frontend/src/components/Modals/EmailTemplateModal.vue:31
#: frontend/src/pages/JobApplications.vue:121
msgid "Subject" msgid "Subject"
msgstr "Assunto" msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:94 #: frontend/src/components/Modals/AnnouncementModal.vue:94
#: frontend/src/pages/JobApplications.vue:237
msgid "Subject is required" msgid "Subject is required"
msgstr "" msgstr ""
@@ -6356,7 +6398,7 @@ msgstr ""
msgid "Submission by" msgid "Submission by"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:353 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:359
msgid "Submission saved!" msgid "Submission saved!"
msgstr "" msgstr ""
@@ -6396,7 +6438,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:97 #: frontend/src/components/Modals/Event.vue:106
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary" msgid "Summary"
msgstr "" msgstr ""
@@ -6501,7 +6543,7 @@ msgstr ""
#. Label of the template (Link) field in DocType 'Cohort Web Page' #. Label of the template (Link) field in DocType 'Cohort Web Page'
#. Label of the template (Link) field in DocType 'LMS Certificate' #. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43 #: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:112 #: frontend/src/components/Modals/Event.vue:127
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template" msgid "Template"
@@ -6542,7 +6584,7 @@ msgstr ""
msgid "Test this Exercise" msgid "Test this Exercise"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:92 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:93
msgid "Test {0}" msgid "Test {0}"
msgstr "" msgstr ""
@@ -6833,14 +6875,14 @@ msgstr ""
#: lms/lms/doctype/lms_timetable_template/lms_timetable_template.json #: lms/lms/doctype/lms_timetable_template/lms_timetable_template.json
#: lms/lms/doctype/work_experience/work_experience.json #: lms/lms/doctype/work_experience/work_experience.json
msgid "Title" msgid "Title"
msgstr "Título" msgstr ""
#: frontend/src/components/Modals/ChapterModal.vue:172 #: frontend/src/components/Modals/ChapterModal.vue:172
msgid "Title is required" msgid "Title is required"
msgstr "" msgstr ""
#. Label of the unavailable_to (Date) field in DocType 'Course Evaluator' #. Label of the unavailable_to (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:112 #: frontend/src/pages/ProfileEvaluator.vue:120
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "To" msgid "To"
msgstr "" msgstr ""
@@ -6953,7 +6995,7 @@ msgstr ""
msgid "Unavailability" msgid "Unavailability"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:259 #: frontend/src/pages/ProfileEvaluator.vue:276
msgid "Unavailability updated successfully" msgid "Unavailability updated successfully"
msgstr "" msgstr ""
@@ -7017,7 +7059,7 @@ msgstr ""
#: frontend/src/components/Settings/BrandSettings.vue:24 #: frontend/src/components/Settings/BrandSettings.vue:24
#: frontend/src/components/Settings/SettingDetails.vue:23 #: frontend/src/components/Settings/SettingDetails.vue:23
msgid "Update" msgid "Update"
msgstr "Atualizar" msgstr ""
#: lms/templates/emails/community_course_membership.html:11 #: lms/templates/emails/community_course_membership.html:11
msgid "Update Password" msgid "Update Password"
@@ -7103,7 +7145,7 @@ msgstr ""
#. Label of the value (Rating) field in DocType 'LMS Batch Feedback' #. Label of the value (Rating) field in DocType 'LMS Batch Feedback'
#: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json #: lms/lms/doctype/lms_batch_feedback/lms_batch_feedback.json
msgid "Value" msgid "Value"
msgstr "Valor" msgstr ""
#. Option for the 'Event' (Select) field in DocType 'LMS Badge' #. Option for the 'Event' (Select) field in DocType 'LMS Badge'
#: lms/lms/doctype/lms_badge/lms_badge.json #: lms/lms/doctype/lms_badge/lms_badge.json
@@ -7123,11 +7165,19 @@ msgstr ""
msgid "View" msgid "View"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:31
msgid "View Applications"
msgstr ""
#: frontend/src/components/CertificationLinks.vue:10 #: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67 #: frontend/src/components/Modals/Event.vue:67
msgid "View Certificate" msgid "View Certificate"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:262
msgid "View Resume"
msgstr ""
#: frontend/src/components/BatchFeedback.vue:56 #: frontend/src/components/BatchFeedback.vue:56
msgid "View all feedback" msgid "View all feedback"
msgstr "" msgstr ""
@@ -7146,7 +7196,7 @@ msgstr ""
msgid "Visit Batch" msgid "Visit Batch"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:41 #: frontend/src/pages/JobDetail.vue:52
msgid "Visit Website" msgid "Visit Website"
msgstr "" msgstr ""
@@ -7355,7 +7405,7 @@ msgstr ""
msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session." msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session."
msgstr "" msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:22 #: lms/job/doctype/lms_job_application/lms_job_application.py:26
msgid "You have already applied for this job." msgid "You have already applied for this job."
msgstr "" msgstr ""
@@ -7371,7 +7421,7 @@ msgstr ""
msgid "You have already reviewed this course" msgid "You have already reviewed this course"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:57 #: frontend/src/pages/JobDetail.vue:68
msgid "You have applied" msgid "You have applied"
msgstr "" msgstr ""
@@ -7451,7 +7501,7 @@ msgstr ""
msgid "Your Account has been successfully created!" msgid "Your Account has been successfully created!"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:119 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:121
msgid "Your Output" msgid "Your Output"
msgstr "" msgstr ""
@@ -7459,7 +7509,7 @@ msgstr ""
msgid "Your batch {0} is starting tomorrow" msgid "Your batch {0} is starting tomorrow"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:134 #: frontend/src/pages/ProfileEvaluator.vue:143
msgid "Your calendar is set." msgid "Your calendar is set."
msgstr "" msgstr ""
@@ -7538,11 +7588,11 @@ msgstr ""
msgid "and then 'Add to Home Screen'" msgid "and then 'Add to Home Screen'"
msgstr "" msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114 #: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicant" msgid "applicant"
msgstr "" msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114 #: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicants" msgid "applicants"
msgstr "" msgstr ""

File diff suppressed because it is too large Load Diff

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2025-10-31 16:04+0000\n" "POT-Creation-Date: 2025-11-07 16:04+0000\n"
"PO-Revision-Date: 2025-11-02 19:07\n" "PO-Revision-Date: 2025-11-11 11:49\n"
"Last-Translator: jannat@frappe.io\n" "Last-Translator: jannat@frappe.io\n"
"Language-Team: Russian\n" "Language-Team: Russian\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -176,7 +176,7 @@ msgstr ""
msgid "Add Row" msgid "Add Row"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:89 #: frontend/src/pages/ProfileEvaluator.vue:96
msgid "Add Slot" msgid "Add Slot"
msgstr "Добавить слот" msgstr "Добавить слот"
@@ -426,12 +426,25 @@ msgstr ""
msgid "Appears when the batch URL is shared on socials" msgid "Appears when the batch URL is shared on socials"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:24
msgid "Application"
msgstr ""
#. Label of a field in the job-opportunity Web Form #. Label of a field in the job-opportunity Web Form
#: lms/job/web_form/job_opportunity/job_opportunity.json #: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Application Form Link" msgid "Application Form Link"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:51 #: frontend/src/pages/JobApplications.vue:14
#: frontend/src/pages/JobApplications.vue:25
msgid "Applications"
msgstr ""
#: frontend/src/pages/JobApplications.vue:290
msgid "Applied On"
msgstr ""
#: frontend/src/pages/JobDetail.vue:62
msgid "Apply" msgid "Apply"
msgstr "" msgstr ""
@@ -483,7 +496,7 @@ msgstr ""
#. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch' #. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the assessment (Table) field in DocType 'LMS Batch' #. Label of the assessment (Table) field in DocType 'LMS Batch'
#: frontend/src/components/Modals/AssessmentModal.vue:27 #: frontend/src/components/Modals/AssessmentModal.vue:27
#: frontend/src/components/Modals/BatchStudentProgress.vue:41 #: frontend/src/components/Modals/BatchStudentProgress.vue:43
#: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11 #: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11
msgid "Assessment" msgid "Assessment"
msgstr "Оценка" msgstr "Оценка"
@@ -569,7 +582,7 @@ msgstr ""
msgid "Assignment Title" msgid "Assignment Title"
msgstr "Название задания" msgstr "Название задания"
#: frontend/src/components/Modals/AssignmentForm.vue:125 #: frontend/src/components/Modals/AssignmentForm.vue:133
msgid "Assignment created successfully" msgid "Assignment created successfully"
msgstr "" msgstr ""
@@ -581,7 +594,7 @@ msgstr "Задание для урока {0} от {1} уже существуе
msgid "Assignment submitted successfully" msgid "Assignment submitted successfully"
msgstr "" msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:138 #: frontend/src/components/Modals/AssignmentForm.vue:146
msgid "Assignment updated successfully" msgid "Assignment updated successfully"
msgstr "" msgstr ""
@@ -622,7 +635,7 @@ msgstr ""
msgid "Attire Preference" msgid "Attire Preference"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:137 #: frontend/src/pages/ProfileEvaluator.vue:146
msgid "Authorize Google Calendar Access" msgid "Authorize Google Calendar Access"
msgstr "Разрешить доступ к Google Календарю" msgstr "Разрешить доступ к Google Календарю"
@@ -637,7 +650,7 @@ msgstr "Автоназначение"
msgid "Auto Recording" msgid "Auto Recording"
msgstr "Авто. запись" msgstr "Авто. запись"
#: frontend/src/pages/ProfileEvaluator.vue:224 #: frontend/src/pages/ProfileEvaluator.vue:241
msgid "Availability updated successfully" msgid "Availability updated successfully"
msgstr "" msgstr ""
@@ -768,6 +781,7 @@ msgstr ""
#. Name of a role #. Name of a role
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -998,7 +1012,7 @@ msgstr "Ссылка на сертификат"
msgid "Certificate of Completion" msgid "Certificate of Completion"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:317 #: frontend/src/components/Modals/Event.vue:348
msgid "Certificate saved successfully" msgid "Certificate saved successfully"
msgstr "" msgstr ""
@@ -1018,7 +1032,7 @@ msgstr ""
#. Label of a Card Break in the LMS Workspace #. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:626 #: frontend/src/components/AppSidebar.vue:626
#: frontend/src/components/Modals/Event.vue:381 #: frontend/src/components/Modals/Event.vue:412
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10 #: frontend/src/pages/CourseCertification.vue:10
#: frontend/src/pages/CourseCertification.vue:135 #: frontend/src/pages/CourseCertification.vue:135
@@ -1640,6 +1654,7 @@ msgstr ""
#: lms/lms/doctype/course_chapter/course_chapter.json #: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json #: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
@@ -1757,7 +1772,7 @@ msgstr "Курс {0} уже добавлен в группу."
#: frontend/src/components/BatchCourses.vue:5 #: frontend/src/components/BatchCourses.vue:5
#: frontend/src/components/BatchOverlay.vue:37 #: frontend/src/components/BatchOverlay.vue:37
#: frontend/src/components/BatchStudents.vue:25 #: frontend/src/components/BatchStudents.vue:25
#: frontend/src/components/Modals/BatchStudentProgress.vue:91 #: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127 #: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340 #: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340
@@ -2169,7 +2184,7 @@ msgstr "E-mail"
#: frontend/src/components/DiscussionReplies.vue:35 #: frontend/src/components/DiscussionReplies.vue:35
#: frontend/src/components/Modals/ChapterModal.vue:9 #: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/components/Settings/Badges.vue:156 #: frontend/src/components/Settings/Badges.vue:156
#: frontend/src/pages/JobDetail.vue:34 frontend/src/pages/Lesson.vue:42 #: frontend/src/pages/JobDetail.vue:45 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36 #: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36
msgid "Edit" msgid "Edit"
msgstr "" msgstr ""
@@ -2236,7 +2251,7 @@ msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:105 #: frontend/src/components/Settings/Evaluators.vue:105
#: frontend/src/components/Settings/Members.vue:103 #: frontend/src/components/Settings/Members.vue:103
#: lms/templates/signup-form.html:10 #: frontend/src/pages/JobApplications.vue:284 lms/templates/signup-form.html:10
msgid "Email" msgid "Email"
msgstr "" msgstr ""
@@ -2272,6 +2287,7 @@ msgid "Email Templates deleted successfully"
msgstr "" msgstr ""
#: frontend/src/components/ContactUsEmail.vue:57 #: frontend/src/components/ContactUsEmail.vue:57
#: frontend/src/pages/JobApplications.vue:244
msgid "Email sent successfully" msgid "Email sent successfully"
msgstr "Письмо успешно отправлено" msgstr "Письмо успешно отправлено"
@@ -2414,6 +2430,14 @@ msgstr "Введите идентификатор клиента и секрет
msgid "Enter a URL" msgid "Enter a URL"
msgstr "Введите ссылку" msgstr "Введите ссылку"
#: frontend/src/pages/JobApplications.vue:122
msgid "Enter email subject"
msgstr ""
#: frontend/src/pages/JobApplications.vue:128
msgid "Enter reply to email"
msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:169 #: frontend/src/components/Modals/ZoomAccountModal.vue:169
msgid "Error creating Zoom Account" msgid "Error creating Zoom Account"
msgstr "" msgstr ""
@@ -2453,7 +2477,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace #. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:374 lms/lms/workspace/lms/lms.json #: frontend/src/components/Modals/Event.vue:405 lms/lms/workspace/lms/lms.json
msgid "Evaluation" msgid "Evaluation"
msgstr "Оценка" msgstr "Оценка"
@@ -2478,7 +2502,7 @@ msgstr "Запрос на оценку"
msgid "Evaluation end date cannot be less than the batch end date." msgid "Evaluation end date cannot be less than the batch end date."
msgstr "Дата окончания оценки не может быть меньше даты окончания группы." msgstr "Дата окончания оценки не может быть меньше даты окончания группы."
#: frontend/src/components/Modals/Event.vue:256 #: frontend/src/components/Modals/Event.vue:287
msgid "Evaluation saved successfully" msgid "Evaluation saved successfully"
msgstr "" msgstr ""
@@ -2586,7 +2610,7 @@ msgstr ""
#. Label of the expected_output (Data) field in DocType 'LMS Test Case' #. Label of the expected_output (Data) field in DocType 'LMS Test Case'
#. Label of the expected_output (Data) field in DocType 'LMS Test Case #. Label of the expected_output (Data) field in DocType 'LMS Test Case
#. Submission' #. Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:127 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:129
#: lms/lms/doctype/lms_test_case/lms_test_case.json #: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Expected Output" msgid "Expected Output"
@@ -2599,7 +2623,7 @@ msgstr "Дата окончания срока"
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33 #: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:126 #: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date" msgid "Expiry Date"
msgstr "Истекает" msgstr "Истекает"
@@ -2626,7 +2650,7 @@ msgstr "Узнать больше"
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:366 #: frontend/src/components/Modals/Event.vue:397
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail" msgid "Fail"
@@ -2657,7 +2681,7 @@ msgstr ""
msgid "Failed to send email" msgid "Failed to send email"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:358 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:364
msgid "Failed to submit. Please try again. {0}" msgid "Failed to submit. Please try again. {0}"
msgstr "" msgstr ""
@@ -2770,7 +2794,7 @@ msgid "Friday"
msgstr "Пятница" msgstr "Пятница"
#. Label of the unavailable_from (Date) field in DocType 'Course Evaluator' #. Label of the unavailable_from (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:99 #: frontend/src/pages/ProfileEvaluator.vue:106
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "From" msgid "From"
msgstr "" msgstr ""
@@ -2782,6 +2806,7 @@ msgstr ""
#. Label of the full_name (Data) field in DocType 'Course Evaluator' #. Label of the full_name (Data) field in DocType 'Course Evaluator'
#. Label of the full_name (Data) field in DocType 'LMS Program Member' #. Label of the full_name (Data) field in DocType 'LMS Program Member'
#: frontend/src/pages/JobApplications.vue:278
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json #: lms/lms/doctype/lms_program_member/lms_program_member.json
#: lms/templates/signup-form.html:5 #: lms/templates/signup-form.html:5
@@ -3019,7 +3044,7 @@ msgstr "Я рад сообщить вам, что вы успешно получ
msgid "I am looking for a job" msgid "I am looking for a job"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:94 #: frontend/src/pages/ProfileEvaluator.vue:101
msgid "I am unavailable" msgid "I am unavailable"
msgstr "Я недоступен" msgstr "Я недоступен"
@@ -3105,7 +3130,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course' #. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:358 #: frontend/src/components/Modals/Event.vue:389
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
@@ -3161,7 +3186,7 @@ msgstr "Отрасль"
#. Label of the input (Data) field in DocType 'LMS Test Case' #. Label of the input (Data) field in DocType 'LMS Test Case'
#. Label of the input (Data) field in DocType 'LMS Test Case Submission' #. Label of the input (Data) field in DocType 'LMS Test Case Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:113 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:115
#: lms/lms/doctype/lms_test_case/lms_test_case.json #: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Input" msgid "Input"
@@ -3273,7 +3298,7 @@ msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification' #. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate' #. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28 #: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:121 #: frontend/src/components/Modals/Event.vue:138
#: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date" msgid "Issue Date"
@@ -3358,8 +3383,8 @@ msgid "Job Title"
msgstr "Должность" msgstr "Должность"
#. Label of the jobs (Check) field in DocType 'LMS Settings' #. Label of the jobs (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/JobDetail.vue:10 frontend/src/pages/Jobs.vue:8 #: frontend/src/pages/JobApplications.vue:9 frontend/src/pages/JobDetail.vue:10
#: frontend/src/pages/Jobs.vue:212 #: frontend/src/pages/Jobs.vue:8 frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs" msgid "Jobs"
msgstr "Вакансии" msgstr "Вакансии"
@@ -3375,7 +3400,7 @@ msgstr ""
msgid "Join Call" msgid "Join Call"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:74 #: frontend/src/components/Modals/Event.vue:78
msgid "Join Meeting" msgid "Join Meeting"
msgstr "" msgstr ""
@@ -3883,7 +3908,7 @@ msgstr "Логин"
msgid "Login to Frappe Cloud?" msgid "Login to Frappe Cloud?"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:63 #: frontend/src/pages/JobDetail.vue:74
msgid "Login to apply" msgid "Login to apply"
msgstr "" msgstr ""
@@ -4228,9 +4253,14 @@ msgid "Mentor Request Status Update Template"
msgstr "Шаблон обновления статуса запроса наставника" msgstr "Шаблон обновления статуса запроса наставника"
#: frontend/src/components/ContactUsEmail.vue:19 #: frontend/src/components/ContactUsEmail.vue:19
#: frontend/src/pages/JobApplications.vue:132
msgid "Message" msgid "Message"
msgstr "Сообщение" msgstr "Сообщение"
#: frontend/src/pages/JobApplications.vue:240
msgid "Message is required"
msgstr ""
#. Label of the meta_description (Small Text) field in DocType 'LMS Settings' #. Label of the meta_description (Small Text) field in DocType 'LMS Settings'
#: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303 #: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -4351,7 +4381,7 @@ msgstr ""
msgid "My availability" msgid "My availability"
msgstr "Моя доступность" msgstr "Моя доступность"
#: frontend/src/pages/ProfileEvaluator.vue:127 #: frontend/src/pages/ProfileEvaluator.vue:136
msgid "My calendar" msgid "My calendar"
msgstr "Мой календарь" msgstr "Мой календарь"
@@ -4390,7 +4420,7 @@ msgstr ""
msgid "New Job" msgid "New Job"
msgstr "Новая Вакансия" msgstr "Новая Вакансия"
#: lms/job/doctype/lms_job_application/lms_job_application.py:27 #: lms/job/doctype/lms_job_application/lms_job_application.py:31
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "Новый соискатель работы" msgstr "Новый соискатель работы"
@@ -4818,7 +4848,7 @@ msgstr "Частично завершено"
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:362 #: frontend/src/components/Modals/Event.vue:393
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass" msgid "Pass"
@@ -4945,7 +4975,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' #. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:354 #: frontend/src/components/Modals/Event.vue:385
#: lms/lms/doctype/cohort_join_request/cohort_join_request.json #: lms/lms/doctype/cohort_join_request/cohort_join_request.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
@@ -4964,7 +4994,7 @@ msgstr "Проценты"
msgid "Percentage (e.g. 70%)" msgid "Percentage (e.g. 70%)"
msgstr "Процент (например, 70%)" msgstr "Процент (например, 70%)"
#: frontend/src/components/Modals/BatchStudentProgress.vue:44 #: frontend/src/components/Modals/BatchStudentProgress.vue:46
msgid "Percentage/Status" msgid "Percentage/Status"
msgstr "" msgstr ""
@@ -5080,7 +5110,7 @@ msgstr ""
msgid "Please prepare well and be on time for the evaluations." msgid "Please prepare well and be on time for the evaluations."
msgstr "Пожалуйста, хорошо подготовьтесь и приходите на оценку вовремя." msgstr "Пожалуйста, хорошо подготовьтесь и приходите на оценку вовремя."
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:135 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:139
msgid "Please run the code to execute the test cases." msgid "Please run the code to execute the test cases."
msgstr "" msgstr ""
@@ -5317,11 +5347,11 @@ msgstr ""
#: frontend/src/components/Settings/BadgeForm.vue:200 #: frontend/src/components/Settings/BadgeForm.vue:200
#: frontend/src/components/Settings/Badges.vue:205 #: frontend/src/components/Settings/Badges.vue:205
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:420 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:426
msgid "Programming Exercise Submission" msgid "Programming Exercise Submission"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:411 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:417
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298
msgid "Programming Exercise Submissions" msgid "Programming Exercise Submissions"
msgstr "" msgstr ""
@@ -5355,7 +5385,7 @@ msgstr ""
#. Label of the progress (Float) field in DocType 'LMS Enrollment' #. Label of the progress (Float) field in DocType 'LMS Enrollment'
#. Label of the progress (Int) field in DocType 'LMS Program Member' #. Label of the progress (Int) field in DocType 'LMS Program Member'
#: frontend/src/components/Modals/BatchStudentProgress.vue:94 #: frontend/src/components/Modals/BatchStudentProgress.vue:98
#: frontend/src/components/Modals/CourseProgressSummary.vue:224 #: frontend/src/components/Modals/CourseProgressSummary.vue:224
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json #: lms/lms/doctype/lms_enrollment/lms_enrollment.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json #: lms/lms/doctype/lms_program_member/lms_program_member.json
@@ -5401,7 +5431,7 @@ msgstr "Опубликовать на странице участника"
#. Label of the published (Check) field in DocType 'LMS Course' #. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program' #. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51 #: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:108 #: frontend/src/components/Modals/Event.vue:122
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152 #: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100 #: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5569,7 +5599,7 @@ msgstr ""
#. Label of the rating (Data) field in DocType 'LMS Course' #. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review' #. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147 #: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:86 #: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/ReviewModal.vue:18 #: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
@@ -5656,6 +5686,7 @@ msgid "Remove Highlight"
msgstr "" msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:27 #: frontend/src/components/Modals/AnnouncementModal.vue:27
#: frontend/src/pages/JobApplications.vue:127
msgid "Reply To" msgid "Reply To"
msgstr "Ответить" msgstr "Ответить"
@@ -5815,8 +5846,8 @@ msgstr "Суббота"
#: frontend/src/components/Controls/CodeEditor.vue:25 #: frontend/src/components/Controls/CodeEditor.vue:25
#: frontend/src/components/Modals/AssignmentForm.vue:59 #: frontend/src/components/Modals/AssignmentForm.vue:59
#: frontend/src/components/Modals/EmailTemplateModal.vue:12 #: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:101 #: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:129 #: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
@@ -5955,6 +5986,7 @@ msgid "Select an assignment"
msgstr "" msgstr ""
#: frontend/src/components/ContactUsEmail.vue:33 #: frontend/src/components/ContactUsEmail.vue:33
#: frontend/src/pages/JobApplications.vue:110
msgid "Send" msgid "Send"
msgstr "" msgstr ""
@@ -5962,6 +5994,14 @@ msgstr ""
msgid "Send Confirmation Email" msgid "Send Confirmation Email"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:268
msgid "Send Email"
msgstr ""
#: frontend/src/pages/JobApplications.vue:106
msgid "Send Email to {0}"
msgstr ""
#. Label of the send_calendar_invite_for_evaluations (Check) field in DocType #. Label of the send_calendar_invite_for_evaluations (Check) field in DocType
#. 'LMS Settings' #. 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -6122,11 +6162,11 @@ msgstr "Пропустить"
msgid "Slot Times are overlapping for some schedules." msgid "Slot Times are overlapping for some schedules."
msgstr "В некоторых расписаниях интервалы времени пересекаются." msgstr "В некоторых расписаниях интервалы времени пересекаются."
#: frontend/src/pages/ProfileEvaluator.vue:201 #: frontend/src/pages/ProfileEvaluator.vue:218
msgid "Slot added successfully" msgid "Slot added successfully"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:240 #: frontend/src/pages/ProfileEvaluator.vue:257
msgid "Slot deleted successfully" msgid "Slot deleted successfully"
msgstr "" msgstr ""
@@ -6265,7 +6305,7 @@ msgstr "Статистика"
#. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission' #. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission' #. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:91 #: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Settings/Badges.vue:228 #: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19 #: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6336,10 +6376,12 @@ msgstr "Подруппа"
#: frontend/src/components/ContactUsEmail.vue:13 #: frontend/src/components/ContactUsEmail.vue:13
#: frontend/src/components/Modals/AnnouncementModal.vue:20 #: frontend/src/components/Modals/AnnouncementModal.vue:20
#: frontend/src/components/Modals/EmailTemplateModal.vue:31 #: frontend/src/components/Modals/EmailTemplateModal.vue:31
#: frontend/src/pages/JobApplications.vue:121
msgid "Subject" msgid "Subject"
msgstr "" msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:94 #: frontend/src/components/Modals/AnnouncementModal.vue:94
#: frontend/src/pages/JobApplications.vue:237
msgid "Subject is required" msgid "Subject is required"
msgstr "" msgstr ""
@@ -6356,7 +6398,7 @@ msgstr ""
msgid "Submission by" msgid "Submission by"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:353 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:359
msgid "Submission saved!" msgid "Submission saved!"
msgstr "" msgstr ""
@@ -6396,7 +6438,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:97 #: frontend/src/components/Modals/Event.vue:106
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary" msgid "Summary"
msgstr "Резюме" msgstr "Резюме"
@@ -6501,7 +6543,7 @@ msgstr ""
#. Label of the template (Link) field in DocType 'Cohort Web Page' #. Label of the template (Link) field in DocType 'Cohort Web Page'
#. Label of the template (Link) field in DocType 'LMS Certificate' #. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43 #: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:112 #: frontend/src/components/Modals/Event.vue:127
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template" msgid "Template"
@@ -6542,7 +6584,7 @@ msgstr "Результаты тестирования"
msgid "Test this Exercise" msgid "Test this Exercise"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:92 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:93
msgid "Test {0}" msgid "Test {0}"
msgstr "" msgstr ""
@@ -6840,7 +6882,7 @@ msgid "Title is required"
msgstr "" msgstr ""
#. Label of the unavailable_to (Date) field in DocType 'Course Evaluator' #. Label of the unavailable_to (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:112 #: frontend/src/pages/ProfileEvaluator.vue:120
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "To" msgid "To"
msgstr "" msgstr ""
@@ -6953,7 +6995,7 @@ msgstr ""
msgid "Unavailability" msgid "Unavailability"
msgstr "Недоступность" msgstr "Недоступность"
#: frontend/src/pages/ProfileEvaluator.vue:259 #: frontend/src/pages/ProfileEvaluator.vue:276
msgid "Unavailability updated successfully" msgid "Unavailability updated successfully"
msgstr "" msgstr ""
@@ -7123,11 +7165,19 @@ msgstr ""
msgid "View" msgid "View"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:31
msgid "View Applications"
msgstr ""
#: frontend/src/components/CertificationLinks.vue:10 #: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67 #: frontend/src/components/Modals/Event.vue:67
msgid "View Certificate" msgid "View Certificate"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:262
msgid "View Resume"
msgstr ""
#: frontend/src/components/BatchFeedback.vue:56 #: frontend/src/components/BatchFeedback.vue:56
msgid "View all feedback" msgid "View all feedback"
msgstr "" msgstr ""
@@ -7146,7 +7196,7 @@ msgstr "Доступность"
msgid "Visit Batch" msgid "Visit Batch"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:41 #: frontend/src/pages/JobDetail.vue:52
msgid "Visit Website" msgid "Visit Website"
msgstr "" msgstr ""
@@ -7355,7 +7405,7 @@ msgstr "Вы получили {0}% правильных ответов с оце
msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session." msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session."
msgstr "" msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:22 #: lms/job/doctype/lms_job_application/lms_job_application.py:26
msgid "You have already applied for this job." msgid "You have already applied for this job."
msgstr "Вы уже подали заявку на эту вакансию." msgstr "Вы уже подали заявку на эту вакансию."
@@ -7371,7 +7421,7 @@ msgstr ""
msgid "You have already reviewed this course" msgid "You have already reviewed this course"
msgstr "Вы уже просмотрели этот курс" msgstr "Вы уже просмотрели этот курс"
#: frontend/src/pages/JobDetail.vue:57 #: frontend/src/pages/JobDetail.vue:68
msgid "You have applied" msgid "You have applied"
msgstr "" msgstr ""
@@ -7451,7 +7501,7 @@ msgstr "Видео YouTube появится в верхней части уро
msgid "Your Account has been successfully created!" msgid "Your Account has been successfully created!"
msgstr "Ваш аккаунт был успешно создан!" msgstr "Ваш аккаунт был успешно создан!"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:119 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:121
msgid "Your Output" msgid "Your Output"
msgstr "" msgstr ""
@@ -7459,7 +7509,7 @@ msgstr ""
msgid "Your batch {0} is starting tomorrow" msgid "Your batch {0} is starting tomorrow"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:134 #: frontend/src/pages/ProfileEvaluator.vue:143
msgid "Your calendar is set." msgid "Your calendar is set."
msgstr "Ваш календарь настроен." msgstr "Ваш календарь настроен."
@@ -7538,11 +7588,11 @@ msgstr ""
msgid "and then 'Add to Home Screen'" msgid "and then 'Add to Home Screen'"
msgstr "" msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114 #: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicant" msgid "applicant"
msgstr "" msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114 #: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicants" msgid "applicants"
msgstr "" msgstr ""

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2025-10-31 16:04+0000\n" "POT-Creation-Date: 2025-11-07 16:04+0000\n"
"PO-Revision-Date: 2025-11-02 19:07\n" "PO-Revision-Date: 2025-11-11 11:49\n"
"Last-Translator: jannat@frappe.io\n" "Last-Translator: jannat@frappe.io\n"
"Language-Team: Serbian (Cyrillic)\n" "Language-Team: Serbian (Cyrillic)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -176,7 +176,7 @@ msgstr "Додај квиз у видео-снимак"
msgid "Add Row" msgid "Add Row"
msgstr "Додај ред" msgstr "Додај ред"
#: frontend/src/pages/ProfileEvaluator.vue:89 #: frontend/src/pages/ProfileEvaluator.vue:96
msgid "Add Slot" msgid "Add Slot"
msgstr "Додај термин" msgstr "Додај термин"
@@ -426,12 +426,25 @@ msgstr "Приказује се када је URL групе подељен на
msgid "Appears when the batch URL is shared on socials" msgid "Appears when the batch URL is shared on socials"
msgstr "Приказује се када је URL групе подељен на друштвеним мрежама" msgstr "Приказује се када је URL групе подељен на друштвеним мрежама"
#: frontend/src/pages/JobApplications.vue:24
msgid "Application"
msgstr "Пријава"
#. Label of a field in the job-opportunity Web Form #. Label of a field in the job-opportunity Web Form
#: lms/job/web_form/job_opportunity/job_opportunity.json #: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Application Form Link" msgid "Application Form Link"
msgstr "Линк за образац пријаве" msgstr "Линк за образац пријаве"
#: frontend/src/pages/JobDetail.vue:51 #: frontend/src/pages/JobApplications.vue:14
#: frontend/src/pages/JobApplications.vue:25
msgid "Applications"
msgstr "Пријаве"
#: frontend/src/pages/JobApplications.vue:290
msgid "Applied On"
msgstr "Примењено на"
#: frontend/src/pages/JobDetail.vue:62
msgid "Apply" msgid "Apply"
msgstr "Примени" msgstr "Примени"
@@ -483,7 +496,7 @@ msgstr "Поставите питање да бисте добили помоћ
#. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch' #. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the assessment (Table) field in DocType 'LMS Batch' #. Label of the assessment (Table) field in DocType 'LMS Batch'
#: frontend/src/components/Modals/AssessmentModal.vue:27 #: frontend/src/components/Modals/AssessmentModal.vue:27
#: frontend/src/components/Modals/BatchStudentProgress.vue:41 #: frontend/src/components/Modals/BatchStudentProgress.vue:43
#: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11 #: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11
msgid "Assessment" msgid "Assessment"
msgstr "Процена" msgstr "Процена"
@@ -569,7 +582,7 @@ msgstr "Подношења задатака"
msgid "Assignment Title" msgid "Assignment Title"
msgstr "Наслов задатка" msgstr "Наслов задатка"
#: frontend/src/components/Modals/AssignmentForm.vue:125 #: frontend/src/components/Modals/AssignmentForm.vue:133
msgid "Assignment created successfully" msgid "Assignment created successfully"
msgstr "Задатак је успешно креиран" msgstr "Задатак је успешно креиран"
@@ -581,7 +594,7 @@ msgstr "Задаци за лекцију {0} од стране {1} већ пос
msgid "Assignment submitted successfully" msgid "Assignment submitted successfully"
msgstr "Задатак је успешно поднет" msgstr "Задатак је успешно поднет"
#: frontend/src/components/Modals/AssignmentForm.vue:138 #: frontend/src/components/Modals/AssignmentForm.vue:146
msgid "Assignment updated successfully" msgid "Assignment updated successfully"
msgstr "Задатак је успешно ажуриран" msgstr "Задатак је успешно ажуриран"
@@ -622,7 +635,7 @@ msgstr "Присутни"
msgid "Attire Preference" msgid "Attire Preference"
msgstr "Преференција одевања" msgstr "Преференција одевања"
#: frontend/src/pages/ProfileEvaluator.vue:137 #: frontend/src/pages/ProfileEvaluator.vue:146
msgid "Authorize Google Calendar Access" msgid "Authorize Google Calendar Access"
msgstr "Одобри приступ Гоогле Цалендар-у" msgstr "Одобри приступ Гоогле Цалендар-у"
@@ -637,7 +650,7 @@ msgstr "Аутоматска додела"
msgid "Auto Recording" msgid "Auto Recording"
msgstr "Аутоматско снимање" msgstr "Аутоматско снимање"
#: frontend/src/pages/ProfileEvaluator.vue:224 #: frontend/src/pages/ProfileEvaluator.vue:241
msgid "Availability updated successfully" msgid "Availability updated successfully"
msgstr "Доступност је успешно ажурирана" msgstr "Доступност је успешно ажурирана"
@@ -768,6 +781,7 @@ msgstr "Потврда уписа у групу"
#. Name of a role #. Name of a role
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -998,7 +1012,7 @@ msgstr "Линк сертификата"
msgid "Certificate of Completion" msgid "Certificate of Completion"
msgstr "Сертификат о похађању" msgstr "Сертификат о похађању"
#: frontend/src/components/Modals/Event.vue:317 #: frontend/src/components/Modals/Event.vue:348
msgid "Certificate saved successfully" msgid "Certificate saved successfully"
msgstr "Сертификат је успешно сачуван" msgstr "Сертификат је успешно сачуван"
@@ -1018,7 +1032,7 @@ msgstr "Сертификати су успешно генерисани"
#. Label of a Card Break in the LMS Workspace #. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:626 #: frontend/src/components/AppSidebar.vue:626
#: frontend/src/components/Modals/Event.vue:381 #: frontend/src/components/Modals/Event.vue:412
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10 #: frontend/src/pages/CourseCertification.vue:10
#: frontend/src/pages/CourseCertification.vue:135 #: frontend/src/pages/CourseCertification.vue:135
@@ -1640,6 +1654,7 @@ msgstr "Број обука"
#: lms/lms/doctype/course_chapter/course_chapter.json #: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json #: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
@@ -1757,7 +1772,7 @@ msgstr "Обука {0} је већ додата у ову групу."
#: frontend/src/components/BatchCourses.vue:5 #: frontend/src/components/BatchCourses.vue:5
#: frontend/src/components/BatchOverlay.vue:37 #: frontend/src/components/BatchOverlay.vue:37
#: frontend/src/components/BatchStudents.vue:25 #: frontend/src/components/BatchStudents.vue:25
#: frontend/src/components/Modals/BatchStudentProgress.vue:91 #: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127 #: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340 #: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340
@@ -2169,7 +2184,7 @@ msgstr "Имејл"
#: frontend/src/components/DiscussionReplies.vue:35 #: frontend/src/components/DiscussionReplies.vue:35
#: frontend/src/components/Modals/ChapterModal.vue:9 #: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/components/Settings/Badges.vue:156 #: frontend/src/components/Settings/Badges.vue:156
#: frontend/src/pages/JobDetail.vue:34 frontend/src/pages/Lesson.vue:42 #: frontend/src/pages/JobDetail.vue:45 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36 #: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36
msgid "Edit" msgid "Edit"
msgstr "Уреди" msgstr "Уреди"
@@ -2236,7 +2251,7 @@ msgstr "Детаљи образовања"
#: frontend/src/components/Settings/Evaluators.vue:105 #: frontend/src/components/Settings/Evaluators.vue:105
#: frontend/src/components/Settings/Members.vue:103 #: frontend/src/components/Settings/Members.vue:103
#: lms/templates/signup-form.html:10 #: frontend/src/pages/JobApplications.vue:284 lms/templates/signup-form.html:10
msgid "Email" msgid "Email"
msgstr "Имејл" msgstr "Имејл"
@@ -2272,6 +2287,7 @@ msgid "Email Templates deleted successfully"
msgstr "Имејл шаблон је успешно обрисан" msgstr "Имејл шаблон је успешно обрисан"
#: frontend/src/components/ContactUsEmail.vue:57 #: frontend/src/components/ContactUsEmail.vue:57
#: frontend/src/pages/JobApplications.vue:244
msgid "Email sent successfully" msgid "Email sent successfully"
msgstr "Имејл је успешно послат" msgstr "Имејл је успешно послат"
@@ -2414,6 +2430,14 @@ msgstr "Унесите ИД клијента и клијентску тајну
msgid "Enter a URL" msgid "Enter a URL"
msgstr "Унесите URL" msgstr "Унесите URL"
#: frontend/src/pages/JobApplications.vue:122
msgid "Enter email subject"
msgstr "Унесите наслов имејла"
#: frontend/src/pages/JobApplications.vue:128
msgid "Enter reply to email"
msgstr "Унесите одговор на имејл"
#: frontend/src/components/Modals/ZoomAccountModal.vue:169 #: frontend/src/components/Modals/ZoomAccountModal.vue:169
msgid "Error creating Zoom Account" msgid "Error creating Zoom Account"
msgstr "Грешка приликом креирања Zoom налога" msgstr "Грешка приликом креирања Zoom налога"
@@ -2453,7 +2477,7 @@ msgstr "Грешка приликом ажурирања имејл шаблон
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace #. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:374 lms/lms/workspace/lms/lms.json #: frontend/src/components/Modals/Event.vue:405 lms/lms/workspace/lms/lms.json
msgid "Evaluation" msgid "Evaluation"
msgstr "Оцењивање" msgstr "Оцењивање"
@@ -2478,7 +2502,7 @@ msgstr "Захтев за оцењивање"
msgid "Evaluation end date cannot be less than the batch end date." msgid "Evaluation end date cannot be less than the batch end date."
msgstr "Датум завршетка оцењивања не може бити мањи од датума завршетка групе." msgstr "Датум завршетка оцењивања не може бити мањи од датума завршетка групе."
#: frontend/src/components/Modals/Event.vue:256 #: frontend/src/components/Modals/Event.vue:287
msgid "Evaluation saved successfully" msgid "Evaluation saved successfully"
msgstr "Оцењивање је успешно сачувано" msgstr "Оцењивање је успешно сачувано"
@@ -2586,7 +2610,7 @@ msgstr "Прошири"
#. Label of the expected_output (Data) field in DocType 'LMS Test Case' #. Label of the expected_output (Data) field in DocType 'LMS Test Case'
#. Label of the expected_output (Data) field in DocType 'LMS Test Case #. Label of the expected_output (Data) field in DocType 'LMS Test Case
#. Submission' #. Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:127 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:129
#: lms/lms/doctype/lms_test_case/lms_test_case.json #: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Expected Output" msgid "Expected Output"
@@ -2599,7 +2623,7 @@ msgstr "Датум истека"
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33 #: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:126 #: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date" msgid "Expiry Date"
msgstr "Датум истека" msgstr "Датум истека"
@@ -2626,7 +2650,7 @@ msgstr "Истражите више"
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:366 #: frontend/src/components/Modals/Event.vue:397
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail" msgid "Fail"
@@ -2657,7 +2681,7 @@ msgstr "Неуспешно преузимање података о присус
msgid "Failed to send email" msgid "Failed to send email"
msgstr "Слање имејла није успело" msgstr "Слање имејла није успело"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:358 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:364
msgid "Failed to submit. Please try again. {0}" msgid "Failed to submit. Please try again. {0}"
msgstr "Неуспешно подношење. Покушајте поново. {0}" msgstr "Неуспешно подношење. Покушајте поново. {0}"
@@ -2770,7 +2794,7 @@ msgid "Friday"
msgstr "Петак" msgstr "Петак"
#. Label of the unavailable_from (Date) field in DocType 'Course Evaluator' #. Label of the unavailable_from (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:99 #: frontend/src/pages/ProfileEvaluator.vue:106
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "From" msgid "From"
msgstr "Од" msgstr "Од"
@@ -2782,6 +2806,7 @@ msgstr "Датум почетка"
#. Label of the full_name (Data) field in DocType 'Course Evaluator' #. Label of the full_name (Data) field in DocType 'Course Evaluator'
#. Label of the full_name (Data) field in DocType 'LMS Program Member' #. Label of the full_name (Data) field in DocType 'LMS Program Member'
#: frontend/src/pages/JobApplications.vue:278
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json #: lms/lms/doctype/lms_program_member/lms_program_member.json
#: lms/templates/signup-form.html:5 #: lms/templates/signup-form.html:5
@@ -3019,7 +3044,7 @@ msgstr "Са задовољством Вас обавештавамо да ст
msgid "I am looking for a job" msgid "I am looking for a job"
msgstr "Тренутно сам у потрази за послом" msgstr "Тренутно сам у потрази за послом"
#: frontend/src/pages/ProfileEvaluator.vue:94 #: frontend/src/pages/ProfileEvaluator.vue:101
msgid "I am unavailable" msgid "I am unavailable"
msgstr "Нисам доступан" msgstr "Нисам доступан"
@@ -3105,7 +3130,7 @@ msgstr "Слика: Оштећен ток података"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course' #. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:358 #: frontend/src/components/Modals/Event.vue:389
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
@@ -3161,7 +3186,7 @@ msgstr "Индустрија"
#. Label of the input (Data) field in DocType 'LMS Test Case' #. Label of the input (Data) field in DocType 'LMS Test Case'
#. Label of the input (Data) field in DocType 'LMS Test Case Submission' #. Label of the input (Data) field in DocType 'LMS Test Case Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:113 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:115
#: lms/lms/doctype/lms_test_case/lms_test_case.json #: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Input" msgid "Input"
@@ -3273,7 +3298,7 @@ msgstr "SCORM пакет"
#. Label of the issue_date (Date) field in DocType 'Certification' #. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate' #. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28 #: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:121 #: frontend/src/components/Modals/Event.vue:138
#: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date" msgid "Issue Date"
@@ -3358,8 +3383,8 @@ msgid "Job Title"
msgstr "Назив радног места" msgstr "Назив радног места"
#. Label of the jobs (Check) field in DocType 'LMS Settings' #. Label of the jobs (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/JobDetail.vue:10 frontend/src/pages/Jobs.vue:8 #: frontend/src/pages/JobApplications.vue:9 frontend/src/pages/JobDetail.vue:10
#: frontend/src/pages/Jobs.vue:212 #: frontend/src/pages/Jobs.vue:8 frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs" msgid "Jobs"
msgstr "Послови" msgstr "Послови"
@@ -3375,7 +3400,7 @@ msgstr "Придружи се"
msgid "Join Call" msgid "Join Call"
msgstr "Придружи се позиву" msgstr "Придружи се позиву"
#: frontend/src/components/Modals/Event.vue:74 #: frontend/src/components/Modals/Event.vue:78
msgid "Join Meeting" msgid "Join Meeting"
msgstr "Придружи се састанку" msgstr "Придружи се састанку"
@@ -3883,7 +3908,7 @@ msgstr "Пријава"
msgid "Login to Frappe Cloud?" msgid "Login to Frappe Cloud?"
msgstr "Пријава на Frappe Cloud?" msgstr "Пријава на Frappe Cloud?"
#: frontend/src/pages/JobDetail.vue:63 #: frontend/src/pages/JobDetail.vue:74
msgid "Login to apply" msgid "Login to apply"
msgstr "Пријавите се да бисте наставили" msgstr "Пријавите се да бисте наставили"
@@ -4228,9 +4253,14 @@ msgid "Mentor Request Status Update Template"
msgstr "Шаблон за ажурирање статуса захтева за ментора" msgstr "Шаблон за ажурирање статуса захтева за ментора"
#: frontend/src/components/ContactUsEmail.vue:19 #: frontend/src/components/ContactUsEmail.vue:19
#: frontend/src/pages/JobApplications.vue:132
msgid "Message" msgid "Message"
msgstr "Порука" msgstr "Порука"
#: frontend/src/pages/JobApplications.vue:240
msgid "Message is required"
msgstr "Порука је обавезна"
#. Label of the meta_description (Small Text) field in DocType 'LMS Settings' #. Label of the meta_description (Small Text) field in DocType 'LMS Settings'
#: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303 #: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -4351,7 +4381,7 @@ msgstr "Моје белешке"
msgid "My availability" msgid "My availability"
msgstr "Моја доступност" msgstr "Моја доступност"
#: frontend/src/pages/ProfileEvaluator.vue:127 #: frontend/src/pages/ProfileEvaluator.vue:136
msgid "My calendar" msgid "My calendar"
msgstr "Мој календар" msgstr "Мој календар"
@@ -4390,7 +4420,7 @@ msgstr "Нови имејл шаблон"
msgid "New Job" msgid "New Job"
msgstr "Нови посао" msgstr "Нови посао"
#: lms/job/doctype/lms_job_application/lms_job_application.py:27 #: lms/job/doctype/lms_job_application/lms_job_application.py:31
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "Нови кандидат за посао" msgstr "Нови кандидат за посао"
@@ -4818,7 +4848,7 @@ msgstr "Делимично завршено"
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:362 #: frontend/src/components/Modals/Event.vue:393
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass" msgid "Pass"
@@ -4945,7 +4975,7 @@ msgstr "Апликација за обраду плаћања није инст
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' #. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:354 #: frontend/src/components/Modals/Event.vue:385
#: lms/lms/doctype/cohort_join_request/cohort_join_request.json #: lms/lms/doctype/cohort_join_request/cohort_join_request.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
@@ -4964,7 +4994,7 @@ msgstr "Проценат"
msgid "Percentage (e.g. 70%)" msgid "Percentage (e.g. 70%)"
msgstr "Проценат (нпр. 70%)" msgstr "Проценат (нпр. 70%)"
#: frontend/src/components/Modals/BatchStudentProgress.vue:44 #: frontend/src/components/Modals/BatchStudentProgress.vue:46
msgid "Percentage/Status" msgid "Percentage/Status"
msgstr "Проценат/Статус" msgstr "Проценат/Статус"
@@ -5080,7 +5110,7 @@ msgstr "Молимо Вас да се пријавите да бисте се у
msgid "Please prepare well and be on time for the evaluations." msgid "Please prepare well and be on time for the evaluations."
msgstr "Молимо Вас да се добро припремите и стигнете на време за оцењивање." msgstr "Молимо Вас да се добро припремите и стигнете на време за оцењивање."
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:135 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:139
msgid "Please run the code to execute the test cases." msgid "Please run the code to execute the test cases."
msgstr "Молимо Вас да покренете код да бисте извршили тест примере." msgstr "Молимо Вас да покренете код да бисте извршили тест примере."
@@ -5317,11 +5347,11 @@ msgstr "Вежба програмирања"
#: frontend/src/components/Settings/BadgeForm.vue:200 #: frontend/src/components/Settings/BadgeForm.vue:200
#: frontend/src/components/Settings/Badges.vue:205 #: frontend/src/components/Settings/Badges.vue:205
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:420 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:426
msgid "Programming Exercise Submission" msgid "Programming Exercise Submission"
msgstr "Поднесак вежбе програмирања" msgstr "Поднесак вежбе програмирања"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:411 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:417
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298
msgid "Programming Exercise Submissions" msgid "Programming Exercise Submissions"
msgstr "Поднесци вежбе програмирања" msgstr "Поднесци вежбе програмирања"
@@ -5355,7 +5385,7 @@ msgstr "Програми"
#. Label of the progress (Float) field in DocType 'LMS Enrollment' #. Label of the progress (Float) field in DocType 'LMS Enrollment'
#. Label of the progress (Int) field in DocType 'LMS Program Member' #. Label of the progress (Int) field in DocType 'LMS Program Member'
#: frontend/src/components/Modals/BatchStudentProgress.vue:94 #: frontend/src/components/Modals/BatchStudentProgress.vue:98
#: frontend/src/components/Modals/CourseProgressSummary.vue:224 #: frontend/src/components/Modals/CourseProgressSummary.vue:224
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json #: lms/lms/doctype/lms_enrollment/lms_enrollment.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json #: lms/lms/doctype/lms_program_member/lms_program_member.json
@@ -5401,7 +5431,7 @@ msgstr "Објави на страници учесника"
#. Label of the published (Check) field in DocType 'LMS Course' #. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program' #. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51 #: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:108 #: frontend/src/components/Modals/Event.vue:122
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152 #: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100 #: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5569,7 +5599,7 @@ msgstr "Квизови у овом видео-снимку"
#. Label of the rating (Data) field in DocType 'LMS Course' #. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review' #. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147 #: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:86 #: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/ReviewModal.vue:18 #: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
@@ -5656,6 +5686,7 @@ msgid "Remove Highlight"
msgstr "Уклони истакнутост" msgstr "Уклони истакнутост"
#: frontend/src/components/Modals/AnnouncementModal.vue:27 #: frontend/src/components/Modals/AnnouncementModal.vue:27
#: frontend/src/pages/JobApplications.vue:127
msgid "Reply To" msgid "Reply To"
msgstr "Одговори" msgstr "Одговори"
@@ -5815,8 +5846,8 @@ msgstr "Субота"
#: frontend/src/components/Controls/CodeEditor.vue:25 #: frontend/src/components/Controls/CodeEditor.vue:25
#: frontend/src/components/Modals/AssignmentForm.vue:59 #: frontend/src/components/Modals/AssignmentForm.vue:59
#: frontend/src/components/Modals/EmailTemplateModal.vue:12 #: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:101 #: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:129 #: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
@@ -5955,6 +5986,7 @@ msgid "Select an assignment"
msgstr "Изаберите задатак" msgstr "Изаберите задатак"
#: frontend/src/components/ContactUsEmail.vue:33 #: frontend/src/components/ContactUsEmail.vue:33
#: frontend/src/pages/JobApplications.vue:110
msgid "Send" msgid "Send"
msgstr "Пошаљи" msgstr "Пошаљи"
@@ -5962,6 +5994,14 @@ msgstr "Пошаљи"
msgid "Send Confirmation Email" msgid "Send Confirmation Email"
msgstr "Пошаљи имејл потврде" msgstr "Пошаљи имејл потврде"
#: frontend/src/pages/JobApplications.vue:268
msgid "Send Email"
msgstr "Пошаљи имејл"
#: frontend/src/pages/JobApplications.vue:106
msgid "Send Email to {0}"
msgstr "Пошаљите имејл ка {0}"
#. Label of the send_calendar_invite_for_evaluations (Check) field in DocType #. Label of the send_calendar_invite_for_evaluations (Check) field in DocType
#. 'LMS Settings' #. 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -6122,11 +6162,11 @@ msgstr "Прескочи"
msgid "Slot Times are overlapping for some schedules." msgid "Slot Times are overlapping for some schedules."
msgstr "Временски термини се преклапају за неке распореде." msgstr "Временски термини се преклапају за неке распореде."
#: frontend/src/pages/ProfileEvaluator.vue:201 #: frontend/src/pages/ProfileEvaluator.vue:218
msgid "Slot added successfully" msgid "Slot added successfully"
msgstr "Термин је успешно додат" msgstr "Термин је успешно додат"
#: frontend/src/pages/ProfileEvaluator.vue:240 #: frontend/src/pages/ProfileEvaluator.vue:257
msgid "Slot deleted successfully" msgid "Slot deleted successfully"
msgstr "Термин је успешно обрисан" msgstr "Термин је успешно обрисан"
@@ -6265,7 +6305,7 @@ msgstr "Статистика"
#. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission' #. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission' #. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:91 #: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Settings/Badges.vue:228 #: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19 #: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6336,10 +6376,12 @@ msgstr "Подгрупа"
#: frontend/src/components/ContactUsEmail.vue:13 #: frontend/src/components/ContactUsEmail.vue:13
#: frontend/src/components/Modals/AnnouncementModal.vue:20 #: frontend/src/components/Modals/AnnouncementModal.vue:20
#: frontend/src/components/Modals/EmailTemplateModal.vue:31 #: frontend/src/components/Modals/EmailTemplateModal.vue:31
#: frontend/src/pages/JobApplications.vue:121
msgid "Subject" msgid "Subject"
msgstr "Наслов" msgstr "Наслов"
#: frontend/src/components/Modals/AnnouncementModal.vue:94 #: frontend/src/components/Modals/AnnouncementModal.vue:94
#: frontend/src/pages/JobApplications.vue:237
msgid "Subject is required" msgid "Subject is required"
msgstr "Наслов је неопходан" msgstr "Наслов је неопходан"
@@ -6356,7 +6398,7 @@ msgstr "Врста поднесака"
msgid "Submission by" msgid "Submission by"
msgstr "Поднето од стране" msgstr "Поднето од стране"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:353 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:359
msgid "Submission saved!" msgid "Submission saved!"
msgstr "Поднесак је сачуван!" msgstr "Поднесак је сачуван!"
@@ -6396,7 +6438,7 @@ msgstr "Успешно сте уписани у програм"
#. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:97 #: frontend/src/components/Modals/Event.vue:106
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary" msgid "Summary"
msgstr "Резиме" msgstr "Резиме"
@@ -6501,7 +6543,7 @@ msgstr "Тимски рад"
#. Label of the template (Link) field in DocType 'Cohort Web Page' #. Label of the template (Link) field in DocType 'Cohort Web Page'
#. Label of the template (Link) field in DocType 'LMS Certificate' #. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43 #: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:112 #: frontend/src/components/Modals/Event.vue:127
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template" msgid "Template"
@@ -6542,7 +6584,7 @@ msgstr "Резултати теста"
msgid "Test this Exercise" msgid "Test this Exercise"
msgstr "Тестирај ову вежбу" msgstr "Тестирај ову вежбу"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:92 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:93
msgid "Test {0}" msgid "Test {0}"
msgstr "Тест {0}" msgstr "Тест {0}"
@@ -6840,7 +6882,7 @@ msgid "Title is required"
msgstr "Наслов је неопходан" msgstr "Наслов је неопходан"
#. Label of the unavailable_to (Date) field in DocType 'Course Evaluator' #. Label of the unavailable_to (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:112 #: frontend/src/pages/ProfileEvaluator.vue:120
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "To" msgid "To"
msgstr "За" msgstr "За"
@@ -6953,7 +6995,7 @@ msgstr "UUID"
msgid "Unavailability" msgid "Unavailability"
msgstr "Недоступност" msgstr "Недоступност"
#: frontend/src/pages/ProfileEvaluator.vue:259 #: frontend/src/pages/ProfileEvaluator.vue:276
msgid "Unavailability updated successfully" msgid "Unavailability updated successfully"
msgstr "Недоступност је успешно ажурирана" msgstr "Недоступност је успешно ажурирана"
@@ -7123,11 +7165,19 @@ msgstr "Статистика видео-снимка за {0}"
msgid "View" msgid "View"
msgstr "Приказ" msgstr "Приказ"
#: frontend/src/pages/JobDetail.vue:31
msgid "View Applications"
msgstr "Приказ пријава"
#: frontend/src/components/CertificationLinks.vue:10 #: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67 #: frontend/src/components/Modals/Event.vue:67
msgid "View Certificate" msgid "View Certificate"
msgstr "Приказ сертификата" msgstr "Приказ сертификата"
#: frontend/src/pages/JobApplications.vue:262
msgid "View Resume"
msgstr "Приказ CV"
#: frontend/src/components/BatchFeedback.vue:56 #: frontend/src/components/BatchFeedback.vue:56
msgid "View all feedback" msgid "View all feedback"
msgstr "Погледај све повратне информације" msgstr "Погледај све повратне информације"
@@ -7146,7 +7196,7 @@ msgstr "Видљивост"
msgid "Visit Batch" msgid "Visit Batch"
msgstr "Посети групу" msgstr "Посети групу"
#: frontend/src/pages/JobDetail.vue:41 #: frontend/src/pages/JobDetail.vue:52
msgid "Visit Website" msgid "Visit Website"
msgstr "Посети веб-сајт" msgstr "Посети веб-сајт"
@@ -7355,7 +7405,7 @@ msgstr "Имате {0}% тачних одговора са резултатом
msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session." msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session."
msgstr "Имате онлајн предавање заказано за сутра. Молимо Вас да се припремите и придружите на време." msgstr "Имате онлајн предавање заказано за сутра. Молимо Вас да се припремите и придружите на време."
#: lms/job/doctype/lms_job_application/lms_job_application.py:22 #: lms/job/doctype/lms_job_application/lms_job_application.py:26
msgid "You have already applied for this job." msgid "You have already applied for this job."
msgstr "Већ сте се пријавили за овај посао." msgstr "Већ сте се пријавили за овај посао."
@@ -7371,7 +7421,7 @@ msgstr "Већ сте купили сертификат за ову обуку."
msgid "You have already reviewed this course" msgid "You have already reviewed this course"
msgstr "Већ сте оценили ову обуку" msgstr "Већ сте оценили ову обуку"
#: frontend/src/pages/JobDetail.vue:57 #: frontend/src/pages/JobDetail.vue:68
msgid "You have applied" msgid "You have applied"
msgstr "Пријавили сте се" msgstr "Пријавили сте се"
@@ -7451,7 +7501,7 @@ msgstr "YouTube видео-снимак ће се приказати на врх
msgid "Your Account has been successfully created!" msgid "Your Account has been successfully created!"
msgstr "Ваш налог је успешно креиран!" msgstr "Ваш налог је успешно креиран!"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:119 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:121
msgid "Your Output" msgid "Your Output"
msgstr "Твој излаз" msgstr "Твој излаз"
@@ -7459,7 +7509,7 @@ msgstr "Твој излаз"
msgid "Your batch {0} is starting tomorrow" msgid "Your batch {0} is starting tomorrow"
msgstr "Ваша група {0} почиње сутра" msgstr "Ваша група {0} почиње сутра"
#: frontend/src/pages/ProfileEvaluator.vue:134 #: frontend/src/pages/ProfileEvaluator.vue:143
msgid "Your calendar is set." msgid "Your calendar is set."
msgstr "Ваш календар је подешен." msgstr "Ваш календар је подешен."
@@ -7538,11 +7588,11 @@ msgstr "и"
msgid "and then 'Add to Home Screen'" msgid "and then 'Add to Home Screen'"
msgstr "а затим 'Додај на почетни екран'" msgstr "а затим 'Додај на почетни екран'"
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114 #: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicant" msgid "applicant"
msgstr "кандидат" msgstr "кандидат"
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114 #: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicants" msgid "applicants"
msgstr "кандидати" msgstr "кандидати"

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2025-10-31 16:04+0000\n" "POT-Creation-Date: 2025-11-07 16:04+0000\n"
"PO-Revision-Date: 2025-11-02 19:07\n" "PO-Revision-Date: 2025-11-11 11:49\n"
"Last-Translator: jannat@frappe.io\n" "Last-Translator: jannat@frappe.io\n"
"Language-Team: Serbian (Latin)\n" "Language-Team: Serbian (Latin)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -176,7 +176,7 @@ msgstr "Dodaj kviz u video-snimak"
msgid "Add Row" msgid "Add Row"
msgstr "Dodaj red" msgstr "Dodaj red"
#: frontend/src/pages/ProfileEvaluator.vue:89 #: frontend/src/pages/ProfileEvaluator.vue:96
msgid "Add Slot" msgid "Add Slot"
msgstr "Dodaj termin" msgstr "Dodaj termin"
@@ -426,12 +426,25 @@ msgstr "Prikazuje se kada je URL grupe podeljen na bilo kojoj onlajn platformi"
msgid "Appears when the batch URL is shared on socials" msgid "Appears when the batch URL is shared on socials"
msgstr "Prikazuje se kada je URL grupe podeljen na društvenim mrežama" msgstr "Prikazuje se kada je URL grupe podeljen na društvenim mrežama"
#: frontend/src/pages/JobApplications.vue:24
msgid "Application"
msgstr "Prijava"
#. Label of a field in the job-opportunity Web Form #. Label of a field in the job-opportunity Web Form
#: lms/job/web_form/job_opportunity/job_opportunity.json #: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Application Form Link" msgid "Application Form Link"
msgstr "Link za obrazac prijave" msgstr "Link za obrazac prijave"
#: frontend/src/pages/JobDetail.vue:51 #: frontend/src/pages/JobApplications.vue:14
#: frontend/src/pages/JobApplications.vue:25
msgid "Applications"
msgstr "Prijave"
#: frontend/src/pages/JobApplications.vue:290
msgid "Applied On"
msgstr "Primenjeno na"
#: frontend/src/pages/JobDetail.vue:62
msgid "Apply" msgid "Apply"
msgstr "Primeni" msgstr "Primeni"
@@ -483,7 +496,7 @@ msgstr "Postavite pitanje da biste dobili pomoć od zajednice."
#. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch' #. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the assessment (Table) field in DocType 'LMS Batch' #. Label of the assessment (Table) field in DocType 'LMS Batch'
#: frontend/src/components/Modals/AssessmentModal.vue:27 #: frontend/src/components/Modals/AssessmentModal.vue:27
#: frontend/src/components/Modals/BatchStudentProgress.vue:41 #: frontend/src/components/Modals/BatchStudentProgress.vue:43
#: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11 #: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11
msgid "Assessment" msgid "Assessment"
msgstr "Procena" msgstr "Procena"
@@ -569,7 +582,7 @@ msgstr "Podnošenja zadataka"
msgid "Assignment Title" msgid "Assignment Title"
msgstr "Naslov zadatka" msgstr "Naslov zadatka"
#: frontend/src/components/Modals/AssignmentForm.vue:125 #: frontend/src/components/Modals/AssignmentForm.vue:133
msgid "Assignment created successfully" msgid "Assignment created successfully"
msgstr "Zadatak je uspešno kreiran" msgstr "Zadatak je uspešno kreiran"
@@ -581,7 +594,7 @@ msgstr "Zadaci za lekciju {0} od strane {1} već postoje."
msgid "Assignment submitted successfully" msgid "Assignment submitted successfully"
msgstr "Zadatak je uspešno podnet" msgstr "Zadatak je uspešno podnet"
#: frontend/src/components/Modals/AssignmentForm.vue:138 #: frontend/src/components/Modals/AssignmentForm.vue:146
msgid "Assignment updated successfully" msgid "Assignment updated successfully"
msgstr "Zadatak je uspešno ažuriran" msgstr "Zadatak je uspešno ažuriran"
@@ -622,7 +635,7 @@ msgstr "Prisutni"
msgid "Attire Preference" msgid "Attire Preference"
msgstr "Preferencija odevanja" msgstr "Preferencija odevanja"
#: frontend/src/pages/ProfileEvaluator.vue:137 #: frontend/src/pages/ProfileEvaluator.vue:146
msgid "Authorize Google Calendar Access" msgid "Authorize Google Calendar Access"
msgstr "Odobri pristup Google Calendar-u" msgstr "Odobri pristup Google Calendar-u"
@@ -637,7 +650,7 @@ msgstr "Automatska dodela"
msgid "Auto Recording" msgid "Auto Recording"
msgstr "Automatsko snimanje" msgstr "Automatsko snimanje"
#: frontend/src/pages/ProfileEvaluator.vue:224 #: frontend/src/pages/ProfileEvaluator.vue:241
msgid "Availability updated successfully" msgid "Availability updated successfully"
msgstr "Dostupnost je uspešno ažurirana" msgstr "Dostupnost je uspešno ažurirana"
@@ -768,6 +781,7 @@ msgstr "Potvrda upisa u grupu"
#. Name of a role #. Name of a role
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -998,7 +1012,7 @@ msgstr "Link sertifikata"
msgid "Certificate of Completion" msgid "Certificate of Completion"
msgstr "Sertifikat o pohađanju" msgstr "Sertifikat o pohađanju"
#: frontend/src/components/Modals/Event.vue:317 #: frontend/src/components/Modals/Event.vue:348
msgid "Certificate saved successfully" msgid "Certificate saved successfully"
msgstr "Sertifikat je uspešno sačuvan" msgstr "Sertifikat je uspešno sačuvan"
@@ -1018,7 +1032,7 @@ msgstr "Sertifikati su uspešno generisani"
#. Label of a Card Break in the LMS Workspace #. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:626 #: frontend/src/components/AppSidebar.vue:626
#: frontend/src/components/Modals/Event.vue:381 #: frontend/src/components/Modals/Event.vue:412
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10 #: frontend/src/pages/CourseCertification.vue:10
#: frontend/src/pages/CourseCertification.vue:135 #: frontend/src/pages/CourseCertification.vue:135
@@ -1640,6 +1654,7 @@ msgstr "Broj obuka"
#: lms/lms/doctype/course_chapter/course_chapter.json #: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json #: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
@@ -1757,7 +1772,7 @@ msgstr "Obuka {0} je već dodata u ovu grupu."
#: frontend/src/components/BatchCourses.vue:5 #: frontend/src/components/BatchCourses.vue:5
#: frontend/src/components/BatchOverlay.vue:37 #: frontend/src/components/BatchOverlay.vue:37
#: frontend/src/components/BatchStudents.vue:25 #: frontend/src/components/BatchStudents.vue:25
#: frontend/src/components/Modals/BatchStudentProgress.vue:91 #: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127 #: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340 #: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340
@@ -2169,7 +2184,7 @@ msgstr "Imejl"
#: frontend/src/components/DiscussionReplies.vue:35 #: frontend/src/components/DiscussionReplies.vue:35
#: frontend/src/components/Modals/ChapterModal.vue:9 #: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/components/Settings/Badges.vue:156 #: frontend/src/components/Settings/Badges.vue:156
#: frontend/src/pages/JobDetail.vue:34 frontend/src/pages/Lesson.vue:42 #: frontend/src/pages/JobDetail.vue:45 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36 #: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36
msgid "Edit" msgid "Edit"
msgstr "Uredi" msgstr "Uredi"
@@ -2236,7 +2251,7 @@ msgstr "Detalji obrazovanja"
#: frontend/src/components/Settings/Evaluators.vue:105 #: frontend/src/components/Settings/Evaluators.vue:105
#: frontend/src/components/Settings/Members.vue:103 #: frontend/src/components/Settings/Members.vue:103
#: lms/templates/signup-form.html:10 #: frontend/src/pages/JobApplications.vue:284 lms/templates/signup-form.html:10
msgid "Email" msgid "Email"
msgstr "Imejl" msgstr "Imejl"
@@ -2272,6 +2287,7 @@ msgid "Email Templates deleted successfully"
msgstr "Imejl šablon je uspešno obrisan" msgstr "Imejl šablon je uspešno obrisan"
#: frontend/src/components/ContactUsEmail.vue:57 #: frontend/src/components/ContactUsEmail.vue:57
#: frontend/src/pages/JobApplications.vue:244
msgid "Email sent successfully" msgid "Email sent successfully"
msgstr "Imejl je uspešno poslat" msgstr "Imejl je uspešno poslat"
@@ -2414,6 +2430,14 @@ msgstr "Unesite ID klijenta i klijentsku tajnu u Google podešavanjima da biste
msgid "Enter a URL" msgid "Enter a URL"
msgstr "Unesite URL" msgstr "Unesite URL"
#: frontend/src/pages/JobApplications.vue:122
msgid "Enter email subject"
msgstr "Unesite naslov imejla"
#: frontend/src/pages/JobApplications.vue:128
msgid "Enter reply to email"
msgstr "Unesite odgovor na imejl"
#: frontend/src/components/Modals/ZoomAccountModal.vue:169 #: frontend/src/components/Modals/ZoomAccountModal.vue:169
msgid "Error creating Zoom Account" msgid "Error creating Zoom Account"
msgstr "Greška prilikom kreiranja Zoom naloga" msgstr "Greška prilikom kreiranja Zoom naloga"
@@ -2453,7 +2477,7 @@ msgstr "Greška prilikom ažuriranja imejl šablona"
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace #. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:374 lms/lms/workspace/lms/lms.json #: frontend/src/components/Modals/Event.vue:405 lms/lms/workspace/lms/lms.json
msgid "Evaluation" msgid "Evaluation"
msgstr "Ocenjivanje" msgstr "Ocenjivanje"
@@ -2478,7 +2502,7 @@ msgstr "Zahtev za ocenjivanje"
msgid "Evaluation end date cannot be less than the batch end date." msgid "Evaluation end date cannot be less than the batch end date."
msgstr "Datum završetka ocenjivanja ne može biti manji od datuma završetka grupe." msgstr "Datum završetka ocenjivanja ne može biti manji od datuma završetka grupe."
#: frontend/src/components/Modals/Event.vue:256 #: frontend/src/components/Modals/Event.vue:287
msgid "Evaluation saved successfully" msgid "Evaluation saved successfully"
msgstr "Ocenjivanje je uspešno sačuvano" msgstr "Ocenjivanje je uspešno sačuvano"
@@ -2586,7 +2610,7 @@ msgstr "Proširi"
#. Label of the expected_output (Data) field in DocType 'LMS Test Case' #. Label of the expected_output (Data) field in DocType 'LMS Test Case'
#. Label of the expected_output (Data) field in DocType 'LMS Test Case #. Label of the expected_output (Data) field in DocType 'LMS Test Case
#. Submission' #. Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:127 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:129
#: lms/lms/doctype/lms_test_case/lms_test_case.json #: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Expected Output" msgid "Expected Output"
@@ -2599,7 +2623,7 @@ msgstr "Datum isteka"
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33 #: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:126 #: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date" msgid "Expiry Date"
msgstr "Datum isteka" msgstr "Datum isteka"
@@ -2626,7 +2650,7 @@ msgstr "Istražite više"
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:366 #: frontend/src/components/Modals/Event.vue:397
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail" msgid "Fail"
@@ -2657,7 +2681,7 @@ msgstr "Neuspešno preuzimanje podataka o prisustvu za Zoom za predavanje {0}: {
msgid "Failed to send email" msgid "Failed to send email"
msgstr "Slanje imejla nije uspelo" msgstr "Slanje imejla nije uspelo"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:358 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:364
msgid "Failed to submit. Please try again. {0}" msgid "Failed to submit. Please try again. {0}"
msgstr "Neuspešno podnošenje. Pokušajte ponovo. {0}" msgstr "Neuspešno podnošenje. Pokušajte ponovo. {0}"
@@ -2770,7 +2794,7 @@ msgid "Friday"
msgstr "Petak" msgstr "Petak"
#. Label of the unavailable_from (Date) field in DocType 'Course Evaluator' #. Label of the unavailable_from (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:99 #: frontend/src/pages/ProfileEvaluator.vue:106
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "From" msgid "From"
msgstr "Od" msgstr "Od"
@@ -2782,6 +2806,7 @@ msgstr "Datum početka"
#. Label of the full_name (Data) field in DocType 'Course Evaluator' #. Label of the full_name (Data) field in DocType 'Course Evaluator'
#. Label of the full_name (Data) field in DocType 'LMS Program Member' #. Label of the full_name (Data) field in DocType 'LMS Program Member'
#: frontend/src/pages/JobApplications.vue:278
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json #: lms/lms/doctype/lms_program_member/lms_program_member.json
#: lms/templates/signup-form.html:5 #: lms/templates/signup-form.html:5
@@ -3019,7 +3044,7 @@ msgstr "Sa zadovoljstvom Vas obaveštavamo da ste uspešno stekli sertifikat za
msgid "I am looking for a job" msgid "I am looking for a job"
msgstr "Trenutno sam u potrazi za poslom" msgstr "Trenutno sam u potrazi za poslom"
#: frontend/src/pages/ProfileEvaluator.vue:94 #: frontend/src/pages/ProfileEvaluator.vue:101
msgid "I am unavailable" msgid "I am unavailable"
msgstr "Nisam dostupan" msgstr "Nisam dostupan"
@@ -3105,7 +3130,7 @@ msgstr "Slika: Oštećen tok podataka"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course' #. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:358 #: frontend/src/components/Modals/Event.vue:389
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
@@ -3161,7 +3186,7 @@ msgstr "Industrija"
#. Label of the input (Data) field in DocType 'LMS Test Case' #. Label of the input (Data) field in DocType 'LMS Test Case'
#. Label of the input (Data) field in DocType 'LMS Test Case Submission' #. Label of the input (Data) field in DocType 'LMS Test Case Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:113 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:115
#: lms/lms/doctype/lms_test_case/lms_test_case.json #: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Input" msgid "Input"
@@ -3273,7 +3298,7 @@ msgstr "SCORM paket"
#. Label of the issue_date (Date) field in DocType 'Certification' #. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate' #. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28 #: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:121 #: frontend/src/components/Modals/Event.vue:138
#: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date" msgid "Issue Date"
@@ -3358,8 +3383,8 @@ msgid "Job Title"
msgstr "Naziv radnog mesta" msgstr "Naziv radnog mesta"
#. Label of the jobs (Check) field in DocType 'LMS Settings' #. Label of the jobs (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/JobDetail.vue:10 frontend/src/pages/Jobs.vue:8 #: frontend/src/pages/JobApplications.vue:9 frontend/src/pages/JobDetail.vue:10
#: frontend/src/pages/Jobs.vue:212 #: frontend/src/pages/Jobs.vue:8 frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs" msgid "Jobs"
msgstr "Poslovi" msgstr "Poslovi"
@@ -3375,7 +3400,7 @@ msgstr "Pridruži se"
msgid "Join Call" msgid "Join Call"
msgstr "Pridruži se pozivu" msgstr "Pridruži se pozivu"
#: frontend/src/components/Modals/Event.vue:74 #: frontend/src/components/Modals/Event.vue:78
msgid "Join Meeting" msgid "Join Meeting"
msgstr "Pridruži se sastanku" msgstr "Pridruži se sastanku"
@@ -3883,7 +3908,7 @@ msgstr "Prijava"
msgid "Login to Frappe Cloud?" msgid "Login to Frappe Cloud?"
msgstr "Prijava na Frappe Cloud?" msgstr "Prijava na Frappe Cloud?"
#: frontend/src/pages/JobDetail.vue:63 #: frontend/src/pages/JobDetail.vue:74
msgid "Login to apply" msgid "Login to apply"
msgstr "Prijavite se da biste nastavili" msgstr "Prijavite se da biste nastavili"
@@ -4228,9 +4253,14 @@ msgid "Mentor Request Status Update Template"
msgstr "Šablon za ažuriranje statusa zahteva za mentora" msgstr "Šablon za ažuriranje statusa zahteva za mentora"
#: frontend/src/components/ContactUsEmail.vue:19 #: frontend/src/components/ContactUsEmail.vue:19
#: frontend/src/pages/JobApplications.vue:132
msgid "Message" msgid "Message"
msgstr "Poruka" msgstr "Poruka"
#: frontend/src/pages/JobApplications.vue:240
msgid "Message is required"
msgstr "Poruka je obavezna"
#. Label of the meta_description (Small Text) field in DocType 'LMS Settings' #. Label of the meta_description (Small Text) field in DocType 'LMS Settings'
#: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303 #: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -4351,13 +4381,13 @@ msgstr "Moje beleške"
msgid "My availability" msgid "My availability"
msgstr "Moja dostupnost" msgstr "Moja dostupnost"
#: frontend/src/pages/ProfileEvaluator.vue:127 #: frontend/src/pages/ProfileEvaluator.vue:136
msgid "My calendar" msgid "My calendar"
msgstr "Moj kalendar" msgstr "Moj kalendar"
#: frontend/src/components/Modals/EmailTemplateModal.vue:24 #: frontend/src/components/Modals/EmailTemplateModal.vue:24
msgid "Name" msgid "Name"
msgstr "Ime" msgstr "Naziv"
#. Option for the 'Event' (Select) field in DocType 'LMS Badge' #. Option for the 'Event' (Select) field in DocType 'LMS Badge'
#: frontend/src/components/Settings/BadgeAssignments.vue:21 #: frontend/src/components/Settings/BadgeAssignments.vue:21
@@ -4390,7 +4420,7 @@ msgstr "Novi imejl šablon"
msgid "New Job" msgid "New Job"
msgstr "Novi posao" msgstr "Novi posao"
#: lms/job/doctype/lms_job_application/lms_job_application.py:27 #: lms/job/doctype/lms_job_application/lms_job_application.py:31
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "Novi kandidat za posao" msgstr "Novi kandidat za posao"
@@ -4818,7 +4848,7 @@ msgstr "Delimično završeno"
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:362 #: frontend/src/components/Modals/Event.vue:393
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass" msgid "Pass"
@@ -4945,7 +4975,7 @@ msgstr "Aplikacija za obradu plaćanja nije instalirana"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' #. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:354 #: frontend/src/components/Modals/Event.vue:385
#: lms/lms/doctype/cohort_join_request/cohort_join_request.json #: lms/lms/doctype/cohort_join_request/cohort_join_request.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
@@ -4964,7 +4994,7 @@ msgstr "Procenat"
msgid "Percentage (e.g. 70%)" msgid "Percentage (e.g. 70%)"
msgstr "Procenat (npr. 70%)" msgstr "Procenat (npr. 70%)"
#: frontend/src/components/Modals/BatchStudentProgress.vue:44 #: frontend/src/components/Modals/BatchStudentProgress.vue:46
msgid "Percentage/Status" msgid "Percentage/Status"
msgstr "Procenat/Status" msgstr "Procenat/Status"
@@ -5080,7 +5110,7 @@ msgstr "Molimo Vas da se prijavite da biste se upisali u program."
msgid "Please prepare well and be on time for the evaluations." msgid "Please prepare well and be on time for the evaluations."
msgstr "Molimo Vas da se dobro pripremite i stignete na vreme za ocenjivanje." msgstr "Molimo Vas da se dobro pripremite i stignete na vreme za ocenjivanje."
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:135 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:139
msgid "Please run the code to execute the test cases." msgid "Please run the code to execute the test cases."
msgstr "Molimo Vas da pokrenete kod da biste izvršili test primere." msgstr "Molimo Vas da pokrenete kod da biste izvršili test primere."
@@ -5317,11 +5347,11 @@ msgstr "Vežba programiranja"
#: frontend/src/components/Settings/BadgeForm.vue:200 #: frontend/src/components/Settings/BadgeForm.vue:200
#: frontend/src/components/Settings/Badges.vue:205 #: frontend/src/components/Settings/Badges.vue:205
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:420 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:426
msgid "Programming Exercise Submission" msgid "Programming Exercise Submission"
msgstr "Podnesak vežbe programiranja" msgstr "Podnesak vežbe programiranja"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:411 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:417
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298
msgid "Programming Exercise Submissions" msgid "Programming Exercise Submissions"
msgstr "Podnesci vežbe programiranja" msgstr "Podnesci vežbe programiranja"
@@ -5355,7 +5385,7 @@ msgstr "Programi"
#. Label of the progress (Float) field in DocType 'LMS Enrollment' #. Label of the progress (Float) field in DocType 'LMS Enrollment'
#. Label of the progress (Int) field in DocType 'LMS Program Member' #. Label of the progress (Int) field in DocType 'LMS Program Member'
#: frontend/src/components/Modals/BatchStudentProgress.vue:94 #: frontend/src/components/Modals/BatchStudentProgress.vue:98
#: frontend/src/components/Modals/CourseProgressSummary.vue:224 #: frontend/src/components/Modals/CourseProgressSummary.vue:224
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json #: lms/lms/doctype/lms_enrollment/lms_enrollment.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json #: lms/lms/doctype/lms_program_member/lms_program_member.json
@@ -5401,7 +5431,7 @@ msgstr "Objavi na stranici učesnika"
#. Label of the published (Check) field in DocType 'LMS Course' #. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program' #. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51 #: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:108 #: frontend/src/components/Modals/Event.vue:122
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152 #: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100 #: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5569,7 +5599,7 @@ msgstr "Kvizovi u ovom video-snimku"
#. Label of the rating (Data) field in DocType 'LMS Course' #. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review' #. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147 #: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:86 #: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/ReviewModal.vue:18 #: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
@@ -5656,6 +5686,7 @@ msgid "Remove Highlight"
msgstr "Ukloni istaknutost" msgstr "Ukloni istaknutost"
#: frontend/src/components/Modals/AnnouncementModal.vue:27 #: frontend/src/components/Modals/AnnouncementModal.vue:27
#: frontend/src/pages/JobApplications.vue:127
msgid "Reply To" msgid "Reply To"
msgstr "Odgovori" msgstr "Odgovori"
@@ -5815,8 +5846,8 @@ msgstr "Subota"
#: frontend/src/components/Controls/CodeEditor.vue:25 #: frontend/src/components/Controls/CodeEditor.vue:25
#: frontend/src/components/Modals/AssignmentForm.vue:59 #: frontend/src/components/Modals/AssignmentForm.vue:59
#: frontend/src/components/Modals/EmailTemplateModal.vue:12 #: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:101 #: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:129 #: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
@@ -5955,6 +5986,7 @@ msgid "Select an assignment"
msgstr "Izaberite zadatak" msgstr "Izaberite zadatak"
#: frontend/src/components/ContactUsEmail.vue:33 #: frontend/src/components/ContactUsEmail.vue:33
#: frontend/src/pages/JobApplications.vue:110
msgid "Send" msgid "Send"
msgstr "Pošalji" msgstr "Pošalji"
@@ -5962,6 +5994,14 @@ msgstr "Pošalji"
msgid "Send Confirmation Email" msgid "Send Confirmation Email"
msgstr "Pošalji imejl potvrde" msgstr "Pošalji imejl potvrde"
#: frontend/src/pages/JobApplications.vue:268
msgid "Send Email"
msgstr "Pošalji imejl"
#: frontend/src/pages/JobApplications.vue:106
msgid "Send Email to {0}"
msgstr "Pošaljite imejl ka {0}"
#. Label of the send_calendar_invite_for_evaluations (Check) field in DocType #. Label of the send_calendar_invite_for_evaluations (Check) field in DocType
#. 'LMS Settings' #. 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -6122,11 +6162,11 @@ msgstr "Preskoči"
msgid "Slot Times are overlapping for some schedules." msgid "Slot Times are overlapping for some schedules."
msgstr "Vremenski termini se preklapaju za neke rasporede." msgstr "Vremenski termini se preklapaju za neke rasporede."
#: frontend/src/pages/ProfileEvaluator.vue:201 #: frontend/src/pages/ProfileEvaluator.vue:218
msgid "Slot added successfully" msgid "Slot added successfully"
msgstr "Termin je uspešno dodat" msgstr "Termin je uspešno dodat"
#: frontend/src/pages/ProfileEvaluator.vue:240 #: frontend/src/pages/ProfileEvaluator.vue:257
msgid "Slot deleted successfully" msgid "Slot deleted successfully"
msgstr "Termin je uspešno obrisan" msgstr "Termin je uspešno obrisan"
@@ -6265,7 +6305,7 @@ msgstr "Statistika"
#. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission' #. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission' #. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:91 #: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Settings/Badges.vue:228 #: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19 #: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6336,10 +6376,12 @@ msgstr "Podgrupa"
#: frontend/src/components/ContactUsEmail.vue:13 #: frontend/src/components/ContactUsEmail.vue:13
#: frontend/src/components/Modals/AnnouncementModal.vue:20 #: frontend/src/components/Modals/AnnouncementModal.vue:20
#: frontend/src/components/Modals/EmailTemplateModal.vue:31 #: frontend/src/components/Modals/EmailTemplateModal.vue:31
#: frontend/src/pages/JobApplications.vue:121
msgid "Subject" msgid "Subject"
msgstr "Naslov" msgstr "Naslov"
#: frontend/src/components/Modals/AnnouncementModal.vue:94 #: frontend/src/components/Modals/AnnouncementModal.vue:94
#: frontend/src/pages/JobApplications.vue:237
msgid "Subject is required" msgid "Subject is required"
msgstr "Naslov je neophodan" msgstr "Naslov je neophodan"
@@ -6356,7 +6398,7 @@ msgstr "Vrsta podnesaka"
msgid "Submission by" msgid "Submission by"
msgstr "Podneto od strane" msgstr "Podneto od strane"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:353 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:359
msgid "Submission saved!" msgid "Submission saved!"
msgstr "Podnesak je sačuvan!" msgstr "Podnesak je sačuvan!"
@@ -6396,7 +6438,7 @@ msgstr "Uspešno ste upisani u program"
#. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:97 #: frontend/src/components/Modals/Event.vue:106
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary" msgid "Summary"
msgstr "Rezime" msgstr "Rezime"
@@ -6501,7 +6543,7 @@ msgstr "Timski rad"
#. Label of the template (Link) field in DocType 'Cohort Web Page' #. Label of the template (Link) field in DocType 'Cohort Web Page'
#. Label of the template (Link) field in DocType 'LMS Certificate' #. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43 #: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:112 #: frontend/src/components/Modals/Event.vue:127
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template" msgid "Template"
@@ -6542,7 +6584,7 @@ msgstr "Rezultati testa"
msgid "Test this Exercise" msgid "Test this Exercise"
msgstr "Testiraj ovu vežbu" msgstr "Testiraj ovu vežbu"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:92 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:93
msgid "Test {0}" msgid "Test {0}"
msgstr "Test {0}" msgstr "Test {0}"
@@ -6840,7 +6882,7 @@ msgid "Title is required"
msgstr "Naslov je neophodan" msgstr "Naslov je neophodan"
#. Label of the unavailable_to (Date) field in DocType 'Course Evaluator' #. Label of the unavailable_to (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:112 #: frontend/src/pages/ProfileEvaluator.vue:120
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "To" msgid "To"
msgstr "Za" msgstr "Za"
@@ -6953,7 +6995,7 @@ msgstr "UUID"
msgid "Unavailability" msgid "Unavailability"
msgstr "Nedostupnost" msgstr "Nedostupnost"
#: frontend/src/pages/ProfileEvaluator.vue:259 #: frontend/src/pages/ProfileEvaluator.vue:276
msgid "Unavailability updated successfully" msgid "Unavailability updated successfully"
msgstr "Nedostupnost je uspešno ažurirana" msgstr "Nedostupnost je uspešno ažurirana"
@@ -7123,11 +7165,19 @@ msgstr "Statistika video-snimka za {0}"
msgid "View" msgid "View"
msgstr "Prikaz" msgstr "Prikaz"
#: frontend/src/pages/JobDetail.vue:31
msgid "View Applications"
msgstr "Prikaz prijava"
#: frontend/src/components/CertificationLinks.vue:10 #: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67 #: frontend/src/components/Modals/Event.vue:67
msgid "View Certificate" msgid "View Certificate"
msgstr "Prikaz sertifikata" msgstr "Prikaz sertifikata"
#: frontend/src/pages/JobApplications.vue:262
msgid "View Resume"
msgstr "Prikaz CV"
#: frontend/src/components/BatchFeedback.vue:56 #: frontend/src/components/BatchFeedback.vue:56
msgid "View all feedback" msgid "View all feedback"
msgstr "Pogledaj sve povratne informacije" msgstr "Pogledaj sve povratne informacije"
@@ -7146,7 +7196,7 @@ msgstr "Vidljivost"
msgid "Visit Batch" msgid "Visit Batch"
msgstr "Poseti grupu" msgstr "Poseti grupu"
#: frontend/src/pages/JobDetail.vue:41 #: frontend/src/pages/JobDetail.vue:52
msgid "Visit Website" msgid "Visit Website"
msgstr "Poseti veb-sajt" msgstr "Poseti veb-sajt"
@@ -7355,7 +7405,7 @@ msgstr "Imate {0}% tačnih odgovora sa rezultatom od {1} od mogućih {2}"
msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session." msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session."
msgstr "Imate onlajn predavanje zakazano za sutra. Molimo Vas da se pripremite i pridružite na vreme." msgstr "Imate onlajn predavanje zakazano za sutra. Molimo Vas da se pripremite i pridružite na vreme."
#: lms/job/doctype/lms_job_application/lms_job_application.py:22 #: lms/job/doctype/lms_job_application/lms_job_application.py:26
msgid "You have already applied for this job." msgid "You have already applied for this job."
msgstr "Već ste se prijavili za ovaj posao." msgstr "Već ste se prijavili za ovaj posao."
@@ -7371,7 +7421,7 @@ msgstr "Već ste kupili sertifikat za ovu obuku."
msgid "You have already reviewed this course" msgid "You have already reviewed this course"
msgstr "Već ste ocenili ovu obuku" msgstr "Već ste ocenili ovu obuku"
#: frontend/src/pages/JobDetail.vue:57 #: frontend/src/pages/JobDetail.vue:68
msgid "You have applied" msgid "You have applied"
msgstr "Prijavili ste se" msgstr "Prijavili ste se"
@@ -7451,7 +7501,7 @@ msgstr "YouTube video-snimak će se prikazati na vrhu lekcije."
msgid "Your Account has been successfully created!" msgid "Your Account has been successfully created!"
msgstr "Vaš nalog je uspešno kreiran!" msgstr "Vaš nalog je uspešno kreiran!"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:119 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:121
msgid "Your Output" msgid "Your Output"
msgstr "Tvoj izlaz" msgstr "Tvoj izlaz"
@@ -7459,7 +7509,7 @@ msgstr "Tvoj izlaz"
msgid "Your batch {0} is starting tomorrow" msgid "Your batch {0} is starting tomorrow"
msgstr "Vaša grupa {0} počinje sutra" msgstr "Vaša grupa {0} počinje sutra"
#: frontend/src/pages/ProfileEvaluator.vue:134 #: frontend/src/pages/ProfileEvaluator.vue:143
msgid "Your calendar is set." msgid "Your calendar is set."
msgstr "Vaš kalendar je podešen." msgstr "Vaš kalendar je podešen."
@@ -7538,11 +7588,11 @@ msgstr "i"
msgid "and then 'Add to Home Screen'" msgid "and then 'Add to Home Screen'"
msgstr "a zatim 'Dodaj na početni ekran'" msgstr "a zatim 'Dodaj na početni ekran'"
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114 #: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicant" msgid "applicant"
msgstr "kandidat" msgstr "kandidat"
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114 #: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicants" msgid "applicants"
msgstr "kandidati" msgstr "kandidati"

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2025-10-31 16:04+0000\n" "POT-Creation-Date: 2025-11-07 16:04+0000\n"
"PO-Revision-Date: 2025-11-02 19:07\n" "PO-Revision-Date: 2025-11-12 11:45\n"
"Last-Translator: jannat@frappe.io\n" "Last-Translator: jannat@frappe.io\n"
"Language-Team: Swedish\n" "Language-Team: Swedish\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -176,7 +176,7 @@ msgstr "Lägg till Frågesport till Video"
msgid "Add Row" msgid "Add Row"
msgstr "Lägg till Rad " msgstr "Lägg till Rad "
#: frontend/src/pages/ProfileEvaluator.vue:89 #: frontend/src/pages/ProfileEvaluator.vue:96
msgid "Add Slot" msgid "Add Slot"
msgstr "Lägg till Tid" msgstr "Lägg till Tid"
@@ -286,11 +286,11 @@ msgstr "Adress"
#: frontend/src/pages/Billing.vue:74 #: frontend/src/pages/Billing.vue:74
msgid "Address Line 1" msgid "Address Line 1"
msgstr "Adress Linje 1" msgstr "Adressrad 1"
#: frontend/src/pages/Billing.vue:78 #: frontend/src/pages/Billing.vue:78
msgid "Address Line 2" msgid "Address Line 2"
msgstr "Adress Linje 2" msgstr "Adressrad 2"
#. Option for the 'Role' (Select) field in DocType 'Cohort Staff' #. Option for the 'Role' (Select) field in DocType 'Cohort Staff'
#. Option for the 'Required Role' (Select) field in DocType 'Cohort Web Page' #. Option for the 'Required Role' (Select) field in DocType 'Cohort Web Page'
@@ -426,12 +426,25 @@ msgstr "Visas när grupp URL delas på valfri online plattform"
msgid "Appears when the batch URL is shared on socials" msgid "Appears when the batch URL is shared on socials"
msgstr "Visas när grupp URL delas på sociala medier" msgstr "Visas när grupp URL delas på sociala medier"
#: frontend/src/pages/JobApplications.vue:24
msgid "Application"
msgstr "Ansökan"
#. Label of a field in the job-opportunity Web Form #. Label of a field in the job-opportunity Web Form
#: lms/job/web_form/job_opportunity/job_opportunity.json #: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Application Form Link" msgid "Application Form Link"
msgstr "Ansökningsformulär Länk" msgstr "Ansökningsformulär Länk"
#: frontend/src/pages/JobDetail.vue:51 #: frontend/src/pages/JobApplications.vue:14
#: frontend/src/pages/JobApplications.vue:25
msgid "Applications"
msgstr "Ansökningar"
#: frontend/src/pages/JobApplications.vue:290
msgid "Applied On"
msgstr "Ansökt"
#: frontend/src/pages/JobDetail.vue:62
msgid "Apply" msgid "Apply"
msgstr "Tillämpa" msgstr "Tillämpa"
@@ -483,7 +496,7 @@ msgstr "Ställ fråga för att få hjälp från gemenskapen."
#. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch' #. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the assessment (Table) field in DocType 'LMS Batch' #. Label of the assessment (Table) field in DocType 'LMS Batch'
#: frontend/src/components/Modals/AssessmentModal.vue:27 #: frontend/src/components/Modals/AssessmentModal.vue:27
#: frontend/src/components/Modals/BatchStudentProgress.vue:41 #: frontend/src/components/Modals/BatchStudentProgress.vue:43
#: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11 #: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11
msgid "Assessment" msgid "Assessment"
msgstr "Bedömning" msgstr "Bedömning"
@@ -569,7 +582,7 @@ msgstr "Uppgift Inlämningar"
msgid "Assignment Title" msgid "Assignment Title"
msgstr "Uppgift Benämning" msgstr "Uppgift Benämning"
#: frontend/src/components/Modals/AssignmentForm.vue:125 #: frontend/src/components/Modals/AssignmentForm.vue:133
msgid "Assignment created successfully" msgid "Assignment created successfully"
msgstr "Uppgift skapad" msgstr "Uppgift skapad"
@@ -581,7 +594,7 @@ msgstr "Uppgift för Lektion {0} av {1} finns redan."
msgid "Assignment submitted successfully" msgid "Assignment submitted successfully"
msgstr "Uppgift inlämnad" msgstr "Uppgift inlämnad"
#: frontend/src/components/Modals/AssignmentForm.vue:138 #: frontend/src/components/Modals/AssignmentForm.vue:146
msgid "Assignment updated successfully" msgid "Assignment updated successfully"
msgstr "Uppgift uppdaterad" msgstr "Uppgift uppdaterad"
@@ -622,7 +635,7 @@ msgstr "Deltagare"
msgid "Attire Preference" msgid "Attire Preference"
msgstr "Klädsel Preferens" msgstr "Klädsel Preferens"
#: frontend/src/pages/ProfileEvaluator.vue:137 #: frontend/src/pages/ProfileEvaluator.vue:146
msgid "Authorize Google Calendar Access" msgid "Authorize Google Calendar Access"
msgstr "Auktorisera Google Kalender Åtkomst" msgstr "Auktorisera Google Kalender Åtkomst"
@@ -637,7 +650,7 @@ msgstr "Automatiskt Tilldela"
msgid "Auto Recording" msgid "Auto Recording"
msgstr "Automatisk Inspelning" msgstr "Automatisk Inspelning"
#: frontend/src/pages/ProfileEvaluator.vue:224 #: frontend/src/pages/ProfileEvaluator.vue:241
msgid "Availability updated successfully" msgid "Availability updated successfully"
msgstr "Tillgänglighet uppdaterad" msgstr "Tillgänglighet uppdaterad"
@@ -768,6 +781,7 @@ msgstr "Grupp Bekräftelse Inskrivning"
#. Name of a role #. Name of a role
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -998,7 +1012,7 @@ msgstr "Cerifikat Länk"
msgid "Certificate of Completion" msgid "Certificate of Completion"
msgstr "Certifikat för Genomförande" msgstr "Certifikat för Genomförande"
#: frontend/src/components/Modals/Event.vue:317 #: frontend/src/components/Modals/Event.vue:348
msgid "Certificate saved successfully" msgid "Certificate saved successfully"
msgstr "Certifikat sparad" msgstr "Certifikat sparad"
@@ -1018,7 +1032,7 @@ msgstr "Certifikat genererade"
#. Label of a Card Break in the LMS Workspace #. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:626 #: frontend/src/components/AppSidebar.vue:626
#: frontend/src/components/Modals/Event.vue:381 #: frontend/src/components/Modals/Event.vue:412
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10 #: frontend/src/pages/CourseCertification.vue:10
#: frontend/src/pages/CourseCertification.vue:135 #: frontend/src/pages/CourseCertification.vue:135
@@ -1640,6 +1654,7 @@ msgstr "Antal Kurser"
#: lms/lms/doctype/course_chapter/course_chapter.json #: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json #: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
@@ -1757,7 +1772,7 @@ msgstr "Kurs {0} har redan lagts till i denna omgång."
#: frontend/src/components/BatchCourses.vue:5 #: frontend/src/components/BatchCourses.vue:5
#: frontend/src/components/BatchOverlay.vue:37 #: frontend/src/components/BatchOverlay.vue:37
#: frontend/src/components/BatchStudents.vue:25 #: frontend/src/components/BatchStudents.vue:25
#: frontend/src/components/Modals/BatchStudentProgress.vue:91 #: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127 #: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340 #: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340
@@ -2169,7 +2184,7 @@ msgstr "E-post"
#: frontend/src/components/DiscussionReplies.vue:35 #: frontend/src/components/DiscussionReplies.vue:35
#: frontend/src/components/Modals/ChapterModal.vue:9 #: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/components/Settings/Badges.vue:156 #: frontend/src/components/Settings/Badges.vue:156
#: frontend/src/pages/JobDetail.vue:34 frontend/src/pages/Lesson.vue:42 #: frontend/src/pages/JobDetail.vue:45 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36 #: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36
msgid "Edit" msgid "Edit"
msgstr "Redigera" msgstr "Redigera"
@@ -2236,7 +2251,7 @@ msgstr "Utbildning Detaljer"
#: frontend/src/components/Settings/Evaluators.vue:105 #: frontend/src/components/Settings/Evaluators.vue:105
#: frontend/src/components/Settings/Members.vue:103 #: frontend/src/components/Settings/Members.vue:103
#: lms/templates/signup-form.html:10 #: frontend/src/pages/JobApplications.vue:284 lms/templates/signup-form.html:10
msgid "Email" msgid "Email"
msgstr "E-post" msgstr "E-post"
@@ -2272,6 +2287,7 @@ msgid "Email Templates deleted successfully"
msgstr "E-post mallar raderade" msgstr "E-post mallar raderade"
#: frontend/src/components/ContactUsEmail.vue:57 #: frontend/src/components/ContactUsEmail.vue:57
#: frontend/src/pages/JobApplications.vue:244
msgid "Email sent successfully" msgid "Email sent successfully"
msgstr "E-post skickad" msgstr "E-post skickad"
@@ -2414,6 +2430,14 @@ msgstr "Ange Klient Id och Klient Hemlighet i Google inställningar för att ski
msgid "Enter a URL" msgid "Enter a URL"
msgstr "Ange URL" msgstr "Ange URL"
#: frontend/src/pages/JobApplications.vue:122
msgid "Enter email subject"
msgstr "Ange e-post ämne"
#: frontend/src/pages/JobApplications.vue:128
msgid "Enter reply to email"
msgstr "Ange svara till e-post"
#: frontend/src/components/Modals/ZoomAccountModal.vue:169 #: frontend/src/components/Modals/ZoomAccountModal.vue:169
msgid "Error creating Zoom Account" msgid "Error creating Zoom Account"
msgstr "Fel vid skapande av Zoom-konto" msgstr "Fel vid skapande av Zoom-konto"
@@ -2453,7 +2477,7 @@ msgstr "Fel vid uppdatering av e-post mall"
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace #. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:374 lms/lms/workspace/lms/lms.json #: frontend/src/components/Modals/Event.vue:405 lms/lms/workspace/lms/lms.json
msgid "Evaluation" msgid "Evaluation"
msgstr "Utvärdering" msgstr "Utvärdering"
@@ -2478,7 +2502,7 @@ msgstr "Utvärdering Begäran"
msgid "Evaluation end date cannot be less than the batch end date." msgid "Evaluation end date cannot be less than the batch end date."
msgstr "Utvärdering slutdatum får inte vara tidigare än grupp slutdatum." msgstr "Utvärdering slutdatum får inte vara tidigare än grupp slutdatum."
#: frontend/src/components/Modals/Event.vue:256 #: frontend/src/components/Modals/Event.vue:287
msgid "Evaluation saved successfully" msgid "Evaluation saved successfully"
msgstr "Utvärdering sparad" msgstr "Utvärdering sparad"
@@ -2586,7 +2610,7 @@ msgstr "Expandera"
#. Label of the expected_output (Data) field in DocType 'LMS Test Case' #. Label of the expected_output (Data) field in DocType 'LMS Test Case'
#. Label of the expected_output (Data) field in DocType 'LMS Test Case #. Label of the expected_output (Data) field in DocType 'LMS Test Case
#. Submission' #. Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:127 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:129
#: lms/lms/doctype/lms_test_case/lms_test_case.json #: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Expected Output" msgid "Expected Output"
@@ -2599,7 +2623,7 @@ msgstr "Utgång Datum"
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33 #: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:126 #: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date" msgid "Expiry Date"
msgstr "Utgång Datum" msgstr "Utgång Datum"
@@ -2626,7 +2650,7 @@ msgstr "Utforska mer"
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:366 #: frontend/src/components/Modals/Event.vue:397
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail" msgid "Fail"
@@ -2657,7 +2681,7 @@ msgstr "Misslyckades med att hämta närvarodata från Zoom för lektion {0}: {1
msgid "Failed to send email" msgid "Failed to send email"
msgstr "Misslyckades med att skicka e-post" msgstr "Misslyckades med att skicka e-post"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:358 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:364
msgid "Failed to submit. Please try again. {0}" msgid "Failed to submit. Please try again. {0}"
msgstr "Misslyckades med inlämning. Försök igen. {0}" msgstr "Misslyckades med inlämning. Försök igen. {0}"
@@ -2770,7 +2794,7 @@ msgid "Friday"
msgstr "Fredag" msgstr "Fredag"
#. Label of the unavailable_from (Date) field in DocType 'Course Evaluator' #. Label of the unavailable_from (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:99 #: frontend/src/pages/ProfileEvaluator.vue:106
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "From" msgid "From"
msgstr "Från" msgstr "Från"
@@ -2782,6 +2806,7 @@ msgstr "Från Datum"
#. Label of the full_name (Data) field in DocType 'Course Evaluator' #. Label of the full_name (Data) field in DocType 'Course Evaluator'
#. Label of the full_name (Data) field in DocType 'LMS Program Member' #. Label of the full_name (Data) field in DocType 'LMS Program Member'
#: frontend/src/pages/JobApplications.vue:278
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json #: lms/lms/doctype/lms_program_member/lms_program_member.json
#: lms/templates/signup-form.html:5 #: lms/templates/signup-form.html:5
@@ -3019,7 +3044,7 @@ msgstr "Jag är glad att kunna informera dig om att du har fått din certifierin
msgid "I am looking for a job" msgid "I am looking for a job"
msgstr "Jag söker jobb" msgstr "Jag söker jobb"
#: frontend/src/pages/ProfileEvaluator.vue:94 #: frontend/src/pages/ProfileEvaluator.vue:101
msgid "I am unavailable" msgid "I am unavailable"
msgstr "Jag är inte tillgänglig" msgstr "Jag är inte tillgänglig"
@@ -3105,7 +3130,7 @@ msgstr "Bild: Skadad Dataström"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course' #. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:358 #: frontend/src/components/Modals/Event.vue:389
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
@@ -3161,7 +3186,7 @@ msgstr "Industri"
#. Label of the input (Data) field in DocType 'LMS Test Case' #. Label of the input (Data) field in DocType 'LMS Test Case'
#. Label of the input (Data) field in DocType 'LMS Test Case Submission' #. Label of the input (Data) field in DocType 'LMS Test Case Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:113 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:115
#: lms/lms/doctype/lms_test_case/lms_test_case.json #: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Input" msgid "Input"
@@ -3273,7 +3298,7 @@ msgstr "Är SCORM App"
#. Label of the issue_date (Date) field in DocType 'Certification' #. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate' #. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28 #: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:121 #: frontend/src/components/Modals/Event.vue:138
#: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date" msgid "Issue Date"
@@ -3358,8 +3383,8 @@ msgid "Job Title"
msgstr "Jobb Benämning" msgstr "Jobb Benämning"
#. Label of the jobs (Check) field in DocType 'LMS Settings' #. Label of the jobs (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/JobDetail.vue:10 frontend/src/pages/Jobs.vue:8 #: frontend/src/pages/JobApplications.vue:9 frontend/src/pages/JobDetail.vue:10
#: frontend/src/pages/Jobs.vue:212 #: frontend/src/pages/Jobs.vue:8 frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs" msgid "Jobs"
msgstr "Jobb" msgstr "Jobb"
@@ -3375,7 +3400,7 @@ msgstr "Anslut"
msgid "Join Call" msgid "Join Call"
msgstr "Delta i Samtal" msgstr "Delta i Samtal"
#: frontend/src/components/Modals/Event.vue:74 #: frontend/src/components/Modals/Event.vue:78
msgid "Join Meeting" msgid "Join Meeting"
msgstr "Delta i Möte" msgstr "Delta i Möte"
@@ -3883,7 +3908,7 @@ msgstr "Logga In"
msgid "Login to Frappe Cloud?" msgid "Login to Frappe Cloud?"
msgstr "Logga in på Frappe Cloud?" msgstr "Logga in på Frappe Cloud?"
#: frontend/src/pages/JobDetail.vue:63 #: frontend/src/pages/JobDetail.vue:74
msgid "Login to apply" msgid "Login to apply"
msgstr "Logga in för att ansöka" msgstr "Logga in för att ansöka"
@@ -4228,9 +4253,14 @@ msgid "Mentor Request Status Update Template"
msgstr "Mentor Begäran Status Uppdatering Mall" msgstr "Mentor Begäran Status Uppdatering Mall"
#: frontend/src/components/ContactUsEmail.vue:19 #: frontend/src/components/ContactUsEmail.vue:19
#: frontend/src/pages/JobApplications.vue:132
msgid "Message" msgid "Message"
msgstr "Meddelande" msgstr "Meddelande"
#: frontend/src/pages/JobApplications.vue:240
msgid "Message is required"
msgstr "Meddelande erfordras"
#. Label of the meta_description (Small Text) field in DocType 'LMS Settings' #. Label of the meta_description (Small Text) field in DocType 'LMS Settings'
#: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303 #: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -4351,7 +4381,7 @@ msgstr "Mina Anteckningar"
msgid "My availability" msgid "My availability"
msgstr "Min tillgänglighet" msgstr "Min tillgänglighet"
#: frontend/src/pages/ProfileEvaluator.vue:127 #: frontend/src/pages/ProfileEvaluator.vue:136
msgid "My calendar" msgid "My calendar"
msgstr "Min kalender" msgstr "Min kalender"
@@ -4390,7 +4420,7 @@ msgstr "Ny e-post mall"
msgid "New Job" msgid "New Job"
msgstr "Nya Jobb" msgstr "Nya Jobb"
#: lms/job/doctype/lms_job_application/lms_job_application.py:27 #: lms/job/doctype/lms_job_application/lms_job_application.py:31
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "Ny Jobb Sökande" msgstr "Ny Jobb Sökande"
@@ -4568,7 +4598,7 @@ msgstr "Ej Betygsatt"
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:164 #: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:164
msgid "Not Permitted" msgid "Not Permitted"
msgstr "Ej Tillåtet" msgstr "Inte Tillåtet"
#: frontend/src/components/Assignment.vue:36 #: frontend/src/components/Assignment.vue:36
#: frontend/src/components/Settings/BrandSettings.vue:10 #: frontend/src/components/Settings/BrandSettings.vue:10
@@ -4581,7 +4611,7 @@ msgstr "Ej Sparad"
#. Label of the note (Text Editor) field in DocType 'LMS Lesson Note' #. Label of the note (Text Editor) field in DocType 'LMS Lesson Note'
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json #: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
msgid "Note" msgid "Note"
msgstr "Anteckning" msgstr "Notera"
#: frontend/src/pages/Lesson.vue:404 frontend/src/pages/Lesson.vue:880 #: frontend/src/pages/Lesson.vue:404 frontend/src/pages/Lesson.vue:880
#: frontend/src/pages/Lesson.vue:891 #: frontend/src/pages/Lesson.vue:891
@@ -4818,7 +4848,7 @@ msgstr "Delvis Klar"
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:362 #: frontend/src/components/Modals/Event.vue:393
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass" msgid "Pass"
@@ -4945,7 +4975,7 @@ msgstr "Betalning App är inte installerad"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' #. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:354 #: frontend/src/components/Modals/Event.vue:385
#: lms/lms/doctype/cohort_join_request/cohort_join_request.json #: lms/lms/doctype/cohort_join_request/cohort_join_request.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
@@ -4964,7 +4994,7 @@ msgstr "Procentuell"
msgid "Percentage (e.g. 70%)" msgid "Percentage (e.g. 70%)"
msgstr "Procent (t.ex. 70%)" msgstr "Procent (t.ex. 70%)"
#: frontend/src/components/Modals/BatchStudentProgress.vue:44 #: frontend/src/components/Modals/BatchStudentProgress.vue:46
msgid "Percentage/Status" msgid "Percentage/Status"
msgstr "Procentandel/Status" msgstr "Procentandel/Status"
@@ -5080,7 +5110,7 @@ msgstr "Logga in för att registrera dig i programmet."
msgid "Please prepare well and be on time for the evaluations." msgid "Please prepare well and be on time for the evaluations."
msgstr "Förbered dig väl och kom i tid till utvärderingarna." msgstr "Förbered dig väl och kom i tid till utvärderingarna."
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:135 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:139
msgid "Please run the code to execute the test cases." msgid "Please run the code to execute the test cases."
msgstr "Kör kod för att utföra testfall." msgstr "Kör kod för att utföra testfall."
@@ -5317,11 +5347,11 @@ msgstr "Programmeringsövning"
#: frontend/src/components/Settings/BadgeForm.vue:200 #: frontend/src/components/Settings/BadgeForm.vue:200
#: frontend/src/components/Settings/Badges.vue:205 #: frontend/src/components/Settings/Badges.vue:205
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:420 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:426
msgid "Programming Exercise Submission" msgid "Programming Exercise Submission"
msgstr "Programmeringsövning Inlämning" msgstr "Programmeringsövning Inlämning"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:411 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:417
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298
msgid "Programming Exercise Submissions" msgid "Programming Exercise Submissions"
msgstr "Programmeringsövning Inlämningar" msgstr "Programmeringsövning Inlämningar"
@@ -5355,7 +5385,7 @@ msgstr "Program"
#. Label of the progress (Float) field in DocType 'LMS Enrollment' #. Label of the progress (Float) field in DocType 'LMS Enrollment'
#. Label of the progress (Int) field in DocType 'LMS Program Member' #. Label of the progress (Int) field in DocType 'LMS Program Member'
#: frontend/src/components/Modals/BatchStudentProgress.vue:94 #: frontend/src/components/Modals/BatchStudentProgress.vue:98
#: frontend/src/components/Modals/CourseProgressSummary.vue:224 #: frontend/src/components/Modals/CourseProgressSummary.vue:224
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json #: lms/lms/doctype/lms_enrollment/lms_enrollment.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json #: lms/lms/doctype/lms_program_member/lms_program_member.json
@@ -5401,7 +5431,7 @@ msgstr "Publicera på deltagarsidan"
#. Label of the published (Check) field in DocType 'LMS Course' #. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program' #. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51 #: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:108 #: frontend/src/components/Modals/Event.vue:122
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152 #: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100 #: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5569,7 +5599,7 @@ msgstr "Frågesporter i denna video"
#. Label of the rating (Data) field in DocType 'LMS Course' #. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review' #. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147 #: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:86 #: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/ReviewModal.vue:18 #: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
@@ -5656,6 +5686,7 @@ msgid "Remove Highlight"
msgstr "Ta bort Markering" msgstr "Ta bort Markering"
#: frontend/src/components/Modals/AnnouncementModal.vue:27 #: frontend/src/components/Modals/AnnouncementModal.vue:27
#: frontend/src/pages/JobApplications.vue:127
msgid "Reply To" msgid "Reply To"
msgstr "Svara till" msgstr "Svara till"
@@ -5815,8 +5846,8 @@ msgstr "Lördag"
#: frontend/src/components/Controls/CodeEditor.vue:25 #: frontend/src/components/Controls/CodeEditor.vue:25
#: frontend/src/components/Modals/AssignmentForm.vue:59 #: frontend/src/components/Modals/AssignmentForm.vue:59
#: frontend/src/components/Modals/EmailTemplateModal.vue:12 #: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:101 #: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:129 #: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
@@ -5955,6 +5986,7 @@ msgid "Select an assignment"
msgstr "Välj uppgift" msgstr "Välj uppgift"
#: frontend/src/components/ContactUsEmail.vue:33 #: frontend/src/components/ContactUsEmail.vue:33
#: frontend/src/pages/JobApplications.vue:110
msgid "Send" msgid "Send"
msgstr "Skicka" msgstr "Skicka"
@@ -5962,6 +5994,14 @@ msgstr "Skicka"
msgid "Send Confirmation Email" msgid "Send Confirmation Email"
msgstr "Skicka bekräftelse via e-post" msgstr "Skicka bekräftelse via e-post"
#: frontend/src/pages/JobApplications.vue:268
msgid "Send Email"
msgstr "Skicka E-post"
#: frontend/src/pages/JobApplications.vue:106
msgid "Send Email to {0}"
msgstr "Skicka E-post till {0}"
#. Label of the send_calendar_invite_for_evaluations (Check) field in DocType #. Label of the send_calendar_invite_for_evaluations (Check) field in DocType
#. 'LMS Settings' #. 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -6122,11 +6162,11 @@ msgstr "Hoppa Över"
msgid "Slot Times are overlapping for some schedules." msgid "Slot Times are overlapping for some schedules."
msgstr "Tider överlappar för vissa schema." msgstr "Tider överlappar för vissa schema."
#: frontend/src/pages/ProfileEvaluator.vue:201 #: frontend/src/pages/ProfileEvaluator.vue:218
msgid "Slot added successfully" msgid "Slot added successfully"
msgstr "Tid tillagd" msgstr "Tid tillagd"
#: frontend/src/pages/ProfileEvaluator.vue:240 #: frontend/src/pages/ProfileEvaluator.vue:257
msgid "Slot deleted successfully" msgid "Slot deleted successfully"
msgstr "Tid raderad" msgstr "Tid raderad"
@@ -6161,7 +6201,7 @@ msgstr "Lösning"
#: lms/lms/doctype/lms_source/lms_source.json #: lms/lms/doctype/lms_source/lms_source.json
#: lms/lms/doctype/lms_video_watch_duration/lms_video_watch_duration.json #: lms/lms/doctype/lms_video_watch_duration/lms_video_watch_duration.json
msgid "Source" msgid "Source"
msgstr "Från" msgstr "Källa"
#. Option for the 'Role' (Select) field in DocType 'Cohort Staff' #. Option for the 'Role' (Select) field in DocType 'Cohort Staff'
#. Option for the 'Member Type' (Select) field in DocType 'LMS Enrollment' #. Option for the 'Member Type' (Select) field in DocType 'LMS Enrollment'
@@ -6265,7 +6305,7 @@ msgstr "Statistik"
#. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission' #. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission' #. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:91 #: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Settings/Badges.vue:228 #: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19 #: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6336,10 +6376,12 @@ msgstr "Undergrupp"
#: frontend/src/components/ContactUsEmail.vue:13 #: frontend/src/components/ContactUsEmail.vue:13
#: frontend/src/components/Modals/AnnouncementModal.vue:20 #: frontend/src/components/Modals/AnnouncementModal.vue:20
#: frontend/src/components/Modals/EmailTemplateModal.vue:31 #: frontend/src/components/Modals/EmailTemplateModal.vue:31
#: frontend/src/pages/JobApplications.vue:121
msgid "Subject" msgid "Subject"
msgstr "Ämne" msgstr "Ämne"
#: frontend/src/components/Modals/AnnouncementModal.vue:94 #: frontend/src/components/Modals/AnnouncementModal.vue:94
#: frontend/src/pages/JobApplications.vue:237
msgid "Subject is required" msgid "Subject is required"
msgstr "Ämne erfordras" msgstr "Ämne erfordras"
@@ -6356,7 +6398,7 @@ msgstr "Inlämningstyp"
msgid "Submission by" msgid "Submission by"
msgstr "Inlämning av" msgstr "Inlämning av"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:353 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:359
msgid "Submission saved!" msgid "Submission saved!"
msgstr "Inlämning sparad!" msgstr "Inlämning sparad!"
@@ -6396,7 +6438,7 @@ msgstr "Registrerad i program"
#. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:97 #: frontend/src/components/Modals/Event.vue:106
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary" msgid "Summary"
msgstr "Översikt" msgstr "Översikt"
@@ -6501,7 +6543,7 @@ msgstr "Teamarbete"
#. Label of the template (Link) field in DocType 'Cohort Web Page' #. Label of the template (Link) field in DocType 'Cohort Web Page'
#. Label of the template (Link) field in DocType 'LMS Certificate' #. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43 #: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:112 #: frontend/src/components/Modals/Event.vue:127
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template" msgid "Template"
@@ -6542,7 +6584,7 @@ msgstr "Test Resultat"
msgid "Test this Exercise" msgid "Test this Exercise"
msgstr "Testa denna Övning" msgstr "Testa denna Övning"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:92 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:93
msgid "Test {0}" msgid "Test {0}"
msgstr "Testa {0}" msgstr "Testa {0}"
@@ -6840,7 +6882,7 @@ msgid "Title is required"
msgstr "Benämning erfordras" msgstr "Benämning erfordras"
#. Label of the unavailable_to (Date) field in DocType 'Course Evaluator' #. Label of the unavailable_to (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:112 #: frontend/src/pages/ProfileEvaluator.vue:120
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "To" msgid "To"
msgstr "Till" msgstr "Till"
@@ -6953,7 +6995,7 @@ msgstr "UUID"
msgid "Unavailability" msgid "Unavailability"
msgstr "Otillgänglighet" msgstr "Otillgänglighet"
#: frontend/src/pages/ProfileEvaluator.vue:259 #: frontend/src/pages/ProfileEvaluator.vue:276
msgid "Unavailability updated successfully" msgid "Unavailability updated successfully"
msgstr "Otillgänglighet uppdaterad" msgstr "Otillgänglighet uppdaterad"
@@ -7123,11 +7165,19 @@ msgstr "Videostatistik för {0}"
msgid "View" msgid "View"
msgstr "Visa" msgstr "Visa"
#: frontend/src/pages/JobDetail.vue:31
msgid "View Applications"
msgstr "Visa Ansökningar"
#: frontend/src/components/CertificationLinks.vue:10 #: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67 #: frontend/src/components/Modals/Event.vue:67
msgid "View Certificate" msgid "View Certificate"
msgstr "Visa Certifikat" msgstr "Visa Certifikat"
#: frontend/src/pages/JobApplications.vue:262
msgid "View Resume"
msgstr "Visa CV"
#: frontend/src/components/BatchFeedback.vue:56 #: frontend/src/components/BatchFeedback.vue:56
msgid "View all feedback" msgid "View all feedback"
msgstr "Visa alla återkopplingar" msgstr "Visa alla återkopplingar"
@@ -7146,7 +7196,7 @@ msgstr "Synlighet"
msgid "Visit Batch" msgid "Visit Batch"
msgstr "Besök Omgång" msgstr "Besök Omgång"
#: frontend/src/pages/JobDetail.vue:41 #: frontend/src/pages/JobDetail.vue:52
msgid "Visit Website" msgid "Visit Website"
msgstr "Besök Webbplats" msgstr "Besök Webbplats"
@@ -7355,7 +7405,7 @@ msgstr "Du fick {0}% rätta svar med resultat på {1} av {2}"
msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session." msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session."
msgstr "Du har en liveklass schemalagd i morgon. Var förberedd och kom i tid till sessionen." msgstr "Du har en liveklass schemalagd i morgon. Var förberedd och kom i tid till sessionen."
#: lms/job/doctype/lms_job_application/lms_job_application.py:22 #: lms/job/doctype/lms_job_application/lms_job_application.py:26
msgid "You have already applied for this job." msgid "You have already applied for this job."
msgstr "Du har redan sökt detta jobb." msgstr "Du har redan sökt detta jobb."
@@ -7371,7 +7421,7 @@ msgstr "Du har redan köpt certifikat för denna kurs."
msgid "You have already reviewed this course" msgid "You have already reviewed this course"
msgstr "Du har redan granskat denna kurs" msgstr "Du har redan granskat denna kurs"
#: frontend/src/pages/JobDetail.vue:57 #: frontend/src/pages/JobDetail.vue:68
msgid "You have applied" msgid "You have applied"
msgstr "Du har ansökt" msgstr "Du har ansökt"
@@ -7451,7 +7501,7 @@ msgstr "YouTube Video visas överst i lektion."
msgid "Your Account has been successfully created!" msgid "Your Account has been successfully created!"
msgstr "Ditt konto är skapad!" msgstr "Ditt konto är skapad!"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:119 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:121
msgid "Your Output" msgid "Your Output"
msgstr "Utdata" msgstr "Utdata"
@@ -7459,7 +7509,7 @@ msgstr "Utdata"
msgid "Your batch {0} is starting tomorrow" msgid "Your batch {0} is starting tomorrow"
msgstr "Din grupp {0} börjar imorgon" msgstr "Din grupp {0} börjar imorgon"
#: frontend/src/pages/ProfileEvaluator.vue:134 #: frontend/src/pages/ProfileEvaluator.vue:143
msgid "Your calendar is set." msgid "Your calendar is set."
msgstr "Din kalender är konfigurerad." msgstr "Din kalender är konfigurerad."
@@ -7538,11 +7588,11 @@ msgstr "och"
msgid "and then 'Add to Home Screen'" msgid "and then 'Add to Home Screen'"
msgstr "och sedan \"Lägg till Hem\"" msgstr "och sedan \"Lägg till Hem\""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114 #: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicant" msgid "applicant"
msgstr "sökande" msgstr "sökande"
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114 #: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicants" msgid "applicants"
msgstr "sökande" msgstr "sökande"

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2025-10-31 16:04+0000\n" "POT-Creation-Date: 2025-11-07 16:04+0000\n"
"PO-Revision-Date: 2025-11-02 19:07\n" "PO-Revision-Date: 2025-11-11 11:49\n"
"Last-Translator: jannat@frappe.io\n" "Last-Translator: jannat@frappe.io\n"
"Language-Team: Tamil\n" "Language-Team: Tamil\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -176,7 +176,7 @@ msgstr ""
msgid "Add Row" msgid "Add Row"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:89 #: frontend/src/pages/ProfileEvaluator.vue:96
msgid "Add Slot" msgid "Add Slot"
msgstr "" msgstr ""
@@ -426,12 +426,25 @@ msgstr ""
msgid "Appears when the batch URL is shared on socials" msgid "Appears when the batch URL is shared on socials"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:24
msgid "Application"
msgstr ""
#. Label of a field in the job-opportunity Web Form #. Label of a field in the job-opportunity Web Form
#: lms/job/web_form/job_opportunity/job_opportunity.json #: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Application Form Link" msgid "Application Form Link"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:51 #: frontend/src/pages/JobApplications.vue:14
#: frontend/src/pages/JobApplications.vue:25
msgid "Applications"
msgstr ""
#: frontend/src/pages/JobApplications.vue:290
msgid "Applied On"
msgstr ""
#: frontend/src/pages/JobDetail.vue:62
msgid "Apply" msgid "Apply"
msgstr "" msgstr ""
@@ -483,7 +496,7 @@ msgstr ""
#. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch' #. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the assessment (Table) field in DocType 'LMS Batch' #. Label of the assessment (Table) field in DocType 'LMS Batch'
#: frontend/src/components/Modals/AssessmentModal.vue:27 #: frontend/src/components/Modals/AssessmentModal.vue:27
#: frontend/src/components/Modals/BatchStudentProgress.vue:41 #: frontend/src/components/Modals/BatchStudentProgress.vue:43
#: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11 #: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11
msgid "Assessment" msgid "Assessment"
msgstr "" msgstr ""
@@ -569,7 +582,7 @@ msgstr ""
msgid "Assignment Title" msgid "Assignment Title"
msgstr "" msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:125 #: frontend/src/components/Modals/AssignmentForm.vue:133
msgid "Assignment created successfully" msgid "Assignment created successfully"
msgstr "" msgstr ""
@@ -581,7 +594,7 @@ msgstr ""
msgid "Assignment submitted successfully" msgid "Assignment submitted successfully"
msgstr "" msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:138 #: frontend/src/components/Modals/AssignmentForm.vue:146
msgid "Assignment updated successfully" msgid "Assignment updated successfully"
msgstr "" msgstr ""
@@ -622,7 +635,7 @@ msgstr ""
msgid "Attire Preference" msgid "Attire Preference"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:137 #: frontend/src/pages/ProfileEvaluator.vue:146
msgid "Authorize Google Calendar Access" msgid "Authorize Google Calendar Access"
msgstr "" msgstr ""
@@ -637,7 +650,7 @@ msgstr ""
msgid "Auto Recording" msgid "Auto Recording"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:224 #: frontend/src/pages/ProfileEvaluator.vue:241
msgid "Availability updated successfully" msgid "Availability updated successfully"
msgstr "" msgstr ""
@@ -768,6 +781,7 @@ msgstr ""
#. Name of a role #. Name of a role
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -998,7 +1012,7 @@ msgstr ""
msgid "Certificate of Completion" msgid "Certificate of Completion"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:317 #: frontend/src/components/Modals/Event.vue:348
msgid "Certificate saved successfully" msgid "Certificate saved successfully"
msgstr "" msgstr ""
@@ -1018,7 +1032,7 @@ msgstr ""
#. Label of a Card Break in the LMS Workspace #. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:626 #: frontend/src/components/AppSidebar.vue:626
#: frontend/src/components/Modals/Event.vue:381 #: frontend/src/components/Modals/Event.vue:412
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10 #: frontend/src/pages/CourseCertification.vue:10
#: frontend/src/pages/CourseCertification.vue:135 #: frontend/src/pages/CourseCertification.vue:135
@@ -1640,6 +1654,7 @@ msgstr ""
#: lms/lms/doctype/course_chapter/course_chapter.json #: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json #: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
@@ -1757,7 +1772,7 @@ msgstr ""
#: frontend/src/components/BatchCourses.vue:5 #: frontend/src/components/BatchCourses.vue:5
#: frontend/src/components/BatchOverlay.vue:37 #: frontend/src/components/BatchOverlay.vue:37
#: frontend/src/components/BatchStudents.vue:25 #: frontend/src/components/BatchStudents.vue:25
#: frontend/src/components/Modals/BatchStudentProgress.vue:91 #: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127 #: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340 #: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340
@@ -2169,7 +2184,7 @@ msgstr ""
#: frontend/src/components/DiscussionReplies.vue:35 #: frontend/src/components/DiscussionReplies.vue:35
#: frontend/src/components/Modals/ChapterModal.vue:9 #: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/components/Settings/Badges.vue:156 #: frontend/src/components/Settings/Badges.vue:156
#: frontend/src/pages/JobDetail.vue:34 frontend/src/pages/Lesson.vue:42 #: frontend/src/pages/JobDetail.vue:45 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36 #: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36
msgid "Edit" msgid "Edit"
msgstr "" msgstr ""
@@ -2236,7 +2251,7 @@ msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:105 #: frontend/src/components/Settings/Evaluators.vue:105
#: frontend/src/components/Settings/Members.vue:103 #: frontend/src/components/Settings/Members.vue:103
#: lms/templates/signup-form.html:10 #: frontend/src/pages/JobApplications.vue:284 lms/templates/signup-form.html:10
msgid "Email" msgid "Email"
msgstr "" msgstr ""
@@ -2272,6 +2287,7 @@ msgid "Email Templates deleted successfully"
msgstr "" msgstr ""
#: frontend/src/components/ContactUsEmail.vue:57 #: frontend/src/components/ContactUsEmail.vue:57
#: frontend/src/pages/JobApplications.vue:244
msgid "Email sent successfully" msgid "Email sent successfully"
msgstr "" msgstr ""
@@ -2414,6 +2430,14 @@ msgstr ""
msgid "Enter a URL" msgid "Enter a URL"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:122
msgid "Enter email subject"
msgstr ""
#: frontend/src/pages/JobApplications.vue:128
msgid "Enter reply to email"
msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:169 #: frontend/src/components/Modals/ZoomAccountModal.vue:169
msgid "Error creating Zoom Account" msgid "Error creating Zoom Account"
msgstr "" msgstr ""
@@ -2453,7 +2477,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace #. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:374 lms/lms/workspace/lms/lms.json #: frontend/src/components/Modals/Event.vue:405 lms/lms/workspace/lms/lms.json
msgid "Evaluation" msgid "Evaluation"
msgstr "" msgstr ""
@@ -2478,7 +2502,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date." msgid "Evaluation end date cannot be less than the batch end date."
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:256 #: frontend/src/components/Modals/Event.vue:287
msgid "Evaluation saved successfully" msgid "Evaluation saved successfully"
msgstr "" msgstr ""
@@ -2586,7 +2610,7 @@ msgstr ""
#. Label of the expected_output (Data) field in DocType 'LMS Test Case' #. Label of the expected_output (Data) field in DocType 'LMS Test Case'
#. Label of the expected_output (Data) field in DocType 'LMS Test Case #. Label of the expected_output (Data) field in DocType 'LMS Test Case
#. Submission' #. Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:127 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:129
#: lms/lms/doctype/lms_test_case/lms_test_case.json #: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Expected Output" msgid "Expected Output"
@@ -2599,7 +2623,7 @@ msgstr ""
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33 #: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:126 #: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date" msgid "Expiry Date"
msgstr "" msgstr ""
@@ -2626,7 +2650,7 @@ msgstr ""
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:366 #: frontend/src/components/Modals/Event.vue:397
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail" msgid "Fail"
@@ -2657,7 +2681,7 @@ msgstr ""
msgid "Failed to send email" msgid "Failed to send email"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:358 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:364
msgid "Failed to submit. Please try again. {0}" msgid "Failed to submit. Please try again. {0}"
msgstr "" msgstr ""
@@ -2770,7 +2794,7 @@ msgid "Friday"
msgstr "" msgstr ""
#. Label of the unavailable_from (Date) field in DocType 'Course Evaluator' #. Label of the unavailable_from (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:99 #: frontend/src/pages/ProfileEvaluator.vue:106
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "From" msgid "From"
msgstr "" msgstr ""
@@ -2782,6 +2806,7 @@ msgstr ""
#. Label of the full_name (Data) field in DocType 'Course Evaluator' #. Label of the full_name (Data) field in DocType 'Course Evaluator'
#. Label of the full_name (Data) field in DocType 'LMS Program Member' #. Label of the full_name (Data) field in DocType 'LMS Program Member'
#: frontend/src/pages/JobApplications.vue:278
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json #: lms/lms/doctype/lms_program_member/lms_program_member.json
#: lms/templates/signup-form.html:5 #: lms/templates/signup-form.html:5
@@ -3019,7 +3044,7 @@ msgstr ""
msgid "I am looking for a job" msgid "I am looking for a job"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:94 #: frontend/src/pages/ProfileEvaluator.vue:101
msgid "I am unavailable" msgid "I am unavailable"
msgstr "" msgstr ""
@@ -3105,7 +3130,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course' #. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:358 #: frontend/src/components/Modals/Event.vue:389
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
@@ -3161,7 +3186,7 @@ msgstr ""
#. Label of the input (Data) field in DocType 'LMS Test Case' #. Label of the input (Data) field in DocType 'LMS Test Case'
#. Label of the input (Data) field in DocType 'LMS Test Case Submission' #. Label of the input (Data) field in DocType 'LMS Test Case Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:113 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:115
#: lms/lms/doctype/lms_test_case/lms_test_case.json #: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Input" msgid "Input"
@@ -3273,7 +3298,7 @@ msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification' #. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate' #. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28 #: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:121 #: frontend/src/components/Modals/Event.vue:138
#: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date" msgid "Issue Date"
@@ -3358,8 +3383,8 @@ msgid "Job Title"
msgstr "" msgstr ""
#. Label of the jobs (Check) field in DocType 'LMS Settings' #. Label of the jobs (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/JobDetail.vue:10 frontend/src/pages/Jobs.vue:8 #: frontend/src/pages/JobApplications.vue:9 frontend/src/pages/JobDetail.vue:10
#: frontend/src/pages/Jobs.vue:212 #: frontend/src/pages/Jobs.vue:8 frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs" msgid "Jobs"
msgstr "" msgstr ""
@@ -3375,7 +3400,7 @@ msgstr ""
msgid "Join Call" msgid "Join Call"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:74 #: frontend/src/components/Modals/Event.vue:78
msgid "Join Meeting" msgid "Join Meeting"
msgstr "" msgstr ""
@@ -3883,7 +3908,7 @@ msgstr ""
msgid "Login to Frappe Cloud?" msgid "Login to Frappe Cloud?"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:63 #: frontend/src/pages/JobDetail.vue:74
msgid "Login to apply" msgid "Login to apply"
msgstr "" msgstr ""
@@ -4228,9 +4253,14 @@ msgid "Mentor Request Status Update Template"
msgstr "" msgstr ""
#: frontend/src/components/ContactUsEmail.vue:19 #: frontend/src/components/ContactUsEmail.vue:19
#: frontend/src/pages/JobApplications.vue:132
msgid "Message" msgid "Message"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:240
msgid "Message is required"
msgstr ""
#. Label of the meta_description (Small Text) field in DocType 'LMS Settings' #. Label of the meta_description (Small Text) field in DocType 'LMS Settings'
#: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303 #: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -4351,7 +4381,7 @@ msgstr ""
msgid "My availability" msgid "My availability"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:127 #: frontend/src/pages/ProfileEvaluator.vue:136
msgid "My calendar" msgid "My calendar"
msgstr "" msgstr ""
@@ -4390,7 +4420,7 @@ msgstr ""
msgid "New Job" msgid "New Job"
msgstr "" msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:27 #: lms/job/doctype/lms_job_application/lms_job_application.py:31
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "" msgstr ""
@@ -4818,7 +4848,7 @@ msgstr ""
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:362 #: frontend/src/components/Modals/Event.vue:393
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass" msgid "Pass"
@@ -4945,7 +4975,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' #. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:354 #: frontend/src/components/Modals/Event.vue:385
#: lms/lms/doctype/cohort_join_request/cohort_join_request.json #: lms/lms/doctype/cohort_join_request/cohort_join_request.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
@@ -4964,7 +4994,7 @@ msgstr ""
msgid "Percentage (e.g. 70%)" msgid "Percentage (e.g. 70%)"
msgstr "" msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:44 #: frontend/src/components/Modals/BatchStudentProgress.vue:46
msgid "Percentage/Status" msgid "Percentage/Status"
msgstr "" msgstr ""
@@ -5080,7 +5110,7 @@ msgstr ""
msgid "Please prepare well and be on time for the evaluations." msgid "Please prepare well and be on time for the evaluations."
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:135 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:139
msgid "Please run the code to execute the test cases." msgid "Please run the code to execute the test cases."
msgstr "" msgstr ""
@@ -5317,11 +5347,11 @@ msgstr ""
#: frontend/src/components/Settings/BadgeForm.vue:200 #: frontend/src/components/Settings/BadgeForm.vue:200
#: frontend/src/components/Settings/Badges.vue:205 #: frontend/src/components/Settings/Badges.vue:205
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:420 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:426
msgid "Programming Exercise Submission" msgid "Programming Exercise Submission"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:411 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:417
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298
msgid "Programming Exercise Submissions" msgid "Programming Exercise Submissions"
msgstr "" msgstr ""
@@ -5355,7 +5385,7 @@ msgstr ""
#. Label of the progress (Float) field in DocType 'LMS Enrollment' #. Label of the progress (Float) field in DocType 'LMS Enrollment'
#. Label of the progress (Int) field in DocType 'LMS Program Member' #. Label of the progress (Int) field in DocType 'LMS Program Member'
#: frontend/src/components/Modals/BatchStudentProgress.vue:94 #: frontend/src/components/Modals/BatchStudentProgress.vue:98
#: frontend/src/components/Modals/CourseProgressSummary.vue:224 #: frontend/src/components/Modals/CourseProgressSummary.vue:224
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json #: lms/lms/doctype/lms_enrollment/lms_enrollment.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json #: lms/lms/doctype/lms_program_member/lms_program_member.json
@@ -5401,7 +5431,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Course' #. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program' #. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51 #: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:108 #: frontend/src/components/Modals/Event.vue:122
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152 #: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100 #: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5569,7 +5599,7 @@ msgstr ""
#. Label of the rating (Data) field in DocType 'LMS Course' #. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review' #. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147 #: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:86 #: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/ReviewModal.vue:18 #: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
@@ -5656,6 +5686,7 @@ msgid "Remove Highlight"
msgstr "" msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:27 #: frontend/src/components/Modals/AnnouncementModal.vue:27
#: frontend/src/pages/JobApplications.vue:127
msgid "Reply To" msgid "Reply To"
msgstr "" msgstr ""
@@ -5815,8 +5846,8 @@ msgstr ""
#: frontend/src/components/Controls/CodeEditor.vue:25 #: frontend/src/components/Controls/CodeEditor.vue:25
#: frontend/src/components/Modals/AssignmentForm.vue:59 #: frontend/src/components/Modals/AssignmentForm.vue:59
#: frontend/src/components/Modals/EmailTemplateModal.vue:12 #: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:101 #: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:129 #: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
@@ -5955,6 +5986,7 @@ msgid "Select an assignment"
msgstr "" msgstr ""
#: frontend/src/components/ContactUsEmail.vue:33 #: frontend/src/components/ContactUsEmail.vue:33
#: frontend/src/pages/JobApplications.vue:110
msgid "Send" msgid "Send"
msgstr "" msgstr ""
@@ -5962,6 +5994,14 @@ msgstr ""
msgid "Send Confirmation Email" msgid "Send Confirmation Email"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:268
msgid "Send Email"
msgstr ""
#: frontend/src/pages/JobApplications.vue:106
msgid "Send Email to {0}"
msgstr ""
#. Label of the send_calendar_invite_for_evaluations (Check) field in DocType #. Label of the send_calendar_invite_for_evaluations (Check) field in DocType
#. 'LMS Settings' #. 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -6122,11 +6162,11 @@ msgstr ""
msgid "Slot Times are overlapping for some schedules." msgid "Slot Times are overlapping for some schedules."
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:201 #: frontend/src/pages/ProfileEvaluator.vue:218
msgid "Slot added successfully" msgid "Slot added successfully"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:240 #: frontend/src/pages/ProfileEvaluator.vue:257
msgid "Slot deleted successfully" msgid "Slot deleted successfully"
msgstr "" msgstr ""
@@ -6265,7 +6305,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission' #. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission' #. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:91 #: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Settings/Badges.vue:228 #: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19 #: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6336,10 +6376,12 @@ msgstr ""
#: frontend/src/components/ContactUsEmail.vue:13 #: frontend/src/components/ContactUsEmail.vue:13
#: frontend/src/components/Modals/AnnouncementModal.vue:20 #: frontend/src/components/Modals/AnnouncementModal.vue:20
#: frontend/src/components/Modals/EmailTemplateModal.vue:31 #: frontend/src/components/Modals/EmailTemplateModal.vue:31
#: frontend/src/pages/JobApplications.vue:121
msgid "Subject" msgid "Subject"
msgstr "" msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:94 #: frontend/src/components/Modals/AnnouncementModal.vue:94
#: frontend/src/pages/JobApplications.vue:237
msgid "Subject is required" msgid "Subject is required"
msgstr "" msgstr ""
@@ -6356,7 +6398,7 @@ msgstr ""
msgid "Submission by" msgid "Submission by"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:353 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:359
msgid "Submission saved!" msgid "Submission saved!"
msgstr "" msgstr ""
@@ -6396,7 +6438,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:97 #: frontend/src/components/Modals/Event.vue:106
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary" msgid "Summary"
msgstr "" msgstr ""
@@ -6501,7 +6543,7 @@ msgstr ""
#. Label of the template (Link) field in DocType 'Cohort Web Page' #. Label of the template (Link) field in DocType 'Cohort Web Page'
#. Label of the template (Link) field in DocType 'LMS Certificate' #. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43 #: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:112 #: frontend/src/components/Modals/Event.vue:127
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template" msgid "Template"
@@ -6542,7 +6584,7 @@ msgstr ""
msgid "Test this Exercise" msgid "Test this Exercise"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:92 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:93
msgid "Test {0}" msgid "Test {0}"
msgstr "" msgstr ""
@@ -6840,7 +6882,7 @@ msgid "Title is required"
msgstr "" msgstr ""
#. Label of the unavailable_to (Date) field in DocType 'Course Evaluator' #. Label of the unavailable_to (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:112 #: frontend/src/pages/ProfileEvaluator.vue:120
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "To" msgid "To"
msgstr "" msgstr ""
@@ -6953,7 +6995,7 @@ msgstr ""
msgid "Unavailability" msgid "Unavailability"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:259 #: frontend/src/pages/ProfileEvaluator.vue:276
msgid "Unavailability updated successfully" msgid "Unavailability updated successfully"
msgstr "" msgstr ""
@@ -7123,11 +7165,19 @@ msgstr ""
msgid "View" msgid "View"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:31
msgid "View Applications"
msgstr ""
#: frontend/src/components/CertificationLinks.vue:10 #: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67 #: frontend/src/components/Modals/Event.vue:67
msgid "View Certificate" msgid "View Certificate"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:262
msgid "View Resume"
msgstr ""
#: frontend/src/components/BatchFeedback.vue:56 #: frontend/src/components/BatchFeedback.vue:56
msgid "View all feedback" msgid "View all feedback"
msgstr "" msgstr ""
@@ -7146,7 +7196,7 @@ msgstr ""
msgid "Visit Batch" msgid "Visit Batch"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:41 #: frontend/src/pages/JobDetail.vue:52
msgid "Visit Website" msgid "Visit Website"
msgstr "" msgstr ""
@@ -7355,7 +7405,7 @@ msgstr ""
msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session." msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session."
msgstr "" msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:22 #: lms/job/doctype/lms_job_application/lms_job_application.py:26
msgid "You have already applied for this job." msgid "You have already applied for this job."
msgstr "" msgstr ""
@@ -7371,7 +7421,7 @@ msgstr ""
msgid "You have already reviewed this course" msgid "You have already reviewed this course"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:57 #: frontend/src/pages/JobDetail.vue:68
msgid "You have applied" msgid "You have applied"
msgstr "" msgstr ""
@@ -7451,7 +7501,7 @@ msgstr ""
msgid "Your Account has been successfully created!" msgid "Your Account has been successfully created!"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:119 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:121
msgid "Your Output" msgid "Your Output"
msgstr "" msgstr ""
@@ -7459,7 +7509,7 @@ msgstr ""
msgid "Your batch {0} is starting tomorrow" msgid "Your batch {0} is starting tomorrow"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:134 #: frontend/src/pages/ProfileEvaluator.vue:143
msgid "Your calendar is set." msgid "Your calendar is set."
msgstr "" msgstr ""
@@ -7538,11 +7588,11 @@ msgstr ""
msgid "and then 'Add to Home Screen'" msgid "and then 'Add to Home Screen'"
msgstr "" msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114 #: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicant" msgid "applicant"
msgstr "" msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114 #: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicants" msgid "applicants"
msgstr "" msgstr ""

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2025-10-31 16:04+0000\n" "POT-Creation-Date: 2025-11-07 16:04+0000\n"
"PO-Revision-Date: 2025-11-02 19:07\n" "PO-Revision-Date: 2025-11-11 11:49\n"
"Last-Translator: jannat@frappe.io\n" "Last-Translator: jannat@frappe.io\n"
"Language-Team: Thai\n" "Language-Team: Thai\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -176,7 +176,7 @@ msgstr ""
msgid "Add Row" msgid "Add Row"
msgstr "เพิ่มแถว" msgstr "เพิ่มแถว"
#: frontend/src/pages/ProfileEvaluator.vue:89 #: frontend/src/pages/ProfileEvaluator.vue:96
msgid "Add Slot" msgid "Add Slot"
msgstr "" msgstr ""
@@ -426,12 +426,25 @@ msgstr ""
msgid "Appears when the batch URL is shared on socials" msgid "Appears when the batch URL is shared on socials"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:24
msgid "Application"
msgstr ""
#. Label of a field in the job-opportunity Web Form #. Label of a field in the job-opportunity Web Form
#: lms/job/web_form/job_opportunity/job_opportunity.json #: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Application Form Link" msgid "Application Form Link"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:51 #: frontend/src/pages/JobApplications.vue:14
#: frontend/src/pages/JobApplications.vue:25
msgid "Applications"
msgstr ""
#: frontend/src/pages/JobApplications.vue:290
msgid "Applied On"
msgstr ""
#: frontend/src/pages/JobDetail.vue:62
msgid "Apply" msgid "Apply"
msgstr "" msgstr ""
@@ -483,7 +496,7 @@ msgstr ""
#. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch' #. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the assessment (Table) field in DocType 'LMS Batch' #. Label of the assessment (Table) field in DocType 'LMS Batch'
#: frontend/src/components/Modals/AssessmentModal.vue:27 #: frontend/src/components/Modals/AssessmentModal.vue:27
#: frontend/src/components/Modals/BatchStudentProgress.vue:41 #: frontend/src/components/Modals/BatchStudentProgress.vue:43
#: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11 #: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11
msgid "Assessment" msgid "Assessment"
msgstr "" msgstr ""
@@ -569,7 +582,7 @@ msgstr ""
msgid "Assignment Title" msgid "Assignment Title"
msgstr "" msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:125 #: frontend/src/components/Modals/AssignmentForm.vue:133
msgid "Assignment created successfully" msgid "Assignment created successfully"
msgstr "" msgstr ""
@@ -581,7 +594,7 @@ msgstr ""
msgid "Assignment submitted successfully" msgid "Assignment submitted successfully"
msgstr "" msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:138 #: frontend/src/components/Modals/AssignmentForm.vue:146
msgid "Assignment updated successfully" msgid "Assignment updated successfully"
msgstr "" msgstr ""
@@ -622,7 +635,7 @@ msgstr ""
msgid "Attire Preference" msgid "Attire Preference"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:137 #: frontend/src/pages/ProfileEvaluator.vue:146
msgid "Authorize Google Calendar Access" msgid "Authorize Google Calendar Access"
msgstr "" msgstr ""
@@ -637,7 +650,7 @@ msgstr ""
msgid "Auto Recording" msgid "Auto Recording"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:224 #: frontend/src/pages/ProfileEvaluator.vue:241
msgid "Availability updated successfully" msgid "Availability updated successfully"
msgstr "" msgstr ""
@@ -768,6 +781,7 @@ msgstr ""
#. Name of a role #. Name of a role
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -998,7 +1012,7 @@ msgstr ""
msgid "Certificate of Completion" msgid "Certificate of Completion"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:317 #: frontend/src/components/Modals/Event.vue:348
msgid "Certificate saved successfully" msgid "Certificate saved successfully"
msgstr "" msgstr ""
@@ -1018,7 +1032,7 @@ msgstr ""
#. Label of a Card Break in the LMS Workspace #. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:626 #: frontend/src/components/AppSidebar.vue:626
#: frontend/src/components/Modals/Event.vue:381 #: frontend/src/components/Modals/Event.vue:412
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10 #: frontend/src/pages/CourseCertification.vue:10
#: frontend/src/pages/CourseCertification.vue:135 #: frontend/src/pages/CourseCertification.vue:135
@@ -1640,6 +1654,7 @@ msgstr ""
#: lms/lms/doctype/course_chapter/course_chapter.json #: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json #: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
@@ -1757,7 +1772,7 @@ msgstr ""
#: frontend/src/components/BatchCourses.vue:5 #: frontend/src/components/BatchCourses.vue:5
#: frontend/src/components/BatchOverlay.vue:37 #: frontend/src/components/BatchOverlay.vue:37
#: frontend/src/components/BatchStudents.vue:25 #: frontend/src/components/BatchStudents.vue:25
#: frontend/src/components/Modals/BatchStudentProgress.vue:91 #: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127 #: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340 #: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340
@@ -2172,7 +2187,7 @@ msgstr ""
#: frontend/src/components/DiscussionReplies.vue:35 #: frontend/src/components/DiscussionReplies.vue:35
#: frontend/src/components/Modals/ChapterModal.vue:9 #: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/components/Settings/Badges.vue:156 #: frontend/src/components/Settings/Badges.vue:156
#: frontend/src/pages/JobDetail.vue:34 frontend/src/pages/Lesson.vue:42 #: frontend/src/pages/JobDetail.vue:45 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36 #: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36
msgid "Edit" msgid "Edit"
msgstr "แก้ไข" msgstr "แก้ไข"
@@ -2239,7 +2254,7 @@ msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:105 #: frontend/src/components/Settings/Evaluators.vue:105
#: frontend/src/components/Settings/Members.vue:103 #: frontend/src/components/Settings/Members.vue:103
#: lms/templates/signup-form.html:10 #: frontend/src/pages/JobApplications.vue:284 lms/templates/signup-form.html:10
msgid "Email" msgid "Email"
msgstr "อีเมล" msgstr "อีเมล"
@@ -2275,6 +2290,7 @@ msgid "Email Templates deleted successfully"
msgstr "" msgstr ""
#: frontend/src/components/ContactUsEmail.vue:57 #: frontend/src/components/ContactUsEmail.vue:57
#: frontend/src/pages/JobApplications.vue:244
msgid "Email sent successfully" msgid "Email sent successfully"
msgstr "" msgstr ""
@@ -2417,6 +2433,14 @@ msgstr ""
msgid "Enter a URL" msgid "Enter a URL"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:122
msgid "Enter email subject"
msgstr ""
#: frontend/src/pages/JobApplications.vue:128
msgid "Enter reply to email"
msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:169 #: frontend/src/components/Modals/ZoomAccountModal.vue:169
msgid "Error creating Zoom Account" msgid "Error creating Zoom Account"
msgstr "" msgstr ""
@@ -2456,7 +2480,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace #. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:374 lms/lms/workspace/lms/lms.json #: frontend/src/components/Modals/Event.vue:405 lms/lms/workspace/lms/lms.json
msgid "Evaluation" msgid "Evaluation"
msgstr "" msgstr ""
@@ -2481,7 +2505,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date." msgid "Evaluation end date cannot be less than the batch end date."
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:256 #: frontend/src/components/Modals/Event.vue:287
msgid "Evaluation saved successfully" msgid "Evaluation saved successfully"
msgstr "" msgstr ""
@@ -2589,7 +2613,7 @@ msgstr "ขยาย"
#. Label of the expected_output (Data) field in DocType 'LMS Test Case' #. Label of the expected_output (Data) field in DocType 'LMS Test Case'
#. Label of the expected_output (Data) field in DocType 'LMS Test Case #. Label of the expected_output (Data) field in DocType 'LMS Test Case
#. Submission' #. Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:127 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:129
#: lms/lms/doctype/lms_test_case/lms_test_case.json #: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Expected Output" msgid "Expected Output"
@@ -2602,7 +2626,7 @@ msgstr ""
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33 #: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:126 #: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date" msgid "Expiry Date"
msgstr "วันหมดอายุ" msgstr "วันหมดอายุ"
@@ -2629,7 +2653,7 @@ msgstr ""
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:366 #: frontend/src/components/Modals/Event.vue:397
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail" msgid "Fail"
@@ -2660,7 +2684,7 @@ msgstr ""
msgid "Failed to send email" msgid "Failed to send email"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:358 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:364
msgid "Failed to submit. Please try again. {0}" msgid "Failed to submit. Please try again. {0}"
msgstr "" msgstr ""
@@ -2773,7 +2797,7 @@ msgid "Friday"
msgstr "วันศุกร์" msgstr "วันศุกร์"
#. Label of the unavailable_from (Date) field in DocType 'Course Evaluator' #. Label of the unavailable_from (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:99 #: frontend/src/pages/ProfileEvaluator.vue:106
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "From" msgid "From"
msgstr "จาก" msgstr "จาก"
@@ -2785,6 +2809,7 @@ msgstr "จากวันที่"
#. Label of the full_name (Data) field in DocType 'Course Evaluator' #. Label of the full_name (Data) field in DocType 'Course Evaluator'
#. Label of the full_name (Data) field in DocType 'LMS Program Member' #. Label of the full_name (Data) field in DocType 'LMS Program Member'
#: frontend/src/pages/JobApplications.vue:278
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json #: lms/lms/doctype/lms_program_member/lms_program_member.json
#: lms/templates/signup-form.html:5 #: lms/templates/signup-form.html:5
@@ -3022,7 +3047,7 @@ msgstr ""
msgid "I am looking for a job" msgid "I am looking for a job"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:94 #: frontend/src/pages/ProfileEvaluator.vue:101
msgid "I am unavailable" msgid "I am unavailable"
msgstr "" msgstr ""
@@ -3108,7 +3133,7 @@ msgstr "ภาพ: สตรีมข้อมูลเสียหาย"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course' #. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:358 #: frontend/src/components/Modals/Event.vue:389
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
@@ -3164,7 +3189,7 @@ msgstr "อุตสาหกรรม"
#. Label of the input (Data) field in DocType 'LMS Test Case' #. Label of the input (Data) field in DocType 'LMS Test Case'
#. Label of the input (Data) field in DocType 'LMS Test Case Submission' #. Label of the input (Data) field in DocType 'LMS Test Case Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:113 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:115
#: lms/lms/doctype/lms_test_case/lms_test_case.json #: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Input" msgid "Input"
@@ -3276,7 +3301,7 @@ msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification' #. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate' #. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28 #: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:121 #: frontend/src/components/Modals/Event.vue:138
#: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date" msgid "Issue Date"
@@ -3361,8 +3386,8 @@ msgid "Job Title"
msgstr "" msgstr ""
#. Label of the jobs (Check) field in DocType 'LMS Settings' #. Label of the jobs (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/JobDetail.vue:10 frontend/src/pages/Jobs.vue:8 #: frontend/src/pages/JobApplications.vue:9 frontend/src/pages/JobDetail.vue:10
#: frontend/src/pages/Jobs.vue:212 #: frontend/src/pages/Jobs.vue:8 frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs" msgid "Jobs"
msgstr "" msgstr ""
@@ -3378,7 +3403,7 @@ msgstr ""
msgid "Join Call" msgid "Join Call"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:74 #: frontend/src/components/Modals/Event.vue:78
msgid "Join Meeting" msgid "Join Meeting"
msgstr "" msgstr ""
@@ -3886,7 +3911,7 @@ msgstr "เข้าสู่ระบบ"
msgid "Login to Frappe Cloud?" msgid "Login to Frappe Cloud?"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:63 #: frontend/src/pages/JobDetail.vue:74
msgid "Login to apply" msgid "Login to apply"
msgstr "" msgstr ""
@@ -4231,9 +4256,14 @@ msgid "Mentor Request Status Update Template"
msgstr "" msgstr ""
#: frontend/src/components/ContactUsEmail.vue:19 #: frontend/src/components/ContactUsEmail.vue:19
#: frontend/src/pages/JobApplications.vue:132
msgid "Message" msgid "Message"
msgstr "ข้อความ" msgstr "ข้อความ"
#: frontend/src/pages/JobApplications.vue:240
msgid "Message is required"
msgstr ""
#. Label of the meta_description (Small Text) field in DocType 'LMS Settings' #. Label of the meta_description (Small Text) field in DocType 'LMS Settings'
#: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303 #: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -4354,7 +4384,7 @@ msgstr ""
msgid "My availability" msgid "My availability"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:127 #: frontend/src/pages/ProfileEvaluator.vue:136
msgid "My calendar" msgid "My calendar"
msgstr "" msgstr ""
@@ -4393,7 +4423,7 @@ msgstr ""
msgid "New Job" msgid "New Job"
msgstr "" msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:27 #: lms/job/doctype/lms_job_application/lms_job_application.py:31
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "" msgstr ""
@@ -4821,7 +4851,7 @@ msgstr ""
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:362 #: frontend/src/components/Modals/Event.vue:393
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass" msgid "Pass"
@@ -4948,7 +4978,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' #. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:354 #: frontend/src/components/Modals/Event.vue:385
#: lms/lms/doctype/cohort_join_request/cohort_join_request.json #: lms/lms/doctype/cohort_join_request/cohort_join_request.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
@@ -4967,7 +4997,7 @@ msgstr ""
msgid "Percentage (e.g. 70%)" msgid "Percentage (e.g. 70%)"
msgstr "" msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:44 #: frontend/src/components/Modals/BatchStudentProgress.vue:46
msgid "Percentage/Status" msgid "Percentage/Status"
msgstr "" msgstr ""
@@ -5083,7 +5113,7 @@ msgstr ""
msgid "Please prepare well and be on time for the evaluations." msgid "Please prepare well and be on time for the evaluations."
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:135 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:139
msgid "Please run the code to execute the test cases." msgid "Please run the code to execute the test cases."
msgstr "" msgstr ""
@@ -5320,11 +5350,11 @@ msgstr ""
#: frontend/src/components/Settings/BadgeForm.vue:200 #: frontend/src/components/Settings/BadgeForm.vue:200
#: frontend/src/components/Settings/Badges.vue:205 #: frontend/src/components/Settings/Badges.vue:205
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:420 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:426
msgid "Programming Exercise Submission" msgid "Programming Exercise Submission"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:411 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:417
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298
msgid "Programming Exercise Submissions" msgid "Programming Exercise Submissions"
msgstr "" msgstr ""
@@ -5358,7 +5388,7 @@ msgstr ""
#. Label of the progress (Float) field in DocType 'LMS Enrollment' #. Label of the progress (Float) field in DocType 'LMS Enrollment'
#. Label of the progress (Int) field in DocType 'LMS Program Member' #. Label of the progress (Int) field in DocType 'LMS Program Member'
#: frontend/src/components/Modals/BatchStudentProgress.vue:94 #: frontend/src/components/Modals/BatchStudentProgress.vue:98
#: frontend/src/components/Modals/CourseProgressSummary.vue:224 #: frontend/src/components/Modals/CourseProgressSummary.vue:224
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json #: lms/lms/doctype/lms_enrollment/lms_enrollment.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json #: lms/lms/doctype/lms_program_member/lms_program_member.json
@@ -5404,7 +5434,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Course' #. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program' #. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51 #: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:108 #: frontend/src/components/Modals/Event.vue:122
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152 #: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100 #: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5572,7 +5602,7 @@ msgstr ""
#. Label of the rating (Data) field in DocType 'LMS Course' #. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review' #. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147 #: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:86 #: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/ReviewModal.vue:18 #: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
@@ -5659,6 +5689,7 @@ msgid "Remove Highlight"
msgstr "" msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:27 #: frontend/src/components/Modals/AnnouncementModal.vue:27
#: frontend/src/pages/JobApplications.vue:127
msgid "Reply To" msgid "Reply To"
msgstr "" msgstr ""
@@ -5818,8 +5849,8 @@ msgstr "วันเสาร์"
#: frontend/src/components/Controls/CodeEditor.vue:25 #: frontend/src/components/Controls/CodeEditor.vue:25
#: frontend/src/components/Modals/AssignmentForm.vue:59 #: frontend/src/components/Modals/AssignmentForm.vue:59
#: frontend/src/components/Modals/EmailTemplateModal.vue:12 #: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:101 #: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:129 #: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
@@ -5958,6 +5989,7 @@ msgid "Select an assignment"
msgstr "" msgstr ""
#: frontend/src/components/ContactUsEmail.vue:33 #: frontend/src/components/ContactUsEmail.vue:33
#: frontend/src/pages/JobApplications.vue:110
msgid "Send" msgid "Send"
msgstr "ส่ง" msgstr "ส่ง"
@@ -5965,6 +5997,14 @@ msgstr "ส่ง"
msgid "Send Confirmation Email" msgid "Send Confirmation Email"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:268
msgid "Send Email"
msgstr "ส่งอีเมล"
#: frontend/src/pages/JobApplications.vue:106
msgid "Send Email to {0}"
msgstr ""
#. Label of the send_calendar_invite_for_evaluations (Check) field in DocType #. Label of the send_calendar_invite_for_evaluations (Check) field in DocType
#. 'LMS Settings' #. 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -6125,11 +6165,11 @@ msgstr "ข้าม"
msgid "Slot Times are overlapping for some schedules." msgid "Slot Times are overlapping for some schedules."
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:201 #: frontend/src/pages/ProfileEvaluator.vue:218
msgid "Slot added successfully" msgid "Slot added successfully"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:240 #: frontend/src/pages/ProfileEvaluator.vue:257
msgid "Slot deleted successfully" msgid "Slot deleted successfully"
msgstr "" msgstr ""
@@ -6268,7 +6308,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission' #. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission' #. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:91 #: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Settings/Badges.vue:228 #: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19 #: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6339,10 +6379,12 @@ msgstr ""
#: frontend/src/components/ContactUsEmail.vue:13 #: frontend/src/components/ContactUsEmail.vue:13
#: frontend/src/components/Modals/AnnouncementModal.vue:20 #: frontend/src/components/Modals/AnnouncementModal.vue:20
#: frontend/src/components/Modals/EmailTemplateModal.vue:31 #: frontend/src/components/Modals/EmailTemplateModal.vue:31
#: frontend/src/pages/JobApplications.vue:121
msgid "Subject" msgid "Subject"
msgstr "หัวข้อ" msgstr "หัวข้อ"
#: frontend/src/components/Modals/AnnouncementModal.vue:94 #: frontend/src/components/Modals/AnnouncementModal.vue:94
#: frontend/src/pages/JobApplications.vue:237
msgid "Subject is required" msgid "Subject is required"
msgstr "" msgstr ""
@@ -6359,7 +6401,7 @@ msgstr ""
msgid "Submission by" msgid "Submission by"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:353 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:359
msgid "Submission saved!" msgid "Submission saved!"
msgstr "" msgstr ""
@@ -6399,7 +6441,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:97 #: frontend/src/components/Modals/Event.vue:106
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary" msgid "Summary"
msgstr "" msgstr ""
@@ -6504,7 +6546,7 @@ msgstr ""
#. Label of the template (Link) field in DocType 'Cohort Web Page' #. Label of the template (Link) field in DocType 'Cohort Web Page'
#. Label of the template (Link) field in DocType 'LMS Certificate' #. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43 #: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:112 #: frontend/src/components/Modals/Event.vue:127
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template" msgid "Template"
@@ -6545,7 +6587,7 @@ msgstr ""
msgid "Test this Exercise" msgid "Test this Exercise"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:92 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:93
msgid "Test {0}" msgid "Test {0}"
msgstr "" msgstr ""
@@ -6843,7 +6885,7 @@ msgid "Title is required"
msgstr "" msgstr ""
#. Label of the unavailable_to (Date) field in DocType 'Course Evaluator' #. Label of the unavailable_to (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:112 #: frontend/src/pages/ProfileEvaluator.vue:120
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "To" msgid "To"
msgstr "" msgstr ""
@@ -6956,7 +6998,7 @@ msgstr ""
msgid "Unavailability" msgid "Unavailability"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:259 #: frontend/src/pages/ProfileEvaluator.vue:276
msgid "Unavailability updated successfully" msgid "Unavailability updated successfully"
msgstr "" msgstr ""
@@ -7126,11 +7168,19 @@ msgstr ""
msgid "View" msgid "View"
msgstr "ดู" msgstr "ดู"
#: frontend/src/pages/JobDetail.vue:31
msgid "View Applications"
msgstr ""
#: frontend/src/components/CertificationLinks.vue:10 #: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67 #: frontend/src/components/Modals/Event.vue:67
msgid "View Certificate" msgid "View Certificate"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:262
msgid "View Resume"
msgstr ""
#: frontend/src/components/BatchFeedback.vue:56 #: frontend/src/components/BatchFeedback.vue:56
msgid "View all feedback" msgid "View all feedback"
msgstr "" msgstr ""
@@ -7149,7 +7199,7 @@ msgstr "การมองเห็น"
msgid "Visit Batch" msgid "Visit Batch"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:41 #: frontend/src/pages/JobDetail.vue:52
msgid "Visit Website" msgid "Visit Website"
msgstr "" msgstr ""
@@ -7358,7 +7408,7 @@ msgstr ""
msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session." msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session."
msgstr "" msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:22 #: lms/job/doctype/lms_job_application/lms_job_application.py:26
msgid "You have already applied for this job." msgid "You have already applied for this job."
msgstr "" msgstr ""
@@ -7374,7 +7424,7 @@ msgstr ""
msgid "You have already reviewed this course" msgid "You have already reviewed this course"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:57 #: frontend/src/pages/JobDetail.vue:68
msgid "You have applied" msgid "You have applied"
msgstr "" msgstr ""
@@ -7454,7 +7504,7 @@ msgstr ""
msgid "Your Account has been successfully created!" msgid "Your Account has been successfully created!"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:119 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:121
msgid "Your Output" msgid "Your Output"
msgstr "" msgstr ""
@@ -7462,7 +7512,7 @@ msgstr ""
msgid "Your batch {0} is starting tomorrow" msgid "Your batch {0} is starting tomorrow"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:134 #: frontend/src/pages/ProfileEvaluator.vue:143
msgid "Your calendar is set." msgid "Your calendar is set."
msgstr "" msgstr ""
@@ -7541,11 +7591,11 @@ msgstr "และ"
msgid "and then 'Add to Home Screen'" msgid "and then 'Add to Home Screen'"
msgstr "" msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114 #: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicant" msgid "applicant"
msgstr "" msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114 #: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicants" msgid "applicants"
msgstr "" msgstr ""

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2025-10-31 16:04+0000\n" "POT-Creation-Date: 2025-11-07 16:04+0000\n"
"PO-Revision-Date: 2025-11-02 19:07\n" "PO-Revision-Date: 2025-11-11 11:49\n"
"Last-Translator: jannat@frappe.io\n" "Last-Translator: jannat@frappe.io\n"
"Language-Team: Turkish\n" "Language-Team: Turkish\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -148,7 +148,7 @@ msgstr ""
#: frontend/src/pages/Programs/ProgramForm.vue:131 #: frontend/src/pages/Programs/ProgramForm.vue:131
#: frontend/src/pages/Programs/ProgramForm.vue:180 #: frontend/src/pages/Programs/ProgramForm.vue:180
msgid "Add" msgid "Add"
msgstr "Ekle" msgstr "Yeni"
#: frontend/src/components/CourseOutline.vue:18 #: frontend/src/components/CourseOutline.vue:18
#: frontend/src/components/CreateOutline.vue:18 #: frontend/src/components/CreateOutline.vue:18
@@ -176,7 +176,7 @@ msgstr ""
msgid "Add Row" msgid "Add Row"
msgstr "Satır Ekle" msgstr "Satır Ekle"
#: frontend/src/pages/ProfileEvaluator.vue:89 #: frontend/src/pages/ProfileEvaluator.vue:96
msgid "Add Slot" msgid "Add Slot"
msgstr "Yuva Ekle" msgstr "Yuva Ekle"
@@ -286,11 +286,11 @@ msgstr "Adres"
#: frontend/src/pages/Billing.vue:74 #: frontend/src/pages/Billing.vue:74
msgid "Address Line 1" msgid "Address Line 1"
msgstr "Adres Satırı 1" msgstr ""
#: frontend/src/pages/Billing.vue:78 #: frontend/src/pages/Billing.vue:78
msgid "Address Line 2" msgid "Address Line 2"
msgstr "Adres Satırı 2" msgstr ""
#. Option for the 'Role' (Select) field in DocType 'Cohort Staff' #. Option for the 'Role' (Select) field in DocType 'Cohort Staff'
#. Option for the 'Required Role' (Select) field in DocType 'Cohort Web Page' #. Option for the 'Required Role' (Select) field in DocType 'Cohort Web Page'
@@ -426,12 +426,25 @@ msgstr "Parti URLsi herhangi bir çevrimiçi platformda paylaşıldığında
msgid "Appears when the batch URL is shared on socials" msgid "Appears when the batch URL is shared on socials"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:24
msgid "Application"
msgstr "Başvuru"
#. Label of a field in the job-opportunity Web Form #. Label of a field in the job-opportunity Web Form
#: lms/job/web_form/job_opportunity/job_opportunity.json #: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Application Form Link" msgid "Application Form Link"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:51 #: frontend/src/pages/JobApplications.vue:14
#: frontend/src/pages/JobApplications.vue:25
msgid "Applications"
msgstr ""
#: frontend/src/pages/JobApplications.vue:290
msgid "Applied On"
msgstr "Uygulandı"
#: frontend/src/pages/JobDetail.vue:62
msgid "Apply" msgid "Apply"
msgstr "Uygula" msgstr "Uygula"
@@ -483,7 +496,7 @@ msgstr ""
#. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch' #. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the assessment (Table) field in DocType 'LMS Batch' #. Label of the assessment (Table) field in DocType 'LMS Batch'
#: frontend/src/components/Modals/AssessmentModal.vue:27 #: frontend/src/components/Modals/AssessmentModal.vue:27
#: frontend/src/components/Modals/BatchStudentProgress.vue:41 #: frontend/src/components/Modals/BatchStudentProgress.vue:43
#: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11 #: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11
msgid "Assessment" msgid "Assessment"
msgstr "Değerlendirme" msgstr "Değerlendirme"
@@ -569,7 +582,7 @@ msgstr ""
msgid "Assignment Title" msgid "Assignment Title"
msgstr "Ödev Başlığı" msgstr "Ödev Başlığı"
#: frontend/src/components/Modals/AssignmentForm.vue:125 #: frontend/src/components/Modals/AssignmentForm.vue:133
msgid "Assignment created successfully" msgid "Assignment created successfully"
msgstr "" msgstr ""
@@ -581,7 +594,7 @@ msgstr "{1} tarafından verilen {0} Dersi için ödev zaten mevcut."
msgid "Assignment submitted successfully" msgid "Assignment submitted successfully"
msgstr "" msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:138 #: frontend/src/components/Modals/AssignmentForm.vue:146
msgid "Assignment updated successfully" msgid "Assignment updated successfully"
msgstr "" msgstr ""
@@ -622,7 +635,7 @@ msgstr "Katılımcılar"
msgid "Attire Preference" msgid "Attire Preference"
msgstr "Giyim Tercihi" msgstr "Giyim Tercihi"
#: frontend/src/pages/ProfileEvaluator.vue:137 #: frontend/src/pages/ProfileEvaluator.vue:146
msgid "Authorize Google Calendar Access" msgid "Authorize Google Calendar Access"
msgstr "Google Takvim Erişimini Yetkilendirin" msgstr "Google Takvim Erişimini Yetkilendirin"
@@ -637,7 +650,7 @@ msgstr "Otomatik Atama"
msgid "Auto Recording" msgid "Auto Recording"
msgstr "Otomatik Kayıt" msgstr "Otomatik Kayıt"
#: frontend/src/pages/ProfileEvaluator.vue:224 #: frontend/src/pages/ProfileEvaluator.vue:241
msgid "Availability updated successfully" msgid "Availability updated successfully"
msgstr "" msgstr ""
@@ -768,6 +781,7 @@ msgstr ""
#. Name of a role #. Name of a role
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -886,7 +900,7 @@ msgstr "Hakkında"
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json #: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
msgid "Blue" msgid "Blue"
msgstr "Mavi" msgstr ""
#. Label of the body (Markdown Editor) field in DocType 'Course Lesson' #. Label of the body (Markdown Editor) field in DocType 'Course Lesson'
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
@@ -998,7 +1012,7 @@ msgstr "Sertifika Bağlantısı"
msgid "Certificate of Completion" msgid "Certificate of Completion"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:317 #: frontend/src/components/Modals/Event.vue:348
msgid "Certificate saved successfully" msgid "Certificate saved successfully"
msgstr "" msgstr ""
@@ -1018,7 +1032,7 @@ msgstr ""
#. Label of a Card Break in the LMS Workspace #. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:626 #: frontend/src/components/AppSidebar.vue:626
#: frontend/src/components/Modals/Event.vue:381 #: frontend/src/components/Modals/Event.vue:412
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10 #: frontend/src/pages/CourseCertification.vue:10
#: frontend/src/pages/CourseCertification.vue:135 #: frontend/src/pages/CourseCertification.vue:135
@@ -1168,7 +1182,7 @@ msgstr "Bir cevap seçin"
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "City" msgid "City"
msgstr "Şehir" msgstr ""
#: lms/templates/emails/live_class_reminder.html:10 #: lms/templates/emails/live_class_reminder.html:10
msgid "Class:" msgid "Class:"
@@ -1214,7 +1228,7 @@ msgstr "Kapat"
#: lms/job/web_form/job_opportunity/job_opportunity.json #: lms/job/web_form/job_opportunity/job_opportunity.json
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
msgid "Closed" msgid "Closed"
msgstr "Kapandı" msgstr ""
#. Option for the 'Auto Recording' (Select) field in DocType 'LMS Live Class' #. Option for the 'Auto Recording' (Select) field in DocType 'LMS Live Class'
#: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/lms_live_class/lms_live_class.json
@@ -1361,7 +1375,7 @@ msgstr "Şirket Logosu"
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
#: lms/job/web_form/job_opportunity/job_opportunity.json #: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Company Name" msgid "Company Name"
msgstr "Şirket Adı" msgstr ""
#. Label of the company_type (Select) field in DocType 'User' #. Label of the company_type (Select) field in DocType 'User'
#: lms/fixtures/custom_field.json #: lms/fixtures/custom_field.json
@@ -1640,6 +1654,7 @@ msgstr ""
#: lms/lms/doctype/course_chapter/course_chapter.json #: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json #: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
@@ -1757,7 +1772,7 @@ msgstr "Kurs {0} bu gruba zaten eklenmiştir."
#: frontend/src/components/BatchCourses.vue:5 #: frontend/src/components/BatchCourses.vue:5
#: frontend/src/components/BatchOverlay.vue:37 #: frontend/src/components/BatchOverlay.vue:37
#: frontend/src/components/BatchStudents.vue:25 #: frontend/src/components/BatchStudents.vue:25
#: frontend/src/components/Modals/BatchStudentProgress.vue:91 #: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127 #: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340 #: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340
@@ -1932,7 +1947,7 @@ msgstr "Açık Mavi"
#. Label of the show_dashboard (Check) field in DocType 'LMS Settings' #. Label of the show_dashboard (Check) field in DocType 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Dashboard" msgid "Dashboard"
msgstr "Gösterge Paneli" msgstr ""
#. Label of the date (Date) field in DocType 'LMS Batch Timetable' #. Label of the date (Date) field in DocType 'LMS Batch Timetable'
#. Label of the date (Date) field in DocType 'LMS Certificate Evaluation' #. Label of the date (Date) field in DocType 'LMS Certificate Evaluation'
@@ -2098,7 +2113,7 @@ msgstr ""
#: frontend/src/components/Settings/ZoomSettings.vue:66 #: frontend/src/components/Settings/ZoomSettings.vue:66
#: lms/job/doctype/job_opportunity/job_opportunity.json #: lms/job/doctype/job_opportunity/job_opportunity.json
msgid "Disabled" msgid "Disabled"
msgstr "Kapalı" msgstr "Devre dışı"
#: frontend/src/components/DiscussionReplies.vue:57 #: frontend/src/components/DiscussionReplies.vue:57
#: lms/lms/widgets/NoPreviewModal.html:25 lms/templates/reviews.html:159 #: lms/lms/widgets/NoPreviewModal.html:25 lms/templates/reviews.html:159
@@ -2143,7 +2158,7 @@ msgstr "Bu soru için yinelenen seçenekler bulundu."
#: lms/lms/doctype/lms_live_class/lms_live_class.json #: lms/lms/doctype/lms_live_class/lms_live_class.json
#: lms/lms/doctype/lms_live_class_participant/lms_live_class_participant.json #: lms/lms/doctype/lms_live_class_participant/lms_live_class_participant.json
msgid "Duration" msgid "Duration"
msgstr "Süre" msgstr ""
#. Label of the duration (Data) field in DocType 'LMS Quiz' #. Label of the duration (Data) field in DocType 'LMS Quiz'
#: frontend/src/pages/QuizForm.vue:67 lms/lms/doctype/lms_quiz/lms_quiz.json #: frontend/src/pages/QuizForm.vue:67 lms/lms/doctype/lms_quiz/lms_quiz.json
@@ -2169,7 +2184,7 @@ msgstr "E-Posta"
#: frontend/src/components/DiscussionReplies.vue:35 #: frontend/src/components/DiscussionReplies.vue:35
#: frontend/src/components/Modals/ChapterModal.vue:9 #: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/components/Settings/Badges.vue:156 #: frontend/src/components/Settings/Badges.vue:156
#: frontend/src/pages/JobDetail.vue:34 frontend/src/pages/Lesson.vue:42 #: frontend/src/pages/JobDetail.vue:45 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36 #: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36
msgid "Edit" msgid "Edit"
msgstr "Düzenle" msgstr "Düzenle"
@@ -2236,7 +2251,7 @@ msgstr "Eğitim Geçmişi"
#: frontend/src/components/Settings/Evaluators.vue:105 #: frontend/src/components/Settings/Evaluators.vue:105
#: frontend/src/components/Settings/Members.vue:103 #: frontend/src/components/Settings/Members.vue:103
#: lms/templates/signup-form.html:10 #: frontend/src/pages/JobApplications.vue:284 lms/templates/signup-form.html:10
msgid "Email" msgid "Email"
msgstr "E-posta" msgstr "E-posta"
@@ -2272,6 +2287,7 @@ msgid "Email Templates deleted successfully"
msgstr "" msgstr ""
#: frontend/src/components/ContactUsEmail.vue:57 #: frontend/src/components/ContactUsEmail.vue:57
#: frontend/src/pages/JobApplications.vue:244
msgid "Email sent successfully" msgid "Email sent successfully"
msgstr "E-posta başarıyla gönderildi" msgstr "E-posta başarıyla gönderildi"
@@ -2414,6 +2430,14 @@ msgstr "Değerlendirmeler için takvim davetleri göndermek üzere Google Ayarla
msgid "Enter a URL" msgid "Enter a URL"
msgstr "Bir URL girin" msgstr "Bir URL girin"
#: frontend/src/pages/JobApplications.vue:122
msgid "Enter email subject"
msgstr ""
#: frontend/src/pages/JobApplications.vue:128
msgid "Enter reply to email"
msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:169 #: frontend/src/components/Modals/ZoomAccountModal.vue:169
msgid "Error creating Zoom Account" msgid "Error creating Zoom Account"
msgstr "" msgstr ""
@@ -2453,7 +2477,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace #. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:374 lms/lms/workspace/lms/lms.json #: frontend/src/components/Modals/Event.vue:405 lms/lms/workspace/lms/lms.json
msgid "Evaluation" msgid "Evaluation"
msgstr "Değerlendirme" msgstr "Değerlendirme"
@@ -2478,7 +2502,7 @@ msgstr "Değerlendirme Talebi"
msgid "Evaluation end date cannot be less than the batch end date." msgid "Evaluation end date cannot be less than the batch end date."
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:256 #: frontend/src/components/Modals/Event.vue:287
msgid "Evaluation saved successfully" msgid "Evaluation saved successfully"
msgstr "" msgstr ""
@@ -2586,7 +2610,7 @@ msgstr "Genişlet"
#. Label of the expected_output (Data) field in DocType 'LMS Test Case' #. Label of the expected_output (Data) field in DocType 'LMS Test Case'
#. Label of the expected_output (Data) field in DocType 'LMS Test Case #. Label of the expected_output (Data) field in DocType 'LMS Test Case
#. Submission' #. Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:127 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:129
#: lms/lms/doctype/lms_test_case/lms_test_case.json #: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Expected Output" msgid "Expected Output"
@@ -2599,7 +2623,7 @@ msgstr "Bitiş Tarihi"
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33 #: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:126 #: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date" msgid "Expiry Date"
msgstr "Son Kullanım Tarihi" msgstr "Son Kullanım Tarihi"
@@ -2626,7 +2650,7 @@ msgstr "Daha Fazlasını Keşfedin"
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:366 #: frontend/src/components/Modals/Event.vue:397
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail" msgid "Fail"
@@ -2639,7 +2663,7 @@ msgstr "Başarısız"
#: lms/lms/doctype/lms_programming_exercise_submission/lms_programming_exercise_submission.json #: lms/lms/doctype/lms_programming_exercise_submission/lms_programming_exercise_submission.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Failed" msgid "Failed"
msgstr "Başarısız" msgstr ""
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:136 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:136
msgid "Failed to create badge assignment: " msgid "Failed to create badge assignment: "
@@ -2657,7 +2681,7 @@ msgstr ""
msgid "Failed to send email" msgid "Failed to send email"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:358 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:364
msgid "Failed to submit. Please try again. {0}" msgid "Failed to submit. Please try again. {0}"
msgstr "" msgstr ""
@@ -2770,18 +2794,19 @@ msgid "Friday"
msgstr "Cuma" msgstr "Cuma"
#. Label of the unavailable_from (Date) field in DocType 'Course Evaluator' #. Label of the unavailable_from (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:99 #: frontend/src/pages/ProfileEvaluator.vue:106
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "From" msgid "From"
msgstr "Gönderen" msgstr "itibaren"
#. Label of the from_date (Date) field in DocType 'Work Experience' #. Label of the from_date (Date) field in DocType 'Work Experience'
#: lms/lms/doctype/work_experience/work_experience.json #: lms/lms/doctype/work_experience/work_experience.json
msgid "From Date" msgid "From Date"
msgstr "Başlangıç Tarihi" msgstr "Başlama Tarihi"
#. Label of the full_name (Data) field in DocType 'Course Evaluator' #. Label of the full_name (Data) field in DocType 'Course Evaluator'
#. Label of the full_name (Data) field in DocType 'LMS Program Member' #. Label of the full_name (Data) field in DocType 'LMS Program Member'
#: frontend/src/pages/JobApplications.vue:278
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json #: lms/lms/doctype/lms_program_member/lms_program_member.json
#: lms/templates/signup-form.html:5 #: lms/templates/signup-form.html:5
@@ -2910,7 +2935,7 @@ msgstr "Gri"
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json #: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
msgid "Green" msgid "Green"
msgstr "Yeşil" msgstr ""
#: lms/templates/signup-form.html:56 #: lms/templates/signup-form.html:56
msgid "Have an account? Login" msgid "Have an account? Login"
@@ -3019,7 +3044,7 @@ msgstr "{0} kursu için sertifikanızı başarıyla kazandığınızı size duyu
msgid "I am looking for a job" msgid "I am looking for a job"
msgstr "Bir iş arıyorum" msgstr "Bir iş arıyorum"
#: frontend/src/pages/ProfileEvaluator.vue:94 #: frontend/src/pages/ProfileEvaluator.vue:101
msgid "I am unavailable" msgid "I am unavailable"
msgstr "Müsait değilim" msgstr "Müsait değilim"
@@ -3105,12 +3130,12 @@ msgstr "Resim: Bozuk Veri Akışı"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course' #. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:358 #: frontend/src/components/Modals/Event.vue:389
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
msgid "In Progress" msgid "In Progress"
msgstr "İşlemde" msgstr "Devam ediyor"
#. Option for the 'Status' (Select) field in DocType 'LMS Batch Old' #. Option for the 'Status' (Select) field in DocType 'LMS Batch Old'
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
@@ -3161,7 +3186,7 @@ msgstr "Endüstri"
#. Label of the input (Data) field in DocType 'LMS Test Case' #. Label of the input (Data) field in DocType 'LMS Test Case'
#. Label of the input (Data) field in DocType 'LMS Test Case Submission' #. Label of the input (Data) field in DocType 'LMS Test Case Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:113 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:115
#: lms/lms/doctype/lms_test_case/lms_test_case.json #: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Input" msgid "Input"
@@ -3273,7 +3298,7 @@ msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification' #. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate' #. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28 #: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:121 #: frontend/src/components/Modals/Event.vue:138
#: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date" msgid "Issue Date"
@@ -3358,8 +3383,8 @@ msgid "Job Title"
msgstr "İş İlanı Başlığı" msgstr "İş İlanı Başlığı"
#. Label of the jobs (Check) field in DocType 'LMS Settings' #. Label of the jobs (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/JobDetail.vue:10 frontend/src/pages/Jobs.vue:8 #: frontend/src/pages/JobApplications.vue:9 frontend/src/pages/JobDetail.vue:10
#: frontend/src/pages/Jobs.vue:212 #: frontend/src/pages/Jobs.vue:8 frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs" msgid "Jobs"
msgstr "İşler" msgstr "İşler"
@@ -3375,7 +3400,7 @@ msgstr "Katıl"
msgid "Join Call" msgid "Join Call"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:74 #: frontend/src/components/Modals/Event.vue:78
msgid "Join Meeting" msgid "Join Meeting"
msgstr "Görüşmeye Katıl" msgstr "Görüşmeye Katıl"
@@ -3883,7 +3908,7 @@ msgstr "Giriş"
msgid "Login to Frappe Cloud?" msgid "Login to Frappe Cloud?"
msgstr "Frappe Cloud'a Giriş Yapın?" msgstr "Frappe Cloud'a Giriş Yapın?"
#: frontend/src/pages/JobDetail.vue:63 #: frontend/src/pages/JobDetail.vue:74
msgid "Login to apply" msgid "Login to apply"
msgstr "Başvurmak için giriş yapın" msgstr "Başvurmak için giriş yapın"
@@ -4228,9 +4253,14 @@ msgid "Mentor Request Status Update Template"
msgstr "Mentor Talebi Durum Güncelleme Şablonu" msgstr "Mentor Talebi Durum Güncelleme Şablonu"
#: frontend/src/components/ContactUsEmail.vue:19 #: frontend/src/components/ContactUsEmail.vue:19
#: frontend/src/pages/JobApplications.vue:132
msgid "Message" msgid "Message"
msgstr "Mesaj" msgstr "Mesaj"
#: frontend/src/pages/JobApplications.vue:240
msgid "Message is required"
msgstr ""
#. Label of the meta_description (Small Text) field in DocType 'LMS Settings' #. Label of the meta_description (Small Text) field in DocType 'LMS Settings'
#: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303 #: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -4351,7 +4381,7 @@ msgstr ""
msgid "My availability" msgid "My availability"
msgstr "Müsaitliğim" msgstr "Müsaitliğim"
#: frontend/src/pages/ProfileEvaluator.vue:127 #: frontend/src/pages/ProfileEvaluator.vue:136
msgid "My calendar" msgid "My calendar"
msgstr "Takvimim" msgstr "Takvimim"
@@ -4390,7 +4420,7 @@ msgstr ""
msgid "New Job" msgid "New Job"
msgstr "Yeni İş" msgstr "Yeni İş"
#: lms/job/doctype/lms_job_application/lms_job_application.py:27 #: lms/job/doctype/lms_job_application/lms_job_application.py:31
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "Yeni İş Başvurusu" msgstr "Yeni İş Başvurusu"
@@ -4544,7 +4574,7 @@ msgstr "{0} Yok"
#: lms/lms/user.py:29 #: lms/lms/user.py:29
msgid "Not Allowed" msgid "Not Allowed"
msgstr "İzin Verilmiyor" msgstr "İzin verilmedi"
#. Option for the 'Status' (Select) field in DocType 'LMS Assignment #. Option for the 'Status' (Select) field in DocType 'LMS Assignment
#. Submission' #. Submission'
@@ -4568,7 +4598,7 @@ msgstr "Not Verilmedi"
#: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:164 #: frontend/src/components/NoPermission.vue:7 frontend/src/pages/Batch.vue:164
msgid "Not Permitted" msgid "Not Permitted"
msgstr "İzin Verilmedi" msgstr "İzin yok"
#: frontend/src/components/Assignment.vue:36 #: frontend/src/components/Assignment.vue:36
#: frontend/src/components/Settings/BrandSettings.vue:10 #: frontend/src/components/Settings/BrandSettings.vue:10
@@ -4818,7 +4848,7 @@ msgstr "Kısmen Tamamlandı"
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:362 #: frontend/src/components/Modals/Event.vue:393
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass" msgid "Pass"
@@ -4945,12 +4975,12 @@ msgstr "Ödeme uygulaması yüklü değil"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' #. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:354 #: frontend/src/components/Modals/Event.vue:385
#: lms/lms/doctype/cohort_join_request/cohort_join_request.json #: lms/lms/doctype/cohort_join_request/cohort_join_request.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
msgid "Pending" msgid "Pending"
msgstr "Bekliyor" msgstr ""
#. Label of the percentage (Int) field in DocType 'LMS Quiz Submission' #. Label of the percentage (Int) field in DocType 'LMS Quiz Submission'
#: frontend/src/pages/QuizSubmission.vue:44 #: frontend/src/pages/QuizSubmission.vue:44
@@ -4964,7 +4994,7 @@ msgstr "Yüzde"
msgid "Percentage (e.g. 70%)" msgid "Percentage (e.g. 70%)"
msgstr "Yüzde (örn. %70)" msgstr "Yüzde (örn. %70)"
#: frontend/src/components/Modals/BatchStudentProgress.vue:44 #: frontend/src/components/Modals/BatchStudentProgress.vue:46
msgid "Percentage/Status" msgid "Percentage/Status"
msgstr "" msgstr ""
@@ -5080,7 +5110,7 @@ msgstr ""
msgid "Please prepare well and be on time for the evaluations." msgid "Please prepare well and be on time for the evaluations."
msgstr "Lütfen iyi hazırlanın ve değerlendirmelere zamanında katılın." msgstr "Lütfen iyi hazırlanın ve değerlendirmelere zamanında katılın."
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:135 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:139
msgid "Please run the code to execute the test cases." msgid "Please run the code to execute the test cases."
msgstr "" msgstr ""
@@ -5172,7 +5202,7 @@ msgstr "Gönder"
#: frontend/src/pages/Billing.vue:95 #: frontend/src/pages/Billing.vue:95
msgid "Postal Code" msgid "Postal Code"
msgstr "Posta Kodu" msgstr ""
#: frontend/src/components/AppSidebar.vue:125 #: frontend/src/components/AppSidebar.vue:125
msgid "Powered by Learning" msgid "Powered by Learning"
@@ -5317,11 +5347,11 @@ msgstr ""
#: frontend/src/components/Settings/BadgeForm.vue:200 #: frontend/src/components/Settings/BadgeForm.vue:200
#: frontend/src/components/Settings/Badges.vue:205 #: frontend/src/components/Settings/Badges.vue:205
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:420 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:426
msgid "Programming Exercise Submission" msgid "Programming Exercise Submission"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:411 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:417
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298
msgid "Programming Exercise Submissions" msgid "Programming Exercise Submissions"
msgstr "" msgstr ""
@@ -5355,12 +5385,12 @@ msgstr ""
#. Label of the progress (Float) field in DocType 'LMS Enrollment' #. Label of the progress (Float) field in DocType 'LMS Enrollment'
#. Label of the progress (Int) field in DocType 'LMS Program Member' #. Label of the progress (Int) field in DocType 'LMS Program Member'
#: frontend/src/components/Modals/BatchStudentProgress.vue:94 #: frontend/src/components/Modals/BatchStudentProgress.vue:98
#: frontend/src/components/Modals/CourseProgressSummary.vue:224 #: frontend/src/components/Modals/CourseProgressSummary.vue:224
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json #: lms/lms/doctype/lms_enrollment/lms_enrollment.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json #: lms/lms/doctype/lms_program_member/lms_program_member.json
msgid "Progress" msgid "Progress"
msgstr "İlerleme" msgstr ""
#: frontend/src/pages/Programs/ProgramProgressSummary.vue:131 #: frontend/src/pages/Programs/ProgramProgressSummary.vue:131
#: lms/lms/report/course_progress_summary/course_progress_summary.py:77 #: lms/lms/report/course_progress_summary/course_progress_summary.py:77
@@ -5401,7 +5431,7 @@ msgstr "Katılımcı Sayfasında Yayınla"
#. Label of the published (Check) field in DocType 'LMS Course' #. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program' #. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51 #: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:108 #: frontend/src/components/Modals/Event.vue:122
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152 #: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100 #: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5569,7 +5599,7 @@ msgstr ""
#. Label of the rating (Data) field in DocType 'LMS Course' #. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review' #. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147 #: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:86 #: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/ReviewModal.vue:18 #: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
@@ -5592,7 +5622,7 @@ msgstr "Hazır"
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json #: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
msgid "Red" msgid "Red"
msgstr "Kırmızı" msgstr ""
#. Label of the reference_docname (Dynamic Link) field in DocType 'LMS Batch #. Label of the reference_docname (Dynamic Link) field in DocType 'LMS Batch
#. Timetable' #. Timetable'
@@ -5611,7 +5641,7 @@ msgstr "Referans DocType"
#. Label of the reference_doctype (Link) field in DocType 'LMS Badge' #. Label of the reference_doctype (Link) field in DocType 'LMS Badge'
#: lms/lms/doctype/lms_badge/lms_badge.json #: lms/lms/doctype/lms_badge/lms_badge.json
msgid "Reference Document Type" msgid "Reference Document Type"
msgstr "Referans Belge Türü" msgstr ""
#: lms/templates/emails/community_course_membership.html:17 #: lms/templates/emails/community_course_membership.html:17
msgid "Regards" msgid "Regards"
@@ -5656,6 +5686,7 @@ msgid "Remove Highlight"
msgstr "" msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:27 #: frontend/src/components/Modals/AnnouncementModal.vue:27
#: frontend/src/pages/JobApplications.vue:127
msgid "Reply To" msgid "Reply To"
msgstr "Yanıtla" msgstr "Yanıtla"
@@ -5815,8 +5846,8 @@ msgstr "Cumartesi"
#: frontend/src/components/Controls/CodeEditor.vue:25 #: frontend/src/components/Controls/CodeEditor.vue:25
#: frontend/src/components/Modals/AssignmentForm.vue:59 #: frontend/src/components/Modals/AssignmentForm.vue:59
#: frontend/src/components/Modals/EmailTemplateModal.vue:12 #: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:101 #: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:129 #: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
@@ -5874,7 +5905,7 @@ msgstr ""
#: frontend/src/components/Settings/Members.vue:25 #: frontend/src/components/Settings/Members.vue:25
#: frontend/src/pages/Jobs.vue:41 #: frontend/src/pages/Jobs.vue:41
msgid "Search" msgid "Search"
msgstr "Arama" msgstr "arama"
#: frontend/src/components/Modals/CourseProgressSummary.vue:17 #: frontend/src/components/Modals/CourseProgressSummary.vue:17
#: frontend/src/components/Modals/VideoStatistics.vue:20 #: frontend/src/components/Modals/VideoStatistics.vue:20
@@ -5955,6 +5986,7 @@ msgid "Select an assignment"
msgstr "" msgstr ""
#: frontend/src/components/ContactUsEmail.vue:33 #: frontend/src/components/ContactUsEmail.vue:33
#: frontend/src/pages/JobApplications.vue:110
msgid "Send" msgid "Send"
msgstr "Gönder" msgstr "Gönder"
@@ -5962,6 +5994,14 @@ msgstr "Gönder"
msgid "Send Confirmation Email" msgid "Send Confirmation Email"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:268
msgid "Send Email"
msgstr "E-Posta Gönder"
#: frontend/src/pages/JobApplications.vue:106
msgid "Send Email to {0}"
msgstr ""
#. Label of the send_calendar_invite_for_evaluations (Check) field in DocType #. Label of the send_calendar_invite_for_evaluations (Check) field in DocType
#. 'LMS Settings' #. 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -6122,11 +6162,11 @@ msgstr "Geç"
msgid "Slot Times are overlapping for some schedules." msgid "Slot Times are overlapping for some schedules."
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:201 #: frontend/src/pages/ProfileEvaluator.vue:218
msgid "Slot added successfully" msgid "Slot added successfully"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:240 #: frontend/src/pages/ProfileEvaluator.vue:257
msgid "Slot deleted successfully" msgid "Slot deleted successfully"
msgstr "" msgstr ""
@@ -6137,7 +6177,7 @@ msgstr ""
#: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json #: lms/lms/doctype/cohort_subgroup/cohort_subgroup.json
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json
msgid "Slug" msgid "Slug"
msgstr "Kısaltma" msgstr ""
#: frontend/src/components/BatchCard.vue:25 #: frontend/src/components/BatchCard.vue:25
#: frontend/src/components/BatchOverlay.vue:24 #: frontend/src/components/BatchOverlay.vue:24
@@ -6265,7 +6305,7 @@ msgstr "İstatistik"
#. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission' #. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission' #. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:91 #: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Settings/Badges.vue:228 #: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19 #: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6336,10 +6376,12 @@ msgstr "Alt Grup"
#: frontend/src/components/ContactUsEmail.vue:13 #: frontend/src/components/ContactUsEmail.vue:13
#: frontend/src/components/Modals/AnnouncementModal.vue:20 #: frontend/src/components/Modals/AnnouncementModal.vue:20
#: frontend/src/components/Modals/EmailTemplateModal.vue:31 #: frontend/src/components/Modals/EmailTemplateModal.vue:31
#: frontend/src/pages/JobApplications.vue:121
msgid "Subject" msgid "Subject"
msgstr "Konu" msgstr "Konu"
#: frontend/src/components/Modals/AnnouncementModal.vue:94 #: frontend/src/components/Modals/AnnouncementModal.vue:94
#: frontend/src/pages/JobApplications.vue:237
msgid "Subject is required" msgid "Subject is required"
msgstr "Konu gereklidir" msgstr "Konu gereklidir"
@@ -6356,7 +6398,7 @@ msgstr ""
msgid "Submission by" msgid "Submission by"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:353 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:359
msgid "Submission saved!" msgid "Submission saved!"
msgstr "" msgstr ""
@@ -6396,7 +6438,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:97 #: frontend/src/components/Modals/Event.vue:106
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary" msgid "Summary"
msgstr "Özet" msgstr "Özet"
@@ -6501,11 +6543,11 @@ msgstr "Takım Çalışması"
#. Label of the template (Link) field in DocType 'Cohort Web Page' #. Label of the template (Link) field in DocType 'Cohort Web Page'
#. Label of the template (Link) field in DocType 'LMS Certificate' #. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43 #: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:112 #: frontend/src/components/Modals/Event.vue:127
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template" msgid "Template"
msgstr "Şablon" msgstr ""
#: lms/lms/user.py:40 #: lms/lms/user.py:40
msgid "Temporarily Disabled" msgid "Temporarily Disabled"
@@ -6542,7 +6584,7 @@ msgstr "Test Sonuçları"
msgid "Test this Exercise" msgid "Test this Exercise"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:92 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:93
msgid "Test {0}" msgid "Test {0}"
msgstr "" msgstr ""
@@ -6840,10 +6882,10 @@ msgid "Title is required"
msgstr "" msgstr ""
#. Label of the unavailable_to (Date) field in DocType 'Course Evaluator' #. Label of the unavailable_to (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:112 #: frontend/src/pages/ProfileEvaluator.vue:120
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "To" msgid "To"
msgstr "Alıcı" msgstr "Kime"
#. Label of the to_date (Date) field in DocType 'Work Experience' #. Label of the to_date (Date) field in DocType 'Work Experience'
#: lms/lms/doctype/work_experience/work_experience.json #: lms/lms/doctype/work_experience/work_experience.json
@@ -6953,7 +6995,7 @@ msgstr ""
msgid "Unavailability" msgid "Unavailability"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:259 #: frontend/src/pages/ProfileEvaluator.vue:276
msgid "Unavailability updated successfully" msgid "Unavailability updated successfully"
msgstr "" msgstr ""
@@ -7108,7 +7150,7 @@ msgstr "Değer"
#. Option for the 'Event' (Select) field in DocType 'LMS Badge' #. Option for the 'Event' (Select) field in DocType 'LMS Badge'
#: lms/lms/doctype/lms_badge/lms_badge.json #: lms/lms/doctype/lms_badge/lms_badge.json
msgid "Value Change" msgid "Value Change"
msgstr "Değer Değişimi" msgstr ""
#. Label of the video_link (Data) field in DocType 'LMS Course' #. Label of the video_link (Data) field in DocType 'LMS Course'
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
@@ -7123,11 +7165,19 @@ msgstr ""
msgid "View" msgid "View"
msgstr "Göster" msgstr "Göster"
#: frontend/src/pages/JobDetail.vue:31
msgid "View Applications"
msgstr ""
#: frontend/src/components/CertificationLinks.vue:10 #: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67 #: frontend/src/components/Modals/Event.vue:67
msgid "View Certificate" msgid "View Certificate"
msgstr "Sertifikayı Görüntüle" msgstr "Sertifikayı Görüntüle"
#: frontend/src/pages/JobApplications.vue:262
msgid "View Resume"
msgstr ""
#: frontend/src/components/BatchFeedback.vue:56 #: frontend/src/components/BatchFeedback.vue:56
msgid "View all feedback" msgid "View all feedback"
msgstr "" msgstr ""
@@ -7146,7 +7196,7 @@ msgstr "Görünürlülük"
msgid "Visit Batch" msgid "Visit Batch"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:41 #: frontend/src/pages/JobDetail.vue:52
msgid "Visit Website" msgid "Visit Website"
msgstr "" msgstr ""
@@ -7355,7 +7405,7 @@ msgstr "{0}% doğru cevap verdiniz ve {2} üzerinden {1} puan aldınız"
msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session." msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session."
msgstr "" msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:22 #: lms/job/doctype/lms_job_application/lms_job_application.py:26
msgid "You have already applied for this job." msgid "You have already applied for this job."
msgstr "Bu iş için zaten başvurdunuz." msgstr "Bu iş için zaten başvurdunuz."
@@ -7371,7 +7421,7 @@ msgstr ""
msgid "You have already reviewed this course" msgid "You have already reviewed this course"
msgstr "Bu kursa zaten yorum eklediniz" msgstr "Bu kursa zaten yorum eklediniz"
#: frontend/src/pages/JobDetail.vue:57 #: frontend/src/pages/JobDetail.vue:68
msgid "You have applied" msgid "You have applied"
msgstr "" msgstr ""
@@ -7451,7 +7501,7 @@ msgstr "YouTube Videosu dersin en üstünde görünecektir."
msgid "Your Account has been successfully created!" msgid "Your Account has been successfully created!"
msgstr "Hesabınız başarıyla oluşturuldu!" msgstr "Hesabınız başarıyla oluşturuldu!"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:119 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:121
msgid "Your Output" msgid "Your Output"
msgstr "" msgstr ""
@@ -7459,7 +7509,7 @@ msgstr ""
msgid "Your batch {0} is starting tomorrow" msgid "Your batch {0} is starting tomorrow"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:134 #: frontend/src/pages/ProfileEvaluator.vue:143
msgid "Your calendar is set." msgid "Your calendar is set."
msgstr "Takviminiz hazır." msgstr "Takviminiz hazır."
@@ -7538,11 +7588,11 @@ msgstr "ve"
msgid "and then 'Add to Home Screen'" msgid "and then 'Add to Home Screen'"
msgstr "" msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114 #: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicant" msgid "applicant"
msgstr "" msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114 #: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicants" msgid "applicants"
msgstr "" msgstr ""

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2025-10-31 16:04+0000\n" "POT-Creation-Date: 2025-11-07 16:04+0000\n"
"PO-Revision-Date: 2025-11-02 19:07\n" "PO-Revision-Date: 2025-11-11 11:49\n"
"Last-Translator: jannat@frappe.io\n" "Last-Translator: jannat@frappe.io\n"
"Language-Team: Vietnamese\n" "Language-Team: Vietnamese\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -176,7 +176,7 @@ msgstr ""
msgid "Add Row" msgid "Add Row"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:89 #: frontend/src/pages/ProfileEvaluator.vue:96
msgid "Add Slot" msgid "Add Slot"
msgstr "" msgstr ""
@@ -426,12 +426,25 @@ msgstr ""
msgid "Appears when the batch URL is shared on socials" msgid "Appears when the batch URL is shared on socials"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:24
msgid "Application"
msgstr ""
#. Label of a field in the job-opportunity Web Form #. Label of a field in the job-opportunity Web Form
#: lms/job/web_form/job_opportunity/job_opportunity.json #: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Application Form Link" msgid "Application Form Link"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:51 #: frontend/src/pages/JobApplications.vue:14
#: frontend/src/pages/JobApplications.vue:25
msgid "Applications"
msgstr ""
#: frontend/src/pages/JobApplications.vue:290
msgid "Applied On"
msgstr "Áp Dụng Trên"
#: frontend/src/pages/JobDetail.vue:62
msgid "Apply" msgid "Apply"
msgstr "" msgstr ""
@@ -483,7 +496,7 @@ msgstr ""
#. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch' #. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the assessment (Table) field in DocType 'LMS Batch' #. Label of the assessment (Table) field in DocType 'LMS Batch'
#: frontend/src/components/Modals/AssessmentModal.vue:27 #: frontend/src/components/Modals/AssessmentModal.vue:27
#: frontend/src/components/Modals/BatchStudentProgress.vue:41 #: frontend/src/components/Modals/BatchStudentProgress.vue:43
#: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11 #: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11
msgid "Assessment" msgid "Assessment"
msgstr "" msgstr ""
@@ -569,7 +582,7 @@ msgstr ""
msgid "Assignment Title" msgid "Assignment Title"
msgstr "" msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:125 #: frontend/src/components/Modals/AssignmentForm.vue:133
msgid "Assignment created successfully" msgid "Assignment created successfully"
msgstr "" msgstr ""
@@ -581,7 +594,7 @@ msgstr ""
msgid "Assignment submitted successfully" msgid "Assignment submitted successfully"
msgstr "" msgstr ""
#: frontend/src/components/Modals/AssignmentForm.vue:138 #: frontend/src/components/Modals/AssignmentForm.vue:146
msgid "Assignment updated successfully" msgid "Assignment updated successfully"
msgstr "" msgstr ""
@@ -622,7 +635,7 @@ msgstr ""
msgid "Attire Preference" msgid "Attire Preference"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:137 #: frontend/src/pages/ProfileEvaluator.vue:146
msgid "Authorize Google Calendar Access" msgid "Authorize Google Calendar Access"
msgstr "" msgstr ""
@@ -637,7 +650,7 @@ msgstr ""
msgid "Auto Recording" msgid "Auto Recording"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:224 #: frontend/src/pages/ProfileEvaluator.vue:241
msgid "Availability updated successfully" msgid "Availability updated successfully"
msgstr "" msgstr ""
@@ -768,6 +781,7 @@ msgstr ""
#. Name of a role #. Name of a role
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -998,7 +1012,7 @@ msgstr ""
msgid "Certificate of Completion" msgid "Certificate of Completion"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:317 #: frontend/src/components/Modals/Event.vue:348
msgid "Certificate saved successfully" msgid "Certificate saved successfully"
msgstr "" msgstr ""
@@ -1018,7 +1032,7 @@ msgstr ""
#. Label of a Card Break in the LMS Workspace #. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:626 #: frontend/src/components/AppSidebar.vue:626
#: frontend/src/components/Modals/Event.vue:381 #: frontend/src/components/Modals/Event.vue:412
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10 #: frontend/src/pages/CourseCertification.vue:10
#: frontend/src/pages/CourseCertification.vue:135 #: frontend/src/pages/CourseCertification.vue:135
@@ -1640,6 +1654,7 @@ msgstr ""
#: lms/lms/doctype/course_chapter/course_chapter.json #: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json #: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
@@ -1757,7 +1772,7 @@ msgstr ""
#: frontend/src/components/BatchCourses.vue:5 #: frontend/src/components/BatchCourses.vue:5
#: frontend/src/components/BatchOverlay.vue:37 #: frontend/src/components/BatchOverlay.vue:37
#: frontend/src/components/BatchStudents.vue:25 #: frontend/src/components/BatchStudents.vue:25
#: frontend/src/components/Modals/BatchStudentProgress.vue:91 #: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127 #: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340 #: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340
@@ -2169,7 +2184,7 @@ msgstr ""
#: frontend/src/components/DiscussionReplies.vue:35 #: frontend/src/components/DiscussionReplies.vue:35
#: frontend/src/components/Modals/ChapterModal.vue:9 #: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/components/Settings/Badges.vue:156 #: frontend/src/components/Settings/Badges.vue:156
#: frontend/src/pages/JobDetail.vue:34 frontend/src/pages/Lesson.vue:42 #: frontend/src/pages/JobDetail.vue:45 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36 #: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36
msgid "Edit" msgid "Edit"
msgstr "" msgstr ""
@@ -2236,7 +2251,7 @@ msgstr ""
#: frontend/src/components/Settings/Evaluators.vue:105 #: frontend/src/components/Settings/Evaluators.vue:105
#: frontend/src/components/Settings/Members.vue:103 #: frontend/src/components/Settings/Members.vue:103
#: lms/templates/signup-form.html:10 #: frontend/src/pages/JobApplications.vue:284 lms/templates/signup-form.html:10
msgid "Email" msgid "Email"
msgstr "" msgstr ""
@@ -2272,6 +2287,7 @@ msgid "Email Templates deleted successfully"
msgstr "" msgstr ""
#: frontend/src/components/ContactUsEmail.vue:57 #: frontend/src/components/ContactUsEmail.vue:57
#: frontend/src/pages/JobApplications.vue:244
msgid "Email sent successfully" msgid "Email sent successfully"
msgstr "Email đã được gửi thành công" msgstr "Email đã được gửi thành công"
@@ -2414,6 +2430,14 @@ msgstr ""
msgid "Enter a URL" msgid "Enter a URL"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:122
msgid "Enter email subject"
msgstr ""
#: frontend/src/pages/JobApplications.vue:128
msgid "Enter reply to email"
msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:169 #: frontend/src/components/Modals/ZoomAccountModal.vue:169
msgid "Error creating Zoom Account" msgid "Error creating Zoom Account"
msgstr "" msgstr ""
@@ -2453,7 +2477,7 @@ msgstr ""
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace #. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:374 lms/lms/workspace/lms/lms.json #: frontend/src/components/Modals/Event.vue:405 lms/lms/workspace/lms/lms.json
msgid "Evaluation" msgid "Evaluation"
msgstr "" msgstr ""
@@ -2478,7 +2502,7 @@ msgstr ""
msgid "Evaluation end date cannot be less than the batch end date." msgid "Evaluation end date cannot be less than the batch end date."
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:256 #: frontend/src/components/Modals/Event.vue:287
msgid "Evaluation saved successfully" msgid "Evaluation saved successfully"
msgstr "" msgstr ""
@@ -2586,7 +2610,7 @@ msgstr ""
#. Label of the expected_output (Data) field in DocType 'LMS Test Case' #. Label of the expected_output (Data) field in DocType 'LMS Test Case'
#. Label of the expected_output (Data) field in DocType 'LMS Test Case #. Label of the expected_output (Data) field in DocType 'LMS Test Case
#. Submission' #. Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:127 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:129
#: lms/lms/doctype/lms_test_case/lms_test_case.json #: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Expected Output" msgid "Expected Output"
@@ -2599,7 +2623,7 @@ msgstr ""
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33 #: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:126 #: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date" msgid "Expiry Date"
msgstr "" msgstr ""
@@ -2626,7 +2650,7 @@ msgstr ""
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:366 #: frontend/src/components/Modals/Event.vue:397
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail" msgid "Fail"
@@ -2657,7 +2681,7 @@ msgstr ""
msgid "Failed to send email" msgid "Failed to send email"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:358 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:364
msgid "Failed to submit. Please try again. {0}" msgid "Failed to submit. Please try again. {0}"
msgstr "" msgstr ""
@@ -2770,7 +2794,7 @@ msgid "Friday"
msgstr "" msgstr ""
#. Label of the unavailable_from (Date) field in DocType 'Course Evaluator' #. Label of the unavailable_from (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:99 #: frontend/src/pages/ProfileEvaluator.vue:106
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "From" msgid "From"
msgstr "" msgstr ""
@@ -2782,6 +2806,7 @@ msgstr ""
#. Label of the full_name (Data) field in DocType 'Course Evaluator' #. Label of the full_name (Data) field in DocType 'Course Evaluator'
#. Label of the full_name (Data) field in DocType 'LMS Program Member' #. Label of the full_name (Data) field in DocType 'LMS Program Member'
#: frontend/src/pages/JobApplications.vue:278
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json #: lms/lms/doctype/lms_program_member/lms_program_member.json
#: lms/templates/signup-form.html:5 #: lms/templates/signup-form.html:5
@@ -3019,7 +3044,7 @@ msgstr ""
msgid "I am looking for a job" msgid "I am looking for a job"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:94 #: frontend/src/pages/ProfileEvaluator.vue:101
msgid "I am unavailable" msgid "I am unavailable"
msgstr "" msgstr ""
@@ -3105,7 +3130,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course' #. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:358 #: frontend/src/components/Modals/Event.vue:389
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
@@ -3161,7 +3186,7 @@ msgstr ""
#. Label of the input (Data) field in DocType 'LMS Test Case' #. Label of the input (Data) field in DocType 'LMS Test Case'
#. Label of the input (Data) field in DocType 'LMS Test Case Submission' #. Label of the input (Data) field in DocType 'LMS Test Case Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:113 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:115
#: lms/lms/doctype/lms_test_case/lms_test_case.json #: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Input" msgid "Input"
@@ -3273,7 +3298,7 @@ msgstr ""
#. Label of the issue_date (Date) field in DocType 'Certification' #. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate' #. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28 #: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:121 #: frontend/src/components/Modals/Event.vue:138
#: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date" msgid "Issue Date"
@@ -3358,8 +3383,8 @@ msgid "Job Title"
msgstr "" msgstr ""
#. Label of the jobs (Check) field in DocType 'LMS Settings' #. Label of the jobs (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/JobDetail.vue:10 frontend/src/pages/Jobs.vue:8 #: frontend/src/pages/JobApplications.vue:9 frontend/src/pages/JobDetail.vue:10
#: frontend/src/pages/Jobs.vue:212 #: frontend/src/pages/Jobs.vue:8 frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs" msgid "Jobs"
msgstr "" msgstr ""
@@ -3375,7 +3400,7 @@ msgstr ""
msgid "Join Call" msgid "Join Call"
msgstr "" msgstr ""
#: frontend/src/components/Modals/Event.vue:74 #: frontend/src/components/Modals/Event.vue:78
msgid "Join Meeting" msgid "Join Meeting"
msgstr "" msgstr ""
@@ -3883,7 +3908,7 @@ msgstr ""
msgid "Login to Frappe Cloud?" msgid "Login to Frappe Cloud?"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:63 #: frontend/src/pages/JobDetail.vue:74
msgid "Login to apply" msgid "Login to apply"
msgstr "" msgstr ""
@@ -4228,9 +4253,14 @@ msgid "Mentor Request Status Update Template"
msgstr "" msgstr ""
#: frontend/src/components/ContactUsEmail.vue:19 #: frontend/src/components/ContactUsEmail.vue:19
#: frontend/src/pages/JobApplications.vue:132
msgid "Message" msgid "Message"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:240
msgid "Message is required"
msgstr ""
#. Label of the meta_description (Small Text) field in DocType 'LMS Settings' #. Label of the meta_description (Small Text) field in DocType 'LMS Settings'
#: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303 #: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -4351,7 +4381,7 @@ msgstr ""
msgid "My availability" msgid "My availability"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:127 #: frontend/src/pages/ProfileEvaluator.vue:136
msgid "My calendar" msgid "My calendar"
msgstr "" msgstr ""
@@ -4390,7 +4420,7 @@ msgstr ""
msgid "New Job" msgid "New Job"
msgstr "" msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:27 #: lms/job/doctype/lms_job_application/lms_job_application.py:31
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "" msgstr ""
@@ -4818,7 +4848,7 @@ msgstr ""
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:362 #: frontend/src/components/Modals/Event.vue:393
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass" msgid "Pass"
@@ -4945,7 +4975,7 @@ msgstr ""
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' #. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:354 #: frontend/src/components/Modals/Event.vue:385
#: lms/lms/doctype/cohort_join_request/cohort_join_request.json #: lms/lms/doctype/cohort_join_request/cohort_join_request.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
@@ -4964,7 +4994,7 @@ msgstr ""
msgid "Percentage (e.g. 70%)" msgid "Percentage (e.g. 70%)"
msgstr "" msgstr ""
#: frontend/src/components/Modals/BatchStudentProgress.vue:44 #: frontend/src/components/Modals/BatchStudentProgress.vue:46
msgid "Percentage/Status" msgid "Percentage/Status"
msgstr "" msgstr ""
@@ -5080,7 +5110,7 @@ msgstr ""
msgid "Please prepare well and be on time for the evaluations." msgid "Please prepare well and be on time for the evaluations."
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:135 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:139
msgid "Please run the code to execute the test cases." msgid "Please run the code to execute the test cases."
msgstr "" msgstr ""
@@ -5317,11 +5347,11 @@ msgstr ""
#: frontend/src/components/Settings/BadgeForm.vue:200 #: frontend/src/components/Settings/BadgeForm.vue:200
#: frontend/src/components/Settings/Badges.vue:205 #: frontend/src/components/Settings/Badges.vue:205
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:420 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:426
msgid "Programming Exercise Submission" msgid "Programming Exercise Submission"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:411 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:417
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298
msgid "Programming Exercise Submissions" msgid "Programming Exercise Submissions"
msgstr "" msgstr ""
@@ -5355,7 +5385,7 @@ msgstr ""
#. Label of the progress (Float) field in DocType 'LMS Enrollment' #. Label of the progress (Float) field in DocType 'LMS Enrollment'
#. Label of the progress (Int) field in DocType 'LMS Program Member' #. Label of the progress (Int) field in DocType 'LMS Program Member'
#: frontend/src/components/Modals/BatchStudentProgress.vue:94 #: frontend/src/components/Modals/BatchStudentProgress.vue:98
#: frontend/src/components/Modals/CourseProgressSummary.vue:224 #: frontend/src/components/Modals/CourseProgressSummary.vue:224
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json #: lms/lms/doctype/lms_enrollment/lms_enrollment.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json #: lms/lms/doctype/lms_program_member/lms_program_member.json
@@ -5401,7 +5431,7 @@ msgstr ""
#. Label of the published (Check) field in DocType 'LMS Course' #. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program' #. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51 #: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:108 #: frontend/src/components/Modals/Event.vue:122
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152 #: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100 #: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5569,7 +5599,7 @@ msgstr ""
#. Label of the rating (Data) field in DocType 'LMS Course' #. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review' #. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147 #: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:86 #: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/ReviewModal.vue:18 #: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
@@ -5656,6 +5686,7 @@ msgid "Remove Highlight"
msgstr "" msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:27 #: frontend/src/components/Modals/AnnouncementModal.vue:27
#: frontend/src/pages/JobApplications.vue:127
msgid "Reply To" msgid "Reply To"
msgstr "" msgstr ""
@@ -5815,8 +5846,8 @@ msgstr ""
#: frontend/src/components/Controls/CodeEditor.vue:25 #: frontend/src/components/Controls/CodeEditor.vue:25
#: frontend/src/components/Modals/AssignmentForm.vue:59 #: frontend/src/components/Modals/AssignmentForm.vue:59
#: frontend/src/components/Modals/EmailTemplateModal.vue:12 #: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:101 #: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:129 #: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
@@ -5955,6 +5986,7 @@ msgid "Select an assignment"
msgstr "" msgstr ""
#: frontend/src/components/ContactUsEmail.vue:33 #: frontend/src/components/ContactUsEmail.vue:33
#: frontend/src/pages/JobApplications.vue:110
msgid "Send" msgid "Send"
msgstr "" msgstr ""
@@ -5962,6 +5994,14 @@ msgstr ""
msgid "Send Confirmation Email" msgid "Send Confirmation Email"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:268
msgid "Send Email"
msgstr ""
#: frontend/src/pages/JobApplications.vue:106
msgid "Send Email to {0}"
msgstr ""
#. Label of the send_calendar_invite_for_evaluations (Check) field in DocType #. Label of the send_calendar_invite_for_evaluations (Check) field in DocType
#. 'LMS Settings' #. 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -6122,11 +6162,11 @@ msgstr ""
msgid "Slot Times are overlapping for some schedules." msgid "Slot Times are overlapping for some schedules."
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:201 #: frontend/src/pages/ProfileEvaluator.vue:218
msgid "Slot added successfully" msgid "Slot added successfully"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:240 #: frontend/src/pages/ProfileEvaluator.vue:257
msgid "Slot deleted successfully" msgid "Slot deleted successfully"
msgstr "" msgstr ""
@@ -6265,7 +6305,7 @@ msgstr ""
#. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission' #. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission' #. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:91 #: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Settings/Badges.vue:228 #: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19 #: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6336,10 +6376,12 @@ msgstr ""
#: frontend/src/components/ContactUsEmail.vue:13 #: frontend/src/components/ContactUsEmail.vue:13
#: frontend/src/components/Modals/AnnouncementModal.vue:20 #: frontend/src/components/Modals/AnnouncementModal.vue:20
#: frontend/src/components/Modals/EmailTemplateModal.vue:31 #: frontend/src/components/Modals/EmailTemplateModal.vue:31
#: frontend/src/pages/JobApplications.vue:121
msgid "Subject" msgid "Subject"
msgstr "" msgstr ""
#: frontend/src/components/Modals/AnnouncementModal.vue:94 #: frontend/src/components/Modals/AnnouncementModal.vue:94
#: frontend/src/pages/JobApplications.vue:237
msgid "Subject is required" msgid "Subject is required"
msgstr "" msgstr ""
@@ -6356,7 +6398,7 @@ msgstr ""
msgid "Submission by" msgid "Submission by"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:353 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:359
msgid "Submission saved!" msgid "Submission saved!"
msgstr "" msgstr ""
@@ -6396,7 +6438,7 @@ msgstr ""
#. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:97 #: frontend/src/components/Modals/Event.vue:106
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary" msgid "Summary"
msgstr "" msgstr ""
@@ -6501,7 +6543,7 @@ msgstr ""
#. Label of the template (Link) field in DocType 'Cohort Web Page' #. Label of the template (Link) field in DocType 'Cohort Web Page'
#. Label of the template (Link) field in DocType 'LMS Certificate' #. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43 #: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:112 #: frontend/src/components/Modals/Event.vue:127
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template" msgid "Template"
@@ -6542,7 +6584,7 @@ msgstr ""
msgid "Test this Exercise" msgid "Test this Exercise"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:92 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:93
msgid "Test {0}" msgid "Test {0}"
msgstr "" msgstr ""
@@ -6840,7 +6882,7 @@ msgid "Title is required"
msgstr "" msgstr ""
#. Label of the unavailable_to (Date) field in DocType 'Course Evaluator' #. Label of the unavailable_to (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:112 #: frontend/src/pages/ProfileEvaluator.vue:120
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "To" msgid "To"
msgstr "" msgstr ""
@@ -6953,7 +6995,7 @@ msgstr ""
msgid "Unavailability" msgid "Unavailability"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:259 #: frontend/src/pages/ProfileEvaluator.vue:276
msgid "Unavailability updated successfully" msgid "Unavailability updated successfully"
msgstr "" msgstr ""
@@ -7123,11 +7165,19 @@ msgstr ""
msgid "View" msgid "View"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:31
msgid "View Applications"
msgstr ""
#: frontend/src/components/CertificationLinks.vue:10 #: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67 #: frontend/src/components/Modals/Event.vue:67
msgid "View Certificate" msgid "View Certificate"
msgstr "" msgstr ""
#: frontend/src/pages/JobApplications.vue:262
msgid "View Resume"
msgstr ""
#: frontend/src/components/BatchFeedback.vue:56 #: frontend/src/components/BatchFeedback.vue:56
msgid "View all feedback" msgid "View all feedback"
msgstr "" msgstr ""
@@ -7146,7 +7196,7 @@ msgstr ""
msgid "Visit Batch" msgid "Visit Batch"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:41 #: frontend/src/pages/JobDetail.vue:52
msgid "Visit Website" msgid "Visit Website"
msgstr "" msgstr ""
@@ -7355,7 +7405,7 @@ msgstr ""
msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session." msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session."
msgstr "" msgstr ""
#: lms/job/doctype/lms_job_application/lms_job_application.py:22 #: lms/job/doctype/lms_job_application/lms_job_application.py:26
msgid "You have already applied for this job." msgid "You have already applied for this job."
msgstr "" msgstr ""
@@ -7371,7 +7421,7 @@ msgstr ""
msgid "You have already reviewed this course" msgid "You have already reviewed this course"
msgstr "" msgstr ""
#: frontend/src/pages/JobDetail.vue:57 #: frontend/src/pages/JobDetail.vue:68
msgid "You have applied" msgid "You have applied"
msgstr "" msgstr ""
@@ -7451,7 +7501,7 @@ msgstr ""
msgid "Your Account has been successfully created!" msgid "Your Account has been successfully created!"
msgstr "" msgstr ""
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:119 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:121
msgid "Your Output" msgid "Your Output"
msgstr "" msgstr ""
@@ -7459,7 +7509,7 @@ msgstr ""
msgid "Your batch {0} is starting tomorrow" msgid "Your batch {0} is starting tomorrow"
msgstr "" msgstr ""
#: frontend/src/pages/ProfileEvaluator.vue:134 #: frontend/src/pages/ProfileEvaluator.vue:143
msgid "Your calendar is set." msgid "Your calendar is set."
msgstr "" msgstr ""
@@ -7538,11 +7588,11 @@ msgstr ""
msgid "and then 'Add to Home Screen'" msgid "and then 'Add to Home Screen'"
msgstr "" msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114 #: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicant" msgid "applicant"
msgstr "" msgstr ""
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114 #: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicants" msgid "applicants"
msgstr "" msgstr ""

View File

@@ -2,8 +2,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: frappe\n" "Project-Id-Version: frappe\n"
"Report-Msgid-Bugs-To: jannat@frappe.io\n" "Report-Msgid-Bugs-To: jannat@frappe.io\n"
"POT-Creation-Date: 2025-10-31 16:04+0000\n" "POT-Creation-Date: 2025-11-07 16:04+0000\n"
"PO-Revision-Date: 2025-11-02 19:07\n" "PO-Revision-Date: 2025-11-11 11:49\n"
"Last-Translator: jannat@frappe.io\n" "Last-Translator: jannat@frappe.io\n"
"Language-Team: Chinese Simplified\n" "Language-Team: Chinese Simplified\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@@ -176,7 +176,7 @@ msgstr "为视频添加测验"
msgid "Add Row" msgid "Add Row"
msgstr "添加一行" msgstr "添加一行"
#: frontend/src/pages/ProfileEvaluator.vue:89 #: frontend/src/pages/ProfileEvaluator.vue:96
msgid "Add Slot" msgid "Add Slot"
msgstr "添加时段" msgstr "添加时段"
@@ -426,12 +426,25 @@ msgstr "在分享批次链接至网络平台时显示"
msgid "Appears when the batch URL is shared on socials" msgid "Appears when the batch URL is shared on socials"
msgstr "当班级URL在社交平台分享时显示" msgstr "当班级URL在社交平台分享时显示"
#: frontend/src/pages/JobApplications.vue:24
msgid "Application"
msgstr "申请"
#. Label of a field in the job-opportunity Web Form #. Label of a field in the job-opportunity Web Form
#: lms/job/web_form/job_opportunity/job_opportunity.json #: lms/job/web_form/job_opportunity/job_opportunity.json
msgid "Application Form Link" msgid "Application Form Link"
msgstr "申请表链接" msgstr "申请表链接"
#: frontend/src/pages/JobDetail.vue:51 #: frontend/src/pages/JobApplications.vue:14
#: frontend/src/pages/JobApplications.vue:25
msgid "Applications"
msgstr ""
#: frontend/src/pages/JobApplications.vue:290
msgid "Applied On"
msgstr "应用于"
#: frontend/src/pages/JobDetail.vue:62
msgid "Apply" msgid "Apply"
msgstr "应用" msgstr "应用"
@@ -483,7 +496,7 @@ msgstr "提问以获得社区帮助。"
#. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch' #. Label of the assessment_tab (Tab Break) field in DocType 'LMS Batch'
#. Label of the assessment (Table) field in DocType 'LMS Batch' #. Label of the assessment (Table) field in DocType 'LMS Batch'
#: frontend/src/components/Modals/AssessmentModal.vue:27 #: frontend/src/components/Modals/AssessmentModal.vue:27
#: frontend/src/components/Modals/BatchStudentProgress.vue:41 #: frontend/src/components/Modals/BatchStudentProgress.vue:43
#: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11 #: lms/lms/doctype/lms_batch/lms_batch.json lms/templates/assessments.html:11
msgid "Assessment" msgid "Assessment"
msgstr "考核" msgstr "考核"
@@ -569,7 +582,7 @@ msgstr "作业提交记录"
msgid "Assignment Title" msgid "Assignment Title"
msgstr "作业标题" msgstr "作业标题"
#: frontend/src/components/Modals/AssignmentForm.vue:125 #: frontend/src/components/Modals/AssignmentForm.vue:133
msgid "Assignment created successfully" msgid "Assignment created successfully"
msgstr "作业创建成功" msgstr "作业创建成功"
@@ -581,7 +594,7 @@ msgstr "学员{1}的课时{0}作业已存在。"
msgid "Assignment submitted successfully" msgid "Assignment submitted successfully"
msgstr "作业提交成功。" msgstr "作业提交成功。"
#: frontend/src/components/Modals/AssignmentForm.vue:138 #: frontend/src/components/Modals/AssignmentForm.vue:146
msgid "Assignment updated successfully" msgid "Assignment updated successfully"
msgstr "作业更新成功" msgstr "作业更新成功"
@@ -622,7 +635,7 @@ msgstr "参会人员"
msgid "Attire Preference" msgid "Attire Preference"
msgstr "着装偏好" msgstr "着装偏好"
#: frontend/src/pages/ProfileEvaluator.vue:137 #: frontend/src/pages/ProfileEvaluator.vue:146
msgid "Authorize Google Calendar Access" msgid "Authorize Google Calendar Access"
msgstr "授权Google日历访问" msgstr "授权Google日历访问"
@@ -637,7 +650,7 @@ msgstr "自动分配"
msgid "Auto Recording" msgid "Auto Recording"
msgstr "自动录制" msgstr "自动录制"
#: frontend/src/pages/ProfileEvaluator.vue:224 #: frontend/src/pages/ProfileEvaluator.vue:241
msgid "Availability updated successfully" msgid "Availability updated successfully"
msgstr "可用性更新成功。" msgstr "可用性更新成功。"
@@ -768,6 +781,7 @@ msgstr "班级注册确认"
#. Name of a role #. Name of a role
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_batch/lms_batch.json #: lms/lms/doctype/lms_batch/lms_batch.json
#: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
@@ -998,7 +1012,7 @@ msgstr "证书链接"
msgid "Certificate of Completion" msgid "Certificate of Completion"
msgstr "结业证书" msgstr "结业证书"
#: frontend/src/components/Modals/Event.vue:317 #: frontend/src/components/Modals/Event.vue:348
msgid "Certificate saved successfully" msgid "Certificate saved successfully"
msgstr "证书保存成功" msgstr "证书保存成功"
@@ -1018,7 +1032,7 @@ msgstr "证书生成成功"
#. Label of a Card Break in the LMS Workspace #. Label of a Card Break in the LMS Workspace
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#: frontend/src/components/AppSidebar.vue:626 #: frontend/src/components/AppSidebar.vue:626
#: frontend/src/components/Modals/Event.vue:381 #: frontend/src/components/Modals/Event.vue:412
#: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58 #: frontend/src/pages/BatchForm.vue:69 frontend/src/pages/Batches.vue:58
#: frontend/src/pages/CourseCertification.vue:10 #: frontend/src/pages/CourseCertification.vue:10
#: frontend/src/pages/CourseCertification.vue:135 #: frontend/src/pages/CourseCertification.vue:135
@@ -1640,6 +1654,7 @@ msgstr "课程数量"
#: lms/lms/doctype/course_chapter/course_chapter.json #: lms/lms/doctype/course_chapter/course_chapter.json
#: lms/lms/doctype/course_lesson/course_lesson.json #: lms/lms/doctype/course_lesson/course_lesson.json
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_badge_assignment/lms_badge_assignment.json
#: lms/lms/doctype/lms_category/lms_category.json #: lms/lms/doctype/lms_category/lms_category.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
#: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json #: lms/lms/doctype/lms_lesson_note/lms_lesson_note.json
@@ -1757,7 +1772,7 @@ msgstr "课程{0}已添加至本批次"
#: frontend/src/components/BatchCourses.vue:5 #: frontend/src/components/BatchCourses.vue:5
#: frontend/src/components/BatchOverlay.vue:37 #: frontend/src/components/BatchOverlay.vue:37
#: frontend/src/components/BatchStudents.vue:25 #: frontend/src/components/BatchStudents.vue:25
#: frontend/src/components/Modals/BatchStudentProgress.vue:91 #: frontend/src/components/Modals/BatchStudentProgress.vue:95
#: frontend/src/pages/BatchDetail.vue:44 #: frontend/src/pages/BatchDetail.vue:44
#: frontend/src/pages/CourseCertification.vue:127 #: frontend/src/pages/CourseCertification.vue:127
#: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340 #: frontend/src/pages/Courses.vue:333 frontend/src/pages/Courses.vue:340
@@ -2169,7 +2184,7 @@ msgstr "电子邮件"
#: frontend/src/components/DiscussionReplies.vue:35 #: frontend/src/components/DiscussionReplies.vue:35
#: frontend/src/components/Modals/ChapterModal.vue:9 #: frontend/src/components/Modals/ChapterModal.vue:9
#: frontend/src/components/Settings/Badges.vue:156 #: frontend/src/components/Settings/Badges.vue:156
#: frontend/src/pages/JobDetail.vue:34 frontend/src/pages/Lesson.vue:42 #: frontend/src/pages/JobDetail.vue:45 frontend/src/pages/Lesson.vue:42
#: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36 #: frontend/src/pages/Lesson.vue:178 frontend/src/pages/Profile.vue:36
msgid "Edit" msgid "Edit"
msgstr "编辑" msgstr "编辑"
@@ -2236,7 +2251,7 @@ msgstr "教育背景详情"
#: frontend/src/components/Settings/Evaluators.vue:105 #: frontend/src/components/Settings/Evaluators.vue:105
#: frontend/src/components/Settings/Members.vue:103 #: frontend/src/components/Settings/Members.vue:103
#: lms/templates/signup-form.html:10 #: frontend/src/pages/JobApplications.vue:284 lms/templates/signup-form.html:10
msgid "Email" msgid "Email"
msgstr "电子邮件" msgstr "电子邮件"
@@ -2272,6 +2287,7 @@ msgid "Email Templates deleted successfully"
msgstr "邮件模板删除成功" msgstr "邮件模板删除成功"
#: frontend/src/components/ContactUsEmail.vue:57 #: frontend/src/components/ContactUsEmail.vue:57
#: frontend/src/pages/JobApplications.vue:244
msgid "Email sent successfully" msgid "Email sent successfully"
msgstr "邮件发送成功" msgstr "邮件发送成功"
@@ -2414,6 +2430,14 @@ msgstr "在Google设置中填写客户端ID和密钥以发送评估日历邀请"
msgid "Enter a URL" msgid "Enter a URL"
msgstr "输入URL" msgstr "输入URL"
#: frontend/src/pages/JobApplications.vue:122
msgid "Enter email subject"
msgstr ""
#: frontend/src/pages/JobApplications.vue:128
msgid "Enter reply to email"
msgstr ""
#: frontend/src/components/Modals/ZoomAccountModal.vue:169 #: frontend/src/components/Modals/ZoomAccountModal.vue:169
msgid "Error creating Zoom Account" msgid "Error creating Zoom Account"
msgstr "Zoom账户创建错误" msgstr "Zoom账户创建错误"
@@ -2453,7 +2477,7 @@ msgstr "邮件模板更新错误"
#. Label of a Link in the LMS Workspace #. Label of a Link in the LMS Workspace
#. Label of a shortcut in the LMS Workspace #. Label of a shortcut in the LMS Workspace
#: frontend/src/components/Modals/Event.vue:374 lms/lms/workspace/lms/lms.json #: frontend/src/components/Modals/Event.vue:405 lms/lms/workspace/lms/lms.json
msgid "Evaluation" msgid "Evaluation"
msgstr "评估" msgstr "评估"
@@ -2478,7 +2502,7 @@ msgstr "评估请求"
msgid "Evaluation end date cannot be less than the batch end date." msgid "Evaluation end date cannot be less than the batch end date."
msgstr "评估结束日期不得早于批次结束日期" msgstr "评估结束日期不得早于批次结束日期"
#: frontend/src/components/Modals/Event.vue:256 #: frontend/src/components/Modals/Event.vue:287
msgid "Evaluation saved successfully" msgid "Evaluation saved successfully"
msgstr "评估保存成功" msgstr "评估保存成功"
@@ -2586,7 +2610,7 @@ msgstr "展开"
#. Label of the expected_output (Data) field in DocType 'LMS Test Case' #. Label of the expected_output (Data) field in DocType 'LMS Test Case'
#. Label of the expected_output (Data) field in DocType 'LMS Test Case #. Label of the expected_output (Data) field in DocType 'LMS Test Case
#. Submission' #. Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:127 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:129
#: lms/lms/doctype/lms_test_case/lms_test_case.json #: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Expected Output" msgid "Expected Output"
@@ -2599,7 +2623,7 @@ msgstr "失效日期"
#. Label of the expiry_date (Date) field in DocType 'LMS Certificate' #. Label of the expiry_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:33 #: frontend/src/components/Modals/BulkCertificates.vue:33
#: frontend/src/components/Modals/Event.vue:126 #: frontend/src/components/Modals/Event.vue:144
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Expiry Date" msgid "Expiry Date"
msgstr "到期日" msgstr "到期日"
@@ -2626,7 +2650,7 @@ msgstr "查看更多"
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:366 #: frontend/src/components/Modals/Event.vue:397
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Fail" msgid "Fail"
@@ -2657,7 +2681,7 @@ msgstr "从Zoom获取课程{0}考勤数据失败:{1}"
msgid "Failed to send email" msgid "Failed to send email"
msgstr "邮件发送失败" msgstr "邮件发送失败"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:358 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:364
msgid "Failed to submit. Please try again. {0}" msgid "Failed to submit. Please try again. {0}"
msgstr "提交失败,请重试。{0}" msgstr "提交失败,请重试。{0}"
@@ -2770,7 +2794,7 @@ msgid "Friday"
msgstr "星期五" msgstr "星期五"
#. Label of the unavailable_from (Date) field in DocType 'Course Evaluator' #. Label of the unavailable_from (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:99 #: frontend/src/pages/ProfileEvaluator.vue:106
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "From" msgid "From"
msgstr "自" msgstr "自"
@@ -2782,6 +2806,7 @@ msgstr "起始日期"
#. Label of the full_name (Data) field in DocType 'Course Evaluator' #. Label of the full_name (Data) field in DocType 'Course Evaluator'
#. Label of the full_name (Data) field in DocType 'LMS Program Member' #. Label of the full_name (Data) field in DocType 'LMS Program Member'
#: frontend/src/pages/JobApplications.vue:278
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json #: lms/lms/doctype/lms_program_member/lms_program_member.json
#: lms/templates/signup-form.html:5 #: lms/templates/signup-form.html:5
@@ -3019,7 +3044,7 @@ msgstr "很高兴通知您已成功获得{0}课程认证。祝贺您!"
msgid "I am looking for a job" msgid "I am looking for a job"
msgstr "我正在求职" msgstr "我正在求职"
#: frontend/src/pages/ProfileEvaluator.vue:94 #: frontend/src/pages/ProfileEvaluator.vue:101
msgid "I am unavailable" msgid "I am unavailable"
msgstr "我暂不可用" msgstr "我暂不可用"
@@ -3105,7 +3130,7 @@ msgstr "图片:数据流损坏"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Course' #. Option for the 'Status' (Select) field in DocType 'LMS Course'
#: frontend/src/components/Modals/Event.vue:358 #: frontend/src/components/Modals/Event.vue:389
#: lms/lms/doctype/lms_batch_old/lms_batch_old.json #: lms/lms/doctype/lms_batch_old/lms_batch_old.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
@@ -3161,7 +3186,7 @@ msgstr "行业"
#. Label of the input (Data) field in DocType 'LMS Test Case' #. Label of the input (Data) field in DocType 'LMS Test Case'
#. Label of the input (Data) field in DocType 'LMS Test Case Submission' #. Label of the input (Data) field in DocType 'LMS Test Case Submission'
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:113 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:115
#: lms/lms/doctype/lms_test_case/lms_test_case.json #: lms/lms/doctype/lms_test_case/lms_test_case.json
#: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json #: lms/lms/doctype/lms_test_case_submission/lms_test_case_submission.json
msgid "Input" msgid "Input"
@@ -3273,7 +3298,7 @@ msgstr "是否为SCORM包"
#. Label of the issue_date (Date) field in DocType 'Certification' #. Label of the issue_date (Date) field in DocType 'Certification'
#. Label of the issue_date (Date) field in DocType 'LMS Certificate' #. Label of the issue_date (Date) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:28 #: frontend/src/components/Modals/BulkCertificates.vue:28
#: frontend/src/components/Modals/Event.vue:121 #: frontend/src/components/Modals/Event.vue:138
#: lms/lms/doctype/certification/certification.json #: lms/lms/doctype/certification/certification.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Issue Date" msgid "Issue Date"
@@ -3358,8 +3383,8 @@ msgid "Job Title"
msgstr "职位名称" msgstr "职位名称"
#. Label of the jobs (Check) field in DocType 'LMS Settings' #. Label of the jobs (Check) field in DocType 'LMS Settings'
#: frontend/src/pages/JobDetail.vue:10 frontend/src/pages/Jobs.vue:8 #: frontend/src/pages/JobApplications.vue:9 frontend/src/pages/JobDetail.vue:10
#: frontend/src/pages/Jobs.vue:212 #: frontend/src/pages/Jobs.vue:8 frontend/src/pages/Jobs.vue:212
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
msgid "Jobs" msgid "Jobs"
msgstr "职位" msgstr "职位"
@@ -3375,7 +3400,7 @@ msgstr "加入"
msgid "Join Call" msgid "Join Call"
msgstr "加入通话" msgstr "加入通话"
#: frontend/src/components/Modals/Event.vue:74 #: frontend/src/components/Modals/Event.vue:78
msgid "Join Meeting" msgid "Join Meeting"
msgstr "加入会议" msgstr "加入会议"
@@ -3883,7 +3908,7 @@ msgstr "登录"
msgid "Login to Frappe Cloud?" msgid "Login to Frappe Cloud?"
msgstr "登录Frappe云平台" msgstr "登录Frappe云平台"
#: frontend/src/pages/JobDetail.vue:63 #: frontend/src/pages/JobDetail.vue:74
msgid "Login to apply" msgid "Login to apply"
msgstr "登录后申请" msgstr "登录后申请"
@@ -4228,9 +4253,14 @@ msgid "Mentor Request Status Update Template"
msgstr "导师请求状态更新模板" msgstr "导师请求状态更新模板"
#: frontend/src/components/ContactUsEmail.vue:19 #: frontend/src/components/ContactUsEmail.vue:19
#: frontend/src/pages/JobApplications.vue:132
msgid "Message" msgid "Message"
msgstr "信息" msgstr "信息"
#: frontend/src/pages/JobApplications.vue:240
msgid "Message is required"
msgstr ""
#. Label of the meta_description (Small Text) field in DocType 'LMS Settings' #. Label of the meta_description (Small Text) field in DocType 'LMS Settings'
#: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303 #: frontend/src/pages/BatchForm.vue:297 frontend/src/pages/CourseForm.vue:303
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -4351,7 +4381,7 @@ msgstr "我的笔记"
msgid "My availability" msgid "My availability"
msgstr "我的可用时间" msgstr "我的可用时间"
#: frontend/src/pages/ProfileEvaluator.vue:127 #: frontend/src/pages/ProfileEvaluator.vue:136
msgid "My calendar" msgid "My calendar"
msgstr "我的日历" msgstr "我的日历"
@@ -4390,7 +4420,7 @@ msgstr "新建邮件模板"
msgid "New Job" msgid "New Job"
msgstr "新建职位" msgstr "新建职位"
#: lms/job/doctype/lms_job_application/lms_job_application.py:27 #: lms/job/doctype/lms_job_application/lms_job_application.py:31
msgid "New Job Applicant" msgid "New Job Applicant"
msgstr "新职位申请人" msgstr "新职位申请人"
@@ -4818,7 +4848,7 @@ msgstr "部分完成"
#. Submission' #. Submission'
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:362 #: frontend/src/components/Modals/Event.vue:393
#: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json #: lms/lms/doctype/lms_assignment_submission/lms_assignment_submission.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Pass" msgid "Pass"
@@ -4945,7 +4975,7 @@ msgstr "未安装支付应用"
#. Option for the 'Status' (Select) field in DocType 'LMS Certificate #. Option for the 'Status' (Select) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request' #. Option for the 'Status' (Select) field in DocType 'LMS Mentor Request'
#: frontend/src/components/Modals/Event.vue:354 #: frontend/src/components/Modals/Event.vue:385
#: lms/lms/doctype/cohort_join_request/cohort_join_request.json #: lms/lms/doctype/cohort_join_request/cohort_join_request.json
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json #: lms/lms/doctype/lms_mentor_request/lms_mentor_request.json
@@ -4964,7 +4994,7 @@ msgstr "百分比"
msgid "Percentage (e.g. 70%)" msgid "Percentage (e.g. 70%)"
msgstr "百分比如70%" msgstr "百分比如70%"
#: frontend/src/components/Modals/BatchStudentProgress.vue:44 #: frontend/src/components/Modals/BatchStudentProgress.vue:46
msgid "Percentage/Status" msgid "Percentage/Status"
msgstr "百分比/状态" msgstr "百分比/状态"
@@ -5080,7 +5110,7 @@ msgstr "请登录以报名项目。"
msgid "Please prepare well and be on time for the evaluations." msgid "Please prepare well and be on time for the evaluations."
msgstr "请充分准备并准时参加评估" msgstr "请充分准备并准时参加评估"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:135 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:139
msgid "Please run the code to execute the test cases." msgid "Please run the code to execute the test cases."
msgstr "请运行代码以执行测试用例。" msgstr "请运行代码以执行测试用例。"
@@ -5317,11 +5347,11 @@ msgstr "编程练习"
#: frontend/src/components/Settings/BadgeForm.vue:200 #: frontend/src/components/Settings/BadgeForm.vue:200
#: frontend/src/components/Settings/Badges.vue:205 #: frontend/src/components/Settings/Badges.vue:205
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:420 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:426
msgid "Programming Exercise Submission" msgid "Programming Exercise Submission"
msgstr "编程练习提交" msgstr "编程练习提交"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:411 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:417
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmissions.vue:298
msgid "Programming Exercise Submissions" msgid "Programming Exercise Submissions"
msgstr "编程练习提交记录" msgstr "编程练习提交记录"
@@ -5355,7 +5385,7 @@ msgstr "课程项目"
#. Label of the progress (Float) field in DocType 'LMS Enrollment' #. Label of the progress (Float) field in DocType 'LMS Enrollment'
#. Label of the progress (Int) field in DocType 'LMS Program Member' #. Label of the progress (Int) field in DocType 'LMS Program Member'
#: frontend/src/components/Modals/BatchStudentProgress.vue:94 #: frontend/src/components/Modals/BatchStudentProgress.vue:98
#: frontend/src/components/Modals/CourseProgressSummary.vue:224 #: frontend/src/components/Modals/CourseProgressSummary.vue:224
#: lms/lms/doctype/lms_enrollment/lms_enrollment.json #: lms/lms/doctype/lms_enrollment/lms_enrollment.json
#: lms/lms/doctype/lms_program_member/lms_program_member.json #: lms/lms/doctype/lms_program_member/lms_program_member.json
@@ -5401,7 +5431,7 @@ msgstr "发布至参与者页面"
#. Label of the published (Check) field in DocType 'LMS Course' #. Label of the published (Check) field in DocType 'LMS Course'
#. Label of the published (Check) field in DocType 'LMS Program' #. Label of the published (Check) field in DocType 'LMS Program'
#: frontend/src/components/Modals/BulkCertificates.vue:51 #: frontend/src/components/Modals/BulkCertificates.vue:51
#: frontend/src/components/Modals/Event.vue:108 #: frontend/src/components/Modals/Event.vue:122
#: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152 #: frontend/src/pages/BatchForm.vue:59 frontend/src/pages/CourseForm.vue:152
#: frontend/src/pages/Programs/ProgramForm.vue:33 #: frontend/src/pages/Programs/ProgramForm.vue:33
#: frontend/src/pages/Programs/StudentPrograms.vue:100 #: frontend/src/pages/Programs/StudentPrograms.vue:100
@@ -5569,7 +5599,7 @@ msgstr "本视频包含的测验"
#. Label of the rating (Data) field in DocType 'LMS Course' #. Label of the rating (Data) field in DocType 'LMS Course'
#. Label of the rating (Rating) field in DocType 'LMS Course Review' #. Label of the rating (Rating) field in DocType 'LMS Course Review'
#: frontend/src/components/CourseCardOverlay.vue:147 #: frontend/src/components/CourseCardOverlay.vue:147
#: frontend/src/components/Modals/Event.vue:86 #: frontend/src/components/Modals/Event.vue:92
#: frontend/src/components/Modals/ReviewModal.vue:18 #: frontend/src/components/Modals/ReviewModal.vue:18
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
#: lms/lms/doctype/lms_course/lms_course.json #: lms/lms/doctype/lms_course/lms_course.json
@@ -5656,6 +5686,7 @@ msgid "Remove Highlight"
msgstr "移除高亮" msgstr "移除高亮"
#: frontend/src/components/Modals/AnnouncementModal.vue:27 #: frontend/src/components/Modals/AnnouncementModal.vue:27
#: frontend/src/pages/JobApplications.vue:127
msgid "Reply To" msgid "Reply To"
msgstr "回复至" msgstr "回复至"
@@ -5815,8 +5846,8 @@ msgstr "星期六"
#: frontend/src/components/Controls/CodeEditor.vue:25 #: frontend/src/components/Controls/CodeEditor.vue:25
#: frontend/src/components/Modals/AssignmentForm.vue:59 #: frontend/src/components/Modals/AssignmentForm.vue:59
#: frontend/src/components/Modals/EmailTemplateModal.vue:12 #: frontend/src/components/Modals/EmailTemplateModal.vue:12
#: frontend/src/components/Modals/Event.vue:101 #: frontend/src/components/Modals/Event.vue:115
#: frontend/src/components/Modals/Event.vue:129 #: frontend/src/components/Modals/Event.vue:151
#: frontend/src/components/Modals/Question.vue:112 #: frontend/src/components/Modals/Question.vue:112
#: frontend/src/components/Modals/ZoomAccountModal.vue:10 #: frontend/src/components/Modals/ZoomAccountModal.vue:10
#: frontend/src/components/Settings/BadgeAssignmentForm.vue:12 #: frontend/src/components/Settings/BadgeAssignmentForm.vue:12
@@ -5955,6 +5986,7 @@ msgid "Select an assignment"
msgstr "选择作业" msgstr "选择作业"
#: frontend/src/components/ContactUsEmail.vue:33 #: frontend/src/components/ContactUsEmail.vue:33
#: frontend/src/pages/JobApplications.vue:110
msgid "Send" msgid "Send"
msgstr "发送" msgstr "发送"
@@ -5962,6 +5994,14 @@ msgstr "发送"
msgid "Send Confirmation Email" msgid "Send Confirmation Email"
msgstr "发送确认邮件" msgstr "发送确认邮件"
#: frontend/src/pages/JobApplications.vue:268
msgid "Send Email"
msgstr "发电子邮件"
#: frontend/src/pages/JobApplications.vue:106
msgid "Send Email to {0}"
msgstr ""
#. Label of the send_calendar_invite_for_evaluations (Check) field in DocType #. Label of the send_calendar_invite_for_evaluations (Check) field in DocType
#. 'LMS Settings' #. 'LMS Settings'
#: lms/lms/doctype/lms_settings/lms_settings.json #: lms/lms/doctype/lms_settings/lms_settings.json
@@ -6122,11 +6162,11 @@ msgstr "跳过"
msgid "Slot Times are overlapping for some schedules." msgid "Slot Times are overlapping for some schedules."
msgstr "部分日程时段存在重叠" msgstr "部分日程时段存在重叠"
#: frontend/src/pages/ProfileEvaluator.vue:201 #: frontend/src/pages/ProfileEvaluator.vue:218
msgid "Slot added successfully" msgid "Slot added successfully"
msgstr "时段添加成功。" msgstr "时段添加成功。"
#: frontend/src/pages/ProfileEvaluator.vue:240 #: frontend/src/pages/ProfileEvaluator.vue:257
msgid "Slot deleted successfully" msgid "Slot deleted successfully"
msgstr "时段删除成功。" msgstr "时段删除成功。"
@@ -6265,7 +6305,7 @@ msgstr "统计"
#. Label of the status (Select) field in DocType 'LMS Programming Exercise #. Label of the status (Select) field in DocType 'LMS Programming Exercise
#. Submission' #. Submission'
#. Label of the status (Select) field in DocType 'LMS Test Case Submission' #. Label of the status (Select) field in DocType 'LMS Test Case Submission'
#: frontend/src/components/Modals/Event.vue:91 #: frontend/src/components/Modals/Event.vue:99
#: frontend/src/components/Settings/Badges.vue:228 #: frontend/src/components/Settings/Badges.vue:228
#: frontend/src/components/Settings/ZoomSettings.vue:197 #: frontend/src/components/Settings/ZoomSettings.vue:197
#: frontend/src/pages/AssignmentSubmissionList.vue:19 #: frontend/src/pages/AssignmentSubmissionList.vue:19
@@ -6336,10 +6376,12 @@ msgstr "子组"
#: frontend/src/components/ContactUsEmail.vue:13 #: frontend/src/components/ContactUsEmail.vue:13
#: frontend/src/components/Modals/AnnouncementModal.vue:20 #: frontend/src/components/Modals/AnnouncementModal.vue:20
#: frontend/src/components/Modals/EmailTemplateModal.vue:31 #: frontend/src/components/Modals/EmailTemplateModal.vue:31
#: frontend/src/pages/JobApplications.vue:121
msgid "Subject" msgid "Subject"
msgstr "主题" msgstr "主题"
#: frontend/src/components/Modals/AnnouncementModal.vue:94 #: frontend/src/components/Modals/AnnouncementModal.vue:94
#: frontend/src/pages/JobApplications.vue:237
msgid "Subject is required" msgid "Subject is required"
msgstr "必须填写主题" msgstr "必须填写主题"
@@ -6356,7 +6398,7 @@ msgstr "提交类型"
msgid "Submission by" msgid "Submission by"
msgstr "提交人" msgstr "提交人"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:353 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:359
msgid "Submission saved!" msgid "Submission saved!"
msgstr "提交已保存!" msgstr "提交已保存!"
@@ -6396,7 +6438,7 @@ msgstr "项目报名成功"
#. Label of the summary (Small Text) field in DocType 'LMS Certificate #. Label of the summary (Small Text) field in DocType 'LMS Certificate
#. Evaluation' #. Evaluation'
#: frontend/src/components/Modals/Event.vue:97 #: frontend/src/components/Modals/Event.vue:106
#: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json #: lms/lms/doctype/lms_certificate_evaluation/lms_certificate_evaluation.json
msgid "Summary" msgid "Summary"
msgstr "摘要" msgstr "摘要"
@@ -6501,7 +6543,7 @@ msgstr "团队协作"
#. Label of the template (Link) field in DocType 'Cohort Web Page' #. Label of the template (Link) field in DocType 'Cohort Web Page'
#. Label of the template (Link) field in DocType 'LMS Certificate' #. Label of the template (Link) field in DocType 'LMS Certificate'
#: frontend/src/components/Modals/BulkCertificates.vue:43 #: frontend/src/components/Modals/BulkCertificates.vue:43
#: frontend/src/components/Modals/Event.vue:112 #: frontend/src/components/Modals/Event.vue:127
#: lms/lms/doctype/cohort_web_page/cohort_web_page.json #: lms/lms/doctype/cohort_web_page/cohort_web_page.json
#: lms/lms/doctype/lms_certificate/lms_certificate.json #: lms/lms/doctype/lms_certificate/lms_certificate.json
msgid "Template" msgid "Template"
@@ -6542,7 +6584,7 @@ msgstr "测试结果"
msgid "Test this Exercise" msgid "Test this Exercise"
msgstr "测试本练习" msgstr "测试本练习"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:92 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:93
msgid "Test {0}" msgid "Test {0}"
msgstr "测试{0}" msgstr "测试{0}"
@@ -6840,7 +6882,7 @@ msgid "Title is required"
msgstr "标题为必填项" msgstr "标题为必填项"
#. Label of the unavailable_to (Date) field in DocType 'Course Evaluator' #. Label of the unavailable_to (Date) field in DocType 'Course Evaluator'
#: frontend/src/pages/ProfileEvaluator.vue:112 #: frontend/src/pages/ProfileEvaluator.vue:120
#: lms/lms/doctype/course_evaluator/course_evaluator.json #: lms/lms/doctype/course_evaluator/course_evaluator.json
msgid "To" msgid "To"
msgstr "至" msgstr "至"
@@ -6953,7 +6995,7 @@ msgstr "通用唯一标识符"
msgid "Unavailability" msgid "Unavailability"
msgstr "不可用状态" msgstr "不可用状态"
#: frontend/src/pages/ProfileEvaluator.vue:259 #: frontend/src/pages/ProfileEvaluator.vue:276
msgid "Unavailability updated successfully" msgid "Unavailability updated successfully"
msgstr "不可用状态更新成功" msgstr "不可用状态更新成功"
@@ -7123,11 +7165,19 @@ msgstr "{0}视频统计"
msgid "View" msgid "View"
msgstr "查看" msgstr "查看"
#: frontend/src/pages/JobDetail.vue:31
msgid "View Applications"
msgstr ""
#: frontend/src/components/CertificationLinks.vue:10 #: frontend/src/components/CertificationLinks.vue:10
#: frontend/src/components/Modals/Event.vue:67 #: frontend/src/components/Modals/Event.vue:67
msgid "View Certificate" msgid "View Certificate"
msgstr "查看证书" msgstr "查看证书"
#: frontend/src/pages/JobApplications.vue:262
msgid "View Resume"
msgstr ""
#: frontend/src/components/BatchFeedback.vue:56 #: frontend/src/components/BatchFeedback.vue:56
msgid "View all feedback" msgid "View all feedback"
msgstr "查看所有反馈" msgstr "查看所有反馈"
@@ -7146,7 +7196,7 @@ msgstr "可见性"
msgid "Visit Batch" msgid "Visit Batch"
msgstr "访问批次" msgstr "访问批次"
#: frontend/src/pages/JobDetail.vue:41 #: frontend/src/pages/JobDetail.vue:52
msgid "Visit Website" msgid "Visit Website"
msgstr "访问网站" msgstr "访问网站"
@@ -7355,7 +7405,7 @@ msgstr "您答对{0}%的题目,得分{1}(总分{2}"
msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session." msgid "You have a live class scheduled tomorrow. Please be prepared and be on time for the session."
msgstr "您已预约明日直播课程,请准时参加" msgstr "您已预约明日直播课程,请准时参加"
#: lms/job/doctype/lms_job_application/lms_job_application.py:22 #: lms/job/doctype/lms_job_application/lms_job_application.py:26
msgid "You have already applied for this job." msgid "You have already applied for this job."
msgstr "您已申请该职位" msgstr "您已申请该职位"
@@ -7371,7 +7421,7 @@ msgstr "您已购买本课程证书"
msgid "You have already reviewed this course" msgid "You have already reviewed this course"
msgstr "您已评价过本课程" msgstr "您已评价过本课程"
#: frontend/src/pages/JobDetail.vue:57 #: frontend/src/pages/JobDetail.vue:68
msgid "You have applied" msgid "You have applied"
msgstr "您已申请" msgstr "您已申请"
@@ -7451,7 +7501,7 @@ msgstr "YouTube视频将显示在课时顶部"
msgid "Your Account has been successfully created!" msgid "Your Account has been successfully created!"
msgstr "账户创建成功!" msgstr "账户创建成功!"
#: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:119 #: frontend/src/pages/ProgrammingExercises/ProgrammingExerciseSubmission.vue:121
msgid "Your Output" msgid "Your Output"
msgstr "您的输出" msgstr "您的输出"
@@ -7459,7 +7509,7 @@ msgstr "您的输出"
msgid "Your batch {0} is starting tomorrow" msgid "Your batch {0} is starting tomorrow"
msgstr "您的批次{0}将于明日开始" msgstr "您的批次{0}将于明日开始"
#: frontend/src/pages/ProfileEvaluator.vue:134 #: frontend/src/pages/ProfileEvaluator.vue:143
msgid "Your calendar is set." msgid "Your calendar is set."
msgstr "日历已设置" msgstr "日历已设置"
@@ -7538,11 +7588,11 @@ msgstr "和"
msgid "and then 'Add to Home Screen'" msgid "and then 'Add to Home Screen'"
msgstr "然后“添加到主屏幕”" msgstr "然后“添加到主屏幕”"
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114 #: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicant" msgid "applicant"
msgstr "申请人" msgstr "申请人"
#: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:114 #: frontend/src/components/JobCard.vue:26 frontend/src/pages/JobDetail.vue:125
msgid "applicants" msgid "applicants"
msgstr "申请人列表" msgstr "申请人列表"